diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index 3594bc71..873a3dc3 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -35,11 +35,11 @@ jobs: - uses: r-lib/actions/setup-r-dependencies@v2 with: - extra-packages: any::pkgdown, any::devtools, local::. + extra-packages: any::pkgdown, any::pak, local::. needs: website - name: Build site - run: devtools::install_github("geco-bern/GECO_documentation_template"); pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) + run: pak::pak("geco-bern/GECO_documentation_template"); pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) shell: Rscript {0} - name: Deploy to GitHub pages 🚀 diff --git a/CITATION.cff b/CITATION.cff index 7d285250..76d95fb9 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -70,7 +70,7 @@ abstract: '
To install the latest development release of the package run the following commands to install rsofun directly from GitHub:
-if(!require(remotes)){install.packages("remotes")}remotes::install_github("geco-bern/rsofun")library("rsofun")
if(!require(pak)){install.packages("pak")}pak::pak("geco-bern/rsofun")library("rsofun")
**NOTE:** Installing from GitHub requires compilation of Fortran and C source code contained in {rsofun}. To enable compiling source code, install Rtools @@ -79,12 +79,6 @@ abstract: '
Vignettes are not rendered by default, if you want to include additional documentation - please use:
- -if(!require(remotes)){install.packages("remotes")}remotes::install_github("geco-bern/rsofun",
- build_vignettes = TRUE)library("rsofun")
Assuming rsofun is the location of the source directory, on can
diff --git a/DESCRIPTION b/DESCRIPTION
index 949c5fee..5dabbfab 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -74,7 +74,7 @@ LazyData: true
LazyDataCompression: xz
ByteCompile: true
NeedsCompilation: yes
-RoxygenNote: 7.3.2
+RoxygenNote: 7.3.3
Suggests:
covr,
constructive,
diff --git a/NEWS.md b/NEWS.md
index 2c614879..e52f2b22 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,4 +1,9 @@
# rsofun (development version)
+* BiomeEP:
+ * Bugfix: annual, cohort-level output had mixed up column names for variables:
+ `NSN`,`seedC`,`leafC`,`rootC`,`sapwoodC`,`heartwoodC`
+ * Cohorts are now less aggressively merged. Merging criteria was simplified from
+ relative to absolute DBH difference. Now merging if difference <= 0.01 m.
# rsofun 5.1.0
diff --git a/R/data.R b/R/data.R
index d285e748..b5052315 100644
--- a/R/data.R
+++ b/R/data.R
@@ -277,7 +277,7 @@
#' \item{thetaHT}{Coefficient for allometry (height = alphaHT * DBH_m ** thetaHT), in m m\eqn{^{-thetaHT}}.}
#' \item{alphaCA}{Coefficient for allometry (projected crown area = pi * (alphaCA * DBH_m) ** thetaCA), in m\eqn{^{2/thetaCA-1}}.}
#' \item{thetaCA}{Coefficient for allometry (projected crown area = pi * (alphaCA * DBH_m) ** thetaCA), unitless. Dybzinski (eq. G1) showed that thetaCA = theatBM - 1.}
-#' \item{alphaBM}{Coefficient for allometry (biomass = alphaBM * DBH ** thetaBM), in kg C m\eqn{^{-thetaBM}}.}
+#' \item{alphaBM}{TODO: unused. alphaBM is overwritten by: (alphaBM = rho_wood * taperfactor * pi/4.*alphaHT). Coefficient for allometry (biomass = alphaBM * DBH ** thetaBM), in kg C m\eqn{^{-thetaBM}}.}
#' \item{thetaBM}{Coefficient for allometry (biomass = alphaBM * DBH ** thetaBM), unitless. Dybzinski (eq. G1) showed that thetaCA = theatBM - 1.}
#' }}\item{The following columns pertaining to the \bold{reproduction parameters}:}{\describe{
#' \item{seedlingsize}{Initial size of seedlings, in kg C per individual.}
diff --git a/R/run_biomee_f_bysite.R b/R/run_biomee_f_bysite.R
index 2104d920..19622327 100644
--- a/R/run_biomee_f_bysite.R
+++ b/R/run_biomee_f_bysite.R
@@ -518,32 +518,32 @@ prepare_init_lu <- function(init_lu){
init_lu <- init_lu %>% mutate(preset = 'unmanaged')
}
if(!'extra_N_input' %in% names(init_lu)) {
- init_lu <- init_lu %>% mutate('extra_N_input' = case_match(
+ init_lu <- init_lu %>% mutate('extra_N_input' = recode_values(
'preset',
"cropland" ~ 0.01,
- .default = 0.0
+ default = 0.0
))
}
if(!'extra_turnover_rate' %in% names(init_lu)) {
- init_lu <- init_lu %>% mutate('extra_turnover_rate' = case_match(
+ init_lu <- init_lu %>% mutate('extra_turnover_rate' = recode_values(
'preset',
"cropland" ~ 0.2,
- .default = 0.0
+ default = 0.0
))
}
if(!'oxidized_litter_fraction' %in% names(init_lu)) {
- init_lu <- init_lu %>% mutate('oxidized_litter_fraction' = case_match(
+ init_lu <- init_lu %>% mutate('oxidized_litter_fraction' = recode_values(
'preset',
"cropland" ~ 0.9,
"pasture" ~ 0.4,
- .default = 0.0
+ default = 0.0
))
}
init_lu <- init_lu %>% mutate(
- 'vegetated' = case_match(
+ 'vegetated' = recode_values(
'preset',
"urban" ~ FALSE,
- .default = TRUE
+ default = TRUE
)
)
init_lu <- init_lu %>% select(
@@ -846,41 +846,41 @@ annual_tile_output <- function(raw_data, aggregated_LU = FALSE){
annual_cohort_output <- function(raw_data){
annual_values <- c(
- "cohort",
- "year",
- "cID",
- "PFT",
- "layer",
- "density",
- "flayer",
- "DBH",
- "dDBH",
- "height",
- "age",
- "BA",
- "dBA",
- "Acrown",
- "Aleaf",
- "NSC",
- "seedC",
- "leafC",
- "rootC",
- "sapwoodC",
- "heartwoodC",
- "NSN",
- "treeG",
- "fseed",
- "fleaf",
- "froot",
- "fwood",
- "NPP",
- "GPP",
- "Rauto",
- "N_uptk",
- "N_fxed",
- "deathrate",
- "n_deadtrees",
- "c_deadtrees"
+ "cohort", # ANNUAL_COHORTS_ID = 1
+ "year", # ANNUAL_COHORTS_YEAR = 2
+ "cID", # ANNUAL_COHORTS_CID = 3
+ "PFT", # ANNUAL_COHORTS_PFT = 4
+ "layer", # ANNUAL_COHORTS_LAYER = 5
+ "density", # ANNUAL_COHORTS_DENSITY = 6
+ "flayer", # ANNUAL_COHORTS_FLAYER = 7
+ "DBH", # ANNUAL_COHORTS_DBH = 8
+ "dDBH", # ANNUAL_COHORTS_DDBH = 9
+ "height", # ANNUAL_COHORTS_HEIGHT = 10
+ "age", # ANNUAL_COHORTS_AGE = 11
+ "BA", # ANNUAL_COHORTS_BA = 12
+ "dBA", # ANNUAL_COHORTS_DBA = 13
+ "Acrown", # ANNUAL_COHORTS_ACROWN = 14
+ "Aleaf", # ANNUAL_COHORTS_ALEAF = 15
+ "NSC", # ANNUAL_COHORTS_NCS = 16
+ "NSN", # ANNUAL_COHORTS_NSN = 17
+ "seedC", # ANNUAL_COHORTS_SEED_C = 18
+ "leafC", # ANNUAL_COHORTS_LEAF_C = 19
+ "rootC", # ANNUAL_COHORTS_ROOT_C = 20
+ "sapwoodC", # ANNUAL_COHORTS_SW_C = 21
+ "heartwoodC", # ANNUAL_COHORTS_HW_C = 22
+ "treeG", # ANNUAL_COHORTS_TREEG = 23
+ "fseed", # ANNUAL_COHORTS_FSEED = 24
+ "fleaf", # ANNUAL_COHORTS_FLEAF = 25
+ "froot", # ANNUAL_COHORTS_FROOT = 26
+ "fwood", # ANNUAL_COHORTS_FWOOD = 27
+ "NPP", # ANNUAL_COHORTS_NPP = 28
+ "GPP", # ANNUAL_COHORTS_GPP = 29
+ "Rauto", # ANNUAL_COHORTS_RESP = 30
+ "N_uptk", # ANNUAL_COHORTS_N_UPTK = 31
+ "N_fxed", # ANNUAL_COHORTS_N_FIX = 32
+ "deathrate", # ANNUAL_COHORTS_DEATHRATE = 33
+ "n_deadtrees", # ANNUAL_COHORTS_N_LOSS = 34
+ "c_deadtrees" # ANNUAL_COHORTS_C_LOSS = 35
)
dimensions <- dim(raw_data)
diff --git a/README.md b/README.md
index b043df78..7c7a9bcd 100644
--- a/README.md
+++ b/README.md
@@ -26,21 +26,13 @@ library("rsofun")
To install the latest development release of the package run the following commands to install rsofun directly from GitHub:
``` r
-if(!require(remotes)){install.packages("remotes")}
-remotes::install_github("geco-bern/rsofun")
+if(!require(pak)){install.packages("pak")}
+pak::pak("geco-bern/rsofun")
library("rsofun")
```
**NOTE:** Installing from GitHub requires compilation of Fortran and C source code contained in {rsofun}. To enable compiling source code, install [Rtools](https://cran.r-project.org/bin/windows/Rtools/) on Windows, or [Xcode](https://developer.apple.com/xcode/) and the [GNU Fortran compiler on Mac](https://github.com/fxcoudert/gfortran-for-macOS) (see also 'Mandatory tools' [here](https://mac.r-project.org/tools/)). On Linux, the gfortran compiler is usually installed already.
-Vignettes are not rendered by default, if you want to include additional documentation please use:
-
-``` r
-if(!require(remotes)){install.packages("remotes")}
-remotes::install_github("geco-bern/rsofun", build_vignettes = TRUE)
-library("rsofun")
-```
-
### From source
Assuming `rsofun` is the location of the source directory, on can build the R package (with extension .tar.gz) from the command line using:
diff --git a/data-raw/generate_biomee_drivers.R b/data-raw/generate_biomee_drivers.R
index 5fefb3f5..2f49507b 100644
--- a/data-raw/generate_biomee_drivers.R
+++ b/data-raw/generate_biomee_drivers.R
@@ -153,7 +153,7 @@ init_cohort <- tibble(
init_cohort_bsw = rep(0.05, 1), # initial biomass of sapwood, kg C/individual
init_cohort_bHW = rep(0.0, 1), # initial biomass of heartwood, kg C/tree
init_cohort_seedC = rep(0.0, 1), # initial biomass of seeds, kg C/individual
- init_cohort_nsc = rep(0.05, 1), # initial non-structural biomass
+ init_cohort_nsc = rep(0.05, 1), # initial non-structural biomass, kg C/individual
lu_index = rep(0, 1) # index land use (LU) containing this cohort. 0 (default) means any vegetated tile will contain a copy.
)
diff --git a/data/biomee_gs_leuning_output.rda b/data/biomee_gs_leuning_output.rda
index 365c212e..32cfbad7 100644
Binary files a/data/biomee_gs_leuning_output.rda and b/data/biomee_gs_leuning_output.rda differ
diff --git a/data/biomee_p_model_luluc_output.rda b/data/biomee_p_model_luluc_output.rda
index d56b49e7..0578c9fd 100644
Binary files a/data/biomee_p_model_luluc_output.rda and b/data/biomee_p_model_luluc_output.rda differ
diff --git a/data/biomee_p_model_output.rda b/data/biomee_p_model_output.rda
index a6b561b5..8ec466be 100644
Binary files a/data/biomee_p_model_output.rda and b/data/biomee_p_model_output.rda differ
diff --git a/src/cohort_biomee.mod.f90 b/src/cohort_biomee.mod.f90
index c3c4b4f7..7073f92c 100644
--- a/src/cohort_biomee.mod.f90
+++ b/src/cohort_biomee.mod.f90
@@ -373,8 +373,7 @@ function can_be_merged_with(self, other) result(res)
sameSizeTree = (spdata(self%species)%lifeform > 0).and. &
(spdata(other%species)%lifeform > 0).and. &
- ((dbh_diff/(self_dbh + other_dbh) < 0.1 ) .or. &
- (dbh_diff < 0.001)) ! it'll be always true for grasses
+ (dbh_diff <= 0.01) ! for TREES: if DBH difference <= 1cm ! it'll be always true for grasses
sameSizeGrass= (spdata(self%species)%lifeform == 0) .and. &
(spdata(other%species)%lifeform == 0) .and. &
diff --git a/src/interface_in_biosphere_biomee.mod.f90 b/src/interface_in_biosphere_biomee.mod.f90
index ddaad9f8..0a492804 100644
--- a/src/interface_in_biosphere_biomee.mod.f90
+++ b/src/interface_in_biosphere_biomee.mod.f90
@@ -445,7 +445,7 @@ subroutine populate_spec_data(self, params_species)
self%thetaHT = real( params_species(25)) ! prescribed
self%alphaCA = real( params_species(26)) ! prescribed
self%thetaCA = real( params_species(27)) ! prescribed
- self%alphaBM = real( params_species(28)) ! prescribed
+ self%alphaBM = real( params_species(28)) ! prescribed ! TODO: not actually not prescribed, it is overwritten by alphaBM
self%thetaBM = real( params_species(29)) ! prescribed
self%seedlingsize = real( params_species(30))
self%maturalage = real( params_species(31))
@@ -487,7 +487,7 @@ subroutine init_pft_data(self)
! specific root area
self%SRA = 2.0/(self%root_r*self%rho_FR)
- ! calculate alphaBM parameter of allometry. note that rho_wood was re-introduced for this calculation
+ ! calculate alphaBM parameter of allometry. note that rho_wood was re-introduced for this calculation ! TODO: note that this overwrites the parameter alphaBM
self%alphaBM = self%rho_wood * self%taperfactor * PI/4. * self%alphaHT ! 5200
! Vmax as a function of LNbase
diff --git a/src/main_biomee.mod.f90 b/src/main_biomee.mod.f90
index 02fc73bb..b8f00e71 100644
--- a/src/main_biomee.mod.f90
+++ b/src/main_biomee.mod.f90
@@ -80,7 +80,7 @@ subroutine biomee_f( &
! Output arrays (naked) to be passed back to C/R
real(kind=c_double), dimension(nt_daily,nvars_daily_tile, n_lu), intent(out) :: output_daily_tile
real(kind=c_double), dimension(nt_annual,nvars_annual_tile, n_lu), intent(out) :: output_annual_tile
- real(kind=c_double), dimension(out_max_cohorts, nt_annual_trans, nvars_annual_cohorts, n_lu), &
+ real(kind=c_double), dimension(NCohortMax, nt_annual_trans, nvars_annual_cohorts, n_lu), &
intent(out) :: output_annual_cohorts
real(kind=c_double), dimension(nt_annual,nvars_aggregated_out), intent(out) :: output_annual_aggregated
diff --git a/src/vegetation_processes_biomee.mod.f90 b/src/vegetation_processes_biomee.mod.f90
index 10d686db..c3ef2e07 100755
--- a/src/vegetation_processes_biomee.mod.f90
+++ b/src/vegetation_processes_biomee.mod.f90
@@ -735,14 +735,15 @@ subroutine vegn_reproduction( vegn )
type(cohort_stack_item), pointer :: new ! new cohort
type(cohort_stack_item), pointer :: it
integer, dimension(NCohortMax) :: reproPFTs
- type(orgpool), dimension(NCohortMax) :: seed ! seed pool of productible PFTs
- integer :: nPFTs ! number of new cohorts to be created
+ type(orgpool), dimension(NCohortMax) :: seed ! seed pool of reproducing PFTs
+ integer :: nPFTs ! number of new cohorts to be created (one new cohort per PFT)
integer :: pft_idx ! PFT index
integer :: k ! new cohort indices
- ! Looping through all reproductable cohorts and check if reproduction happens
- reproPFTs = -999 ! the code of reproductive PFT
+ ! Looping through all cohorts and check if reproduction happens
+ reproPFTs = -999 ! the code of reproducing PFT
nPFTs = 0
+ ! NOTE: since seed is an orgpool(), it initializes by design to zero
! We loop through each cohort and add C and N to species-specific seed pools
! whenever a cohort can reproduce
@@ -760,7 +761,7 @@ subroutine vegn_reproduction( vegn )
enddo
if (pft_idx == 0) then ! when it is a new PFT, put it to the next place
- nPFTs = nPFTs + 1 ! update the number of reproducible PFTs
+ nPFTs = nPFTs + 1 ! update the number of reproducing PFTs
reproPFTs(nPFTs) = cc%species ! PFT number
pft_idx = nPFTs
endif
@@ -777,7 +778,7 @@ subroutine vegn_reproduction( vegn )
! We build new cohorts for seedlings
do k = 1, nPFTs
- new => vegn%create_cohort()
+ new => vegn%create_cohort() ! NOTE: this could lead to more cohorts than `NCohortMax`
cc => new%cohort
! update child cohort parameters
diff --git a/src/vegetation_tile_biomee.mod.f90 b/src/vegetation_tile_biomee.mod.f90
index e6b650ee..f3cc62f3 100644
--- a/src/vegetation_tile_biomee.mod.f90
+++ b/src/vegetation_tile_biomee.mod.f90
@@ -18,8 +18,7 @@ module md_vegetation_tile_biomee
public :: params_species_biomee, cohort_type, vegn_tile_type, dampended_forcing_type
!=============== Parameters ======================================================
- integer, public, parameter :: NCohortMax = 50 ! maximum number of cohorts
- integer, public, parameter :: out_max_cohorts = NCohortMax
+ integer, public, parameter :: NCohortMax = 50 ! maximum number of cohorts that are output (there could be more but they would not be reported)
!===== Model
integer, public, parameter :: NLAYERS_MAX = 9 ! maximum number of canopy layers to be considered
@@ -165,7 +164,7 @@ module md_vegetation_tile_biomee
!===== Reporting diagnostics
real, dimension(nvars_annual_tile) :: out_annual_tile
real, dimension(ndayyear, nvars_daily_tile) :: out_daily_tile
- real, dimension(out_max_cohorts, nvars_annual_cohorts) :: out_annual_cohorts
+ real, dimension(NCohortMax, nvars_annual_cohorts) :: out_annual_cohorts
contains
diff --git a/tests/testthat/_snaps/model-runs-snapshot-biomee.md b/tests/testthat/_snaps/model-runs-snapshot-biomee.md
index cf701a4a..67122fec 100644
--- a/tests/testthat/_snaps/model-runs-snapshot-biomee.md
+++ b/tests/testthat/_snaps/model-runs-snapshot-biomee.md
@@ -14,53 +14,53 @@
# `mod_BiomeE_Pmodel_odt_yr251`:
tibble::tribble(
- ~year, ~doy, ~Tk, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~ws1, ~ws2, ~ws3, ~LAI, ~NPP, ~GPP, ~Rauto, ~Rh, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_uptk,
- 251, 1, 273.5336608886719, 1.436545491218567, 799.9601440429688, 0, 0.039894573390483856, 1.366621732711792, 19.9601058959960938, 179.99998474121094, 600, 3.545771360397339, 0.0022412477992475033, 0.0022878830786794424, 4.663517393055372e-05, 0.00147393113002181053, 2.1639299392700195, 0.0025064197834581137, 0.6027811765670776, 0.36641788482666016, 4.457954406738281, 3.313190221786499, 0.062128543853759766, 0.00012532096297945827, 0.010371451266109943, 0.0091604208573699, 0.0127370133996009827, 0.0094662467017769814, 0.1644955724477768, 2.211317777633667, 73.53292083740234, 0.01644955761730671, 0x1.d690ap-4, 0.680659294128418, 0.0021971934475004673, 0,
- 251, 2, 271.50848388671875, 2.0038182735443115, 799.9590454101562, 0, 0.040993303060531616, 1.963923454284668, 19.959009170532227, 179.99998474121094, 600, 3.5523104667663574, -0.00011782348155975342, 0.0022555754985660315, 0.002373398980125785, 0.001464895554818213, 2.1591391563415527, 0.0026894453912973404, 0.6038928031921387, 0.36633092164993286, 4.442193508148193, 3.33087158203125, 0.06220299005508423, 0.0001344722550129518, 0.010390575975179672, 0.009158248081803322, 0.01269198209047317505, 0.009516766294836998, 0.16449807584285736, 2.21187424659729, 73.53244018554688, 0.016449807211756706, 0.11489550024271011, 0.6806619763374329, 0.002089059678837657, 0.00014201035082805902,
- 251, 180, 290.3451843261719, 2.415818214416504, 799.5171508789062, 0, 0.4828766882419586, 1.7443971633911133, 19.51712417602539, 179.99998474121094, 600, 3.668419599533081, 0.0070009855553507805, 0.009404749609529972, 0.0024037642870098352, 0.005796163342893124, 2.1534759998321533, 0.033590685576200485, 0.6236313581466675, 0.37112849950790405, 4.586365222930908, 3.4869801998138428, 0.06358352303504944, 0.0016795347910374403, 0.01073020230978727340698, 0.009278194047510624, 0.013103900477290154, 0.009962791576981544, 0.1655682474374771, 2.2202813625335693, 73.34947967529297, 0.01655682548880577, 0.114454410970211029, 0.6809614896774292, 0.001338801346719265, 0,
- 251, 364, 271.62640380859375, 2.0575454235076904, 799.951416015625, 0, 0.04857255890965462, 1.9935612678527832, 19.95142936706543, 179.99998474121094, 600, 3.797484874725342, 0.0004929341375827789, 0.0024769718293100595, 0.0019840376917272806, 0.001429187715984881, 2.2494165897369385, 0.0709228366613388, 0.6455724239349365, 0x1.8ab2p-2, 4.789840221405029, 3.636152505874634, 0.0647997334599495, 0.003546142252162099, 0.011107726953923702, 0.009636103175580502, 0.013685258105397224, 0.010388994589447975, 0.1644166260957718, 2.049516439437866, 72.92729187011719, 0.01644166186451912, 0.108148269355297089, 0.6808105707168579, 0.0022039266768842936, 0,
- 251, 365, 273.3876037597656, 1.826090812683105469, 799.9301147460938, 0, 0.06991278380155563, 1.7775189876556396, 19.9300861358642578125, 179.99998474121094, 600, 3.7982163429260254, 0.0004794639535248279572, 0.0024706178810447454, 0.0019911539275199175, 0.00142781913746148348, 2.246011734008789, 0.071121446788311, 0.645696759223938, 0.3855189085006714, 4.790918350219727, 3.63693118095397949, 0.06476680189371109, 0.0035560731776058674, 0.011109866201877594, 0.00963795930147171, 0.013688337057828903, 0.010391217656433582, 0.1644132286310196, 2.050182342529297, 72.92683410644531, 0.01644132286310196, 0.10816195607185364, 0.6808135509490967, 0.00221356307156384, 2.4238115656771697e-05,
+ ~year, ~doy, ~Tk, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~ws1, ~ws2, ~ws3, ~LAI, ~NPP, ~GPP, ~Rauto, ~Rh, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_uptk,
+ 251, 1, 273.5336608886719, 1.436545491218567, 799.9601440429688, 0, 0.039872877299785614, 1.36663818359375, 19.960126876831055, 179.99998474121094, 600, 3.5711522102355957, 0.002246169140562415, 0.0022930772975087166, 4.69080732727889e-05, 0.0014670143136754632, 2.185115098953247, 0.0010285184253007174, 0.6070958971977234, 0.369075745344162, 4.419329643249512, 3.357487440109253, 0.06243487820029259, 5.142590816831216e-05, 0.010445700958371162, 0.009226877242326736, 0.012626657262444496, 0.0095928134396672249, 0.16364045441150665, 2.182932138442993, 73.70133972167969, 0.016364045441150665, 0.11383230984210968, 0.6851041913032532, 0.0021720954682677984, 0,
+ 251, 2, 271.50848388671875, 2.0038182735443115, 799.9590454101562, 0, 0.04097667336463928, 1.963945746421814, 19.959022521972656, 179.99998474121094, 600, 3.5775811672210693, -0.0001120516099035739899, 0.00226065958850085735, 0.0023727111984044313, 0.00145803764462471, 2.1803319454193115, 0.0012135711731389165, 0.6081887483596802, 0.3689764440059662, 4.404463768005371, 3.374290704727173, 0.06237226724624634, 6.0678543377434835e-05, 0.010464506223797798, 0.00922439619898796, 0.012584179639816284, 0.009640824049711227, 0.1636424958705902, 2.183506488800049, 73.70086669921875, 0.01636425033211708, 0.11384408175945282, 0.6851068735122681, 0.0022014062851667404, 4.726273346022936e-06,
+ 251, 180, 290.3451843261719, 2.415818214416504, 799.5175170898438, 0, 0.4825248718261719, 1.7448978424072266, 19.517475128173828, 179.99998474121094, 600, 3.68552660942077637, 0.006996422074735165, 0.009407569654285908, 0.0024111478123813868, 0.005773112177848816, 2.1710071563720703, 0.0324498675763607, 0.6265395879745483, 0.37328460812568665, 4.545215129852295, 3.536616802215576, 0.06381607055664062, 0.0016224937280640006, 0.01078024785965681, 0.0093321036547422409, 0.012986330315470695, 0.010104616172611713409, 0.16461101174354553, 2.195847511291504, 73.5187759399414, 0.016461100429296494, 0.113465107977390289, 0.6854032874107361, 0.001278068171814084, 0.0004918491467833519,
+ 251, 364, 271.62640380859375, 2.0575454235076904, 799.9514770507812, 0, 0.04856013506650925, 1.993576288223266602, 19.951440811157227, 179.99998474121094, 600, 3.8105366230010986328, 0.0004854158032685518, 0.002472618827596307, 0.001987203024327755, 0.001424696994945407, 2.262697458267212, 0.07006731629371643, 0.6477912068367004, 0.3867694437503814697, 4.750117778778076, 0x1.d7e2f6p+1, 0.06493836641311646, 0.003503367304801941, 0.01114590838551521301, 0.009669224731624126, 0.013571766205132008, 0.010533182881772518, 0.1633845418691635, 2.030388832092285, 73.09456634521484, 0.01633845455944538, 0.10725726932287216, 0.6852458119392395, 0.0021250471472740173, 0.00017180765280500054,
+ 251, 365, 273.3876037597656, 1.826090812683105469, 799.9301147460938, 0, 0.06989705562591553, 1.7775309085845947, 19.930103302001953, 179.99998474121094, 600, 3.811225652694702, 0.00047187902964651585, 0.0024662481155246496, 0.0019943690858781338, 0.00142334518022835255, 2.2592790126800537, 0.07026736438274384, 0.6479084491729736, 0.3868393898010254, 4.751203536987305, 3.687394380569458, 0.06488119065761566, 0.003513369942083955, 0.011147924698889256, 0.00967097282409668, 0.0135748665779829025, 0.010535413399338722, 0.16338114440441132, 2.0310652256011963, 73.09410858154297, 0.016338113695383072, 0.107271194458007812, 0.6852487325668335, 0.0021593442652374506, 0,
)
---
# `mod_BiomeE_Pmodel_oat`:
tibble::tribble(
- ~year, ~CAI, ~LAI, ~Density, ~DBH, ~Density12, ~DBH12, ~QMD12, ~NPP, ~GPP, ~Rauto, ~Rh, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~plantC, ~soilC, ~totC, ~plantN, ~soilN, ~totN, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_fxed, ~N_uptk, ~N_yrMin, ~N_P2S, ~N_loss, ~totseedC, ~totseedN, ~Seedling_C, ~Seedling_N, ~MaxAge, ~MaxVolume, ~MaxDBH, ~NPPL, ~NPPW, ~n_deadtrees, ~c_deadtrees, ~m_turnover, ~c_turnover_time, ~lu_fraction,
- 1, 0.00416250666603446, 0.006210124120116234, 500, 0.6753503084182739, 0, 0, 0, 0.0023310792166739702, 0.004437046591192484, 0.0021059673745185137, 0.0023628724738955498, 587.5296630859375, 799.9039306640625, 0, 159.69195556640625, 427.93365478515625, 0.009924544021487236, 0.009370563551783562, 0.0192951075732707977, 0.0002831722085829824, 0.003793478012084961, 0.004076650366187096, 0.004243259783834219, 0, 0.0010557210771366954, 0.0006303275004029274, 0x1.2e6ee6p-10, 0.0028415448032319546, 0x1.f2c66p-13, 0, 1.8164650100516155e-05, 1.575815986143425e-05, 3.296260274510132e-06, 8.118709047266748e-06, 0.00023432944726664573, 0.00800092238932848, 0.0011353119043633342, 2.3432945454260334e-05, 0.0005318375770002604, 2.699048854992725e-05, 0.003211217001080513, 0, 0, -0.011788776144385338, 2.004899761232081801e-05, 0.021915258839726448, 0, 0, 0, 0, 1.0000004768371582, 0x1.c4e5f2p-13, 0.006753502879291773, 0.0012194368755444884, 0.0014952378114685416, 2.988882670251769e-06, 0.00010475356975803152, 0.00010475356975803152, 1.9003965854644775, 1,
- 2, 0.005111239850521088, 0.00974088441580534, 494.7225036621094, 0.7799178957939148, 0, 0, 0, 0.004777783993631601, 0.0068839178420603275, 0.002106133848428726, 0.0020678008440881968, 587.5296630859375, 799.9039916992188, 0, 159.53289794921875, 0x1.abff0cp+8, 0.0133715001866221428, 0.008633578196167946, 0.02200507745146751404, 0.00025166457635350525, 0.003379649482667446, 0.003631314029917121, 0.0052222004160285, 0, 0.0016559503274038434, 0.0009886997286230326, 0.00201712618581950665, 0.0034875234123319387, 0.00018272738088853657, 0, 2.8492153433035128e-05, 2.47174666583305225e-05, 5.763217814092059e-06, 9.964360287995078e-06, 0.0003333908680360764, 0.006882828660309315, 0.0014173585223034024, 3.333908534841612e-05, 0.000451616797363385558, 3.06092479149811e-05, 0.0028640844393521547, 0, 0, -0.00034713459899649024, 3.1208794098347425e-05, 0.01044532656669616699, 0, 0, 0, 0, 0x1.fffea4p+0, 0.00030072274967096746, 0.0077991788275539875, 0.0008850513841025531, 0.00155158306006342173, 2.6899847398453858e-06, 0.00014292488049250096, 0.00014292488049250096, 2.2477195262908936, 1,
- 8, 0.013906870037317276, 0.043787699192762375, 462.5186462402344, 1.5897880792617798, 0, 0, 0, 0.01834146678447723389, 0.0265294201672077179, 0.00818795245140791, 0.0034570074640214443, 587.5296630859375, 799.9047241210938, 0, 157.8809814453125, 429.6481628417969, 0.06122784316539764404, 0.020369375124573708, 0.0815972164273262, 0.0010830140672624111, 0.00347965769469738, 0.004562671761959791, 0.02130504697561264, 0.0015576676232740283, 0.00744390906766057, 0.004444451071321964, 0.015669401735067368, 0.0108073707669973373413, 0.0006902921013534069, 7.788345101289451e-05, 0.00012807949678972363, 0.000111111010483000427, 4.476971662370488e-05, 3.0878218240104616e-05, 0.0006472131353802979, 0.012593458406627178, 0.007128703873604536, 6.472131644841284e-05, 0.0005646665813401341, 0.00010436776938149706, 0.002745901932939887, 0, 0.0003319511888548732, 0.000321338651701808, 0.00016018083260860294, 0.009735604748129845, 0, 0, 0, 0, 8.000199317932129, 0.0015471557853743434, 0.015897881239652634, 0.0025127814151346684, 0.005758278071880341, 1.3001056686334778e-05, 0.0007350104860961437, 0.0007350104860961437, 1.8768407106399536, 1,
- 9, 0.016000162810087204, 0.050379808992147446, 456.96630859375, 1.7596757411956787, 0, 0, 0, 0.021106015890836716, 0.030644193291664124, 0.009538178332149982, 0.004054611548781395, 587.5296630859375, 799.9048461914062, 0, 157.56739807128906, 429.9620666503906, 0.07428936660289764, 0.02435925602912903, 0x1.941094p-4, 0.001279305899515748, 0.0035889181308448315, 0.004868224263191223, 0.025268159806728363, 0.002303489251062274, 0.008564568124711514, 0.005113549996167421, 0.019553789868950844, 0.01348581444472074509, 0.0007945323013700545, 0.0001151745091192424297, 0.00014736161392647773, 0.00012783858983311802, 5.586797124124132e-05, 3.8530917663592845e-05, 0.0007556240307167172, 0.014716660603880882, 0.008886972442269325, 7.556240598205477e-05, 0.0006524593918584287, 0.0001265366590814665, 0.00273435958661139, 0, 0.00037931359838694334, 0.000367771222954615951, 0.00018579905736260116, 0x1.3daaf2p-7, 0.0022750776261091232, 0.000113753914774861187, 0.0022750776261091232, 0.000113753907498903573, 9.000265121459961, 0.001954109640792012, 0.017596757039427757, 0.0028416116256266832, 0.006880678236484528, 1.577928924234584e-05, 0.000916304241400212, 0.000916304241400212, 1.9599542617797852, 1,
- 16, 0.04833274334669113, 0.14704228937625885, 2009.9169921875, 1.1782575845718384, 0, 0, 0, 0.06215196475386619567871, 0.09093406051397324, 0.02878209576010704, 0.012174996547400951, 587.5296630859375, 799.90673828125, 0, 153.25502014160156, 434.2740173339844, 0.2517127990722656, 0.08063244074583054, 0.33234524726867676, 0.003706026822328567505, 0.005141731351613998, 0.008847758173942566, 0.07830988615751266, 0.004114205949008465, 0.02499719336628914, 0.01492479443550109863281, 0.0758480355143547, 0.053518690168857574, 0.002327477326616645, 0.0002057102246908471, 0.00043010085937567055, 0.0003731192264240235, 0.00021670872229151428, 0.000152910390170291066, 0.00225503440015018, 0.043719563633203506, 0.03465784341096878, 0.0002255034341942519, 0.0019126012921333313, 0.00043470165110193193, 0.0025689247995615005, 0, 0.0010664527071639895, 0.0010267083998769522, 0.0005489327013492584, 0.00914375577121973, 0x1.ddc81ap-9, 0.00018225915846414864, 0x1.ddc81ap-9, 0.00018225915846414864, 16.00072479248047, 0.007513242773711681, 0.031602952629327774, 0.008355258964002132, 0.021820859983563423, 5.371998850023374e-05, 0.0037389725912362337, 0.0037389725912362337, 2.452638864517212, 1,
- 251, 1.375819206237793, 3.7989466190338135, 46632.796875, 1.0767898559570312, 202.67103576660156, 0x1.5090d4p+4, 21.303977966308594, 1.4454326629638672, 2.211286783218384, 0.7658541798591614, 1.3433235883712769, 587.5296630859375, 799.9301147460938, 0, 94.1740951538086, 493.3553466796875, 11.774565696716309, 75.14306640625, 86.91763305664062, 0.11311229318380356, 0.8076682686805725, 0.92078053951263428, 2.2421305179595947, 0.07131978124380112, 0.6458209753036499, 0x1.8ad8eap-2, 4.791994571685791, 3.637706756591797, 0.06470964103937149, 0.0035659901332110167, 0.011112003587186337, 0.00963981356471777, 0.013691413216292858, 0.010393436066806316, 0.1644132286310196, 2.051492691040039, 72.92716217041016, 0.01644132286310196, 0.108195357024669647, 0.6808180809020996, 0.00221356307156384, 0, 0.022505495697259903, 0.022556107491254807, 0.02244538627564907, 0.007391450461000204, 0.06545895338058472, 0.003272948320955038, 0.06545895338058472, 0.0032729485537856817, 79.71361541748047, 0.7253342270851135, 0.2304864525794983, 0.1717321127653122, 0.6585536003112793, 0.00906318984925747, 0.8894377946853638, 0.8894377946853638, 5.523782253265381, 1,
+ ~year, ~CAI, ~LAI, ~Density, ~DBH, ~Density12, ~DBH12, ~QMD12, ~NPP, ~GPP, ~Rauto, ~Rh, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~plantC, ~soilC, ~totC, ~plantN, ~soilN, ~totN, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_fxed, ~N_uptk, ~N_yrMin, ~N_P2S, ~N_loss, ~totseedC, ~totseedN, ~Seedling_C, ~Seedling_N, ~MaxAge, ~MaxVolume, ~MaxDBH, ~NPPL, ~NPPW, ~n_deadtrees, ~c_deadtrees, ~m_turnover, ~c_turnover_time, ~lu_fraction,
+ 1, 0.00416250666603446, 0.006210124120116234, 500, 0.6753503084182739, 0, 0, 0, 0.0023310792166739702, 0.004437046591192484, 0.0021059673745185137, 0.0023628724738955498, 587.5296630859375, 799.9039306640625, 0, 159.69195556640625, 427.93365478515625, 0.009924544021487236, 0.009370563551783562, 0.0192951075732707977, 0.0002831722085829824, 0.003793478012084961, 0.004076650366187096, 0.004243259783834219, 0, 0.0010557210771366954, 0.0006303275004029274, 0x1.2e6ee6p-10, 0.0028415448032319546, 0x1.f2c66p-13, 0, 1.8164650100516155e-05, 1.575815986143425e-05, 3.296260274510132e-06, 8.118709047266748e-06, 0.00023432944726664573, 0.00800092238932848, 0.0011353119043633342, 2.3432945454260334e-05, 0.0005318375770002604, 2.699048854992725e-05, 0.003211217001080513, 0, 0, -0.011788776144385338, 2.004899761232081801e-05, 0.021915258839726448, 0, 0, 0, 0, 1.0000004768371582, 0x1.c4e5f2p-13, 0.006753502879291773, 0.0012194368755444884, 0.0014952378114685416, 2.9888828976254445e-06, 0.00010475356975803152, 0.00010475356975803152, 1.9003965854644775, 1,
+ 2, 0.005111239850521088, 0.00974088441580534, 494.7225036621094, 0.7799178957939148, 0, 0, 0, 0.004777783993631601, 0.0068839178420603275, 0.002106133848428726, 0.0020678008440881968, 587.5296630859375, 799.9039916992188, 0, 159.53289794921875, 0x1.abff0cp+8, 0.0133715001866221428, 0.008633578196167946, 0.02200507745146751404, 0.00025166457635350525, 0.003379649482667446, 0.003631314029917121, 0.0052222004160285, 0, 0.0016559503274038434, 0.0009886997286230326, 0.00201712618581950665, 0.0034875234123319387, 0.00018272738088853657, 0, 2.8492153433035128e-05, 2.47174666583305225e-05, 5.763217814092059e-06, 9.964360287995078e-06, 0.0003333908680360764, 0.006882828660309315, 0.0014173585223034024, 3.333908534841612e-05, 0.000451616797363385558, 3.06092479149811e-05, 0.0028640844393521547, 0, 0, -0.00034713459899649024, 3.1208794098347425e-05, 0.01044532656669616699, 0, 0, 0, 0, 0x1.fffea4p+0, 0.00030072274967096746, 0.0077991788275539875, 0.0008850513841025531, 0.00155158306006342173, 2.6899845124717103e-06, 0.0001429248950444162, 0.0001429248950444162, 2.2477195262908936, 1,
+ 8, 0.013906870037317276, 0.043787699192762375, 462.5186462402344, 1.5897880792617798, 0, 0, 0, 0.01834146678447723389, 0.0265294201672077179, 0.00818795245140791, 0.0034570074640214443, 587.5296630859375, 799.9047241210938, 0, 157.8809814453125, 429.6481628417969, 0.06122784316539764404, 0.020369375124573708, 0.0815972164273262, 0.0010830140672624111, 0.00347965769469738, 0.004562671761959791, 0.02130504697561264, 0.0015576676232740283, 0.00744390906766057, 0.004444451071321964, 0.015669401735067368, 0.0108073707669973373413, 0.0006902921013534069, 7.788345101289451e-05, 0.00012807949678972363, 0.000111111010483000427, 4.476971662370488e-05, 3.0878218240104616e-05, 0.0006472131353802979, 0.012593458406627178, 0.007128703873604536, 6.472131644841284e-05, 0.0005646665813401341, 0.00010436776938149706, 0.002745901932939887, 0, 0.0003319511888548732, 0.000321338651701808, 0.00016018083260860294, 0.009735604748129845, 0, 0, 0, 0, 8.000199317932129, 0.0015471557853743434, 0.015897881239652634, 0.0025127814151346684, 0.005758278071880341, 1.3001056686334778e-05, 0.0007350104860961437, 0.0007350104860961437, 1.8768407106399536, 1,
+ 9, 0.016000162810087204, 0.050379808992147446, 456.96630859375, 1.7596757411956787, 0, 0, 0, 0.021106015890836716, 0.030644193291664124, 0.009538178332149982, 0.004054611548781395, 587.5296630859375, 799.9048461914062, 0, 157.56739807128906, 429.9620666503906, 0.07428936660289764, 0.02435925602912903, 0x1.941094p-4, 0.001279305899515748, 0.0035889181308448315, 0.004868224263191223, 0.025268159806728363, 0.002303489251062274, 0.008564568124711514, 0.005113549996167421, 0.019553789868950844, 0.01348581444472074509, 0.0007945323013700545, 0.0001151745091192424297, 0.00014736161392647773, 0.00012783858983311802, 5.586797124124132e-05, 3.8530917663592845e-05, 0.0007556240307167172, 0.014716660603880882, 0.008886972442269325, 7.556240598205477e-05, 0.0006524593918584287, 0.0001265366590814665, 0.00273435958661139, 0, 0.00037931359838694334, 0.000367771222954615951, 0.00018579905736260116, 0x1.3daaf2p-7, 0.0022750776261091232, 0.000113753914774861187, 0.0022750776261091232, 0.000113753907498903573, 9.000265121459961, 0.001954109640792012, 0.017596757039427757, 0.0028416116256266832, 0.006880678236484528, 1.577928924234584e-05, 0.000916304299607873, 0.000916304299607873, 1.9599542617797852, 1,
+ 16, 0.049853820353746414, 0.1513535976409912, 2009.7882080078125, 1.23066318035125732, 0, 0, 0, 0.06374537944793701, 0x1.7ea2f8p-4, 0.02967175841331482, 0x1.8e76ccp-7, 587.5296630859375, 799.9067993164062, 0, 153.14578247070312, 434.3832702636719, 0.25442904233932495, 0.0807756632566452, 0.33520472049713135, 0.0037690105382353067398, 0.005100796930491924, 0.008869807235896587, 0.07905802130699158, 0.003703018883243203, 0.025730112567543983, 0.015362389385700226, 0.07626524567604065, 0.0543102547526359558, 0.0023840165231376886, 0.0001851508714025840163, 0.00044271143269725144, 0.0003840590943582356, 0.00021790072787553072, 0.00015517199062742293, 0.002249671844765544, 0.04385187849402428, 0.034674108028411865, 0.00022496718156617135, 0.00191302364692091942, 0.0004348130605649203, 0.0025279929395765066, 0, 0.001197746372781694, 0.001138570485636592, 0.0005580715369433165, 0.009030207060277462, 0x1.ddc81ap-9, 0.00018225915846414864, 0x1.ddc81ap-9, 0.00018225915846414864, 16.00072479248047, 0.007513242773711681, 0.031602952629327774, 0.009060700424015522, 0.022315775975584984, 5.429308657767251e-05, 0.0037634894251823425, 0.0037634894251823425, 2.4337158203125, 1,
+ 251, 1.3873939514160156, 3.81191372871398926, 44373.31640625, 1.0969921350479126, 0x1.f33242p+6, 23.53078842163086, 23.56116485595703, 1.4429168701171875, 2.2116870880126953, 0.7687702775001526, 1.338205337524414, 587.5296630859375, 799.9301147460938, 0, 94.11368560791016, 493.4158020019531, 11.801254272460938, 75.29019927978516, 87.0914535522461, 0.11328565329313278, 0.8110554218292236, 0.924341082572937, 2.255391836166382, 0.07046713680028915, 0.6480253338813782, 0.3869091868400574, 4.752285957336426, 3.68817543983459473, 0.06482403725385666, 0.003523358842357993, 0.01114993542432785, 0.009672717191278934, 0.0135779595002532, 0.010537645779550076, 0.16338114440441132, 2.0323801040649414, 73.09443664550781, 0.016338113695383072, 0.10730470716953278, 0.6852532625198364, 0.0021593442652374506, 0, 0.02236289344727993, 0.022384554147720337, 0.022079916670918465, 0.007494404911994934, 0.06629759073257446, 0.0033148811198771, 0.06629759073257446, 0.0033148813527077436, 81.28553771972656, 0.7906232476234436, 0.23928746581077576, 0.17027214169502258, 0.6636437177658081, 0.008624311536550522, 0.8328671455383301, 0.8328671455383301, 5.5574631690979, 1,
)
---
# `mod_BiomeE_Pmodel_oac_yr1`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 1, 1, 2, 1, 500, 0.00416250666603446, 0.6753503084182739, 0.12453463673591614, 2.9584689140319824, 1.0000004768371582, 3.582185672712512e-05, 1.19930409709922969e-05, 0.08325012773275375, 0.12420248240232468, 0.08486519008874893, 0.004756688140332699, 0, 0.021114422008395195, 0.012606550008058548, 0.0230738222599029541, 0.05683089420199394, 0.07829460501670837, 0, 0.31149959564208984, 0.30654868483543396, 0.3819516897201538, 0.04662158340215683, 0.08874092996120453, 0.0421193465590477, 0, 0, 0.01055500097572803497, 2.988882670251769e-06, 0.00010475356975803152,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 1, 1, 2, 1, 500, 0.00416250666603446, 0.6753503084182739, 0.12453463673591614, 2.9584689140319824, 1.0000004768371582, 3.582185672712512e-05, 1.19930409709922969e-05, 0.08325012773275375, 0.12420248240232468, 0.08486519008874893, 0.004756688140332699, 0, 0.021114422008395195, 0.012606550008058548, 0.0230738222599029541, 0.05683089420199394, 0.07829460501670837, 0, 0.31149959564208984, 0.30654868483543396, 0.3819516897201538, 0.04662158340215683, 0.08874092996120453, 0.0421193465590477, 0, 0, 0.01055500097572803497, 2.9888828976254445e-06, 0.00010475356975803152,
)
---
# `mod_BiomeE_Pmodel_oac_yr2`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 2, 1, 2, 1, 494.7225036621094, 0.005111239850521088, 0.7799178957939148, 0.104567594826221466, 3.1792666912078857, 0x1.fffea4p+0, 4.777356298291124403e-05, 1.19517062557861209e-05, 0.10331528633832932, 0.19689592719078064, 0.10555817931890488, 0.003693532897159457, 0, 0.03347230702638626, 0.019984934478998184, 0.04077288135886192, 0.07049454003572464, 0.07588209211826324, 0, 0.23575858771800995, 0.3509331941604614, 0.4133082330226898, 0.0965750366449356079, 0.1391470581293106, 0.0425720252096653, 0, 0, 0.0106887686997652054, 2.6899847398453858e-06, 0.00014292488049250096,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 2, 1, 2, 1, 494.7225036621094, 0.005111239850521088, 0.7799178957939148, 0.104567594826221466, 3.1792666912078857, 0x1.fffea4p+0, 4.777356298291124403e-05, 1.19517062557861209e-05, 0.10331528633832932, 0.19689592719078064, 0.10555817931890488, 0.003693532897159457, 0, 0.03347230702638626, 0.019984934478998184, 0.04077288135886192, 0.07049454003572464, 0.07588209211826324, 0, 0.23575858771800995, 0.3509331941604614, 0.4133082330226898, 0.0965750366449356079, 0.1391470581293106, 0.0425720252096653, 0, 0, 0.0106887686997652054, 2.6899845124717103e-06, 0.0001429248950444162,
)
---
# `mod_BiomeE_Pmodel_oac_yr251`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 251, 453, 2, 1, 6204.3662109375, 0.781042218208313, 4.129751205444336, 0x1.f7454ep-3, 7.3158440589904785, 25.779739379882812, 0.0013394845882430673, 0.00015466718468815088, 1.2588590383529663, 3.964414358139038, 2.396291971206665, 0.06221679598093033, 0.07521170377731323, 0.6739504337310791, 0.4023880362510681, 3.0446815490722656, 2.099076271057129, 1.4398750066757202, 0.05223488435149193, 0.13310246169567108, 0.3445485532283783, 0.4701140820980072, 1.6745383739471436, 2.48441481590271, 0.8098765015602112, 0.02681770920753479, 0, 0.018392393365502357, 0.00116771424654871225, 0.09918257594108582,
- 251, 397, 2, 1, 149.41921997070312, 0.24800805747509003, 23.04864501953125, 0.424426794052124, 17.283241271972656, 79.71361541748047, 0.041723497211933136, 0.00152247771620750427, 16.59813690185547, 52.280128479003906, 38.35758590698242, 0.8215985894203186, 1.2478489875793457, 8.887621879577637, 5.306432247161865, 158.8809356689453, 109.49272918701172, 20.950157165527344, 0.05956275016069412, 0.0977684110403060913, 0.30660390853881836, 0.5360649228096008, 22.047210693359375, 33.81137466430664, 11.764163970947266, 0.3125823736190796, 0, 0.12065424770116806, 0.0034908705856651068, 0.5808157920837402,
- 251, 405, 2, 1, 53.251808166503906, 0.04820876568555832, 15.386279106140137, 0x1.85289cp-2, 14.12112522125244140625, 79.71360778808594, 0.018593326210975647, 0.00090715847909450531, 9.05298137664795, 28.51395606994629, 20.331798553466797, 0.44778183102607727, 0.6580069065093994, 4.847372531890869, 2.8941659927368164, 62.71681594848633, 43.22386169433594, 11.25114822387695312, 0.058483533561229706, 0.102879956364631653, 0.312284916639328, 0.5263516306877136, 12.039875030517578, 18.3539142608642578125, 6.3140387535095215, 0.17407317459583282, 0, 0.07035320997238159, 0.00035183815634809434, 0.05045400932431221,
- 251, 451, 2, 2, 1829.4735107421875, 0.16942362487316132, 3.365407943725586, 0.06579309701919556, 6.604217052459717, 25.779739379882812, 0.0008895396604202688, 3.444071626290679e-05, 0.9260785579681396, 1.4584969282150269, 0.28346580266952515, 0.02300185151398182, 0.013700224459171295, 0.24794448912143707, 0.14803743362426758, 0.97800147533416748, 2.234492063522339, 0.3307599723339081, 0.04142044112086296, 0.05487056449055672, 0.4725307822227478, 0.431178182363510132, 0.06103000044822693, 0.2366011142730713, 0.17557111382484436, 0.001471759751439094543, 0, 0.1553182750940323, 0.0011602576123550534, 0.11097906529903412,
- 251, 25, 2, 2, 38396.28515625, 0.129136696457862854, 0.36907342076301575, 0.02906501665711403, 2.1870508193969727, 2.8104193210601807, 1.069831705535762e-05, 1.618665010028053e-06, 0.03363259881734848, 0.036316920071840286, 0.005760264582931995, 0.00188537896610796452, 0, 0.006173876579850912, 0.003686167299747467, 0.00418661767616868, 0.015720801427960396, 0.0105964895337820053, 0, 0.31301701068878174, 0.3639802634716034, 0.32300275564193726, 0.0004636230878531933, 0.00615537166595459, 0.0056917485781013966, 0, 0, 0.35191845893859863, 0.002892508404329419, 0.04800635203719139,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 251, 455, 2, 1, 5124.67919921875, 0.8590733408927917, 4.998598098754883, 0.2641063332557678, 8.048715591430664, 28.8890380859375, 0.001962394453585148, 0.0002018922241404652596, 1.6763455867767334, 5.279317855834961, 3.29564595222473145, 0.08295442909002304, 0.104070208966732025, 0.8974840641021729, 0.5358507633209229, 4.723667144775391, 3.256396532058716, 1.9469101428985596, 0.05345403775572777, 0.12709693610668182, 0.33836233615875244, 0.48108670115470886, 2.2314062118530273, 3.3257203102111816, 1.0943140983581543, 0.03502625226974487, 0, 0.02117563784122467, 0.001517048804089427, 0.1390458047389984,
+ 251, 389, 2, 1, 112.35953521728516, 0.19727911055088043, 23.928747177124023, 0.428617000579834, 17.610126495361328, 81.28553771972656, 0.044970717281103134, 0.00159662216901779175, 17.557844161987305, 55.30308532714844, 40.66675567626953, 0.8694912791252136, 1.323513150215149, 0x1.2cd94ap+3, 5.613262176513672, 173.18252563476562, 119.34809112548828, 22.188785552978516, 0.05964783951640129, 0.09736574441194534, 0.30615586042404175, 0.5368305444717407, 23.319122314453125, 35.779937744140625, 12.4608154296875, 0.33064597845077515, 0, 0.12705229222774506, 0.002960121026262641, 0x1.fef4dap-2,
+ 251, 399, 2, 1, 12.439547538757324, 0.016609668731689453, 19.9362468719482421875, 0.4083290696144104, 16.07400894165039, 81.28553009033203, 0.031215962022542953, 0.00126562081277370453, 13.352309226989746, 42.056182861328125, 30.57056427001953, 0.6611476540565491, 0.9928379654884338, 7.1495513916015625, 4.268702507019043, 0x1.c738fp+6, 78.43064880371094, 16.767892837524414, 0.05921065807342529, 0.099434971809387207031, 0.30845826864242554, 0.532896101474762, 17.744064331054688, 27.15699005126953, 9.412924766540527, 0.2535629868507385, 0, 0.09901539236307144, 0.00018349579477217048, 0.028971947729587555,
+ 251, 453, 2, 2, 1566.5989990234375, 0.18823903799057007, 4.003505229949951, 0.06012283265590668, 7.203153610229492, 28.8890380859375, 0.00125884031876921654, 3.752554766833782e-05, 1.2015776634216309, 1.8924102783203125, 0.3155019283294678, 0.029768601059913635, 0.006533761043101549, 0.3217097520828247, 0x1.89610cp-3, 1.458046317100525, 3.3312132358551025, 0.40486323833465576, 0.016138192266225815, 0.07006154209375381, 0.5091859102249146, 0.4046143889427185, 0.08644135296344757, 0.30809324979782104, 0.22165189683437347, 0.0024417205713689327, 0, 0.13480748236179352, 0.0011428765719756484, 0.118795759975910187,
+ 251, 421, 2, 2, 37557.23828125, 0.1261928677558899, 0.3688359558582306, 0.029517803341150284, 2.186347246170044, 2.853191614151001, 1.0684554581530392e-05, 1.64172979566501454e-06, 0.03360014408826828, 0.0362829752266407, 0.005882824305444956, 0.001879000454209745, 1.3153550071365316e-06, 0.006168106105178595, 0.003682721871882677, 0.004180552437901497, 0.0156974196434021, 0.01067624893039465, 0.00012320384848862886, 0.31602340936660767, 0.3588232398033142, 0.3250301480293274, 0x1.ecec8p-12, 0.006201880518347025, 0.005731791723519564, 0, 0, 0.3519395589828491, 0.002820769557729363441, 0.04707275331020355,
)
---
@@ -79,71 +79,66 @@
# `mod_BiomeE_gsLeun_odt_yr251`:
tibble::tribble(
- ~year, ~doy, ~Tk, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~ws1, ~ws2, ~ws3, ~LAI, ~NPP, ~GPP, ~Rauto, ~Rh, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_uptk,
- 251, 1, 273.5336608886719, 1.43654537200927734, 799.9970703125, 0.028990019112825394, 0.04118897393345833, 1.3651169538497925, 19.998138427734375, 179.99917602539062, 599.999755859375, 2.7168519496917725, 0.00035767973167821765, 0.0004627273010555655, 0.00010504758392926306, 0.0007274535018950701, 0.1434832364320755, 0.01345876045525074, 0.4618648290634155, 0.2737640142440796, 3.640104055404663, 2.5913922786712646, 0.0030343234539031982, 0.0006729384185746312, 0.007946782745420933, 0.00684409961104393, 0.010400297120213509, 0.007403905037790537, 0.09128795564174652, 1.2334811687469482, 32.38936996459961, 0.009128795936703682, 0.06110678985714912415, 0.3204348087310791, 0.000197308079805225133896, 1.3599513295048382e-05,
- 251, 2, 271.50848388671875, 2.0038180351257324, 799.9969482421875, 0.021977992728352547, 0.041626542806625366, 1.9404182434082031, 19.99802017211914, 179.99916076660156, 599.999755859375, 2.716768264770508, -0.0005452481564134359, 0.00019588711438700557, 0.0007411352708004415, 0.0007240329287014902, 0.1415618360042572, 0.01347415056079626, 0.4618506133556366, 0.2736964523792267, 3.639836549758911, 2.591942310333252, 0.0030211899429559708, 0.0006737079238519073, 0.007946537807583809, 0.006842408329248428, 0.0103995315730571747, 0x1.e55348p-8, 0.091288313269615173, 1.2340285778045654, 32.38923645019531, 0.0091288313269615173, 0.06112068146467209, 0.32043734192848206, 0.000197727727936580777, 1.3490344827005174e-05,
- 251, 180, 290.34521484375, 2.415818214416504, 754.913818359375, 2.2960166931152344, 0.5329446792602539, 0, 19.98539161682129, 157.14198303222656, 577.7864379882812, 2.5538811683654785, 0.0043612075969576836, 0.007153548300266266, 0.0027923404704779387, 0.00292012607678771, 0.2760782539844513, 0.016594745218753815, 0.4341598451137543, 0.2573990523815155, 3.6981258392333984, 2.6439974308013916, 0.002807989250868559, 0.0008297376334667206, 0.0074700950644910336, 0.006434976123273373, 0x1.5a3aa8p-7, 0.00755420234054327, 0.09178076684474945068, 1.2666170597076416, 32.31932830810547, 0.00917807687073946, 0.06203828379511833, 0.3207958936691284, 0.0001704929891275242, 4.734792310046032e-05,
- 251, 364, 271.6263732910156, 2.0575451850891113, 799.9964599609375, 0.02807004377245903, 0.050344016402959824, 1.9781386852264404, 19.997724533081055, 179.9989776611328, 599.999755859375, 2.830601692199707, -0.0003274658229202032, 0.00020268336811568588, 0.0005301492055878043, 0.0007177799125202, 0.17885862290859222, 0.02298257127404213, 0.48120230436325073, 0.2850832939147949, 3.81221961975097656, 2.725156307220459, 0.003136980114504695, 0.001149129355326295, 0.008279498666524887, 0.007127081044018269, 0.010892054997384548, 0.007786087691783905, 0.09133994579315186, 1.2039079666137695, 32.147682189941406, 0.009133994579315186, 0.06020396947860718, 0.32094353437423706, 0.00019625527784228325, 1.3952258996141609e-05,
- 251, 365, 273.3876037597656, 1.826090931892395, 799.995849609375, 0.05181284621357918, 0.07318272441625595, 1.7015334367752075, 19.997371673583984, 179.99880981445312, 599.9996948242188, 2.829341173171997, -9.056623093783855e-05, 0.0004824575735256076, 0.0005730238044634461, 0.0007167769363150001, 0.17783622443675995, 0.023001160472631454, 0.4809880554676056, 0.2847951054573059, 3.81233286857605, 2.725249767303467, 0.0031321742571890354, 0.0011500585824251175, 0.008275812491774559, 0.007119877729564905, 0x1.64ebe8p-7, 0.00778635498136282, 0x1.761fecp-4, 1.2044994831085205, 32.14755630493164, 0x1.2b4cbcp-7, 0.06021876260638237, 0.32094621658325195, 0.0001966018608072772622108, 1.392700778524158522e-05,
+ ~year, ~doy, ~Tk, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~ws1, ~ws2, ~ws3, ~LAI, ~NPP, ~GPP, ~Rauto, ~Rh, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_uptk,
+ 251, 1, 273.5336608886719, 1.43654537200927734, 799.9971313476562, 0.028187835589051247, 0.04126814752817154, 1.36592435836792, 19.99814224243164, 179.9991912841797, 599.999755859375, 2.6691677570343018, 0.0003398530534468591, 0.0004434388829395175, 0.00010358582221670076, 0.0007246939931064844, 0.18930478394031525, 0.012121994979679585, 0.4537585377693176, 0.27171841263771057, 4.1453447341918945, 2.8574564456939697, 0.0036011154297739267, 0.0006060999585315585, 0.007807329762727022, 0.00679295789450407, 0.011843843385577202, 0.00816406775265932, 0.09150119125843048, 1.2290141582489014, 32.38852310180664, 0.009150119498372078, 0.060808662325143814, 0.3255246877670288, 0.00019728417100850493, 1.3527503142540809e-05,
+ 251, 2, 271.50848388671875, 2.0038180351257324, 799.9969482421875, 0.02148899808526039, 0.041680220514535904, 1.94102025032043457, 19.998023986816406, 179.99917602539062, 599.999755859375, 2.6722593307495117, -0.0010914190206676722, 0.00018723342509474605, 0.0012786524603143334, 0.0007223374559544027, 0.18576101958751678467, 0x1.8e3094p-7, 0.45428410172462463, 0.2718828022480011, 4.144891738891602, 2.858492612838745, 0.003571500303223729, 0.000607589608989656, 0.007816373370587826, 0.0067970664240419865, 0.011842547915875912, 0.008167029358446598, 0.09150120615959167, 1.2295570373535156, 32.38837814331055, 0.009150120429694653, 0.06082245334982872, 0.3255271911621094, 0.0001977230713237077, 1.3430684703052975e-05,
+ 251, 180, 290.34521484375, 2.415818214416504, 752.790771484375, 2.324530839920044, 0.5292670130729675, 0, 19.985328674316406, 156.30332946777344, 576.5020751953125, 2.6144134998321533, 0.004307950846850872, 0.0072385454550385475, 0.002930594375357032, 0.0029212080407887697, 0.23160283267498016, 0.015683988109230995, 0.444450318813324, 0.2644292712211609, 4.224903106689453, 2.9163169860839844, 0.0025856380816549063, 0.0007841995684430003, 0.007647173944860697, 0.006610726937651634, 0.012071152217686176, 0.00833224132657051, 0.09199339151382446, 1.2693252563476562, 32.31870651245117, 0.009199338965117931, 0.06194467097520828, 0.32586362957954407, 0.0001678191329119727, 4.73700747534167e-05,
+ 251, 364, 271.6263732910156, 2.0575451850891113, 799.9964599609375, 0.0274925455451011658, 0.0504505857825279236, 1.9786125421524048, 19.99772834777832, 179.99900817871094, 599.999755859375, 2.780031204223633, -0.0005375570617616177, 0.00019630632596090436, 0.000733863387722522, 0.0007180881220847368, 0x1.c6d13p-3, 0.02131800353527069, 0.4726053476333618, 0.2820357382297516, 4.322583198547363, 2.9832253456115723, 0x1.d5336cp-9, 0.0010659003164619207, 0.008131606504321098, 0.007050890475511551, 0.012350236997008324, 0.008523402735590935, 0.091619111597538, 1.206520438194275, 32.14777374267578, 0.009161910973489285, 0.060168009251356125, 0.32600104808807373, 0.00019665062427520752, 1.3881104678148404e-05,
+ 251, 365, 273.3876037597656, 1.826090931892395, 799.995849609375, 0.05054154992103577, 0.07332269102334976, 1.702797293663025, 19.997377395629883, 179.9988250732422, 599.9996948242188, 2.7798585891723633, -0.0003146845265291631, 0.00046678277431055903, 0.0007814673008397222, 0.0007170791504904628, 0.22041219472885132, 0.021341081708669662, 0.472575962543487549, 0.28198671340942383, 4.3227081298828125, 2.98331356048584, 0.00356577942147851, 0.0010670543415471911, 0.008131101727485657, 0.00704966438934207, 0.0123505964875221252, 0.008523654192686081, 0.0916183963418006897, 1.20710134506225586, 32.14763641357422, 0x1.2c3714p-7, 0.06018252298235893, 0.32600367069244385, 0.00019696849631145597, 1.3860913895769045e-05,
)
---
# `mod_BiomeE_gsLeun_oat`:
tibble::tribble(
- ~year, ~CAI, ~LAI, ~Density, ~DBH, ~Density12, ~DBH12, ~QMD12, ~NPP, ~GPP, ~Rauto, ~Rh, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~plantC, ~soilC, ~totC, ~plantN, ~soilN, ~totN, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_fxed, ~N_uptk, ~N_yrMin, ~N_P2S, ~N_loss, ~totseedC, ~totseedN, ~Seedling_C, ~Seedling_N, ~MaxAge, ~MaxVolume, ~MaxDBH, ~NPPL, ~NPPW, ~n_deadtrees, ~c_deadtrees, ~m_turnover, ~c_turnover_time, ~lu_fraction,
- 1, 0.004002069588750601, 0.005972016137093306, 500, 0.6578834056854248, 0, 0, 0, 0.0004552556201815605, 0.0026698720175772905, 0.00221461639739573, 0.0023631765507161617, 587.5296630859375, 799.9976806640625, 0.7038050293922424, 177.10086059570312, 409.7463684082031, 0.008059165440499783, 0.009359854273498058, 0.01741901971399784, 0.0002834150509443134, 0.0008073533535934985, 0.0010907683754339814, 0.0026762019842863083, 0, 0.0010152427712455392, 0.0006061595631763339, 0.001086435280740261, 0.0026751256082206964, 0.0002400455850875005, 0, 1.7468153600930236e-05, 1.5153978893067688e-05, 3.1041010970511707e-06, 7.643213393748738e-06, 0.000234114020713605, 0.007992471568286419, 0.0011332685826346278, 2.3411401343764737e-05, 0.0005314282607287169, 2.69610682153143e-05, 0.00022555259056389332, 0, 0, -0.014774324372410774, 1.98027537408052e-05, 0.024901797994971275, 0, 0, 0, 0, 0.99992275238037109, 0.000203327610506676137, 0.006578833796083927, 0.0011766287498176098, 0.0012615601299330592, 2.9853833893866977e-06, 8.489209722029045e-05, 8.489209722029045e-05, 2.120490074157715, 1,
- 2, 0.004485728219151497, 0.008551289327442646, 494.7331848144531, 0.714902937412262, 0, 0, 0, 0.002052726922556758, 0.003996408078819513, 0.001943681156262755394, 0.002054507378488779, 587.5296630859375, 799.9976806640625, 1.0620330572128296, 176.94593811035156, 409.5451354980469, 0.008900901302695274, 0.00851631723344326, 0.017417218536138535, 0.00025423639453947544, 0.0007373295957222581, 0.0009915659902617335, 0.0020731876138597727, 0, 0.00145371921826154, 0.0008679558522999287, 0.00165165984071791172, 0.002854378428310156, 0.00019465059449430555, 0, 2.5012544938363135e-05, 2.1698875571019016e-05, 4.7190283112286124e-06, 8.15536805021111e-06, 0.00033169632661156356, 0.006791795138269663, 0.0013928260887041688, 3.3169631933560595e-05, 0.0004484107776079327, 3.02897315123118460178e-05, 0.00022545945830643177, 0, 0, -9.2835549025949149e-08, 2.88893916149390861392e-05, 0.010099139995872974, 0, 0, 0, 0, 2.0003366470336914, 0.00024616264272481203, 0.007149029523134232, 0.0007005341467447579, 0.0007841000333428383, 2.6960410650644917e-06, 9.438928100280464e-05, 9.438928100280464e-05, 3.640324354171753, 1,
- 8, 0.007503470405936241, 0.0236290879547595978, 463.6076965332031, 1.0519946813583374, 0, 0, 0, 0.006695201154798269, 0.0115680098533630371, 0.004872808698564768, 0.0022639601957052946, 587.5296630859375, 799.9976196289062, 3.1365323066711426, 176.0226287841797, 408.40228271484375, 0.022638581693172455, 0.013240646570920944, 0.0358792282640934, 0.0005448416341096163, 0.0007282213191501796, 0.0012730630114674568, 0.0055290996097028255, 0.00042733235750347376, 0.0040169451385736465, 0.002398352138698101, 0.00607690867036581, 0.004189943429082632, 0.0003650669241324067, 2.136661896656733e-05, 6.911550008226186e-05, 5.9958725614706054e-05, 1.7362595826853067e-05, 1.197127130581066e-05, 0.0004575196944642812, 0.00791262462735176, 0.004870502278208733, 4.575197090161964e-05, 0.00038294840487651527, 7.64913420425728e-05, 0.00022302956494968385, 0, 0.00014465358981397003, 0.00014446373097598553, 8.733884169487283e-05, 0.00990787334740161896, 0, 0, 0, 0, 7.99446344375610352, 0.0005985286552459002, 0.01051994692534208298, 0.0011890714522451162, 0.0015580784529447556, 6.03629860052024e-06, 0.00025081279454752803, 0.00025081279454752803, 2.689173698425293, 1,
- 9, 0.008245812729001045, 0.02596697583794593811, 0x1.ca78acp+8, 1.1286345720291138, 0, 0, 0, 0.0073375580832362175, 0.012731661088764668, 0.00539410300552845, 0.002470256993547082, 587.5296630859375, 799.9976196289062, 3.452296495437622, 175.88612365722656, 0x1.98388cp+8, 0.025878947228193283, 0.01486784964799881, 0.04074679687619209, 0.0006082802428863943, 0.0007706164615228772, 0.0013788966462016106, 0.006272776518017054, 0.0006206416292116046, 0.00441438565030694, 0.0026356475427746773, 0.00706461863592267, 0.004870877135545015, 0.0004013017169199884, 3.103208655375056e-05, 7.595382339786738e-05, 6.58911740174517e-05, 2.01846232812386e-05, 1.39167877932777628e-05, 0.0004941201186738908, 0.008643078617751598, 0.005730651784688234, 4.941201041219756e-05, 0.0004104342369828373, 8.792741573415697e-05, 0.00022284279111772776, 0, 0.00015894329408183694, 0.00015875753888394684, 9.62796839303337e-05, 0.0098939342424273491, 0, 0, 0, 0, 8.996942520141602, 0.0007036011083982885, 0.011286345310509205, 0.0013005161890760064, 0.00178239517845213413, 6.812148512835847e-06, 0.00028981908690184355, 0.00028981908690184355, 2.7327706813812256, 1,
- 16, 0.01599615439772606, 0.04797593131661415, 874.3181762695312, 1.0255783796310425, 0, 0, 0, 0.013279334641993046, 0.02366565354168415, 0.0103863188996911049, 0.004614975303411484, 587.5296630859375, 799.9976196289062, 6.412759780883789, 174.6245880126953, 406.5113220214844, 0.05733087658882141, 0.03159687668085098, 0.0889277532696724, 0.001171885407529771328, 0.00125774415209889412, 0.0024296296760439873, 0.013294615782797337, 0.000398922769818455, 0.00815590936690569, 0.004869556985795498, 0.01786680519580841, 0.0127450693398714066, 0.0008024075068533421, 1.9946131942560896e-05, 0.00014033056504558772, 0.00012173875438747928, 5.1048020395683125e-05, 3.641448347480036e-05, 0.0009070600499399006, 0.01603127084672451, 0.014658544212579727, 9.070600208360702e-05, 0.0007412870763801038, 0.00020421658700797707, 0.00022153450117912143, 0, 0.00026739510940387845, 0.00026719976449385285, 0.00018041578005068004, 0.009819203056395054, 0, 0, 0, 0, 16.01445960998535, 0.001905136159621179, 0.01740363985300064, 0.002582587767392397, 0.003974067512899637, 1.4187628949002828e-05, 0.0007002443308010697, 0.0007002443308010697, 3.207059144973755, 1,
- 251, 1.1056023836135864, 2.8280816078186035, 9624.3486328125, 3.298508644104004, 134.235595703125, 16.860795974731445, 16.96642303466797, 0.7902455925941467, 1.3991968631744385, 0.6089512705802917, 0.6729943156242371, 587.5296630859375, 799.995849609375, 375.1728210449219, 105.41505432128906, 106.9413604736328125, 7.502995491027832, 33.444602966308594, 40.94759750366211, 0.03832858428359032, 0.3905235826969147, 0.4288521707057953, 0.17691534757614136, 0.02301955595612526, 0.4807738661766052, 0.28449901938438416, 3.8124454021453857, 2.725342273712158, 0.0031136798206716776, 0.001150978379882872, 0.00827212817966938, 0.007112475577741861, 0.010892702266573906, 0x1.fe4dccp-8, 0x1.761fecp-4, 1.205467700958252, 32.147796630859375, 0x1.2b4cbcp-7, 0.060243457555770874, 0.32094961404800415, 0.0001966018608072772622108, 0, 0.011584816500544548, 0.01158452220261097, 0.011352763511240482, 0.0083505529910326, 0.0030145945493131876, 0.00015072972746565938, 0.0030145945493131876, 0.00015072972746565938, 138.59124755859375, 0.4926682710647583, 0.19480903446674347, 0.1124468669295311, 0.30629032850265503, 0.001807760098017752171, 0.3295000195503235, 0.3295000195503235, 8.897905349731445, 1,
+ ~year, ~CAI, ~LAI, ~Density, ~DBH, ~Density12, ~DBH12, ~QMD12, ~NPP, ~GPP, ~Rauto, ~Rh, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~plantC, ~soilC, ~totC, ~plantN, ~soilN, ~totN, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_fxed, ~N_uptk, ~N_yrMin, ~N_P2S, ~N_loss, ~totseedC, ~totseedN, ~Seedling_C, ~Seedling_N, ~MaxAge, ~MaxVolume, ~MaxDBH, ~NPPL, ~NPPW, ~n_deadtrees, ~c_deadtrees, ~m_turnover, ~c_turnover_time, ~lu_fraction,
+ 1, 0.004002069588750601, 0.005972016137093306, 500, 0.6578834056854248, 0, 0, 0, 0.0004552556201815605, 0.0026698720175772905, 0.00221461639739573, 0.0023631765507161617, 587.5296630859375, 799.9976806640625, 0.7038050293922424, 177.10086059570312, 409.7463684082031, 0.008059165440499783, 0.009359854273498058, 0.01741901971399784, 0.0002834150509443134, 0.0008073533535934985, 0.0010907683754339814, 0.0026762019842863083, 0, 0.0010152427712455392, 0.0006061595631763339, 0.001086435280740261, 0.0026751256082206964, 0.0002400455850875005, 0, 1.7468153600930236e-05, 1.5153978893067688e-05, 3.1041010970511707e-06, 7.643213393748738e-06, 0.000234114020713605, 0.007992471568286419, 0.0011332685826346278, 2.3411401343764737e-05, 0.0005314282607287169, 2.69610682153143e-05, 0.00022555259056389332, 0, 0, -0.014774324372410774, 1.98027537408052e-05, 0.024901797994971275, 0, 0, 0, 0, 0.99992275238037109, 0.000203327610506676137, 0.006578833796083927, 0.0011766287498176098, 0.0012615601299330592, 2.9853831620130222e-06, 8.489209722029045e-05, 8.489209722029045e-05, 2.120490074157715, 1,
+ 2, 0.004485728219151497, 0.008551289327442646, 494.7331848144531, 0.714902937412262, 0, 0, 0, 0.002052726922556758, 0.003996408078819513, 0.001943681156262755394, 0.002054507378488779, 587.5296630859375, 799.9976806640625, 1.0620330572128296, 176.94593811035156, 409.5451354980469, 0.008900901302695274, 0.00851631723344326, 0.017417218536138535, 0.00025423639453947544, 0.0007373295957222581, 0.0009915659902617335, 0.0020731876138597727, 0, 0.00145371921826154, 0.0008679558522999287, 0.00165165984071791172, 0.002854378428310156, 0.00019465059449430555, 0, 2.5012544938363135e-05, 2.1698875571019016e-05, 4.7190283112286124e-06, 8.15536805021111e-06, 0.00033169632661156356, 0.006791795138269663, 0.0013928260887041688, 3.3169631933560595e-05, 0.0004484107776079327, 3.02897315123118460178e-05, 0.00022545945830643177, 0, 0, -9.2835549025949149e-08, 2.8889389795949683e-05, 0.010099139995872974, 0, 0, 0, 0, 2.0003366470336914, 0.00024616264272481203, 0.007149029523134232, 0.0007005341467447579, 0.0007841000333428383, 2.6960410650644917e-06, 9.43892882787622511387e-05, 9.43892882787622511387e-05, 3.640324354171753, 1,
+ 8, 0.007503470405936241, 0.0236290879547595978, 463.6076965332031, 1.0519946813583374, 0, 0, 0, 0.006695201154798269, 0.0115680098533630371, 0.004872808698564768, 0.0022639601957052946, 587.5296630859375, 799.9976196289062, 3.1365323066711426, 176.0226287841797, 408.40228271484375, 0.022638581693172455, 0.013240646570920944, 0.0358792282640934, 0.0005448416341096163, 0.0007282213191501796, 0.0012730630114674568, 0.0055290996097028255, 0.00042733235750347376, 0.0040169451385736465, 0.002398352138698101, 0.00607690867036581, 0.004189943429082632, 0.0003650669241324067, 2.136661896656733e-05, 6.911550008226186e-05, 5.9958725614706054e-05, 1.7362595826853067e-05, 1.197127130581066e-05, 0.0004575196944642812, 0.00791262462735176, 0.004870502278208733, 4.575197090161964e-05, 0.00038294840487651527, 7.64913420425728e-05, 0.00022302956494968385, 0, 0.00014465358981397003, 0.00014446373097598553, 8.733884169487283e-05, 0.00990787334740161896, 0, 0, 0, 0, 7.99446344375610352, 0.0005985286552459002, 0.01051994692534208298, 0.0011890714522451162, 0.0015580784529447556, 6.03629860052024e-06, 0.00025081276544369757, 0.00025081276544369757, 2.689173698425293, 1,
+ 9, 0.008245812729001045, 0.02596697583794593811, 0x1.ca78acp+8, 1.1286345720291138, 0, 0, 0, 0.0073375580832362175, 0.012731661088764668, 0.00539410300552845, 0.002470256993547082, 587.5296630859375, 799.9976196289062, 3.452296495437622, 175.88612365722656, 0x1.98388cp+8, 0.025878947228193283, 0.01486784964799881, 0.04074679687619209, 0.0006082802428863943, 0.0007706164615228772, 0.0013788966462016106, 0.006272776518017054, 0.0006206416292116046, 0.00441438565030694, 0.0026356475427746773, 0.00706461863592267, 0.004870877135545015, 0.0004013017169199884, 3.103208655375056e-05, 7.595382339786738e-05, 6.58911740174517e-05, 2.01846232812386e-05, 1.39167877932777628e-05, 0.0004941201186738908, 0.008643078617751598, 0.005730651784688234, 4.941201041219756e-05, 0.0004104342369828373, 8.792741573415697e-05, 0.00022284279111772776, 0, 0.00015894329408183694, 0.00015875753888394684, 0x1.93d384p-14, 0.0098939342424273491, 0, 0, 0, 0, 8.996942520141602, 0.0007036011083982885, 0.011286345310509205, 0.0013005161890760064, 0.00178239517845213413, 6.812148058088496e-06, 0.00028981908690184355, 0.00028981908690184355, 2.7327706813812256, 1,
+ 16, 0.01599615439772606, 0.04797593131661415, 874.3181762695312, 1.0255783796310425, 0, 0, 0, 0.013279334641993046, 0.02366565354168415, 0.0103863188996911049, 0.004614975303411484, 587.5296630859375, 799.9976196289062, 6.412759780883789, 174.6245880126953, 406.5113220214844, 0.05733087658882141, 0.03159687668085098, 0.0889277532696724, 0.001171885407529771328, 0.00125774415209889412, 0.0024296296760439873, 0.013294615782797337, 0.000398922769818455, 0.00815590936690569, 0.004869556985795498, 0.01786680519580841, 0.0127450693398714066, 0.0008024075068533421, 1.9946131942560896e-05, 0.00014033056504558772, 0.00012173875438747928, 5.1048020395683125e-05, 3.641448347480036e-05, 0.0009070600499399006, 0.01603127084672451, 0.014658544212579727, 9.070600208360702e-05, 0.0007412870763801038, 0.00020421658700797707, 0.00022153450117912143, 0, 0.00026739510940387845, 0.00026719976449385285, 0.0001804157654987648, 0.009819203056395054, 0, 0, 0, 0, 16.01445960998535, 0.001905136159621179, 0.01740363985300064, 0.002582587767392397, 0.003974067512899637, 1.4187628949002828e-05, 0.0007002443308010697, 0.0007002443308010697, 3.207059144973755, 1,
+ 251, 1.0487033128738403, 2.77968573570251465, 15477.2802734375, 0x1.f6510ap+0, 20.985193252563477, 21.153535842895508, 21.153535842895508, 0.7909636497497559, 1.405671238899231, 0.6147075891494751, 0.6732627749443054, 587.5296630859375, 799.995849609375, 378.91021728515625, 104.98870086669922, 0x1.9e887p+6, 8.30114459991455, 33.44754409790039, 41.748687744140625, 0.04066009074449539, 0.3955727517604828, 0.4362328350543976, 0.219063445925712585, 0.02136409282684326, 0.4725465774536133, 0.28193560242652893, 4.322832107543945, 2.9834024906158447, 0.003538043238222599, 0.0010682048741728067, 0.00813059601932764, 0.007048385683447123, 0.01235094852745533, 0.008523909375071526, 0.0916183963418006897, 1.2080596685409546, 32.147865295410156, 0x1.2c3714p-7, 0.060206953436136246, 0.32600700855255127, 0.00019696849631145597, 0, 0.011605044826865196, 0.01160517055541277, 0.0116021828725934029, 0.008265191689133644, 0.000232047910685651, 1.1602394806686789e-05, 0.000232047910685651, 1.160239571618149e-05, 141.07130432128906, 0.5954352021217346, 0.21153534948825836, 0.11280352622270584, 0.30343422293663025, 0.00185534462798386812, 0.3568536043167114, 0.3568536043167114, 0x1.3aa0cp+3, 1,
)
---
# `mod_BiomeE_gsLeun_oac_yr1`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 1, 1, 2, 1, 500, 0.004002069588750601, 0.6578834056854248, 0.10706773400306702, 2.9199602603912354, 0.99992275238037109, 3.3992862881859764e-05, 1.0164047125726938e-05, 0.08004139363765717, 0.11944032460451126, 0.053524039685726166, 0.0048009115271270275, 0, 0.020304854959249496, 0.01212319079786539, 0.02172870561480522, 0.053502511233091354, 0.07211941480636597, 0, 0.32630014419555664, 0.3238467574119568, 0.3498530983924866, 0.00910511240363121, 0.053397439420223236084, 0.044292327016592026, 0, 0, 0.010533609427511692, 2.9853833893866977e-06, 8.489209722029045e-05,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 1, 1, 2, 1, 500, 0.004002069588750601, 0.6578834056854248, 0.10706773400306702, 2.9199602603912354, 0.99992275238037109, 3.3992862881859764e-05, 1.0164047125726938e-05, 0.08004139363765717, 0.11944032460451126, 0.053524039685726166, 0.0048009115271270275, 0, 0.020304854959249496, 0.01212319079786539, 0.02172870561480522, 0.053502511233091354, 0.07211941480636597, 0, 0.32630014419555664, 0.3238467574119568, 0.3498530983924866, 0.00910511240363121, 0.053397439420223236084, 0.044292327016592026, 0, 0, 0.010533609427511692, 2.9853831620130222e-06, 8.489209722029045e-05,
)
---
# `mod_BiomeE_gsLeun_oac_yr2`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 2, 1, 2, 1, 494.7331848144531, 0.004485728219151497, 0.714902937412262, 0.05701957270503044, 3.0438694953918457, 2.0003366470336914, 4.014062142232433e-05, 6.147758540464565e-06, 0.090669639408588409, 0.1728464812040329, 0.04190516471862793, 0.003934456035494804, 0, 0x1.e16d06p-6, 0.017543917521834373, 0.033384859561920166, 0.057695310562849045, 0.0531105175614357, 0, 0.2666107714176178, 0.43497470021247864, 0.2984144985675812, 0.041491590440273285, 0.0807790532708168, 0.03928746283054352, 0, 0, 0.010604464448988438, 2.6960410650644917e-06, 9.438928100280464e-05,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 2, 1, 2, 1, 494.7331848144531, 0.004485728219151497, 0.714902937412262, 0.05701957270503044, 3.0438694953918457, 2.0003366470336914, 4.014062142232433e-05, 6.147758540464565e-06, 0.090669639408588409, 0.1728464812040329, 0.04190516471862793, 0.003934456035494804, 0, 0x1.e16d06p-6, 0.017543917521834373, 0.033384859561920166, 0.057695310562849045, 0.0531105175614357, 0, 0.2666107714176178, 0.43497470021247864, 0.2984144985675812, 0.041491590440273285, 0.0807790532708168, 0.03928746283054352, 0, 0, 0.010604464448988438, 2.6960410650644917e-06, 9.43892882787622511387e-05,
)
---
# `mod_BiomeE_gsLeun_oac_yr251`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 251, 405, 2, 1, 1076.3397216796875, 0.13857325911521912, 4.192044734954834, 0.123961269855499268, 7.370813846588135, 42.633567810058594, 0.00138019886799156666, 8.041970431804657e-05, 1.28744912147521973, 3.019657611846924, 0.03566749766469002, 0.0016862130723893642, 0.031069491058588028, 0.5133417844772339, 0.3049691319465637, 3.1520509719848633, 2.1719119548797607, 0.8555275797843933, 0.03631617873907089, 0.1413765400648117, 0.4071759283542633, 0.4151313900947571, 0.8342955112457275, 1.4931578636169434, 0.6588623523712158, 0.012279842980206013, 0, 0.018582994118332863, 6.982107151998207e-05, 0.0124190244823694229,
- 251, 98, 2, 1, 45.95011901855469, 0.05926407873630524, 19.48090362548828, 0.09454339742660522, 15.88938331604003906, 138.59124755859375, 0.02980630099773407, 0.0002886056900024414, 12.897480964660645, 0x1.450222p+5, 8.527510643005371, 0.06623558700084686, 0.21876394748687744, 6.906427383422852, 4.1235432624816895, 0x1.afaffp+6, 74.36544799804688, 8.66854476928711, 0.025236524641513824, 0.16908012330532074, 0.5717156529426575, 0.23396766185760498047, 13.088971138000488, 20.992094039916992, 7.903122901916504, 0.18016569316387177, 0, 0.09598320722579956, 0.00036161451134830713, 0.08911889791488647,
- 251, 271, 2, 1, 88.28547668457031, 0.08078978210687637, 15.497106552124023, 0.1669660210609436, 14.1718912124633789, 120.95784759521484, 0.018862146884202957, 0.00040425360202789307, 0x1.24d4cp+3, 28.823535919189453, 8.560709953308105, 0.04938045144081116, 0.2567596435546875, 4.900001049041748, 2.925273895263672, 63.764102935791016, 43.93988800048828, 7.511847496032715, 0.03418062627315521, 0.14360998570919037, 0.469404846429824829, 0.352804571390152, 8.560929298400879, 14.830554962158203, 6.269625663757324, 0.12731267511844635, 0, 0.07100646942853928, 0.0003306069993413985, 0.07795097678899765,
- 251, 248, 2, 1, 3751.01171875, 0.7572502493858337, 5.658046245574951, 0.14056749641895294, 8.563193321228027, 61.543312072753906, 0.0025143332313746214, 0.00012337928637862206, 2.018789291381836, 5.236392974853516, 0.06074243783950806, 0.0029678791761398315, 0.04131544381380081, 0.8901867866516113, 0.5285593271255493, 6.282716274261475, 4.329066753387451, 1.4532934427261353, 0.028428837656974792, 0.14527811110019684, 0.41577965021133423, 0.410513430833816528, 1.429022192955017, 2.562823534011841, 1.13380134105682373, 0.021279584616422653, 0, 0.02345859445631504, 0.0005621323944069445, 0.10675882548093796,
- 251, 403, 2, 2, 399.692626953125, 0.04535787925124168396, 3.853809356689453, 0.07281564176082611, 7.067203998565674, 42.62415313720703, 0.0011664613848552108, 4.3662847019732e-05, 1.1348190307617188, 1.787198781967163, 0.5803282856941223, 0.008849752135574818, 0.02266520820558071, 0.3038237988948822, 0.18140067160129547, 1.33563971519470215, 3.051717758178711, 0.4796651005744934, 0.04725215211510658, 0.1186424344778060913086, 0.441485792398452759, 0.39261960983276367, 0.5264391899108887, 0.9099746346473694, 0.3835354447364807, 0.007854915224015713, 0, 0.13906635344028473, 0.0001794295822037384, 0.03043532744050026,
- 251, 339, 2, 2, 10.8744297027587891, 0.00025232587358914316, 1.3375478982925415, 0.04613958299160004, 4.163486480712891, 21.581729888916016, 0.00014051042671781033, 9.52678965404629707e-06, 0.23203594982624053955, 0.25056517124176025, 0.09222032874822617, 0.00090824888320639729, 0, 0.04259607940912247, 0.025432363152503967, 0.08091560751199722, 0.3038240969181061, 0.0715433657169342, 0, 0.14976006746292114, 0.43310797214508057, 0.41713201999664307, 0.07670897245407104, 0.13386566936969757, 0.057156700640916824, 0.0010881222551688552, 0, 0.27069091796875, 9.93828052742174e-07, 0.00016042332572396845,
- 251, 370, 2, 2, 122.68142700195312, 0.0019101084908470511, 1.025160789489746, 0.057594478130340576, 3.645008087158203, 13.698657035827637, 8.254178101196885e-05, 9.01401654118672e-06, 0.15569663047790527, 0.1681130826473236, 0.08172042667865753, 0.00034433469409123063, 0, 0.0285792239010334, 0.008775501511991024, 0.043883390724658966, 0.16479481756687164, 0.04478169232606888, 0, 0.17863796651363373, 0.2410944104194641, 0.5802676677703857, 0.05234384164214134, 0.08833424746990204, 0.035990405827760696, 0.0003697507199831307, 0, 0.2955385148525238, 5.9885014707106166e-06, 0.0011883381521329284,
- 251, 384, 2, 2, 534.8302001953125, 0.004893832840025425, 0.7192744612693787, 0.050176165997982025, 3.05316162109375, 8.167011260986328, 4.0633032767800614e-05, 5.471341864904389e-06, 0.09150255471467972, 0.09879407286643982, 0.04497671127319336, 0.0008591340738348663, 0, 0.016794992610812187, 0.005157050210982561, 0.019422803074121475, 0.07294344902038574, 0.025528237223625183, 0, 0.19567841291427612, 0.2499273270368576, 0.5543942451477051, 0.030685678124427795, 0.05133511871099472, 0.020649440586566925, 0.00017884476983454078, 0, 0.32125166058540344, 2.647564178914763e-05, 0.0027369284071028233,
- 251, 394, 2, 2, 3092.866455078125, 0.01566486246883869, 0.4848969280719757, 0.04817582666873932, 2.5068435668945312, 3.304419755935669, 1.846667510108091e-05, 3.4871436582761817e-06, 0.05064836144447327, 0.054678674787282944, 0.02463337406516075, 0.0018231148133054376, 0, 0.00929537508636713, 0.00285422638989985, 0.007841581478714943, 0.029453299939632416, 0.014716137200593948, 0, 0.21274606883525848, 0.2451622635126114, 0.5420916676521301, 0.016179297119379044, 0.027799539268016815, 0.011620243079960346, 0, 0, 0.34166452288627625, 0.000228353877901099622, 0.00782797485589981,
- 251, 404, 2, 2, 501.8160400390625, 0.0016461338382214308, 0x1.73b1cep-2, 0.0893891304731369, 2.1689302921295166, 0.99992275238037109, 1.0348141586291604e-05, 4.469155101105571e-06, 0.03280353173613548, 0.03540128469467163, 0.024046581238508224, 0.0021895698737353086, 0, 0.006018218584358692, 0.00184794689994305372, 0.004027135204523802, 0.01513279415667057, 0.016586096957325935, 0, 0.425207257270813, 0.022526854649186134, 0.5522658824920654, 0.005632580257952213, 0.016527937725186348, 0.0108953574672341347, 0, 0, 0.3524600565433502, 4.234376683598384e-05, 0.00090332294348627329,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 251, 406, 2, 1, 9675.947265625, 0.10581229627132416, 0.8100297451019287, 0.06420496106147766, 3.2400593757629395, 9.6273260116577148, 5.153375605004839599e-05, 7.845621439628303e-06, 0.10935601592063904, 0.3443589210510254, 0.07380354404449463, 0.0007191440090537071, 0.010426707565784454, 0.05854101479053497, 0.03495242819190025, 0.07185185700654984, 0.04954510182142258, 0.093920670449733734, 0.11101610958576202, 0.19985972344875336, 0.4655303359031677, 0.2235937863588333, 0.09635058045387268, 0.16717146337032318, 0.0708208829164505, 0.00141399179119616747, 0, 0.0107290400192141532898, 3.600660784286447e-05, 0.003105279989540577,
+ 251, 214, 2, 1, 20.985193252563477, 0.030625181272625923, 21.153535842895508, 0.2056241035461425781, 16.557470321655273, 141.07130432128906, 0.0351443737745285, 0.0006799250841140747, 0x1.d2ffaap+3, 45.96123123168945, 1.274838924407959, 0.03252573311328888, 0.123866811394691467, 7.813409328460693, 4.665064334869385, 130.43540954589844, 89.87562561035156, 12.03743839263916, 0.01029013004153966903687, 0.14104947447776794, 0.4420582950115204, 0.4066021144390106, 12.641188621520996, 22.467885971069336, 9.82669734954834, 0.1875489056110382, 0, 0x1.b7772ep-4, 0.00020696119463536888, 0.05272819846868515,
+ 251, 282, 2, 1, 1083.4041748046875, 0.5653337836265564, 10.656521797180176, 0.185289233922958374, 11.751957893371582, 90.74818420410156, 0.008919095620512962, 0.00030746404081583023, 5.218124866485596, 16.436325073242188, 1.2183564901351929, 0.017289381474256516, 0.04864691197872162, 2.794175148010254, 1.668286919593811, 26.94806480407715, 18.568668365478516, 4.486714839935303, 0.010842434130609035, 0.14179033041000366, 0.4462427794933319, 0.4011244475841522, 4.683091163635254, 8.334844589233398, 3.65175342559814453, 0.07015900313854218, 0, 0.04478749632835388, 0.001162381493486464, 0.24866171181201935,
+ 251, 376, 2, 1, 1617.0972900390625, 0.3353012800216675, 5.759771347045898, 0.10698139667510986, 8.639827728271484, 57.260101318359375, 0.00260555557906627655, 9.589176625013351e-05, 2.0734763145446777, 3.442971706390381, 0.042716823518276215, 0.00183874310459941625595, 0.03552601858973503, 0.5853052139282227, 0.34820935130119324, 6.54557466506958, 4.510158538818359, 1.0228910446166992, 0.03473098948597908, 0.1235867142677307129, 0.3855091631412506, 0.45617321133613586, 0.9974903464317322, 1.7783430814743042, 0.780852735042572, 0.013865859247744083, 0, 0.023823175579309464, 0.00020795001182705164, 0.04648927226662636,
+ 251, 397, 2, 2, 3079.84765625, 0.011630810797214508, 0.3987123370170593, 0.06333135813474655, 2.27317214012146, 1.8132874965667725, 1.2485594197642058e-05, 3.651403858384583e-06, 0.03776424005627632, 0.04076519608497619629, 0.01971292868256569, 0.001959402346983552, 0, 0.006930083502084017, 0.004137666895985603, 0.0049990080296993256, 0.018778854981064796, 0.017356976866722107, 0, 0.3202473223209381, 0.230100274085998535, 0.44965237379074097, 0.008233160711824894, 0.02010454423725605, 0.011871383525431156, 0, 0, 0.3492860794067383, 0.00024204532383009791, 0.0058691236190497875,
)
---
# `mod_BiomeE_PLULUC_aggregated`:
tibble::tribble(
- ~year, ~CAI, ~LAI, ~Density, ~DBH, ~Density12, ~DBH12, ~QMD12, ~NPP, ~GPP, ~Rauto, ~Rh, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~plantC, ~soilC, ~totC, ~plantN, ~soilN, ~totN, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_fxed, ~N_uptk, ~N_yrMin, ~N_P2S, ~N_loss, ~totseedC, ~totseedN, ~Seedling_C, ~Seedling_N, ~MaxAge, ~MaxVolume, ~MaxDBH, ~NPPL, ~NPPW, ~n_deadtrees, ~c_deadtrees, ~m_turnover, ~c_turnover_time, ~lu_fraction, ~prod_pool_1_C, ~prod_pool_1_N, ~prod_pool_2_C, ~prod_pool_2_N, ~Rprod_0_C, ~Rprod_0_N, ~Rprod_1_C, ~Rprod_1_N, ~Rprod_2_C, ~Rprod_2_N,
- 1, 0.00416250666603446, 0.006210124585777521, 500, 0.6753503084182739, 0, 0, 0, 0.0023310792166739702, 0.004437046591192484, 0.0021059673745185137, 0.0028953987639397383, 587.5296630859375, 799.9039306640625, 0, 159.69195556640625, 427.9336853027344, 0.009924544021487236, 0.011168807744979858, NaN, 0.0002831722085829824, 0.003906095400452614, 0.0041892677545547485, 0.004243259783834219, 0, 0.0010557210771366954, 0.0006303275004029274, 0x1.2e6ee6p-10, 0.0028415448032319546, 0x1.f2c66p-13, 0, 1.8164650100516155e-05, 1.575815986143425e-05, 3.296260274510132e-06, 8.118709047266748e-06, 0.0002871105680242181, 0.0097463848069310188, 0.0011353119043633342, 2.8711056074826047e-05, 0.0006363502470776439, 2.699048854992725e-05, 0.003214043565094471, 0, 0, -0.01178594771772623, 2.004899761232081801e-05, 0.021919850260019302, 0, 0, 0, 0, 1.0000004768371582, 1.0000004768371582, 1.0000004768371582, 0.0012194368755444884, 0.0014952379278838634, 2.9888828976254445e-06, 0.00010475356975803152, 0.00010475356975803152, 1.900396704673767, 1, 0.000375000003259629, 1.071428528121032286e-06, 0.000375000003259629, 1.071428528121032286e-06, 0.0002500000118743628, 7.142857043618278e-07, 0.00014755100710317492, 4.21574270603741752e-07, 1.828895437938627e-05, 5.225415478093964e-08,
- 2, 0.005111239850521088, 0.00974088441580534, 494.7225341796875, 0.7799178957939148, 0, 0, 0, 0.004777783993631601, 0.0068839178420603275, 0.002106133848428726, 0.0024883674923330545, 587.5296630859375, 799.9039916992188, 0, 159.53289794921875, 427.9963073730469, 0.0133715011179447174, 0.010011260397732258, NaN, 0.00025166457635350525, 0.00347659969702363, 0.003728264244273305, 0.005222200881689787, 0, 0.0016559503274038434, 0.0009886997286230326, 0.00201712618581950665, 0.0034875236451625824, 0.0001827273954404518, 0, 2.849215525202453e-05, 2.47174666583305225e-05, 5.7632182688394096e-06, 9.96436119748978e-06, 0.00040393188828602433, 0.008189969696104527, 0.0014173585223034024, 4.039318810100667e-05, 0.000536521605681628, 3.06092479149811e-05, 0.0028690756298601627, 0, 0, -0.000344969768775627, 3.1208794098347425e-05, 0.01046099700033664703, 0, 0, 0, 0, 0x1.fffea4p+0, 0x1.fffea4p+0, 0x1.fffea4p+0, 0.000885051442310214, 0.00155158306006342173, 2.6899847398453858e-06, 0.00014292488049250096, 0.00014292488049250096, 2.2477195262908936, 1, 0.00022744899615645409, 6.498542575172905e-07, 0.0003567110397852957, 1.0191744195253705e-06, 0, 0, 8.949420589488e-05, 2.556977278800332e-07, 1.739699291647412e-05, 4.9705693783153038e-08,
- 8, 0.013906870037317276, 0.043787699192762375, 462.5186462402344, 1.5897880792617798, 0, 0, 0, 0.01834146678447723389, 0.026529422029852867, 0.00818795245140791, 0.0035419154446572065, 587.5296630859375, 799.9047241210938, 0, 157.8809814453125, 429.6481628417969, 0.06122784689068794, 0.020627671852707863, NaN, 0.0010820920579135418, 0.0035045782569795847, 0.00458667054772377, 0.02130504883825779, 0.0015576676232740283, 0.00744390906766057, 0.004444451071321964, 0.015669401735067368, 0.0108073707669973373413, 0.0006893701502121985, 7.788345828885213e-05, 0.00012807949678972363, 0.000111111010483000427, 4.476971662370488e-05, 3.0878218240104616e-05, 0.0006749355816282332, 0.0128240305930376053, 0.007128703873604536, 6.749355816282332e-05, 0.000584111490752548, 0.000104367776657454669, 0.002748605329543352, 0, 0.0003318484523333609, 0.0003208520938642323, 0.00016016977315302938, 0.009742681868374348, 0, 0, 0, 0, 8.000199317932129, 8.000199317932129, 8.000199317932129, 0.0025127814151346684, 0.005758278071880341, 1.29899890453089029e-05, 0.0007350104860961437, 0.0007350104860961437, 1.8768407106399536, 1, 1.1324019396852236e-05, 3.23543396518744e-08, 0.0002642580948304385, 7.550231657660333e-07, 0, 0, 4.4556545617524534e-06, 1.2730440701602674e-08, 1.28880119518726133e-05, 3.682289317907816e-08,
- 9, 0.016000162810087204, 0.050379808992147446, 456.9663391113281, 1.7596757411956787, 0, 0, 0, 0.021106015890836716, 0.030644193291664124, 0.009538178332149982, 0.004118724260479212, 587.5296630859375, 799.9048461914062, 0, 157.56739807128906, 0x1.adf64cp+8, 0.07428936660289764, 0.024553434923291206, NaN, 0.0012783714337274432, 0x1.d8f29ap-9, 0.004886675626039505, 0.025268161669373512, 0.002303489251062274, 0.008564568124711514, 0.005113550461828709, 0.019553789868950844, 0.01348581444472074509, 0.0007935977773740888, 0.00011517451639520004, 0.00014736161392647773, 0.00012783858983311802, 5.586797124124132e-05, 3.8530917663592845e-05, 0.0007771349046379328, 0.014889327809214592, 0.008886972442269325, 7.77134919189848e-05, 0.0006673510652035475, 0.0001265366590814665, 0.0027367030270397663, 0, 0.000379289936972782, 0.0003673875762615353, 0.0001857875322457403, 0.009699998423457146, 0.0022750776261091232, 0.0001137539220508188, 0.0022750776261091232, 0.000113753907498903573, 9.000265121459961, 9.000265121459961, 9.000265121459961, 0.0028416116256266832, 0.006880678702145815, 1.576776230649557e-05, 0.000916304299607873, 0.000916304299607873, 1.9599542617797852, 1, 6.868364835099783e-06, 1.962389895027172e-08, 0.00025137007469311357, 7.182002832450962e-07, 0, 0, 2.70249097411579e-06, 7.72140218430195e-09, 1.2259455616003834e-05, 3.502702128344026e-08,
- 16, 0.04833274334669113, 0.14704228937625885, 2009.9169921875, 1.1782575845718384, 0, 0, 0, 0.06215196475386619567871, 0.09093406051397324, 0.02878209576010704, 0.0121836718171834946, 587.5296630859375, 799.90673828125, 0, 153.25502014160156, 434.2740173339844, 0.2517127990722656, 0.08065839111804962, NaN, 0.0037054328713566065, 0.005145037081092596, 0.008850470185279846, 0.07830989360809326, 0.004114205949008465, 0.02499719336628914, 0.01492479443550109863281, 0.0758480355143547, 0.05351869389414787, 0.00232688314281404, 0.00020571023924276233, 0.00043010085937567055, 0.0003731192264240235, 0.00021670872229151428, 0.000152910390170291066, 0.0022581713274121284, 0.04374237731099129, 0.03465784341096878, 0.0002258171298308298, 0.001914787106215953826904, 0.00043470165110193193, 0.0025697313249111176, 0, 0.00106218247674405575, 0.0010267129400745034, 0.0005489230970852077, 0.00914456881582737, 0.0036451849155128, 0.00018225915846414864, 0.0036451849155128, 0.00018225915846414864, 16.00072479248047, 16.00072479248047, 16.00072479248047, 0.008355258964002132, 0.021820861846208572, 5.371036968426779e-05, 0.0037389725912362337, 0.0037389725912362337, 2.452638864517212, 1, 2.07406671393073339e-07, 5.925905322001768e-10, 0.0001771375536918640137, 5.061072556600266e-07, 0, 0, 8.16081637822208e-08, 2.331662085630626e-10, 8.639095540274866e-06, 2.46831284300697e-08,
- 251, 1.3758188486099243, 3.7989463806152344, 46632.796875, 1.0767894983291626, 202.67141723632812, 21.03534698486328, 21.30396842956543, 1.4454325437545776, 2.2112865447998047, 0.7658541798591614, 1.3433232307434082, 587.5296630859375, 799.93017578125, 0, 94.1740951538086, 493.3553466796875, 0x1.78c94p+3, 75.1430435180664, NaN, 0.11314200609922409058, 0.8076350688934326, 0x1.d77018p-1, 2.2421305179595947, 0.07131979614496231, 0.6458208560943604, 0.3855930268764496, 4.791995525360107, 3.6377065181732178, 0.06473935395479202, 0.0035659910645335913, 0.011112004518508911, 0x1.3be09cp-7, 0.013691416010260582, 0.0103934397920966148, 0.1644132286310196, 2.05149245262146, 72.92713928222656, 0.01644132286310196, 0.108194872736930847, 0.6808176636695862, 0.0021812710911035538, 0, 0.0225300677120685577, 0.02255231142044067383, 0.02244405634701252, 0.0073949964717030525, 0.06545896828174591, 0.0032729492522776127, 0.06545896828174591, 0.0032729494851082563, 79.713623046875, 79.713623046875, 79.713623046875, 0.1717321276664734, 0.6585536003112793, 0.0090618608519434929, 0.8894376754760742, 0.8894376754760742, 5.523782253265381, 1, 1.401298464324817e-45, 1.401298464324817e-45, 1.3975054447001867e-09, 3.992874607339214e-12, 0, 0, 0, 0, 6.815710495988725e-11, 1.947346770598754e-13,
+ ~year, ~CAI, ~LAI, ~Density, ~DBH, ~Density12, ~DBH12, ~QMD12, ~NPP, ~GPP, ~Rauto, ~Rh, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~plantC, ~soilC, ~totC, ~plantN, ~soilN, ~totN, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_fxed, ~N_uptk, ~N_yrMin, ~N_P2S, ~N_loss, ~totseedC, ~totseedN, ~Seedling_C, ~Seedling_N, ~MaxAge, ~MaxVolume, ~MaxDBH, ~NPPL, ~NPPW, ~n_deadtrees, ~c_deadtrees, ~m_turnover, ~c_turnover_time, ~lu_fraction, ~prod_pool_1_C, ~prod_pool_1_N, ~prod_pool_2_C, ~prod_pool_2_N, ~Rprod_0_C, ~Rprod_0_N, ~Rprod_1_C, ~Rprod_1_N, ~Rprod_2_C, ~Rprod_2_N,
+ 1, 0.00416250666603446, 0.006210124585777521, 500, 0.6753503084182739, 0, 0, 0, 0.0023310792166739702, 0.004437046591192484, 0.0021059673745185137, 0.0028953987639397383, 587.5296630859375, 799.9039306640625, 0, 159.69195556640625, 427.9336853027344, 0.009924544021487236, 0.011168807744979858, NaN, 0.0002831722085829824, 0.003906095400452614, 0.0041892677545547485, 0.004243259783834219, 0, 0.0010557210771366954, 0.0006303275004029274, 0x1.2e6ee6p-10, 0.0028415448032319546, 0x1.f2c66p-13, 0, 1.8164650100516155e-05, 1.575815986143425e-05, 3.296260274510132e-06, 8.118709047266748e-06, 0.0002871105680242181, 0.0097463848069310188, 0.0011353119043633342, 2.8711056074826047e-05, 0.0006363502470776439, 2.699048854992725e-05, 0.003214043565094471, 0, 0, -0.01178594771772623, 2.004899761232081801e-05, 0.021919850260019302, 0, 0, 0, 0, 1.0000004768371582, 1.0000004768371582, 1.0000004768371582, 0.0012194368755444884, 0.0014952379278838634, 2.9888828976254445e-06, 0.00010475356975803152, 0.00010475356975803152, 1.900396704673767, 1, 0.000375000003259629, 1.071428528121032286e-06, 0.000375000003259629, 1.071428528121032286e-06, 0.0002500000118743628, 7.142857043618278e-07, 0.00014755100710317492, 4.21574270603741752e-07, 1.828895437938627e-05, 5.225415478093964e-08,
+ 2, 0.005111239850521088, 0.00974088441580534, 494.7225341796875, 0.7799178957939148, 0, 0, 0, 0.004777783993631601, 0.0068839178420603275, 0.002106133848428726, 0.0024883674923330545, 587.5296630859375, 799.9039916992188, 0, 159.53289794921875, 427.9963073730469, 0.0133715011179447174, 0.010011260397732258, NaN, 0.00025166457635350525, 0.00347659969702363, 0.003728264244273305, 0.005222200881689787, 0, 0.0016559503274038434, 0.0009886997286230326, 0.00201712618581950665, 0.0034875236451625824, 0.0001827273954404518, 0, 2.849215525202453e-05, 2.47174666583305225e-05, 5.7632182688394096e-06, 9.96436119748978e-06, 0.00040393188828602433, 0.008189969696104527, 0.0014173585223034024, 4.039318810100667e-05, 0.000536521605681628, 3.06092479149811e-05, 0.0028690756298601627, 0, 0, -0.000344969768775627, 3.1208794098347425e-05, 0.01046099700033664703, 0, 0, 0, 0, 0x1.fffea4p+0, 0x1.fffea4p+0, 0x1.fffea4p+0, 0.000885051442310214, 0.00155158306006342173, 2.6899845124717103e-06, 0.0001429248950444162, 0.0001429248950444162, 2.2477195262908936, 1, 0.00022744899615645409, 6.498542575172905e-07, 0.0003567110397852957, 1.0191744195253705e-06, 0, 0, 8.949420589488e-05, 2.556977278800332e-07, 1.739699291647412e-05, 4.9705693783153038e-08,
+ 8, 0.013906870037317276, 0.043787699192762375, 462.5186462402344, 1.5897880792617798, 0, 0, 0, 0.01834146678447723389, 0.026529422029852867, 0.00818795245140791, 0.0035419154446572065, 587.5296630859375, 799.9047241210938, 0, 157.8809814453125, 429.6481628417969, 0.06122784689068794, 0.020627671852707863, NaN, 0.0010820920579135418, 0.0035045782569795847, 0.00458667054772377, 0.02130504883825779, 0.0015576676232740283, 0.00744390906766057, 0.004444451071321964, 0.015669401735067368, 0.0108073707669973373413, 0.0006893701502121985, 7.788345828885213e-05, 0.00012807949678972363, 0.000111111010483000427, 4.476971662370488e-05, 3.0878218240104616e-05, 0.0006749355816282332, 0.0128240305930376053, 0.007128703873604536, 6.749355816282332e-05, 0.000584111490752548, 0.000104367776657454669, 0.002748605329543352, 0, 0.0003318484523333609, 0.0003208520938642323, 0.00016016977315302938, 0.009742681868374348, 0, 0, 0, 0, 8.000199317932129, 8.000199317932129, 8.000199317932129, 0.0025127814151346684, 0.005758278071880341, 1.29899890453089029e-05, 0.0007350104860961437, 0.0007350104860961437, 1.8768407106399536, 1, 1.1324019396852236e-05, 3.23543396518744e-08, 0.0002642580948304385, 7.550231657660333e-07, 0, 0, 4.4556545617524534e-06, 1.2730440701602674e-08, 1.28880119518726133e-05, 3.682289317907816e-08,
+ 9, 0.016000162810087204, 0.050379808992147446, 456.9663391113281, 1.7596757411956787, 0, 0, 0, 0.021106015890836716, 0.030644193291664124, 0.009538178332149982, 0.004118724260479212, 587.5296630859375, 799.9048461914062, 0, 157.56739807128906, 0x1.adf64cp+8, 0.07428936660289764, 0.024553434923291206, NaN, 0.0012783714337274432, 0x1.d8f29ap-9, 0.004886675626039505, 0.025268161669373512, 0.002303489251062274, 0.008564568124711514, 0.005113550461828709, 0.019553789868950844, 0.01348581444472074509, 0.0007935977773740888, 0.00011517451639520004, 0.00014736161392647773, 0.00012783858983311802, 5.586797124124132e-05, 3.8530917663592845e-05, 0.0007771349046379328, 0.014889327809214592, 0.008886972442269325, 7.77134919189848e-05, 0.0006673510652035475, 0.0001265366590814665, 0.0027367030270397663, 0, 0.000379289936972782, 0.0003673875762615353, 0.0001857875322457403, 0.009699998423457146, 0.0022750776261091232, 0.0001137539220508188, 0.0022750776261091232, 0.000113753907498903573, 9.000265121459961, 9.000265121459961, 9.000265121459961, 0.0028416116256266832, 0.006880678702145815, 1.576776230649557e-05, 0.000916304299607873, 0.000916304299607873, 1.9599542617797852, 1, 6.868364835099783e-06, 1.962389895027172e-08, 0.00025137007469311357, 7.182002832450962e-07, 0, 0, 2.70249097411579e-06, 7.72140218430195e-09, 1.2259455616003834e-05, 3.502702128344026e-08,
+ 16, 0.049853820353746414, 0.1513535976409912, 2009.7882080078125, 1.23066318035125732, 0, 0, 0, 0.06374537944793701, 0x1.7ea2f8p-4, 0.02967176027595997, 0.01216884050518274307, 587.5296630859375, 799.9067993164062, 0, 153.14578247070312, 434.3832702636719, 0.25442904233932495, 0.08080161362886429, NaN, 0.003768057329580188, 0.005104449111968279, 0.008872506208717823, 0.07905802130699158, 0.003703018883243203, 0.025730112567543983, 0.015362389385700226, 0.07626524567604065, 0.0543102547526359558, 0.0023830633144825697, 0.0001851508714025840163, 0.0004427114618010819, 0.00038405912346206605, 0.00021790074242744595, 0.00015517199062742293, 0.0022528101690113544, 0.04387468844652176, 0.034674108028411865, 0.0002252810081699863, 0.0019151776796206832, 0.0004348130605649203, 0.0025291775818914175, 0, 0.0011977299582213163, 0.0011384543031454086, 0.0005580567521974444, 0.009031127206981182, 0.0036451849155128, 0.00018225915846414864, 0.0036451849155128, 0.00018225915846414864, 16.00072479248047, 16.00072479248047, 16.00072479248047, 0.009060700424015522, 0.022315775975584984, 5.4278309107758105e-05, 0.003763489658012986, 0.003763489658012986, 2.4337158203125, 1, 2.07406671393073339e-07, 5.925905322001768e-10, 0.0001771375536918640137, 5.061072556600266e-07, 0, 0, 8.16081637822208e-08, 2.331662085630626e-10, 8.639095540274866e-06, 2.46831284300697e-08,
+ 251, 1.38739430904388428, 3.81191420555114746, 44373.32421875, 1.09699225425720215, 124.79891204833984, 23.530792236328125, 23.561168670654297, 1.4429168701171875, 2.2116873264312744, 0.7687704563140869, 1.3382054567337036, 587.5296630859375, 799.93017578125, 0, 94.11368560791016, 0x1.ed6a74p+8, 11.80125617980957, 75.29019927978516, NaN, 0.11330290138721466, 0.8110383749008179, 0.924341261386871337891, 2.255392074584961, 0.07046717405319214, 0.6480254530906677, 0.38690924644470215, 4.752285957336426, 3.688176155090332, 0.06484127789735794, 0.003523360239341855, 0.01114993542432785, 0.009672719053924084, 0.0135779595002532, 0.0105376448482275009, 0.1633811593055725, 2.0323801040649414, 73.09442901611328, 0.01633811555802822, 0.10730567574501038, 0.6852527856826782, 0.0021418104879558086, 0, 0.0224177613854408264, 0.02238273248076439, 0.022081485018134117, 0.007496722042560577, 0.06629762798547745, 0.003314882516860962, 0.06629762798547745, 0.0033148827496916056, 81.28556060791016, 81.28556060791016, 81.28556060791016, 0.17027221620082855, 0.6636439561843872, 0.008625878021121025, 0.8328670263290405, 0.8328670263290405, 5.557462692260742, 1, 1.401298464324817e-45, 1.401298464324817e-45, 1.3975054447001867e-09, 3.992874607339214e-12, 0, 0, 0, 0, 6.815710495988725e-11, 1.947346770598754e-13,
)
---
@@ -162,53 +157,53 @@
# `mod_BiomeE_PLULUC_primary_odt_yr251`:
tibble::tribble(
- ~year, ~doy, ~Tk, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~ws1, ~ws2, ~ws3, ~LAI, ~NPP, ~GPP, ~Rauto, ~Rh, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_uptk,
- 251, 1, 273.5336608886719, 1.436545491218567, 799.9601440429688, 0, 0.039894573390483856, 1.366621732711792, 19.9601058959960938, 179.99998474121094, 600, 3.545771360397339, 0.0022412477992475033, 0.0022878830786794424, 4.663517393055372e-05, 0.00147393113002181053, 2.1639299392700195, 0.0025064197834581137, 0.6027811765670776, 0.36641788482666016, 4.457954406738281, 3.313190221786499, 0.062128543853759766, 0.00012532096297945827, 0.010371451266109943, 0.0091604208573699, 0.0127370133996009827, 0.0094662467017769814, 0.1644955724477768, 2.211317777633667, 73.53292083740234, 0.01644955761730671, 0x1.d690ap-4, 0.680659294128418, 0.0021971934475004673, 0,
- 251, 2, 271.50848388671875, 2.0038182735443115, 799.9590454101562, 0, 0.040993303060531616, 1.963923454284668, 19.959009170532227, 179.99998474121094, 600, 3.5523104667663574, -0.00011782348155975342, 0.0022555754985660315, 0.002373398980125785, 0.001464895554818213, 2.1591391563415527, 0.0026894453912973404, 0.6038928031921387, 0.36633092164993286, 4.442193508148193, 3.33087158203125, 0.06220299005508423, 0.0001344722550129518, 0.010390575975179672, 0.009158248081803322, 0.01269198209047317505, 0.009516766294836998, 0.16449807584285736, 2.21187424659729, 73.53244018554688, 0.016449807211756706, 0.11489550024271011, 0.6806619763374329, 0.002089059678837657, 0.00014201035082805902,
- 251, 180, 290.3451843261719, 2.415818214416504, 799.5171508789062, 0, 0.4828766882419586, 1.7443971633911133, 19.51712417602539, 179.99998474121094, 600, 3.668419599533081, 0.0070009855553507805, 0.009404749609529972, 0.0024037642870098352, 0.005796163342893124, 2.1534759998321533, 0.033590685576200485, 0.6236313581466675, 0.37112849950790405, 4.586365222930908, 3.4869801998138428, 0.06358352303504944, 0.0016795347910374403, 0.01073020230978727340698, 0.009278194047510624, 0.013103900477290154, 0.009962791576981544, 0.1655682474374771, 2.2202813625335693, 73.34947967529297, 0.01655682548880577, 0.114454410970211029, 0.6809614896774292, 0.001338801346719265, 0,
- 251, 364, 271.62640380859375, 2.0575454235076904, 799.951416015625, 0, 0.04857255890965462, 1.9935612678527832, 19.95142936706543, 179.99998474121094, 600, 3.797484874725342, 0.0004929341375827789, 0.0024769718293100595, 0.0019840376917272806, 0.001429187715984881, 2.2494165897369385, 0.0709228366613388, 0.6455724239349365, 0x1.8ab2p-2, 4.789840221405029, 3.636152505874634, 0.0647997334599495, 0.003546142252162099, 0.011107726953923702, 0.009636103175580502, 0.013685258105397224, 0.010388994589447975, 0.1644166260957718, 2.049516439437866, 72.92729187011719, 0.01644166186451912, 0.108148269355297089, 0.6808105707168579, 0.0022039266768842936, 0,
- 251, 365, 273.3876037597656, 1.826090812683105469, 799.9301147460938, 0, 0.06991278380155563, 1.7775189876556396, 19.9300861358642578125, 179.99998474121094, 600, 3.7982163429260254, 0.0004794639535248279572, 0.0024706178810447454, 0.0019911539275199175, 0.00142781913746148348, 2.246011734008789, 0.071121446788311, 0.645696759223938, 0.3855189085006714, 4.790918350219727, 3.63693118095397949, 0.06476680189371109, 0.0035560731776058674, 0.011109866201877594, 0.00963795930147171, 0.013688337057828903, 0.010391217656433582, 0.1644132286310196, 2.050182342529297, 72.92683410644531, 0.01644132286310196, 0.10816195607185364, 0.6808135509490967, 0.00221356307156384, 2.4238115656771697e-05,
+ ~year, ~doy, ~Tk, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~ws1, ~ws2, ~ws3, ~LAI, ~NPP, ~GPP, ~Rauto, ~Rh, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_uptk,
+ 251, 1, 273.5336608886719, 1.436545491218567, 799.9601440429688, 0, 0.039872877299785614, 1.36663818359375, 19.960126876831055, 179.99998474121094, 600, 3.5711522102355957, 0.002246169140562415, 0.0022930772975087166, 4.69080732727889e-05, 0.0014670143136754632, 2.185115098953247, 0.0010285184253007174, 0.6070958971977234, 0.369075745344162, 4.419329643249512, 3.357487440109253, 0.06243487820029259, 5.142590816831216e-05, 0.010445700958371162, 0.009226877242326736, 0.012626657262444496, 0.0095928134396672249, 0.16364045441150665, 2.182932138442993, 73.70133972167969, 0.016364045441150665, 0.11383230984210968, 0.6851041913032532, 0.0021720954682677984, 0,
+ 251, 2, 271.50848388671875, 2.0038182735443115, 799.9590454101562, 0, 0.04097667336463928, 1.963945746421814, 19.959022521972656, 179.99998474121094, 600, 3.5775811672210693, -0.0001120516099035739899, 0.00226065958850085735, 0.0023727111984044313, 0.00145803764462471, 2.1803319454193115, 0.0012135711731389165, 0.6081887483596802, 0.3689764440059662, 4.404463768005371, 3.374290704727173, 0.06237226724624634, 6.0678543377434835e-05, 0.010464506223797798, 0.00922439619898796, 0.012584179639816284, 0.009640824049711227, 0.1636424958705902, 2.183506488800049, 73.70086669921875, 0.01636425033211708, 0.11384408175945282, 0.6851068735122681, 0.0022014062851667404, 4.726273346022936e-06,
+ 251, 180, 290.3451843261719, 2.415818214416504, 799.5175170898438, 0, 0.4825248718261719, 1.7448978424072266, 19.517475128173828, 179.99998474121094, 600, 3.68552660942077637, 0.006996422074735165, 0.009407569654285908, 0.0024111478123813868, 0.005773112177848816, 2.1710071563720703, 0.0324498675763607, 0.6265395879745483, 0.37328460812568665, 4.545215129852295, 3.536616802215576, 0.06381607055664062, 0.0016224937280640006, 0.01078024785965681, 0.0093321036547422409, 0.012986330315470695, 0.010104616172611713409, 0.16461101174354553, 2.195847511291504, 73.5187759399414, 0.016461100429296494, 0.113465107977390289, 0.6854032874107361, 0.001278068171814084, 0.0004918491467833519,
+ 251, 364, 271.62640380859375, 2.0575454235076904, 799.9514770507812, 0, 0.04856013506650925, 1.993576288223266602, 19.951440811157227, 179.99998474121094, 600, 3.8105366230010986328, 0.0004854158032685518, 0.002472618827596307, 0.001987203024327755, 0.001424696994945407, 2.262697458267212, 0.07006731629371643, 0.6477912068367004, 0.3867694437503814697, 4.750117778778076, 0x1.d7e2f6p+1, 0.06493836641311646, 0.003503367304801941, 0.01114590838551521301, 0.009669224731624126, 0.013571766205132008, 0.010533182881772518, 0.1633845418691635, 2.030388832092285, 73.09456634521484, 0.01633845455944538, 0.10725726932287216, 0.6852458119392395, 0.0021250471472740173, 0.00017180765280500054,
+ 251, 365, 273.3876037597656, 1.826090812683105469, 799.9301147460938, 0, 0.06989705562591553, 1.7775309085845947, 19.930103302001953, 179.99998474121094, 600, 3.811225652694702, 0.00047187902964651585, 0.0024662481155246496, 0.0019943690858781338, 0.00142334518022835255, 2.2592790126800537, 0.07026736438274384, 0.6479084491729736, 0.3868393898010254, 4.751203536987305, 3.687394380569458, 0.06488119065761566, 0.003513369942083955, 0.011147924698889256, 0.00967097282409668, 0.0135748665779829025, 0.010535413399338722, 0.16338114440441132, 2.0310652256011963, 73.09410858154297, 0.016338113695383072, 0.107271194458007812, 0.6852487325668335, 0.0021593442652374506, 0,
)
---
# `mod_BiomeE_PLULUC_primary_oat`:
tibble::tribble(
- ~year, ~CAI, ~LAI, ~Density, ~DBH, ~Density12, ~DBH12, ~QMD12, ~NPP, ~GPP, ~Rauto, ~Rh, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~plantC, ~soilC, ~totC, ~plantN, ~soilN, ~totN, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_fxed, ~N_uptk, ~N_yrMin, ~N_P2S, ~N_loss, ~totseedC, ~totseedN, ~Seedling_C, ~Seedling_N, ~MaxAge, ~MaxVolume, ~MaxDBH, ~NPPL, ~NPPW, ~n_deadtrees, ~c_deadtrees, ~m_turnover, ~c_turnover_time, ~lu_fraction,
- 1, 0.00416250666603446, 0.006210124120116234, 500, 0.6753503084182739, 0, 0, 0, 0.0023310792166739702, 0.004437046591192484, 0.0021059673745185137, 0.0023628724738955498, 587.5296630859375, 799.9039306640625, 0, 159.69195556640625, 427.93365478515625, 0.009924544021487236, 0.009370563551783562, 0.0192951075732707977, 0.0002831722085829824, 0.003793478012084961, 0.004076650366187096, 0.004243259783834219, 0, 0.0010557210771366954, 0.0006303275004029274, 0x1.2e6ee6p-10, 0.0028415448032319546, 0x1.f2c66p-13, 0, 1.8164650100516155e-05, 1.575815986143425e-05, 3.296260274510132e-06, 8.118709047266748e-06, 0.00023432944726664573, 0.00800092238932848, 0.0011353119043633342, 2.3432945454260334e-05, 0.0005318375770002604, 2.699048854992725e-05, 0.003211217001080513, 0, 0, -0.01178877800703048706, 2.004899761232081801e-05, 0.021915258839726448, 0, 0, 0, 0, 1.0000004768371582, 0x1.c4e5f2p-13, 0.006753502879291773, 0.0012194368755444884, 0.0014952378114685416, 2.988882670251769e-06, 0.00010475356975803152, 0.00010475356975803152, 1.9003965854644775, 0.6000000238418579,
- 2, 0.005111239850521088, 0.00974088441580534, 494.7225036621094, 0.7799178957939148, 0, 0, 0, 0.004777783993631601, 0.0068839178420603275, 0.002106133848428726, 0.0020678008440881968, 587.5296630859375, 799.9039916992188, 0, 159.53289794921875, 0x1.abff0cp+8, 0.0133715001866221428, 0.008633578196167946, 0.02200507745146751404, 0.00025166457635350525, 0.003379649482667446, 0.003631314029917121, 0.0052222004160285, 0, 0.0016559503274038434, 0.0009886997286230326, 0.00201712618581950665, 0.0034875234123319387, 0.00018272738088853657, 0, 2.8492153433035128e-05, 2.47174666583305225e-05, 5.763217814092059e-06, 9.964360287995078e-06, 0.0003333908680360764, 0.006882828660309315, 0.0014173585223034024, 3.333908534841612e-05, 0.000451616797363385558, 3.06092479149811e-05, 0.0028640844393521547, 0, 0, -0.00034713459899649024, 3.1208794098347425e-05, 0.01044532656669616699, 0, 0, 0, 0, 0x1.fffea4p+0, 0.00030072274967096746, 0.0077991788275539875, 0.0008850513841025531, 0.00155158306006342173, 2.6899847398453858e-06, 0.00014292488049250096, 0.00014292488049250096, 2.2477195262908936, 0.6000000238418579,
- 8, 0.013906870037317276, 0.043787699192762375, 462.5186462402344, 1.5897880792617798, 0, 0, 0, 0.01834146678447723389, 0.0265294201672077179, 0.00818795245140791, 0.0034570074640214443, 587.5296630859375, 799.9047241210938, 0, 157.8809814453125, 429.6481628417969, 0.06122784316539764404, 0.020369375124573708, 0.0815972164273262, 0.0010830140672624111, 0.00347965769469738, 0.004562671761959791, 0.02130504697561264, 0.0015576676232740283, 0.00744390906766057, 0.004444451071321964, 0.015669401735067368, 0.0108073707669973373413, 0.0006902921013534069, 7.788345101289451e-05, 0.00012807949678972363, 0.000111111010483000427, 4.476971662370488e-05, 3.0878218240104616e-05, 0.0006472131353802979, 0.012593458406627178, 0.007128703873604536, 6.472131644841284e-05, 0.0005646665813401341, 0.00010436776938149706, 0.002745901932939887, 0, 0.0003319511888548732, 0.000321338651701808, 0.00016018083260860294, 0.009735604748129845, 0, 0, 0, 0, 8.000199317932129, 0.0015471557853743434, 0.015897881239652634, 0.0025127814151346684, 0.005758278071880341, 1.3001056686334778e-05, 0.0007350104860961437, 0.0007350104860961437, 1.8768407106399536, 0.6000000238418579,
- 9, 0.016000162810087204, 0.050379808992147446, 456.96630859375, 1.7596757411956787, 0, 0, 0, 0.021106015890836716, 0.030644193291664124, 0.009538178332149982, 0.004054611548781395, 587.5296630859375, 799.9048461914062, 0, 157.56739807128906, 429.9620666503906, 0.07428936660289764, 0.02435925602912903, 0x1.941094p-4, 0.001279305899515748, 0.0035889181308448315, 0.004868224263191223, 0.025268159806728363, 0.002303489251062274, 0.008564568124711514, 0.005113549996167421, 0.019553789868950844, 0.01348581444472074509, 0.0007945323013700545, 0.0001151745091192424297, 0.00014736161392647773, 0.00012783858983311802, 5.586797124124132e-05, 3.8530917663592845e-05, 0.0007556240307167172, 0.014716660603880882, 0.008886972442269325, 7.556240598205477e-05, 0.0006524593918584287, 0.0001265366590814665, 0.00273435958661139, 0, 0.00037931359838694334, 0.000367771222954615951, 0.00018579905736260116, 0x1.3daaf2p-7, 0.0022750776261091232, 0.000113753914774861187, 0.0022750776261091232, 0.000113753907498903573, 9.000265121459961, 0.001954109640792012, 0.017596757039427757, 0.0028416116256266832, 0.006880678236484528, 1.577928924234584e-05, 0.000916304241400212, 0.000916304241400212, 1.9599542617797852, 0.6000000238418579,
- 16, 0.04833274334669113, 0.14704228937625885, 2009.9169921875, 1.1782575845718384, 0, 0, 0, 0.06215196475386619567871, 0.09093406051397324, 0.02878209576010704, 0.012174996547400951, 587.5296630859375, 799.90673828125, 0, 153.25502014160156, 434.2740173339844, 0.2517127990722656, 0.08063244074583054, 0.33234524726867676, 0.003706026822328567505, 0.005141731351613998, 0.008847758173942566, 0.07830988615751266, 0.004114205949008465, 0.02499719336628914, 0.01492479443550109863281, 0.0758480355143547, 0.053518690168857574, 0.002327477326616645, 0.0002057102246908471, 0.00043010085937567055, 0.0003731192264240235, 0.00021670872229151428, 0.000152910390170291066, 0.00225503440015018, 0.043719563633203506, 0.03465784341096878, 0.0002255034341942519, 0.0019126012921333313, 0.00043470165110193193, 0.0025689247995615005, 0, 0.0010664527071639895, 0.0010267083998769522, 0.0005489327013492584, 0.00914375577121973, 0x1.ddc81ap-9, 0.00018225915846414864, 0x1.ddc81ap-9, 0.00018225915846414864, 16.00072479248047, 0.007513242773711681, 0.031602952629327774, 0.008355258964002132, 0.021820859983563423, 5.371998850023374e-05, 0.0037389725912362337, 0.0037389725912362337, 2.452638864517212, 0.6000000238418579,
- 251, 1.375819206237793, 3.7989466190338135, 46632.796875, 1.0767898559570312, 202.67103576660156, 0x1.5090d4p+4, 21.303977966308594, 1.4454326629638672, 2.211286783218384, 0.7658541798591614, 1.3433235883712769, 587.5296630859375, 799.9301147460938, 0, 94.1740951538086, 493.3553466796875, 11.774565696716309, 75.14306640625, 86.91763305664062, 0.11311229318380356, 0.8076682686805725, 0.92078053951263428, 2.2421305179595947, 0.07131978124380112, 0.6458209753036499, 0x1.8ad8eap-2, 4.791994571685791, 3.637706756591797, 0.06470964103937149, 0.0035659901332110167, 0.011112003587186337, 0.00963981356471777, 0.013691413216292858, 0.010393436066806316, 0.1644132286310196, 2.051492691040039, 72.92716217041016, 0.01644132286310196, 0.108195357024669647, 0.6808180809020996, 0.00221356307156384, 0, 0.022505495697259903, 0.022556107491254807, 0.02244538627564907, 0.007391450461000204, 0.06545895338058472, 0.003272948320955038, 0.06545895338058472, 0.0032729485537856817, 79.71361541748047, 0.7253342270851135, 0.2304864525794983, 0.1717321127653122, 0.6585536003112793, 0.00906318984925747, 0.8894377946853638, 0.8894377946853638, 5.523782253265381, 0.6000000238418579,
+ ~year, ~CAI, ~LAI, ~Density, ~DBH, ~Density12, ~DBH12, ~QMD12, ~NPP, ~GPP, ~Rauto, ~Rh, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~plantC, ~soilC, ~totC, ~plantN, ~soilN, ~totN, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_fxed, ~N_uptk, ~N_yrMin, ~N_P2S, ~N_loss, ~totseedC, ~totseedN, ~Seedling_C, ~Seedling_N, ~MaxAge, ~MaxVolume, ~MaxDBH, ~NPPL, ~NPPW, ~n_deadtrees, ~c_deadtrees, ~m_turnover, ~c_turnover_time, ~lu_fraction,
+ 1, 0.00416250666603446, 0.006210124120116234, 500, 0.6753503084182739, 0, 0, 0, 0.0023310792166739702, 0.004437046591192484, 0.0021059673745185137, 0.0023628724738955498, 587.5296630859375, 799.9039306640625, 0, 159.69195556640625, 427.93365478515625, 0.009924544021487236, 0.009370563551783562, 0.0192951075732707977, 0.0002831722085829824, 0.003793478012084961, 0.004076650366187096, 0.004243259783834219, 0, 0.0010557210771366954, 0.0006303275004029274, 0x1.2e6ee6p-10, 0.0028415448032319546, 0x1.f2c66p-13, 0, 1.8164650100516155e-05, 1.575815986143425e-05, 3.296260274510132e-06, 8.118709047266748e-06, 0.00023432944726664573, 0.00800092238932848, 0.0011353119043633342, 2.3432945454260334e-05, 0.0005318375770002604, 2.699048854992725e-05, 0.003211217001080513, 0, 0, -0.01178877800703048706, 2.004899761232081801e-05, 0.021915258839726448, 0, 0, 0, 0, 1.0000004768371582, 0x1.c4e5f2p-13, 0.006753502879291773, 0.0012194368755444884, 0.0014952378114685416, 2.9888828976254445e-06, 0.00010475356975803152, 0.00010475356975803152, 1.9003965854644775, 0.6000000238418579,
+ 2, 0.005111239850521088, 0.00974088441580534, 494.7225036621094, 0.7799178957939148, 0, 0, 0, 0.004777783993631601, 0.0068839178420603275, 0.002106133848428726, 0.0020678008440881968, 587.5296630859375, 799.9039916992188, 0, 159.53289794921875, 0x1.abff0cp+8, 0.0133715001866221428, 0.008633578196167946, 0.02200507745146751404, 0.00025166457635350525, 0.003379649482667446, 0.003631314029917121, 0.0052222004160285, 0, 0.0016559503274038434, 0.0009886997286230326, 0.00201712618581950665, 0.0034875234123319387, 0.00018272738088853657, 0, 2.8492153433035128e-05, 2.47174666583305225e-05, 5.763217814092059e-06, 9.964360287995078e-06, 0.0003333908680360764, 0.006882828660309315, 0.0014173585223034024, 3.333908534841612e-05, 0.000451616797363385558, 3.06092479149811e-05, 0.0028640844393521547, 0, 0, -0.00034713459899649024, 3.1208794098347425e-05, 0.01044532656669616699, 0, 0, 0, 0, 0x1.fffea4p+0, 0.00030072274967096746, 0.0077991788275539875, 0.0008850513841025531, 0.00155158306006342173, 2.6899845124717103e-06, 0.0001429248950444162, 0.0001429248950444162, 2.2477195262908936, 0.6000000238418579,
+ 8, 0.013906870037317276, 0.043787699192762375, 462.5186462402344, 1.5897880792617798, 0, 0, 0, 0.01834146678447723389, 0.0265294201672077179, 0.00818795245140791, 0.0034570074640214443, 587.5296630859375, 799.9047241210938, 0, 157.8809814453125, 429.6481628417969, 0.06122784316539764404, 0.020369375124573708, 0.0815972164273262, 0.0010830140672624111, 0.00347965769469738, 0.004562671761959791, 0.02130504697561264, 0.0015576676232740283, 0.00744390906766057, 0.004444451071321964, 0.015669401735067368, 0.0108073707669973373413, 0.0006902921013534069, 7.788345101289451e-05, 0.00012807949678972363, 0.000111111010483000427, 4.476971662370488e-05, 3.0878218240104616e-05, 0.0006472131353802979, 0.012593458406627178, 0.007128703873604536, 6.472131644841284e-05, 0.0005646665813401341, 0.00010436776938149706, 0.002745901932939887, 0, 0.0003319511888548732, 0.000321338651701808, 0.00016018083260860294, 0.009735604748129845, 0, 0, 0, 0, 8.000199317932129, 0.0015471557853743434, 0.015897881239652634, 0.0025127814151346684, 0.005758278071880341, 1.3001056686334778e-05, 0.0007350104860961437, 0.0007350104860961437, 1.8768407106399536, 0.6000000238418579,
+ 9, 0.016000162810087204, 0.050379808992147446, 456.96630859375, 1.7596757411956787, 0, 0, 0, 0.021106015890836716, 0.030644193291664124, 0.009538178332149982, 0.004054611548781395, 587.5296630859375, 799.9048461914062, 0, 157.56739807128906, 429.9620666503906, 0.07428936660289764, 0.02435925602912903, 0x1.941094p-4, 0.001279305899515748, 0.0035889181308448315, 0.004868224263191223, 0.025268159806728363, 0.002303489251062274, 0.008564568124711514, 0.005113549996167421, 0.019553789868950844, 0.01348581444472074509, 0.0007945323013700545, 0.0001151745091192424297, 0.00014736161392647773, 0.00012783858983311802, 5.586797124124132e-05, 3.8530917663592845e-05, 0.0007556240307167172, 0.014716660603880882, 0.008886972442269325, 7.556240598205477e-05, 0.0006524593918584287, 0.0001265366590814665, 0.00273435958661139, 0, 0.00037931359838694334, 0.000367771222954615951, 0.00018579905736260116, 0x1.3daaf2p-7, 0.0022750776261091232, 0.000113753914774861187, 0.0022750776261091232, 0.000113753907498903573, 9.000265121459961, 0.001954109640792012, 0.017596757039427757, 0.0028416116256266832, 0.006880678236484528, 1.577928924234584e-05, 0.000916304299607873, 0.000916304299607873, 1.9599542617797852, 0.6000000238418579,
+ 16, 0.049853820353746414, 0.1513535976409912, 2009.7882080078125, 1.23066318035125732, 0, 0, 0, 0.06374537944793701, 0x1.7ea2f8p-4, 0.02967175841331482, 0x1.8e76ccp-7, 587.5296630859375, 799.9067993164062, 0, 153.14578247070312, 434.3832702636719, 0.25442904233932495, 0.0807756632566452, 0.33520472049713135, 0.0037690105382353067398, 0.005100796930491924, 0.008869807235896587, 0.07905802130699158, 0.003703018883243203, 0.025730112567543983, 0.015362389385700226, 0.07626524567604065, 0.0543102547526359558, 0.0023840165231376886, 0.0001851508714025840163, 0.00044271143269725144, 0.0003840590943582356, 0.00021790072787553072, 0.00015517199062742293, 0.002249671844765544, 0.04385187849402428, 0.034674108028411865, 0.00022496718156617135, 0.00191302364692091942, 0.0004348130605649203, 0.0025279929395765066, 0, 0.001197746372781694, 0.001138570485636592, 0.0005580715369433165, 0.009030207060277462, 0x1.ddc81ap-9, 0.00018225915846414864, 0x1.ddc81ap-9, 0.00018225915846414864, 16.00072479248047, 0.007513242773711681, 0.031602952629327774, 0.009060700424015522, 0.022315775975584984, 5.429308657767251e-05, 0.0037634894251823425, 0.0037634894251823425, 2.4337158203125, 0.6000000238418579,
+ 251, 1.3873939514160156, 3.81191372871398926, 44373.31640625, 1.0969921350479126, 0x1.f33242p+6, 23.53078842163086, 23.56116485595703, 1.4429168701171875, 2.2116870880126953, 0.7687702775001526, 1.338205337524414, 587.5296630859375, 799.9301147460938, 0, 94.11368560791016, 493.4158020019531, 11.801254272460938, 75.29019927978516, 87.0914535522461, 0.11328565329313278, 0.8110554218292236, 0.924341082572937, 2.255391836166382, 0.07046713680028915, 0.6480253338813782, 0.3869091868400574, 4.752285957336426, 3.68817543983459473, 0.06482403725385666, 0.003523358842357993, 0.01114993542432785, 0.009672717191278934, 0.0135779595002532, 0.010537645779550076, 0.16338114440441132, 2.0323801040649414, 73.09443664550781, 0.016338113695383072, 0.10730470716953278, 0.6852532625198364, 0.0021593442652374506, 0, 0.02236289344727993, 0.022384554147720337, 0.022079916670918465, 0.007494404911994934, 0.06629759073257446, 0.0033148811198771, 0.06629759073257446, 0.0033148813527077436, 81.28553771972656, 0.7906232476234436, 0.23928746581077576, 0.17027214169502258, 0.6636437177658081, 0.008624311536550522, 0.8328671455383301, 0.8328671455383301, 5.5574631690979, 0.6000000238418579,
)
---
# `mod_BiomeE_PLULUC_primary_oac_yr1`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 1, 1, 2, 1, 500, 0.00416250666603446, 0.6753503084182739, 0.12453463673591614, 2.9584689140319824, 1.0000004768371582, 3.582185672712512e-05, 1.19930409709922969e-05, 0.08325012773275375, 0.12420248240232468, 0.08486519008874893, 0.004756688140332699, 0, 0.021114422008395195, 0.012606550008058548, 0.0230738222599029541, 0.05683089420199394, 0.07829460501670837, 0, 0.31149959564208984, 0.30654868483543396, 0.3819516897201538, 0.04662158340215683, 0.08874092996120453, 0.0421193465590477, 0, 0, 0.01055500097572803497, 2.988882670251769e-06, 0.00010475356975803152,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 1, 1, 2, 1, 500, 0.00416250666603446, 0.6753503084182739, 0.12453463673591614, 2.9584689140319824, 1.0000004768371582, 3.582185672712512e-05, 1.19930409709922969e-05, 0.08325012773275375, 0.12420248240232468, 0.08486519008874893, 0.004756688140332699, 0, 0.021114422008395195, 0.012606550008058548, 0.0230738222599029541, 0.05683089420199394, 0.07829460501670837, 0, 0.31149959564208984, 0.30654868483543396, 0.3819516897201538, 0.04662158340215683, 0.08874092996120453, 0.0421193465590477, 0, 0, 0.01055500097572803497, 2.9888828976254445e-06, 0.00010475356975803152,
)
---
# `mod_BiomeE_PLULUC_primary_oac_yr2`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 2, 1, 2, 1, 494.7225036621094, 0.005111239850521088, 0.7799178957939148, 0.104567594826221466, 3.1792666912078857, 0x1.fffea4p+0, 4.777356298291124403e-05, 1.19517062557861209e-05, 0.10331528633832932, 0.19689592719078064, 0.10555817931890488, 0.003693532897159457, 0, 0.03347230702638626, 0.019984934478998184, 0.04077288135886192, 0.07049454003572464, 0.07588209211826324, 0, 0.23575858771800995, 0.3509331941604614, 0.4133082330226898, 0.0965750366449356079, 0.1391470581293106, 0.0425720252096653, 0, 0, 0.0106887686997652054, 2.6899847398453858e-06, 0.00014292488049250096,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 2, 1, 2, 1, 494.7225036621094, 0.005111239850521088, 0.7799178957939148, 0.104567594826221466, 3.1792666912078857, 0x1.fffea4p+0, 4.777356298291124403e-05, 1.19517062557861209e-05, 0.10331528633832932, 0.19689592719078064, 0.10555817931890488, 0.003693532897159457, 0, 0.03347230702638626, 0.019984934478998184, 0.04077288135886192, 0.07049454003572464, 0.07588209211826324, 0, 0.23575858771800995, 0.3509331941604614, 0.4133082330226898, 0.0965750366449356079, 0.1391470581293106, 0.0425720252096653, 0, 0, 0.0106887686997652054, 2.6899845124717103e-06, 0.0001429248950444162,
)
---
# `mod_BiomeE_PLULUC_primary_oac_yr251`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 251, 453, 2, 1, 6204.3662109375, 0.781042218208313, 4.129751205444336, 0x1.f7454ep-3, 7.3158440589904785, 25.779739379882812, 0.0013394845882430673, 0.00015466718468815088, 1.2588590383529663, 3.964414358139038, 2.396291971206665, 0.06221679598093033, 0.07521170377731323, 0.6739504337310791, 0.4023880362510681, 3.0446815490722656, 2.099076271057129, 1.4398750066757202, 0.05223488435149193, 0.13310246169567108, 0.3445485532283783, 0.4701140820980072, 1.6745383739471436, 2.48441481590271, 0.8098765015602112, 0.02681770920753479, 0, 0.018392393365502357, 0.00116771424654871225, 0.09918257594108582,
- 251, 397, 2, 1, 149.41921997070312, 0.24800805747509003, 23.04864501953125, 0.424426794052124, 17.283241271972656, 79.71361541748047, 0.041723497211933136, 0.00152247771620750427, 16.59813690185547, 52.280128479003906, 38.35758590698242, 0.8215985894203186, 1.2478489875793457, 8.887621879577637, 5.306432247161865, 158.8809356689453, 109.49272918701172, 20.950157165527344, 0.05956275016069412, 0.0977684110403060913, 0.30660390853881836, 0.5360649228096008, 22.047210693359375, 33.81137466430664, 11.764163970947266, 0.3125823736190796, 0, 0.12065424770116806, 0.0034908705856651068, 0.5808157920837402,
- 251, 405, 2, 1, 53.251808166503906, 0.04820876568555832, 15.386279106140137, 0x1.85289cp-2, 14.12112522125244140625, 79.71360778808594, 0.018593326210975647, 0.00090715847909450531, 9.05298137664795, 28.51395606994629, 20.331798553466797, 0.44778183102607727, 0.6580069065093994, 4.847372531890869, 2.8941659927368164, 62.71681594848633, 43.22386169433594, 11.25114822387695312, 0.058483533561229706, 0.102879956364631653, 0.312284916639328, 0.5263516306877136, 12.039875030517578, 18.3539142608642578125, 6.3140387535095215, 0.17407317459583282, 0, 0.07035320997238159, 0.00035183815634809434, 0.05045400932431221,
- 251, 451, 2, 2, 1829.4735107421875, 0.16942362487316132, 3.365407943725586, 0.06579309701919556, 6.604217052459717, 25.779739379882812, 0.0008895396604202688, 3.444071626290679e-05, 0.9260785579681396, 1.4584969282150269, 0.28346580266952515, 0.02300185151398182, 0.013700224459171295, 0.24794448912143707, 0.14803743362426758, 0.97800147533416748, 2.234492063522339, 0.3307599723339081, 0.04142044112086296, 0.05487056449055672, 0.4725307822227478, 0.431178182363510132, 0.06103000044822693, 0.2366011142730713, 0.17557111382484436, 0.001471759751439094543, 0, 0.1553182750940323, 0.0011602576123550534, 0.11097906529903412,
- 251, 25, 2, 2, 38396.28515625, 0.129136696457862854, 0.36907342076301575, 0.02906501665711403, 2.1870508193969727, 2.8104193210601807, 1.069831705535762e-05, 1.618665010028053e-06, 0.03363259881734848, 0.036316920071840286, 0.005760264582931995, 0.00188537896610796452, 0, 0.006173876579850912, 0.003686167299747467, 0.00418661767616868, 0.015720801427960396, 0.0105964895337820053, 0, 0.31301701068878174, 0.3639802634716034, 0.32300275564193726, 0.0004636230878531933, 0.00615537166595459, 0.0056917485781013966, 0, 0, 0.35191845893859863, 0.002892508404329419, 0.04800635203719139,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 251, 455, 2, 1, 5124.67919921875, 0.8590733408927917, 4.998598098754883, 0.2641063332557678, 8.048715591430664, 28.8890380859375, 0.001962394453585148, 0.0002018922241404652596, 1.6763455867767334, 5.279317855834961, 3.29564595222473145, 0.08295442909002304, 0.104070208966732025, 0.8974840641021729, 0.5358507633209229, 4.723667144775391, 3.256396532058716, 1.9469101428985596, 0.05345403775572777, 0.12709693610668182, 0.33836233615875244, 0.48108670115470886, 2.2314062118530273, 3.3257203102111816, 1.0943140983581543, 0.03502625226974487, 0, 0.02117563784122467, 0.001517048804089427, 0.1390458047389984,
+ 251, 389, 2, 1, 112.35953521728516, 0.19727911055088043, 23.928747177124023, 0.428617000579834, 17.610126495361328, 81.28553771972656, 0.044970717281103134, 0.00159662216901779175, 17.557844161987305, 55.30308532714844, 40.66675567626953, 0.8694912791252136, 1.323513150215149, 0x1.2cd94ap+3, 5.613262176513672, 173.18252563476562, 119.34809112548828, 22.188785552978516, 0.05964783951640129, 0.09736574441194534, 0.30615586042404175, 0.5368305444717407, 23.319122314453125, 35.779937744140625, 12.4608154296875, 0.33064597845077515, 0, 0.12705229222774506, 0.002960121026262641, 0x1.fef4dap-2,
+ 251, 399, 2, 1, 12.439547538757324, 0.016609668731689453, 19.9362468719482421875, 0.4083290696144104, 16.07400894165039, 81.28553009033203, 0.031215962022542953, 0.00126562081277370453, 13.352309226989746, 42.056182861328125, 30.57056427001953, 0.6611476540565491, 0.9928379654884338, 7.1495513916015625, 4.268702507019043, 0x1.c738fp+6, 78.43064880371094, 16.767892837524414, 0.05921065807342529, 0.099434971809387207031, 0.30845826864242554, 0.532896101474762, 17.744064331054688, 27.15699005126953, 9.412924766540527, 0.2535629868507385, 0, 0.09901539236307144, 0.00018349579477217048, 0.028971947729587555,
+ 251, 453, 2, 2, 1566.5989990234375, 0.18823903799057007, 4.003505229949951, 0.06012283265590668, 7.203153610229492, 28.8890380859375, 0.00125884031876921654, 3.752554766833782e-05, 1.2015776634216309, 1.8924102783203125, 0.3155019283294678, 0.029768601059913635, 0.006533761043101549, 0.3217097520828247, 0x1.89610cp-3, 1.458046317100525, 3.3312132358551025, 0.40486323833465576, 0.016138192266225815, 0.07006154209375381, 0.5091859102249146, 0.4046143889427185, 0.08644135296344757, 0.30809324979782104, 0.22165189683437347, 0.0024417205713689327, 0, 0.13480748236179352, 0.0011428765719756484, 0.118795759975910187,
+ 251, 421, 2, 2, 37557.23828125, 0.1261928677558899, 0.3688359558582306, 0.029517803341150284, 2.186347246170044, 2.853191614151001, 1.0684554581530392e-05, 1.64172979566501454e-06, 0.03360014408826828, 0.0362829752266407, 0.005882824305444956, 0.001879000454209745, 1.3153550071365316e-06, 0.006168106105178595, 0.003682721871882677, 0.004180552437901497, 0.0156974196434021, 0.01067624893039465, 0.00012320384848862886, 0.31602340936660767, 0.3588232398033142, 0.3250301480293274, 0x1.ecec8p-12, 0.006201880518347025, 0.005731791723519564, 0, 0, 0.3519395589828491, 0.002820769557729363441, 0.04707275331020355,
)
---
@@ -227,52 +222,52 @@
# `mod_BiomeE_PLULUC_secondary_odt_yr251`:
tibble::tribble(
- ~year, ~doy, ~Tk, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~ws1, ~ws2, ~ws3, ~LAI, ~NPP, ~GPP, ~Rauto, ~Rh, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_uptk,
- 251, 1, 273.5336608886719, 1.436545491218567, 799.9601440429688, 0, 0.03989458084106445, 1.366621732711792, 19.9601058959960938, 179.99998474121094, 600, 3.545769453048706, 0.0022412477992475033, 0.0022878830786794424, 4.66351630166173e-05, 0.00147393031511455774, 2.163930892944336, 0.002506411634385586, 0.6027808785438538, 0.36641770601272583, 4.457956314086914, 3.3131895065307617, 0.062141403555870056, 0.0001253205700777471, 0.010371451266109943, 0.00916041713207960129, 0x1.a15dd8p-7, 0.009466256015002728, 0.16449543833732605, 2.211317300796509, 73.53285217285156, 0.016449544578790665, 0.1148822084069252, 0.6806582808494568, 0.0021874436642974615, 0,
- 251, 2, 271.50848388671875, 2.0038182735443115, 799.9590454101562, 0, 0.040993303060531616, 1.963923454284668, 19.959009170532227, 179.99998474121094, 600, 3.5523083209991455, -0.00011776015162467957, 0.0022555748000741005, 0.00237333495169878, 0.0014648946234956384, 2.159140110015869, 0.002689437475055456, 0.6038923859596252, 0.36633068323135376, 4.442195415496826, 3.330871105194092, 0.06224021315574646, 0.000134471862111240625, 0.0103905769065022469, 0.009158243425190449, 0.012691986747086048, 0.00951677281409502, 0.16449794173240662, 2.211873769760132, 73.5323715209961, 0.01644979417324066, 0.11489368975162506, 0.6806609630584717, 0.002055014483630657, 0.000166371450177393854,
- 251, 180, 290.3451843261719, 2.415818214416504, 799.5171508789062, 0, 0.482876718044281, 1.7443971633911133, 19.51712417602539, 179.99998474121094, 600, 3.668417453765869, 0.007000985089689493, 0.0094047486782073975, 0.0024037635885179043, 0.0057961586862802505, 2.153475761413574, 0.03359071537852287, 0.623630940914154, 0.3711283206939697, 4.586367130279541, 3.486979722976684570312, 0.06335856020450592, 0.0016795361880213022, 0.0107302041724324226, 0x1.300712p-7, 0.013103906065225601196, 0.0099627990275621414, 0.16556814312934875, 2.220280170440674, 73.34941101074219, 0.016556814312934875, 0.1144527941942215, 0.6809604167938232, 0.0015705771511420608, 0,
- 251, 364, 271.62640380859375, 2.0575454235076904, 799.951416015625, 0, 0.0485725626349449158, 1.9935612678527832, 19.95142936706543, 179.99998474121094, 600, 3.797483205795288, 0.0004929371643811464, 0.00247697136364877224, 0.001984034199267626, 0.0014291867846623063, 2.2494161128997803, 0.0709228515625, 0.6455721259117126, 0.3854444921016693, 4.789842128753662, 3.6361520290374755859, 0.06474842876195908, 0.00354614434763789177, 0.011107728816568851, 0.009636097587645054, 0.013685262762010098, 0.010389002040028572, 0.1644166111946106, 2.04951548576355, 72.9272232055664, 0.01644166186451912, 0x1.baf868p-4, 0.6808094382286072, 0.002249078592285514, 0,
- 251, 365, 273.3876037597656, 1.826090812683105469, 799.9301147460938, 0, 0.06991278380155563, 1.7775189876556396, 19.9300861358642578125, 179.99998474121094, 600, 0x1.e62be6p+1, 0.00047946441918611526, 0.002470617648214102, 0.0019911532290279865, 0.0014278182061389089, 2.24601149559021, 0.07112147659063339, 0.6456964612007141, 0.38551875948905945, 4.790919303894043, 3.636930465698242, 0.06484106183052063, 0.0035560750402510166, 0.011109867133200169, 0.0096379537135362625, 0.013688340783119202, 0.010391226038336754, 0.1644132137298584, 2.0501813888549805, 72.92676544189453, 0.01644132100045681, 0.10816074162721634, 0.680812418460846, 0.002132832771167159, 0.00014981080312281847,
+ ~year, ~doy, ~Tk, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~ws1, ~ws2, ~ws3, ~LAI, ~NPP, ~GPP, ~Rauto, ~Rh, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_uptk,
+ 251, 1, 273.5336608886719, 1.436545491218567, 799.9601440429688, 0, 0.039872877299785614, 1.36663818359375, 19.960126876831055, 179.99998474121094, 600, 3.571153402328491, 0.0022461693733930588, 0.00229307753033936023712, 4.690809510066174e-05, 0.0014670146629214286804, 2.1851158142089844, 0x1.0d9f28p-10, 0.6070960760116577, 0.36907586455345154, 4.4193291664123535, 3.3574888706207275, 0.06249053403735161, 5.142626469023526e-05, 0.0104456990957260132, 0.0092268837615847588, 0.012626654468476772, 0.009592811577022076, 0.16364046931266785, 2.182933568954467773, 73.70132446289062, 0.016364047303795815, 0.1138359680771827698, 0.6851029992103577, 0.0021195560693740845, 0.00014975055819377303,
+ 251, 2, 271.50848388671875, 2.0038182735443115, 799.9590454101562, 0, 0.04097667336463928, 1.963945746421814, 19.959022521972656, 179.99998474121094, 600, 3.577581882476806641, -0.0001120197121053934097, 0.0022606600541621447, 0.002372679766267538, 0.0014580381102859974, 2.180332660675049, 0.0012135779252275825, 0.6081888675689697, 0.3689765930175781, 4.404462814331055, 3.3742918968200684, 0.062474992126226425, 6.067890353733674e-05, 0.010464503429830074, 0.009224400855600834, 0.01258417870849371, 0.009640821255743504, 0.1636425107717514, 2.183507919311523438, 73.70085144042969, 0.01636425033211708, 0x1.d252p-4, 0.6851056814193726, 0.0021021629218012094, 5.179079016670585e-05,
+ 251, 180, 290.3451843261719, 2.415818214416504, 799.5175170898438, 0, 0.4825248420238495, 1.7448978424072266, 19.517475128173828, 179.99998474121094, 600, 3.685528039932251, 0.006996393203735351562, 0.009407570585608482, 0.002411177381873131, 0.005773112643510103, 2.171008825302124, 0.03244990110397339, 0.6265397667884827, 0.37328478693962097, 4.545215129852295, 3.536618232727051, 0.06343451887369156, 0.0016224950086325407, 0.010780243203043938, 0.009332102723419666, 0x1.a98934p-7, 0.01010461151599884, 0.16461101174354553, 2.1958484649658203, 73.51876068115234, 0.016461100429296494, 0.11346828937530518, 0.6854020953178406, 0.0016634586500003934, 0,
+ 251, 364, 271.62640380859375, 2.0575454235076904, 799.9514770507812, 0, 0.04856013506650925, 1.993576288223266602, 19.951440811157227, 179.99998474121094, 600, 3.810537815093994, 0.0004854507278650999, 0.002472618827596307, 0.001987168099731207, 0.0014246971113607287, 2.2626984119415283, 0.070067398250103, 0.6477914452552795, 0.38676953315734863, 4.750117301940918, 3.686615467071533, 0.06490758806467056, 0.003503370564430952, 0.01114590559154749, 0.009669226594269276, 0.01357176527380943298, 0.010533180087804794, 0.1633845716714859, 2.0303890705108643, 73.09455108642578, 0.01633845642209053, 0.10725968331098557, 0.6852445602416992, 0.0021552909165620804, 0.000161563468282111,
+ 251, 365, 273.3876037597656, 1.826090812683105469, 799.9301147460938, 0, 0.06989705562591553, 1.7775309085845947, 19.930103302001953, 179.99998474121094, 600, 3.811227798461914, 0.0004718594718724489, 0.0024662483483552933, 0.0019943888764828444, 0.00142334518022835255, 2.25927996635437, 0.070267453789711, 0.647908627986908, 0.386839538812637329, 4.7512030601501465, 3.6873958110809326, 0.06492428481578827, 0.003513373201712966, 0.011147922836244106, 0.009670975618064404, 0.013574868440628052, 0.010535410605370998, 0.1633811742067337, 2.0310654640197754, 73.0940933227539, 0.01633811742067337, 0.10727360844612122, 0.6852474808692932, 0.00211550947278738022, 7.38725284463726e-05,
)
---
# `mod_BiomeE_PLULUC_secondary_oat`:
tibble::tribble(
- ~year, ~CAI, ~LAI, ~Density, ~DBH, ~Density12, ~DBH12, ~QMD12, ~NPP, ~GPP, ~Rauto, ~Rh, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~plantC, ~soilC, ~totC, ~plantN, ~soilN, ~totN, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_fxed, ~N_uptk, ~N_yrMin, ~N_P2S, ~N_loss, ~totseedC, ~totseedN, ~Seedling_C, ~Seedling_N, ~MaxAge, ~MaxVolume, ~MaxDBH, ~NPPL, ~NPPW, ~n_deadtrees, ~c_deadtrees, ~m_turnover, ~c_turnover_time, ~lu_fraction,
- 1, 0.00416250666603446, 0.006210124120116234, 500, 0.6753503084182739, 0, 0, 0, 0.0023310792166739702, 0.004437046591192484, 0.0021059673745185137, 0.003694188082590699, 587.5296630859375, 799.9039306640625, 0, 159.69195556640625, 427.9337158203125, 0.009924544021487236, 0.013866174034774303, 0.023790717124938965, 0.0002831722085829824, 0.004075021017342806, 0.004358193371444941, 0.004243259783834219, 0, 0.0010557210771366954, 0.0006303275004029274, 0x1.2e6ee6p-10, 0.0028415448032319546, 0x1.f2c66p-13, 0, 1.8164650100516155e-05, 1.575815986143425e-05, 3.296260274510132e-06, 8.118709047266748e-06, 0.00036628221278078854, 0.012364579364657402, 0.0011353119043633342, 3.6628222005674616e-05, 0.0007931191939860582, 2.699048854992725e-05, 0.0032182831782847643, 0, 0, -0.0117817027494311333, 2.004899761232081801e-05, 0.02192673645913601, 0, 0, 0, 0, 1.0000004768371582, 0x1.c4e5f2p-13, 0.006753502879291773, 0.0012194368755444884, 0.0014952378114685416, 2.988882670251769e-06, 0.00010475356975803152, 0.00010475356975803152, 1.9003965854644775, 0.4000000059604645,
- 2, 0.005111239850521088, 0.00974088441580534, 494.7225036621094, 0.7799178957939148, 0, 0, 0, 0.004777783993631601, 0.0068839178420603275, 0.002106133848428726, 0.0031192172318696976, 587.5296630859375, 799.9039916992188, 0, 159.53289794921875, 0x1.abff0cp+8, 0.0133715001866221428, 0.0120777832344174385, 0.02544928342103958, 0.00025166457635350525, 0.0036220247857272625, 0.003873689332976937294, 0.0052222004160285, 0, 0.0016559503274038434, 0.0009886997286230326, 0.00201712618581950665, 0.0034875234123319387, 0.00018272738088853657, 0, 2.8492153433035128e-05, 2.47174666583305225e-05, 5.763217814092059e-06, 9.964360287995078e-06, 0.000509743404109031, 0.010150681249797344, 0.0014173585223034024, 5.0974340410903096e-05, 0.0006638788036070764, 3.06092479149811e-05, 0.002876562299206853, 0, 0, -0.00034172250889241695, 3.1208794098347425e-05, 0x1.578e62p-7, 0, 0, 0, 0, 0x1.fffea4p+0, 0.00030072274967096746, 0.0077991788275539875, 0.0008850513841025531, 0.00155158306006342173, 2.6899847398453858e-06, 0.00014292488049250096, 0.00014292488049250096, 2.2477195262908936, 0.4000000059604645,
- 8, 0.013906870037317276, 0.043787699192762375, 462.5186462402344, 1.5897880792617798, 0, 0, 0, 0.01834146678447723389, 0.0265294201672077179, 0.00818795245140791, 0.003669277299195528, 587.5296630859375, 799.9047241210938, 0, 157.8809814453125, 429.6481628417969, 0.06122784316539764404, 0.021015113219618797, 0.08224295824766159, 0.0010807090438902378, 0.00354195898398757, 0.004622668027877808, 0.02130504697561264, 0.0015576676232740283, 0.00744390906766057, 0.004444451071321964, 0.015669401735067368, 0.0108073707669973373413, 0.0006879871361888945, 7.788345101289451e-05, 0.00012807949678972363, 0.000111111010483000427, 4.476971662370488e-05, 3.0878218240104616e-05, 0.0007165192510001361, 0.0131698893383145332, 0.007128703873604536, 7.165192801039666e-05, 0.0006132787675596774, 0.00010436776938149706, 0.0027526605408638716, 0, 0.00033169431844726205, 0.0003201222571078688, 0.00016015316941775382, 0.00975329615175724, 0, 0, 0, 0, 8.000199317932129, 0.0015471557853743434, 0.015897881239652634, 0.0025127814151346684, 0.005758278071880341, 1.2973386219528038e-05, 0.0007350104860961437, 0.0007350104860961437, 1.8768407106399536, 0.4000000059604645,
- 9, 0.016000162810087204, 0.050379808992147446, 456.96630859375, 1.7596757411956787, 0, 0, 0, 0.021106015890836716, 0.030644193291664124, 0.009538178332149982, 0.004214892629534006, 587.5296630859375, 799.9048461914062, 0, 157.56739807128906, 429.9620666503906, 0.07428936660289764, 0.02484470047056675, 0.09913406521081924, 0.0012769695604220033, 0.0036373832263052464, 0.004914352670311928, 0.025268159806728363, 0.002303489251062274, 0.008564568124711514, 0.005113549996167421, 0.019553789868950844, 0.01348581444472074509, 0.0007921959622763097, 0.0001151745091192424297, 0.00014736161392647773, 0.00012783858983311802, 5.586797124124132e-05, 3.8530917663592845e-05, 0.0008094012155197561, 0.015148326754570007, 0.008886972442269325, 8.094012446235865e-05, 0.0006896884879097342, 0.0001265366590814665, 0.0027402180712670088, 0, 0.00037925440119579434, 0.0003668121062219143, 0.000185770244570449, 0.00970831885933876, 0.0022750776261091232, 0.000113753914774861187, 0.0022750776261091232, 0.000113753907498903573, 9.000265121459961, 0.001954109640792012, 0.017596757039427757, 0.0028416116256266832, 0.006880678236484528, 1.5750470993225463e-05, 0.000916304241400212, 0.000916304241400212, 1.9599542617797852, 0.4000000059604645,
- 16, 0.04833274334669113, 0.14704228937625885, 2009.9169921875, 1.1782575845718384, 0, 0, 0, 0.06215196475386619567871, 0.09093406051397324, 0.02878209576010704, 0.012196685187518597, 587.5296630859375, 799.90673828125, 0, 153.25502014160156, 434.2740173339844, 0.2517127990722656, 0.08069731295108795, 0.3324100971221924, 0.003704541362822056, 0.005149995908141136, 0.008854537270963192, 0.07830988615751266, 0.004114205949008465, 0.02499719336628914, 0.01492479443550109863281, 0.0758480355143547, 0.053518690168857574, 0.002325991867110133, 0.0002057102246908471, 0.00043010085937567055, 0.0003731192264240235, 0.00021670872229151428, 0.000152910390170291066, 0.002262876834720373, 0.04377659782767296, 0.03465784341096878, 0.00022628768056165427, 0.0019180658273398876, 0.00043470165110193193, 0.002570941112935543, 0, 0.0010557769564911723, 0.0010267195757478476, 0.0005489086033776402, 0.0091457869857549667, 0x1.ddc81ap-9, 0.00018225915846414864, 0x1.ddc81ap-9, 0.00018225915846414864, 16.00072479248047, 0.007513242773711681, 0.031602952629327774, 0.008355258964002132, 0.021820859983563423, 5.3695941460318863e-05, 0.0037389725912362337, 0.0037389725912362337, 2.452638864517212, 0.4000000059604645,
- 251, 1.37581837177276611, 3.798945426940918, 46632.796875, 1.0767889022827148, 202.671966552734375, 21.035327911376953, 21.303951263427734, 1.445432186126709, 2.2112863063812256, 0.7658540606498718, 1.3433226346969604, 587.5296630859375, 799.9301147460938, 0, 94.1740951538086, 493.3553466796875, 0x1.78c94p+3, 75.14299774169922, 86.91756439208984, 0.113186568021774292, 0.8075852394104004, 0.92077183723449707, 2.2421300411224365, 0.0713198110461235, 0.645820677280426, 0.3855929076671600342, 4.791996479034424, 3.63770627975463867, 0.06478390842676163, 0.003565991995856166, 0.01111200638115406, 0.009639809839427471, 0.013691418804228306, 0.0103934435173869132996, 0.1644132137298584, 2.0514917373657227, 72.92709350585938, 0.01644132100045681, 0.108194142580032349, 0.6808169484138489, 0.002132832771167159, 0, 0.02256692387163639, 0.022546617314219475, 0.022442059591412544, 0.007400314789265394, 0.0654589831829071, 0.0032729506492614746, 0.0654589831829071, 0.0032729506492614746, 79.713623046875, 0.7253342270851135, 0.2304864525794983, 0.17173214256763458, 0.6585536003112793, 0.0090598659589886665, 0.8894374966621399, 0.8894374966621399, 5.523781776428223, 0.4000000059604645,
+ ~year, ~CAI, ~LAI, ~Density, ~DBH, ~Density12, ~DBH12, ~QMD12, ~NPP, ~GPP, ~Rauto, ~Rh, ~Prcp, ~SoilWater, ~Transp, ~Evap, ~Runoff, ~plantC, ~soilC, ~totC, ~plantN, ~soilN, ~totN, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~seedN, ~leafN, ~rootN, ~sapwoodN, ~heartwoodN, ~mcrbC, ~fastSOM, ~slowSOM, ~mcrbN, ~fastSoilN, ~slowSoilN, ~mineralN, ~N_fxed, ~N_uptk, ~N_yrMin, ~N_P2S, ~N_loss, ~totseedC, ~totseedN, ~Seedling_C, ~Seedling_N, ~MaxAge, ~MaxVolume, ~MaxDBH, ~NPPL, ~NPPW, ~n_deadtrees, ~c_deadtrees, ~m_turnover, ~c_turnover_time, ~lu_fraction,
+ 1, 0.00416250666603446, 0.006210124120116234, 500, 0.6753503084182739, 0, 0, 0, 0.0023310792166739702, 0.004437046591192484, 0.0021059673745185137, 0.003694188082590699, 587.5296630859375, 799.9039306640625, 0, 159.69195556640625, 427.9337158203125, 0.009924544021487236, 0.013866174034774303, 0.023790717124938965, 0.0002831722085829824, 0.004075021017342806, 0.004358193371444941, 0.004243259783834219, 0, 0.0010557210771366954, 0.0006303275004029274, 0x1.2e6ee6p-10, 0.0028415448032319546, 0x1.f2c66p-13, 0, 1.8164650100516155e-05, 1.575815986143425e-05, 3.296260274510132e-06, 8.118709047266748e-06, 0.00036628221278078854, 0.012364579364657402, 0.0011353119043633342, 3.6628222005674616e-05, 0.0007931191939860582, 2.699048854992725e-05, 0.0032182831782847643, 0, 0, -0.0117817027494311333, 2.004899761232081801e-05, 0.02192673645913601, 0, 0, 0, 0, 1.0000004768371582, 0x1.c4e5f2p-13, 0.006753502879291773, 0.0012194368755444884, 0.0014952378114685416, 2.9888828976254445e-06, 0.00010475356975803152, 0.00010475356975803152, 1.9003965854644775, 0.4000000059604645,
+ 2, 0.005111239850521088, 0.00974088441580534, 494.7225036621094, 0.7799178957939148, 0, 0, 0, 0.004777783993631601, 0.0068839178420603275, 0.002106133848428726, 0.0031192172318696976, 587.5296630859375, 799.9039916992188, 0, 159.53289794921875, 0x1.abff0cp+8, 0.0133715001866221428, 0.0120777832344174385, 0.02544928342103958, 0.00025166457635350525, 0.0036220247857272625, 0.003873689332976937294, 0.0052222004160285, 0, 0.0016559503274038434, 0.0009886997286230326, 0.00201712618581950665, 0.0034875234123319387, 0.00018272738088853657, 0, 2.8492153433035128e-05, 2.47174666583305225e-05, 5.763217814092059e-06, 9.964360287995078e-06, 0.000509743404109031, 0.010150681249797344, 0.0014173585223034024, 5.0974340410903096e-05, 0.0006638788036070764, 3.06092479149811e-05, 0.002876562299206853, 0, 0, -0.00034172250889241695, 3.1208794098347425e-05, 0x1.578e62p-7, 0, 0, 0, 0, 0x1.fffea4p+0, 0.00030072274967096746, 0.0077991788275539875, 0.0008850513841025531, 0.00155158306006342173, 2.6899845124717103e-06, 0.0001429248950444162, 0.0001429248950444162, 2.2477195262908936, 0.4000000059604645,
+ 8, 0.013906870037317276, 0.043787699192762375, 462.5186462402344, 1.5897880792617798, 0, 0, 0, 0.01834146678447723389, 0.0265294201672077179, 0.00818795245140791, 0.003669277299195528, 587.5296630859375, 799.9047241210938, 0, 157.8809814453125, 429.6481628417969, 0.06122784316539764404, 0.021015113219618797, 0.08224295824766159, 0.0010807090438902378, 0.00354195898398757, 0.004622668027877808, 0.02130504697561264, 0.0015576676232740283, 0.00744390906766057, 0.004444451071321964, 0.015669401735067368, 0.0108073707669973373413, 0.0006879871361888945, 7.788345101289451e-05, 0.00012807949678972363, 0.000111111010483000427, 4.476971662370488e-05, 3.0878218240104616e-05, 0.0007165192510001361, 0.0131698893383145332, 0.007128703873604536, 7.165192801039666e-05, 0.0006132787675596774, 0.00010436776938149706, 0.0027526605408638716, 0, 0.00033169431844726205, 0.0003201222571078688, 0.00016015316941775382, 0.00975329615175724, 0, 0, 0, 0, 8.000199317932129, 0.0015471557853743434, 0.015897881239652634, 0.0025127814151346684, 0.005758278071880341, 1.2973386219528038e-05, 0.0007350104860961437, 0.0007350104860961437, 1.8768407106399536, 0.4000000059604645,
+ 9, 0.016000162810087204, 0.050379808992147446, 456.96630859375, 1.7596757411956787, 0, 0, 0, 0.021106015890836716, 0.030644193291664124, 0.009538178332149982, 0.004214892629534006, 587.5296630859375, 799.9048461914062, 0, 157.56739807128906, 429.9620666503906, 0.07428936660289764, 0.02484470047056675, 0.09913406521081924, 0.0012769695604220033, 0.0036373832263052464, 0.004914352670311928, 0.025268159806728363, 0.002303489251062274, 0.008564568124711514, 0.005113549996167421, 0.019553789868950844, 0.01348581444472074509, 0.0007921959622763097, 0.0001151745091192424297, 0.00014736161392647773, 0.00012783858983311802, 5.586797124124132e-05, 3.8530917663592845e-05, 0.0008094012155197561, 0.015148326754570007, 0.008886972442269325, 8.094012446235865e-05, 0.0006896884879097342, 0.0001265366590814665, 0.0027402180712670088, 0, 0.00037925440119579434, 0.0003668121062219143, 0.000185770244570449, 0.00970831885933876, 0.0022750776261091232, 0.000113753914774861187, 0.0022750776261091232, 0.000113753907498903573, 9.000265121459961, 0.001954109640792012, 0.017596757039427757, 0.0028416116256266832, 0.006880678236484528, 1.5750470993225463e-05, 0.000916304299607873, 0.000916304299607873, 1.9599542617797852, 0.4000000059604645,
+ 16, 0.049853820353746414, 0.1513535976409912, 2009.7882080078125, 1.23066318035125732, 0, 0, 0, 0.06374537944793701, 0x1.7ea2f8p-4, 0.02967175841331482, 0.012181862257421017, 587.5296630859375, 799.9067993164062, 0, 153.14578247070312, 434.3832702636719, 0.25442904233932495, 0.08084052801132202, 0.335269570350647, 0.0037666272837668657, 0.0051099276170134544, 0.008876554667949677, 0.07905802130699158, 0.003703018883243203, 0.025730112567543983, 0.015362389385700226, 0.07626524567604065, 0.0543102547526359558, 0.0023816332686692476, 0.0001851508714025840163, 0.00044271143269725144, 0.0003840590943582356, 0.00021790072787553072, 0.00015517199062742293, 0.0022575173061341047, 0.04390890523791313, 0.034674108028411865, 0.00022575173352379352, 0.00191840878687798977, 0.0004348130605649203, 0.00253095431253314, 0, 0.001197705278173089, 0.00113828002940863370895, 0.0005580345750786364, 0.009032507427036762, 0x1.ddc81ap-9, 0.00018225915846414864, 0x1.ddc81ap-9, 0.00018225915846414864, 16.00072479248047, 0.007513242773711681, 0.031602952629327774, 0.009060700424015522, 0.022315775975584984, 5.42561465408653e-05, 0.0037634894251823425, 0.0037634894251823425, 2.4337158203125, 0.4000000059604645,
+ 251, 1.387394905090332, 3.811915159225464, 44373.33203125, 1.0969923734664917, 124.79866790771484, 23.5307941436767578125, 23.56117057800293, 1.4429168701171875, 2.2116875648498535, 0.768770694732666, 1.338205337524414, 587.5296630859375, 799.9301147460938, 0, 94.11368560791016, 493.4158020019531, 11.801258087158203, 75.2901840209961, 87.09144592285156, 0.11332876235246658, 0.8110127449035645, 0.9243414998054504, 2.255392551422119, 0.07046722620725632, 0.6480255722999573, 0.3869093358516693, 4.752285957336426, 3.68817710876464844, 0.06486713886260986, 0.0035233618691563606, 0.0111499335616827011, 0.0096727209165692329, 0.013577958568930626, 0.01053764205425977706909, 0.1633811742067337, 2.0323803424835205, 73.09442138671875, 0.01633811742067337, 0.10730712115764618, 0.6852520108222961, 0.00211550947278738022, 0, 0.022500060498714447, 0.022379999980330467, 0.022083833813667297, 0.007500197272747755, 0.06629767268896103, 0.0033148841466754675, 0.06629767268896103, 0.0033148841466754675, 81.28556060791016, 0.7906232476234436, 0.23928746581077576, 0.17027230560779572, 0.6636442542076111, 0.00862822774797678, 0.8328667283058167, 0.8328667283058167, 5.557461261749268, 0.4000000059604645,
)
---
# `mod_BiomeE_PLULUC_secondary_oac_yr1`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 1, 1, 2, 1, 500, 0.00416250666603446, 0.6753503084182739, 0.12453463673591614, 2.9584689140319824, 1.0000004768371582, 3.582185672712512e-05, 1.19930409709922969e-05, 0.08325012773275375, 0.12420248240232468, 0.08486519008874893, 0.004756688140332699, 0, 0.021114422008395195, 0.012606550008058548, 0.0230738222599029541, 0.05683089420199394, 0.07829460501670837, 0, 0.31149959564208984, 0.30654868483543396, 0.3819516897201538, 0.04662158340215683, 0.08874092996120453, 0.0421193465590477, 0, 0, 0.01055500097572803497, 2.988882670251769e-06, 0.00010475356975803152,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 1, 1, 2, 1, 500, 0.00416250666603446, 0.6753503084182739, 0.12453463673591614, 2.9584689140319824, 1.0000004768371582, 3.582185672712512e-05, 1.19930409709922969e-05, 0.08325012773275375, 0.12420248240232468, 0.08486519008874893, 0.004756688140332699, 0, 0.021114422008395195, 0.012606550008058548, 0.0230738222599029541, 0.05683089420199394, 0.07829460501670837, 0, 0.31149959564208984, 0.30654868483543396, 0.3819516897201538, 0.04662158340215683, 0.08874092996120453, 0.0421193465590477, 0, 0, 0.01055500097572803497, 2.9888828976254445e-06, 0.00010475356975803152,
)
---
# `mod_BiomeE_PLULUC_secondary_oac_yr2`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 2, 1, 2, 1, 494.7225036621094, 0.005111239850521088, 0.7799178957939148, 0.104567594826221466, 3.1792666912078857, 0x1.fffea4p+0, 4.777356298291124403e-05, 1.19517062557861209e-05, 0.10331528633832932, 0.19689592719078064, 0.10555817931890488, 0.003693532897159457, 0, 0.03347230702638626, 0.019984934478998184, 0.04077288135886192, 0.07049454003572464, 0.07588209211826324, 0, 0.23575858771800995, 0.3509331941604614, 0.4133082330226898, 0.0965750366449356079, 0.1391470581293106, 0.0425720252096653, 0, 0, 0.0106887686997652054, 2.6899847398453858e-06, 0.00014292488049250096,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 2, 1, 2, 1, 494.7225036621094, 0.005111239850521088, 0.7799178957939148, 0.104567594826221466, 3.1792666912078857, 0x1.fffea4p+0, 4.777356298291124403e-05, 1.19517062557861209e-05, 0.10331528633832932, 0.19689592719078064, 0.10555817931890488, 0.003693532897159457, 0, 0.03347230702638626, 0.019984934478998184, 0.04077288135886192, 0.07049454003572464, 0.07588209211826324, 0, 0.23575858771800995, 0.3509331941604614, 0.4133082330226898, 0.0965750366449356079, 0.1391470581293106, 0.0425720252096653, 0, 0, 0.0106887686997652054, 2.6899845124717103e-06, 0.0001429248950444162,
)
---
# `mod_BiomeE_PLULUC_secondary_oac_yr251`:
tibble::tribble(
- ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~NSN, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
- 251, 453, 2, 1, 6204.3603515625, 0.7810415029525757, 4.129751205444336, 0x1.f7454ep-3, 7.3158440589904785, 0x1.9c79d4p+4, 0.0013394845882430673, 0.00015466718468815088, 1.2588590383529663, 3.964414358139038, 2.396291971206665, 0.06240111216902733, 0.07521174848079681, 0.6739504337310791, 0.4023880362510681, 3.0446815490722656, 2.099076271057129, 1.4398752450942993164, 0.05223490670323372, 0.1331024169921875, 0.34454840421676636, 0.47011426091194153, 1.6745381355285645, 2.48441481590271, 0.8098766207695007, 0.026983819901943207, 0, 0.018392393365502357, 0.0011698165908455849, 0.09918248653411865234,
- 251, 397, 2, 1, 149.4190673828125, 0.24800780415534973, 23.04864501953125, 0.424426794052124, 17.283241271972656, 79.71361541748047, 0.041723497211933136, 0.00152247771620750427, 16.59813690185547, 52.280128479003906, 38.35758590698242, 0.8203319907188416, 1.2478489875793457, 8.887621879577637, 5.306432247161865, 158.8809356689453, 109.49272918701172, 20.950157165527344, 0.05956275016069412, 0.0977684110403060913, 0.30660390853881836, 0.5360649228096008, 22.047210693359375, 33.81137466430664, 11.764163970947266, 0.3118915557861328, 0, 0.12065424770116806, 0.0034885844215750694, 0.5808152556419373,
- 251, 405, 2, 1, 53.25290298461914, 0.04820975288748741, 15.386279106140137, 0x1.85289cp-2, 14.12112522125244140625, 79.713623046875, 0.018593326210975647, 0.00090715847909450531, 9.05298137664795, 28.51395606994629, 20.331804275512695, 0.447465121746063232, 0.658007025718689, 4.847372531890869, 2.8941659927368164, 62.71681594848633, 43.22385787963867, 11.25114917755127, 0.0584835410118103, 0.10287997126579285, 0.3122848868370056, 0.5263516306877136, 12.039875030517578, 18.3539142608642578125, 6.3140387535095215, 0.17348730564117432, 0, 0.07035320997238159, 0.0003517267759889364, 0.05045504495501518,
- 251, 451, 2, 2, 1829.462158203125, 0.16942259669303894, 3.365408182144165, 0.06579309701919556, 6.604217529296875, 0x1.9c79d4p+4, 0.0008895398350432515, 3.4440658055245876e-05, 0.9260786771774292, 1.4584969282150269, 0.2834637463092804, 0.02289552241563797, 0.013700264506042004, 0.24794448912143707, 0.14803743362426758, 0.97800147533416748, 2.234492301940918, 0.33076006174087524, 0.041420552879571915, 0.0548718124628067, 0.4725313782691955566, 0.43117621541023254, 0.06103000044822693, 0.23660095036029816, 0.17557094991207123, 0.0013176801148802042, 0, 0.1553182750940323, 0.0011572293005883694, 0.11097833514213562,
- 251, 25, 2, 2, 38396.30078125, 0.12913672626018524, 0.36907342076301575, 0.02906501665711403, 2.1870508193969727, 2.8104190826416016, 1.069831705535762e-05, 1.618665010028053e-06, 0.03363259881734848, 0.036316920071840286, 0.005760271102190018, 0.001885378616861999, 0, 0.006173876579850912, 0.003686167299747467, 0.00418661767616868, 0.015720801427960396, 0.01059649046510458, 0, 0.3130168914794922, 0.36398011445999146, 0.32300296425819397, 0.0004636221565306186676, 0.006155370734632015, 0.0056917485781013966, 0, 0, 0.35191845893859863, 0.0028925088699907064, 0.04800637438893318,
+ ~year, ~cID, ~PFT, ~layer, ~density, ~flayer, ~DBH, ~dDBH, ~height, ~age, ~BA, ~dBA, ~Acrown, ~Aleaf, ~NSC, ~NSN, ~seedC, ~leafC, ~rootC, ~sapwoodC, ~heartwoodC, ~treeG, ~fseed, ~fleaf, ~froot, ~fwood, ~NPP, ~GPP, ~Rauto, ~N_uptk, ~N_fxed, ~deathrate, ~n_deadtrees, ~c_deadtrees,
+ 251, 455, 2, 1, 5124.67431640625, 0.8590739369392395, 4.998603343963623, 0.2641066908836365, 8.048720359802246, 28.889049530029297, 0.0019623988773673773, 0.00020189268980175257, 1.676348328590393, 5.279326915740967, 3.2956535816192627, 0.08298370242118835, 0.10407055169343948, 0.8974855542182922, 0.5358515977859497, 4.723679065704346, 3.2564055919647217, 1.9469146728515625, 0.053454089909791946, 0.12709692120552063, 0.3383618891239166, 0.4810870885848999, 2.231410026550293, 3.3257267475128174, 1.0943166017532349, 0.03522283211350441, 0, 0.021175656467676163, 0.001517367665655911, 0.13904614746570587,
+ 251, 389, 2, 1, 0x1.c16fe2p+6, 0x1.9406d4p-3, 23.928747177124023, 0.428617000579834, 17.610126495361328, 81.28556060791016, 0.044970717281103134, 0.00159662216901779175, 17.557844161987305, 55.30308532714844, 40.66675567626953, 0.8710535764694214, 1.323513150215149, 0x1.2cd94ap+3, 5.613262176513672, 173.18252563476562, 119.34809112548828, 22.188785552978516, 0.05964783951640129, 0.09736574441194534, 0.30615586042404175, 0.5368305444717407, 23.319122314453125, 35.779937744140625, 12.4608154296875, 0.33270448446273804, 0, 0.12705229222774506, 0.0029623431619256735, 0x1.fef48ap-2,
+ 251, 399, 2, 1, 12.439401626586914, 0.016609545797109604, 19.936304092407227, 0.40833204984664916992, 16.074031829833984, 81.28556060791016, 0.03121614083647728, 0.0012656357139348984, 13.35236644744873, 42.05636215209961, 0x1.e921acp+4, 0.6624674201011658, 0.99284225702285766602, 7.1495819091796875, 4.268720626831055, 113.80635833740234, 78.43113708496094, 16.76796531677246, 0.05921065807342529, 0.09943494200706482, 0.3084583580493927, 0.5328960418701172, 17.74413299560547, 27.1571006774902344, 9.41296672821045, 0.25519731640815735, 0, 0.09901577234268188, 0.00018365761206950992, 0.0289718974381685257,
+ 251, 453, 2, 2, 1566.603759765625, 0x1.8183e2p-3, 4.003508567810059, 0.06012283265590668, 7.2031569480896, 28.889049530029297, 0.0012588424142450094, 3.7525431253015995e-05, 1.20157909393310547, 1.892412781715393, 0.31550008058547974, 0.029825709760189056, 0.00653378339484334, 0.32171016931533813, 0.19207987189292908, 1.45804977416992188, 3.331218719482422, 0.404863536357879639, 0.016138236969709396, 0.0700625404715538, 0.509186863899231, 0.40461236238479614, 0.08644148707389832, 0.30809348821640015, 0.22165200114250183, 0.0025137965567409992, 0, 0.13480740785598755, 0.001144086360000074, 0.1187962144613266,
+ 251, 421, 2, 2, 37557.25390625, 0.12619291245937347, 0.3688359558582306, 0.029517803341150284, 2.186347246170044, 2.853191375732422, 1.0684554581530392e-05, 1.64172979566501454e-06, 0.03360014408826828, 0.0362829752266407, 0.005882830824702978, 0.00187900231685489416, 1.3153884310668218e-06, 0.006168106105178595, 0.003682721871882677, 0.004180552437901497, 0.0156974196434021, 0.0106762479990720749, 0.0001232069917023182, 0.3160233199596405, 0.3588232696056366, 0.32503026723861694, 0x1.ecec8p-12, 0.0062018814496695995, 0.005731792654842138, 0, 0, 0.3519395589828491, 0.0028207730501890182, 0.04707277938723564,
)
diff --git a/tests/testthat/test-likelihoods.R b/tests/testthat/test-likelihoods.R
index 0d56dab1..d6fabba7 100644
--- a/tests/testthat/test-likelihoods.R
+++ b/tests/testthat/test-likelihoods.R
@@ -224,10 +224,10 @@ test_that("test likelihood/RMSE calculations with BiomeE", {
object = ll_values_BiomeE,
# expected was generated with dput(ll_values_BiomeE)
expected = c(
- -2.0202778978475,
- -2.23976808695674,
- -1.24193195159227,
- -0.369097633033684
+ -2.02027894468839,
+ -2.23984006032623,
+ -1.24288380465158,
+ -0.148583685865043
)
)
@@ -245,10 +245,10 @@ test_that("test likelihood/RMSE calculations with BiomeE", {
# expected was generated with dput(relError_values_BiomeE)
# NOTE: these errors are relative Errors, not RMSE:
expected = c(
- 0.42976158393698,
- 0.168135096963972,
- 0.152359273844623,
- 0.316205527799935
+ 0.42319465388334,
+ 0.173181789582608,
+ 0.156075369906904,
+ 0.305270986201647
)
)
})
diff --git a/tests/testthat/test-model-runs.R b/tests/testthat/test-model-runs.R
index 192f6566..772ec1da 100644
--- a/tests/testthat/test-model-runs.R
+++ b/tests/testthat/test-model-runs.R
@@ -61,7 +61,7 @@ test_that("biomee output check (gs leuning)", {
expect_true(all.equal(colMeans(out$data[[1]]$output_daily_tile), colMeans(biomee_gs_leuning_output$data[[1]]$output_daily_tile), tolerance = 1e-4))
expect_true(all.equal(colMeans(out$data[[1]]$output_annual_tile), colMeans(biomee_gs_leuning_output$data[[1]]$output_annual_tile), tolerance = 1e-4))
- expect_true(all.equal(colMeans(out$data[[1]]$output_annual_cohorts), colMeans(biomee_gs_leuning_output$data[[1]]$output_annual_cohorts), tolerance = 1e-4))
+ expect_true(all.equal(colMeans(out$data[[1]]$output_annual_cohorts), colMeans(biomee_gs_leuning_output$data[[1]]$output_annual_cohorts), tolerance = 1e-3))
expect_equal(out, rsofun::biomee_gs_leuning_output, tolerance = 0.08) # NOTE: since Biomee is sensitive, feel free to deactivate this line if it does not pass