Skip to content

Commit

Permalink
add IndxRchrg to BMI
Browse files Browse the repository at this point in the history
  • Loading branch information
Mostafa Daoud committed Sep 24, 2024
1 parent 72021b2 commit d6ce220
Showing 1 changed file with 31 additions and 7 deletions.
38 changes: 31 additions & 7 deletions PyStemmusScope/bmi/variable_reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,18 +114,15 @@ class BmiVariable:
grid=0,
keys=["gwfluxes", "recharge"],
),
<<<<<<< HEAD
BmiVariable(
name="groundwater_recharge_temperature",
dtype="float64",
name="groundwater_recharge_index",
dtype="int64",
input=False,
output=True,
units="degC",
units="-",
grid=0,
keys=["gwfluxes", "rechargeTemp"],
keys=["gwfluxes", "indxRchrg"],
),
=======
>>>>>>> main
# groundwater (coupling) vars
BmiVariable(
name="groundwater_coupling_enabled",
Expand Down Expand Up @@ -163,4 +160,31 @@ class BmiVariable:
grid=0,
keys=["GroundwaterSettings", "topLevel"],
),
BmiVariable(
name="groundwater_depth",
dtype="float64",
input=True,
output=False,
units="cm",
grid=0,
keys=["GroundwaterSettings", "gw_Dep"],
),
BmiVariable(
name="groundwater_index_bottom_layer",
dtype="int64",
input=False,
output=True,
units="-",
grid=0,
keys=["GroundwaterSettings", "indxBotmLayer"],
),
BmiVariable(
name="groundwater_index_bottom_layer_reversed",
dtype="int64",
input=False,
output=True,
units="-",
grid=0,
keys=["GroundwaterSettings", "indxBotmLayer_R"],
),
)

0 comments on commit d6ce220

Please sign in to comment.