Skip to content

Commit 5923652

Browse files
author
Andrea
committed
commit_20230605_17:02
1 parent 30bd5d0 commit 5923652

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

hmc/algorithm/default/lib_default_namelist.py

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
'dWTableHbr': {'algorithm': ['HMC_Info', 'hmc_parameters', 'wtable_hbr']},
2525
'dKSatRatio': {'algorithm': ['HMC_Info', 'hmc_parameters', 'ksat_ratio']},
2626
'dSlopeMax': {'algorithm': ['HMC_Info', 'hmc_parameters', 'slope_max']},
27+
'dSoil_ksat_infilt': {['HMC_Info', 'hmc_parameters', 'soil_ksat_infilt']},
28+
'dSoil_ksat_drain': {['HMC_Info', 'hmc_parameters', 'soil_ksat_drain']},
29+
'dSoil_vmax': {['HMC_Info', 'hmc_parameters', 'soil_vmax']},
30+
'dWtable_ksath': {['HMC_Info', 'hmc_parameters', 'wtable_ksath']},
2731
'sDomainName': {'algorithm': ['Run_Info', 'run_type', 'run_domain']},
2832
},
2933

@@ -64,6 +68,10 @@
6468
'iFlagFlood': {'algorithm': ['HMC_Info', 'hmc_flags', 'flag_phys_flooding']},
6569
'iFlagEnergyBalance': {'algorithm': ['HMC_Info', 'hmc_flags', 'flag_phys_energy_balance']},
6670

71+
'iFlagSoilParamsType': {'algorithm': ['HMC_Info', 'hmc_flags', 'flag_phys_soil_parameters_type']},
72+
'iFlagInfiltRateVariable': {'algorithm': ['HMC_Info', 'hmc_flags', 'flag_phys_infiltration_rate_type']},
73+
'iFlagETReductionType': {'algorithm': ['HMC_Info', 'hmc_flags', 'flag_phys_et_reduction_model']},
74+
6775
'a1dGeoForcing': [-9999.0, -9999.0],
6876
'a1dResForcing': [-9999.0, -9999.0],
6977
'a1iDimsForcing': [-9999, -9999],
@@ -126,7 +134,7 @@
126134
},
127135

128136
HMC_Constants={
129-
'a1dAlbedoMonthly': [0.18, 0.17, 0.16, 0.15, 0.15, 0.15, 0.15, 0.16, 0.16, 0.17, 0.17, 0.18],
137+
'a1dAlbedoMonthly': {'algorithm': ['HMC_Info', 'hmc_phys_parametrization', 'monthly_albedo']},
130138
'a1dLAIMonthly': [4.00, 4.00, 4.00, 4.00, 4.00, 4.00, 4.00, 4.00, 4.00, 4.00, 4.00, 4.00],
131139

132140
'dWTableHMin': 10.0,
@@ -135,7 +143,7 @@
135143
'dWTableSlopeBM': 0.08,
136144
'dWTableHOBedRock': 25.0,
137145

138-
'dRateMin': 0.01,
146+
'dRateMin': {'algorithm': ['HMC_Info', 'hmc_phys_parametrization', 'min_hypodermic_flow_ratio']},
139147
'dBc': 0.5,
140148

141149
'dTRef': 273.15,
@@ -168,6 +176,8 @@
168176
'dWTLossMax': {'algorithm': ['HMC_Info', 'hmc_phys_parametrization', 'phys_water_table_maximum_losses']},
169177

170178
'dSMGain': 0.45,
179+
180+
'dPowVarInfiltRate': {'algorithm': ['HMC_Info', 'hmc_phys_parametrization', 'phys_decay_parameter_for_infiltration_rate']},
171181
},
172182

173183
HMC_Command={
@@ -200,6 +210,10 @@
200210
'dKSatRatio': 1,
201211
'dSlopeMax': 70,
202212
'sDomainName': "default",
213+
'dSoil_ksat_infilt': 3.5,
214+
'dSoil_ksat_drain': 3.5,
215+
'dSoil_vmax': 500,
216+
'dWtable_ksath': 1
203217

204218
},
205219

@@ -240,6 +254,10 @@
240254
'iFlagFlood': 0,
241255
'iFlagEnergyBalance': 1,
242256

257+
'iFlagSoilParamsType': 0,
258+
'iFlagInfiltRateVariable': 1,
259+
'iFlagETReductionType': 1,
260+
243261
'a1dGeoForcing': [-9999.0, -9999.0],
244262
'a1dResForcing': [-9999.0, -9999.0],
245263
'a1iDimsForcing': [-9999, -9999],
@@ -344,6 +362,8 @@
344362
'dWTLossMax': 0.25,
345363

346364
'dSMGain': 0.45,
365+
366+
'dPowVarInfiltRate' : 7
347367
},
348368

349369
HMC_Command={

0 commit comments

Comments
 (0)