You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update vegetation parameters in constants.py (#250)
* Update vegetation parameters in constants.py
Removes unused V_Lat parameter
solves #120
Changes default for veg_min_elevation to -10 to avoid unwanted use of this functionality.
* Update aeolis/constants.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
'germinate' : 0., # [1/year] Possibility of germination per year
305
304
'lateral' : 0., # [1/year] Posibility of lateral expension per year
306
305
'veg_gamma' : 1., # [-] Constant on influence of sediment burial
@@ -332,7 +331,7 @@
332
331
'alfa' : 0, # [deg] Real-world grid cell orientation wrt the North (clockwise)
333
332
'dune_toe_elevation' : 3, # Choose dune toe elevation, only used in the PH12 dune erosion solver
334
333
'beach_slope' : 0.1, # Define the beach slope, only used in the PH12 dune erosion solver
335
-
'veg_min_elevation' : 3, # Choose the minimum elevation where vegetation can grow
334
+
'veg_min_elevation' : -10., # Minimum elevation (m) where vegetation can grow; default -10 disables restriction (allows vegetation everywhere). Set to a higher value to enforce a minimum elevation for vegetation growth.
336
335
'vegshear_type' : 'raupach', # Choose the Raupach grid based solver (1D or 2D) or the Okin approach (1D only)
337
336
'okin_c1_veg' : 0.48, #x/h spatial reduction factor in Okin model for use with vegetation
338
337
'okin_c1_fence' : 0.48, #x/h spatial reduction factor in Okin model for use with sand fence module
0 commit comments