Build a hydrological model (based on c++) with EDCHM modules. The EDCHM-standard-structure include 15 process:
Some of them can be set in "NULL"
, means without this process.
stmosSnow
with input datastmosSnow
andsnowMelt
evatransPotential
with input dataintercep
andevatransLand
(evatransActual
)intflow
andconfluenSoil
(confluenIUH
)capirise
lateral
Arguments
- process_method
named char vector, some like example. It must contian all the 15 processes. But you can set process in
"NULL"
, when it not necessary.- name_model
char, name of the model
- path_model
char of path, path to space the c++ source files
Examples
my_process_method <- c(
atmosSnow = "atmosSnow_ThresholdT",
evatransPotential = "NULL",
evatransLand = "evatransActual_SupplyRatio",
evatransSoil = "evatransActual_SupplyRatio",
intercep = "intercep_Full",
snowMelt = "snowMelt_Kustas",
infilt = "infilt_AcceptRatio",
percola = "percola_SupplyRatio",
inteflow = "inteflow_GR4Jfix",
capirise = "capirise_HBV",
baseflow = "baseflow_SupplyRatio",
lateral = "lateral_GR4Jfix",
confluenLand = "confluenIUH_Kelly",
confluenSoil = "confluenIUH_Kelly",
confluenGround = "confluenIUH_Nash"
)