Example models (biomass.models)

biomass.models contains sample models and other scripts if you would prefer to learn how to use biomass by example. For details, please refer to https://biomass-core.readthedocs.io/en/latest/models.html.

biomass.models._copy.copy_to_current(model_name)

Copy an example model to the current working directory.

To execute example models in your machine, please follow these steps:

>>> from biomass import create_model
>>> from biomass.models import copy_to_current
>>> copy_to_current('XXX')
>>> model = create_model('XXX')
Parameters:

model_name (str) – Name of the example model.

Return type:

None