Skip to main content

Perform calibration for simple climate models

Project description

scmcallib is a tool to make it easy to derive parameter sets for Simple Climate Models (SCMs). At the moment, the two focus use cases are:

  • “emulation” of other, typically more complex and computationally expensive models

  • “calibration” to observations i.e. the derivation of parameter sets which allow the SCM response to span the range of uncertainty of historical observations

This package fits into a wider ecosystem of tools which are aiming to create a transparent and reproducible way of generating parameter sets for a wide range of SCMs, observations and climate model outputs in a number of use cases. scmcallib uses scmdata and netcdf-scm to make it easy to interface to a range of SCMs and climate model output, hiding the complexity of running these ‘simple’ climate models and processing complex model output.

Getting Started

A number of the libraries used in scmcallib require compiled libraries and other system dependencies. To make it easier to get started with this project it is recommended to set up a new Conda environment to isolate these libraries. As this package is not currently installable via pypi, you have to install it from source.

$ git clone git://gitlab.com/magicc/scmcallib
$ cd scmcallib
$ conda env create --name scmcallib --file environment.yml
$ conda activate scmcallib
$ pip install -e .

Having installed, the scmcallib package is ready to generate parameter sets.

Emulation

Emulation is the process of finding a set of parameters which best fit output from another model. Once this best fit point in parameter space has been found, the SCM provides a computationally cheap method for exploring how the these larger models would respond under various scenarios.

TODO: Add documention about extracting

Before we can start emulating a model we must define the initial guess of the parameter distributions (i.e. the priors), for the parameters that are being constrained.

[TODO: decide whether to put this example in e.g. a notebook so it’s under CI]

from scmcallib import ParameterSet

best_guess_c1 = 0.631
best_guess_c2 = 0.429
best_guess_a1 = 0.2240

param_set = ParameterSet()
param_set.set_tune('c1', Bound(Normal(mu=best_guess_c1, sd=1.), lower=0.1))
param_set.set_tune('c2', Bound(Normal(mu=best_guess_c2, sd=0.1), lower=0.1))
param_set.set_tune('a1', Bound(Normal(mu=best_guess_a1, sd=0.1), lower=0.0, upper=0.4))

Once we have the data and parameters which describe how the model will be constrained, we can instantiate the PointEstimateFinder. In this example we are using the A5IR SCM [TODO: fill out AR5IR SCM so it actually is the full things], a basic, but very fast model to speed up to emulation process. The first step in emulation is finding the initial starting point for optimisation. This start point is then used by the optimiser to find the point in parameter space which minimise the differences between the SCM output and the target timeseries (typically taken from a more complex model).

from scmcallib import PointEstimateFinder
from scmcallib.scm import AR5IR_SCM
emulator = PointEstimateFinder(param_set, reference_period=(2000, 2010))
emulator.set_target(observed=observed_gmt)

with AR5IR_SCM() as scm:
    results = emulator.find_best_fit(scm, optimiser_name='bayesopt')

results.plot_summary()
results.plot_fit()

scmcallib provides a method for reading tuningcore files which are used by simcap to describe how to tune magicc.

Calibration

Run simple calibration example

  • edit calibration.py and run_calibration.py to fit your personal settings

  • then run python run_calibration.py

  • visualise with notebooks/show_calibration.ipynb

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

scmcallib-0.4.0a2.tar.gz (74.5 kB view details)

Uploaded Source

Built Distribution

scmcallib-0.4.0a2-py2.py3-none-any.whl (54.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file scmcallib-0.4.0a2.tar.gz.

File metadata

  • Download URL: scmcallib-0.4.0a2.tar.gz
  • Upload date:
  • Size: 74.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0.post20191029 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.3

File hashes

Hashes for scmcallib-0.4.0a2.tar.gz
Algorithm Hash digest
SHA256 1c6ac29bc1f8fd7f58d6555c71e4b5306098cf263b21cd8eb94c2f868aa8ed22
MD5 13f6f50d339f3797a00ef86fa02af7e4
BLAKE2b-256 318205e7100895c72f4bec281c2886f3e52c2a6bb54574bc5c32c03218273932

See more details on using hashes here.

File details

Details for the file scmcallib-0.4.0a2-py2.py3-none-any.whl.

File metadata

  • Download URL: scmcallib-0.4.0a2-py2.py3-none-any.whl
  • Upload date:
  • Size: 54.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0.post20191029 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.3

File hashes

Hashes for scmcallib-0.4.0a2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 4cc2ab0bf6055e73dbc5c690bf5de54750379b86d385a436cf79591db0e7cda8
MD5 3c3910853bd1505c7faa1f0c7cca9ea3
BLAKE2b-256 8eb7ce857b6b7430917dafd5fa04e1500cb8d7d027198fa199e15a010fb358d0

See more details on using hashes here.

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