From 10a744aa2a8103e523aba54bebc44a965c2ec466 Mon Sep 17 00:00:00 2001 From: Yaping Wang <49168260+ypwang19@users.noreply.github.com> Date: Fri, 3 Jan 2025 08:52:52 -0500 Subject: [PATCH] Update YAMLs for aerosol VarBC (#61) This PR updates jcb yamls for aerosol variational bias correction. Will add the obs bias section to yamls in observations/aero/ later as more work is needed to select proper predictors. Companion PRs: - https://github.com/NOAA-EMC/GDASApp/pull/1426 - https://github.com/NOAA-EMC/global-workflow/pull/3189 Co-authored-by: ypwang19 Co-authored-by: Cory Martin --- algorithm/aero/aero_bias_staging.yaml.j2 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 algorithm/aero/aero_bias_staging.yaml.j2 diff --git a/algorithm/aero/aero_bias_staging.yaml.j2 b/algorithm/aero/aero_bias_staging.yaml.j2 new file mode 100644 index 0000000..3a3187f --- /dev/null +++ b/algorithm/aero/aero_bias_staging.yaml.j2 @@ -0,0 +1,10 @@ +mkdir: +- '{{aero_obsbiasout_path}}' +copy: + {% for observation_from_jcb in observations %} + {% if use_observer(observation_from_jcb) %} + {% if observation_from_jcb in bias_files %} + - ['{{aero_obsbiasroot_path}}/{{aero_obsbiasin_prefix}}{{bias_files[observation_from_jcb]}}', '{{aero_obsbiasin_path}}'] + {% endif %} + {% endif %} + {% endfor %}