-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
30 additions
and
55 deletions.
There are no files selected for viewing
20 changes: 10 additions & 10 deletions
20
cset-workflow/includes/deterministic_domain_mean_vertical_profile_series.cylc
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,16 +1,16 @@ | ||
{% if DOMAIN_MEAN_VERTICAL_PROFILE_SERIES %} | ||
{% for equivalent_field in restructure_field_list(PRESSURE_LEVEL_MODEL_FIELDS) %} | ||
{% for model_number, field in equivalent_field.items() %} | ||
[runtime] | ||
{% for model_field in PRESSURE_LEVEL_MODEL_FIELDS %} | ||
[[pre_process_domain_mean_vertical_profile_series_{{model_field}}]] | ||
inherit = PARALLEL | ||
[[generic_domain_mean_vertical_profile_series_m{{model_number}}_{{sanitise_task_name(field)}}]] | ||
inherit = PROCESS | ||
[[[environment]]] | ||
CSET_RECIPE_NAME = "generic_domain_mean_vertical_profile_series.yaml" | ||
CSET_ADDOPTS = "--VARNAME='{{model_field}}' --PLEVEL='{{PRESSURE_LEVELS}}'" | ||
|
||
[[collate_domain_mean_vertical_profile_series_{{model_field}}]] | ||
inherit = COLLATE | ||
[[[environment]]] | ||
CSET_RECIPE_NAME = "generic_domain_mean_vertical_profile_series.yaml" | ||
CSET_ADDOPTS = "--VARNAME='{{model_field}}' --PLEVEL='{{PRESSURE_LEVELS}}'" | ||
CSET_ADDOPTS = """ | ||
--VARNAME='{{field}}' | ||
--MODEL_NAME='{{models[model_number-1]["name"]}}' | ||
""" | ||
MODEL_NUMBER = {{model_number}} | ||
{% endfor %} | ||
{% endfor %} | ||
{% endif %} |
23 changes: 12 additions & 11 deletions
23
cset-workflow/includes/plot_spatial_plevel_model_field.cylc
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,18 +1,19 @@ | ||
{% if PLOT_SPATIAL_PRESSURE_LEVEL_MODEL_FIELD %} | ||
[runtime] | ||
{% for model_field in PRESSURE_LEVEL_MODEL_FIELDS %} | ||
{% for equivalent_field in restructure_field_list(PRESSURE_LEVEL_MODEL_FIELDS) %} | ||
{% for model_number, field in equivalent_field.items() %} | ||
{% for plevel in PRESSURE_LEVELS %} | ||
[[process_generic_plevel_spatial_plot_sequence_{{model_field}}_{{plevel}}]] | ||
inherit = PARALLEL | ||
[[[environment]]] | ||
CSET_RECIPE_NAME = "generic_plevel_spatial_plot_sequence.yaml" | ||
CSET_ADDOPTS = "--VARNAME={{model_field}} --PLEVEL={{plevel}}" | ||
|
||
[[collate_generic_plevel_spatial_plot_sequence_{{model_field}}_{{plevel}}]] | ||
inherit = COLLATE | ||
[runtime] | ||
[[generic_plevel_spatial_plot_sequence_m{{model_number}}_{{sanitise_task_name(field)}}]] | ||
inherit = PROCESS | ||
[[[environment]]] | ||
CSET_RECIPE_NAME = "generic_plevel_spatial_plot_sequence.yaml" | ||
CSET_ADDOPTS = "--VARNAME={{model_field}} --PLEVEL={{plevel}}" | ||
CSET_ADDOPTS = """ | ||
--VARNAME='{{field}}' | ||
--PLEVEL='{{plevel}}' | ||
--MODEL_NAME='{{models[model_number-1]["name"]}}' | ||
""" | ||
MODEL_NUMBER = {{model_number}} | ||
{% endfor %} | ||
{% endfor %} | ||
{% endfor %} | ||
{% endif %} |
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