Recent Releases of BioCro
BioCro - BioCro 3.2.0
Minor User-Facing Changes
-
Added maintenance respiration for each organ in a new module called
BioCro:maintenance_respiration
. Maintenance respiration is modelled by removing a fraction of dry biomass. The fraction removed is determined by an organ-specific "maintenance respiration coefficient" (such asmrc_leaf
) and follows a Q10 temperature response. This differs from the existing growth respiration that is applied to the stem and root, and from a separate canopy growth respiration that can be used to rescale the canopy assimilation rate. -
Separated the specific leaf area (SLA) calculations from the
BioCro:parameter_calculator
module to enable alternate approaches to SLA. The original method is now available as theBioCro:sla_linear
module, and a new logistic method has been added:BioCro:sla_logistic
. The stored crop model definitions were updated to use the linear SLA module. -
Provided a new direct module for determining development index from thermal time:
BioCro:development_index_from_thermal_time
. This module is an alternative to theBioCro:thermal_time_development_rate_calculator
differential module. -
C3 temperature response parameters are no longer hard-coded into
c3photoC()
:-
There are now specialized structs for the temperature response parameters (
c3_temperature_response_parameters
) and the temperature-dependent values of key photosynthetic parameters (c3_param_at_tleaf
). -
There is also a dedicated function for calculating temperature-dependent parameter values:
c3_temperature_response()
. -
The temperature response parameters are now inputs to several modules:
BioCro:c3_assimilation
,BioCro:c3_canopy
,BioCro:c3_leaf_photosynthesis
. -
There is also a dedicated module for calculating values of C3 parameters at leaf temperature:
BioCro:c3_parameters
. -
The
theta
parameter was renamed totheta_0
for better consistency with thepolynomial_response()
function input argument names.
-
-
Added a new vignette explaining key features of BioCro's multilayer canopy model, and made several changes to
sunML()
and related functions to ensure that the code matches the model description in the vignette:-
Stopped calculating and using the "average" incident PPFD and absorbed shortwave radiation for leaves in the canopy.
-
Stopped using the "thick layer absorption" equation for determining the absorbed shortwave radiation within the canopy, replacing it with the thin layer absorption equation.
-
Used a simpler equation for calculating the fraction of sunlit leaves.
-
Used the same absorptivity value for direct and diffuse light.
-
Used separate leaf transmittance and reflectance values for PAR and NIR radiation within the canopy, rather than always assuming that light in the two bands are absorbed and scattered equally; in general, this caused a reduction in the absorbed shortwave energy for all leaves.
-
Started calculating absorptivity as
1 - R - T
, whereR
andT
are the leaf reflectance and transmittance coefficients, respectively. This ensures that the constraintA + R + T = 1
is always satisfied.
-
-
Made several changes to BioCro's time handling:
-
The
time
variable is now required to be sequential and evenly spaced, where the time interval must be equal totimestep
. A consequence is thattime
andtimestep
must have the same units. -
With this change, it was necessary to change the definition of
time
used with the crop models. Now it is expected to be expressed as the (fractional) number of hours since midnight on January 1, rather than a fractional day of year. -
There is a new module for calculating
doy
andhour
fromtime
, calledBioCro:format_time
. This module ensures thatdoy
always takes integer values in the output fromrun_biocro
. -
In most cases, old scripts calling
run_biocro
will continue to function following these changes becausetime
will be correctly computed fromdoy
andhour
, andBioCro:format_time
will be automatically added to module lists. -
The redefinition of
time
from days to hours may require changes to plotting commands or other operations usingtime
. In most cases, instances oftime
in old scripts can be replaced byfractional_doy
, which is equivalent to the definition oftime
used in previous versions of BioCro.
-
-
Added a new function for generating C++ header files for new module classes:
module_write
. -
Added several functions to help with model regression tests:
compare_model_output
,model_test_case
,run_model_test_cases
, andupdate_stored_model_results
. Previously, these were part oftests/testthat/crop_model_testing_helper_functions.R
. -
The conversion of CO2 assimilation to biomass is no longer hard coded into the photosynthesis functions and modules, such as
c3CanAC()
,CanAC()
, andBioCro:ten_layer_multilayer_canopy_integrator
.-
These functions and modules now produce canopy assimilation rates as molecular fluxes (with units of micromol CO2 / m^2 / s).
-
A new module called
BioCro:carbon_assimilation_to_biomass
now performs the conversion to rates of dry biomass acculumation (with units of Mg / ha / hr). A new parameterdry_biomass_per_carbon
controls the conversion. -
All affected models have the same behavior as before if the new module is used with
dry_biomass_per_carbon
set to 30.026 g / mol.
-
-
The
soybean
model was re-parameterized following changes to module behavior.
Other Changes
-
Consolidated all temperature response functions into a single header file (
src/module_library/temperature_response_functions.h
) that now includesarrhenius_exponential()
,Q10_temperature_response()
,johnson_eyring_williams_response()
, andpolynomial_response()
. -
The developer documentation was updated to include a section about pull requests.
Bug fixes
-
Fixed incorrect
year
column values in the weather data. -
Fixed a mistake where the CMI weather data for 2023 was a copy of the 2022 data.
-
The
ode_solver
input argument ofrun_biocro
is now checked to ensure the essential list elements are provided.
Biosphere - Plants and Vegetation
- C++
Published by eloch216 about 2 months ago

