[go: nahoru, domu]

Skip to content

MetOffice/orca-jedi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CI License

© British Crown Copyright 2024 Met Office. All rights reserved.

orca-jedi

JEDI model interface interface for the NEMO ocean model configurations on ORCA grids from the UK Met Office.

Description

orca-jedi includes executables to calculate model values at observation locations and to perform quality control. orca-jedi is a JEDI "pseudo-model", meaning that rather than interfacing directly with NEMO or NEMOVAR, the model state is derived from input files. Further applications may be developed based on orca-jedi in the future. (These would be implementations of JEDI OOPS apps, such as for observation generation applications, and various DA applications).

Getting Started

Dependencies

Installing

orca-jedi is a JEDI component package built within mo-bundle at the Met Office - see the README in that project for details on how to build. orca-jedi depends upon the experimental atlas-orca plugin package provided by ECMWF for the atlas library.

Otherwise, it is possible to build orca-jedi within a custom JEDI bundle. For details about JEDI, including installation instructions see the jedi-docs.

These bundles are built, made and installed via cmake, and tested with ctest. All code should be documented at the source level for processing using doxygen. This can be tested by running cmake with the -DENABLE_ORCA_JEDI_DOCS=ON cmake setting.

Using the interface

orca-jedi can be run either serially or using MPI. When compiled within the JEDI framework it will produce a series of applications for using with ORCA model data:

orcamodelHofX.x <jedi-yaml-config-file>
mpiexec -np 2 orcamodelHofX.x <jedi-yaml-config-file>

The jedi configuration is documented in the main jedi documentation. Settings for Met Office operational numerical weather prediction workflows are held internally by the Met Office, however there are some example configurations in the examples directory as well as the ctest tests inputs (src/tests/testinputs).

The parameters for orca-jedi are documented in code in the parameters class. When the program is compiled, these are exported to a yaml schema json file, that can be used in conjunction with your editor to highlight any issues with your configuration. The main sections which likely need to be included regardless of the JEDI application are the geometry and state configurations:

geometry:
  nemo variables: # list of variables in the geometry
    - name: # internal JEDI name for this variable
      nemo field name: # name in the NEMO field file for the variable
      model space: # "volume", "surface", or "vertical" for 3D, 2D, or 1D field
  grid name: # e.g "eORCA025_T" or "eORCA12_T"
  number levels: # number of vertical levels to include in the grid.
  partitioner: # atlas MPI grid partitioner
state :
  date:  # ISO8601 datetime
  state variables: # list of the model state variables matching the `name` field above
  nemo field file: # input background data
  variance field file: # input error data

Help

See the JEDI documentation for help. Additional debugging/trace output is available when:

OOPS_DEBUG=true
OOPS_TRACE=true

Authors

The current lead maintainer is @twsearle along with a large amount of help from Met Office contributors (see the "Contributors" page on github).

Contributing

By contributing you agree to the Contributors License Agreement (CLA) contained in the root directory of the project. Please review this, and if you are able to make a contribution make an issue or pull request for your proposed change. All pull requests should conform to the working practises and be linked to an issue, unless a minor bug fix.

Working practices

Please see the JEDI working principles for current working practises.