Skip to content

Commit 19c88b9

Browse files
committed
phyvars: uniformize descriptions of vector fields
1 parent c171d6d commit 19c88b9

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/stagpy/phyvars.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@
2626
FIELD: Mapping[str, Varf] = MappingProxyType(
2727
{
2828
"T": Varf("Temperature", "K"),
29-
"v1": Varf("x Velocity", "m/s"),
30-
"v2": Varf("y Velocity", "m/s"),
31-
"v3": Varf("z Velocity", "m/s"),
29+
"v1": Varf("Velocity (x)", "m/s"),
30+
"v2": Varf("Velocity (y)", "m/s"),
31+
"v3": Varf("Velocity (z)", "m/s"),
3232
"p": Varf("Pressure", "Pa"),
3333
"eta": Varf("Viscosity", "Pa.s"),
3434
"rho": Varf("Density", "kg/m3"),
3535
"rho4rhs": Varf("Density term in RHS", "kg/m3"),
3636
"trarho": Varf("Density from tracer mass", "kg/m3"),
3737
"sII": Varf("Second invariant of stress tensor", "Pa"),
38-
"sx1": Varf("1st comp. of principal stress eigenvector", "Pa"),
39-
"sx2": Varf("2nd comp. of principal stress eigenvector", "Pa"),
40-
"sx3": Varf("3rd comp. of principal stress eigenvector", "Pa"),
38+
"sx1": Varf("Principal stress eigenvector (x)", "Pa"),
39+
"sx2": Varf("Principal stress eigenvector (y)", "Pa"),
40+
"sx3": Varf("Principal stress eigenvector (z)", "Pa"),
4141
"s1val": Varf("Principal stress eigenvalue", "Pa"),
4242
"edot": Varf("Strain rate", "1/s"),
4343
"Tcond": Varf("Thermal conductivity", "W/(m.K)"),
@@ -47,9 +47,9 @@
4747
"wtr": Varf("Water concentration", "1"),
4848
"age": Varf("Age", "s"),
4949
"contID": Varf("ID of continents", "1"),
50-
"rs1": Varf("x Momentum residue", "1"),
51-
"rs2": Varf("y Momentum residue", "1"),
52-
"rs3": Varf("z Momentum residue", "1"),
50+
"rs1": Varf("Momentum residue (x)", "1"),
51+
"rs2": Varf("Momentum residue (y)", "1"),
52+
"rs3": Varf("Momentum residue (z)", "1"),
5353
"rsc": Varf("Continuity residue", "1"),
5454
"basalt": Varf("Basalt fraction", "1"),
5555
"harzburgite": Varf("Harzburgite fraction", "1"),

0 commit comments

Comments
 (0)