Skip to content

Commit

Permalink
Add new 202111 month-avg variable groups (#140)
Browse files Browse the repository at this point in the history
* biology growth rates
* grazing
* light
* mortality
* vvl grid
  • Loading branch information
douglatornell authored Oct 8, 2024
1 parent d8c960d commit c580720
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
15 changes: 15 additions & 0 deletions model_profiles/SalishSeaCast-202111-month-avg-salish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,24 @@ results archive:
biology:
file pattern: "SalishSeaCast_1m_biol_T_{yyyymm01}_{yyyymm_end}.nc"
depth coord: depth
biology growth rates:
file pattern: "SalishSeaCast_1m_prod_T_{yyyymm01}_{yyyymm_end}.nc"
depth coord: depth
chemistry:
file pattern: "SalishSeaCast_1m_chem_T_{yyyymm01}_{yyyymm_end}.nc"
depth coord: depth
grazing:
file pattern: "SalishSeaCast_1m_graz_T_{yyyymm01}_{yyyymm_end}.nc"
depth coord: depth
light:
file pattern: "SalishSeaCast_1m_chem_T_{yyyymm01}_{yyyymm_end}.nc"
depth coord: depth
mortality:
file pattern: "SalishSeaCast_1m_graz_T_{yyyymm01}_{yyyymm_end}.nc"
depth coord: depth
physics tracers:
file pattern: "SalishSeaCast_1m_grid_T_{yyyymm01}_{yyyymm_end}.nc"
depth coord: depth
vvl grid:
file pattern: "SalishSeaCast_1m_grid_T_{yyyymm01}_{yyyymm_end}.nc"
depth coord: depth
20 changes: 20 additions & 0 deletions tests/test_model_profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,14 +663,34 @@ def test_SalishSeaCast_202111_month_avg(self):
"biology",
"SalishSeaCast_1m_biol_T_{yyyymm01}_{yyyymm_end}.nc",
),
(
"biology growth rates",
"SalishSeaCast_1m_prod_T_{yyyymm01}_{yyyymm_end}.nc",
),
(
"chemistry",
"SalishSeaCast_1m_chem_T_{yyyymm01}_{yyyymm_end}.nc",
),
(
"grazing",
"SalishSeaCast_1m_graz_T_{yyyymm01}_{yyyymm_end}.nc",
),
(
"light",
"SalishSeaCast_1m_chem_T_{yyyymm01}_{yyyymm_end}.nc",
),
(
"mortality",
"SalishSeaCast_1m_graz_T_{yyyymm01}_{yyyymm_end}.nc",
),
(
"physics tracers",
"SalishSeaCast_1m_grid_T_{yyyymm01}_{yyyymm_end}.nc",
),
(
"vvl grid",
"SalishSeaCast_1m_grid_T_{yyyymm01}_{yyyymm_end}.nc",
),
),
)
def test_SalishSeaCast_202111_month_avg_datasets(self, var_group, file_pattern):
Expand Down

0 comments on commit c580720

Please sign in to comment.