Skip to content
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
90f0c6d
initial commits for reducing size of ocean and sea ice output
NeilBarton-NOAA Oct 30, 2025
c9483c1
edits to MOM6 diag_table
NeilBarton-NOAA Oct 30, 2025
76f89d0
edits for file name differences
NeilBarton-NOAA Oct 31, 2025
f8f6fe8
changing to 30L zgrid MOM6 file
NeilBarton-NOAA Oct 31, 2025
5ad905c
gfs test and edits
NeilBarton-NOAA Nov 3, 2025
94237f7
Merge branch 'develop' into ocnice_products
NeilBarton-NOAA Nov 3, 2025
d7abd79
fix python code style
NeilBarton-NOAA Nov 3, 2025
d2ed372
remove trailing white space
NeilBarton-NOAA Nov 3, 2025
90875e1
Merge branch 'ocnice_products' of github.com:NeilBarton-NOAA/global-w…
NeilBarton-NOAA Nov 3, 2025
46b0bc2
fixing python errors
NeilBarton-NOAA Nov 3, 2025
b7b220f
fix python style errors
NeilBarton-NOAA Nov 3, 2025
6fcf46f
try again
NeilBarton-NOAA Nov 3, 2025
c9ad5e3
white space
NeilBarton-NOAA Nov 3, 2025
156580a
Update parm/archive/ice_native.yaml.j2
NeilBarton-NOAA Nov 3, 2025
486f690
Update parm/archive/ocean_native.yaml.j2
NeilBarton-NOAA Nov 3, 2025
386a01d
corrected and to or
NeilBarton-NOAA Nov 3, 2025
b41f6b6
Merge branch 'ocnice_products' of github.com:NeilBarton-NOAA/global-w…
NeilBarton-NOAA Nov 3, 2025
1943a47
Update parm/post/oceanice_products_gfs.yaml
NeilBarton-NOAA Nov 3, 2025
3091fa1
Update subset list in oceanice_products_gfs.yaml
NeilBarton-NOAA Nov 5, 2025
93a10fe
removing compressing of COMROT files and adding namelist options
NeilBarton-NOAA Nov 6, 2025
fecb2ab
Update dev/parm/config/sfs/config.nsst.j2
NeilBarton-NOAA Nov 6, 2025
b3f10b3
addressing comments
NeilBarton-NOAA Nov 6, 2025
b7e343a
Update parm/post/oceanice_products_sfs.yaml
NeilBarton-NOAA Nov 12, 2025
0246dd6
changing to or
NeilBarton-NOAA Nov 12, 2025
29f7357
remove compressed in COMOUT overwrite
NeilBarton-NOAA Nov 12, 2025
2b705db
defining variable outside of yaml
NeilBarton-NOAA Nov 12, 2025
98b205b
Merge branch 'develop' into ocnice_products
NeilBarton-NOAA Nov 12, 2025
08f4a5a
add option to copy netcdf lat/lon products to COMROT
NeilBarton-NOAA Nov 12, 2025
e09e4d1
Merge branch 'ocnice_products' of github.com:NeilBarton-NOAA/global-w…
NeilBarton-NOAA Nov 12, 2025
4aa74d5
update gfs_utils.fd
NeilBarton-NOAA Nov 13, 2025
fe149cd
add if statement for indexing grib2 files
NeilBarton-NOAA Nov 13, 2025
aedfc9a
Merge branch 'develop' into ocnice_products
NeilBarton-NOAA Nov 14, 2025
373b944
Merge branch 'develop' into ocnice_products
NeilBarton-NOAA Nov 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions parm/archive/ocean_native.yaml.j2
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
ocean_native:
{% set NET = NET %}
{% set FREQ = FHOUT_ICE_GFS %}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this FHOUT_ICE_GFS? Should it be FHOUT_OCN_GFS (if that exists)?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changed with update. This was a copy from the other file

{% set head = NET + ".t" + cycle_HH + "z" %}
name: "OCEAN_NATIVE"
target: "{{ ATARDIR }}/{{ cycle_YMDH }}/ocean_native_subset.tar"
required:
{% for fhr in range(FREQ, FHMAX_GFS + FREQ, FREQ) %}
- "{{ COMIN_OCEAN_NETCDF | relpath(ROTDIR) }}/native/{{ head }}.native.f{{ '%03d' % fhr }}.nc"
{% for fhr in range(FHOUT_ICE_GFS, FHMAX_GFS + FHOUT_ICE_GFS, FHOUT_ICE_GFS) %}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't these be FHOUT_OCN_GFS?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, change uploaded

- "{{ COMIN_OCEAN_NETCDF | relpath(ROTDIR) }}/native/{{ RUN }}.t{{ cycle_HH }}z.native.f{{ '%03d' % fhr }}.nc"
{% endfor %}