regional-mom6


Nameregional-mom6 JSON
Version 0.6.2 PyPI version JSON
download
home_pageNone
SummaryAutomatic generation of regional configurations for Modular Ocean Model v6
upload_time2024-10-03 07:47:45
maintainerNone
docs_urlNone
authorCOSIMA community and outside contributors
requires_pythonNone
licenseNone
keywords mom6 regional ocean modeling python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # regional-mom6

*Python package for automatic generation of regional configurations for the [Modular Ocean Model version 6](https://github.com/mom-ocean/MOM6) (MOM6)*

[![Repo status](https://www.repostatus.org/badges/latest/active.svg?style=flat-square)](https://www.repostatus.org/#active)
[![conda forge](https://img.shields.io/conda/vn/conda-forge/regional-mom6.svg)](https://anaconda.org/conda-forge/regional-mom6)
[![pypi](https://badge.fury.io/py/regional-mom6.svg)](https://badge.fury.io/py/regional-mom6)
[![Documentation Status](https://readthedocs.org/projects/regional-mom6/badge/?version=latest)](https://regional-mom6.readthedocs.io/en/latest/?badge=latest)

[![License](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](https://mit-license.org)
[![codecov](https://codecov.io/gh/COSIMA/regional-mom6/branch/main/graph/badge.svg?token=7OEZ1UZRY4)](https://codecov.io/gh/COSIMA/regional-mom6)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

[![status](https://joss.theoj.org/papers/d396435c09aae4c2f4b62cdbc1493c1e/status.svg)](https://joss.theoj.org/papers/d396435c09aae4c2f4b62cdbc1493c1e)

Users just need to provide some information about where, when, and how big their domain is and also where raw input forcing files are. The package sorts out all the boring details and creates a set of MOM6-friendly input files along with setup directories ready to go! 

The idea behind this package is that it should let the user sidestep some of the tricky issues with getting the model to run in the first place. This removes some of the steep learning curve for people new to working with MOM6. Note that the resultant model configuration might still need some tweaking (e.g., fiddling with timestep to avoid CFL-related numerical stability issues or fiddling with bathymetry to deal with very narrow fjords or channels that may exist).


## Features

- Automatic grid generation at chosen vertical and horizontal grid spacing.
- Automatic removal of non-advective cells from the bathymetry that cause the model to crash.
- Handle slicing across 'seams' in of the forcing input datasets (e.g., when the regional
  configuration includes longitude 180 and the forcing longitude is defined in [-180, 180]).
- Handles metadata encoding.
- Creates directory structure with the configuration files as expected by MOM6.
- Handles interpolation and interpretation of input data. No pre-processing of forcing datasets is required. (In some cases, slicing the forcing dataset before helps with hitting limitations related to the machine's available memory.)

## Limitations

- Only generates regional horizontal grids with uniform spacing in longitude and latitude.
  However, users can provide their own non-uniform grid, or ideally
  [open a pull request](https://github.com/COSIMA/regional-mom6/pulls) with a method that
  generates other types of horizontal grids.
- Only supports boundary segments that are parallel to either lines of constant longitude or
  lines of constant latitude.


## We want to hear from you

If you have any suggestions please feel free to open an [issue](https://github.com/COSIMA/regional-mom6/issues) or start a [discussion](https://github.com/COSIMA/regional-mom6/discussions). We welcome any [new contributors](https://regional-mom6.readthedocs.io/en/latest/contributing.html) and we are very keen to help you out along the way!


## What you need to get started:

1. a cool idea for a new regional MOM6 domain,
2. a working MOM6 executable on a machine of your choice, 
3. a bathymetry file that at least covers your domain,
4. 3D ocean forcing files *of any resolution* on your choice of A, B, or C Arakawa grid,
5. surface forcing files (e.g., from ERA or JRA reanalysis), and
6. [GFDL's FRE tools](https://github.com/NOAA-GFDL/FRE-NCtools) be downloaded and compiled on the machine you are using.

Check out the [documentation](https://regional-mom6.readthedocs.io/en/latest/) and browse through the [demos](https://regional-mom6.readthedocs.io/en/latest/demos.html).


## Installation

We encourage creating a new or using an existing conda environment.

#### Easy, clean, one liner via conda

The easiest way to install `regional-mom6` is via [`conda`](https://anaconda.org/conda-forge/regional-mom6).

```bash
conda install conda-forge::regional-mom6
```

That's it -- now enjoy!

#### "*But I want pip, can't I install with pip*?"

To install via `pip` is a bit more cumbersome.

A prerequisite is the binary `esmpy` dependency, which provides re-gridding capabilities.
The easiest way to install `esmpy` is via conda:

```bash
conda install -c conda-forge esmpy
```

Alternatively, to install `esmpy` in a Conda-free way, follow the instructions for [installing ESMPy from
source](https://earthsystemmodeling.org/esmpy_doc/release/latest/html/install.html#installing-esmpy-from-source).
With `esmpy` available, we can then install `regional-mom6` via pip. (If we don't have have pip, then
`conda install pip` should do the job.)

With `esmpy` installed we can now install `regional-mom6` via [`pip`](https://pypi.org/project/regional-mom6/):

```bash
pip install regional-mom6
```

The above installs the version of `regional-mom6` (plus any required dependencies) that corresponds to the latest tagged release of the package.

#### "*I want to live on the edge! I want the latest developments*"

To install `regional-mom6` directly from the [GitHub repository](https://github.com/COSIMA/regional-mom6/) using `pip`, first install `esmpy` as described above. Then:

```bash
pip install git+https://github.com/COSIMA/regional-mom6.git
```

to get the version that corresponds to the latest commit in GitHub.
Alternatively, install the version that corresponds to a particular git commit using, for example,

```bash
pip install git+https://github.com/COSIMA/regional-mom6.git@061b0ef80c7cbc04de0566df329c4ea472002f7e
```

## MOM6 Configuration and Version Requirements

The package and demos assume a coupled MOM6-SIS2 configuration, but also work for MOM6 ocean-only configuration after appropriate changes in the `input.nml` and `MOM_input` files.

Additionally, regional configurations require that the MOM6 executable _must_ be compiled with **symmetric memory**.

The current release of this package assumes the latest source code of all components needed to run MOM6 as of
January 2024. A forked version of the [`setup-mom6-nci`](https://github.com/ashjbarnes/setup-mom6-nci) repository
contains scripts for compiling MOM6 and, furthermore, its [`src`](https://github.com/ashjbarnes/setup-mom6-nci/tree/setup-mom6/src)
directory lists the particular commits that were used to compile MOM6 and its submodules for this package.

Note that the commits used for MOM6 submodules (e.g., Flexible Modelling System (FMS), coupler, SIS2) are _not_
necessarily those used by the GFDL's [`MOM6_examples`](https://github.com/NOAA-GFDL/MOM6-examples) repository.


## Getting started

The [example notebooks](https://regional-mom6.readthedocs.io/en/latest/demos.html) walk you through how to use
the package using two different sets of input datasets.
Please ensure that you can get at least one of these working on your setup with your MOM6 executable before trying to modify the example to suit your domain with your bathymetry, forcing, and boundary conditions.

You can download the notebooks [from Github](https://github.com/COSIMA/regional-mom6/tree/main/demos) or by clicking on the download <img width="22" alt="download" src="https://github.com/COSIMA/regional-mom6/assets/7112768/2c1ae149-c6a8-4395-ab09-2f77588008d9"> button, e.g., at the top-right of the [regional Tasmania forced by ERA5 example](https://regional-mom6.readthedocs.io/en/latest/demo_notebooks/reanalysis-forced.html).

## Citing

If you use regional-mom6 in research, teaching, or other activities, we would be grateful 
if you could mention regional-mom6 and cite our paper in JOSS:

> Barnes et al., (2024). regional-mom6: A Python package for automatic generation of regional configurations for the Modular Ocean Model 6. _Journal of Open Source Software_, **9(100)**, 6857, doi:[10.21105/joss.06857](https://doi.org/10.21105/joss.06857).

The bibtex entry for the paper is:

```bibtex
@article{regional-mom6-JOSS,
  doi = {10.21105/joss.06857},
  url = {https://doi.org/10.21105/joss.06857},
  year = {2024},
  publisher = {The Open Journal},
  volume = {9},
  number = {100},
  pages = {6857},
  author = {Ashley J. Barnes and Navid C. Constantinou and Angus H. Gibson and Andrew E. Kiss and Chris Chapman and John Reily and Dhruv Bhagtani and Luwei Yang},
  title = {{regional-mom6: A Python package for automatic generation of regional configurations for the Modular Ocean Model 6}},
  journal = {Journal of Open Source Software}
}
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "regional-mom6",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "mom6, regional, ocean modeling, python",
    "author": "COSIMA community and outside contributors",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/b7/4f/45b7c8ca9c58e41724a3ea4db779031f6b357b91c096b4b916f074b79e74/regional_mom6-0.6.2.tar.gz",
    "platform": null,
    "description": "# regional-mom6\n\n*Python package for automatic generation of regional configurations for the [Modular Ocean Model version 6](https://github.com/mom-ocean/MOM6) (MOM6)*\n\n[![Repo status](https://www.repostatus.org/badges/latest/active.svg?style=flat-square)](https://www.repostatus.org/#active)\n[![conda forge](https://img.shields.io/conda/vn/conda-forge/regional-mom6.svg)](https://anaconda.org/conda-forge/regional-mom6)\n[![pypi](https://badge.fury.io/py/regional-mom6.svg)](https://badge.fury.io/py/regional-mom6)\n[![Documentation Status](https://readthedocs.org/projects/regional-mom6/badge/?version=latest)](https://regional-mom6.readthedocs.io/en/latest/?badge=latest)\n\n[![License](https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square)](https://mit-license.org)\n[![codecov](https://codecov.io/gh/COSIMA/regional-mom6/branch/main/graph/badge.svg?token=7OEZ1UZRY4)](https://codecov.io/gh/COSIMA/regional-mom6)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n[![status](https://joss.theoj.org/papers/d396435c09aae4c2f4b62cdbc1493c1e/status.svg)](https://joss.theoj.org/papers/d396435c09aae4c2f4b62cdbc1493c1e)\n\nUsers just need to provide some information about where, when, and how big their domain is and also where raw input forcing files are. The package sorts out all the boring details and creates a set of MOM6-friendly input files along with setup directories ready to go! \n\nThe idea behind this package is that it should let the user sidestep some of the tricky issues with getting the model to run in the first place. This removes some of the steep learning curve for people new to working with MOM6. Note that the resultant model configuration might still need some tweaking (e.g., fiddling with timestep to avoid CFL-related numerical stability issues or fiddling with bathymetry to deal with very narrow fjords or channels that may exist).\n\n\n## Features\n\n- Automatic grid generation at chosen vertical and horizontal grid spacing.\n- Automatic removal of non-advective cells from the bathymetry that cause the model to crash.\n- Handle slicing across 'seams' in of the forcing input datasets (e.g., when the regional\n  configuration includes longitude 180 and the forcing longitude is defined in [-180, 180]).\n- Handles metadata encoding.\n- Creates directory structure with the configuration files as expected by MOM6.\n- Handles interpolation and interpretation of input data. No pre-processing of forcing datasets is required. (In some cases, slicing the forcing dataset before helps with hitting limitations related to the machine's available memory.)\n\n## Limitations\n\n- Only generates regional horizontal grids with uniform spacing in longitude and latitude.\n  However, users can provide their own non-uniform grid, or ideally\n  [open a pull request](https://github.com/COSIMA/regional-mom6/pulls) with a method that\n  generates other types of horizontal grids.\n- Only supports boundary segments that are parallel to either lines of constant longitude or\n  lines of constant latitude.\n\n\n## We want to hear from you\n\nIf you have any suggestions please feel free to open an [issue](https://github.com/COSIMA/regional-mom6/issues) or start a [discussion](https://github.com/COSIMA/regional-mom6/discussions). We welcome any [new contributors](https://regional-mom6.readthedocs.io/en/latest/contributing.html) and we are very keen to help you out along the way!\n\n\n## What you need to get started:\n\n1. a cool idea for a new regional MOM6 domain,\n2. a working MOM6 executable on a machine of your choice, \n3. a bathymetry file that at least covers your domain,\n4. 3D ocean forcing files *of any resolution* on your choice of A, B, or C Arakawa grid,\n5. surface forcing files (e.g., from ERA or JRA reanalysis), and\n6. [GFDL's FRE tools](https://github.com/NOAA-GFDL/FRE-NCtools) be downloaded and compiled on the machine you are using.\n\nCheck out the [documentation](https://regional-mom6.readthedocs.io/en/latest/) and browse through the [demos](https://regional-mom6.readthedocs.io/en/latest/demos.html).\n\n\n## Installation\n\nWe encourage creating a new or using an existing conda environment.\n\n#### Easy, clean, one liner via conda\n\nThe easiest way to install `regional-mom6` is via [`conda`](https://anaconda.org/conda-forge/regional-mom6).\n\n```bash\nconda install conda-forge::regional-mom6\n```\n\nThat's it -- now enjoy!\n\n#### \"*But I want pip, can't I install with pip*?\"\n\nTo install via `pip` is a bit more cumbersome.\n\nA prerequisite is the binary `esmpy` dependency, which provides re-gridding capabilities.\nThe easiest way to install `esmpy` is via conda:\n\n```bash\nconda install -c conda-forge esmpy\n```\n\nAlternatively, to install `esmpy` in a Conda-free way, follow the instructions for [installing ESMPy from\nsource](https://earthsystemmodeling.org/esmpy_doc/release/latest/html/install.html#installing-esmpy-from-source).\nWith `esmpy` available, we can then install `regional-mom6` via pip. (If we don't have have pip, then\n`conda install pip` should do the job.)\n\nWith `esmpy` installed we can now install `regional-mom6` via [`pip`](https://pypi.org/project/regional-mom6/):\n\n```bash\npip install regional-mom6\n```\n\nThe above installs the version of `regional-mom6` (plus any required dependencies) that corresponds to the latest tagged release of the package.\n\n#### \"*I want to live on the edge! I want the latest developments*\"\n\nTo install `regional-mom6` directly from the [GitHub repository](https://github.com/COSIMA/regional-mom6/) using `pip`, first install `esmpy` as described above. Then:\n\n```bash\npip install git+https://github.com/COSIMA/regional-mom6.git\n```\n\nto get the version that corresponds to the latest commit in GitHub.\nAlternatively, install the version that corresponds to a particular git commit using, for example,\n\n```bash\npip install git+https://github.com/COSIMA/regional-mom6.git@061b0ef80c7cbc04de0566df329c4ea472002f7e\n```\n\n## MOM6 Configuration and Version Requirements\n\nThe package and demos assume a coupled MOM6-SIS2 configuration, but also work for MOM6 ocean-only configuration after appropriate changes in the `input.nml` and `MOM_input` files.\n\nAdditionally, regional configurations require that the MOM6 executable _must_ be compiled with **symmetric memory**.\n\nThe current release of this package assumes the latest source code of all components needed to run MOM6 as of\nJanuary 2024. A forked version of the [`setup-mom6-nci`](https://github.com/ashjbarnes/setup-mom6-nci) repository\ncontains scripts for compiling MOM6 and, furthermore, its [`src`](https://github.com/ashjbarnes/setup-mom6-nci/tree/setup-mom6/src)\ndirectory lists the particular commits that were used to compile MOM6 and its submodules for this package.\n\nNote that the commits used for MOM6 submodules (e.g., Flexible Modelling System (FMS), coupler, SIS2) are _not_\nnecessarily those used by the GFDL's [`MOM6_examples`](https://github.com/NOAA-GFDL/MOM6-examples) repository.\n\n\n## Getting started\n\nThe [example notebooks](https://regional-mom6.readthedocs.io/en/latest/demos.html) walk you through how to use\nthe package using two different sets of input datasets.\nPlease ensure that you can get at least one of these working on your setup with your MOM6 executable before trying to modify the example to suit your domain with your bathymetry, forcing, and boundary conditions.\n\nYou can download the notebooks [from Github](https://github.com/COSIMA/regional-mom6/tree/main/demos) or by clicking on the download <img width=\"22\" alt=\"download\" src=\"https://github.com/COSIMA/regional-mom6/assets/7112768/2c1ae149-c6a8-4395-ab09-2f77588008d9\"> button, e.g., at the top-right of the [regional Tasmania forced by ERA5 example](https://regional-mom6.readthedocs.io/en/latest/demo_notebooks/reanalysis-forced.html).\n\n## Citing\n\nIf you use regional-mom6 in research, teaching, or other activities, we would be grateful \nif you could mention regional-mom6 and cite our paper in JOSS:\n\n> Barnes et al., (2024). regional-mom6: A Python package for automatic generation of regional configurations for the Modular Ocean Model 6. _Journal of Open Source Software_, **9(100)**, 6857, doi:[10.21105/joss.06857](https://doi.org/10.21105/joss.06857).\n\nThe bibtex entry for the paper is:\n\n```bibtex\n@article{regional-mom6-JOSS,\n  doi = {10.21105/joss.06857},\n  url = {https://doi.org/10.21105/joss.06857},\n  year = {2024},\n  publisher = {The Open Journal},\n  volume = {9},\n  number = {100},\n  pages = {6857},\n  author = {Ashley J. Barnes and Navid C. Constantinou and Angus H. Gibson and Andrew E. Kiss and Chris Chapman and John Reily and Dhruv Bhagtani and Luwei Yang},\n  title = {{regional-mom6: A Python package for automatic generation of regional configurations for the Modular Ocean Model 6}},\n  journal = {Journal of Open Source Software}\n}\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Automatic generation of regional configurations for Modular Ocean Model v6",
    "version": "0.6.2",
    "project_urls": null,
    "split_keywords": [
        "mom6",
        " regional",
        " ocean modeling",
        " python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2fa58f923e746ec998d0c68d660ba30965d6dbb214dc36fae73c37b90950d95",
                "md5": "713a7dbb5bd9b1a12f722ddd7bef89d0",
                "sha256": "4aca85d2920238baf7f983f2992252045ac8aecc58d28815fce7fdcf9b804bad"
            },
            "downloads": -1,
            "filename": "regional_mom6-0.6.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "713a7dbb5bd9b1a12f722ddd7bef89d0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 51489,
            "upload_time": "2024-10-03T07:47:43",
            "upload_time_iso_8601": "2024-10-03T07:47:43.906311Z",
            "url": "https://files.pythonhosted.org/packages/d2/fa/58f923e746ec998d0c68d660ba30965d6dbb214dc36fae73c37b90950d95/regional_mom6-0.6.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b74f45b7c8ca9c58e41724a3ea4db779031f6b357b91c096b4b916f074b79e74",
                "md5": "58b1c9f933bff67e09838648156b2fbc",
                "sha256": "8bdbdd72d8923080c45376bafc1dab729da408ef5d3e63cb3405abf91c8b2d74"
            },
            "downloads": -1,
            "filename": "regional_mom6-0.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "58b1c9f933bff67e09838648156b2fbc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2101630,
            "upload_time": "2024-10-03T07:47:45",
            "upload_time_iso_8601": "2024-10-03T07:47:45.334584Z",
            "url": "https://files.pythonhosted.org/packages/b7/4f/45b7c8ca9c58e41724a3ea4db779031f6b357b91c096b4b916f074b79e74/regional_mom6-0.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-03 07:47:45",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "regional-mom6"
}
        
Elapsed time: 0.45723s