NEMS configuration generation
Project description
NEMSpy
NEMSpy generates configuration files (nems.configure
, config.rc
, model_configure
, atm_namelist.rc
)
for coupled modeling applications run with a compiled NEMS binary (not included).
NEMS implements the National Unified Operational Prediction Capability (NUOPC), and configuration files built for NEMS will also work for most NUOPC applications.
Usage:
from datetime import datetime, timedelta
from nemspy import ModelingSystem
from nemspy.model import ADCIRCEntry, AtmosphericMeshEntry, WaveWatch3MeshEntry
# model run time
start_time = datetime(2020, 6, 1)
duration = timedelta(days=1)
end_time = start_time + duration
# returning interval of main run sequence
interval = timedelta(hours=1)
# directory to which configuration files should be written
output_directory = '~/nems_configuration/'
# model entries
ocean_model = ADCIRCEntry(
processors=11,
Verbosity='max',
DumpFields=False
)
atmospheric_mesh = AtmosphericMeshEntry(
filename='~/wind_atm_fin_ch_time_vec.nc',
processors=1
)
wave_mesh = WaveWatch3MeshEntry(
filename='~/ww3.Constant.20151214_sxy_ike_date.nc',
processors=1
)
# instantiate model system with model entries
nems = ModelingSystem(
start_time=start_time,
end_time=end_time,
interval=interval,
ocn=ocean_model,
atm=atmospheric_mesh,
wav=wave_mesh,
)
# form connections between models
nems.connect('ATM', 'OCN')
nems.connect('WAV', 'OCN')
# define execution order
nems.sequence = [
'ATM -> OCN',
'WAV -> OCN',
'ATM',
'WAV',
'OCN',
]
# write configuration files to the given directory
nems.write(
directory=output_directory,
overwrite=True,
include_version=True
)
Output:
nems.configure
# `nems.configure` generated with NEMSpy 0.5.0
# EARTH #
EARTH_component_list: ATM WAV OCN
EARTH_attributes::
Verbosity = off
::
# ATM #
ATM_model: atmesh
ATM_petlist_bounds: 0 0
ATM_attributes::
Verbosity = off
::
# WAV #
WAV_model: ww3data
WAV_petlist_bounds: 1 1
WAV_attributes::
Verbosity = off
::
# OCN #
OCN_model: adcirc
OCN_petlist_bounds: 2 12
OCN_attributes::
Verbosity = max
DumpFields = false
::
# Run Sequence #
runSeq::
@3600
ATM -> OCN :remapMethod=redist
WAV -> OCN :remapMethod=redist
ATM
WAV
OCN
@
::
model_configure
# `model_configure` generated with NEMSpy 0.5.0
total_member: 1
print_esmf: .true.
namelist: atm_namelist
PE_MEMBER01: 13
start_year: 2020
start_month: 6
start_day: 1
start_hour: 0
start_minute: 0
start_second: 0
nhours_fcst: 24
RUN_CONTINUE: .false.
ENS_SPS: .false.
config.rc
# `config.rc` generated with NEMSpy 0.5.0
atm_dir: ~
atm_nam: wind_atm_fin_ch_time_vec.nc
wav_dir: ~
wav_nam: ww3.Constant.20151214_sxy_ike_date.nc
Related:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nemspy-0.6.17.tar.gz
(18.5 kB
view details)
Built Distribution
nemspy-0.6.17-py3-none-any.whl
(20.0 kB
view details)
File details
Details for the file nemspy-0.6.17.tar.gz
.
File metadata
- Download URL: nemspy-0.6.17.tar.gz
- Upload date:
- Size: 18.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 635c16d5e88d7c0b9072c581848723f7baa9565b8f7c47cd6baaa311a9fabdc1 |
|
MD5 | 72fb67b8f34bd98e13b2b79b273d4c2d |
|
BLAKE2b-256 | 25bdda63df3780ce964156ccbcc40d62160a0ad1bc6138a7097ec41e8e742fd6 |
Provenance
File details
Details for the file nemspy-0.6.17-py3-none-any.whl
.
File metadata
- Download URL: nemspy-0.6.17-py3-none-any.whl
- Upload date:
- Size: 20.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8758412108580043743e91aabaf47b978a7c73cd0c3244b6252884a17764916d |
|
MD5 | 4f5641d081211b52f29e5a94f243a8a8 |
|
BLAKE2b-256 | 03f33f5e42b4fb443bcc9cb8092b052e308424c81fe5cee0abb1a2145e7a7ef8 |