-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added config reader data source #6
Merged
cducher
merged 3 commits into
feature/nwp-emulator
from
feature/nwp-emulator-config-source
Mar 24, 2025
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,41 @@ | ||
build: | ||
modules: | ||
- ninja | ||
dependencies: | ||
- ecmwf/ecbuild@develop | ||
- ecmwf/eckit@develop | ||
- ecmwf/fckit@develop | ||
- ecmwf/atlas@develop | ||
- ecmwf/eccodes@develop | ||
dependency_cmake_options: | ||
- ecmwf/atlas:-DENABLE_FORTRAN=ON | ||
parallel: 64 | ||
matrix: | ||
- mpi_on | ||
- mpi_off | ||
|
||
mpi_on: | ||
build: | ||
modules: | ||
- ninja | ||
- openmpi | ||
modules_package: | ||
- atlas:openmpi | ||
- eckit:openmpi | ||
dependencies: | ||
- ecmwf/ecbuild@develop | ||
- ecmwf/eckit@develop | ||
- ecmwf/fckit@develop | ||
- ecmwf/atlas@develop | ||
- ecmwf/eccodes@develop | ||
dependency_cmake_options: | ||
- ecmwf/atlas:-DENABLE_FORTRAN=ON | ||
parallel: 64 | ||
ntasks: 16 | ||
env: | ||
- CTEST_PARALLEL_LEVEL=1 | ||
- OMPI_MCA_rmaps_base_oversubscribe=1 | ||
- ECCODES_SAMPLES_PATH=$ECCODES_DIR/share/eccodes/samples | ||
- ECCODES_DEFINITION_PATH=$ECCODES_DIR/share/eccodes/definitions | ||
|
||
mpi_off: | ||
build: | ||
modules: | ||
- ninja | ||
dependencies: | ||
- ecmwf/ecbuild@develop | ||
- ecmwf/eckit@develop | ||
- ecmwf/fckit@develop | ||
- ecmwf/atlas@develop | ||
- ecmwf/eccodes@develop | ||
dependency_cmake_options: | ||
- ecmwf/atlas:-DENABLE_FORTRAN=ON | ||
parallel: 64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
# Plume Numerical Weather Prediction Model Emulator | ||
|
||
This tool is here to help you with your Plume plugins development. | ||
You can use it to emulate model runs with Plume loading the plugins from your configuration. | ||
|
||
## Features | ||
|
||
- Dry run: The NWP emulator can run without Plume to develop new features, or to test your data generation to ensure it fits the purpose of your plugin test. | ||
- Plume run: The NWP emulator runs Plume with the passed configuration. It can be used to test the Plume framweork, or test Plume plugins. | ||
- GRIB as input: The NWP emulator can either take a directory containing GRIB files or a GRIB file as input source. It will attempt to serve the data in each file as if it were a single model step. The number of emulator steps run depend on the number of GRIB files in the source folder, or a user-defined maximum number of steps. This approach allows a developer to test a plugin with real data. *Note:* the emulator is not looking recursively into the source folder, any subdirectory will be ignored. | ||
- Config as input: The NWP emulator can take a configuration file that sets its run parameters (number of steps, grid, number of levels, fields...). The data is synthetically generated by a set of available functions, see [below](#configuration-source) for more details. | ||
|
||
## Usage | ||
|
||
Once installed (check out [Plume install guide](../../README.md/#installation) for more info), the emulator tool can be used as follows: | ||
```bash | ||
mpirun -np 2 nwp_emulator_run [--grib-src=<path> | --config-src=<path>] [--plume-cfg=<path>] [OPTION]... [--help] | ||
``` | ||
To make a dry run, omit the `--plume-cfg` flag. | ||
|
||
## Quick start | ||
### GRIB source | ||
|
||
The GRIB files are served alphabetically so your source folder should be organised to ensure the data you expect is served in the order you expect. Validation is run on all the source files to make sure they all contain the same fields and levels on the same grid. Check out the [MARS documentation](https://confluence.ecmwf.int/display/UDOC/MARS+user+documentation) if you need a hand to retrieve historical data. | ||
|
||
### Configuration source | ||
|
||
Currently, the emulator supports five functions for data generation: | ||
- Vortex Rollup (provided by the [Atlas library](https://confluence.ecmwf.int/display/ATLAS)) | ||
- Random (uniform or normal distributions) | ||
- Step | ||
- Cardinal Sine | ||
- Gaussian | ||
|
||
All functions accept a focus area which can be translated between each time step by a user-defined factor. | ||
Validation is run on the configuration file to ensure options are valid, but it lies with the user to make sure the selected options achieve their purpose. | ||
|
||
Here is an example of YAML configuration file you can use to generate model data, which demonstrate the options that each generation function accept: | ||
|
||
```yaml | ||
emulator: | ||
n_steps: 5 | ||
grid_identifier: "N80" | ||
vertical_levels: 5 | ||
# can provide area here if all population methods should use a non global area by default | ||
# range for lon is assumed [-180,180] and lat [-90,90] | ||
fields: | ||
100u: # use the field short name | ||
levtype: "sfc" | ||
apply: | ||
vortex_rollup: | ||
area: [71.5, -25, 34.5, 45] | ||
time_variation: 1.1 | ||
100v: | ||
levtype: "sfc" | ||
apply: | ||
vortex_rollup: | ||
time_variation: 1.1 | ||
u: # no specified levtype means not surface | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is getting u,v from model-level grib output supported? |
||
apply: # functions applied in the given order | ||
levels: | ||
"1": | ||
random: # no specified area means global | ||
distribution: "uniform" | ||
step: | ||
area: [71.5, -25, 34.5, 45] # rectangle represented by NW and SE (lat,lon) coordinates | ||
value: 10.0 | ||
variation: 1.0 | ||
translation: [1.0, 1.0] # degrees of translation of the area per time step (lat, lon) | ||
"2": | ||
sinc: | ||
modes: 3 # number of peaks or sinks in the generation area | ||
min: -1.0 | ||
max: 10.0 | ||
spread: 10.0 | ||
sink: false | ||
"3:": | ||
gaussian: | ||
modes: 2 | ||
min: 0.0 | ||
max: 1.0 | ||
max_stddev: 3.0 | ||
sink: true | ||
v: "u" | ||
t: | ||
apply: | ||
levels: # this key should not be used for sfc | ||
"2": # when using levels, they should range from 1-<vertical_levels> | ||
random: | ||
area: [71.5, -25, 34.5, 45] | ||
distribution: "uniform" | ||
min: 10.0 | ||
max: 35.0 | ||
"1,3": | ||
step: | ||
probability: 0.1 | ||
value: 45.0 | ||
"4:": | ||
random: | ||
distribution: "normal" | ||
mean: 20.0 | ||
stddev: 20.0 | ||
``` | ||
|
||
## License | ||
© 2025 ECMWF. All rights reserved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice and useful configuration example! we could consider having a separate entry for "functions" (at the same level of "fields") where named functions are defined. Then these named functions could be recalled within the fields/levels - to avoid duplications. But this can definitely be another PR