/MPyDATA

Numba-accelerated Pythonic implementation of MPDATA with Jupyter examples

Primary LanguageJupyter NotebookGNU General Public License v3.0GPL-3.0

Build Status Coverage Status

MPyDATA

MPyDATA is a high-performance Numba-accelerated Pythonic implementation of the MPDATA algorithm of Smolarkiewicz et al. for numerically solving generalised transport equations - partial differential equations used to model conservation/balance laws, scalar-transport problems, convection-diffusion phenomena (in geophysical fluid dynamics and beyond). As of the current (early) version, MPyDATA supports homogeneous transport in 1D and 2D using structured meshes, optionally generalised by employment of a Jacobian of coordinate transformation. MPyDATA includes implementation of a set of MPDATA variants including flux-corrected transport (FCT), infinite-gauge, divergent-flow and third-order-terms options. It also features support for integration of Fickian-terms in advection-diffusion problems using the pseudo-transport velocity approach. No domain-decomposition parallelism supported yet.

MPyDATA is engineered purely in Python targeting both performance and usability, the latter encompassing research users', developers' and maintainers' perspectives. From researcher's perspective, MPyDATA offers hassle-free installation on multitude of platforms including Linux, OSX and Windows, and eliminates compilation stage from the perspective of the user. From developers' and maintainers' perspective, MPyDATA offers wide unit-test coverage, multi-platform continuous integration setup, seamless integration with Python debugging and profiling tools, and robust susceptibility to static code analysis within integrated development environments.

MPyDATA design features a custom-built multi-dimensional Arakawa-C grid layer allowing to concisely represent multi-dimensional stencil operations. The grid layer is built on top of NumPy's ndarrays using Numba's @njit functionality and has been carefully profiled for performance. It enables one to code once for multiple dimensions, and automatically handles (and hides from the user) any halo-filling logic related with boundary conditions.

MPyDATA ships with a set of examples/demos offered as github-hosted Jupyer notebooks offering single-click deployment in the cloud using mybinder.org. The examples/demos reproduce results from several published works on MPDATA and its applications, and provide a validation of the implementation and its performance.

Dependencies and installation

MPyDATA has Python-only dependencies, all available through PyPi and listed in the project's requirements.txt file.

The stringest constraint is likely the requirement of Numba 0.49 (released in April 2020).

To install MPyDATA, one may use:

pip3 install --pre git+https://github.com/atmos-cloud-sim-uj/MPyDATA.git

Examples/Demos:

MPyDATA ships with several demos that reproduce results from the literature, including:

  • Smolarkiewicz 2006 Figs 3,4,10,11 & 12 Binder
    (1D homogeneous cases depicting infinite-gauge and flux-corrected transport cases)
  • Arabas & Farhat 2020 Figs 1-3 & Tab. 1 Binder
    (1D advection-diffusion example based on Black-Scholes equation)
  • Olesik, Bartman et al. 2020 (in preparation) Binder
    (1D particle population condensational growth problem with coordinate transformations)
  • Molenkamp test (as in Jaruga et al. 2015, Fig. 12) Binder
    (2D solid-body rotation test)

Package structure and API:

MPyDATA is designed as a simple library in the spirit of "Do One Thing And Do It Well", namely to numerically solve the following equation:

\partial_t (G \psi) + \nabla \cdot (Gu \psi) = 0

where scalar field \psi is referred to as the advectee, vector field u is referred to as advector, and the G factor corresponds to optional coordinate transformation.

The key classes constituting the MPyDATA interface are summarised below:

Options class

The Options class groups both algorithm variant options as well as some implementation-related flags that need to be set at the first place. All are set at the time of instantiation using the following keyword arguments of the constructor (all having default values indicated below):

  • n_iters:int = 2: number of iterations (2 means upwind + one corrective iteration)
  • infinite_gauge: bool = False: flag enabling the infinite-gauge option (does not maintain sign of the advected field, thus in practice implies switching flux corrected transport on)
  • divergent_flow: bool = False: flag enabling divergent-flow terms when calculating antidiffusive velocity
  • flux_corrected_transport: bool = False: flag enabling flux-corrected transport (FCT) logic (a.k.a. non-oscillatory or monotone variant)
  • third_order_terms: bool = False: flag enabling third-order terms
  • epsilon: float = 1e-15: value added to potentially zero-valued denominators
  • non_zero_mu_coeff: bool = False: flag indicating if code for handling the Fickian term is to be optimised out

For a discussion of the above options, see e.g., Smolarkiewicz & Margolin 1998.

