Skip to content

Commit 4dca6ee

Browse files
SierdCopilot
andauthored
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>
1 parent d1b2966 commit 4dca6ee

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

aeolis/constants.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,6 @@
300300
'hveg_max' : 1., # [m] Max height of vegetation
301301
'dzb_opt' : 0., # [m/year] Sediment burial for optimal growth
302302
'V_ver' : 0., # [m/year] Vertical growth potential
303-
'V_lat' : 0., # [m/year] Lateral growth
304303
'germinate' : 0., # [1/year] Possibility of germination per year
305304
'lateral' : 0., # [1/year] Posibility of lateral expension per year
306305
'veg_gamma' : 1., # [-] Constant on influence of sediment burial
@@ -332,7 +331,7 @@
332331
'alfa' : 0, # [deg] Real-world grid cell orientation wrt the North (clockwise)
333332
'dune_toe_elevation' : 3, # Choose dune toe elevation, only used in the PH12 dune erosion solver
334333
'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.
336335
'vegshear_type' : 'raupach', # Choose the Raupach grid based solver (1D or 2D) or the Okin approach (1D only)
337336
'okin_c1_veg' : 0.48, #x/h spatial reduction factor in Okin model for use with vegetation
338337
'okin_c1_fence' : 0.48, #x/h spatial reduction factor in Okin model for use with sand fence module

0 commit comments

Comments
 (0)