Skip to content

Commit 539c82c

Browse files
committed
hand-merge main into feature/sdrabenh/gcm_v12
2 parents 68b5752 + b74983d commit 539c82c

File tree

13 files changed

+369
-170
lines changed

13 files changed

+369
-170
lines changed

.github/workflows/validate_yaml_files.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
validate-YAML:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3.2.0
18+
- uses: actions/checkout@v4
1919
- id: yaml-lint
2020
name: yaml-lint
2121
uses: ibiqlik/action-yamllint@v3
@@ -24,7 +24,7 @@ jobs:
2424
format: colored
2525
config_file: .yamllint.yml
2626

27-
- uses: actions/upload-artifact@v3
27+
- uses: actions/upload-artifact@v4
2828
if: always()
2929
with:
3030
name: yamllint-logfile

CHANGELOG.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818

1919
### Changed
2020

21-
- Update ESMF CMake target to `ESMF::ESMF`
22-
2321
### Fixed
2422

2523
- Fixed issue with SLES15 in remapping
@@ -28,8 +26,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2826

2927
### Deprecated
3028

29+
## [2.1.5] - 2024-12-05
30+
31+
### Changed
32+
33+
- Updates for TEM_Diag to include ALL Times
34+
35+
## [2.1.4] - 2024-12-05
36+
37+
### Changed
38+
39+
- Update GitHub Actions
40+
41+
### Fixed
42+
43+
- Correct bug in `remap_restarts.py` where `N2O` was added as `N20`
44+
3145
## [2.1.3] - 2024-10-08
3246

47+
### Added
48+
49+
- Added remapping for GEOS-IT restarts
50+
- Added new res C1120
51+
- NOTE: If running on SLES15 remap tests will not be zero diff for GOCART RST but are zero diff for all other
52+
53+
### Changed
54+
55+
- Update ESMF CMake target to `ESMF::ESMF`
56+
3357
### Fixed
3458

3559
- Plots package bug fixes for EXPID names containing periods and TEM diagnostics

plots/grads_util/pause.gs

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@ function pause (args)
22
'numargs 'args
33
numargs = result
44
if( numargs > 0 )
5-
string = subwrd(args,1)
6-
num = 2
7-
while ( num <= numargs )
8-
string = string' 'subwrd(args,num)
9-
num = num + 1
10-
endwhile
11-
say string
5+
string = subwrd(args,1)
6+
num = 2
7+
while ( num <= numargs )
8+
string = string' 'subwrd(args,num)
9+
num = num + 1
10+
endwhile
11+
say string
1212
endif
1313
say 'Paused, Hit ENTER to Continue (or c to Clear and Continue) ...'
14-
pull flag
15-
if( flag = 'c' )
16-
'c'
17-
endif
18-
return
14+
pull flag
15+
'run uppercase 'flag
16+
flag = result
17+
if( flag = 'C' )
18+
'c'
19+
endif
20+
return

plots/portrait.script

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,8 @@ if( $plot == residual ) then
289289

290290
setenv ORIENTATION LANDSCAPE
291291
$grads $batch -l -c "run $GEOSUTIL/plots/res/res $expid $output $debug $seasons "
292-
$grads $batch -l -c "run $GEOSUTIL/plots/res/setup_wstar $source $expid $output $seasons "
292+
$grads $batch -l -c "run $GEOSUTIL/plots/res/setup_wstar $source $expid $output B $seasons "
293+
$grads $batch -l -c "run $GEOSUTIL/plots/res/setup_wstar $source $expid $output A $seasons "
293294
$grads $batch -l -c "run $GEOSUTIL/plots/res/setup_epflx $source $expid $output $debug $seasons "
294295
$grads $batch -l -c "run $GEOSUTIL/plots/zcmp/zcmp $expid $output $seasons "
295296
endif

plots/quickplot

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,7 @@ else
376376
setenv CMPEXP "$cmpops $cmpexp"
377377
endif
378378
endif
379+
setenv DEBUG "$debug"
379380

380381
# ECHO Setup
381382
# ----------

plots/res/epflx_diff.gs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,15 @@ say 'Defined Variables:'
124124
say '------------------'
125125
'q define'
126126
say result
127-
pause
127+
*pause
128128
'makezdif -q1 epfdiv'num''season''time' -file1 'num' -q2 epfdiv'num2''season''time' -file2 'num2' -name epdiff -ptop 1' ; 'run getenv ZDIFILE' ; epfile = result
129129

130130
say 'makezdif -q1 epfy'num''season''time' -file1 'num' -q2 epfy'num2''season''time' -file2 'num2' -name epydiff -ptop 1' ; 'run getenv ZDIFILE' ; epyfile = result
131-
pause
131+
*pause
132132
'makezdif -q1 epfy'num''season''time' -file1 'num' -q2 epfy'num2''season''time' -file2 'num2' -name epydiff -ptop 1' ; 'run getenv ZDIFILE' ; epyfile = result
133133

134134
say 'makezdif -q1 epfz'num''season''time' -file1 'num' -q2 epfz'num2''season''time' -file2 'num2' -name epzdiff -ptop 1' ; 'run getenv ZDIFILE' ; epzfile = result
135-
pause
135+
*pause
136136
'makezdif -q1 epfz'num''season''time' -file1 'num' -q2 epfz'num2''season''time' -file2 'num2' -name epzdiff -ptop 1' ; 'run getenv ZDIFILE' ; epzfile = result
137137

138138
'set dfile 'epfile

0 commit comments

Comments
 (0)