In most use cases of MPyDATA, the first thing to do is to instantiate the Options class with arguments suiting the problem at hand, e.g.:

from MPyDATA.options import Options
options = Options(n_iters=3, infinite_gauge=True, flux_corrected_transport=True)

Arakawa-C grid layer and boundary conditions

The arakawa_c subpackage contains modules implementing the Arakawa-C staggered grid in which:

  • scalar fields are discretised onto cell-center points,
  • vector fields are discretised onto cell-boundary points.

In MPyDATA, the solution domain is assumed to extend from the first cell's boundary to the last cell's boundary (thus first scalar field value is at [\Delta x/2, \Delta y/2]).

From the user perspective, the two key classes with their init methods are:

The data parameters are expected to be Numpy arrays or tuples of Numpy arrays, respectively. The halo parameter is the extent of ghost-cell region that will surround the data and will be used to implement boundary conditions. Its value (in practice 1 or 2) is dependent on maximal stencil extent for the MPDATA variant used and can be easily obtained using the Options.n_halo property.

As an example, the code below shows how to instantiate a scalar and a vector field given a 2D constant-velocity problem, using a grid of 100x100 points and cyclic boundary conditions (with all values set to zero):

from MPyDATA.arakawa_c.scalar_field import ScalarField
from MPyDATA.arakawa_c.vector_field import VectorField
from MPyDATA.arakawa_c.boundary_condition.cyclic import Cyclic
import numpy as np

nx, ny = 100, 100
halo = options.n_halo
advectee = ScalarField(
    data=np.zeros((nx, ny)), 
    halo=halo, 
    boundary_conditions=(Cyclic(), Cyclic())
)
advector = VectorField(
    data=(np.zeros((nx+1, ny)), np.zeros((nx, ny+1))),
    halo=halo,
    boundary_conditions=(Cyclic(), Cyclic())    
)

Note that the shapes of arrays representing components of the velocity field are different than the shape of the scalar field array due to employment of the staggered grid.

Besides the exemplified Cyclic class representing periodic boundary conditions, MPyDATA supports Extrapolated and Constant boundary conditions.

Stepper

The logic of the MPDATA iterative solver is represented in MPyDATA by the Stepper class.

When instantiating the Stepper, the user has a choice of either supplying just the number of dimensions or specialising the stepper for a given grid:

from MPyDATA.stepper import Stepper

stepper = Stepper(options=options, n_dims=2)

or

stepper = Stepper(options=options, grid=(nx, ny))

In the latter case, noticeably faster execution can be expected, however the resultant stepper is less versatile as bound to the given grid size. If number of dimensions is supplied only, the integration will take longer, yet same instance of the stepper can be used for different grids.

Since creating an instance of the Stepper class involves lengthy analysis and compilation of the algorithm code, the class is equipped with a cache logic - subsequent calls with same arguments return references to previously instantiated objects. Instances of Stepper contain no data and are (thread-)safe to be reused.

The init method of Stepper has an additional non_unit_g_factor argument which is a flag enabling handling of the G factor term which can be used to represent coordinate transformations.

Solver

Instances of the Solver class are used to control the integration and access solution data. During instantiation, additional memory required by the solver is allocated according to the options provided.

The only method of the Solver class besides the init is advance(self, nt: int, mu_coeff: float = 0) which advances the solution by nt timesteps, optionally taking into account a given value of diffusion coefficient.

Solution state is accessible through the Solver.curr property.

Continuing with the above code snippets, instantiating a solver and making one integration step looks as follows:

from MPyDATA.solver import Solver
solver = Solver(stepper=stepper, advectee=advectee, advector=advector)
solver.advance(nt=1)
state = solver.curr.get()

Factories

The methods grouped in the Factories class are meant to automate instantiation of steppers, scalar and vector fields. All factories take float numbers and Numpy arrays as arguments, and hide instantiation of ScalaField or VectorField from the user.

At present, the API of factories is not stable, hence it's best to look around the examples for actual usage examples.

Debugging

MPyDATA relies heavily on Numba to provide high-performance number crunching operations. Arguably, one of the key advantage of embracing Numba is that it can be easily switched off. This brings multiple-order-of-magnitude drop in performance, yet it also make the entire code of the library susceptible to interactive debugging, one way of enabling it is by setting the following environment variable:

import os
os.environ["NUMBA_DISABLE_JIT"] = "1"

Credits:

Development of MPyDATA is supported by the EU through a grant of the Foundation for Polish Science (POIR.04.04.00-00-5E1C/18).

copyright: Jagiellonian University
code licence: GPL v3
tutorials licence: CC-BY

Other open-source MPDATA implementations: