@@ -110,7 +110,6 @@ module FatesRestartInterfaceMod
110110 integer :: ir_landuse_vector_gt_min_si
111111 integer :: ir_area_bareground_si
112112 integer :: ir_snow_depth_si
113- integer :: ir_trunk_product_si
114113 integer :: ir_landuse_config_si
115114 integer :: ir_ncohort_pa
116115 integer :: ir_canopy_layer_co
@@ -739,11 +738,6 @@ subroutine define_restart_vars(this, initialize_variables)
739738 long_name= ' average snow depth' , units= ' m' , flushval = flushzero, &
740739 hlms= ' CLM:ALM' , initialize= initialize_variables, ivar= ivar, index = ir_snow_depth_si )
741740
742- call this% set_restart_var(vname= ' fates_trunk_product_site' , vtype= site_r8 , &
743- long_name= ' Accumulate trunk product flux at site' , &
744- units= ' kgC/m2' , flushval = flushzero, &
745- hlms= ' CLM:ALM' , initialize= initialize_variables, ivar= ivar, index = ir_trunk_product_si )
746-
747741 call this% set_restart_var(vname= ' fates_landuse_config_site' , vtype= site_int, &
748742 long_name= ' hlm_use_potentialveg status of run that created this restart file' , &
749743 units= ' kgC/m2' , flushval = flushzero, &
@@ -2118,7 +2112,6 @@ subroutine set_restart_vectors(this,nc,nsites,sites)
21182112 rio_landuse_vector_gt_min_si = > this% rvars(ir_landuse_vector_gt_min_si)% int1d, &
21192113 rio_area_bareground_si = > this% rvars(ir_area_bareground_si)% r8 1d, &
21202114 rio_snow_depth_si = > this% rvars(ir_snow_depth_si)% r8 1d, &
2121- rio_trunk_product_si = > this% rvars(ir_trunk_product_si)% r8 1d, &
21222115 rio_landuse_config_s = > this% rvars(ir_landuse_config_si)% int1d, &
21232116 rio_ncohort_pa = > this% rvars(ir_ncohort_pa)% int1d, &
21242117 rio_fcansno_pa = > this% rvars(ir_fcansno_pa)% r8 1d, &
@@ -2743,9 +2736,6 @@ subroutine set_restart_vectors(this,nc,nsites,sites)
27432736 rio_fireweather_index_si(io_idx_si) = sites(s)% fireWeather% fire_weather_index
27442737 rio_snow_depth_si(io_idx_si) = sites(s)% snow_depth
27452738
2746- ! Accumulated trunk product
2747- rio_trunk_product_si(io_idx_si) = sites(s)% resources_management% trunk_product_site
2748-
27492739 ! land use flag
27502740 rio_landuse_config_si(io_idx_si) = hlm_use_potentialveg
27512741
@@ -3116,7 +3106,6 @@ subroutine get_restart_vectors(this, nc, nsites, sites)
31163106 rio_landuse_vector_gt_min_si = > this% rvars(ir_landuse_vector_gt_min_si)% int1d, &
31173107 rio_area_bareground_si = > this% rvars(ir_area_bareground_si)% r8 1d, &
31183108 rio_snow_depth_si = > this% rvars(ir_snow_depth_si)% r8 1d, &
3119- rio_trunk_product_si = > this% rvars(ir_trunk_product_si)% r8 1d, &
31203109 rio_landuse_config_si = > this% rvars(ir_landuse_config_si)% int1d, &
31213110 rio_ncohort_pa = > this% rvars(ir_ncohort_pa)% int1d, &
31223111 rio_fcansno_pa = > this% rvars(ir_fcansno_pa)% r8 1d, &
@@ -3775,7 +3764,6 @@ subroutine get_restart_vectors(this, nc, nsites, sites)
37753764
37763765 sites(s)% fireWeather% fire_weather_index = rio_fireweather_index_si(io_idx_si)
37773766 sites(s)% snow_depth = rio_snow_depth_si(io_idx_si)
3778- sites(s)% resources_management% trunk_product_site = rio_trunk_product_si(io_idx_si)
37793767
37803768 ! if needed, trigger the special procedure to initialize land use structure from a
37813769 ! restart run that did not include land use.
0 commit comments