BioCro - BioCro 3.1.3
-
This is the first version of BioCro to be accepted by CRAN! Most of the changes since version 3.1.0 were needed to comply with CRAN policies and requirements.
-
Several changes have been made to reduce the package size from over 20 MB to less than 5 MB:
- Crop model regression tests only store 1 of every 24 rows (one time point from each day)
- The stored weather data has been rounded to 3 significant digits
- The
solar
values have been rounded to the nearest integer - The
rh
values have been rounded to 2 significant digits
- The
- The stored crop model regression test data has been rounded to 5 significant digits
- All previously-existing vignettes were converted to "web only," meaning they will be available through the pkgdown website but not included with the package itself
- A new vignette has been added (
BioCro.Rmd
) that simply redirects readers to the documentation website
-
Moved the included boost libraries from
inc
tosrc/inc
since CRAN will not allow a nonstandard top-level directory. Some paths were shortened during this move. -
Added the Boost organization to the authors as a copyright holder to comply with CRAN policies
-
Addressed a
missing-field-initializers
warning from the compiler by explicitly settingiterations
to 0 in the output fromrue_leaf_photosynthesis
-
Addressed a mistake in
thermal_time_and_frost_senescence.h
where the leaf death rate due to frost had been unintentionally set to 0 in all conditions. This mistake was caught by a compiler that reported a "ignoring return value of function declared with 'nodiscard' attribute" warning. -
Changed the minimum version of macOS checked by the R-CMD-check from 3.6.0 to 4.2.0
- CRAN now only provides R versions 4.1.0 and above for Mac
- The
deSolve
package cannot be built on Mac for R versions below 4.2.0
Biosphere - Plants and Vegetation
- C++
Published by eloch216 about 1 year ago

BioCro - BioCro 3.1.1
The package date in its DESCRIPTION file was updated to meet CRAN submission requirements (must be less than one month old)
Biosphere - Plants and Vegetation
- C++
Published by eloch216 about 1 year ago

