Skip to content

jhan_JaC_Redux_JaCFeb2021_init_cable_params

JhanSrbinovsky edited this page Feb 16, 2021 · 2 revisions

init_cable_params(mp)

!data:these should be passed

USE cable_params_mod,         ONLY: soil => soil_cbl
USE cable_params_mod,         ONLY: veg => veg_cbl
!subrs
USE allocate_veg_params_mod,      ONLY: allocate_veg_parameter_type
USE allocate_soil_params_mod,      ONLY: allocate_soil_parameter_type
USE init_cable_pftparms_mod,  ONLY: init_cable_veg
USE init_cable_soilparms_mod, ONLY: init_cable_soil

In a perfect world I would link these and document them here. However, in the interest of moving on I will leave this fairly self explanatory subroutines to stand on their own merit in the code base.

CALL allocate_soil_parameter_type(soil, mp)
CALL allocate_veg_parameter_type(veg, mp)
CALL init_cable_veg()
CALL init_cable_soil()

Clone this wiki locally