-
Notifications
You must be signed in to change notification settings - Fork 6
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
3 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
src/swell/configuration/jedi/interfaces/geos_marine/observations/sst_merra2.yaml
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
obs space: | ||
name: sst_merra2 | ||
obsdatain: | ||
engine: | ||
type: H5File | ||
obsfile: '{{cycle_dir}}/sst_merra2.{{window_begin}}.nc4' | ||
obsdataout: | ||
engine: | ||
type: H5File | ||
obsfile: '{{cycle_dir}}/{{experiment_id}}.sst_merra2.{{window_begin}}.nc4' | ||
simulated variables: [seaSurfaceTemperature] | ||
obs operator: | ||
name: Identity | ||
observation alias file: '{{experiment_root}}/{{experiment_id}}/configuration/jedi/interfaces/{{model_component}}/observations/obsop_name_map.yaml' | ||
obs error: | ||
covariance model: diagonal | ||
obs filters: | ||
- filter: Domain Check | ||
where: | ||
- variable: {name: GeoVaLs/sea_area_fraction} | ||
minvalue: 0.9 | ||
- filter: Bounds Check | ||
minvalue: -2.0 | ||
maxvalue: 36.0 | ||
- filter: Background Check | ||
threshold: 5.0 | ||
- filter: Domain Check | ||
where: | ||
- variable: {name: ObsError/seaSurfaceTemperature} | ||
minvalue: 0.001 | ||
- filter: Domain Check | ||
where: | ||
- variable: { name: GeoVaLs/sea_ice_area_fraction} | ||
maxvalue: 0.00001 | ||
- filter: Domain Check | ||
where: | ||
- variable: {name: GeoVaLs/distance_from_coast} | ||
minvalue: 100e3 | ||
- filter: Domain Check | ||
action: | ||
name: passivate | ||
where: | ||
- variable: {name: GeoVaLs/sea_area_fraction} | ||
maxvalue: 0.9 |
44 changes: 44 additions & 0 deletions
44
src/swell/configuration/jedi/interfaces/geos_ocean/observations/sst_merra2.yaml
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
obs space: | ||
name: sst_merra2 | ||
obsdatain: | ||
engine: | ||
type: H5File | ||
obsfile: '{{cycle_dir}}/sst_merra2.{{window_begin}}.nc4' | ||
obsdataout: | ||
engine: | ||
type: H5File | ||
obsfile: '{{cycle_dir}}/{{experiment_id}}.sst_merra2.{{window_begin}}.nc4' | ||
simulated variables: [seaSurfaceTemperature] | ||
obs operator: | ||
name: Identity | ||
observation alias file: '{{experiment_root}}/{{experiment_id}}/configuration/jedi/interfaces/{{model_component}}/observations/obsop_name_map.yaml' | ||
obs error: | ||
covariance model: diagonal | ||
obs filters: | ||
- filter: Domain Check | ||
where: | ||
- variable: {name: GeoVaLs/sea_area_fraction} | ||
minvalue: 0.9 | ||
- filter: Bounds Check | ||
minvalue: -2.0 | ||
maxvalue: 36.0 | ||
- filter: Background Check | ||
threshold: 5.0 | ||
- filter: Domain Check | ||
where: | ||
- variable: {name: ObsError/seaSurfaceTemperature} | ||
minvalue: 0.001 | ||
- filter: Domain Check | ||
where: | ||
- variable: { name: GeoVaLs/sea_ice_area_fraction} | ||
maxvalue: 0.00001 | ||
- filter: Domain Check | ||
where: | ||
- variable: {name: GeoVaLs/distance_from_coast} | ||
minvalue: 100e3 | ||
- filter: Domain Check | ||
action: | ||
name: passivate | ||
where: | ||
- variable: {name: GeoVaLs/sea_area_fraction} | ||
maxvalue: 0.9 |
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
57da18c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
sea_ice_area_fraction
section of sst_merra2.yaml seems to be causing issues with Vader. Not sure if it's supposed to besea_area_fraction
instead?