-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3165 from GEOS-ESM/feature/pchakrab/vertical-regr…
…idding Bug fix in FieldSpec::adapt_vertical_grid and related changes
- Loading branch information
Showing
14 changed files
with
205 additions
and
54 deletions.
There are no files selected for viewing
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
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
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
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,28 @@ | ||
mapl: | ||
|
||
geometry: | ||
esmf_geom: | ||
class: latlon | ||
im_world: 12 | ||
jm_world: 13 | ||
pole: PC | ||
dateline: DC | ||
vertical_grid: | ||
class: model | ||
short_name: PL | ||
units: hPa | ||
num_levels: 4 | ||
|
||
states: | ||
import: {} | ||
export: | ||
PL: | ||
standard_name: air_pressure_a | ||
units: hPa | ||
default_value: 17. | ||
vertical_dim_spec: center | ||
E_A: | ||
standard_name: temperature_a | ||
units: K | ||
default_value: 17. | ||
vertical_dim_spec: center |
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,21 @@ | ||
mapl: | ||
|
||
geometry: | ||
esmf_geom: | ||
class: latlon | ||
im_world: 12 | ||
jm_world: 13 | ||
pole: PC | ||
dateline: DC | ||
vertical_grid: | ||
class: fixed_levels | ||
standard_name: air_pressure | ||
units: hPa | ||
levels: [17.] | ||
|
||
states: | ||
import: | ||
I_B: | ||
standard_name: temperature_b | ||
units: K | ||
vertical_dim_spec: center |
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,21 @@ | ||
mapl: | ||
|
||
geometry: | ||
esmf_geom: | ||
class: latlon | ||
im_world: 12 | ||
jm_world: 13 | ||
pole: PC | ||
dateline: DC | ||
vertical_grid: | ||
class: fixed_levels | ||
standard_name: air_pressure | ||
units: hPa | ||
levels: [17.] | ||
|
||
states: | ||
import: | ||
I_C: | ||
standard_name: air_pressure_c | ||
units: hPa | ||
vertical_dim_spec: center |
17 changes: 17 additions & 0 deletions
17
generic3g/tests/scenarios/vertical_regridding_3/expectations.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,17 @@ | ||
# For each component: | ||
# - provide a path to the outer/user componen in the hierarchy | ||
# - list the fields expected in each import/export/internal states | ||
# - annotate whether field is "complete" | ||
|
||
- component: A | ||
export: | ||
PL: {status: complete} | ||
E_A: {status: complete} | ||
|
||
- component: B | ||
import: | ||
I_B: {status: complete} | ||
|
||
- component: C | ||
import: | ||
I_C: {status: complete} |
Oops, something went wrong.