-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathChangeLog
More file actions
11119 lines (8009 loc) · 440 KB
/
ChangeLog
File metadata and controls
11119 lines (8009 loc) · 440 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
================================================================================
This file describes what tags were created on master and why
================================================================================
Originator: katetc
Date: December 16, 2025
Version: cismwrap_2_2_013
One-line summary: Set default smb_input = 0
Purpose of changes:
Changed the default value of smb_input for both GRIS and AIS from 1 to
0. This addressed an unexpected behavoir that caused CESM runs with
smb_input = 1 to not accept smb from the coupler. This tag also removes
smb_input = 1 as a valid value for the time being. See
https://github.com/ESCOMP/CISM-wrapper/issues/130
for more information.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: Yes
Bugs fixed (include github issue number):
- Partially addresses CISM-wrapper Issue #130, still need to do tests
Summary of testing:
aux_glc test suite on Derecho for both Intel and Gnu run. Baseline
compared to cismwrap_2_2_012. All tests DIFF with answer changes EXCEPT
tests with CISM-NoEvolve (or without cism.h files) and the new JK/DGLC
test which fails possibly due to needed changes in CMEPS for the new
grid and input file.
Expected failure of NCK test still occurs.
New baselines generated for this tag.
aux_glc/derecho/intel:
ERI_Ly10.f10_f10_mg37.I1850Clm50SpG.derecho_intel.cism-isostasy_period4 (Overall: DIFF)
ERI_Ly15.f09_g17_gris4.T1850Gg.derecho_intel.cism-isostasy_period4 (Overall: DIFF)
ERI_Ly44.f09_g17_gris20.T1850Gg.derecho_intel.cism-isostasy_period4 (Overall: DIFF)
ERS_D_Ly3.f09_g17_ais8gris4.T1850Gag.derecho_intel (Overall: DIFF)
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-cmip6_evolving_icesheet (Overall: DIFF)
ERS_Ly3_C2_D.f09_g17_gris20.T1850Gg.derecho_intel (Overall: DIFF)
ERS_Ly3.f10_f10_ais8_mg37.I1850Clm50SpGa.derecho_intel (Overall: DIFF)
ERS_Ly3.f10_f10_mg37.I1850Clm50SpG.derecho_intel (Overall: DIFF)
ERS_Ly4.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_intel (Overall: DIFF)
ERS_Ly5.f09_g17_ais8.T1850Ga.derecho_intel (Overall: DIFF)
ERS_Ly7.f09_g17_gris4.T1850Gg.derecho_intel (Overall: DIFF)
MULTINOAIS_Ly2.f10_f10_ais8gris4_mg37.I1850Clm50SpRsGag.derecho_intel.cism-change_params (Overall: DIFF)
MULTINOGRIS_Ly2.f10_f10_ais8gris4_mg37.I1850Clm50SpRsGag.derecho_intel.cism-change_params (Overall: DIFF)
SMS_D_Ly1.f09_g17_ais8.T1850Ga.derecho_intel (Overall: DIFF)
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_intel.cism-isostasy_period1 (Overall: DIFF)
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_intel (Overall: DIFF)
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve (Overall: NLFAIL)
SMS_Lm13.f10_f10_mg37.I1850Clm50SpG.derecho_intel.cism-noevolve (Overall: NLFAIL)
SMS_D_Ld5.f10_f10_ais8gris4_mg37.JK1850D.derecho_intel (Overall: FAIL)
aux_glc/derecho/gnu:
ERI_C2_Ly9.f09_g17_ais8gris4.T1850Gag.derecho_gnu (Overall: DIFF)
ERI.f10_f10_mg37.I1850Clm50SpG.derecho_gnu.cism-test_coupling (Overall: DIFF)
ERI_Ly9.f09_g17_ais8gris4.T1850Gag.derecho_gnu.cism-noevolve_ais (Overall: DIFF)
ERS_Ly11.f09_g17_gris20.T1850Gg.derecho_gnu.cism-oneway (Overall: DIFF)
ERS_Ly11.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: DIFF)
ERS_Ly3.f09_g17_gris4.T1850Gg.derecho_gnu.cism-isostasy_period1 (Overall: DIFF)
ERS_Ly5.f09_g17_gris4.T1850Gg.derecho_gnu.cism-isostasy_period4 (Overall: DIFF)
MCC_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: DIFF)
SMS_D_Ld5.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_gnu.cism-test_coupling (Overall: DIFF)
SMS_D_Ly1.f09_g17_ais8.T1850Ga.derecho_gnu (Overall: DIFF)
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_gnu (Overall: DIFF)
ERS_D_Ld9.f10_f10_mg37.I1850Clm50SpG.derecho_gnu.cism-override_glc_frac (Overall: NLFAIL)
and
NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: FAIL)
FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
** Expected failure ** See https://github.com/ESCOMP/CISM-wrapper/issues/110
Originator: katetc
Date: December 5, 2025
Version: cismwrap_2_2_012
One-line summary: Early support for the new CISM tag cism_main_2.02.003
Purpose of changes:
Support for the new CISM tag cism_main_2.02.003, updates to namelist
options, testing, externals. New CISM source submodule.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: Yes
Bugs fixed (include github issue number):
- Address CISM-wrapper Issue #126 - Namelist updates for the next cism main tag
Summary of testing:
aux_glc test suite on Derecho for both Intel and Gnu run. Baseline
compared to cismwrap_2_2_011. All tests DIFF with answer changes EXCEPT
the new JK/DGLC test which fails. Possibly due to needed changes in CMEPS
for the new grid and input file.
Expected failure of NCK test still occurs.
New baselines generated for this tag.
aux_glc/derecho/intel:
ERI_Ly10.f10_f10_mg37.I1850Clm50SpG.derecho_intel.cism-isostasy_period4 (Overall: DIFF)
ERI_Ly15.f09_g17_gris4.T1850Gg.derecho_intel.cism-isostasy_period4 (Overall: DIFF)
ERI_Ly44.f09_g17_gris20.T1850Gg.derecho_intel.cism-isostasy_period4 (Overall: DIFF)
ERS_D_Ly3.f09_g17_ais8gris4.T1850Gag.derecho_intel (Overall: DIFF)
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-cmip6_evolving_icesheet (Overall: DIFF)
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve (Overall: DIFF)
ERS_Ly3_C2_D.f09_g17_gris20.T1850Gg.derecho_intel (Overall: DIFF)
ERS_Ly3.f10_f10_ais8_mg37.I1850Clm50SpGa.derecho_intel (Overall: DIFF)
ERS_Ly3.f10_f10_mg37.I1850Clm50SpG.derecho_intel (Overall: DIFF)
ERS_Ly4.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_intel (Overall: DIFF)
ERS_Ly5.f09_g17_ais8.T1850Ga.derecho_intel (Overall: DIFF)
ERS_Ly7.f09_g17_gris4.T1850Gg.derecho_intel (Overall: DIFF)
MULTINOAIS_Ly2.f10_f10_ais8gris4_mg37.I1850Clm50SpRsGag.derecho_intel.cism-change_params (Overall: DIFF)
MULTINOGRIS_Ly2.f10_f10_ais8gris4_mg37.I1850Clm50SpRsGag.derecho_intel.cism-change_params (Overall: DIFF)
SMS_D_Ly1.f09_g17_ais8.T1850Ga.derecho_intel (Overall: DIFF)
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_intel.cism-isostasy_period1 (Overall: DIFF)
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_intel (Overall: DIFF)
SMS_Lm13.f10_f10_mg37.I1850Clm50SpG.derecho_intel.cism-noevolve (Overall: DIFF)
SMS_D_Ld5.f10_f10_ais8gris4_mg37.JK1850D.derecho_intel (Overall: FAIL)
aux_glc/derecho/gnu:
ERI_C2_Ly9.f09_g17_ais8gris4.T1850Gag.derecho_gnu (Overall: DIFF)
ERI.f10_f10_mg37.I1850Clm50SpG.derecho_gnu.cism-test_coupling (Overall: DIFF)
ERI_Ly9.f09_g17_ais8gris4.T1850Gag.derecho_gnu.cism-noevolve_ais (Overall: DIFF)
ERS_D_Ld9.f10_f10_mg37.I1850Clm50SpG.derecho_gnu.cism-override_glc_frac (Overall: DIFF)
ERS_Ly11.f09_g17_gris20.T1850Gg.derecho_gnu.cism-oneway (Overall: DIFF)
ERS_Ly11.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: DIFF)
ERS_Ly3.f09_g17_gris4.T1850Gg.derecho_gnu.cism-isostasy_period1 (Overall: DIFF)
ERS_Ly5.f09_g17_gris4.T1850Gg.derecho_gnu.cism-isostasy_period4 (Overall: DIFF)
MCC_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: DIFF)
SMS_D_Ld5.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_gnu.cism-test_coupling (Overall: DIFF)
SMS_D_Ly1.f09_g17_ais8.T1850Ga.derecho_gnu (Overall: DIFF)
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_gnu (Overall: DIFF)
and
NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: FAIL)
FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
** Expected failure ** See https://github.com/ESCOMP/CISM-wrapper/issues/110
Originator: gunterl & katetc
Date: October 10, 2025
Version: cismwrap_2_2_011
One-line summary: Update gris4 grid and add support for DGLC in CISM_wrapper
Purpose of changes:
Gunter brought in the new ISMIP6 4km GRIS grid and the CISM input file
to support it in PR#124.
Kate brought in changes to recognize DGLC in CISM-Wrapper and added a
testing compset and test for DGLC.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: Yes
Bugs fixed (include github issue number):
- Address CISM-wrapper Issue #125 - DGLC fix and tests
Summary of testing:
aux_glc test suite on Derecho for both Intel and Gnu run. Baseline
compared to cismwrap_2_2_010, for Gunter's PR testing. All tests that
include the gris4 grid pass with DIFF against baselines. All other tests
PASS.
Expected failure of NCK test still occurs.
aux_glc test suite on Derecho for both Intel and Gnu run for the final tag
and compared to the previous PR baseline. All tests PASS with B4B EXCEPT
the new JK/DGLC test which fails. Possibly due to needed changes in CMEPS
for the new grid and input file.
New baselines generated for this tag.
aux_glc/derecho/intel:
- All PASS except
ERI_Ly10.f10_f10_mg37.I1850Clm50SpG.derecho_intel.cism-isostasy_period4 (Overall: DIFF)
ERI_Ly15.f09_g17_gris4.T1850Gg.derecho_intel.cism-isostasy_period4 (Overall: DIFF)
ERS_D_Ly3.f09_g17_ais8gris4.T1850Gag.derecho_intel (Overall: DIFF)
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-cmip6_evolving_icesheet (Overall: DIFF)
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve (Overall: DIFF)
ERS_Ly3.f10_f10_mg37.I1850Clm50SpG.derecho_intel (Overall: DIFF)
ERS_Ly4.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_intel (Overall: DIFF)
ERS_Ly7.f09_g17_gris4.T1850Gg.derecho_intel (Overall: DIFF)
MULTINOAIS_Ly2.f10_f10_ais8gris4_mg37.I1850Clm50SpRsGag.derecho_intel.cism-change_params (Overall: DIFF)
MULTINOGRIS_Ly2.f10_f10_ais8gris4_mg37.I1850Clm50SpRsGag.derecho_intel.cism-change_params (Overall: DIFF)
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_intel.cism-isostasy_period1 (Overall: DIFF)
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_intel (Overall: DIFF)
SMS_Lm13.f10_f10_mg37.I1850Clm50SpG.derecho_intel.cism-noevolve (Overall: DIFF)
aux_glc/derecho/gnu:
- All PASS except
ERI_C2_Ly9.f09_g17_ais8gris4.T1850Gag.derecho_gnu (Overall: DIFF)
ERI.f10_f10_mg37.I1850Clm50SpG.derecho_gnu.cism-test_coupling (Overall: DIFF)
ERI_Ly9.f09_g17_ais8gris4.T1850Gag.derecho_gnu.cism-noevolve_ais (Overall: DIFF)
ERS_D_Ld9.f10_f10_mg37.I1850Clm50SpG.derecho_gnu.cism-override_glc_frac (Overall: DIFF)
ERS_Ly3.f09_g17_gris4.T1850Gg.derecho_gnu.cism-isostasy_period1 (Overall: DIFF)
ERS_Ly5.f09_g17_gris4.T1850Gg.derecho_gnu.cism-isostasy_period4 (Overall: DIFF)
SMS_D_Ld5.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_gnu.cism-test_coupling (Overall: DIFF)
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_gnu (Overall: DIFF)
and
NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: FAIL)
FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
** Expected failure ** See https://github.com/ESCOMP/CISM-wrapper/issues/110
Originator: jedwards & katetc
Date: Sept 11, 2025
Version: cismwrap_2_2_010
One-line summary: Second half of rpointer PR plus updated externals
Purpose of changes:
Due to some confusion, this PR includes the second half of Jim's
PR#116 that was not included in cismwrap_2_2_008. To reproduce
a test failure in CESM and insure no new ones were created, all
of the externals in cism_wrapper were updated to match
cesm3_0_alpha07d. The externals update required a few updates to
the aux_glc tests as well.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: Yes
Bugs fixed (include github issue number):
Includes Jim's updates from PR#116
Summary of testing:
aux_glc test suite on Derecho for both Intel and Gnu run. Baseline
compared to cismwrap_2_2_009, almost all tests pass with DIFF from baselines.
Unsure why all tests DIFF - but all externals were updated.
Expected failure of NCK test still occurs.
New baselines generated for this tag.
aux_glc/derecho/intel:
- All DIFF and NLCOMP DIFF except
Test Length update, no baseline compare:
FAIL ERI_Ly10.f10_f10_mg37.I1850Clm50SpG.derecho_intel.cism-isostasy_period4 BASELINE /glade/campaign/cesm/cesmdata/cseg/cesm_baselines/cismwrap_2_2_009: ERROR BFAIL baseline directory '/glade/campaign/cesm/cesmdata/cseg/cesm_baselines/cismwrap_2_2_009/ERI_Ly10.f10_f10_mg37.I1850Clm50SpG.derecho_intel.cism-isostasy_period4' does not exist
Test Length update, not long enough for aux_suite. Updated it to 4 years and verified it worked
outside of the suite. The machine is slammed and re-runing the entire suite will slow the
creation of this tag, slowing the creation of the alpha tag, and it's just not really necessary.
ERS_Ly2.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_intel (Overall: FAIL) details:
FAIL ERS_Ly2.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_intel RUN time=584
aux_glc/derecho/gnu:
- All DIFF and NLCOMP DIFF except
NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: FAIL) details:
FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
** Expected failure ** See https://github.com/ESCOMP/CISM-wrapper/issues/110
Originator: katetc
Date: Sept 4, 2025
Version: cismwrap_2_2_009
One-line summary: Namelist updates to support cism source tag cism_main_2.02.002
Purpose of changes:
Updates to the namelist file to support the new external from
cismwrap_2_2_007. These include new options, removing options,
and some new defaults. Results in answer and namelist changes
across the board.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: Yes
Bugs fixed (include github issue number):
Issue #107 in ESCOMP/CISM_wrapper - Missing entry for 'force_retreat'
namelist option in namelist_definition_cism.xml
Some work done on Issue #113 - CISM wrapper namelist updates but
not enough to close it yet.
Summary of testing:
aux_glc test suite on Derecho for both Intel and Gnu run. Baseline
compared to cismwrap_2_2_007, all tests pass with DIFF from baselines.
Expected failure of NCK test still occurs.
New baselines generated for this tag.
aux_glc/derecho/intel:
- All DIFF and NLCOMP DIFF
aux_glc/derecho/gnu:
- All DIFF and NLCOMP DIFF except
NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: FAIL) details:
FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
** Expected failure ** See https://github.com/ESCOMP/CISM-wrapper/issues/110
Originator: katetc
Date: Aug 28, 2025
Version: cismwrap_2_2_008
One-line summary: Minor update to config_archive.xml
Purpose of changes:
See issue #118 in ESCOMP/CISM_wrapper, but just two lines updated in
config_archive.xml so the archiver can handle rpointer files with
dates in the name correctly.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: No
Bugs fixed (include github issue number):
Issue #118 in ESCOMP/CISM_wrapper - Urgent change needed in config_archive.xml
Summary of testing:
aux_glc test suite on Derecho for both Intel and Gnu run. Baseline
compared to cismwrap_2_2_007, all tests pass with zero differences from
baselines.
Expected failure of NCK test still occurs.
No new baselines generated due to b4b results.
aux_glc/derecho/intel:
- All PASS
aux_glc/derecho/gnu:
- All PASS except
NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: FAIL) details:
FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
** Expected failure ** See https://github.com/ESCOMP/CISM-wrapper/issues/110
Originator: katetc
Date: May 30, 2025
Version: cismwrap_2_2_007
One-line summary: Update to new CISM external
Purpose of changes:
Update external to new cism main tag: cism_main_2.02.002, update namelist
options just enough to get test suite to work and similar answers. New
baselines generated.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: Yes, all active CISM tests. Looked at answer
changes with Bill L. and most are in calving regions as expected from these
updates.
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
aux_glc test suite on Derecho for both Intel and Gnu run. Baseline
compared to cismwrap_2_2_005, all tests pass with differences as expected.
Expected failure of NCK test still occurs.
Generated new baselines.
aux_glc/derecho/intel:
- All DIFF except noevolve which are NLFAIL
aux_glc/derecho/gnu:
- All DIFF except:
NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: FAIL) details:
FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu BASELINE /glade/campaign/cesm/cesmdata/cseg/cesm_baselines/cismwrap_2_2_005: DIFF
** Expected failure ** See https://github.com/ESCOMP/CISM-wrapper/issues/110
Originator: katetc
Date: Jan 31, 2025
Version: cismwrap_2_2_006
One-line summary: Remove Code of Conduct
Purpose of changes: Remove the CODE_OF_CONDUCT.md file
No bugs fixed, issues addressed, or testing performed. Use 2_2_005 as a baseline.
Originator: jedwards & katetc
Date: Oct 29, 2024
Version: cismwrap_2_2_005
One-line summary: Reverse initialization of stop and restart alarms
Purpose of changes:
Allows the stop alarm to be used in the initialization of the restart
alarm by initializing the stop alarm first.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: No - b4b
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
aux_glc test suite on Derecho for both Intel and Gnu run. Baseline
compared to cismwrap_2_2_004, all tests pass B4B except expected
failure. Generated new baselines.
aux_glc/derecho/intel:
- All pass
aux_glc/derecho/gnu:
- All pass except:
NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: FAIL) details:
FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
** Expected failure ** See https://github.com/ESCOMP/CISM-wrapper/issues/110
Originator: jedwards & katetc
Date: Oct 9, 2024
Version: cismwrap_2_2_004
One-line summary: Add timestamps to rpointer file names
Purpose of changes:
Adds timestamps to the names of rpointer files so that specfic restarts
can be used. Needed for cesm3_0_beta04 and coordinated with other
components.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: Does not change answers, but
see notes below about testing.
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
aux_glc test suite on Derecho for both Intel and Gnu run. Could not find
baselines for the cismwrap_2_2_002 tag in the expected locations. So,
had to compare against cismwrap_2_1_101, which had differences due to
the changes in 2_2_002. However, T-compsets cprnc verifies that all
answer fields remain b4b, just new fields added.
aux_glc/derecho/intel (compare against cismwrap_2_1_101):
ERI_Lm24.f10_f10_mg37.I1850Clm50SpG.derecho_intel.cism-isostasy_period4 (Overall: DIFF) details:
ERI_Ly15.f09_g17_gris4.T1850Gg.derecho_intel.cism-isostasy_period4 (Overall: DIFF) details:
ERI_Ly44.f09_g17_gris20.T1850Gg.derecho_intel.cism-isostasy_period4 (Overall: DIFF) details:
ERS_D_Ly3.f09_g17_ais8gris4.T1850Gag.derecho_intel (Overall: DIFF) details:
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-cmip6_evolving_icesheet (Overall: DIFF) details:
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve (Overall: DIFF) details:
ERS_Lm24.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_intel (Overall: DIFF) details:
ERS_Ly3_C2_D.f09_g17_gris20.T1850Gg.derecho_intel (Overall: DIFF) details:
ERS_Ly3.f10_f10_ais8_mg37.I1850Clm50SpGa.derecho_intel (Overall: DIFF) details:
ERS_Ly3.f10_f10_mg37.I1850Clm50SpG.derecho_intel (Overall: DIFF) details:
ERS_Ly5.f09_g17_ais8.T1850Ga.derecho_intel (Overall: DIFF) details:
ERS_Ly7.f09_g17_gris4.T1850Gg.derecho_intel (Overall: DIFF) details:
MULTINOAIS_Ly2.f10_f10_ais8gris4_mg37.I1850Clm50SpRsGag.derecho_intel.cism-change_params (Overall: DIFF) details:
MULTINOGRIS_Ly2.f10_f10_ais8gris4_mg37.I1850Clm50SpRsGag.derecho_intel.cism-change_params (Overall: DIFF) details:
SMS_D_Ly1.f09_g17_ais8.T1850Ga.derecho_intel (Overall: DIFF) details:
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_intel.cism-isostasy_period1 (Overall: DIFF) details:
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_intel (Overall: DIFF) details:
SMS_Lm13.f10_f10_mg37.I1850Clm50SpG.derecho_intel.cism-noevolve (Overall: DIFF) details:
aux_glc/derecho/gnu (compare against cismwrap_2_1_101):
ERI_C2_Ly9.f09_g17_ais8gris4.T1850Gag.derecho_gnu (Overall: DIFF) details:
ERI.f10_f10_mg37.I1850Clm50SpG.derecho_gnu.cism-test_coupling (Overall: DIFF) details:
ERI_Ly9.f09_g17_ais8gris4.T1850Gag.derecho_gnu.cism-noevolve_ais (Overall: DIFF) details:
ERS_D_Ld9.f10_f10_mg37.I1850Clm50SpG.derecho_gnu.cism-override_glc_frac (Overall: DIFF) details:
ERS_Ly11.f09_g17_gris20.T1850Gg.derecho_gnu.cism-oneway (Overall: DIFF) details:
ERS_Ly11.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: DIFF) details:
ERS_Ly3.f09_g17_gris4.T1850Gg.derecho_gnu.cism-isostasy_period1 (Overall: DIFF) details:
ERS_Ly5.f09_g17_gris4.T1850Gg.derecho_gnu.cism-isostasy_period4 (Overall: DIFF) details:
MCC_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: DIFF) details:
NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu (Overall: FAIL) details:
FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
** Expected failure ** See https://github.com/ESCOMP/CISM-wrapper/issues/110
SMS_D_Ld5.f10_f10_ais8gris4_mg37.I1850Clm50SpGag.derecho_gnu.cism-test_coupling (Overall: DIFF) details:
SMS_D_Ly1.f09_g17_ais8.T1850Ga.derecho_gnu (Overall: DIFF) details:
SMS_D_Ly1.f09_g17_gris4.T1850Gg.derecho_gnu (Overall: DIFF) details:
================================================================================
Originator: jedwards
Date: July 12, 2024
Version: cismwrap_2_2_003
One-line summary: Updates to git-fleximod
Purpose of changes:
Changes to fix bugs and improve performance of git-fleximod.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: B4B
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Handful of standalone tests on Derecho with gnu and intel compiler. All of the changes
are confined to git-fleximod code only, which was tested by hand.
No new baselines generated, for the next tag compare against 2_2_002.
================================================================================
Originator: mvertens, katetc
Date: June 28, 2024
Version: cismwrap_2_2_002
One-line summary: Reroute runoff from glc->ocn to glc->rtm
Purpose of changes:
This PR does the following:
- Changed glc->ocn to be glc->rof fields
- Fogg_rofi -> Fgrg_rofi
- Fogg_rofl -> Fgrg_rofl
- This PR also depends on Implementation of glc->ocn coupling via going through mosart CMEPS#463
- Incorporate capability of receiving multi level ocean data from mediator
- removed MCT
- Update external submodules
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: All change answers due to externals updates
Generated new baselines
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only (intel and gnu). Generated new suite of baselines.
================================================================================
Originator: jedwards
Date: May 14, 2024
Version: cismwrap_2_2_001
One-line summary: Replace manage_externals with git-fleximod
Purpose of changes:
manage-externals was a package manager used to handle mixed subversion and
git repositories. We no longer have subversion repositories and the burdon
of supporting manage-externals was deemed to be too much. git-fleximod is
a much more lightweight tool to handle the same task.
Standalone checkout supported in this tag (Yes/No): Yes with a caveat
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using git-fleximod, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
Note that the clm tag included in the cism externals here still uses manage-externals
and so to run I compset tests you must go to the components/clm directory and
run ./manage_externals/checkout_externals -e Externals_CLM.cfg first.
If No: Notes on externals used for testing:
Changes answers relative to previous tag: No answer changes from previous tag
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only (intel). Generated new suite of baselines.
================================================================================
Originator: katetc
Date: April 18, 2024
Version: cismwrap_2_1_100
One-line summary: Update Externals and advertise import fields with NoEvolve
Purpose of changes:
Changes to the NUOPC cap to make sure that CISM NoEvolve gets downscaled data
from the coupler. This tag also includes an update for the external components,
including CTSM and ccs_config, to ensure that cism-wrapper continues building
and running supported compsets.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: YES - the new CTSM external changes
answers for I compsets.
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only (intel + gnu). Generated new suite of baselines.
- ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve (Overall: DIFF) details
No longer fails COMPARE_base_rest due to new Externals (See notes under cismwrap_2_1_98)
Baseline compare fails because no baselines generated in previous tags
- All other T compsets NLFAIL due to coupler namelist changes
- All I compsets DIFF due to new CTSM external
Failures are as expected:
- FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
- Fails on master, too (not noted for earlier tags because derecho_gnu testing hasn't been run)
================================================================================
Originator: sacks
Date: April 3, 2024
Version: cismwrap_2_1_99
One-line summary: Change CISM_USE_ICESHEET to GLC_USE_ICESHEET
Purpose of changes:
Now DGLC defines similar variables. To keep the logic simple in CTSM
(which uses these variables), we'll use GLC_USE_ICESHEET in both.
For now also keeps CISM_USE_ICESHEET for backwards compatibility.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only (intel + gnu). Generated new suite of baselines.
Failures are as expected:
- FAIL ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve COMPARE_base_rest
- See notes under cismwrap_2_1_98
- FAIL NCK_Ly3.f09_g17_gris20.T1850Gg.derecho_gnu COMPARE_base_multiinst
- Fails on master, too (not noted for earlier tags because derecho_gnu testing hasn't been run)
================================================================================
Originator: katetc
Date: February 27, 2024
Version: cismwrap_2_1_98
One-line summary: Fix externals link and documentation updates
Purpose of changes:
Point to cism main tag for Derecho support instead of branch (bug fix).
Includes updates to documentation related to multiple ice sheets as
well.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only. Generated new suite of baselines.
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve FAIL
FAIL ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve COMPARE_base_rest
- Test fails due to a specific code mod in the CMEPS driver that treated
T compsets differently from others. This was fixed in CMEPS pr #425 and included
in all CMEPS tags after cmeps0.14.50. However, I will leave updating the
externals to support this to another tag as there are issues with CIME and
manage_externals currently that need to be sorted.
All tests but the one above ran and passed, including B4B baseline compares.
================================================================================
Originator: katetc
Date: December 11, 2023
Version: cismwrap_2_1_97
One-line summary: Updates for Derecho
Purpose of changes:
CISM updates to support Dercho, the new CISM tag fixes SLAP
and Intel build times in CISM. Update externals for Derecho, update test
list and PE layouts for Derecho and NUOPC-only supported going forward.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on Derecho only. Generated new suite of baselines.
ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve FAIL
FAIL ERS_D_Ly3.f09_g17_gris4.T1850Gg.derecho_intel.cism-noevolve COMPARE_base_rest
- Test fails because restart runs for 3 years instead of just one year, and then
tries to compare year 0004 to 0006. I have no idea why this is happening. Added as
a CISM-Wrapper issue: #83
All tests but the one above ran and passed, but failed baseline compares due to the
new machine name.
================================================================================
Originator: katetc
Date: June 30, 2023
Version: cismwrap_2_1_96
One-line summary: Include new CISM source tag, update externals, update test list
Purpose of changes:
Update the cism source tag to cism_main_2.01.012 to include PR #55 in
ESCOMP/CISM from jedwards: Change required for Derecho. In cism-wrapper,
all Externals updated to current versions (reflecting CTSM currently),
and test list updated to remove mct and pgi tests.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: YES
Bugs fixed (include github issue number):
No documented issues addressed here.
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed but namelist comparison fails in all cases due to changes
in data components. Baseline differences in all I cases due to CTSM updates.
================================================================================
Originator: sacks
Date: December 28, 2021
Version: cismwrap_2_1_95
One-line summary: Support one ice sheet evolving and one not evolving
Purpose of changes:
Changes needed to allow a mix of evolving and non-evolving ice sheets
in a single run. The primary need for this was moving zero_gcm_fluxes
from cism_in into the config file, but I also made some other small
changes to support this scenario. I have also added an ERI test of
this scenario to make sure that hybrid, branch and restart runs all
work when you have a mix of evolving and non-evolving ice sheets.
Also some other minor fixes.
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: NO
Bugs fixed (include github issue number):
Resolves ESCOMP/CISM-wrapper#53 (Change handling of some ice
sheet-specific variables that are currently in cism_in)
Resolves ESCOMP/CISM-warpper#54 (Do some testing with one ice sheet
evolving and the other not evolving)
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed and were bit-for-bit.
================================================================================
Originator: sacks
Date: December 27, 2021
Version: cismwrap_2_1_94
One-line summary: Update externals to versions in CESM2_3_beta07
Purpose of changes:
Update externals to versions in CESM2_3_beta07
Standalone checkout supported in this tag (Yes/No): Yes
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: YES
Changes answers for I compsets due to externals update
Also, FIELDLIST diffs for T compsets (change in cpl hist file), and
NLCOMP diffs for all tests.
Bugs fixed (include github issue number): none
Summary of testing:
Full aux_glc test suite on cheyenne and izumi.
All tests passed, with answer changes as noted above.
================================================================================
Originator: sacks
Date: October 22, 2021
Version: cismwrap_2_1_93
One-line summary: Support multiple ice sheets
Purpose of changes:
Many changes to support multiple ice sheets. Multiple ice sheet
support is now essentially working, though there are still one or two
additions needed (supporting one ice sheet evolving and the other
not; and maybe one or two other things).
This tag also moves CISM's config_archive information into CISM
instead of being in CIME.
In addition, this tag adds some multiple ice sheet tests to the
aux_glc and prealpha test suites - either modifying existing tests to
have multiple ice sheets, adding new tests. It also adds two new,
related test types (MULTINOAIS and MULTINOGRIS) for comparing runs
with multiple vs. single ice sheets, to help ensure that the multiple
ice sheet functionality is working correctly.
Standalone checkout supported in this tag (Yes/No): Yes (but note that
some externals point to hashes on branches)
(If yes, this implies that we expect to be able to build and run a
case from a standalone checkout using manage_externals, and for this
to continue to work long-term. The answer may be "No" if the set of
externals pointed to by manage_externals is broken, or if at least
one external points to a temporary branch that is may be deleted in
the near future.)
If No: Notes on externals used for testing:
Changes answers relative to previous tag: Yes
Changes answers in the topo export field from glc to lnd, but this
change doesn't impact the evolution of the model: The difference is
that, previously, outside of the CISM domain, topo was topo_virtual;
now, outside of the CISM domain, topo is 0. This change arises from a
change in CMEPS which was done for the sake of multiple ice sheets,
but seems fine in general, because these topo values shouldn't be
used outside of the CISM domain in CTSM.
This impacted the following tests in the test list:
- ERI.f10_f10_mg37.I1850Clm50SpG.cheyenne_gnu.cism-test_coupling
- ERS_D_Ld9.f10_f10_mg37.I1850Clm50SpG.cheyenne_gnu.cism-override_glc_frac
- ERI_Lm24.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel.cism-isostasy_period4
- ERS_Ly3.f10_f10_ais8_mg37.I1850Clm50SpGa.cheyenne_intel
- ERS_Ly3.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel
- SMS_Lm13.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel.cism-noevolve
As well as the following tests that I replaced but ran for this tag:
- ERS_Lm24.f10_f10_mg37.I1850Clm50SpG.cheyenne_intel