-
Notifications
You must be signed in to change notification settings - Fork 217
Add run and finalize methods to marine LETKF task #2944
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
Changes from all commits
20e48a1
16d805f
f749b3f
9501e74
6b1832a
7f30c33
581f1c3
0dcf183
6a2cd3d
fb55a4e
398ec22
f314c2a
c7cb09e
1e53cb5
36fa89c
c66994e
1069b58
e77db56
5c21402
e6bc17b
4472499
b19d000
926bbc3
4bc1886
b4bafa3
0b8a255
40fea74
938fa53
77f44e1
1574996
dcd4322
ddc5445
8024e5f
c4f289b
afc8257
7716bdd
01de9c9
ee50ae6
826e8d0
f200ec0
0dbd5e1
d48236f
84b125c
1bb7007
28eb915
522d3c5
3da66c3
eee78a1
bb9d014
02388e6
9fa7813
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| experiment: | ||
| system: gfs | ||
| mode: cycled | ||
|
|
||
| arguments: | ||
| pslot: {{ 'pslot' | getenv }} | ||
| app: S2S | ||
| resdetatmos: 48 | ||
| resdetocean: 5.0 | ||
| resensatmos: 48 | ||
| comroot: {{ 'RUNTESTS' | getenv }}/COMROOT | ||
| expdir: {{ 'RUNTESTS' | getenv }}/EXPDIR | ||
| icsdir: {{ 'ICSDIR_ROOT' | getenv }}/C48mx500/20240610 | ||
| idate: 2021032412 | ||
| edate: 2021032418 | ||
| nens: 3 | ||
| interval: 0 | ||
| start: warm | ||
| yaml: {{ HOMEgfs }}/ci/cases/yamls/soca_gfs_defaults_ci.yaml | ||
|
|
||
| skip_ci_on_hosts: | ||
| - wcoss2 | ||
| - orion | ||
| - hercules | ||
| - hera | ||
| - gaea | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -82,12 +82,14 @@ declare -rx COM_OCEAN_HISTORY_TMPL=${COM_BASE}'/model/ocean/history' | |
| declare -rx COM_OCEAN_RESTART_TMPL=${COM_BASE}'/model/ocean/restart' | ||
| declare -rx COM_OCEAN_INPUT_TMPL=${COM_BASE}'/model/ocean/input' | ||
| declare -rx COM_OCEAN_ANALYSIS_TMPL=${COM_BASE}'/analysis/ocean' | ||
| declare -rx COM_OCEAN_LETKF_TMPL=${COM_BASE}'/analysis/ocean/letkf' | ||
|
Contributor
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. What files get written to the letkf directories vs the regular component analysis directories?
Contributor
Author
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. These are the analysis files from the LETKF, which are separate from the variational analysis files |
||
| declare -rx COM_OCEAN_BMATRIX_TMPL=${COM_BASE}'/bmatrix/ocean' | ||
| declare -rx COM_OCEAN_NETCDF_TMPL=${COM_BASE}'/products/ocean/netcdf' | ||
| declare -rx COM_OCEAN_GRIB_TMPL=${COM_BASE}'/products/ocean/grib2' | ||
| declare -rx COM_OCEAN_GRIB_GRID_TMPL=${COM_OCEAN_GRIB_TMPL}'/${GRID}' | ||
|
|
||
| declare -rx COM_ICE_ANALYSIS_TMPL=${COM_BASE}'/analysis/ice' | ||
| declare -rx COM_ICE_LETKF_TMPL=${COM_BASE}'/analysis/ice/letkf' | ||
| declare -rx COM_ICE_BMATRIX_TMPL=${COM_BASE}'/bmatrix/ice' | ||
| declare -rx COM_ICE_INPUT_TMPL=${COM_BASE}'/model/ice/input' | ||
| declare -rx COM_ICE_HISTORY_TMPL=${COM_BASE}'/model/ice/history' | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| #!/bin/bash | ||
|
|
||
| ########## config.marineanlletkf ########## | ||
| # Ocn Analysis specific | ||
|
|
||
| echo "BEGIN: config.marineanlletkf" | ||
|
|
||
| # Get task specific resources | ||
| . "${EXPDIR}/config.resources" marineanlletkf | ||
|
|
||
| export MARINE_LETKF_EXEC="${EXECgfs}/gdas.x" | ||
| export MARINE_LETKF_YAML_TMPL="${PARMgfs}/gdas/soca/letkf/letkf.yaml.j2" | ||
| export MARINE_LETKF_STAGE_YAML_TMPL="${PARMgfs}/gdas/soca/letkf/letkf_stage.yaml.j2" | ||
| export MARINE_LETKF_SAVE_YAML_TMPL="${PARMgfs}/gdas/soca/letkf/letkf_save.yaml.j2" | ||
|
|
||
| export GRIDGEN_EXEC="${EXECgfs}/gdas_soca_gridgen.x" | ||
| export GRIDGEN_YAML="${PARMgfs}/gdas/soca/gridgen/gridgen.yaml" | ||
| export DIST_HALO_SIZE=500000 | ||
|
|
||
| echo "END: config.marineanlletkf" |
Uh oh!
There was an error while loading. Please reload this page.