Fix q unit: kg/kg → g/kg (scaled ×1000 from ERA5); clarify input/output normalization space
Browse files- variables.py +1 -1
variables.py
CHANGED
|
@@ -47,7 +47,7 @@ PL_VARIABLES: list[tuple[str, str, str]] = [
|
|
| 47 |
("t", "temperature", "K"),
|
| 48 |
("u", "u_component_of_wind", "m/s"),
|
| 49 |
("v", "v_component_of_wind", "m/s"),
|
| 50 |
-
("q", "specific_humidity", "
|
| 51 |
]
|
| 52 |
|
| 53 |
# ── Surface variables (20) ───────────────────────────────────────
|
|
|
|
| 47 |
("t", "temperature", "K"),
|
| 48 |
("u", "u_component_of_wind", "m/s"),
|
| 49 |
("v", "v_component_of_wind", "m/s"),
|
| 50 |
+
("q", "specific_humidity", "g/kg"), # scaled ×1000 from ERA5 kg/kg
|
| 51 |
]
|
| 52 |
|
| 53 |
# ── Surface variables (20) ───────────────────────────────────────
|