Skip to main content

MIMOSA: Integrated Assessment Model for Cost-Benefit Analysis

Project description

MIMOSA: Mathematical Integrated Model for Optimal and Stylised Assessment

MIMOSA is a recent simple IAM based on FAIR, with 26 regions covering the whole world. It is a relatively simple Cost-Benefit IAM but still covers the relevant technological and socio-economic dynamics. Temperature is a linear function of cumulative CO2 emissions. MIMOSA uses the DICE sea-level rise module. The mitigation costs, population, initial capital stock and baseline GDP and CO2 emissions are regional. The direct regional mitigation costs are calculated as area under the Marginal Abatement Cost (MAC) curve, and have been calibrated to the IPCC AR6 WGIII database.

General

The model is written in the Python optimisation package Pyomo. It is mainly an AbstractModel (object containing all the variables, parameters and constraints, without the actual data values), which is then transformed into a ConcreteModel by putting all the parameter values in it. This ConcreteModel is sent to the solver (IPOPT, an open-source large-scale nonlinear optimisation suite).

Structure

Data

The parameter values are defined in the config.yaml file in the input directory, and for region- and component-specific parameters in:

The baseline emissions, baseline GDP (for calculation of Total Factor Productivity) and population data is read in IIASA database format. By default, the IMAGE data of inputdata/data/data_IMAGE_SSP.csv is used.

The config parameter values and the input data are combined with the AbstractModel to create the ConcreteModel in model/concrete_model/instantiate_params.py.

The main file of the model, where concrete model is created and the model is solved, is model/mimosa.py.

Running the model

The simplest way to run the model is shown in run.py. You can change parameter values by either editing the config.yaml file, or by updating the params variable (which is simply a Python dictionary containing the config.yaml data).

from mimosa.model.mimosa import MIMOSA

from mimosa.model.common.config import parseconfig

params = parseconfig.load_params()
params["emissions"]["carbonbudget"] = False

model1 = MIMOSA(params)
model1.solve()
model1.save("run1")

With IPOPT installed locally

By default, this requires the optimisation package ipopt to be installed. The easiest way is to install it using

conda install -c conda-forge ipopt

However, this sometimes fails on Windows. To fix it, go to https://www.coin-or.org/download/binary/Ipopt/ and download the latest win64-version. Unzip the files. A subfolder bin should contain the file ipopt.exe. The next step is to add this folder to your PATH environment: Windows > Edit the system environment variables > Environment variables... > Select "Path" and click Edit... > Click New and browse to the folder you just unzipped. Make sure to select the bin subfolder as this folder contains the file ipopt.exe.

Using the NEOS server

Even easier than installing IPOPT is by using the NEOS server: https://neos-server.org. The MIMOSA runs are then optimised on a remote server from the US optimisation community NEOS. On their website, sign up for a free account. You can then run MIMOSA with NEOS enabled by providing it with the email address you used to sign up for NEOS:

from mimosa.model.mimosa import MIMOSA

from mimosa.model.common.config import parseconfig

params = parseconfig.load_params()
params["emissions"]["carbonbudget"] = False

model1 = MIMOSA(params)
model1.solve(use_neos=True, neos_email="your.email@email.com")
model1.save("run1")

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

mimosa-0.1.1.tar.gz (312.6 kB view hashes)

Uploaded Source

Built Distribution

mimosa-0.1.1-py3-none-any.whl (364.7 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