- replicate_exdf
An exdf object representing one CO2 response curve.
- fit_options
A list of named elements representing fit options to use for each parameter.
Values supplied here override the default values (see details below). Each
element must be 'fit', 'column', or a numeric value. A value
of 'fit' means that the parameter will be fit; a value of
'column' means that the value of the parameter will be taken from a
column in replicate_exdf of the same name; and a numeric value means
that the parameter will be set to that value. For example,
fit_options = list(RL_at_25 = 0, Vcmax_at_25 = 'fit',
Vpmax_at_25 = 'column') means that RL_at_25 will be set to 0,
Vcmax_at_25 will be fit, and Vpmax_at_25 will be set to the
values in the Vpmax_at_25 column of replicate_exdf.
- sd_A
The standard deviation of the measured values of the net CO2 assimilation
rate, expressed in units of micromol m^(-2) s^(-1). If
sd_A is not a number, then there must be a column in exdf_obj
called sd_A with appropriate units. A numeric value supplied here
will overwrite the values in the sd_A column of exdf_obj if it
exists.
- x_etr
The fraction of whole-chain electron transport occurring in the mesophyll
(dimensionless). See Equation 29 from S. von Caemmerer (2021).
- a_column_name
The name of the column in replicate_exdf that contains the net
assimilation in micromol m^(-2) s^(-1).
- ao_column_name
The name of the column in replicate_exdf that contains the
dimensionless ratio of solubility and diffusivity of O2 to CO2.
- ci_column_name
The name of the column in replicate_exdf that contains the
intercellular CO2 concentration in micromol mol^(-1).
- gamma_star_column_name
The name of the column in replicate_exdf that contains the
dimensionless gamma_star values.
- gmc_norm_column_name
The name of the column in replicate_exdf that contains the normalized
mesophyll conductance values (with units of
normalized to gmc at 25 degrees C).
- j_norm_column_name
The name of the column in exdf_obj that contains the normalized
J values (with units of normalized to J at 25 degrees C).
- kc_column_name
The name of the column in replicate_exdf that contains the
Michaelis-Menten constant for rubisco carboxylation in microbar.
- ko_column_name
The name of the column in replicate_exdf that contains the
Michaelis-Menten constant for rubisco oxygenation in mbar.
- kp_column_name
The name of the column in replicate_exdf that contains the
Michaelis-Menten constant for PEP carboxylase carboxylation in
microbar.
- oxygen_column_name
The name of the column in exdf_obj that contains the concentration
of O2 in the ambient air, expressed as a percentage (commonly 21% or 2%);
the units must be percent.
- rl_norm_column_name
The name of the column in replicate_exdf that contains the normalized
RL values (with units of normalized to RL at 25 degrees C).
- total_pressure_column_name
The name of the column in exdf_obj that contains the total pressure
in bar.
- vcmax_norm_column_name
The name of the column in replicate_exdf that contains the normalized
Vcmax values (with units of
normalized to Vcmax at 25 degrees C).
- vpmax_norm_column_name
The name of the column in replicate_exdf that contains the normalized
Vpmax values (with units of
normalized to Vpmax at 25 degrees C).
- hard_constraints
To be passed to calculate_c4_assimilation; see that function
for more details.
- debug_mode
A logical (TRUE or FALSE) variable indicating whether to
operate in debug mode. In debug mode, information about the guess is
printed each time the error function is called; this can be helpful when
troubleshooting issues with an optimizer.