Skip to content

Commit

Permalink
Add fix for GAAS Registry to mark aod_ imports as RestartSkip
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 committed Oct 3, 2023
1 parent 2160398 commit a5e7495
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
### Fixed

## [1.21.3] - 2023-10-03

### Fixed

- Fix an issue in GAAS where the `aod_?` fields were not declared as `MAPL_RestartSkip` in the Registry file.

## [1.21.2] - 2023-04-07

### Removed
Expand Down
24 changes: 12 additions & 12 deletions GAAS_GridComp/GAAS_Registry.rc
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ COMP_NAME: GAAS
# Only change the Registry version when major structural changes
# occurs, not changes in content
# --------------------------------------------------------------
MAPL_REGISTRY_VERSION: 1.00
MAPL_REGISTRY_VERSION: 1.00

# ------------
# Import State
# ------------

<ImportSpec name="GAAS", cols="short_name,units,dims,vlocation,stat,refresh_interval,averaging_interval,num_subtiles,default,long_name">
# ---------|------------|-----|---|----|---|---|-----|------|--------------------------
# Short | | | V |Item|Intervl| Sub | Def | Long
# Name | Units | Dim |Loc|Type| R | A |Tiles| ault | Name
# ---------|------------|-----|---|----|---|---|-----|------|--------------------------
DELP | Pa | xyz | C | | | | | | Pressure Thickness
RH2 | 1 | xyz | C | | | | | | Relative Humidity
PLE | Pa | xyz | E | | | | | | Air Pressure
aod_a | 1 | xy | C | | | | | | AOD
aod_f | 1 | xy | C | | | | | | AOD
aod_k | 1 | xy | C | | | | | | AOD
<ImportSpec name="GAAS", cols="short_name,units,dims,vlocation,stat,refresh_interval,averaging_interval,num_subtiles,default,norestart,long_name">
# ---------|------------|-----|---|----|---|---|-----|------|-----|--------------------------
# Short | | | V |Item|Intervl| Sub | Def | No | Long
# Name | Units | Dim |Loc|Type| R | A |Tiles| ault | Rst | Name
# ---------|------------|-----|---|----|---|---|-----|------|-----|--------------------------
DELP | Pa | xyz | C | | | | | | | Pressure Thickness
RH2 | 1 | xyz | C | | | | | | | Relative Humidity
PLE | Pa | xyz | E | | | | | | | Air Pressure
aod_a | 1 | xy | C | | | | | | x | AOD
aod_f | 1 | xy | C | | | | | | x | AOD
aod_k | 1 | xy | C | | | | | | x | AOD
# ---------|------------|-----|---|----|---|---|-----|------|--------------------------
</ImportSpec>

Expand Down

0 comments on commit a5e7495

Please sign in to comment.