From 80b6d43ef24ae3ad9c5fbd78b738e84f79d8db71 Mon Sep 17 00:00:00 2001 From: bartvanwesten Date: Tue, 23 Jul 2024 02:50:49 +0200 Subject: [PATCH] Updated vegetation variables 1. Default of veg_sigma is now 0, to prevent unwanted smoothening of the spatial vegetation distribution 2. The definition of Vver is changed to Vertical growth Potential --- aeolis/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aeolis/constants.py b/aeolis/constants.py index a07fd23a..94f59161 100644 --- a/aeolis/constants.py +++ b/aeolis/constants.py @@ -292,12 +292,12 @@ 'gamma_vegshear' : 16., # [-] Roughness factor for the shear stress reduction by vegetation 'hveg_max' : 1., # [m] Max height of vegetation 'dzb_opt' : 0., # [m/year] Sediment burial for optimal growth - 'V_ver' : 0., # [m/year] Vertical growth + 'V_ver' : 0., # [m/year] Vertical growth potential 'V_lat' : 0., # [m/year] Lateral growth 'germinate' : 0., # [1/year] Possibility of germination per year 'lateral' : 0., # [1/year] Posibility of lateral expension per year 'veg_gamma' : 1., # [-] Constant on influence of sediment burial - 'veg_sigma' : 0.8, # [-] Sigma in gaussian distrubtion of vegetation cover filter + 'veg_sigma' : 0., # [-] Sigma in gaussian distrubtion of vegetation cover filter 'sedimentinput' : 0., # [-] Constant boundary sediment influx (only used in solve_pieter) 'scheme' : 'euler_backward', # Name of numerical scheme (euler_forward, euler_backward or crank_nicolson) 'solver' : 'trunk', # Name of the solver (trunk, pieter, steadystate,steadystatepieter)