BioCro - BioCro 3.1.0
MINOR USER-FACING CHANGES
-
Another bug was corrected in
src/module_library/c3photoC.cpp
: The photorespiration valueRp
is now calculated using the value ofCi
from the current loop iteration (rather than the previous loop iteration). -
Modified some testing-related functions so that warnings due to mismatched framework versions do not trigger test failures: the
tryCatch
call intest_module
now only catches errors (not warnings) when evaluating the module, andtest_plant_model
(incrop_model_testing_helper_functions.R
) now usesexpect_no_error
instead ofexpect_silent
. -
Changed the energy_par_content constant to 0.219. This is a conversion rate from photon flux density (in micromoles per square meter per second) to energy flux density (in joules per square meter per second or watts per square meter) for photosynthetically active radiation (PAR). It equals 1/4.57, 4.57 being a commonly used constant to convert PAR in W m^-2 to micromole m^-2 s^-1. Users should take care to ensure that if processing of radiation data is required to prepare it for use with BioCro, the same conversion factor is used. See more details in Plant Growth Chamber Handbook. CHAPTER 1 – RADIATION– John C. Sager and J. Craig McFarlane. Table 2, Pg 3 (https://www.controlledenvironments.org/wp-content/uploads/sites/6/2017/06/Ch01.pdf)
-
The C++ framework has been updated to v1.1.3. Since the framework is included as a git submodule, it will be necessary to use the
--recurse-submodule
flag when usinggit pull
,git checkout
, orgit switch
to update a local copy of the BioCro repository, or to move to or from this branch. -
Replaced the
inc/boost
directory with a submodule pointing to the newbiocro/boost
repository. -
The (unexported)
lightME
function has been removed from the R package, since its functionality can be reproduced using theBioCro:solar_position_michalsky
andBioCro:shortwave_atmospheric_scattering
modules.
OTHER CHANGES
-
All instances of
fabs
or unqualifiedabs
have been replaced bystd::abs
. The use of unqualifiedabs
insrc/module_library/c3photoC.cpp
had been causing test failures when running BioCro on Windows using R version 3.6.0. -
This version adds a description of the BioCro git branching model to
contribution_guidelines.Rmd
and clarifies the process of updatingNEWS.md
. -
The R-CMD-check workflow has been changed in the following ways:
-
When the check workflow is run manually, there are two new input options:
-
The user can now choose whether or not to run R CMD check with the --as-cran option. Formerly, this was always used.
-
The user can choose whether and when to throw an error on R CMD check failures. Formerly, an error was thrown whenever the R CMD check failure was either "warning" or "error".
-
-
Output that was formerly shown only on manual runs when the "debug" checkbox was selected is now always shown. The "debug" option has been changed to "dry-run", which results in the debug output being shown but the actual check, and those set-up steps needed only to carry out the check, are skipped.
-
The debug output steps are grouped together when possible, and the output is shown earlier on in the workflow.
-
The R-CMD-check workflow has been modified to work around a problem with testing R version 3.6.0 on Windows. And for all platforms, we now specify the tested minimum R version as 3.6.0 rather than simply 3.6 in order to ensure that we are actually testing the minimum required R version specified in the DESCRIPTION file, rather than some later 3.6.x version such as version 3.6.3.
-
-
Modified the R-CMD-check workflow so that the manual is not checked when the workflow runs automatically. This has also been made the default when the workflow is run manually.
-
GitHub workflows and actions in the repository have been updated to use the latest versions of all GitHub and 3rd-party actions.
-
Updates related to changing the GitHub hosting organization from "ebimodeling" to "biocro":
Most references to the ebimodeling GitHub organization have been removed; references to ebimodeling/biocro have been updated to point to biocro/biocro instead. Most of these occurred in various places in the documentation. Most links to the online documentation have been replaced with links to https://biocro.github.io, with (in some cases) instructions on how to navigate to the particular section of the documentation of interest. This decreases dependence on the precise layout of the online documentation. Some other changes and clarifications to the documentation have been made as well.
-
Addressed some
format-security
compiler warnings related to callingRf_error
andRprintf
without a format specifier; a format specifier of"%s"
should always be used when printing the value of a string variable.
Biosphere - Plants and Vegetation
- C++
Published by eloch216 about 1 year ago

BioCro - BioCro 3.0.2
This version adds several missing references to the main README file.
Biosphere - Plants and Vegetation
- C++
Published by eloch216 over 1 year ago

BioCro - BioCro 3.0.1
This is a patch release that changes the publication location for the documentation workflow. It also changes the workflow trigger so that publication of the latest documentation happens when a new release is published.
Biosphere - Plants and Vegetation
- C++
Published by gsrohde over 1 year ago

BioCro - BioCro 3.0.0
This version is another major update of the design. In this version, modules can be written in separate packages that communicate with the BioCro package. The design allows authors to write modules in separate repositories, so that anyone can write a module without forking all of BioCro. It will make publishing updates to the framework and individual models easier since there will be less need to identify and separate parts that are not ready to be made public.
Writing a module package involves setting up a repository using a template, or skeleton, package. This only needs to be done once for a repository. Then development within that repository can continue in a similar manner as has been done in the BioCro repository. The skeleton package and instructions for setting it up are here: https://github.com/biocro/skelBML.
Biosphere - Plants and Vegetation
- C++
Published by justinmcgrath over 1 year ago

BioCro - BioCro 2.0.0
This version is a major update to the design of BioCro. In this version, subsets of a model are called modules. The design attempts to meet the following goals.
Make it easier to reuse modules between species, such as the C3 photosynthesis modules for multiple species.
Swap related modules for comparison, for example comparing the Farquhar-vom Caemmerer-Berry model to a radiation use efficiency model.
Simplify parameter optimization and sensitivity analysis by providing an interface readily useable by common optimizers and similar functions.
More details can be found in the peer-reviewed publication in in silico Plants (https://doi.org/10.1093/insilicoplants/diac003) and in the "An introduction to BioCro" and "A practical guide to BioCro" vignettes included with the package.
Biosphere - Plants and Vegetation
- C++
Published by justinmcgrath about 3 years ago

BioCro - minor fix
Removes radiation from 0.95 threshold https://github.com/ebimodeling/biocro/issues/16
Biosphere - Plants and Vegetation
- C++
Published by dlebauer about 4 years ago

BioCro - Last release of old framework.
Biosphere - Plants and Vegetation
- C++
Published by justinmcgrath almost 8 years ago

BioCro - BioCro v0.93 Short Rotation Coppice Willow
This version of BioCro adds the simulation of Willow
Described in: Wang, Jaiswal, LeBauer, Wertin, Bollero, Leakey, and Long 2015 A physiological and biophysical model of coppice willow (Salix spp.) production yields for the contiguous USA in current and future climate scenarios. Plant, Cell and Environment 38, 1850–1865 doi: 10.1111/pce.12556
Please also cite use of BioCro v 0.93 as
Fernando Miguez, Deepak Jaiswal, David LeBauer, Dan Wang, & Stephen Long (2015, March 5). BioCro: v 0.93 Short Rotation Coppice Willow. Zenodo. http://doi.org/10.5281/zenodo.15859
Biosphere - Plants and Vegetation
- C++
Published by dlebauer about 10 years ago
