-
Notifications
You must be signed in to change notification settings - Fork 13
/
ChangeLog-PreJason.txt
2432 lines (1973 loc) · 130 KB
/
ChangeLog-PreJason.txt
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
NASA/Goddard Space Flight Center
Global Modeling and Assimilation Office
GEOS GCM Model Development
REVISION HISTORY Pre-Jason
IMPORTANT: This file can only be updated by the Model Development Group.
########################################################################
==========================================================================
13Jul2018, Takacs, CVS Tag: Icarus-3_4_ESMF7 (zero-diff to Icarus-3_4)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Modifications needed for use of ESMF7
2) Mods for RRTMG Longwave to enable zero-diff partitioning
Restart Changes: none
==========================================================================
13Jul2018, Takacs, CVS Tag: Icarus-3_4 (zero-diff to Icarus-3_3_p3)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Updates to StratChem using tag: Icarus-3_2_p9_MEM_MERGE_3
and Icarus-3_2_p9_MEM_MERGE_3-r1
2) Updates using tags: GEOSldas_m4-17_UNSTABLE
32_GOSWIM_BUG_FIX
b_LANDUPD-change
3) Updates to regrid.pl (and supporting code) to ALLOW split ocean restarts
4) Updates for Icarus-3_3_p3 (i.e., sync with GEOSadas-5_21_2)
Restart Changes: none (for standard model)
==========================================================================
13Jul2018, Takacs, CVS Tag: Icarus-3_3_p3 (zero-diff to GEOSadas-5_21_2)
Module: GEOSagcm
------------------------------------------------------------------------------
1. This is the model tag used for GEOSadas-5_21_2
2. It is zero-diff to Icarus-3_3_p2, EXCEPT for:
a) GOCART runs on Heartbeat
b) DUST emissions have been retuned (updated DU rc files)
Restart Changes: none
==========================================================================
26Apr2018, Takacs, CVS Tag: Icarus-3_3_p2 (non-zero diff to Icarus-3_3_p1)
Module: GEOSagcm
------------------------------------------------------------------------------
1. Changed fvcore_layout_rc to REMAP using Temperature with DZ Filtering
remap_option = 0
fv_sg_adj = 450
2. Update to plots.
Restart Changes: none
==========================================================================
05Apr2018, Takacs, CVS Tag: Icarus-3_3_p1 (non-zero diff to Icarus-3_3)
Module: GEOSagcm
------------------------------------------------------------------------------
1. Changed MIN_RI in MOIST from 20 to 15 microns
2. Changed ANV_ICEFALL in MOIST from 0.5 to 1.0
3. Changed fvcore_layout_rc to REMAP using Total Energy with NO DZ Filtering
remap_option = 2
fv_sg_adj = -1
4. Modified MAPL_PI to use MAPL_R8 structure. This fixes AREA calculation withing DYCORE.
5. On DISCOVER, Uses: Intel-18.0.1.163, MPT-2.17
6. "FAST" compiler options used only for FV3 (Note: zero-diff to SLOW options)
Restart Changes: none
==========================================================================
27Mar2018, Takacs, CVS Tag: Icarus-3_3 (non-zero diff to Icarus-3_2_p9)
Module: GEOSagcm
------------------------------------------------------------------------------
1. Changed MIN_RI for MOIST from 6 to 20 microns
2. Changed to Intel18 with "FAST" compiler options.
3. Changed FV Dynamics to REAL*4.
4. Modified FV and PHYSICS for better conservation of Dry Mass.
Restart Changes: moist_import_rst (if binary format, simply Bootstrap)
==========================================================================
20Feb2018, Takacs, CVS Tag: Icarus-3_2_p9 (non-zero diff to Icarus-3_2_p8)
Module: GEOSagcm
------------------------------------------------------------------------------
1. Set optics tables Chou-Suarez for SW and and RRTMG for LW.
2. Set HEARTBEAT to a minimum of 450 seconds.
3. Updated Cloud Water and Cloud Ice effective Radii.
4. New Methodology for IAU. Default: Traditional P3C6T6_DF
4DIAU: REPLAY_MODE: Exact_4D
CORRECTOR_DURATION: 10800 (3-hours)
Restart Changes: irrad_internal_rst (for RRTMG). Simply Bootstrap.
==========================================================================
19Jan2018, Takacs, CVS Tag: Icarus-3_2_p8 (non-zero diff to Icarus-3_2_p7)
Module: GEOSagcm
------------------------------------------------------------------------------
1. Enhancement to the diffusion directly in the sponge layer.
2. Set optics tables back to Chou-Suarez for both SW and LW.
Restart Changes: solar_internal_rst (Back to Chou-Suarez). Simply Bootstrap.
==========================================================================
08Jan2018, Takacs, CVS Tag: Icarus-3_2_p7 (non-zero diff to Icarus-3_2_p6)
Module: GEOSagcm
------------------------------------------------------------------------------
1. Modified GEOS_MoistGridComp.F90 to have RAS settings behave like x0027_ctl DAS experiments.
No resolution dependency for AGCM.rc file.
Restart Changes: none
==========================================================================
15Dec2017, Takacs, CVS Tag: Icarus-3_2_p6 (non-zero diff to Icarus-3_2_p5)
Module: GEOSagcm
------------------------------------------------------------------------------
1. A bug fix in RRTMG shortwave found by Max that will fix the SW Albedo issues Gary has seen in x0029 (Land & Radiation Consistency)
2. An update in FV3 that allows us to use the non-monotonic advection schemes for momentum and thermodynamic
variables without any degradation in edge effects, plus the truly linear PPM schemes in the sponge layers.
Restart Changes: none
==========================================================================
06Dec2017, Takacs, CVS Tag: Icarus-3_2_p5 (non-zero diff to Icarus-3_2)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Updates to FV3 dynamics. Resolution dependency is automatic.
2) CBL_TPERT = 0 by default. Brings back PBL heights.
3) Revert REPLAY parameters back to version from GEOSadas-5_18_0 (x0029 configuration)
Restart Changes: none
==========================================================================
__Nov2017, Takacs, CVS Tag: Icarus-3_2 (zero-diff to Icarus-3_1 when NOT running Brown Carbon)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Merge with tag: asd+Icarus-3_0_UNSTABLE-a2 to allow option for Brown Carbon
2) Enable IAU_DIGITAL_FILTER as default for DAS and REPLAY modes. (non-zero diff)
3) Changed BKGAVE default to 0 (from 2/3 * CORRECTOR_DURATION). (non-zero diff)
A better approach is to use: IAU_DIGITAL_FILTER: YES
Restart Changes: none
==========================================================================
__Nov2017, Takacs, CVS Tag: Icarus-3_1 (zero-diff to Icarus-3_0 when NOT running NewLand)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Implement Code to enable option for running NewLand
==========================================================================
04Oct2017, Takacs, CVS Tag: Icarus-3_0 (non-zero diff to Icarus-2_0_p1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Implement R8 version of FV3 VLAB p3 dynamics. Note, current R4 version loses Dry-Mass. R8 version conserves.
2) Updated Single-Moment Physics (MOIST Processes)
3) AGCM now runs RRTMG Shortwave Radiation and Chou-Suarez Longwave Radiation by default (NOTE: cannot use old solar_internal restarts)
4) Implement cubic time-interpolation option for MKIAU in REPLAY (Default: Linear)
5) Updates to MAPL_Base and MAPL_cfio
6) Updates to QuickPlots
7) Implement bugfix to cloudnew.F90 as in Icarus-1_0_p2
8) Changed Dry-Mass value in rs_scale.F90 from 983.24 mb (MERRA-2 value) to 983.05 mb due to use of GMTED topography.
Mean TOPO difference: 1.58436898227561 meters
Note: 983.05 mb is very similar to value based on ERA-Interim data.
9) Modified GEOS_TurbulenceGridComp.F90 with more REAL*8 code to improve Dry-Mass Conservation
10) Due to updated FVCORE, GWD BGSTRESSMAX Default changed from 1.2 to 0.9 for 72-levels (Note: 132-levels probably requires re-tuning).
NOTE: Regular REPLAY to itself FAILS under certain Predictor/Corrector configurations.
(Reason UNKNOWN) P3_C6 and P0_C1 seem to work properly.
Restart Changes: YES
RRTMG requires new solar_internal restart.
Simply delete old restart, and bootstrap new RRTMG restart.
==========================================================================
24Aug2017, Takacs, CVS Tag: Icarus-2_0_p1 (non-zero diff to Icarus-2_0)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Implement bugfix to cloudnew.F90.
A "typo" error was introduced into Icarus-1_0 when incorporating Tag: mjs100__msuarez to inhibit SNOW during thunderstorms.
The impact of the error directly affected cloud-liquid water and low-level optical depths.
2) Changed Dry-Mass value in rs_scale.F90 from 983.24 mb (MERRA-2 value) to 983.05 mb due to use of GMTED topography.
Mean TOPO difference: 1.58436898227561 meters
Note: 983.05 mb is very similar to value based on ERA-Interim data.
Restart Changes: none
==========================================================================
24Aug2017, Takacs, CVS Tag: Icarus-1_0_p2 (non-zero diff to Icarus-1_0_p1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Implement bugfix to cloudnew.F90.
A "typo" error was introduced into Icarus-1_0 when incorporating Tag: mjs100__msuarez to inhibit SNOW during thunderstorms.
The impact of the error directly affected cloud-liquid water and low-level optical depths.
2) Changed Dry-Mass value in rs_scale.F90 from 983.24 mb (MERRA-2 value) to 983.05 mb due to use of GMTED topography.
Mean TOPO difference: 1.58436898227561 meters
Note: 983.05 mb is very similar to value based on ERA-Interim data.
Restart Changes: none
==========================================================================
12Jun2017, Takacs, CVS Tag: Icarus-2_0 (non-zero diff to Icarus-1_0_p1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Updates from E.Nielsen to remove TR dependence on GMI.
2) GMI Updates to Stratospheric ICE fall speeds.
3) Introduce new terminology for Regular REPLAY (REPLAY_PREDICTOR, REPLAY_CORRECTOR, etc.)
4) Implement Anton's 2-Phase GOCART Tag: asd-Icarus-UNSTABLE-a3
5) Modified PHYSICS dry-mass dwdt calculation to reduce roundoff error
6) Implement Ensemble AMIP (EMIP) strategy within gcm_run.j
7) Modified MKIAU to allow creating Increments on BKG grid. Default is: GRIDINC = ANA
Restart Changes: YES
Additional IMPORT Restart: gocart_import_rst (Bootstrappable)
==========================================================================
10Apr2017, Takacs, CVS Tag: Icarus-1_0_p1 (non-zero diff to Icarus-1_0)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Implement fix to stop the convective transport of the NI tracers by RAS.
RAS is producing negative constituents which may cause the Radiation to crash when GOCART is not called on the HeartBeat.
2) Implement essentially zero-diff updates from Pete Colarco for CO. (Anton's tag: asd-Icarus-UNSTABLE-a0)
Differences arising from change in order-of-operations.
3) Implement fix for the liquid radii limits as well as integrated Dongmin's ICEFLAG=4 changes for MODIS C6
4) Move to using MPT.
Restart Changes: none
Note: Compiling/Building on dali is no longer supported due to use of MPT !!!
==========================================================================
28Mar2017, Takacs, CVS Tag: Icarus-1_0 (non-zero diff to Heracles-5_4_p3)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Modified Constraints to NOT include QV updates from Chemistry
2) Modified Constraints to act only where mass in layer has changed
3) Update Eric Nielson's Chemistry to tag: Heracles-5_4_p3_JEN_GMI-r2 (-r3 for TR directory)
4) Minor modification to GEOS_GcmGridComp.F90 to allow for Regular REPLAY of 4DIAU algorithm
5) Zero-diff Update to Anton Tag: asd-Heracles-UNSTABLE+multi_dust-a3
6) Implement Anton's Tag for GOCART Alarms: asd-Heracles-UNSTABLE+H2O2_HNO3_RECYCLE_ALARMS
7) Hardwire SOLAR_DT, IRRAD_DT, GOCART_DT to 3600
8) Implement Icarus Boundary Area to use GMTED TOPO data.
9) Updated and re-tuned GWD and Turbulence for used with Icarus/GMTED TOPO variances.
10) Added NUDGING option for Regular REPLAY.
11) Incorporated EnADAS-5_16_7p1 updates for Chem_Aod.F90 and GOCART_GridComp.F90
12) Updated Tag: mjs100__msuarez of cloudnew.F90 to inhibit SNOW during thunderstorms.
13) Modified AREAMEAN calls to use fast method. This regresses correctly, but needs testing for
dry mass conservation.
14) Modified defaults for GWD Parameters: BGSTRESSMAX=2.25 and PGWV=8 for LM=132 case.
15) Modified CAPE diagnostic and Bouyancy calculation in MOIST.
16) Re-introduce code in GOCART to compute GOCART_REFERENCE_TIME based on GOCART_DT and HEARTBEAT.
Restart Changes: YES. ALL RESTARTS require require REGRIDDING (or BOOTSTRAP) to new Topography
==========================================================================
Nov092016, Takacs, CVS Tag: Heracles-5_4_p3 (non-zero diff to Heracles-5_4_p2)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Added emission factors for sea salt and dust at C720 and finer resolutions
2) A variety of fixes for memory leaks.
3) Update StratChem to tag: Heracles-5_4_p2_JEN_SC
4) Updates to QUICKPLOT
Restart Changes: none
==========================================================================
Oct162016, Takacs, CVS Tag: Heracles-5_4_p2 (non-zero diff to Heracles-5_4_p1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Implement CallBack method between GOCART and 2-Moment Microphysics (zero-diff for single-moment microphysics)
2) Updates/corrections to GMIChem
3) Removed moving of Large-Scale Precip/Precip_Flux for Chemistry with the Single-Moment Microphysics.
The 2nd-Momemt Microphysics moves the Large-Scale Precip/Precip_Flux for Chemistry as in Heracles-5_4_p1.
4) 2nd-Moment Microphysics updated to tag: t_H54p1_donifan_0
5) New format for Native Cube nc4 output (cube faces are now ensemble members)
6) Grads Utility (dc.gs) has been updated to read both Old and New Native Cube formats.
Restart Changes: none
==========================================================================
28Sep2016, Takacs, CVS Tag: Heracles-5_4_p1 (non-zero diff to Heracles-5_4)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Update to surfacelayer.F90 to fix incorrect approximation when using increased vertical levels (non-zero diff).
2) Corrected error in Heracles-5_3 and Heracles-5_4 to properly move 3-D Precip Flux for Aerosol Scavenging
3) New Physics Tunings for improved NPW Skill
4) Added updated 132 Levels for set_eta
5) Modified AGCM and MKIAU for:
a) Zero-diff when replaying to itself
b) Implement 4D option
6) Updates to StratChem: Extention from 35 to 52 species now includes all major CFCs, Halons, HCFCs,
very short-lived bromocarbons, and two transport tracers.
7) Updates to GMIChem
Restart Changes: none
==========================================================================
08Sep2016, Takacs, CVS Tag: Heracles-5_4 (non-zero diff to Heracles-5_3)
Module: GEOSagcm
------------------------------------------------------------------------------
1) MAJOR update to Single-Moment Microphysics producing improved C360 NWP Skill
2) Change to default fvcore_layout_rc to REMAP using local gmao_cubic on Total Energy
3) Merge with Yuri to provide baseline coupled model tag. (zero-diff to Heracles-5_3)
4) Fix bug for UNDEF treatment within CubeToLatLon.F90 and MAPL_HorzTransform.F90 (non-zero diff to H53)
5) Updated TURB code for zero-diff rewrite plus added TKE diagnostic
6) Removed unnecesssary RESTART TYPE from AGCM.rc. Changed logic for CHECKPOINT TYPE.
a) Use CHECKPOINT_TYPE if it exists
b) Use Model Default if CHECKPOINT_TYPE does not exist or if CHECKPOINT_TYPE = 'default'
c) Implement AGCM.rc parameter: DEFAULT_CHECKPOINT_TYPE (pnc4)
Restart Changes: none
==========================================================================
30Jun2016, Takacs, CVS Tag: Heracles-5_3 (pushed, zero diff)
29Jun2016, Takacs, CVS Tag: Heracles-5_3 (pushed, non-zero diff)
27Jun2016, Takacs, CVS Tag: Heracles-5_3 (pushed, zero diff)
24Jun2016, Takacs, CVS Tag: Heracles-5_3 ( non-zero diff to Heracles-5_2_p1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Updates to Aerosols (following: AeroChem-Heracles-5_2-b9), including tag: b_AMM_H521MOPS_move2d
for single moment diagnostic partition of precip, and tag: AMM_H53U_moistforFP for updated 2-Moment
2) Updates to GMI, StratChem, and Tr_GridComp (zero-diff for default case)
3) Updates to QUICKSTAT
4) Pushed on 27Jun2016 to correct CLOUDNEW diagnostic and to add MAPL_SKIP to TR_GridComp IMPORT SPEC (Zero-Diff)
5) Pushed on 29Jun2016 to correct REGRESSION for GOCART OPS Sulfates (Non-Zero Diff, minor error)
6) Pushed on 29Jun2016 to correct error in Chem_RegistryMod.F90 in accounting GOCART components
Note: Binary GOCART Restarts will be incorrect if using original Heracles-5_3 tag (prior to 29Jun2016)
7) Pushed on 30Jun2016 to update Chem_BundleMod.F90 (Zero-Diff, new optional arguments)
Restart Changes: yes
Additional Internals to: gocart_internal_rst (Bootstrappable)
Additional Imports to: tr_import_rst (Bootstrappable)
==========================================================================
08Jun2016, Takacs, CVS Tag: Heracles-5_2_p1 (non-zero diff to Heracles-5_2)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Updates to ADD_INCS, PHYSICS, and AGCM GridComp to perform proper mass-weighted Temperature tendencies.
2) Added option for mass-weighting Analysis Temperature Tendencies (ANA_IS_WEIGHTED, DEFAULT=NO)
3) Updates to QUICKPLOT
Restart Changes: none
==========================================================================
25May2016, Takacs, CVS Tag: Heracles-5_2 (AKA: Heracles-5_2_BETA_1MOPS, non-zero diff to Heracles-5_1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Updates to 2-Moment Microphysics
2) Revert back to Single-Moment Microphysics of e5131_fp (Ganymed-4_1),but with fixed bug in PRECIP3 argument list
3) Merge LAND with tag: SM-LDASsa_m3-16_0_p2_CatchCatchCN_for_MERRA3
4) Fix to CO2 Emission Files
5) Merge to incorporate Yury's Heracles-4_3_UNSTABLE-CICE_thermo (zero diff when running DataSeaIce)
6) Changed default for BKGAVE in Regular REPLAY to (2/3)xREPLAY_FREQUENCY (Nominally 4 hours)
7) Fixed averaging interval related to BKGAVE in Regular REPLAY (bug caused -3hr endpoint to be omitted in average)
8) Fixed bug in GWD Mid-Layer GeoPotential Height Calculation
9) Updates to QUICKPLOT
10) Updates to MAPL
11) Updates to GMI
12) Changed ROTATE from TRUE to FALSE for Dump_&_Splash WIND INCREMENTS in DyCorGridComp
13) Updates to fvcore_layout.rc (defaults to so-called "2b3b" case based on H52 Forecast Layout Experiments)
14) Updates to sw_core.F90 and tp_core.F90 associated with fvlayout "2b3b"
15) Changed Defaults to Regular REPLAY Grid Transforms within MKIAU Source Code to BiLinary Interpolaton:
BKG2ANACNSRV: 0 ( Note: Conservative Transformation creates Non-Wavenumber 1 Winds at Poles )
ANA2BKGCNSRV: 0 ( Note: Conservative Transformation creates Non-Wavenumber 1 Winds at Poles )
16) NOTE: Lat/Lon version of GEOSagcm no-longer regresses. Last known version which regresses is Heracles-4_3
Investigation still in progress to determine cause.
Restart Changes: none
==========================================================================
12Jan2016, Takacs, CVS Tag: Heracles-5_1 (non-zero diff to Heracles-5_0)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Updates to CO emissions
2) Updates to GMIchem_GridComp
3) Updates to TR_GridComp
4) Default to Use SST Cool Layer
5) Changed Defaults for SST and Regular REPLAY Grid Transform parameteres within AGCM.rc:
INTERPOLATE_SST: 0 or 1 ( Defaults are now model decisions based on grid resolution comparisons )
BKG2ANACNSRV: 0 or 1 ( Defaults are now model decisions based on grid resolution comparisons )
ANA2BKGCNSRV: 0 or 1 ( Defaults are now model decisions based on grid resolution comparisons )
Restart Changes: yes
Additional Imports to: tr_import_rst (Bootstrappable)
==========================================================================
07Dec2015, Takacs, CVS Tag: Heracles-5_0
Module: GEOSagcm
------------------------------------------------------------------------------
1) Updates to 2nd-moment microphysics
2) Updates GMIchem_GridComp to tag: Heracles-UNSTABLE_GMI as of 10Nov2015
3) Update to tag: mat-HU-FixRRTMGLW-v_1 to fix regression issue in RRTMG
4) Updates to QUICKSTAT to compute Confidence
5) Updates to QUICKPLOT
6) Fixed Reverse Order Argument List error for cloudnew.F90 (wrt: VFALLRN & VFALLSN)
7) Implemented RASPARAM.F90 and CLDPARAM.F90 for clarity. (zero-diff)
8) Updated DUST Optical Tables from v14.2 to v15.3
Note: This change affects ALL Emission Types: OPS, MERRA2, PIESA, etc.
The only way to get the original MERRA2 emission files is to run with the MERRA2 Tag.
9) Fixed SS_GridComp to maskout emissions over Great Lakes and Capsian Sea.
10) Changed Default Parameters: SYNCTQ = 1 (ON)
PRECIPRAD = 1 (ON)
CLDMICRO = 2MOMENT
11) Changed Single-Moment MicroPhysics behavior. (Note: Default is 2-Moment)
Restart Changes: none
==========================================================================
21Sep2015, Takacs, CVS Tag: Heracles-4_3 (zero-diff to Heracles-4_2)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Implemented new saltwater merge with CICE (zero-diff if disabled)
2) Updates to 2nd-moment microphysics, tag: b_HR42_091015_2M
3) Updates Surface/Shared/Raster from Sarith for latest BC development
4) Pushed Tag on 22Oct2015 to correct small bug in cldmacro.F90 for 2-Moment Microphysics (non-zero diff)
Restart Changes: none
==========================================================================
14Aug2015, Takacs, CVS Tag: Heracles-4_2 (zero-diff to Heracles-4_1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Added AGCM.rc parameter: MAPL_ENABLE_BOOTSTRAP
The Default valus is "NO", which means that ALL restart files must exist and
the must contain ALL variables used by the model.
By setting MAPL_ENABLE_BOOTSTRAP: YES
the model will bootstrap all missing variables from the restarts which
are classified as OPTIONAL. This works for both binary and nc4 files.
Currently, all variables within the model restarts are OPTIONAL (by default)
except for:
1) ALL variables within fvcore_internal_rst (except DZ and W)
2) Q-Vapor within moist_internal_rst
3) All variables within catch_internal_rst
You can still bootstrap individual restarts by placing the "+" or "-"
as before, together with MAPL_ENABLE_BOOTSTRAP: NO
However, there is no mechanism to bootstrap REQUIRED variables.
Only variables that are classified as OPTIONAL are bootstrappable.
Restart Changes: none
Note: +/- notation no longer needed
==========================================================================
04Aug2015, Takacs, CVS Tag: Heracles-4_1 (non-zero-diff to Heracles-4_0)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Modified GOCART to use ExtData for IMPORTS
2) Updates to QUICKPLOT
3) Fixed LandIce ALBEDO diagnostic (zero-diff)
4) Added GCMICHEM and STRATCHEM setups and HISTORY
5) Added rs_numtiles(.F90, .x) to check ocean tiles for consistency with BCs
Restart Changes: none
Note: Converts to NC4 Restarts automatically
==========================================================================
19Jun2015, Takacs, CVS Tag: Heracles-4_0 (non-zero-diff to Heracles-3_0)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Added MERRA2-DD option within GOCART Chemistry
2) Implemented CMPOPS (MERRA-1 and MERRA-2) within Quickplot, plus other plot updates
3) Modified Constituent Scaling to Preserve Dry Mass Mixing Ratio
4) Used REAL*8 selectively within Turbulence to preserve Constituent Mass during mixing
5) Added option for Triangular Truncation within MKIAU
6) Corrected subtle error related to REPLAY_Q = NO within MKIAU_GridComp
7) Added feature to write AGCM_IMPORT files during Regular REPLAY.
This results in Zero-Diff when using those files to force an EXACT REPLAY.
8) Merged updates from 2nd-Moment Microphysics, tag: t_HR051815_2M_updated
Merged updates from branch: b_HR051815_donifan as of June 19, 2015
(default, zero-diff when not used)
9) GMIchem: ExtData.rc is now used to import emissions, replacing Chem_UtilMPread.
When GMICHEM is the AERO_PROVIDER, the aerosols now populate the AEROSOLS bundle in the AERO state.
10) B.Putman's updates to COSP Simulator
11) M2R12K FV3 Dynamics
12) Convert to NC4 Restats automatically
13) Spread surface diffusion over lowest 50-meters
Restart Changes: none
Note: Converts to NC4 Restarts automatically
==========================================================================
==== New TAG Names ====
==========================================================================
20Mar2015, Takacs Heracles-3_0 (zero diff to Heracles-2_1 but with Anton's New GOCART)
non-zero diff when running GOCART.data (formally known as PCHEM)
Module: GEOSagcm
Heracles-2_1 (aka Heracles-1_0_BETA3) (Like Heracles-1_0_BETA2 but with CATCH fix and SOLAR Round-off update)
Heracles-2_0 (aka Heracles-1_0_BETA2) (zero diff to Heracles-1_0_BETA1 but with added TRACER Component)
Heracles-1_1 (aka Heracles-1_0_BETA1) (zero diff to Ganymed-4_1)
Heracles-1_0 (aka Heracles-1_0_BETA0) (zero diff to Ganymed-4_0)
with development under: Heracles_UNSTABLE
Restart Changes: none
==========================================================================
17Mar2015, Takacs, CVS Tag: Heracles-1_0_BETA3 (non-zero-diff to Heracles-1_0_BETA2)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Fix to GEOS_CatchGridComp.F90 to set SCALE4Z0 in RUN2. This was inadvertently omitted in Ganymed-4_1 (non-zero diff).
2) Minor order-of-operation change in GEOS_SolarGridComp.F90 to be compliant with upcoming GOCART changes (round-off).
3) Updates to RRTMG to fix blow-up when running C360 (non-zero diffs).
Restart Changes: none
==========================================================================
04Mar2015, Takacs, CVS Tag: Heracles-1_0_BETA2 (zero-diff to Heracles-1_0_BETA1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Includes the addition of the Passive Tracer Component: GEOSchem_GridComp/TR_GridComp
2) Updates to MAPL
3) Updates to facillitate Cycled REPLAY with Forecasts
Restart Changes: yes
New Boot_Strappable Restarts for Tracer Component:
a) tr_internal_rst
b) tr_import_rst
==========================================================================
09Feb2015, Takacs, CVS Tag: Heracles-1_0_BETA1 (pushed)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Include SKIN_SST algorithm from Santha Akella (Zero-diff when disabled, Default: off)
2) Changed default timestep for C24, C48, and a72, b72 resolutions from 1800 to 900.
Restart Changes: none
==========================================================================
26Jan2015, Takacs, CVS Tag: Heracles-1_0_BETA1 (zero diffs from Ganymed-4_1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Moved to use MVAPICH2 2.1a at NCCS, Open MPI 1.8.1 on the desktop, MPT 2.10r6 at NAS, and some updates for Janus.
2) Moves to Baselibs 4.0.6 since that is the best supported (in the case of Open MPI, only supported) by newer MPI stacks.
3) Removed vestigial import SWNDSRF from SOLAR to simplify interface with RadAPP (Anton Darmenov).
4) Added new no-aerosol fluxes within IRRAD (Pete Colarco).
5) Added New MicroPhysics option (Default is FALSE). This updated affects moist internal and import restarts.
6) Updates to QUICKPLOT enables option for Regional plots.
7) Correction within REGULAR REPLAY now cycles OCEAN and ATMOSPHERE within PREDICTOR step. Previous versions only cycled ATMOSPHERE.
8) Updates to StratChem
Restart Changes: yes
a) irrad_internal_rst
b) solar_import_rst
c) moist_internal_rst
d) moist_import_rst
Note: To create restarts you should convert/regrid existing restarts to nc4.
However, you could also prefix the restart names with a "+" in the AGCM.rc
eg.) MOIST_INTERNAL_RESTART_FILE: +moist_internal_rst
MOIST_INTERNAL_RESTART_TYPE: pbinary
MOIST_INTERNAL_CHECKPOINT_FILE: moist_internal_checkpoint
MOIST_INTERNAL_CHECKPOINT_TYPE: pbinary
==========================================================================
11Dec2014, Takacs, CVS Tag: Ganymed-4_1 (non-zero diffs from Ganymed-4_0_p1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Modified default values for drag parameterizations:
TURBULENCE_C_B: 1.02e-7
EFFGWORO: 0.25
SCALE4Z0: 2.
2) Correction within REGULAR REPLAY now cycles OCEAN and ATMOSPHERE within PREDICTOR step. Previous versions only cycled ATMOSPHERE.
Restart Changes: none
==========================================================================
10Nov2014, Takacs, CVS Tag: Ganymed-4_0_p1 (non-zero diffs from Ganymed-4_0)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Implement New Spectral Laplacian Solver for WINDFIX when running DAS or REPLAY.
2) Implement proper vector horztransform for cube within MKIAU.
Ganymed-4_0 used a kludge which treated winds as tracers, and then did a pole fix.
3) Implemented optional Conservative HorzTransform for REPLAY
4) Implemented optional BKGAVE for REPLAY
5) Added VECTOR_TYPE to Wind Tendency Exports (for HISTORY)
6) Updated GEOS_Util/plots
7) Updates to gcm_setup and corresponding gcm_[scripts]:
gcm_archive.j
gcm_convert.j
gcm_forecast.tmpl
gcm_post.j
gcm_regress.j
gcm_run.j
gcm_setup
Restart Changes: none
==========================================================================
29Sep2014, Takacs, CVS Tag: Heracles-1_0_BETA0 (zero diffs from Ganymed-4_0)
Module: GEOSagcm
------------------------------------------------------------------------------
1) This tag is a zero-diff baseline from Ganymed-4_0 for Heracles development.
It includes changes necessary for the gfortran compiler, as well as updates
to the REGRID procedures to make them "netcdf aware".
Other changes have also been included but result in a "zero-diff" if run in default mode.
Restart Changes: none
==========================================================================
11Jul2014, Takacs, CVS Tag: Ganymed-4_0 (zero diffs from Ganymed-4_0_BETA12
Module: GEOSagcm except when using RRTMG and/or ExtData)
------------------------------------------------------------------------------
1) General edits to g5_modules, Config/, and Applications/GEOSgcm_App to
allow running on GMAO desktops
2) Added cloning capability to gcm_setup. This should allow one to clone a
previous G40 (or later) experiment
3) Added RRTMG (GPU enabled) code for shortwave radiation and updated to
RRTMGPU code for longwave (enabled via AGCM.rc flag)
4) Changes to Mie table handling to improve performance (zero-diff)
5) Compile diaglist.o in Chem_Shared at -O0 to improve compilation time (zero-diff)
6) Merge changes from pchakrab-docfix for documentation.
7) Keep preprocessed *___.f90 files from .P90 processing for debugging. Also
change .P90 preprocessing for Mac OS X
8) Edits to MAPL_LoadBalance.F90:
a) Require communicator to be passed into BalanceCreate
b) Standardize naming for Handles
9) Edits to FVdycoreCubed Make system for PGI and TAU
10) General edits to Physics to enable CUDA 5 and cleanup of CUDA code
11) Edits to Raster Make system for PGI
12) Remove some references to older machines and compilers in g5_modules and
Config/ESMA_arch.mk
13) Edits to scm_setup to allow SCM execution on desktops and at NAS.
14) You can now ask for Fields from Bundles in HISTORY.rc, as in:
Bundle%Field. History will get the appropriate field from the bundle
specified.
15) Changes to ExtData:
a) ExtData.rc has changed: new fields (conservative regridding)
b) Behavior when specifying non-zero time template has changed (non-zero-diff
from previous ExtData)
c) New capabilities and bug fixes
16) New options for MAPL_CFIORead (conservative, voting, ignoreCase)
17) Option for SYNCTQ (Default: 0, OFF)
18) Updated GMIchem and StratChem to Tag: Ganymed-4_0_BETA11_JEN
19) Updates to regrid.pl and its underlying source codes:
a) When going cube to cube, regrid.pl now allows you to go from course to fine resolution.
b) When going cube to cube, pchem_internal, gocart_internal, and pchem_internal are now handled with interp_restarts.x instead of c2c.x
c) If the final resolution is cubed, regrid.pl prompts asks for what number of vertical levels you are going to (72 or 137) and invokes interp_restarts.x properly
to go to the requested number of levels on output. The fvcore_internal and moist_internal are zero diff, but the others will not since they are now done with a different utility
which utilizes the vertical remapping algorithm.
Restart Changes: none
==========================================================================
12Aug2014, Takacs, CVS Tag: MERRA-2_AGCM_p2 (zero diffs from MERRA-2_AGCM_p1)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Patch to GEOS_LakeGridComp.F90 for MERRA-2_AGCM_p1 to remove SPECS for TAUXW and TAUYW
Restart Changes: none
==========================================================================
05Aug2014, Takacs, CVS Tag: MERRA-2_AGCM_p1 (zero diffs from MERRA-2_AGCM)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Patch for MERRA-2_AGCM to include new diagnostics: TSKINW and TSKINI
for use in the OCN Collection.
2) Added: fix_undef.F90 utility to fix UNDEF values below topography for PRS collections.
Restart Changes: none
==========================================================================
12May2014, Takacs, CVS Tag: MERRA-2_AGCM (zero diffs from Ganymed-4_0_BETA12)
Module: GEOSagcm
------------------------------------------------------------------------------
1) Identical to GEOS AGCM used for MERRA-2
Restart Changes: none
==========================================================================
12May2014, Takacs, CVS Tag: Ganymed-4_0_BETA12 (zero diffs from Ganymed-4_0_BETA11)
Module: Ganymed
------------------------------------------------------------------------------
1) Updated HISTORY_MERRA2.rc.tmpl
2) Updates in GEOS_Util/plots to accommodate forecasts longer than 5 days
Restart Changes: none
==========================================================================
11Apr2014, Takacs, CVS Tag: Ganymed-4_0_BETA11 (zero diffs from Ganymed-4_0_BETA10)
Module: Ganymed
------------------------------------------------------------------------------
1) Added new PRLAND diagnostic for Precip over Land (A.Molod)
2) Fixed bug in diagnostic in StieglitzSnow.F90 (B.Zhao)
3) Fixed bug in GFIO_remap.f90 (M.Thompson and A.Molod)
4) Updates to post and plots package (L.Takacs)
5) Added 137-level option in GMAO_Shared/GMAO_hermes/m_set_eta.F90
Note: set_eta.F90 in GEOS_Util/post and m_set_eta.F90 GMAO_hermes need to be synced (at a future date) into one area.
6) Note: Pushed Tag on April 15 to accomodate modified MERRA-2 LAND Collection diagnostics
Restart Changes: none
==========================================================================
13Mar2014, Takacs, CVS Tag: Ganymed-4_0_BETA10 (non-zero diffs from Ganymed-4_0_BETA9 when using GOCART)
Module: Ganymed
------------------------------------------------------------------------------
1) Updates to SU_GridComp resource files to use new version of volcanic emissions
2) Moved SatSim to the HEAD (zero-diff)
3) Updates to QUICKPLOT package
4) Sync with GEOSadas-5_12_3_UNSTABLE for shared utilities
5) Bug fix in MAPL_CFIO.F90 (specifically for vector HISTORY output using ":" syntax at same resolution)
6) Switch to using Baselibs/v4.0.3 (zero-diff)
7) Modified HISTORY.rc for MERRA2
Restart Changes: none
==========================================================================
25Feb2014, Takacs, CVS Tag: Ganymed-4_0_BETA9 (non-zero diffs from Ganymed-4_0_BETA8)
Module: Ganymed
------------------------------------------------------------------------------
1) Proper horizontal transform for d-grid winds for cube-to-cube
(the winds components must be specified with a semicolon (;) separator in the collection.
Otherwise, this has no effect. This is relevant to the output of trajectories for the tangent-linear model.
2) Fixed a memory leak in MAPL_LocStreamTransform (in XformCreate)
3) Overwrote the lats and lons with indices if the output is on cubed-sphere
4) "fixed" improper handling of U_CGRID and V_CGRID in the FV3 (now the code does not die, and the these are 0)
5) Fixed a bug in HorzTransform (not exercised in the current model)
6) Implemented GraDs utility (dc.gs) to display cubed-sphere data directly
7) From Arlindo, updates to Optical Tables.
8) Modified WindFix and MKIAU to use MAPL rather than G3 Utilities for Gather/Scatter (zero-diff).
9) Update to SatSim tag: b_afe_G-4_0_B6_ss_20140225
10) Added diagnostics to PHYSICS and MOIST
Restart Changes: none
==========================================================================
03Feb2014, Takacs, CVS Tag: Ganymed-4_0_BETA8 (non-zero diffs from Ganymed-4_0_BETA7)
Module: Ganymed
------------------------------------------------------------------------------
1) Another Minor modification to CONSTRAIN_DAS=1 for pressure increment scaling.
This change properly scales DELP Increments to provide optimum adjustments in a least-squares sense.
2) Changed value of MAPL_GRAV from 9.8 to WMO's "exact" value of 9.80665
3) Changed value of MAPL_EARTH_RADIUS from 6376.0E3 to 6371.0E3
4) Modified SOLAR and IRRAD to use MAPL_GRAV rather than 9.81
5) Updates to plots and post to use MAPL_Constants
6) Updates to MAPL:
a) ability to use IO server - defaults to not use it
b) changing TM in History to do a "smart" default: unlimited time dimension for nc4 files except for Single Column
c) Several changes to MAPL_AreaMean :
i) minor tweek on original version, producing better efficiency but still guaranteed to be bit-reproducible
ii) a new faster version where all PEs compute their local partial sum, a the final result is computed by MPI_AllReduce. This is now the default.
Due to strategic real*4 and real*8 declarations, this is still zero diff to original version.
d) Minor change in MAPL_IO to have consistent untis for CFIO and memory units
7) A fix for C2C regridding (we were missing A2D for the winds in interp_restarts, resulting in a small shift for winds in fvdycore_internal restart)
Restart Changes: none
==========================================================================
08Jan2014, Takacs, CVS Tag: Ganymed-4_0_BETA7 (non-zero diffs from Ganymed-4_0_BETA6)
Module: Ganymed
------------------------------------------------------------------------------
1) Updates to GOCART to allow Stratospheric Aerosol sedimentation.
2) Updates with Raster/src for SMAP related code. Zero-Diff for Ganymed-4_0
3) Updates to StratChem Code
4) Minor modification to CONSTRAIN_DAS=1 for pressure increment scaling
Restart Changes: none
==========================================================================
22Nov2013, Takacs, CVS Tag: Ganymed-4_0_BETA6 (zero diffs from Ganymed-4_0_BETA5)
Module: Ganymed
------------------------------------------------------------------------------
1) Minor updates to MAPL_HorzTransform fnd MAPL_CFIO (zero-diffs)
2) Updated GEOS_Util/pre directories for preprocessing of SST/ICE used for MERRA2
3) Minor plots updates
4) Updates to GCM scripts for better through-put within new SLURM environment
5) HISTORY_MERRA2.rc.tmpl changes
6) Fixed SPEC for Z0 and WW Internal State vaiables within GEOS_SaltWaterGridComp.F90
Restart Changes: none
==========================================================================
13Nov2013, Takacs, CVS Tag: Ganymed-4_0_BETA5 (zero diffs from Ganymed-4_0_BETA4)
Module: Ganymed
------------------------------------------------------------------------------
1) New GOCART RC files for MERRA-2 Emmissions
2) New Diagnostics in Dynamics and Surface
3) Updates to StratChem
4) Updates to MAPL/HISTORY to allow conservative regridding for Output
5) Updates to Raster/src for creating boundary conditions. Default changed from
using HWSD: Merged NGDC-HWSD-STATSGO soil properties on 43200x21600 with Woesten Parameters
to NGDC: Reynolds soil texture clsses on 4320x2160 with Cosby parameters
This only affects the creation of new restarts. Albedos, LAI, etc remain the same.
Restart Changes: none
==========================================================================
29Oct2013, Takacs, CVS Tag: Ganymed-4_0_BETA4 (non-zero diffs from Ganymed-4_0_BETA3 due to RASAL1 Default value)
Module: Ganymed
------------------------------------------------------------------------------
1) Changed Default Value of RASAL1 from the HEARTBEAT to 1800 seconds.
2) Implement C2C Regridding.
Restart Changes: none
==========================================================================
30Sep2013, Takacs, CVS Tag: Ganymed-4_0_BETA3 (zero diffs from Ganymed-4_0_BETA2)
Module: Ganymed
------------------------------------------------------------------------------
1) Minor bug fixes in MAPL.
2) Implemented new behavior for MINMAX variables. In this version, ANY current EXPORT can be made
a MINMAX variable within the HISTORY.rc by specifying a new name (alias) for the export AND adding
a fourth column with the string 'MIN' or 'MAX'. MERRA-2 HISTORY.rc has been modified accordingly.
3) Implement REPLAY_SHUTOFF for Regular Replay. This allows IAU-based G5NCEP and G5ECMWF forecasts.
Restart Changes: none
==========================================================================
13Sep2013, Takacs, CVS Tag: Ganymed-4_0_BETA2 (non-zero diffs from Ganymed-4_0_BETA1 in Regular REPLAY mode)
Module: Ganymed
------------------------------------------------------------------------------
1) Fix GEOS_MKIAU_GridComp related to incorrect logic for cubed-sphere IM_World and JM_World.
This is a non-zero diff change, although the original code did produce reasonable results.
2) Updates to gcm_setup and gcm_run. The updated script allows for YEAR boundary crossings using OSTIA datasets.
3) Merge with DAS Tag: EnADAS-5_12_0
Restart Changes: none
==========================================================================
04Sep2013, Takacs, CVS Tag: Ganymed-4_0_BETA1 (non-zero diffs from Ganymed-3_0_p1)
Module: Ganymed
------------------------------------------------------------------------------
1) Updated GEOS_SurfaceGridComp.F90 and GEOS_SaltWaterGridComp.F90 for WARM layer (Default: OFF)
Note: This requires additional variables within saltwater_internal_rst.
These variables may be bootstrapped by using -saltwater_internal_rst together with type: nc4
OR ... +saltwater_internal_rst together with type: binary
2) Updates to Moist Physics and bug fixes:
a) b_AMM_snowdiag_Gan30:
branch to add the "heat flux into deep snow layer" budget term.
subroutines are from surface to catch, and to land ice (also calls snow model).
Surface grid comp, Land grid comp, Catch grid comp, Land Ice Grid comp, stieglitz.F90 (in Shared)
b) b_AMM_radtosurf_Gan30:
branch to correct bug in the communication between radiation (irrad) and surface.
code changes are to radiation, irrad and physics, but physics correction is in branch below.
Radiation Grid Comp, Irrad grid comp
c) b_AMM_newhyst_Gan30:
branch to correct hystpdf iteration and code for RAS diagnostic.
code changes are to cloudnew, ras and moist, but moist change is in branch below.
ras.F90, cloudnew.F90
d) b_AMM_turbtomst_Gan30:
branch to change how ras sets cloud base layer - get level of pbl from turb.
code changes are to turb, moist and physics (connectivity). moist includes changes
from the newhyst set of changes, physics includes changes from radiation stuff.
Turb grid comp, Moist grid comp, Physics grid comp
NOTE: this is the change that affects the moist import. must bootstrap or
be sure that the import called KPBL is bootstrapped.
3) Changed Catchment Parameter SURFLAY default from 20 to 50. Note, this tag is to be used with Ganymed-4_0 (or later)
boundary conditions.
4) Updated source code under SURF/Shared/Raster to construct new SOIL and Land Surface parameters consistent with:
LAI: GSWP2
Albedo: MODIS2
Soil Data: HWSD
together with SURFLAY = 50.
NOTE: This model version may be used with older restarts and older boundary condition files PROVIDED that the
AGCM.rc contains: SURFLAY: 20
5) The FV3 core is now compiled REAL*8. The previous REAL*4 version may be obtained through a modification
to the FV3 GNUmakefile.
6) RESTARTS generated using regrid.pl will now be rescaled to contain a dry-mass value of 983.24 mb.
To do this on the CUBE, the grid-cell AREA file must be read from the Shared BCs directory.
A warning will result if the AREA file cannot be found.
7) Pressure tendencies are now generated from Moist Phyiscs.
8) Modifications were made to details of Regular REPLAY. The MKIAU Gridded Component now mimics the procedure
used for the complete DAS system.
Restart Changes: saltwater_internal_rst
Note: Old saltwater_internal_rst may be used a "+" is added to the filename within AGCM.rc
eg.: SALTWATER_INTERNAL_RESTART_FILE: +saltwater_internal_rst
The "+" will tell the model to add/bootstrap the additional variables needed for this version.
==========================================================================
04Jun2013, Takacs, CVS Tag: Ganymed-3_0_p1 (zero diffs from Ganymed-2_1_p6)
Module: Ganymed
------------------------------------------------------------------------------
1) Corrected TimeStep Scaling bug related to SnowMelt in GEOS_LandIceGridComp.F90 and StieglitzSnow.F9
2) Updated REGRID utilities to latest versions (performing a 2-step process for all cases; 1) first without CLSM data, followed by 2) with CLSM data)
3) Updated Scale_Catch.F90 to be consistent with latest REGRID utilities
4) Corrected source files in /Raster used in creating boundary conditions. Fixed bugs in time-header in boundary files.
5) Updated GAAS_GridComp/LDE_Mod.F90 for MPI scalability (zero-diffs)
6) Updated MAPL (zero-diffs)
7) Updated gfio and CFIO to fix bug in reading time (hour) information within CO and CO2 emission files
8) Updated GMI code
9) Updated Quickplot Plots & Utilities
Restart Changes: none
==========================================================================
05Apr2013, Takacs, CVS Tag: Ganymed-3_0 (zero diffs from Ganymed-2_1_p5)
Module: Ganymed
------------------------------------------------------------------------------
1) Updated to ESMF-5
2) Modified Exact and Regular Replay RC parameters
Restart Changes: none
==========================================================================
30May2013, Takacs, CVS Tag: Ganymed-2_1_p6 (non-zero diffs from Ganymed-2_1_p5)
Module: Ganymed
------------------------------------------------------------------------------
1) Corrected TimeStep Scaling bug related to SnowMelt in GEOS_LandIceGridComp.F90 and StieglitzSnow.F9
2) Updated REGRID utilities to latest versions (performing a 2-step process for all cases; 1) first without CLSM data, followed by 2) with CLSM data)
3) Updated Scale_Catch.F90 to be consistent with latest REGRID utilities
Restart Changes: none
==========================================================================
20Mar2013, Takacs, CVS Tag: Ganymed-2_1_p5 (zero diffs from Ganymed-2_1_p4)
Module: Ganymed
------------------------------------------------------------------------------
1) Modified diagnostic names in LANDICE for snow depth and snow mass
to avoid blending within SURFACE
Restart Changes: none
==========================================================================
15Mar2013, Takacs, CVS Tag: Ganymed-2_1_p4 (zero diffs from Ganymed-2_1_p3)
Module: Ganymed
------------------------------------------------------------------------------
1) Added diagnostic PRECTOT = PCU+PLS+SNO from SURFACE
2) Added GET_RESOURCE for Regular Replay Aliases: TV, TH, and THV
3) Modified Regular Replay Comments in AGCM.rc.tmpl
Restart Changes: none
==========================================================================
28Feb2013, Takacs, CVS Tag: Ganymed-2_1_p3 (zero diffs from Ganymed-2_1_p2 for HEARTBEAT=900 at 1/2-deg)
Module: Ganymed
------------------------------------------------------------------------------
1) Changed Default Value of HEARTBEAT from 900 to 450 for 1/2-deg resolution.
This improves surface temperature bias vs 1/4-deg results.
2) Fixed H1000 diagnostic in FV3.
3) Modified Intermittent Replay in DynCore_GridCompMod.F90 and AGCM.rc.tmpl to work in Cube.
Restart Changes: none
==========================================================================
15Feb2013, Takacs, CVS Tag: Ganymed-2_1_p2 (zero diffs from Ganymed-2_1_p1 for MAXDALLOWED=700 at 1/2-deg)
Module: Ganymed
------------------------------------------------------------------------------
1) Changed Default Value of MAXDALLOWED from 1000 to 700 for 1/2-deg resolution.