Skip to main content

Network-based ecosystem Modelling Framework

Project description

NEMF: network-based ecosystem modeling framework


build & publish Documentation Status

NEMF is a ecosystem modelling framework written in python. It is designed to offer an easy to use method for modelling ecosystems with low- to intermediate complexity.
The framework offers the functionality to handle non-equilibrium, non-linear interactions. For the typical use-cases, user do need to write any code but only provide a model configuration. The use-cases can easily be extended with simple user written functions without needing to change any of the framework code.
The framework offers an easy to use method that fits any parameter of the model to mimic the studied system. For simplicity, the current version of the framework is limited to non-spatially resolved models (box-models).

A detailed introduction and many more resources can be found at: nemf.readthedocs.io

Installation

The package can be installed using pythons integrated package manager pip.

pip install nemf

For a detailed description how it can be installed, see install notes

Quick Start

See examples.py. For a set of exemplary framework configurations see configuration_files

Usage

import nemf as 

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

# To draw a graph visualizing the model configuration:
nemf.interaction_graph(model)

# To solve the time integration of this model call:
forward_results = nemf.forward_model(model)
# To also solve the inverse problem as defined in the configuration, call:
inverse_results = nemf.inverse_model(model)

# To plot the results call 
nemf.plot.output_summary(inverse_results)

For details on the yaml configuration file, see yaml documentation
The presented functions offer many (crucial) options, which are discussed in the documentation.

How does it work?

For a conceptual description of the internals of this library, see model concept

Example

A simple example might be a simple NPZD model as presented below: interaction graph

The user needs to define the compartments and interactions between them. If the model should be fitted, they also need to provide some constraints and some data to fit it to.
After that the model automatically generates a graph to visualize the system and to find potential errors in the configuration.

Once the model is configured the framework handles the time integration as well as the fitting without any further required user-interaction.

The results of such a run might then look like the following: exemplary results

Top left shows the cost of the current model configuration. The cost is a quadratic measure of distance of the current model to the desired model. Top right shows a output of the model after it reached its steady state for every parameter set tested. Bottom left shows the all tested parameters sets. Bottom right shows the full model output of the best fitted model found.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nemf-0.3.4.tar.gz (24.1 kB view hashes)

Uploaded Source

Built Distribution

nemf-0.3.4-py3-none-any.whl (26.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page