forked from ESCOMP/CAM
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnamelist_defaults_cam.xml
More file actions
4276 lines (3845 loc) · 420 KB
/
Copy pathnamelist_defaults_cam.xml
File metadata and controls
4276 lines (3845 loc) · 420 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
<?xml version="1.0"?>
<namelist_defaults>
<!-- Timestep size (this is the atm coupling interval) -->
<dtime dyn="fv" >1800</dtime>
<dtime dyn="fv" waccmx="1" >300 </dtime>
<dtime dyn="fv3" >1800</dtime>
<dtime dyn="fv3" waccmx="1" >300 </dtime>
<dtime dyn="fv3" hgrid="C24" >1800</dtime>
<dtime dyn="fv3" hgrid="C48" >1800</dtime>
<dtime dyn="fv3" hgrid="C96" >1800</dtime>
<dtime dyn="fv3" hgrid="C192" >900</dtime>
<dtime dyn="fv3" hgrid="C384" >450</dtime>
<dtime dyn="se" >1800</dtime>
<dtime dyn="se" waccmx="1" >300 </dtime>
<dtime dyn="se" hgrid="ne5np4" >1800</dtime>
<dtime dyn="se" hgrid="ne16np4" >1800</dtime>
<dtime dyn="se" hgrid="ne30np4" >1800</dtime>
<dtime dyn="se" hgrid="ne60np4" > 900</dtime>
<dtime dyn="se" hgrid="ne120np4"> 450</dtime>
<dtime dyn="se" hgrid="ne240np4"> 225</dtime>
<dtime dyn="se" hgrid="ne0np4CONUS.ne30x8">225</dtime>
<dtime dyn="se" hgrid="ne0np4.ARCTIC.ne30x4">450</dtime>
<dtime dyn="se" hgrid="ne0np4.ARCTICGRIS.ne30x8">225</dtime>
<dtime dyn="se" hgrid="ne0np4.POLARCAP.ne30x4">450</dtime>
<dtime dyn="se" hgrid="ne0np4.NATL.ne30x8">225</dtime>
<dtime dyn="mpas" >1800</dtime>
<!-- Initial files -->
<!-- Vertical coordinates only -->
<ncdata nlev="26" analytic_ic="1" >atm/cam/inic/cam_vcoords_L26_c180105.nc</ncdata>
<ncdata nlev="30" analytic_ic="1" >atm/cam/inic/cam_vcoords_L30_c180105.nc</ncdata>
<ncdata nlev="32" analytic_ic="1" >atm/cam/inic/cam_vcoords_L32_c180105.nc</ncdata>
<ncdata nlev="58" analytic_ic="1" >atm/cam/inic/cam_vcoords_L58_c250227.nc</ncdata>
<!-- Vertical/Horizontal coordinates only - MPAS initial files for analytic cases-->
<ncdata hgrid="mpasa120" nlev="26" analytic_ic="1" >atm/cam/inic/mpas/mpasa120_L26_notopo_coords_c251105.nc</ncdata>
<ncdata hgrid="mpasa480" nlev="32" analytic_ic="1" >atm/cam/inic/mpas/mpasa480_L32_notopo_coords_c240507.nc</ncdata>
<ncdata hgrid="mpasa120" nlev="32" analytic_ic="1" >atm/cam/inic/mpas/mpasa120_L32_notopo_coords_c240507.nc</ncdata>
<ncdata hgrid="mpasa60" nlev="32" analytic_ic="1" >atm/cam/inic/mpas/mpasa60_L32_notopo_coords_c240507.nc</ncdata>
<ncdata hgrid="mpasa30" nlev="32" analytic_ic="1" >atm/cam/inic/mpas/mpasa30_L32_notopo_coords_c240507.nc</ncdata>
<ncdata hgrid="mpasa480" nlev="58" analytic_ic="1" >atm/cam/inic/mpas/mpasa480_L58_notopo_coords_c240814.nc</ncdata>
<ncdata hgrid="mpasa120" nlev="58" analytic_ic="1" >atm/cam/inic/mpas/mpasa120_L58_notopo_coords_c240814.nc</ncdata>
<ncdata hgrid="mpasa60" nlev="58" analytic_ic="1" >atm/cam/inic/mpas/mpasa60_L58_notopo_coords_c240814.nc</ncdata>
<ncdata hgrid="mpasa480" nlev="93" analytic_ic="1" >atm/cam/inic/mpas/mpasa480_L93_notopo_coords_c240814.nc</ncdata>
<ncdata hgrid="mpasa120" nlev="93" analytic_ic="1" >atm/cam/inic/mpas/mpasa120_L93_notopo_coords_c240814.nc</ncdata>
<ncdata hgrid="mpasa60" nlev="93" analytic_ic="1" >atm/cam/inic/mpas/mpasa60_L93_notopo_coords_c240814.nc</ncdata>
<!-- Next entries are mostly used in EarthWorks -->
<ncdata hgrid="mpasa30" nlev="58" analytic_ic="1" >atm/cam/inic/mpas/mpasa30_L58_notopo_coords_c240814.nc</ncdata>
<ncdata hgrid="mpasa15" nlev="58" analytic_ic="1" >atm/cam/inic/mpas/mpasa15_L58_notopo_coords_c240911.nc</ncdata>
<!-- END EarthWorks specific -->
<!-- FV Initial Conditions -->
<ncdata hgrid="10x15" nlev="26" >atm/cam/inic/fv/cami_0000-01-01_10x15_L26_c030918.nc</ncdata>
<ncdata hgrid="10x15" nlev="26" aquaplanet="1" >atm/cam/inic/fv/aqua_0000-01-01_10x15_L26_c161230.nc</ncdata>
<ncdata hgrid="10x15" nlev="26" chem="trop_mozart" >atm/cam/inic/fv/camchemi_0012-01-01_10x15_L26_c081104.nc</ncdata>
<ncdata hgrid="10x15" nlev="26" chem="trop_mozart" ic_ymd="901" >atm/cam/chem/trop_mozart/ic/cami_0000-09-01_10x15_L26_c060216.nc</ncdata>
<ncdata hgrid="10x15" nlev="30" >atm/cam/inic/fv/cami_0000-01-01_10x15_L30_c081013.nc</ncdata>
<ncdata hgrid="10x15" nlev="30" aquaplanet="1" >atm/cam/inic/fv/aqua_0000-01-01_10x15_L30_c170103.nc</ncdata>
<ncdata hgrid="10x15" nlev="30" chem="trop_mozart" >atm/cam/inic/fv/camchemi_0012-01-01_10x15_L30_c081104.nc</ncdata>
<ncdata hgrid="10x15" nlev="30" chem="trop_strat_mam4_vbs" >atm/cam/inic/fv/trop_strat_mam3_chem_2000-01-01_10x15_L30_c121015.nc</ncdata>
<ncdata hgrid="10x15" nlev="30" chem="trop_strat_mam5_t1s1" >atm/cam/inic/fv/trop_strat_mam3_chem_2000-01-01_10x15_L30_c121015.nc</ncdata>
<ncdata hgrid="10x15" nlev="32" >atm/cam/inic/fv/cami-mam4_0000-01-01_10x15_L32_c170914.nc</ncdata>
<ncdata hgrid="10x15" nlev="32" aquaplanet="1" >atm/cam/inic/fv/aqua_0000-01-01_10x15_L32_c170103.nc</ncdata>
<ncdata hgrid="10x15" nlev="32" chem="trop_strat_mam5_t1s1">atm/cam/inic/fv/FC2000mam5_f10_0002-01-01_c221214.nc</ncdata>
<ncdata hgrid="10x15" nlev="32" carma="trop_strat_soa5" >atm/cam/inic/fv/carma_trop_strat_2000_10x15_spinup01.cam.i.0002-01-01-00000_c211027.nc</ncdata>
<ncdata hgrid="10x15" nlev="32" carma="trop_strat_soa5" aquaplanet="1">atm/cam/inic/fv/aqua_carma_trop_strat_10x15_spinup01.cam.i.0002-01-01-00000_c211027.nc</ncdata>
<ncdata hgrid="10x15" nlev="66" >atm/waccm/ic/cami_2000-01-01_10x15_L66_c041121.nc</ncdata>
<ncdata hgrid="10x15" nlev="70" carma="trop_strat_soa1" aquaplanet="1">atm/waccm/ic/aqua_carma_waccm_0002-01-01_10x15_L70_c220325.nc</ncdata>
<ncdata hgrid="10x15" nlev="70" >atm/waccm/ic/f2000.waccm-mam3_10x15_L70.cam2.i.0017-01-01.c141016.nc</ncdata>
<ncdata hgrid="10x15" nlev="81" waccmx="1" >atm/waccm/ic/WAX3548T08CO_2003top_f2000.waccm_0017bottom_10x15_L81_c141027.nc</ncdata>
<ncdata hgrid="4x5" nlev="26" >atm/cam/inic/fv/cami_0001-01-01_4x5_L26_c060608.nc</ncdata>
<ncdata hgrid="4x5" nlev="26" chem="trop_mozart" >atm/cam/inic/fv/camchemi_0012-01-01_4x5_L26_c081104.nc</ncdata>
<ncdata hgrid="4x5" nlev="26" chem="trop_mozart" ic_ymd="901" >atm/cam/chem/trop_mozart/ic/cami_0000-09-01_4x5_L26_c060217.nc</ncdata>
<ncdata hgrid="4x5" nlev="30" >atm/cam/inic/fv/cami_0000-01-01_4x5_L30_c090108.nc</ncdata>
<ncdata hgrid="4x5" nlev="30" chem="trop_mozart" >atm/cam/inic/fv/camchemi_0012-01-01_4x5_L30_c081104.nc</ncdata>
<ncdata hgrid="4x5" nlev="30" chem="trop_strat_mam4_vbs" >atm/cam/inic/fv/trop_strat_mam3_chem_2000-01-01_4x5_L30_c121015.nc</ncdata>
<ncdata hgrid="4x5" nlev="30" chem="trop_strat_mam5_t1s1" >atm/cam/inic/fv/trop_strat_mam3_chem_2000-01-01_4x5_L30_c121015.nc</ncdata>
<ncdata hgrid="4x5" nlev="66" >atm/waccm/ic/wa3_4x5_1950_spinup.cam2.i.1960-01-01-00000.nc</ncdata>
<ncdata hgrid="4x5" nlev="66" chem="waccm_ma_sulfur" >atm/waccm/ic/f40.2000.4deg.wcm.carma.sulf.004.cam2.i.0008-01-01-00000.nc</ncdata>
<ncdata hgrid="4x5" nlev="70" >atm/waccm/ic/f2000.waccm-mam3_4x5_L70.cam2.i.0017-01-01.c121113.nc</ncdata>
<ncdata hgrid="4x5" nlev="81" waccmx="1" >atm/waccm/ic/WAX3548T08CO_2003top_f2000.waccm_0017bottom_4x5_L81_c160630.nc</ncdata>
<ncdata hgrid="4x5" nlev="126" waccmx="1" aquaplanet="1">atm/waccm/ic/waccmx_aqua_4x5_L126_c170705.nc</ncdata>
<ncdata hgrid="4x5" nlev="130" waccmx="1" aquaplanet="1">atm/waccm/ic/waccmx_mam4_aqua_4x5_L130_c180803.nc</ncdata>
<ncdata hgrid="2.5x3.33" nlev="26" >atm/cam/inic/fv/cami_0000-01-01_2.5x3.33_L26_c110309.nc</ncdata>
<ncdata hgrid="2.5x3.33" nlev="26" ic_ymd="901" >atm/cam/inic/fv/cami_0000-09-01_2.5x3.33_L26_c091007.nc</ncdata>
<ncdata hgrid="2.5x3.33" nlev="30" >atm/cam/inic/fv/cami_0000-01-01_2.5x3.33_L30_c110309.nc </ncdata>
<ncdata hgrid="2.5x3.33" nlev="30" ic_ymd="901" >atm/cam/inic/fv/cami_0000-09-01_2.5x3.33_L30_c100831.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="26" >atm/cam/inic/fv/cami_0000-01-01_1.9x2.5_L26_c070408.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="26" ic_ymd="901" >atm/cam/inic/fv/cami_0000-09-01_1.9x2.5_L26_c040809.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="26" aquaplanet="1" >atm/cam/inic/fv/aqua_0006-01-01_1.9x2.5_L26_c161020.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="26" chem="trop_mozart" >atm/cam/inic/fv/camchemi_0012-01-01_1.9x2.5_L26_c081104.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="26" chem="trop_mozart" ic_ymd="19900101" >atm/cam/inic/fv/cami-chem_1990-01-01_1.9x2.5_L26_c080114.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="30" >atm/cam/inic/fv/cami-mam3_0000-01-01_1.9x2.5_L30_c090306.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="30" ic_ymd="901" >atm/cam/inic/fv/cami_0000-09-01_1.9x2.5_L30_c070109.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="30" aquaplanet="1" >atm/cam/inic/fv/aqua_0006-01-01_1.9x2.5_L30_c161020.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="30" chem="trop_strat_mam4_vbs" >atm/cam/inic/fv/trop_strat_mam3_chem_2000-01-01_1.9x2.5_L30_c121015.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="30" chem="trop_strat_mam5_t1s1" >atm/cam/inic/fv/trop_strat_mam3_chem_2000-01-01_1.9x2.5_L30_c121015.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="30" chem="trop_mozart" >atm/cam/inic/fv/camchemi_0012-01-01_1.9x2.5_L30_c081104.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="30" chem="trop_mozart" ic_ymd="19900101" >atm/cam/inic/fv/cami-chem_1990-01-01_1.9x2.5_L30_c080215.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="32" >atm/cam/inic/fv/cami-mam3_0000-01-01_1.9x2.5_L32_c150407.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="32" aquaplanet="1" >atm/cam/inic/fv/aqua_0006-01-01_1.9x2.5_L32_c161020.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="32" carma="trop_strat_soa5" aquaplanet="1">atm/cam/inic/fv/QPCARMATS_f19_carmats4038_spinup01_0002-01-01_c241029.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="66" >atm/waccm/ic/cami_2000-07-01_1.9x2.5_L66_c040928.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="66" chem="waccm_ma_sulfur" >atm/waccm/ic/f40.2deg.wcm.carma.sulf.L66.cam2.i.2010-01-01.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="70" ic_ymd="18500101" >atm/waccm/ic/b1850.waccm-mam3_1.9x2.5_L70.cam2.i.0156-01-01.c120523.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="70" ic_ymd="20000101" >atm/waccm/ic/f2000.waccm-mam3_1.9x2.5_L70.cam2.i.0017-01-01.c120410.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="70" aquaplanet="1" ic_ymd="20000101" >atm/waccm/ic/aqua.cam6.waccmsc_1.9x2.5_L70.2000-01-01.c170123.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="70" chem="waccm_tsmlt_mam4" aquaplanet="1" ic_ymd="20000101">atm/waccm/ic/aqua.waccm_tsmlt_1.9x2.5_L70_c170814.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="70" chem="waccm_ma_mam4" aquaplanet="1" ic_ymd="20000101" >atm/waccm/ic/aqua.waccm_tsmlt_1.9x2.5_L70_c170814.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="70" carma="trop_strat_soa1" ic_ymd="19800101">atm/waccm/ic/FWmaCARMAHIST_f19_carmats038_spinupl03.cam.i.1980-01-01_c241025.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="70" carma="trop_strat_soa1" aquaplanet="1" ic_ymd="101">atm/cam/inic/fv/aqua_carma_waccm_0002-01-01_1.9x2.5_L70_c220809.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="81" waccmx="1" >atm/waccm/ic/WAX3548T08CO_2003top_f2000.waccm_0017bottom_L81_c110906.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="103" >atm/waccm/ic/cami_2000-05-01_1.9x2.5_L103_c040928.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="126" waccmx="1" >atm/waccm/ic/f.c54137.FX2000climo.f19_f19.ZGTest.001.cam.i.0002-01-01-00000_c170817.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="130" waccmx="1" >atm/waccm/ic/wcmx-cam6-phys_1.9x2.5_130lev_2000_c181115.nc</ncdata>
<ncdata hgrid="1.9x2.5" nlev="130" waccmx="1" aquaplanet="1">atm/waccm/ic/waccmx_mam4_aqua_1.9x2.5_L130_c180803.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="26" >atm/cam/inic/fv/cami_1987-01-01_0.9x1.25_L26_c060703.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="26" ic_ymd="901" >atm/cam/inic/fv/cami_0000-09-01_0.9x1.25_L26_c051205.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="26" aquaplanet="1" >atm/cam/inic/fv/aqua_0006-01-01_0.9x1.25_L26_c161020.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="30" >atm/cam/inic/fv/cami-mam3_0000-01-01_0.9x1.25_L30_c100618.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="30" aquaplanet="1" >atm/cam/inic/fv/aqua_0006-01-01_0.9x1.25_L30_c161020.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="30" chem="trop_mozart" >atm/cam/inic/fv/cami-chem_1990-01-01_0.9x1.25_L30_c080724.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="32" >atm/cam/inic/fv/cami-mam3_0000-01-01_0.9x1.25_L32_c141031.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="32" aquaplanet="1" >atm/cam/inic/fv/aqua_0006-01-01_0.9x1.25_L32_c161020.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="32" chem="trop_strat_mam4_vbs">atm/cam/inic/fv/f.e22.FC2010climo.f09_f09_mg17.cam6_2_022.001.cam.i.0016-01-01-00000_c200610.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="32" chem="trop_strat_mam4_ts2">atm/cam/inic/fv/f.e22.FC2010climo.f09_f09_mg17.cam6_2_022.001.cam.i.0016-01-01-00000_c200610.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="32" chem="trop_strat_mam5_t1s1">atm/cam/inic/fv/f.e22.FC2010climo.f09_f09_mg17.cam6_2_022.001.cam.i.0016-01-01-00000_c200610.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="32" chem="trop_strat_mam5_t2s1">atm/cam/inic/fv/f.e22.FC2010climo.f09_f09_mg17.cam6_2_022.001.cam.i.0016-01-01-00000_c200610.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="66" >atm/waccm/ic/cami_2000-02-01_0.9x1.25_L66_c040928.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="70" >atm/waccm/ic/FWT2000_f09_spinup01.cam.i.0001-01-02-00000_c160315.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="70" carma="trop_strat_soa1">atm/waccm/ic/FWmaCARMAHIST_f09_spinup01.cam.i.1980-01-01-00000_c220128.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="126" waccmx="1">atm/waccm/ic/fx2000_0.9x1.25_126lev_0002-01-01-00000_c181221.nc</ncdata>
<ncdata hgrid="0.9x1.25" nlev="130" waccmx="1">atm/waccm/ic/wcmx-cam6-phys_0.9x1.25_130lev_2000_c190122.nc</ncdata>
<ncdata hgrid="0.5x0.625" nlev="26" >atm/cam/inic/fv/cami_0000-10-01_0.5x0.625_L26_c031204.nc</ncdata>
<ncdata hgrid="0.47x0.63" nlev="26" >atm/cam/inic/fv/cami_1980-01-01_0.47x0.63_L26_c071226.nc</ncdata>
<ncdata hgrid="0.47x0.63" nlev="26" ic_ymd="901" >atm/cam/inic/fv/cami_0000-09-01_0.47x0.63_L26_c061106.nc</ncdata>
<ncdata hgrid="0.47x0.63" nlev="26" aquaplanet="1" >atm/cam/inic/fv/cami_0000-01-01_0.47x0.63_L26_APE_c080227.nc</ncdata>
<ncdata hgrid="0.47x0.63" nlev="30" >atm/cam/inic/fv/cami-mam3_0000-01-01_0.47x0.63_L30_c100929.nc</ncdata>
<ncdata hgrid="0.47x0.63" nlev="130" waccmx="1" >atm/waccm/ic/FC6X2000_f05_spinup01.cam.i.0002-01-01-00000_c190711.nc</ncdata>
<ncdata hgrid="0.23x0.31" nlev="26" >atm/cam/inic/fv/cami_0000-01-01_0.23x0.31_L26_c100513.nc</ncdata>
<ncdata hgrid="0.23x0.31" nlev="26" ic_ymd="901" >atm/cam/inic/fv/cami_0000-09-01_0.23x0.31_L26_c061106.nc</ncdata>
<ncdata hgrid="0.23x0.31" nlev="30" >atm/cam/inic/fv/cami-mam3_0000-01-01_0.23x0.31_L30_c110527.nc</ncdata>
<!-- SE Initial Conditions -->
<ncdata hgrid="ne3np4" nlev="26" >atm/cam/inic/se/cami_0000-01-01_ne3np4_L26_c120525.nc</ncdata>
<ncdata hgrid="ne3np4" nlev="30" >atm/cam/inic/se/cami_0000-01-01_ne3np4_L30_c120315.nc</ncdata>
<ncdata hgrid="ne3np4" nlev="32" >atm/cam/inic/se/cam6_QPC6_topo_ne3pg3_mg37_L32_01-01-31_c221214.nc</ncdata>
<ncdata hgrid="ne3np4" nlev="32" ic_ymd="901" >atm/cam/inic/se/CESM2.F2000climo.ne3np4.cam.i.0003-09-01-00000.nc</ncdata>
<ncdata hgrid="ne3np4" nlev="32" aquaplanet="1" >atm/cam/inic/se/cam6_QPC6_aqua_ne3pg3_mg37_L32_01-01-31_c221214.nc</ncdata>
<ncdata hgrid="ne3np4" nlev="58" >atm/cam/inic/se/cam6_QPC6_topo_ne3pg3_mg37_L58_01-01-31_c221214.nc</ncdata>
<ncdata hgrid="ne3np4" nlev="93" >atm/cam/inic/se/cam6_FMTHIST_ne3pg3_mg37_L93_79-02-01_c240517.nc</ncdata>
<ncdata hgrid="ne3np4" nlev="93" chem="trop_strat_mam5_t1s2">atm/cam/inic/se/FHISTC_MTt1s_ne3pg3_O2_spinup01.cam.i.1980-01-01_c260201.nc</ncdata>
<ncdata hgrid="ne3np4" nlev="93" chem="trop_strat_mam5_t4s2">atm/cam/inic/se/FHISTC_MTt1s_ne3pg3_O2_spinup01.cam.i.1980-01-01_c260201.nc</ncdata>
<ncdata hgrid="ne5np4" nlev="26" aquaplanet="1" >atm/cam/inic/se/ape_cam4_ne5np4_L26_c170517.nc</ncdata>
<ncdata hgrid="ne5np4" nlev="30" >atm/cam/inic/homme/cami-mam3_0000-01_ne5np4_L30.140707.nc</ncdata>
<ncdata hgrid="ne5np4" nlev="30" aquaplanet="1" >atm/cam/inic/se/ape_cam5_ne5np4_L30_c170517.nc</ncdata>
<ncdata hgrid="ne5np4" nlev="32" >atm/cam/inic/se/F2000climo_ne5pg3_mg37_L32_01-01-31_c230520.nc</ncdata>
<ncdata hgrid="ne5np4" nlev="32" aquaplanet="1" >atm/cam/inic/se/ape_cam6_ne5np4_L32_c170517.nc</ncdata>
<ncdata hgrid="ne5np4" nlev="58" >atm/cam/inic/se/F2000climo_ne5pg3_mg37_L58_01-01-31_c230520.nc</ncdata>
<ncdata hgrid="ne5np4" nlev="66" >atm/waccm/ic/wa3_ne5np4_1950_spinup.cam2.i.1960-01-01-00000_c150810.nc</ncdata>
<ncdata hgrid="ne5np4" nlev="70" aquaplanet="1" chem="waccm_ma_mam4">atm/waccm/ic/aqua_waccm_ma_ne5np4_70L_c220729.nc</ncdata>
<ncdata hgrid="ne5np4" nlev="70" aquaplanet="1" chem="waccm_ma_mam5">atm/waccm/ic/aqua_waccm_ma_ne5np4_70L_c220729.nc</ncdata>
<ncdata hgrid="ne5np4" nlev="126" waccmx="1" >atm/waccm/ic/waccmx_aqua_ne5np4_126L_c210304.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="26" >atm/cam/inic/se/ape_topo_cam4_ne16np4_L26_c171020.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="26" aquaplanet="1" >atm/cam/inic/se/ape_cam4_ne16np4_L26_c170417.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="30" >atm/cam/inic/se/ape_topo_cam4_ne16np4_L30_c171020.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="30" aquaplanet="1" >atm/cam/inic/se/ape_cam5_ne16np4_L30_c170417.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="32" >atm/cam/inic/se/ape_topo_cam4_ne16np4_L32_c171020.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="32" aquaplanet="1" >atm/cam/inic/se/ape_cam6_ne16np4_L32_c170509.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="126" waccmx="1" >atm/waccm/ic/waccmx_ne16np4_126L_c200108.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="126" waccmx="1" aquaplanet="1" >atm/waccm/ic/waccmx_aqua_ne16np4_126L_c191108.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="126" waccmx="1" aquaplanet="1" ionosphere="none">atm/waccm/ic/waccmx4_neutral_aquap_ne16np4_126lev_c200827.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="130" waccmx="1" >atm/waccm/ic/FX2000_ne16pg3_spinup01.cam.i.0002-01-01_c251215.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="58" >atm/cam/inic/se/FHISTC_LTso_ne16pg3_ne16pg3_mg17.i.c260220.nc</ncdata>
<ncdata hgrid="ne16np4" nlev="93" >atm/cam/inic/se/FHISTC_MTso_ne16pg3_ne16pg3_mg17.i.c260220.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="26" >atm/cam/inic/se/ape_topo_cam4_ne30np4_L26_c171020.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="26" aquaplanet="1" >atm/cam/inic/se/ape_cam4_ne30np4_L26_c170417.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="30" >atm/cam/inic/se/ape_topo_cam4_ne30np4_L30_c171020.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="30" aquaplanet="1" >atm/cam/inic/se/ape_cam5_ne30np4_L30_c170417.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="32" >atm/cam/inic/se/F2000climo_ne30pg3_mg17_01-01-00000_c200424.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="32" aquaplanet="1" >atm/cam/inic/se/ape_cam6_ne30np4_L32_c170509.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="32" chem="trop_strat_mam4_vbs">atm/cam/inic/se/f.e22.FC2010climo.ne30_ne30_mg17.cam6_2_032.001.cam.i.0006-01-01-00000_c200623.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="32" chem="trop_strat_mam4_vbs" npg="3">atm/cam/inic/se/f.e22.FC2010climo.ne30pg3_ne30pg3_mg17.cam6_2_032.001.cam.i.0007-01-01-00000_c200623.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="32" chem="trop_strat_mam5_t1s1">atm/cam/inic/se/f.e22.FC2010climo.ne30_ne30_mg17.cam6_2_032.001.cam.i.0006-01-01-00000_c200623.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="32" chem="trop_strat_mam5_t1s1" npg="3">atm/cam/inic/se/f.e22.FC2010climo.ne30pg3_ne30pg3_mg17.cam6_2_032.001.cam.i.0007-01-01-00000_c200623.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="32" chem="trop_strat_mam4_ts2">atm/cam/inic/se/f.e22.FC2010climo.ne30_ne30_mg17.cam6_2_032.001.cam.i.0006-01-01-00000_c200623.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="32" chem="trop_strat_mam5_t2s1">atm/cam/inic/se/f.e22.FC2010climo.ne30_ne30_mg17.cam6_2_032.001.cam.i.0006-01-01-00000_c200623.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="58" chem="trop_strat_mam5_t1s1">atm/cam/inic/se/f.e22.FCnudged.ne30_ne30_mg17.release-cesm2.2.0_spinup.2010_2020.001.cam.i.2011-01-01-00000_L58_c220310.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="58" >atm/cam/inic/se/FLT_L58_ne30pg3_IC_c220623.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="70" waccm_phys="1" >atm/waccm/ic/FW2000.ne30pg3_ne30pg3_nlev70_c230906.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="93" >atm/cam/inic/se/c153_ne30pg3_FMTHIST_x02.cam.i.1990-01-01-00000_c240618.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="93" chem="trop_strat_mam5_t1s2">atm/cam/inic/se/FHISTC_MTt1s_ne30pg3_O2_spinup01.cam.i.1980-01-01_c260201.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="93" chem="trop_strat_mam5_t4s2">atm/cam/inic/se/FHISTC_MTt1s_ne30pg3_O2_spinup01.cam.i.1980-01-01_c260201.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="110" >atm/waccm/ic/FWsc2000_ne30pg3_L110_01-01-0001_c200521.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="130" waccmx="1" >atm/waccm/ic/fx2000_phys-ionos-cpl_ne30_spinup01.cam.i.0002-01-01-00000_c201014.nc</ncdata>
<ncdata hgrid="ne30np4" nlev="130" waccmx="1" npg="3" >atm/waccm/ic/waccmx_ne30pg3_L130_c250307.nc</ncdata>
<ncdata hgrid="ne60np4" nlev="26" >atm/cam/inic/se/ape_topo_cam4_ne60np4_L26_c171018.nc</ncdata>
<ncdata hgrid="ne60np4" nlev="26" aquaplanet="1" >atm/cam/inic/se/ape_cam4_ne60np4_L26_c171023.nc</ncdata>
<ncdata hgrid="ne60np4" nlev="30" >atm/cam/inic/se/ape_topo_cam4_ne60np4_L30_c171020.nc</ncdata>
<ncdata hgrid="ne60np4" nlev="32" >atm/cam/inic/se/ape_topo_cam4_ne60np4_L32_c171020.nc</ncdata>
<ncdata hgrid="ne120np4" nlev="26" >atm/cam/inic/se/ape_topo_cam4_ne120np4_L26_c171018.nc</ncdata>
<ncdata hgrid="ne120np4" nlev="26" aquaplanet="1" >atm/cam/inic/se/ape_cam4_ne120np4_L26_c170419.nc</ncdata>
<ncdata hgrid="ne120np4" nlev="30" >atm/cam/inic/se/ape_topo_cam4_ne120np4_L30_c171024.nc</ncdata>
<ncdata hgrid="ne120np4" nlev="30" aquaplanet="1" >atm/cam/inic/se/ape_cam5_ne120np4_L30_c170419.nc</ncdata>
<ncdata hgrid="ne120np4" nlev="32" >atm/cam/inic/se/F2000climo_ne120pg3_mt13_01-01-00000_c200420.nc</ncdata>
<ncdata hgrid="ne120np4" nlev="32" aquaplanet="1" >atm/cam/inic/se/ape_cam6_ne120np4_L32_c170908.nc</ncdata>
<ncdata hgrid="ne120np4" nlev="58" >atm/cam/inic/se/betacast_ERA5ml_20100101_ne120np4_L58_c260225.nc</ncdata>
<ncdata hgrid="ne120np4" nlev="93" >atm/cam/inic/se/inic/betacast_ERA5ml_20100101_ne120np4_L93_c260225.nc</ncdata>
<ncdata hgrid="ne120np4" nlev="273" waccmx="1" >atm/waccm/ic/fx2000_ne120pg3L273.001.cam.i.0002-01-01-00000.noBRCL_c250522.nc</ncdata>
<ncdata hgrid="ne240np4" nlev="26" >atm/cam/inic/homme/cami_1850-01-01_ne240np4_L26_c110314.nc</ncdata>
<ncdata hgrid="ne240np4" nlev="26" ic_ymd="901" >atm/cam/inic/homme/cami_0000-09-01_ne240np4_L26_c061106.nc</ncdata>
<ncdata hgrid="ne240np4" nlev="26" aquaplanet="1" >atm/cam/inic/se/ape_cam4_ne240np4_L26_c170613.nc</ncdata>
<ncdata hgrid="ne240np4" nlev="30" >atm/cam/inic/homme/cami-mam3_0000-01-ne240np4_L30_c111004.nc</ncdata>
<ncdata hgrid="ne240np4" nlev="32" aquaplanet="1" >atm/cam/inic/se/ape_cam6_ne240np4_L32_c170908.nc</ncdata>
<ncdata hgrid="ne0np4CONUS.ne30x8" nlev="32" >atm/cam/inic/se/F2000climo_CONUS_30x8_mt12_mg3_01-01-00000_c200421.nc</ncdata>
<ncdata hgrid="ne0np4CONUS.ne30x8" nlev="32" chem="trop_strat_mam4_vbs">atm/cam/inic/se/f.e22.FCnudged.ne0CONUSne30x8_ne0CONUSne30x8_mt12.cam6_2_032.002.cam.i.2013-01-01-00000_c200623.nc</ncdata>
<ncdata hgrid="ne0np4CONUS.ne30x8" nlev="32" chem="trop_strat_mam5_t1s1">atm/cam/inic/se/f.e22.FCnudged.ne0CONUSne30x8_ne0CONUSne30x8_mt12.cam6_2_032.002.cam.i.2013-01-01-00000_c200623.nc</ncdata>
<ncdata hgrid="ne0np4CONUS.ne30x8" nlev="70" >atm/waccm/ic/FW2000_CONUS_30x8_L70_01-01-0001_c200602.nc</ncdata>
<ncdata hgrid="ne0np4.ARCTIC.ne30x4" nlev="32" >atm/cam/inic/se/FHIST_ARCTIC_ne30x4_mt12_1979bc-mg3_01-01-00000_c200424.nc</ncdata>
<ncdata hgrid="ne0np4.ARCTICGRIS.ne30x8" nlev="32" >atm/cam/inic/se/FHIST_ARCTICGRIS_ne30x8_mt12_1979bc-mg3_01-01-00000_c200428.nc</ncdata>
<ncdata hgrid="ne0np4.NATL.ne30x8" nlev="32" >atm/cam/inic/se/betacast_ERA5ml_20200101_NATL_L32_c250620.nc</ncdata>
<ncdata hgrid="ne0np4CONUS.ne30x8" nlev="58" >atm/cam/inic/se/betacast_ERA5ml_20200101_CONUS_c250617.nc</ncdata>
<ncdata hgrid="ne0np4.ARCTIC.ne30x4" nlev="58" >atm/cam/inic/se/betacast_ERA5ml_20200101_ARCTIC_c250617.nc</ncdata>
<ncdata hgrid="ne0np4.ARCTICGRIS.ne30x8" nlev="58" >atm/cam/inic/se/betacast_ERA5ml_20200101_ARCTICGRIS_c250617.nc</ncdata>
<ncdata hgrid="ne0np4.POLARCAP.ne30x4" nlev="58" >atm/cam/inic/se/betacast_ERA5ml_20200101_POLARCAP_c250322.nc</ncdata>
<ncdata hgrid="ne0np4.NATL.ne30x8" nlev="58" >atm/cam/inic/se/betacast_ERA5ml_20200101_NATL_L58_c250618.nc</ncdata>
<ncdata hgrid="ne0np4CONUS.ne30x8" nlev="93" >atm/cam/inic/se/betacast_ERA5ml_20100101_CONUS_ne30x8_L93_c260225.nc</ncdata>
<ncdata hgrid="ne0np4.ARCTIC.ne30x4" nlev="93" >atm/cam/inic/se/betacast_ERA5ml_20100101_ARCTIC_ne30x4_L93_c260225.nc</ncdata>
<ncdata hgrid="ne0np4.ARCTICGRIS.ne30x8" nlev="93" >atm/cam/inic/se/betacast_ERA5ml_20100101_ARCTICGRIS_ne30x8_L93_c260225.nc</ncdata>
<ncdata hgrid="ne0np4.POLARCAP.ne30x4" nlev="93" >atm/cam/inic/se/betacast_ERA5ml_20100101_POLARCAP_ne30x4_L93_c260225.nc</ncdata>
<ncdata hgrid="ne0np4.NATL.ne30x8" nlev="93" >atm/cam/inic/se/betacast_ERA5ml_20100101_NATL_ne30x8_L93_c260225.nc</ncdata>
<!-- MPAS Initial Conditions -->
<ncdata hgrid="mpasa480" nlev="32" >atm/cam/inic/mpas/cami_01-01-2000_00Z_mpasa480_L32_CFSR_c240508.nc</ncdata>
<ncdata hgrid="mpasa480" nlev="58" >atm/cam/inic/mpas/cami_01-01-2000_00Z_mpasa480_L58_CFSR_c240814.nc</ncdata>
<ncdata hgrid="mpasa480" nlev="58" aquaplanet="1" >atm/cam/inic/mpas/QPC7_mpasa480_L58_cami_c250527.nc</ncdata>
<ncdata hgrid="mpasa120" nlev="32" >atm/cam/inic/mpas/cami_01-01-2000_00Z_mpasa120_L32_CFSR_c240508.nc</ncdata>
<ncdata hgrid="mpasa120" nlev="58" >atm/cam/inic/mpas/cami_01-01-2000_00Z_mpasa120_L58_CFSR_c240814.nc</ncdata>
<ncdata hgrid="mpasa120" nlev="58" aquaplanet="1" >atm/cam/inic/mpas/QPC7_mpasa120_L58_cami_c250527.nc</ncdata>
<ncdata hgrid="mpasa120" nlev="70" waccm_phys="1">atm/waccm/ic/mpasa120_L70.waccm_topography_SC_c240904.nc</ncdata>
<!-- Next entries are mostly used in EarthWorks, real-data ICs -->
<ncdata hgrid="mpasa60" nlev="58" >atm/cam/inic/mpas/cami_01-01-2000_00Z_mpasa60_L58_CFSR_c240905.nc</ncdata>
<ncdata hgrid="mpasa30" nlev="58" >atm/cam/inic/mpas/cami_01-01-2000_00Z_mpasa30_L58_CFSR_c240905.nc</ncdata>
<ncdata hgrid="mpasa15" nlev="58" >atm/cam/inic/mpas/cami_01-01-2000_00Z_mpasa15_L58_CFSR_c240905.nc</ncdata>
<!-- END EarthWorks specific, real-data ICs -->
<!-- FV3 Initial Conditions -->
<ncdata hgrid="C24" nlev="26" >atm/cam/inic/fv3/cami_0000-01-01_C24_L26_c200625.nc</ncdata>
<ncdata hgrid="C24" nlev="30" >atm/cam/inic/fv3/cami-mam3_0000-01-01_C24_L30_c200625.nc</ncdata>
<ncdata hgrid="C24" nlev="32" >atm/cam/inic/fv3/cami-mam3_0000-01-01_C24_L32_c200625.nc</ncdata>
<ncdata hgrid="C24" nlev="32" aquaplanet="1" >atm/cam/inic/fv3/aqua_0006-01-01_C24_L32_c200625.nc</ncdata>
<ncdata hgrid="C24" nlev="70" >atm/waccm/ic/f2000.waccm-mam3_C24_L70.cam2.i.0017-01-01_c200625.nc</ncdata>
<ncdata hgrid="C48" nlev="26" >atm/cam/inic/fv3/cami_0000-01-01_C48_L26_c200625.nc</ncdata>
<ncdata hgrid="C48" nlev="26" aquaplanet="1" >atm/cam/inic/fv3/aqua_0006-01-01_C48_L26_c200625.nc</ncdata>
<ncdata hgrid="C48" nlev="30" >atm/cam/inic/fv3/cami-mam3_0000-01-01_C48_L30_c200625.nc</ncdata>
<ncdata hgrid="C48" nlev="32" >atm/cam/inic/fv3/cami-mam3_0000-01-01_C48_L32_c200625.nc</ncdata>
<ncdata hgrid="C48" nlev="32" aquaplanet="1" >atm/cam/inic/fv3/aqua_0006-01-01_C48_L32_c200625.nc</ncdata>
<ncdata hgrid="C48" nlev="70" >atm/waccm/ic/f2000.waccm-mam3_C48_L70.cam2.i.0017-01-01_c200625.nc</ncdata>
<ncdata hgrid="C96" nlev="26" >atm/cam/inic/fv3/cami_0000-01-01_C96_L26_c200625.nc</ncdata>
<ncdata hgrid="C96" nlev="26" aquaplanet="1" >atm/cam/inic/fv3/aqua_0006-01-01_C96_L26_c200625.nc</ncdata>
<ncdata hgrid="C96" nlev="30" >atm/cam/inic/fv3/cami-mam3_0000-01-01_C96_L30_c200625.nc</ncdata>
<ncdata hgrid="C96" nlev="30" aquaplanet="1" >atm/cam/inic/fv3/aqua_0006-01-01_C96_L30_c161020.nc</ncdata>
<ncdata hgrid="C96" nlev="32" >atm/cam/inic/fv3/cami-mam3_0000-01-01_C96_L32_c200625.nc</ncdata>
<ncdata hgrid="C96" nlev="32" aquaplanet="1" >atm/cam/inic/fv3/aqua_0006-01-01_C96_L32_c200625.nc</ncdata>
<ncdata hgrid="C96" nlev="70" >atm/waccm/ic/f2000.waccm-mam3_C96_L70.cam2.i.0017-01-01_c200625.nc</ncdata>
<ncdata hgrid="C192" nlev="26" >atm/cam/inic/fv3/cami_0000-01-01_C192_L26_c200625.nc</ncdata>
<ncdata hgrid="C192" nlev="30" >atm/cam/inic/fv3/cami-mam3_0000-01-01_C192_L30_c200625.nc</ncdata>
<ncdata hgrid="C192" nlev="32" >atm/cam/inic/fv3/cami-mam3_0000-01-01_C192_L32_c200625.nc</ncdata>
<ncdata hgrid="C192" nlev="32" aquaplanet="1" >atm/cam/inic/fv3/aqua_0006-01-01_C192_L32_c200625.nc</ncdata>
<ncdata hgrid="C384" nlev="26" >atm/cam/inic/fv3/cami_0000-01-01_C384_L26_c200625.nc</ncdata>
<ncdata hgrid="C384" nlev="30" >atm/cam/inic/fv3/cami-mam3_0000-01-01_C384_L30_c200625.nc</ncdata>
<ncdata hgrid="C384" nlev="32" >atm/cam/inic/fv3/cami-mam3_0000-01-01_C384_L32_c200625.nc</ncdata>
<ncdata hgrid="C384" nlev="32" aquaplanet="1" >atm/cam/inic/fv3/aqua_0006-01-01_C384_L32_c200625.nc</ncdata>
<!-- Topography -->
<bnd_topo hgrid="0.23x0.31" >atm/cam/topo/USGS_gtopo30_0.23x0.31_remap_c061107.nc</bnd_topo>
<bnd_topo hgrid="0.47x0.63" >atm/cam/topo/USGS_gtopo30_0.47x0.63_remap_c061106.nc</bnd_topo>
<bnd_topo hgrid="0.47x0.63" phys="cam6">atm/cam/topo/fv_0.47x0.63_nc3000_Co030_Fi001_PF_nullRR_Nsw021_20171023.nc</bnd_topo>
<bnd_topo hgrid="0.47x0.63" phys="cam7">atm/cam/topo/fv_0.47x0.63_nc3000_Co030_Fi001_PF_nullRR_Nsw021_20171023.nc</bnd_topo>
<bnd_topo hgrid="0.5x0.625" >atm/cam/topo/topo-from-cami_0000-10-01_0.5x0.625_L26_c031204.nc</bnd_topo>
<bnd_topo hgrid="0.9x1.25" >atm/cam/topo/fv_0.9x1.25_nc3000_Nsw042_Nrs008_Co060_Fi001_ZR_sgh30_24km_GRNL_c170103.nc</bnd_topo>
<bnd_topo hgrid="1.9x2.5" >atm/cam/topo/fv_1.9x2.5_nc3000_Nsw084_Nrs016_Co120_Fi001_ZR_GRNL_c190405.nc</bnd_topo>
<bnd_topo hgrid="2.5x3.33" >atm/cam/topo/USGS-gtopo30_2.5x3.33_remap_c100204.nc</bnd_topo>
<bnd_topo hgrid="4x5" >atm/cam/topo/USGS-gtopo30_4x5_remap_c050520.nc</bnd_topo>
<bnd_topo hgrid="10x15" >atm/cam/topo/fv_10x15_nc0540_Nsw042_Nrs008_Co060_Fi001_20171220.nc</bnd_topo>
<bnd_topo hgrid="C24" >atm/cam/topo/fv3_C24_nc3000_Co180_Fi001_MulG_PF_nullRR_Nsw127_c200625.nc</bnd_topo>
<bnd_topo hgrid="C48" >atm/cam/topo/fv3_C48_nc3000_Co120_Fi001_MulG_PF_nullRR_Nsw085_c200625.nc</bnd_topo>
<bnd_topo hgrid="C96" >atm/cam/topo/fv3_C96_nc3000_Co060_Fi001_MulG_PF_nullRR_Nsw042_c200625.nc</bnd_topo>
<bnd_topo hgrid="C192" >atm/cam/topo/fv3_C192_nc3000_Co030_Fi001_MulG_PF_Nsw021_c200625.nc</bnd_topo>
<bnd_topo hgrid="C384" >atm/cam/topo/fv3_C384_nc3000_Co015_Fi001_MulG_PF_nullRR_Nsw011_c200625.nc</bnd_topo>
<bnd_topo hgrid="ne3np4" >atm/cam/topo/se/ne3np4_gmted2010_modis_bedmachine_nc0540_Laplace1000_noleak_20230717.nc</bnd_topo>
<bnd_topo hgrid="ne5np4" >atm/cam/topo/se/ne5np4_nc3000_Co360_Fi001_MulG_PF_nullRR_Nsw064_20170515.nc</bnd_topo>
<bnd_topo hgrid="ne16np4" >atm/cam/topo/se/ne16np4_nc3000_Co120_Fi001_PF_nullRR_Nsw084_20171012.nc</bnd_topo>
<bnd_topo hgrid="ne30np4" >atm/cam/topo/se/ne30np4_gmted2010_modis_bedmachine_nc3000_Laplace0100_noleak_greenlndantarcsgh30fac2.50_20250822.nc</bnd_topo>
<bnd_topo hgrid="ne60np4" >atm/cam/topo/se/ne60np4_nc3000_Co030_Fi001_PF_nullRR_Nsw021_20171012.nc</bnd_topo>
<bnd_topo hgrid="ne120np4" >atm/cam/topo/se/ne120np4_nc3000_Co015_Fi001_PF_nullRR_Nsw010_20171011.nc</bnd_topo>
<bnd_topo hgrid="ne240np4" >atm/cam/topo/se/ne240np4_nc3000_Co008_Fi001_PF_nullRR_Nsw005_20171014.nc</bnd_topo>
<bnd_topo hgrid="ne5np4" npg="2">atm/cam/topo/se/ne5pg2_nc3000_Co360_Fi001_MulG_PF_nullRR_Nsw060_20170706.nc</bnd_topo>
<bnd_topo hgrid="ne30np4" npg="2">atm/cam/topo/se/ne30pg2_gmted2010_modis_bedmachine_nc3000_Laplace0100_noleak_greenlndantarcsgh30fac2.50_20250825.nc</bnd_topo>
<bnd_topo hgrid="ne60np4" npg="2">atm/cam/topo/se/ne60pg2_nc3000_Co030_Fi001_PF_nullRR_Nsw021_20171014.nc</bnd_topo>
<bnd_topo hgrid="ne120np4" npg="2">atm/cam/topo/se/ne120pg2_nc3000_Co015_Fi001_PF_nullRR_Nsw010_20171012.nc</bnd_topo>
<bnd_topo hgrid="ne240np4" npg="2">atm/cam/topo/se/ne240pg2_nc3000_Co008_Fi001_PF_nullRR_Nsw005_20171014.nc</bnd_topo>
<bnd_topo hgrid="ne3np4" >atm/cam/topo/se/ne3np4_gmted2010_modis_bedmachine_nc0540_Laplace1000_noleak_20230717.nc</bnd_topo>
<bnd_topo hgrid="ne3np4" npg="3">atm/cam/topo/se/ne3pg3_gmted2010_modis_bedmachine_nc0540_Laplace1000_noleak_20230209.nc</bnd_topo>
<bnd_topo hgrid="ne5np4" npg="3">atm/cam/topo/se/ne5pg3_nc3000_Co360_Fi001_MulG_PF_nullRR_Nsw064_20170516.nc</bnd_topo>
<bnd_topo hgrid="ne16np4" npg="3">atm/cam/topo/se/ne16pg3_gmted2010_modis_bedmachine_nc3000_Laplace0200_noleak_greenlndantarcsgh30fac2.50_20250825.nc</bnd_topo>
<bnd_topo hgrid="ne30np4" npg="3">atm/cam/topo/se/ne30pg3_gmted2010_modis_bedmachine_nc3000_Laplace0100_noleak_greenlndantarcsgh30fac2.50_20250828.nc</bnd_topo>
<bnd_topo hgrid="ne60np4" npg="3">atm/cam/topo/se/ne60pg3_nc3000_Co030_Fi001_PF_nullRR_Nsw021_20171012.nc</bnd_topo>
<bnd_topo hgrid="ne120np4" npg="3">atm/cam/topo/se/ne120pg3_nc3000_Co015_Fi001_PF_nullRR_Nsw010_20171014.nc</bnd_topo>
<bnd_topo hgrid="ne240np4" npg="3">atm/cam/topo/se/ne240pg3_nc3000_Co008_Fi001_PF_nullRR_Nsw005_20171015.nc</bnd_topo>
<bnd_topo hgrid="ne0np4CONUS.ne30x8" >atm/cam/topo/se/ne30x8_CONUS_nc3000_Co060_Fi001_MulG_PF_RR_Nsw042_c200428.nc</bnd_topo>
<bnd_topo hgrid="ne0np4.ARCTIC.ne30x4" >atm/cam/topo/se/ne30x4_ARCTIC_nc3000_Co060_Fi001_MulG_PF_RR_Nsw042_c200428.nc</bnd_topo>
<bnd_topo hgrid="ne0np4.ARCTICGRIS.ne30x8" >atm/cam/topo/se/ne30x8_ARCTICGRIS_nc3000_Co060_Fi001_MulG_PF_RR_Nsw042_c200428.nc</bnd_topo>
<bnd_topo hgrid="ne0np4.POLARCAP.ne30x4" >atm/cam/topo/se/POLARCAP_gmted2010_modis_bedmachine_nc3000_Laplace0100_noleak_20250322.nc</bnd_topo>
<bnd_topo hgrid="ne0np4.NATL.ne30x8" >atm/cam/topo/se/NATL.ne30x8_gmted2010_modis_bedmachine_nc3000_Laplace0100_noleak_20260225.nc</bnd_topo>
<bnd_topo hgrid="mpasa480" >atm/cam/topo/mpas/mpasa480_gmted2010_modis_bedmachine_nc3000_Laplace0400_noleak_20240507.nc</bnd_topo>
<bnd_topo hgrid="mpasa120" >atm/cam/topo/mpas/mpasa120_gmted2010_modis_bedmachine_nc3000_Laplace0100_noleak_20240507.nc</bnd_topo>
<!-- Next entires are mostly used in EarthWorks, for real-data cases -->
<bnd_topo hgrid="mpasa60" >atm/cam/topo/mpas/mpasa60_gmted2010_modis_bedmachine_nc3000_Laplace0050_noleak_20240507.nc</bnd_topo>
<bnd_topo hgrid="mpasa30" >atm/cam/topo/mpas/mpasa30_gmted2010_modis_bedmachine_nc3000_Laplace0025_noleak_20240507.nc</bnd_topo>
<bnd_topo hgrid="mpasa15" >atm/cam/topo/mpas/mpasa15_gmted2010_modis_bedmachine_nc3000_Laplace0013_noleak_20240507.nc</bnd_topo>
<!-- END EarthWorks specific, for real-data cases -->
<!-- Scale Dry Air Mass: 0=> no scaling / +nnn=>scale to nnn Pressure -->
<scale_dry_air_mass > 0.0D0 </scale_dry_air_mass>
<scale_dry_air_mass aquaplanet="1" > 101080.0D0 </scale_dry_air_mass>
<!-- Scale Dry Air Mass: for cases with topography -->
<scale_dry_air_mass phys="cam4" > 98288.0D0 </scale_dry_air_mass>
<scale_dry_air_mass phys="cam5" > 98288.0D0 </scale_dry_air_mass>
<scale_dry_air_mass phys="cam6" > 98288.0D0 </scale_dry_air_mass>
<scale_dry_air_mass phys="cam7" > 98288.0D0 </scale_dry_air_mass>
<!-- Ridge parameterization (gamma) -->
<bnd_rdggm hgrid="0.9x1.25">atm/cam/topo/fv_0.9x1.25_nc3000_Nsw006_Nrs002_Co008_Fi001_ZR_c160505.nc</bnd_rdggm>
<bnd_rdggm hgrid="1.9x2.5" >atm/cam/topo/fv_1.9x2.5_nc3000_Nsw084_Nrs016_Co120_Fi001_ZR_061116.nc</bnd_rdggm>
<!-- Sometimes, the default should be no topography file -->
<use_topo_file > .true. </use_topo_file>
<use_topo_file aquaplanet="1" > .false. </use_topo_file>
<use_topo_file phys="held_suarez" > .false. </use_topo_file>
<use_topo_file analytic_ic="1" > .false. </use_topo_file>
<!-- Mesh files for refined SE grids -->
<se_mesh_file> none </se_mesh_file>
<se_mesh_file hgrid="ne0np4CONUS.ne30x8" >atm/cam/coords/ne0np4CONUS.ne30x8.g</se_mesh_file>
<se_mesh_file hgrid="ne0np4TESTONLY.ne5x4" >atm/cam/coords/ne0np4EQFACE.ne5x4.g</se_mesh_file>
<se_mesh_file hgrid="ne0np4.ARCTIC.ne30x4" >atm/cam/coords/ne30x4_EXODUS_ARCTIC_c191009.g</se_mesh_file>
<se_mesh_file hgrid="ne0np4.ARCTICGRIS.ne30x8">atm/cam/coords/ne30x8_EXODUS_ARCTICGRIS_c191209.g</se_mesh_file>
<se_mesh_file hgrid="ne0np4.POLARCAP.ne30x4" >atm/cam/coords/POLARCAP_ne30x4_EXODUS_c220531.nc</se_mesh_file>
<se_mesh_file hgrid="ne0np4.NATL.ne30x8" >atm/cam/coords/NATL_ne30x8_EXODUS_c201016.nc</se_mesh_file>
<!-- Analytic ICs -->
<analytic_ic_type > none </analytic_ic_type>
<analytic_ic_type phys="adiabatic" > held_suarez_1994 </analytic_ic_type>
<analytic_ic_type phys="held_suarez"> held_suarez_1994 </analytic_ic_type>
<analytic_ic_type phys="kessler" > moist_baroclinic_wave_dcmip2016 </analytic_ic_type>
<analytic_ic_type phys="tj2016" > moist_baroclinic_wave_dcmip2016 </analytic_ic_type>
<analytic_ic_type phys="grayrad" > moist_baroclinic_wave_dcmip2016 </analytic_ic_type>
<!-- Frierson Gray Radiation -->
<frierson_Wind_min phys="grayrad" > 1.0d-5 </frierson_Wind_min>
<frierson_Z0 phys="grayrad" > 3.21d-5 </frierson_Z0>
<frierson_Ri_c phys="grayrad" > 1.0d0 </frierson_Ri_c>
<frierson_Fb phys="grayrad" > 0.1d0 </frierson_Fb>
<frierson_Albedo phys="grayrad" > 0.310d0 </frierson_Albedo>
<frierson_DeltaS phys="grayrad" > 1.4d0 </frierson_DeltaS>
<frierson_Tau_eqtr phys="grayrad" > 6.0d0 </frierson_Tau_eqtr>
<frierson_Tau_pole phys="grayrad" > 1.5d0 </frierson_Tau_pole>
<frierson_LinFrac phys="grayrad" > 0.1d0 </frierson_LinFrac>
<frierson_C0 phys="grayrad" > 1.d7 </frierson_C0>
<frierson_WetDryCoef phys="grayrad" > 1.d0 </frierson_WetDryCoef>
<frierson_Tmin phys="grayrad" > 271.d0 </frierson_Tmin>
<frierson_Tdlt phys="grayrad" > 39.d0 </frierson_Tdlt>
<frierson_Twidth phys="grayrad" > 26.d0 </frierson_Twidth>
<!-- Bulk aerosol physical properties (includes optics) -->
<!-- CAM-Chem bulk aerosols (different aerosol names used in prescribed and prognostic modes) -->
<!-- Optics for CAM-RT -->
<bam_sulf rad="camrt">atm/cam/physprops/sulfate_camrt_c080918.nc</bam_sulf>
<bam_SO4 rad="camrt">atm/cam/physprops/sulfate_camrt_c080918.nc</bam_SO4>
<bam_dust1 rad="camrt">atm/cam/physprops/dust1_camrt_c120518.nc</bam_dust1>
<bam_DST01 rad="camrt">atm/cam/physprops/dust1_camrt_c120518.nc</bam_DST01>
<bam_dust2 rad="camrt">atm/cam/physprops/dust2_camrt_c120518.nc</bam_dust2>
<bam_DST02 rad="camrt">atm/cam/physprops/dust2_camrt_c120518.nc</bam_DST02>
<bam_dust3 rad="camrt">atm/cam/physprops/dust3_camrt_c120518.nc</bam_dust3>
<bam_DST03 rad="camrt">atm/cam/physprops/dust3_camrt_c120518.nc</bam_DST03>
<bam_dust4 rad="camrt">atm/cam/physprops/dust4_camrt_c120518.nc</bam_dust4>
<bam_DST04 rad="camrt">atm/cam/physprops/dust4_camrt_c120518.nc</bam_DST04>
<bam_bcar1 rad="camrt">atm/cam/physprops/bcpho_camrt_c080918.nc</bam_bcar1>
<bam_CB1 rad="camrt">atm/cam/physprops/bcpho_camrt_c080918.nc</bam_CB1>
<bam_bcar2 rad="camrt">atm/cam/physprops/bcphi_camrt_c080918.nc</bam_bcar2>
<bam_CB2 rad="camrt">atm/cam/physprops/bcphi_camrt_c080918.nc</bam_CB2>
<bam_ocar1 rad="camrt">atm/cam/physprops/ocpho_camrt_c080918.nc</bam_ocar1>
<bam_OC1 rad="camrt">atm/cam/physprops/ocpho_camrt_c080918.nc</bam_OC1>
<bam_ocar2 rad="camrt">atm/cam/physprops/ocphi_camrt_c080918.nc</bam_ocar2>
<bam_OC2 rad="camrt">atm/cam/physprops/ocphi_camrt_c080918.nc</bam_OC2>
<bam_SSLTA rad="camrt">atm/cam/physprops/ssam_camrt_c080918.nc</bam_SSLTA>
<bam_SSLTC rad="camrt">atm/cam/physprops/sscm_camrt_c080918.nc</bam_SSLTC>
<!-- CAM-Chem bulk aerosols (different names used in prescribed and prognostic modes) -->
<!-- Optics for RRTMG -->
<bam_sulf rad="rrtmg">atm/cam/physprops/sulfate_rrtmg_c080918.nc</bam_sulf>
<bam_SO4 rad="rrtmg">atm/cam/physprops/sulfate_rrtmg_c080918.nc</bam_SO4>
<bam_dust1 rad="rrtmg">atm/cam/physprops/dust1_rrtmg_c080918.nc</bam_dust1>
<bam_DST01 rad="rrtmg">atm/cam/physprops/dust1_rrtmg_c080918.nc</bam_DST01>
<bam_dust2 rad="rrtmg">atm/cam/physprops/dust2_rrtmg_c080918.nc</bam_dust2>
<bam_DST02 rad="rrtmg">atm/cam/physprops/dust2_rrtmg_c080918.nc</bam_DST02>
<bam_dust3 rad="rrtmg">atm/cam/physprops/dust3_rrtmg_c080918.nc</bam_dust3>
<bam_DST03 rad="rrtmg">atm/cam/physprops/dust3_rrtmg_c080918.nc</bam_DST03>
<bam_dust4 rad="rrtmg">atm/cam/physprops/dust4_rrtmg_c080918.nc</bam_dust4>
<bam_DST04 rad="rrtmg">atm/cam/physprops/dust4_rrtmg_c080918.nc</bam_DST04>
<bam_bcar1 rad="rrtmg">atm/cam/physprops/bcpho_rrtmg_c080918.nc</bam_bcar1>
<bam_CB1 rad="rrtmg">atm/cam/physprops/bcpho_rrtmg_c080918.nc</bam_CB1>
<bam_bcar2 rad="rrtmg">atm/cam/physprops/bcphi_rrtmg_c080918.nc</bam_bcar2>
<bam_CB2 rad="rrtmg">atm/cam/physprops/bcphi_rrtmg_c080918.nc</bam_CB2>
<bam_ocar1 rad="rrtmg">atm/cam/physprops/ocpho_rrtmg_c080918.nc</bam_ocar1>
<bam_OC1 rad="rrtmg">atm/cam/physprops/ocpho_rrtmg_c080918.nc</bam_OC1>
<bam_ocar2 rad="rrtmg">atm/cam/physprops/ocphi_rrtmg_c080918.nc</bam_ocar2>
<bam_OC2 rad="rrtmg">atm/cam/physprops/ocphi_rrtmg_c080918.nc</bam_OC2>
<bam_sslt1 rad="rrtmg">atm/cam/physprops/seasalt1_rrtmg_c080918.nc</bam_sslt1>
<bam_SSLT01 rad="rrtmg">atm/cam/physprops/seasalt1_rrtmg_c080918.nc</bam_SSLT01>
<bam_sslt2 rad="rrtmg">atm/cam/physprops/seasalt2_rrtmg_c080918.nc</bam_sslt2>
<bam_SSLT02 rad="rrtmg">atm/cam/physprops/seasalt2_rrtmg_c080918.nc</bam_SSLT02>
<bam_sslt3 rad="rrtmg">atm/cam/physprops/seasalt3_rrtmg_c080918.nc</bam_sslt3>
<bam_SSLT03 rad="rrtmg">atm/cam/physprops/seasalt3_rrtmg_c080918.nc</bam_SSLT03>
<bam_sslt4 rad="rrtmg">atm/cam/physprops/seasalt4_rrtmg_c080918.nc</bam_sslt4>
<bam_SSLT04 rad="rrtmg">atm/cam/physprops/seasalt4_rrtmg_c080918.nc</bam_SSLT04>
<bam_SSLTA rad="rrtmg">atm/cam/physprops/ssam_rrtmg_c080918.nc</bam_SSLTA>
<bam_SSLTC rad="rrtmg">atm/cam/physprops/sscm_rrtmg_c080918.nc</bam_SSLTC>
<!-- Bulk aerosols for RRTMGP -->
<bam_sulf rad="rrtmgp">atm/cam/physprops/sulfate_rrtmg_c080918.nc</bam_sulf>
<bam_SO4 rad="rrtmgp">atm/cam/physprops/sulfate_rrtmg_c080918.nc</bam_SO4>
<bam_dust1 rad="rrtmgp">atm/cam/physprops/dust1_rrtmg_c080918.nc</bam_dust1>
<bam_DST01 rad="rrtmgp">atm/cam/physprops/dust1_rrtmg_c080918.nc</bam_DST01>
<bam_dust2 rad="rrtmgp">atm/cam/physprops/dust2_rrtmg_c080918.nc</bam_dust2>
<bam_DST02 rad="rrtmgp">atm/cam/physprops/dust2_rrtmg_c080918.nc</bam_DST02>
<bam_dust3 rad="rrtmgp">atm/cam/physprops/dust3_rrtmg_c080918.nc</bam_dust3>
<bam_DST03 rad="rrtmgp">atm/cam/physprops/dust3_rrtmg_c080918.nc</bam_DST03>
<bam_dust4 rad="rrtmgp">atm/cam/physprops/dust4_rrtmg_c080918.nc</bam_dust4>
<bam_DST04 rad="rrtmgp">atm/cam/physprops/dust4_rrtmg_c080918.nc</bam_DST04>
<bam_bcar1 rad="rrtmgp">atm/cam/physprops/bcpho_rrtmg_c080918.nc</bam_bcar1>
<bam_CB1 rad="rrtmgp">atm/cam/physprops/bcpho_rrtmg_c080918.nc</bam_CB1>
<bam_bcar2 rad="rrtmgp">atm/cam/physprops/bcphi_rrtmg_c080918.nc</bam_bcar2>
<bam_CB2 rad="rrtmgp">atm/cam/physprops/bcphi_rrtmg_c080918.nc</bam_CB2>
<bam_ocar1 rad="rrtmgp">atm/cam/physprops/ocpho_rrtmg_c080918.nc</bam_ocar1>
<bam_OC1 rad="rrtmgp">atm/cam/physprops/ocpho_rrtmg_c080918.nc</bam_OC1>
<bam_ocar2 rad="rrtmgp">atm/cam/physprops/ocphi_rrtmg_c080918.nc</bam_ocar2>
<bam_OC2 rad="rrtmgp">atm/cam/physprops/ocphi_rrtmg_c080918.nc</bam_OC2>
<bam_sslt1 rad="rrtmgp">atm/cam/physprops/seasalt1_rrtmg_c080918.nc</bam_sslt1>
<bam_SSLT01 rad="rrtmgp">atm/cam/physprops/seasalt1_rrtmg_c080918.nc</bam_SSLT01>
<bam_sslt2 rad="rrtmgp">atm/cam/physprops/seasalt2_rrtmg_c080918.nc</bam_sslt2>
<bam_SSLT02 rad="rrtmgp">atm/cam/physprops/seasalt2_rrtmg_c080918.nc</bam_SSLT02>
<bam_sslt3 rad="rrtmgp">atm/cam/physprops/seasalt3_rrtmg_c080918.nc</bam_sslt3>
<bam_SSLT03 rad="rrtmgp">atm/cam/physprops/seasalt3_rrtmg_c080918.nc</bam_SSLT03>
<bam_sslt4 rad="rrtmgp">atm/cam/physprops/seasalt4_rrtmg_c080918.nc</bam_sslt4>
<bam_SSLT04 rad="rrtmgp">atm/cam/physprops/seasalt4_rrtmg_c080918.nc</bam_SSLT04>
<bam_SSLTA rad="rrtmgp">atm/cam/physprops/ssam_rrtmg_c080918.nc</bam_SSLTA>
<bam_SSLTC rad="rrtmgp">atm/cam/physprops/sscm_rrtmg_c080918.nc</bam_SSLTC>
<!-- CAM-Chem modal aerosols (different names used in prescribed and prognostic modes) -->
<!-- Optics for RRTMG -->
<!-- modal aerosol properties files -->
<mam_so4 rad="rrtmg">atm/cam/physprops/sulfate_rrtmg_c080918.nc</mam_so4>
<mam_pom rad="rrtmg" mam="3mode">atm/cam/physprops/ocpho_rrtmg_c101112.nc</mam_pom>
<mam_pom rad="rrtmg">atm/cam/physprops/ocpho_rrtmg_c130709.nc</mam_pom>
<mam_soa rad="rrtmg">atm/cam/physprops/ocphi_rrtmg_c100508.nc</mam_soa>
<mam_bc rad="rrtmg">atm/cam/physprops/bcpho_rrtmg_c100508.nc</mam_bc>
<mam_ncl rad="rrtmg">atm/cam/physprops/ssam_rrtmg_c100508.nc</mam_ncl>
<mam_dst rad="rrtmg">atm/cam/physprops/dust_aeronet_rrtmg_c141106.nc</mam_dst>
<mam_nh4 rad="rrtmg">atm/cam/physprops/sulfate_rrtmg_c080918.nc</mam_nh4>
<!-- Modal aerosol properties for RRTMGP -->
<mam_so4 rad="rrtmgp">atm/cam/physprops/sulfate_rrtmg_c080918.nc</mam_so4>
<mam_pom rad="rrtmgp" mam="3mode">atm/cam/physprops/ocpho_rrtmg_c101112.nc</mam_pom>
<mam_pom rad="rrtmgp">atm/cam/physprops/ocpho_rrtmg_c130709.nc</mam_pom>
<mam_soa rad="rrtmgp">atm/cam/physprops/ocphi_rrtmg_c100508.nc</mam_soa>
<mam_bc rad="rrtmgp">atm/cam/physprops/bcpho_rrtmg_c100508.nc</mam_bc>
<mam_ncl rad="rrtmgp">atm/cam/physprops/ssam_rrtmg_c100508.nc</mam_ncl>
<mam_dst rad="rrtmgp">atm/cam/physprops/dust_aeronet_rrtmg_c141106.nc</mam_dst>
<mam_nh4 rad="rrtmgp">atm/cam/physprops/sulfate_rrtmg_c080918.nc</mam_nh4>
<!-- Eruptive volcanic aerosols -->
<VOLC_MMR rad="camrt">atm/cam/physprops/volc_camRT_byradius_sigma1.6_c130724.nc</VOLC_MMR>
<VOLC_MMR chem="none" rad="camrt">atm/cam/physprops/sulfuricacid_cam3_c080918.nc</VOLC_MMR>
<VOLC_MMR rad="rrtmg">atm/cam/physprops/volc_camRRTMG_byradius_sigma1.6_c130724.nc</VOLC_MMR>
<VOLC_MMR1 rad="rrtmg">atm/cam/physprops/volc_camRRTMG_byradius_sigma1.6_mode1_c210211.nc</VOLC_MMR1>
<VOLC_MMR2 rad="rrtmg">atm/cam/physprops/volc_camRRTMG_byradius_sigma1.6_mode2_c210211.nc</VOLC_MMR2>
<VOLC_MMR3 rad="rrtmg">atm/cam/physprops/volc_camRRTMG_byradius_sigma1.2_mode3_c210211.nc</VOLC_MMR3>
<!-- Eruptive volcanic aerosols for RRTMGP -->
<VOLC_MMR rad="rrtmgp">atm/cam/physprops/volc_camRRTMG_byradius_sigma1.6_c130724.nc</VOLC_MMR>
<VOLC_MMR1 rad="rrtmgp">atm/cam/physprops/volc_camRRTMG_byradius_sigma1.6_mode1_c210211.nc</VOLC_MMR1>
<VOLC_MMR2 rad="rrtmgp">atm/cam/physprops/volc_camRRTMG_byradius_sigma1.6_mode2_c210211.nc</VOLC_MMR2>
<VOLC_MMR3 rad="rrtmgp">atm/cam/physprops/volc_camRRTMG_byradius_sigma1.2_mode3_c210211.nc</VOLC_MMR3>
<!-- Modal optics calculations -->
<mam3_mode1_file rad="rrtmg">atm/cam/physprops/mam4_mode1_rrtmg_aeronetdust_c141106.nc</mam3_mode1_file>
<mam3_mode2_file rad="rrtmg">atm/cam/physprops/mam4_mode2_rrtmg_aitkendust_c141106.nc </mam3_mode2_file>
<mam3_mode3_file rad="rrtmg">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_c141106.nc</mam3_mode3_file>
<mam3_mode1_file rad="rrtmg" ver="strat">atm/cam/physprops/mam4_mode1_rrtmg_aeronetdust_sig1.6_dgnh.48_c140304.nc</mam3_mode1_file>
<mam3_mode3_file rad="rrtmg" ver="strat">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_sig1.2_dgnl.40_c150219.nc</mam3_mode3_file>
<mam4_mode1_file rad="rrtmg">atm/cam/physprops/mam4_mode1_rrtmg_aeronetdust_c141106.nc</mam4_mode1_file>
<mam4_mode2_file rad="rrtmg">atm/cam/physprops/mam4_mode2_rrtmg_aitkendust_c141106.nc</mam4_mode2_file>
<mam4_mode3_file rad="rrtmg">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_c141106.nc</mam4_mode3_file>
<mam4_mode4_file rad="rrtmg">atm/cam/physprops/mam4_mode4_rrtmg_c130628.nc</mam4_mode4_file>
<mam4_mode1_file rad="rrtmg" ver="strat">atm/cam/physprops/mam4_mode1_rrtmg_aeronetdust_sig1.6_dgnh.48_c140304.nc</mam4_mode1_file>
<mam4_mode3_file rad="rrtmg" ver="strat" phys="cam6">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_sig1.2_dgnl.40_c150219.nc</mam4_mode3_file>
<mam5_mode1_file rad="rrtmg" ver="strat">atm/cam/physprops/mam4_mode1_rrtmg_aeronetdust_sig1.6_dgnh.48_c140304.nc</mam5_mode1_file>
<mam5_mode2_file rad="rrtmg" ver="strat">atm/cam/physprops/mam4_mode2_rrtmg_aitkendust_c141106.nc</mam5_mode2_file>
<mam5_mode3_file rad="rrtmg" ver="strat">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_c141106.nc</mam5_mode3_file>
<mam5_mode4_file rad="rrtmg" ver="strat">atm/cam/physprops/mam4_mode4_rrtmg_c130628.nc</mam5_mode4_file>
<mam5_mode5_file rad="rrtmg" ver="strat">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_sig1.2_dgnl.40_c150219.nc</mam5_mode5_file>
<mam7_mode1_file rad="rrtmg">atm/cam/physprops/mam7_mode1_rrtmg_c120904.nc</mam7_mode1_file>
<mam7_mode2_file rad="rrtmg">atm/cam/physprops/mam7_mode2_rrtmg_c120904.nc</mam7_mode2_file>
<mam7_mode3_file rad="rrtmg">atm/cam/physprops/mam7_mode3_rrtmg_c120904.nc</mam7_mode3_file>
<mam7_mode4_file rad="rrtmg">atm/cam/physprops/mam7_mode4_rrtmg_c120904.nc</mam7_mode4_file>
<mam7_mode5_file rad="rrtmg">atm/cam/physprops/mam7_mode5_rrtmg_c120904.nc</mam7_mode5_file>
<mam7_mode6_file rad="rrtmg">atm/cam/physprops/mam7_mode6_rrtmg_c120904.nc</mam7_mode6_file>
<mam7_mode7_file rad="rrtmg">atm/cam/physprops/mam7_mode7_rrtmg_c120904.nc</mam7_mode7_file>
<!-- Modal optics for RRTMGP -->
<mam3_mode1_file rad="rrtmgp">atm/cam/physprops/mam4_mode1_rrtmg_aeronetdust_c141106.nc</mam3_mode1_file>
<mam3_mode2_file rad="rrtmgp">atm/cam/physprops/mam4_mode2_rrtmg_aitkendust_c141106.nc </mam3_mode2_file>
<mam3_mode3_file rad="rrtmgp">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_c141106.nc</mam3_mode3_file>
<mam3_mode1_file rad="rrtmgp" ver="strat">atm/cam/physprops/mam4_mode1_rrtmg_aeronetdust_sig1.6_dgnh.48_c140304.nc</mam3_mode1_file>
<mam3_mode3_file rad="rrtmgp" ver="strat">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_sig1.2_dgnl.40_c150219.nc</mam3_mode3_file>
<mam4_mode1_file rad="rrtmgp">atm/cam/physprops/mam4_mode1_rrtmg_aeronetdust_c141106.nc</mam4_mode1_file>
<mam4_mode2_file rad="rrtmgp">atm/cam/physprops/mam4_mode2_rrtmg_aitkendust_c141106.nc</mam4_mode2_file>
<mam4_mode3_file rad="rrtmgp">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_c141106.nc</mam4_mode3_file>
<mam4_mode4_file rad="rrtmgp">atm/cam/physprops/mam4_mode4_rrtmg_c130628.nc</mam4_mode4_file>
<mam4_mode1_file rad="rrtmgp" ver="strat">atm/cam/physprops/mam4_mode1_rrtmg_aeronetdust_sig1.6_dgnh.48_c140304.nc</mam4_mode1_file>
<mam4_mode3_file rad="rrtmgp" ver="strat" phys="cam6">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_sig1.2_dgnl.40_c150219.nc</mam4_mode3_file>
<mam5_mode1_file rad="rrtmgp" ver="strat">atm/cam/physprops/mam4_mode1_rrtmg_aeronetdust_sig1.6_dgnh.48_c140304.nc</mam5_mode1_file>
<mam5_mode2_file rad="rrtmgp" ver="strat">atm/cam/physprops/mam4_mode2_rrtmg_aitkendust_c141106.nc</mam5_mode2_file>
<mam5_mode3_file rad="rrtmgp" ver="strat">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_c141106.nc</mam5_mode3_file>
<mam5_mode4_file rad="rrtmgp" ver="strat">atm/cam/physprops/mam4_mode4_rrtmg_c130628.nc</mam5_mode4_file>
<mam5_mode5_file rad="rrtmgp" ver="strat">atm/cam/physprops/mam4_mode3_rrtmg_aeronetdust_sig1.2_dgnl.40_c150219.nc</mam5_mode5_file>
<mam7_mode1_file rad="rrtmgp">atm/cam/physprops/mam7_mode1_rrtmg_c120904.nc</mam7_mode1_file>
<mam7_mode2_file rad="rrtmgp">atm/cam/physprops/mam7_mode2_rrtmg_c120904.nc</mam7_mode2_file>
<mam7_mode3_file rad="rrtmgp">atm/cam/physprops/mam7_mode3_rrtmg_c120904.nc</mam7_mode3_file>
<mam7_mode4_file rad="rrtmgp">atm/cam/physprops/mam7_mode4_rrtmg_c120904.nc</mam7_mode4_file>
<mam7_mode5_file rad="rrtmgp">atm/cam/physprops/mam7_mode5_rrtmg_c120904.nc</mam7_mode5_file>
<mam7_mode6_file rad="rrtmgp">atm/cam/physprops/mam7_mode6_rrtmg_c120904.nc</mam7_mode6_file>
<mam7_mode7_file rad="rrtmgp">atm/cam/physprops/mam7_mode7_rrtmg_c120904.nc</mam7_mode7_file>
<water_refindex_file>atm/cam/physprops/water_refindex_rrtmg_c080910.nc</water_refindex_file>
<modal_accum_coarse_exch >.false.</modal_accum_coarse_exch>
<modal_accum_coarse_exch phys="cam6" >.true.</modal_accum_coarse_exch>
<modal_accum_coarse_exch phys="cam7" >.true.</modal_accum_coarse_exch>
<!-- Cloud optics for RRTMG -->
<liqcldoptics rad="rrtmg" microphys="rk">slingo</liqcldoptics>
<icecldoptics rad="rrtmg" microphys="rk">ebertcurry</icecldoptics>
<liqcldoptics rad="rrtmg">gammadist</liqcldoptics>
<icecldoptics rad="rrtmg">mitchell</icecldoptics>
<iceopticsfile rad="rrtmg">atm/cam/physprops/iceoptics_c080917.nc</iceopticsfile>
<liqopticsfile rad="rrtmg">atm/cam/physprops/F_nwvl200_mu20_lam50_res64_t298_c080428.nc</liqopticsfile>
<!-- RRTMGP -->
<liqcldoptics rad="rrtmgp">gammadist</liqcldoptics>
<icecldoptics rad="rrtmgp">mitchell</icecldoptics>
<iceopticsfile rad="rrtmgp">atm/cam/physprops/iceoptics_c080917.nc</iceopticsfile>
<liqopticsfile rad="rrtmgp">atm/cam/physprops/F_nwvl200_mu20_lam50_res64_t298_c080428.nc</liqopticsfile>
<rrtmgp_coefs_lw_file>src/physics/rrtmgp/data/rrtmgp-gas-lw-g128.nc</rrtmgp_coefs_lw_file>
<rrtmgp_coefs_sw_file>src/physics/rrtmgp/data/rrtmgp-gas-sw-g112.nc</rrtmgp_coefs_sw_file>
<!-- Top valid pressure (Pa) top for LTE radiation scheme -->
<p_top_for_equil_rad> 0.D0 </p_top_for_equil_rad>
<p_top_for_equil_rad waccmx="1" > 1.D0 </p_top_for_equil_rad>
<p_top_for_equil_rad waccm_phys="1" > 1.D0 </p_top_for_equil_rad>
<p_top_for_equil_rad rad="rrtmgp"> 5.D0 </p_top_for_equil_rad>
<!-- Top pressure (Pa) for non-LTE/LTE merger region -->
<p_top_for_radmrg> 0.D0 </p_top_for_radmrg>
<p_top_for_radmrg rad="rrtmgp"> 6.1D0 </p_top_for_radmrg>
<!-- Bottom pressure (Pa) for non-LTE/LTE merger region -->
<p_bot_for_radmrg> 1.D0 </p_bot_for_radmrg>
<p_bot_for_radmrg rad="rrtmgp"> 20.D0 </p_bot_for_radmrg>
<!-- Scaling factor for simplified QRS MLT heating in CAM -->
<qrsmlt_scaling> 1.D0 </qrsmlt_scaling>
<!-- CAM-RT absorptivity/emissivity lookup table -->
<absems_data rad="camrt">atm/cam/rad/abs_ems_factors_fastvx.c030508.nc</absems_data>
<!-- CARMA file paths -->
<carma_emis_file carma="meteor_smoke">atm/waccm/emis/meteor_smoke_kalashnikova.nc</carma_emis_file>
<carma_escale_file carma="meteor_smoke">atm/waccm/emis/smoke_grf_frentzke.nc</carma_escale_file>
<carma_emis_file carma="mixed_sulfate">atm/waccm/emis/meteor_smoke_kalashnikova.nc</carma_emis_file>
<carma_escale_file carma="mixed_sulfate">atm/waccm/emis/smoke_grf_frentzke.nc</carma_escale_file>
<carma_emis_file carma="pmc">atm/waccm/emis/meteor_smoke_kalashnikova.nc</carma_emis_file>
<carma_escale_file carma="pmc">atm/waccm/emis/smoke_grf_frentzke.nc</carma_escale_file>
<carma_mice_file carma="pmc">atm/cam/physprops/mice_warren2008.nc</carma_mice_file>
<carma_emis_file carma="pmc_sulfate">atm/waccm/emis/meteor_smoke_kalashnikova.nc</carma_emis_file>
<carma_escale_file carma="pmc_sulfate">atm/waccm/emis/smoke_grf_frentzke.nc</carma_escale_file>
<carma_mice_file carma="pmc_sulfate">atm/cam/physprops/mice_warren2008.nc</carma_mice_file>
<carma_soilerosion_file carma="cirrus_dust">atm/cam/dst/soil_erosion_factor_1x1_c120907.nc</carma_soilerosion_file>
<carma_soilerosion_file carma="trop_strat_soa1">atm/cam/dst/soil_erosion_factor_1x1_c120907.nc</carma_soilerosion_file>
<carma_soilerosion_file carma="trop_strat_soa5">atm/cam/dst/soil_erosion_factor_1x1_c120907.nc</carma_soilerosion_file>
<carma_soilerosion_file carma="dust">atm/cam/dst/soil_erosion_factor_1x1_c120907.nc</carma_soilerosion_file>
<carma_emis_file carma="tholin">atm/waccm/emis/early_earth_haze.nc</carma_emis_file>
<!-- CAM-Chem ozone (2000 climatology) -->
<prescribed_ozone_datapath>atm/cam/ozone</prescribed_ozone_datapath>
<prescribed_ozone_file>ozone_1.9x2.5_L26_2000clim_c091112.nc</prescribed_ozone_file>
<prescribed_ozone_name>O3</prescribed_ozone_name>
<prescribed_ozone_type>CYCLICAL</prescribed_ozone_type>
<prescribed_ozone_cycle_yr>2000</prescribed_ozone_cycle_yr>
<!-- Smaller ozone files used when running SCAM and asking for a CAMIOP file) -->
<prescribed_ozone_file phys="cam6" scam="1" >ozone_strataero_CAM6chem_2000climo_zm_5day_c171004.nc</prescribed_ozone_file>
<prescribed_ozone_file phys="cam7" scam="1" >ozone_strataero_CAM6chem_2000climo_zm_5day_c171004.nc</prescribed_ozone_file>
<prescribed_ozone_file phys="cam6" camiop="1" >ozone_strataero_CAM6chem_2000climo_zm_5day_c171004.nc</prescribed_ozone_file>
<prescribed_ozone_file phys="cam7" camiop="1" >ozone_strataero_CAM6chem_2000climo_zm_5day_c171004.nc</prescribed_ozone_file>
<prescribed_ozone_file chem="waccm_sc">waccm_ozone_c121126.nc</prescribed_ozone_file>
<prescribed_ozone_cycle_yr chem="waccm_sc">0</prescribed_ozone_cycle_yr>
<prescribed_ozone_file chem="waccm_sc_mam4">ozone_strataero_WACCM6_L70_zm5day_19750101-20141229_c180216.nc</prescribed_ozone_file>
<prescribed_ozone_datapath chem="waccm_sc_mam4">atm/cam/ozone_strataero</prescribed_ozone_datapath>
<!-- CAM-Chem aerosols (2000 climatology) -->
<prescribed_aero_datapath aer_model='bam' >atm/cam/chem/trop_mozart_aero/aero</prescribed_aero_datapath>
<prescribed_aero_file aer_model='bam' >aero_1.9x2.5_L26_2000clim_c091112.nc</prescribed_aero_file>
<prescribed_aero_type aer_model='bam' >CYCLICAL</prescribed_aero_type>
<prescribed_aero_cycle_yr aer_model='bam' >2000</prescribed_aero_cycle_yr>
<prescribed_aero_filelist aer_model='bam' >aero_1.9x2.5_L26_list_c070514.txt</prescribed_aero_filelist>
<prescribed_aero_datapath aer_model='mam' >atm/cam/chem/trop_mam/aero</prescribed_aero_datapath>
<prescribed_aero_file aer_model='mam' >mam3_1.9x2.5_L30_2000clim_c130319.nc</prescribed_aero_file>
<prescribed_aero_type aer_model='mam' >CYCLICAL</prescribed_aero_type>
<prescribed_aero_cycle_yr aer_model='mam' >2000</prescribed_aero_cycle_yr>
<prescribed_aero_filelist aer_model='mam' >aero_1.9x2.5_L26_list_c070514.txt</prescribed_aero_filelist>
<!-- aerosol deposition (2000 climatology) -->
<aerodep_flx_datapath aer_model='bam' >atm/cam/chem/trop_mozart_aero/aero</aerodep_flx_datapath>
<aerodep_flx_file aer_model='bam' >aerosoldep_monthly_1849-2006_1.9x2.5_c090803.nc</aerodep_flx_file>
<aerodep_flx_type aer_model='bam' >CYCLICAL</aerodep_flx_type>
<aerodep_flx_cycle_yr aer_model='bam' >2000</aerodep_flx_cycle_yr>
<aerodep_flx_datapath aer_model='mam' >atm/cam/chem/trop_mam/aero</aerodep_flx_datapath>
<aerodep_flx_file aer_model='mam' >mam3_1.9x2.5_L30_2000clim_c130319.nc</aerodep_flx_file>
<aerodep_flx_type aer_model='mam' >CYCLICAL</aerodep_flx_type>
<aerodep_flx_cycle_yr aer_model='mam' >2000</aerodep_flx_cycle_yr>
<!-- Volcanic Aerosol Mass -->
<bndtvvolc>atm/cam/rad/VolcanicMass_1870-1999_64x1_L18_c040115.nc</bndtvvolc>
<!-- Tropopause climatology -->
<tropopause_climo_file>atm/cam/chem/trop_mozart/ub/clim_p_trop.nc</tropopause_climo_file>
<!-- Solar constant -->
<solar_const>1361.27</solar_const>
<solar_irrad_data_file phys="cam4" >atm/cam/solar/solar_ave_sc19-sc23.c090810.nc</solar_irrad_data_file>
<solar_irrad_data_file phys="cam5" >atm/cam/solar/solar_ave_sc19-sc23.c090810.nc</solar_irrad_data_file>
<solar_irrad_data_file phys="cam4" waccm_phys="1">atm/cam/solar/spectral_irradiance_Lean_1610-2009_ann_c100405.nc</solar_irrad_data_file>
<solar_irrad_data_file phys="cam5" waccm_phys="1">atm/cam/solar/spectral_irradiance_Lean_1610-2009_ann_c100405.nc</solar_irrad_data_file>
<solar_irrad_data_file >atm/cam/solar/SolarForcing1995-2005avg_c160929.nc</solar_irrad_data_file>
<solar_irrad_data_file waccm_phys="1">atm/cam/solar/SolarForcing1995-2005avg_c160929.nc</solar_irrad_data_file>
<!-- GHG values for 2000 from ghg_hist_1850-2005_c090419.nc -->
<co2vmr>367.0e-6</co2vmr>
<ch4vmr>1760.0e-9</ch4vmr>
<n2ovmr>316.0e-9</n2ovmr>
<f11vmr>653.45e-12</f11vmr>
<f12vmr>535.0e-12</f12vmr>
<!-- Time-variant chemistry surface values -->
<bndtvghg>atm/cam/ggas/ghg_hist_1765-2005_c091218.nc</bndtvghg>
<flbc_file>atm/waccm/lb/LBC_1765-2100_1.9x2.5_CCMI_RCP60_za_RNOCStrend_c141002.nc</flbc_file>
<flbc_file chem="ghg_mam4" phys="cam6">atm/waccm/lb/LBC_17500116-20150116_CMIP6_0p5degLat_c180905.nc</flbc_file>
<flbc_file phys="cam7">atm/waccm/lb/CMIP7/LBC_17500116-20221216_CMIP7_0p5degLat_OCSupdate_c250523.nc</flbc_file>
<!-- Time-variant CO2 fossil fuel emissions -->
<co2flux_fuel_file hgrid="0.9x1.25" sim_year="1850-2015">atm/cam/ggas/emissions-cmip6_CO2_anthro_surface_175001-201512_fv_0.9x1.25_c20181011.nc</co2flux_fuel_file>
<co2flux_fuel_file hgrid="1.9x2.5" sim_year="1850-2015">atm/cam/ggas/emissions-cmip6_CO2_anthro_surface_175001-201512_fv_1.9x2.5_c20181011.nc</co2flux_fuel_file>
<co2flux_fuel_file hgrid="C384" sim_year="1850-2015">atm/cam/ggas/emissions-cmip6_CO2_anthro_surface_175001-201512_fv_0.9x1.25_c20181011.nc</co2flux_fuel_file>
<co2flux_fuel_file hgrid="C192" sim_year="1850-2015">atm/cam/ggas/emissions-cmip6_CO2_anthro_surface_175001-201512_fv_0.9x1.25_c20181011.nc</co2flux_fuel_file>
<co2flux_fuel_file hgrid="C96" sim_year="1850-2015">atm/cam/ggas/emissions-cmip6_CO2_anthro_surface_175001-201512_fv_0.9x1.25_c20181011.nc</co2flux_fuel_file>
<co2flux_fuel_file hgrid="C48" sim_year="1850-2015">atm/cam/ggas/emissions-cmip6_CO2_anthro_surface_175001-201512_fv_1.9x2.5_c20181011.nc</co2flux_fuel_file>
<co2flux_fuel_file hgrid="C24" sim_year="1850-2015">atm/cam/ggas/emissions-cmip6_CO2_anthro_surface_175001-201512_fv_1.9x2.5_c20181011.nc</co2flux_fuel_file>
<ac_CO2_emis hgrid="0.9x1.25">ac_CO2_filelist_175001-201512_fv_0.9x1.25_c20181011.txt</ac_CO2_emis>
<ac_CO2_emis hgrid="1.9x2.5" >ac_CO2_filelist_175001-201512_fv_1.9x2.5_c20181011.txt</ac_CO2_emis>
<ac_CO2_emis hgrid="C384">ac_CO2_filelist_175001-201512_fv_0.9x1.25_c20181011.txt</ac_CO2_emis>
<ac_CO2_emis hgrid="C192">ac_CO2_filelist_175001-201512_fv_0.9x1.25_c20181011.txt</ac_CO2_emis>
<ac_CO2_emis hgrid="C96">ac_CO2_filelist_175001-201512_fv_0.9x1.25_c20181011.txt</ac_CO2_emis>
<ac_CO2_emis hgrid="C48" >ac_CO2_filelist_175001-201512_fv_1.9x2.5_c20181011.txt</ac_CO2_emis>
<ac_CO2_emis hgrid="C24" >ac_CO2_filelist_175001-201512_fv_1.9x2.5_c20181011.txt</ac_CO2_emis>
<aircraft_datapath >atm/cam/ggas</aircraft_datapath>
<aircraft_type >SERIAL</aircraft_type>
<!-- These CO2 aircraft emission files are the same as in the aircraft_specifier file above (for cam.input_data_list) -->
<aircraft_co2_file hgrid="0.9x1.25">atm/cam/ggas/emissions-cmip6_CO2_anthro_ac_175001-201512_fv_0.9x1.25_c20181011.nc</aircraft_co2_file>
<aircraft_co2_file hgrid="1.9x2.5" >atm/cam/ggas/emissions-cmip6_CO2_anthro_ac_175001-201512_fv_1.9x2.5_c20181011.nc</aircraft_co2_file>
<aircraft_co2_file hgrid="C384">atm/cam/ggas/emissions-cmip6_CO2_anthro_ac_175001-201512_fv_0.9x1.25_c20181011.nc</aircraft_co2_file>
<aircraft_co2_file hgrid="C192">atm/cam/ggas/emissions-cmip6_CO2_anthro_ac_175001-201512_fv_0.9x1.25_c20181011.nc</aircraft_co2_file>
<aircraft_co2_file hgrid="C96">atm/cam/ggas/emissions-cmip6_CO2_anthro_ac_175001-201512_fv_0.9x1.25_c20181011.nc</aircraft_co2_file>
<aircraft_co2_file hgrid="C48" >atm/cam/ggas/emissions-cmip6_CO2_anthro_ac_175001-201512_fv_1.9x2.5_c20181011.nc</aircraft_co2_file>
<aircraft_co2_file hgrid="C24" >atm/cam/ggas/emissions-cmip6_CO2_anthro_ac_175001-201512_fv_1.9x2.5_c20181011.nc</aircraft_co2_file>
<!-- Greenhouse gas production/loss rates -->
<bndtvg>atm/cam/ggas/noaamisc.r8.nc</bndtvg>
<!-- WACCM_GHG H2O production/loss rates -->
<h2orates chem="waccm_sc" >atm/waccm/phot/xh2o_c080826.nc</h2orates>
<h2orates chem="waccm_sc_mam4">atm/waccm/phot/xh2o_c080826.nc</h2orates>
<h2orates chem="ghg_mam4" >atm/waccm/phot/xh2o_c080826.nc</h2orates>
<!-- Constituents for non-LTE calculations and heating rates below 200 nm -->
<waccm_forcing_datapath chem="waccm_sc">atm/waccm/ub</waccm_forcing_datapath>
<waccm_forcing_file chem="waccm_sc">ghg_forcing_2000_c110321.nc</waccm_forcing_file>
<waccm_forcing_cycle_yr chem="waccm_sc">0</waccm_forcing_cycle_yr>
<waccm_forcing_datapath chem="waccm_sc_mam4">atm/waccm/waccm_forcing</waccm_forcing_datapath>
<waccm_forcing_file chem="waccm_sc_mam4">SCWACCM_forcing_WACCM6_zm_5day_L70_1975-2014_c191121.nc</waccm_forcing_file>
<waccm_forcing_cycle_yr chem="waccm_sc_mam4">2000</waccm_forcing_cycle_yr>
<!-- Waccm electric field parameters -->
<efield_lflux_file >atm/waccm/efld/coeff_lflux.dat</efield_lflux_file>
<efield_hflux_file >atm/waccm/efld/coeff_hflux.dat</efield_hflux_file>
<!-- International Geomagnetic Reference Field coefficients -->
<igrf_geomag_coefs_file>atm/waccm/geomag/IGRF14_coeffs_c250130.nc</igrf_geomag_coefs_file>
<!-- Waccm aurora and euv parameters -->
<photon_file >atm/waccm/phot/photon_c130710.dat</photon_file>
<electron_file >atm/waccm/phot/electron_121129.dat</electron_file>
<euvac_file >atm/waccm/phot/EUVAC_reference_c170222.nc</euvac_file>
<!-- Waccm solar variability parameters -->
<solar_parms_data_file >atm/waccm/phot/wasolar_ave.nc</solar_parms_data_file>
<solar_parms_data_file phys="cam4" waccm_phys="1">atm/waccm/solar/wasolar_c140408.nc</solar_parms_data_file>
<solar_parms_data_file phys="cam5" waccm_phys="1">atm/waccm/solar/wasolar_c140408.nc</solar_parms_data_file>
<solar_parms_data_file waccm_phys="1">atm/cam/solar/SolarForcing1995-2005avg_c160929.nc</solar_parms_data_file>
<solar_wind_data_file>atm/waccm/solar/solar_wind_imf_OMNI_WACCMX_2000001-2017365_c180731.nc</solar_wind_data_file>
<!-- Default bounce cone loss angle (degrees) for medium-energy electrons
80 degrees is the value used to generate CMIP6 MEE forcings provided by SOLARISHEPPA (http://solarisheppa.geomar.de).
(Recommendations for CMIP6 solar forcing data, Geosci. Model Dev., 10, doi:10.5194/gmd-10-2247-2017)
(Private communication with Pekka Verronen)
-->
<mee_ion_blc>80.D0</mee_ion_blc>
<!-- nudged QBO -->
<qbo_forcing_file>atm/waccm/qbo/qbocoefficients_c151023.nc</qbo_forcing_file>
<!-- Gravity wave settings for WACCM -->
<effgw_oro>0.125D0</effgw_oro>
<effgw_cm>1.D0</effgw_cm>
<taubgnd >1.5D-3</taubgnd>
<taubgnd hgrid="4x5" >1.0D-3</taubgnd>
<taubgnd hgrid="0.9x1.25">2.5D-3</taubgnd>
<taubgnd hgrid="ne30np4" >1.25D-3</taubgnd>
<effgw_cm_igw>0.1D0</effgw_cm_igw>
<taubgnd_igw>12.0D-3</taubgnd_igw>
<frontgfc >1.25D-15</frontgfc>
<frontgfc hgrid="ne30np4" >3.00D-15</frontgfc>
<frontgfc hgrid="4x5" >7.5D-16</frontgfc>
<frontgfc hgrid="0.9x1.25">3.0D-15</frontgfc>
<front_gaussian_width> 30.D0 </front_gaussian_width>
<!-- Polar taper is needed for stability in FV, possibly because grid -->
<!-- points become too dense near the poles. -->
<gw_polar_taper>.false.</gw_polar_taper>
<gw_polar_taper dyn="fv">.true.</gw_polar_taper>
<gw_top_taper>.false.</gw_top_taper>
<gw_top_taper waccmx="1">.true.</gw_top_taper>
<pgwv>32</pgwv>
<pgwv waccmx="1">18</pgwv>
<!-- gravity wave settings -->
<effgw_beres_dp >0.7D0</effgw_beres_dp>
<effgw_beres_dp model_top="lt" >0.15D0</effgw_beres_dp>
<effgw_beres_dp model_top="mt" waccm_phys="1" >0.15D0</effgw_beres_dp>
<effgw_beres_dp model_top="mt" >0.15D0</effgw_beres_dp>
<effgw_beres_dp model_top="ht" phys="cam7" >0.25D0</effgw_beres_dp>
<effgw_beres_dp model_top="xt" phys="cam7" >0.25D0</effgw_beres_dp>
<effgw_beres_dp hgrid="0.9x1.25" >0.4D0</effgw_beres_dp>
<effgw_beres_dp waccm_phys="0" >0.55D0</effgw_beres_dp>
<effgw_beres_dp waccm_phys="1" hgrid="0.9x1.25" >0.5D0</effgw_beres_dp>
<effgw_beres_dp waccm_phys="1" hgrid="ne30np4" >0.5D0</effgw_beres_dp>
<effgw_beres_dp chem="geoschem_mam4" hgrid="0.9x1.25" >0.5D0</effgw_beres_dp>
<effgw_beres_dp chem="trop_strat_mam5_t1s1" hgrid="0.9x1.25" >0.5D0</effgw_beres_dp>
<effgw_beres_dp chem="trop_strat_mam5_vbsext" hgrid="0.9x1.25">0.5D0</effgw_beres_dp>
<effgw_beres_dp chem="trop_strat_mam5_slh" hgrid="0.9x1.25" >0.5D0</effgw_beres_dp>
<effgw_beres_dp carma="trop_strat_soa1" hgrid="0.9x1.25" >0.5D0</effgw_beres_dp>
<effgw_beres_dp carma="trop_strat_soa5" hgrid="0.9x1.25" >0.5D0</effgw_beres_dp>
<effgw_rdg_resid >1.0D0</effgw_rdg_resid>
<effgw_rdg_beta >1.0D0</effgw_rdg_beta>
<effgw_rdg_beta model_top="lt" >0.75D0</effgw_rdg_beta>
<effgw_rdg_beta model_top="mt" >0.75D0</effgw_rdg_beta>
<effgw_rdg_beta_max >1.0D0</effgw_rdg_beta_max>
<effgw_rdg_beta_max model_top="lt" >0.75D0</effgw_rdg_beta_max>
<effgw_rdg_beta_max model_top="mt" >0.75D0</effgw_rdg_beta_max>
<!-- setting for gravity waves from shallow convection. -->
<effgw_beres_sh>0.03D0</effgw_beres_sh>
<!-- gravity wave options -->
<gw_drag_file>atm/waccm/gw/newmfspectra40_dc25.nc</gw_drag_file>
<gw_drag_file_sh>atm/waccm/gw/mfspectra_shallow_c140530.nc</gw_drag_file_sh>
<gw_drag_file_mm>atm/waccm/gw/mfc0lookup_mm.nc</gw_drag_file_mm>
<gw_prndl >0.25d0 </gw_prndl>
<gw_prndl waccm_phys="1">0.5d0 </gw_prndl>
<gw_prndl chem="geoschem_mam4">0.5d0 </gw_prndl>
<gw_prndl chem="trop_strat_mam4_vbs">0.5d0 </gw_prndl>
<gw_prndl chem="trop_strat_mam4_vbsext">0.5d0 </gw_prndl>
<gw_prndl chem="trop_strat_mam5_t1s1">0.5d0 </gw_prndl>
<gw_prndl chem="trop_strat_mam5_vbsext">0.5d0 </gw_prndl>
<gw_prndl chem="trop_strat_mam4_slh">0.5d0 </gw_prndl>
<gw_prndl chem="trop_strat_mam5_slh">0.5d0 </gw_prndl>
<gw_oro_south_fac >1.d0 </gw_oro_south_fac>
<gw_oro_south_fac model_top="mt">1.d0 </gw_oro_south_fac>
<gw_oro_south_fac waccm_phys="1">2.d0 </gw_oro_south_fac>
<gw_oro_south_fac model_top="ht">2.d0 </gw_oro_south_fac>
<gw_oro_south_fac chem="geoschem_mam4">2.d0 </gw_oro_south_fac>
<gw_oro_south_fac chem="trop_strat_mam4_vbs">2.d0 </gw_oro_south_fac>
<gw_oro_south_fac chem="trop_strat_mam4_vbsext">2.d0 </gw_oro_south_fac>
<gw_oro_south_fac chem="trop_strat_mam4_slh">2.d0 </gw_oro_south_fac>
<gw_oro_south_fac chem="trop_strat_mam5_slh">2.d0 </gw_oro_south_fac>
<gw_oro_south_fac chem="trop_strat_mam5_t1s1">2.d0 </gw_oro_south_fac>
<gw_oro_south_fac chem="trop_strat_mam5_vbsext">2.d0 </gw_oro_south_fac>
<gw_oro_south_fac carma="trop_strat_soa1">2.D0</gw_oro_south_fac>
<gw_oro_south_fac carma="trop_strat_soa5">2.D0</gw_oro_south_fac>
<gw_lndscl_sgh >.true. </gw_lndscl_sgh>
<gw_lndscl_sgh model_top="mt">.true. </gw_lndscl_sgh>
<gw_lndscl_sgh waccm_phys="1">.false.</gw_lndscl_sgh>
<gw_lndscl_sgh model_top="ht">.false.</gw_lndscl_sgh>
<gw_lndscl_sgh chem="geoschem_mam4">.false.</gw_lndscl_sgh>
<gw_lndscl_sgh chem="trop_strat_mam4_vbs">.false.</gw_lndscl_sgh>
<gw_lndscl_sgh chem="trop_strat_mam4_vbsext">.false.</gw_lndscl_sgh>
<gw_lndscl_sgh chem="trop_strat_mam4_slh">.false.</gw_lndscl_sgh>
<gw_lndscl_sgh chem="trop_strat_mam5_slh">.false.</gw_lndscl_sgh>
<gw_lndscl_sgh chem="trop_strat_mam5_t1s1">.false.</gw_lndscl_sgh>
<gw_lndscl_sgh chem="trop_strat_mam5_vbsext">.false.</gw_lndscl_sgh>
<gw_lndscl_sgh carma="trop_strat_soa1">.false.</gw_lndscl_sgh>
<gw_lndscl_sgh carma="trop_strat_soa5">.false.</gw_lndscl_sgh>
<gw_apply_tndmax >.true. </gw_apply_tndmax>
<gw_apply_tndmax chem="geoschem_mam4" >.false.</gw_apply_tndmax>
<gw_apply_tndmax phys="cam7" >.false.</gw_apply_tndmax>
<gw_apply_tndmax waccm_phys="1">.false.</gw_apply_tndmax>
<gw_apply_tndmax chem="trop_strat_mam4_vbs">.false.</gw_apply_tndmax>
<gw_apply_tndmax chem="trop_strat_mam4_vbsext">.false.</gw_apply_tndmax>
<gw_apply_tndmax chem="trop_strat_mam4_slh">.false.</gw_apply_tndmax>
<gw_apply_tndmax chem="trop_strat_mam5_slh">.false.</gw_apply_tndmax>
<gw_apply_tndmax chem="trop_strat_mam5_t1s1">.false.</gw_apply_tndmax>
<gw_apply_tndmax chem="trop_strat_mam5_vbsext">.false.</gw_apply_tndmax>
<gw_apply_tndmax carma="trop_strat_soa1">.false.</gw_apply_tndmax>
<gw_apply_tndmax carma="trop_strat_soa5">.false.</gw_apply_tndmax>
<!-- gravity wave drag options -->
<gw_rdg_do_divstream >.true. </gw_rdg_do_divstream>
<gw_rdg_do_smooth_regimes >.false. </gw_rdg_do_smooth_regimes>
<gw_rdg_do_adjust_tauoro >.true. </gw_rdg_do_adjust_tauoro>
<gw_rdg_C_BetaMax_DS > 0.0d0 </gw_rdg_C_BetaMax_DS>
<gw_rdg_C_GammaMax > 2.0d0 </gw_rdg_C_GammaMax>
<gw_rdg_Frx0 > 2.0d0 </gw_rdg_Frx0>
<gw_rdg_Frx1 > 3.0d0 </gw_rdg_Frx1>
<gw_rdg_C_BetaMax_SM > 2.0d0 </gw_rdg_C_BetaMax_SM>
<gw_rdg_orohmin > 0.01d0 </gw_rdg_orohmin>
<gw_rdg_orovmin > 1.0d-3 </gw_rdg_orovmin>
<gw_rdg_orostratmin > 0.002d0</gw_rdg_orostratmin>
<gw_rdg_orom2min > 0.1d0 </gw_rdg_orom2min>
<alpha_gw_movmtn > 0.01d0 </alpha_gw_movmtn>
<effgw_movmtn_pbl > 1.0d0 </effgw_movmtn_pbl>
<effgw_movmtn_pbl phys="cam7" > 1.5d0 </effgw_movmtn_pbl>
<movmtn_psteer > 65000.0d0 </movmtn_psteer>
<movmtn_plaunch > 32500.0d0 </movmtn_plaunch>
<movmtn_source > 1 </movmtn_source>
<!-- Dry Convective Adjustment options -->
<dadadj_niter>15</dadadj_niter>
<dadadj_niter hgrid="0.47x0.63" waccmx="1">100</dadadj_niter>
<!-- Waccm-x runtime options -->
<waccmx_opt >off</waccmx_opt>
<waccmx_opt waccmx="1" >ionosphere</waccmx_opt>
<waccmx_opt waccmx="1" ionosphere="none">neutral</waccmx_opt>
<ionos_epotential_model>heelis</ionos_epotential_model>
<wei05_coefs_file>atm/waccm/efld/wei05sc_c080415.nc</wei05_coefs_file>
<ionos_xport_nsplit waccmx="1">5</ionos_xport_nsplit>
<ionos_xport_nsplit hgrid="0.9x1.25" waccmx="1">30</ionos_xport_nsplit>
<ionos_xport_nsplit hgrid="ne30np4" waccmx="1">30</ionos_xport_nsplit>
<ionos_xport_nsplit hgrid="0.47x0.63" waccmx="1">90</ionos_xport_nsplit>
<ionos_xport_nsplit hgrid="ne120np4" waccmx="1">180</ionos_xport_nsplit>
<oplus_ring_polar_filter>.true.</oplus_ring_polar_filter>
<oplus_shapiro_const >3.d-2</oplus_shapiro_const>
<oplus_shapiro_const hgrid="ne120np4">6.d-3</oplus_shapiro_const>
<!-- Oplus transport grid configuration -->
<oplus_grid> 144,96 </oplus_grid>
<oplus_grid hgrid="ne16np4"> 144,96 </oplus_grid>
<oplus_grid hgrid="ne30np4"> 288,192 </oplus_grid>
<oplus_grid hgrid="0.9x1.25"> 288,192 </oplus_grid>
<oplus_grid hgrid="0.47x0.63"> 576,384 </oplus_grid>
<oplus_grid hgrid="ne120np4"> 576,384 </oplus_grid>
<!-- Magnetic grid resolution -->
<edyn_grid>80x97</edyn_grid>
<edyn_grid hgrid="0.9x1.25">160x193</edyn_grid>
<edyn_grid hgrid="ne30np4" >160x193</edyn_grid>
<edyn_grid hgrid="0.47x0.63">320x385</edyn_grid>
<edyn_grid hgrid="ne120np4" >320x385</edyn_grid>
<!-- ESMF mesh files for physics decomposition -->
<cam_physics_mesh hgrid="0.47x0.63">atm/cam/coords/fv0.47x0.63_esmf_c210305.nc</cam_physics_mesh>
<cam_physics_mesh hgrid="0.9x1.25">atm/cam/coords/fv0.9x1.25_esmf_c210305.nc</cam_physics_mesh>
<cam_physics_mesh hgrid="1.9x2.5">atm/cam/coords/fv1.9x2.5_esmf_200428.nc</cam_physics_mesh>
<cam_physics_mesh hgrid="4x5">atm/cam/coords/fv4x5_esmf_c210305.nc</cam_physics_mesh>
<cam_physics_mesh hgrid="ne5np4">atm/cam/coords/ne5np4_esmf_20191204.nc</cam_physics_mesh>
<cam_physics_mesh hgrid="ne5np4" npg="3">atm/cam/coords/ne5np4.pg3_esmf_mesh_c210121.nc</cam_physics_mesh>
<cam_physics_mesh hgrid="ne16np4">atm/cam/coords/ne16np4_esmf_c210305.nc</cam_physics_mesh>
<cam_physics_mesh hgrid="ne16np4" npg="3">share/meshes/ne16pg3_ESMFmesh_cdf5_c20211018.nc</cam_physics_mesh>
<cam_physics_mesh hgrid="ne30np4">atm/cam/coords/ne30np4_esmf_c210305.nc</cam_physics_mesh>
<cam_physics_mesh hgrid="ne30np4" npg="3">atm/cam/coords/ne30pg3_esmf_20200428.nc</cam_physics_mesh>
<cam_physics_mesh hgrid="ne120np4" npg="3">share/meshes/ne120pg3_ESMFmesh_cdf5_c20211018.nc</cam_physics_mesh>
<!-- For scaling lightning sources of NOx -->
<lght_no_prd_factor >1.00D0</lght_no_prd_factor>
<lght_no_prd_factor hgrid="ne30np4" >1.80D0</lght_no_prd_factor>
<lght_no_prd_factor hgrid="ne0np4CONUS.ne30x8" >1.80D0</lght_no_prd_factor>
<lght_no_prd_factor phys="cam6" hgrid="0.9x1.25" >1.50D0</lght_no_prd_factor>
<lght_no_prd_factor phys="cam6" offline_dyn="1">1.30D0</lght_no_prd_factor>
<lght_no_prd_factor phys="cam6" hgrid="0.9x1.25" offline_dyn="1">1.60D0</lght_no_prd_factor>
<lght_no_prd_factor phys="cam6" hgrid="0.47x0.63" offline_dyn="1">0.32D0</lght_no_prd_factor>
<lght_no_prd_factor phys="cam7" hgrid="0.9x1.25" >1.50D0</lght_no_prd_factor>
<lght_no_prd_factor phys="cam7" offline_dyn="1">1.30D0</lght_no_prd_factor>
<lght_no_prd_factor phys="cam7" hgrid="0.9x1.25" offline_dyn="1">1.60D0</lght_no_prd_factor>
<lght_no_prd_factor phys="cam7" hgrid="0.47x0.63" offline_dyn="1">0.32D0</lght_no_prd_factor>
<!-- For MEGAN VOCs -->
<megan_factors_file>atm/cam/chem/trop_mozart/emis/megan21_emis_factors_78pft_c20161108.nc</megan_factors_file>
<!-- For ocean emissions -->
<ocean_salinity_file>atm/cam/chem/ocnexch/SSS_climatology_f09f09_c20230110.nc</ocean_salinity_file>
<dms_ocn_emis_file>atm/cam/chem/ocnexch/Csw_DMS_Lana2011_f09f09_1750_2100_20200717a.nc</dms_ocn_emis_file>
<!-- Airplane emissions -->
<airpl_emis_file>atm/cam/chem/trop_mozart/emis/emissions.aircraft.T42LR.nc</airpl_emis_file>
<no2_aircraft_emis_file>atm/cam/chem/1850-2000_emis/IPCC_emissions_aircraft_NO2_1850-2000_1.9x2.5_c090729.nc</no2_aircraft_emis_file>
<bc_aircraft_emis_file>atm/cam/chem/1850-2000_emis/IPCC_emissions_aircraft_BC_1850-2000_1.9x2.5.c090729.nc</bc_aircraft_emis_file>
<co_aircraft_emis >atm/cam/chem/trop_mozart/emis/extfrc.CO.1.9x2.5_c101206.nc</co_aircraft_emis>
<no_aircraft_emis >atm/cam/chem/trop_mozart/emis/extfrc.NO.1.9x2.5_c101206.nc</no_aircraft_emis>