465b / nemf

A novel three step network-based general ecosystem modeling framework
BSD 3-Clause "New" or "Revised" License
3 stars 0 forks source link

restructure user-faced functions #33

Closed 465b closed 4 years ago

465b commented 4 years ago

import gemf as

# A model configuration is defined in a yaml file. To read this file:
model_config = gemf.load_configuration('path/to/model_configuration.yml')

# To solve the time integration of this model call:
forward_results = gemf.run_forward_model(model_config)
# To also solve the inverse problem as defined in the configuration, call:
inverse_results = gemf.run_inverse_model(model_config)

# To plot the results call 
gemf.plot_results_summary(inverse_results)