View source: R/model_testing.R
model_test_case | R Documentation |
BioCro models can be tested using test cases, which are sets of known outputs
that correspond to particular inputs. The model_test_case
function
defines such a test case.
Note that model tests are distinct from the module tests
described in module_testing
.
model_test_case(
test_case_name,
model_definition,
drivers,
check_outputs,
directory = '.',
quantities_to_ignore = character(),
row_interval = 24,
digits = 5,
relative_tolerance = 1e-3
)
test_case_name |
A string describing the test case. |
model_definition |
A list defining a model, as described in the documentation for
|
drivers |
A set of drivers to be passed to |
check_outputs |
A logical value indicating whether to compare the simulation output against a stored result. |
directory |
A relative or absolute path to a directory containing a stored simulation
result. Only used when |
quantities_to_ignore |
A character vector of any quantities that should not be compared against the
stored results. Only used when |
row_interval |
Determines which rows are saved and compared when using
|
digits |
Passed to |
relative_tolerance |
A relative tolerance to be used when comparing new values against stored
ones. This value will be passed to |
The model_test_case
function forms the basis for the BioCro model
testing system. See model_testing
for more information.
With the default settings:
Every 24 rows of the simulation output will be stored and compared. When using drivers with an hourly time step, this corresponds to one row for each day.
Values in the stored simulation results will be rounded to five significant digits. This reduces the size of the stored result file.
The value of the relative tolerance was chosen to be the smallest value that enabled the tests to pass on all operating systems.
These default settings have proven useful for the BioCro
miscanthus_x_giganteus
, willow
, and
soybean
models.
A list that defines a model test case, which can be passed to
update_stored_model_results
, compare_model_output
,
or run_model_test_cases
.
model_testing
crop_model_definitions
update_stored_model_results
compare_model_output
run_model_test_cases
# Define a test case for the miscanthus model
miscanthus_test_case <- model_test_case(
'miscanthus_x_giganteus',
miscanthus_x_giganteus,
get_growing_season_climate(weather$'2005'),
TRUE,
tempdir(),
'soil_evaporation_rate'
)
# The result is a specially formatted list
str(miscanthus_test_case)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.