Skip to content

Commit 912ef15

Browse files
feat: Add missing oldext quantities (#557)
1 parent bf75f02 commit 912ef15

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

hydrolib/core/dflowfm/extold/models.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,36 @@ class ExtOldQuantity(str, Enum):
191191
"""Discharge, salinity temperature source-sinks"""
192192
NudgeSalinityTemperature = "nudge_salinity_temperature"
193193
"""Nudging salinity and temperature"""
194+
AirPressure = "airpressure"
195+
"""AirPressure"""
196+
StressX = "stressx"
197+
"""eastward wind stress"""
198+
StressY = "stressy"
199+
"""northward wind stress"""
200+
AirTemperature = "airtemperature"
201+
"""AirTemperature"""
202+
Cloudiness = "cloudiness"
203+
"""Cloudiness, or cloud cover (fraction)"""
204+
Humidity = "humidity"
205+
"""Humidity"""
206+
StressXY = "stressxy"
207+
"""eastward and northward wind stress"""
208+
AirpressureStressXStressY = "airpressure_stressx_stressy"
209+
"""Airpressure, eastward and northward wind stress"""
210+
WindSpeed = "wind_speed"
211+
"""WindSpeed"""
212+
WindFromDirection = "wind_from_direction"
213+
"""WindFromDirection"""
214+
DewpointAirTemperatureCloudinessSolarradiation = (
215+
"dewpoint_airtemperature_cloudiness_solarradiation"
216+
)
217+
"""Dewpoint temperature, air temperature, cloudiness, solarradiation"""
218+
AirDensity = "airdensity"
219+
"""Air density"""
220+
Charnock = "charnock"
221+
"""Charnock coefficient"""
222+
Dewpoint = "dewpoint"
223+
"""Dewpoint temperature"""
194224

195225
# Structure parameters
196226
Pump = "pump"

0 commit comments

Comments
 (0)