-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathMOM_input.json
More file actions
3298 lines (3298 loc) · 152 KB
/
MOM_input.json
File metadata and controls
3298 lines (3298 loc) · 152 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
{
"Global": {
"INPUTDIR": {
"description": "\"The directory in which input files are found.\"\n",
"datatype": "string",
"value": "${DIN_LOC_ROOT}/ocn/mom/${OCN_GRID}"
},
"TRIPOLAR_N": {
"description": "\"[Boolean] default = False\nUse tripolar connectivity at the northern edge of the\ndomain. With TRIPOLAR_N, NIGLOBAL must be even.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true,
"else": false
}
},
"NIHALO": {
"description": "\"default = 2\nThe number of halo points on each side in the\nx-direction. With STATIC_MEMORY_ this is set as NIHALO_\nin MOM_memory.h at compile time; without STATIC_MEMORY_\nthe default is NIHALO_ in MOM_memory.h (if defined) or 2.\"\n",
"datatype": "integer",
"value": 4
},
"NJHALO": {
"description": "\"default = 2\nThe number of halo points on each side in the\ny-direction. With STATIC_MEMORY_ this is set as NJHALO_\nin MOM_memory.h at compile time; without STATIC_MEMORY_\nthe default is NJHALO_ in MOM_memory.h (if defined) or 2.\"\n",
"datatype": "integer",
"value": 4
},
"NIGLOBAL": {
"description": "\"The total number of thickness grid points in the\nx-direction in the physical domain. With STATIC_MEMORY_\nthis is set in MOM_memory.h at compile time.\"\n",
"datatype": "integer",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 540,
"$OCN_GRID == \"tx0.25v1\"": 1440,
"$OCN_GRID == \"MISOMIP\"": 402
}
},
"NJGLOBAL": {
"description": "\"The total number of thickness grid points in the\ny-direction in the physical domain. With STATIC_MEMORY_\nthis is set in MOM_memory.h at compile time.\nThe number of processors in the x-direction. With\nSTATIC_MEMORY_ this is set in MOM_memory.h at compile time.\nThe number of processors in the x-direction. With\nSTATIC_MEMORY_ this is set in MOM_memory.h at compile time.\nThe processor layout that was acutally used.\"\n",
"datatype": "integer",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 480,
"$OCN_GRID == \"tx0.25v1\"": 1080,
"$OCN_GRID == \"MISOMIP\"": 40
}
},
"NK": {
"description": "\"[nondim]\nThe number of model layers.\"\n",
"datatype": "integer",
"units": "nondim",
"value": {
"$MOM6_VERTICAL_GRID == \"zstar_65L\"": 65,
"$MOM6_VERTICAL_GRID in [\"hycom1\", \"zstar_75L\"]": 75,
"$MOM6_VERTICAL_GRID == \"sigma_shelf_zstar\"": 36
}
},
"USE_LEGACY_DIABATIC_DRIVER": {
"description": "\"[Boolean] default = True\nIf true, use the a legacy version of the diabatic subroutine.\nThis is temporary and is needed avoid change in answers.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": false
}
},
"HREF_FOR_MLD": {
"description": "\"[m] default = 0.0\nReference depth used to calculate the potential density used to find the mixed\nlayer depth based on a delta rho = 0.03 kg/m3.\"\n",
"datatype": "real",
"units": "m",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 10.0
}
},
"USE_REGRIDDING": {
"description": "\"[Boolean] default = False\nIf True, use the ALE algorithm (regridding/remapping).\nIf False, use the layered isopycnal algorithm.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": true
},
"THICKNESSDIFFUSE": {
"description": "\"[Boolean] default = False\nIf true, interfaces or isopycnal surfaces are diffused,\ndepending on the value of FULL_THICKNESSDIFFUSE.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"THICKNESSDIFFUSE_FIRST": {
"description": "\"[Boolean] default = False\nIf true, do thickness diffusion before dynamics.\nThis is only used if THICKNESSDIFFUSE is true.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"DT": {
"description": "\"[s]\nThe (baroclinic) dynamics time step. The time-step that\nis actually used will be an integer fraction of the\nforcing time-step (DT_FORCING in ocean-only mode or the\ncoupling timestep in coupled mode.)\"\n",
"datatype": "real",
"units": "s",
"value": {
"$OCN_GRID == \"tx0.25v1\"": 900.0,
"$OCN_GRID == \"tx2_3v2\"": 1800,
"$OCN_GRID == \"MISOMIP\"": 600.0
}
},
"DT_THERM": {
"description": "\"[s] default = 3600.0\nThe thermodynamic and tracer advection time step.\nIdeally DT_THERM should be an integer multiple of DT\nand less than the forcing or coupling time-step.\nBy default DT_THERM is set to DT.\nThe minimum amount of time in seconds between\ncalculations of depth-space diagnostics. Making this\nlarger than DT_THERM reduces the performance penalty\nof regridding to depth online.\"\n",
"datatype": "real",
"units": "s",
"value": {
"$OCN_GRID == \"MISOMIP\"": 1800.0,
"else": "= ( ( $NCPL_BASE_PERIOD ==\"decade\") * 86400.0 * 3650 +\n ( $NCPL_BASE_PERIOD ==\"year\") * 86400.0 * 365 +\n ( $NCPL_BASE_PERIOD ==\"day\") * 86400.0 +\n ( $NCPL_BASE_PERIOD ==\"hour\") * 3600 ) / $OCN_NCPL\n"
}
},
"HFREEZE": {
"description": "\"[m] default = -1.0\nIf HFREEZE > 0, melt potential will be computed. The actual depth\nover which melt potential is computed will be min(HFREEZE, OBLD),\nwhere OBLD is the boundary layer depth. If HFREEZE <= 0 (default),\nmelt potential will not be computed.\"\n",
"datatype": "real",
"units": "m",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 10.0,
"$OCN_GRID == \"tx0.25v1\"": 20.0
}
},
"DTBT_RESET_PERIOD": {
"description": "\"[s] default = 7200.0\nThe period between recalculations of DTBT (if DTBT <= 0).\nIf DTBT_RESET_PERIOD is negative, DTBT is set based\nonly on information available at initialization. If 0,\nDTBT will be set every dynamics time step. The default\nis set by DT_THERM. This is only used if SPLIT is true.\"\n",
"datatype": "real",
"units": "s",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 7200.0,
"$OCN_GRID == \"tx0.25v1\"": 3600.0,
"else": 0.0
}
},
"FRAZIL": {
"description": "\"[Boolean] default = False\nIf true, water freezes if it gets too cold, and the\nthe accumulated heat deficit is returned in the\nsurface state. FRAZIL is only used if\nENABLE_THERMODYNAMICS is true.\nIf true, apply geothermal heating.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": true
},
"MIN_SALINITY": {
"description": "\"[PPT] default = 0.01\n The minimum value of salinity when BOUND_SALINITY=True. The default is 0.01\n for backward compatibility but ideally should be 0.\"\n",
"datatype": "real",
"units": "PPT",
"value": {
"$COMP_ATM == \"cam\"": 1e-06,
"else": 0.0
}
},
"BOUND_SALINITY": {
"description": "\"[Boolean] default = False\nIf true, limit salinity to being positive. (The sea-ice\nmodel may ask for more salt than is available and\ndrive the salinity negative otherwise.)\"\n",
"datatype": "logical",
"units": "Boolean",
"value": true
},
"C_P": {
"description": "\"[J kg-1 K-1] default = 3991.86795711963\nThe heat capacity of sea water, approximated as a\nconstant. This is only used if ENABLE_THERMODYNAMICS is\ntrue. The default value is from the TEOS-10 definition\nof conservative temperature.\"\n",
"datatype": "real",
"units": "J kg-1 K-1",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 3992.0,
"$OCN_GRID == \"tx0.25v1\"": 3992.0,
"$OCN_GRID == \"MISOMIP\"": 3974.0
}
},
"USE_PSURF_IN_EOS": {
"description": "\"[Boolean] default = True\nIf true, always include the surface pressure contributions in equation of\nstate calculations.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": true
},
"CHECK_BAD_SURFACE_VALS": {
"description": "\"[Boolean] default = False\nIf true, check the surface state for ridiculous values.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"SAVE_INITIAL_CONDS": {
"description": "\"[Boolean] default = False\nIf true, write the initial conditions to a file given\nby IC_OUTPUT_FILE.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": "= $CONTINUE_RUN == False"
},
"GRID_ROTATION_ANGLE_BUGS": {
"description": "\"[Boolean] default = True\nIf true, use an older algorithm to calculate the sine and\ncosines needed rotate between grid-oriented directions and\ntrue north and east. Differences arise at the tripolar fold.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": false,
"$OCN_GRID == \"tx0.25v1\"": false
}
},
"EQN_OF_STATE": {
"description": "\"default = WRIGHT_FULL\nEQN_OF_STATE determines which ocean equation of state should be used.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"MISOMIP\"": "LINEAR",
"else": "WRIGHT_FULL"
}
},
"DTFREEZE_DP": {
"description": "\"[deg C Pa-1] default = 0.0\nWhen TFREEZE_FORM=LINEAR,\nthis is the derivative of the freezing potential\ntemperature with pressure.\"\n",
"datatype": "real",
"units": "deg C Pa-1",
"value": {
"$OCN_GRID == \"tx2_3v2\"": -7.75e-08,
"$OCN_GRID == \"tx0.25v1\"": -7.75e-08,
"$OCN_GRID == \"MISOMIP\"": -7.53e-08
}
},
"USE_IDEAL_AGE_TRACER": {
"description": "\"[Boolean] default = False\nIf true, use the ideal_age_example tracer package.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"USE_CFC_CAP": {
"description": "\"[Boolean] default = False\nIf true, use the MOM_CFC_cap tracer package.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": false
},
"CFC_BC_FILE": {
"description": "\"The file in which the CFC-11 and CFC-12 atm concentrations can be found (units\nmust be parts per trillion).\"\n",
"datatype": "string",
"value": "${DIN_LOC_ROOT}/ocn/mom/grid_indpt/cfc_atm_20230310.nc"
},
"USE_MARBL_TRACERS": {
"description": "\"[Boolean] default = False\nIf true, use the MARBL tracer package.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"\"ABIO_DIC_ON=TRUE\" in $MARBL_TRACER_OPTS or \"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS": true,
"else": false
}
},
"MARBL_TRACERS_IC_FILE": {
"description": "\"Name of file containing initial conditions\nfor the MARBL tracer package.\"\n",
"datatype": "string",
"value": {
"$MARBL_CONFIG == \"latest\"": "ecosys_jan_IC_omip_latlon_1x1_180W_c250613.nc",
"$MARBL_CONFIG == \"latest+4p2z\"": "ecosys_jan_IC_omip_latlon_1x1_180W_c250613.nc"
}
},
"MARBL_FESEDFLUX_FILE": {
"description": "\"Name of file containing iron sediment flux\n forcing field for the MARBL tracer package.\"\n",
"datatype": "string",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS and $OCN_GRID == \"tx2_3v2\"": "fesedflux_2024algo_tx2_3v2.c251229.nc"
}
},
"MARBL_FESEDFLUXRED_FILE": {
"description": "\"Name of file containing iron reducing sediment flux\n forcing field for the MARBL tracer package.\"\n",
"datatype": "string",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS and $OCN_GRID == \"tx2_3v2\"": "fesedfluxRed_2024algo_tx2_3v2.c251229.nc"
}
},
"MARBL_FEVENTFLUX_FILE": {
"description": "\"Name of file containing iron sediment flux\n forcing field for the MARBL tracer package.\"\n",
"datatype": "string",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS and $OCN_GRID == \"tx2_3v2\"": "feventflux_5gmol_tx2_3v2.c231205.nc"
}
},
"READ_RIV_FLUXES": {
"description": "\"Use river fluxes provided by RIV_FLUX_FILE.\"\n",
"datatype": "logical",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS": true
}
},
"RIV_FLUX_FILE": {
"description": "\"Name of file containing river fluxes\n (added to surface tracer flux in tracer_vertdiff for MARBL tracers).\"\n",
"datatype": "string",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS and $OCN_GRID == \"tx2_3v2\" and $ROF_GRID == \"JRA025\"": "riv_nut.gnews_gnm.rJRA025_to_tx2_3v2_nnsm_e333r100_230415.20240202.nc",
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS and $OCN_GRID == \"tx2_3v2\" and $ROF_GRID == \"r05\"": "riv_nut.gnews_gnm.r05_to_tx2_3v2_nnsm_e250r250_230914.20240202.nc"
}
},
"MARBL_D14C_FILE_1": {
"description": "\"Name of file containing D14C forcing from 30 N to 90 N.\"\n",
"datatype": "string",
"value": {
"\"ABIO_DIC_ON=TRUE\" in $MARBL_TRACER_OPTS": "${DIN_LOC_ROOT}/ocn/mom/grid_indpt/atm_delta_C14_CMIP6_sector1_global_1850-2015_yearly_v2.0_c240202.nc\n"
}
},
"MARBL_D14C_FILE_2": {
"description": "\"Name of file containing D14C forcing from 30 S to 30 N.\"\n",
"datatype": "string",
"value": {
"\"ABIO_DIC_ON=TRUE\" in $MARBL_TRACER_OPTS": "${DIN_LOC_ROOT}/ocn/mom/grid_indpt/atm_delta_C14_CMIP6_sector2_global_1850-2015_yearly_v2.0_c240202.nc\n"
}
},
"MARBL_D14C_FILE_3": {
"description": "\"Name of file containing D14C forcing from 90 S to 30 S.\"\n",
"datatype": "string",
"value": {
"\"ABIO_DIC_ON=TRUE\" in $MARBL_TRACER_OPTS": "${DIN_LOC_ROOT}/ocn/mom/grid_indpt/atm_delta_C14_CMIP6_sector3_global_1850-2015_yearly_v2.0_c240202.nc\n"
}
},
"CHL_FROM_FILE": {
"description": "\"[Boolean] default = True\n If true, read chlorophyll from a file. Otherwise MARBL will provide it.\"\n",
"datatype": "logical",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS": false
}
},
"ATM_CO2_OPT": {
"description": "\"default comes from env_run.xml (OCN_CO2_TYPE)\n Source of atmospheric CO2 concentration for MARBL.\n valid values: constant, prognostic, diagnostic\"\n",
"datatype": "string",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS": "$OCN_CO2_TYPE"
}
},
"ATM_CO2_CONST": {
"description": "\"default comes from env_run.xml (CCSM_CO2_PPMV)\n Atmospheric CO2 concentration for MARBL [ppm].\"\n",
"datatype": "real",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS": "$CCSM_CO2_PPMV"
}
},
"ATM_ALT_CO2_OPT": {
"description": "\"default comes from env_run.xml (OCN_CO2_TYPE)\n Source of atmospheric CO2 concentration for MARBL.\n valid values: constant, prognostic, diagnostic\"\n",
"datatype": "string",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS": "$OCN_CO2_TYPE"
}
},
"ATM_ALT_CO2_CONST": {
"description": "\"default comes from env_run.xml (CCSM_CO2_PPMV)\n Alternate atmospheric CO2 concentration for MARBL [ppm].\"\n",
"datatype": "real",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS": "$CCSM_CO2_PPMV"
}
},
"DUST_RATIO_THRES": {
"description": "\"Coarse/fine dust ratio threshold.\"\n",
"datatype": "real",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS and $COMP_ATM == \"cam\"": 60.0
}
},
"DUST_RATIO_TO_FE_BIOAVAIL_FRAC": {
"description": "\"Ratio of dust to iron bioavailability fraction.\"\n",
"datatype": "real",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS and $COMP_ATM == \"cam\"": "= 1.0 / 170.0"
}
},
"FE_BIOAVAIL_FRAC_OFFSET": {
"description": "\"Offset for iron bioavailability fraction.\"\n",
"datatype": "real",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS and $COMP_ATM == \"cam\"": 0.01
}
},
"USE_ICE_CATEGORIES": {
"description": "\"[Boolean] default = False\nIf true, send multiple ice categories from the coupler to MARBL.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS and $ICE_NCAT > 0": true
}
},
"ICE_NCAT": {
"description": "\"[Integer] default = value of ICE_NCAT in env_build.xml\nIf USE_ICE_CATEGORIES is true, this is the number of categories\nto send from the coupler to MARBL.\"\n",
"datatype": "integer",
"value": {
"\"BASE_BIO_ON=TRUE\" in $MARBL_TRACER_OPTS": "$ICE_NCAT"
}
},
"COORD_CONFIG": {
"description": "\"This specifies how layers are to be defined:\nfile - read coordinate information from the file\nspecified by (COORD_FILE).\nlinear - linear based on interfaces not layers.\nts_ref - use reference temperature and salinity\nts_range - use range of temperature and salinity\n(T_REF and S_REF) to determine surface density\nand GINT calculate internal densities.\ngprime - use reference density (RHO_0) for surface\ndensity and GINT calculate internal densities.\nts_profile - use temperature and salinity profiles\n(read from COORD_FILE) to set layer densities.\nUSER - call a user modified routine.\nThe file from which the coordinate densities are read.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"tx0.25v1\"": "file",
"$OCN_GRID == \"MISOMIP\"": "linear"
}
},
"REMAP_UV_USING_OLD_ALG": {
"description": "\"[Boolean] default = True\nIf true, uses the old remapping-via-a-delta-z method for remapping u and v. If\nfalse, uses the new method that remaps between grids described by an old and\nnew thickness.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": false
},
"COORD_FILE": {
"description": "\"The file from which the coordinate densities are read.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"tx0.25v1\"": "layer_coord.nc"
}
},
"BOUNDARY_EXTRAPOLATION": {
"description": "\"[Boolean] default = False\nWhen defined, a proper high-order reconstruction\nscheme is used within boundary cells rather\nthan PCM. E.g., if PPM is used for remapping, a\nPPM reconstruction will also be used within\nboundary cells.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$MOM6_VERTICAL_GRID == \"hycom1\"": true
}
},
"GRID_CONFIG": {
"description": "\"A character string that determines the method for\ndefining the horizontal grid. Current options are:\nmosaic - read the grid from a mosaic (supergrid)\nfile set by GRID_FILE.\ncartesian - use a (flat) Cartesian grid.\nspherical - use a simple spherical grid.\nmercator - use a Mercator spherical grid.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"MISOMIP\"": "cartesian",
"else": "mosaic"
}
},
"GRID_FILE": {
"description": "\"Name of the file from which to read horizontal grid data.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"tx2_3v2\"": "ocean_hgrid_221123.nc",
"$OCN_GRID == \"tx0.25v1\"": "ocean_hgrid.nc"
}
},
"USE_TRIPOLAR_GEOLONB_BUG": {
"description": "\"[Boolean] default = True\nIf true, use older code that incorrectly sets the longitude\nin some points along the tripolar fold to be off by 360 degrees.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": false,
"$OCN_GRID == \"tx0.25v1\"": false
}
},
"RAD_EARTH": {
"description": "\"[m] default = 6.378E+06\nThe radius of the Earth.\"\n",
"datatype": "real",
"units": "m",
"value": 6371220.0
},
"TOPO_CONFIG": {
"description": "\"This specifies how bathymetry is specified:\nfile - read bathymetric information from the file\nspecified by (TOPO_FILE).\nflat - flat bottom set to MAXIMUM_DEPTH.\nbowl - an analytically specified bowl-shaped basin\nranging between MAXIMUM_DEPTH and MINIMUM_DEPTH.\nspoon - a similar shape to 'bowl', but with an vertical\nwall at the southern face.\nhalfpipe - a zonally uniform channel with a half-sine\nprofile in the meridional direction.\nbenchmark - use the benchmark test case topography.\nDOME - use a slope and channel configuration for the\nDOME sill-overflow test case.\nDOME2D - use a shelf and slope configuration for the\nDOME2D gravity current/overflow test case.\nseamount - Gaussian bump for spontaneous motion test case.\nUSER - call a user modified routine.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"MISOMIP\"": "ISOMIP",
"else": "file"
}
},
"TOPO_FILE": {
"description": "\"default = 'topog.nc'\nThe file from which the bathymetry is read.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"tx2_3v2\"": "ocean_topo_tx2_3v2_240501.nc",
"$OCN_GRID == \"tx0.25v1\"": "ocean_topog.nc"
}
},
"TOPO_EDITS_FILE": {
"description": "\"default = ''\nThe file from which to read a list of i,j,z topography overrides.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"tx2_3v2\"": "topo_edits_tx2_3v2_250107.nc",
"$OCN_GRID == \"tx0.25v1\"": "All_edits.nc"
}
},
"MAXIMUM_DEPTH": {
"description": "\"[m]\nThe maximum depth of the ocean.\"\n",
"datatype": "real",
"units": "m",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 6000.0,
"$OCN_GRID == \"tx0.25v1\"": 6500.0,
"$OCN_GRID == \"MISOMIP\"": 720.0
}
},
"MINIMUM_DEPTH": {
"description": "\"[m] default = 0.0\nIf MASKING_DEPTH is unspecified, then anything shallower than\nMINIMUM_DEPTH is assumed to be land and all fluxes are masked out.\nIf MASKING_DEPTH is specified, then all depths shallower than\nMINIMUM_DEPTH but depper than MASKING_DEPTH are rounded to\nMINIMUM_DEPTH.\"\n",
"datatype": "real",
"units": "m",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 9.5,
"$OCN_GRID == \"tx0.25v1\"": 9.5
}
},
"MASKING_DEPTH": {
"description": "\"[m] default = -9999.0\nThe depth below which to mask points as land points, for which all\nfluxes are zeroed out. MASKING_DEPTH is ignored if negative.\"\n",
"datatype": "real",
"units": "m",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 0.0,
"$OCN_GRID == \"tx0.25v1\"": 0.0
}
},
"REMAPPING_SCHEME": {
"description": "\"default = 'PLM'\nThis sets the reconstruction scheme used\nfor vertical remapping for all variables.\nIt can be one of the following schemes:\nPCM (1st-order accurate)\nPLM (2nd-order accurate)\nPPM_H4 (3rd-order accurate)\nPPM_IH4 (3rd-order accurate)\nPQM_IH4IH3 (4th-order accurate)\nPQM_IH6IH5 (5th-order accurate)\"\n",
"datatype": "string",
"value": "PPM_CW"
},
"REMAP_VEL_CONSERVE_KE": {
"description": "\"[Boolean] default = False\nIf true, a correction is applied to the baroclinic component of velocity after\nremapping so that total KE is conserved. KE may not be conserved when\n(CS%BBL_h_vel_mask > 0.0) .and. (CS%h_vel_mask > 0.0)\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"REMAPPING_USE_OM4_SUBCELLS": {
"description": "\"[Boolean] default = True\nThis selects the remapping algorithm used in OM4 that does not use the full\nreconstruction for the top- and lower-most sub-layers. Instead, it assumes\nthey are always vanished (which is untrue) and uses only their edge values.\nIt is recommended to set this option to false.\"\n",
"datatype": "bool",
"units": "none",
"value": {
"$OCN_GRID == \"tx2_3v2\"": false
}
},
"INIT_LAYERS_FROM_Z_FILE": {
"description": "\"[Boolean] default = False\nIf true, intialize the layer thicknesses, temperatures,\nand salnities from a Z-space file on a latitude-\nlongitude grid.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$RUN_TYPE != \"hybrid\" and $OCN_GRID in [\"tx2_3v2\", \"tx0.25v1\"]": true,
"else": false
}
},
"TEMP_SALT_Z_INIT_FILE": {
"description": "\"default = 'temp_salt_z.nc'\nThe name of the z-space input file used to initialize\nthe layer thicknesses, temperatures and salinities.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"tx2_3v2\"": "woa18_04_initial_conditions.nc",
"$OCN_GRID == \"tx0.25v1\"": "MOM6_IC_TS.nc"
}
},
"Z_INIT_FILE_PTEMP_VAR": {
"description": "\"default = 'ptemp'\nThe name of the potential temperature variable in\nTEMP_SALT_Z_INIT_FILE.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"tx2_3v2\"": "theta0",
"$OCN_GRID == \"tx0.25v1\"": "temp"
}
},
"Z_INIT_FILE_SALT_VAR": {
"description": "\"default = 'salt'\nThe name of the salinity variable in\nTEMP_SALT_Z_INIT_FILE.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"tx2_3v2\"": "s_an"
}
},
"Z_INIT_REMAP_OLD_ALG": {
"description": "\"[Boolean] default = True\nIf false, uses the preferred remapping algorithm for initialization. If true,\nuse an older, less robust algorithm for remapping.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": false
},
"Z_INIT_REMAP_GENERAL": {
"description": "\"[Boolean] default = False\nIf false, only initializes to z* coordinates. If true, allows initialization\ndirectly to general coordinates.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$MOM6_VERTICAL_GRID == \"hycom1\" and $OCN_GRID in [\"tx2_3v2\"]": true
}
},
"USE_VARIABLE_MIXING": {
"description": "\"[Boolean] default = False\nIf true, the variable mixing code will be called. This\nallows diagnostics to be created even if the scheme is\nnot used. If KHTR_SLOPE_CFF>0 or KhTh_Slope_Cff>0,\nthis is set to true regardless of what is in the\nparameter file.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"RESOLN_SCALED_KH": {
"description": "\"[Boolean] default = False\nIf true, the Laplacian lateral viscosity is scaled away\nwhen the first baroclinic deformation radius is well\nresolved.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"KHTH_SLOPE_CFF": {
"description": "\"[nondim] default = 0.0\nThe nondimensional coefficient in the Visbeck formula for the interface depth\ndiffusivity\"\n",
"datatype": "real",
"units": "nondim",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 0.01
}
},
"DEPTH_SCALED_KHTH": {
"description": "\"[Boolean] default = False\n If true, KHTH is scaled away when the depth is shallower\n than a reference depth: KHTH = MIN(1,H/H0)**N * KHTH,\n where H0 is a reference depth, controlled via\n DEPTH_SCALED_KHTH_H0, and theexponent (N) is\n controlled via DEPTH_SCALED_KHTH_EXP.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": false
}
},
"DEPTH_SCALED_KHTH_H0": {
"description": "\"[m] default = 1000.0\nThe depth above which KHTH is scaled away.\"\n",
"datatype": "real",
"units": "nondim",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 500.0
}
},
"KHTR_SLOPE_CFF": {
"description": "\"[nondim] default = 0.0\nThe nondimensional coefficient in the Visbeck formula\nfor the epipycnal tracer diffusivity\"\n",
"datatype": "real",
"units": "nondim",
"value": {
"$OCN_GRID == \"tx0.25v1\"": 0.25
}
},
"KHTH_USE_EBT_STRUCT": {
"description": "\"[Boolean] default = False\nIf true, uses the equivalent barotropic structure\nas the vertical structure of thickness diffusivity.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"RESOLN_SCALED_KHTH": {
"description": "\"[Boolean] default = False\nIf true, the interface depth diffusivity is scaled away\nwhen the first baroclinic deformation radius is well\nresolved.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"RESOLN_SCALED_KHTR": {
"description": "\"[Boolean] default = False\nIf true, the epipycnal tracer diffusivity is scaled away when the first\nbaroclinic deformation radius is well resolved.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"USE_GM_WORK_BUG": {
"description": "\"[Boolean] default = True\nIf true, compute the top-layer work tendency on the u-grid with the incorrect\nsign, for legacy reproducibility.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": false
},
"USE_STORED_SLOPES": {
"description": "\"[Boolean] default = False\nIf true, the isopycnal slopes are calculated once and\nstored for re-use. This uses more memory but avoids calling\nthe equation of state more times than should be necessary.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"USE_STANLEY_ISO": {
"description": "\"[Boolean] default = False\nIf true, turn on Stanley SGS T variance parameterization in isopycnal slope code.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": false
}
},
"ETA_TOLERANCE": {
"description": "\"[m] default = 3.15E-09\nThe tolerance for the differences between the\nbarotropic and baroclinic estimates of the sea surface\nheight due to the fluxes through each face. The total\ntolerance for SSH is 4 times this value. The default\nis 0.5*NK*ANGSTROM, and this should not be set less x\nthan about 10^-15*MAXIMUM_DEPTH.\"\n",
"datatype": "real",
"units": "m",
"value": {
"$OCN_GRID == \"MISOMIP\"": 1e-12,
"else": 1e-06
}
},
"ETA_TOLERANCE_AUX": {
"description": "\"[m] default = 1.0E-06\nThe tolerance for free-surface height discrepancies\nbetween the barotropic solution and the sum of the\nlayer thicknesses when calculating the auxiliary\ncorrected velocities. By default, this is the same as\nETA_TOLERANCE, but can be made larger for efficiency.\"\n",
"datatype": "real",
"units": "m",
"value": {
"$OCN_GRID == \"tx0.25v1\"": 0.001
}
},
"USE_NEUTRAL_DIFFUSION": {
"description": "\"[Boolean] default = False\nIf true, enables the neutral diffusion module.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"NDIFF_INTERIOR_ONLY": {
"description": "\"[Boolean] default = False\nIf true, only applies neutral diffusion in the ocean interior. That is, the\nalgorithm will exclude the surface and bottomboundary layers.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"NDIFF_TAPERING": {
"description": "\"[Boolean] default = False\nIf true, neutral diffusion linearly decays to zero within a transition\nzone defined using boundary layer depths. Only applicable when\nNDIFF_INTERIOR_ONLY = True.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"USE_HORIZONTAL_BOUNDARY_DIFFUSION": {
"description": "\"[Boolean] default = False\nIf true, enables the horizontal boundary tracer's diffusion module.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"HBD_LINEAR_TRANSITION": {
"description": "\"[Boolean] default = False\nIf True, apply a linear transition at the base/top of the boundary.\nThe flux will be fully applied at k=k_min and zero at k=k_max.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"SIMPLE_TKE_TO_KD": {
"description": "\"[Boolean] default = False\nIf true, uses a simple estimate of Kd/TKE that will\nwork for arbitrary vertical coordinates. If false,\ncalculates Kd/TKE and bounds based on exact\nenergetics/nfor an isopycnal layer-formulation.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"REGRIDDING_COORDINATE_MODE": {
"description": "\"default = 'LAYER'\nCoordinate mode for vertical regridding.\nChoose among the following possibilities:\nLAYER - Isopycnal or stacked shallow water layers\nZSTAR, Z* - stetched geopotential z*\nSIGMA_SHELF_ZSTAR - stetched geopotential z* ignoring shelf\nSIGMA - terrain following coordinates\nRHO - continuous isopycnal\nHYCOM1 - HyCOM-like hybrid coordinate\nSLIGHT - stretched coordinates above continuous isopycnal\nADAPTIVE - optimize for smooth neutral density surfaces\"\n",
"datatype": "string",
"value": {
"$MOM6_VERTICAL_GRID in [\"zstar_65L\", \"zstar_75L\"]": "Z*",
"$MOM6_VERTICAL_GRID == \"hycom1\"": "HYCOM1",
"$MOM6_VERTICAL_GRID == \"sigma_shelf_zstar\"": "SIGMA_SHELF_ZSTAR"
}
},
"ALE_COORDINATE_CONFIG": {
"description": "\"default = 'UNIFORM'\nDetermines how to specify the coordinate\nresolution. Valid options are:\nPARAM - use the vector-parameter ALE_RESOLUTION\nUNIFORM[:N] - uniformly distributed\nFILE:string - read from a file. The string specifies\nthe filename and variable name, separated\nby a comma or space, e.g. FILE:lev.nc,dz\nor FILE:lev.nc,interfaces=zw\nWOA09[:N] - the WOA09 vertical grid (approximately)\nFNC1:string - FNC1:dz_min,H_total,power,precision\nHYBRID:string - read from a file. The string specifies\nthe filename and two variable names, separated\nby a comma or space, for sigma-2 and dz. e.g.\nHYBRID:vgrid.nc,sigma2,dz\"\n",
"datatype": "string",
"value": {
"$MOM6_VERTICAL_GRID == \"zstar_75L\"": "\"FILE:zstar_75layer_2.5m_248.4m-2024-03-29.nc,dz\"",
"$MOM6_VERTICAL_GRID == \"zstar_65L\"": "\"FILE:vgrid_65L_20200626.nc,dz\"",
"$MOM6_VERTICAL_GRID == \"hycom1\" and $OCN_GRID != \"tx0.25v1\"": "\"HYBRID:hybrid_75layer_zstar_2.50m-2025-09-12.nc,sigma2,dz\"",
"$MOM6_VERTICAL_GRID == \"hycom1\" and $OCN_GRID == \"tx0.25v1\"": "\"HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01\""
}
},
"REGRID_COMPRESSIBILITY_FRACTION": {
"description": "\"[not defined] default = 0.0\nWhen interpolating potential density profiles we can add\nsome artificial compressibility solely to make homogenous\nregions appear stratified.\"\n",
"datatype": "real",
"units": "not defined",
"value": {
"$MOM6_VERTICAL_GRID == \"hycom1\"": 0.0
}
},
"MAXIMUM_INT_DEPTH_CONFIG": {
"description": "\"default = 'NONE'\nDetermines how to specify the maximum interface depths.\nValid options are:\nNONE - there are no maximum interface depths\nPARAM - use the vector-parameter MAXIMUM_INTERFACE_DEPTHS\nFILE:string - read from a file. The string specifies\nthe filename and variable name, separated\nby a comma or space, e.g. FILE:lev.nc,Z\nFNC1:string - FNC1:dz_min,H_total,power,precision\nThe list of maximum depths for each interface.\"\n",
"datatype": "string",
"value": {
"$MOM6_VERTICAL_GRID == \"hycom1\" and $OCN_GRID in [\"tx2_3v2\"]": "'\"FILE:${DIN_LOC_ROOT}/ocn/mom/tx2_3v2/lev-2025-09-12.nc,Z\"'\n",
"$MOM6_VERTICAL_GRID == \"hycom1\" and $OCN_GRID == \"tx0.25v1\"": "\"FNC1:5,8000.0,1.0,.01\""
}
},
"MAX_LAYER_THICKNESS_CONFIG": {
"description": "\"default = 'NONE'\nDetermines how to specify the maximum layer thicknesses.\nValid options are:\nNONE - there are no maximum layer thicknesses\nPARAM - use the vector-parameter MAX_LAYER_THICKNESS\nFILE:string - read from a file. The string specifies\nthe filename and variable name, separated\nby a comma or space, e.g. FILE:lev.nc,Z\nFNC1:string - FNC1:dz_min,H_total,power,precision\nThe list of maximum thickness for each layer.\"\n",
"datatype": "string",
"value": {
"$MOM6_VERTICAL_GRID == \"hycom1\" and $OCN_GRID in [\"tx2_3v2\"]": "'\"FILE:${DIN_LOC_ROOT}/ocn/mom/tx2_3v2/dz_max-2025-09-12.nc,dz\"'\n",
"else": "\"FNC1:400,31000.0,0.1,.01\""
}
},
"BOUND_CORIOLIS": {
"description": "\"[Boolean] default = False\nIf true, the Coriolis terms at u-points are bounded by\nthe four estimates of (f+rv)v from the four neighboring\nv-points, and similarly at v-points. This option would\nhave no effect on the SADOURNY Coriolis scheme if it\nwere possible to use centered difference thickness fluxes.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": true
},
"RHO_PGF_REF_BUG": {
"description": "\"[Boolean] default = True\nIf true, recover a bug that RHO_0 (the mean seawater density in Boussinesq\nmode) and RHO_PGF_REF (the subtracted reference density in finite volume\npressure gradient forces) are incorrectly interchanged in several instances in\nBoussinesq mode.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": false
},
"MASS_WEIGHT_IN_PRESSURE_GRADIENT": {
"description": "\"[Boolean] default = False\nIf true, use mass weighting when interpolation T/S for\ntop/bottom integrals in AFV pressure gradient calculation.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": true
},
"USE_STANLEY_PGF": {
"description": "\"[Boolean] default = False\nIf true, turn on Stanley SGS T variance parameterization in PGF code.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"LAPLACIAN": {
"description": "\"[Boolean] default = False\nIf true, use a Laplacian horizontal viscosity.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": true
},
"SMAGORINSKY_KH": {
"description": "\"[Boolean] default = False\nIf true, use a Smagorinsky nonlinear eddy viscosity.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"SMAG_LAP_CONST": {
"description": "\"[nondim] default = 0.0\nThe nondimensional Laplacian Smagorinsky constant, often 0.15.\"\n",
"datatype": "real",
"units": "nondim",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 0.15
}
},
"KH": {
"description": "\"[m2 s-1] default = 0.0\nThe background Laplacian horizontal viscosity.\"\n",
"datatype": "real",
"units": "m2 s-1",
"value": {
"$OCN_GRID == \"MISOMIP\"": 6.0
}
},
"KH_VEL_SCALE": {
"description": "\"[m s-1] default = 0.0\nThe velocity scale which is multiplied by the grid\nspacing to calculate the Laplacian viscosity.\nThe final viscosity is the largest of this scaled\nviscosity, the Smagorinsky viscosity and KH.\"\n",
"datatype": "real",
"units": "m s-1",
"value": {
"$OCN_GRID == \"MISOMIP\"": 0.0,
"$OCN_GRID == \"tx0.25v1\"": 0.0,
"$OCN_GRID == \"tx2_3v2\"": 0.0,
"else": 0.01
}
},
"KH_SIN_LAT": {
"description": "\"[m2 s-1] default = 0.0\nThe amplitude of a latidutinally-dependent background\nviscosity of the form KH_SIN_LAT*(SIN(LAT)**KH_PWR_OF_SINE).\"\n",
"datatype": "real",
"units": "m2 s-1",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 0.0
}
},
"BIHARMONIC": {
"description": "\"[Boolean] default = True\nIf true, use a biharmonic horizontal viscosity.\nBIHARMONIC may be used with LAPLACIAN.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"MISOMIP\"": false
}
},
"AH": {
"description": "\"[m4 s-1] default = 0.0\nThe background biharmonic horizontal viscosity.\"\n",
"datatype": "real",
"units": "m4 s-1",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 1000000000000.0
}
},
"AH_VEL_SCALE": {
"description": "\"[m s-1] default = 0.0\nThe velocity scale which is multiplied by the cube of\nthe grid spacing to calculate the biharmonic viscosity.\nThe final viscosity is the largest of this scaled\nviscosity, the Smagorinsky and Leith viscosities, and AH.\"\n",
"datatype": "real",
"units": "m s-1",
"value": {
"$OCN_GRID == \"tx0.25v1\"": 0.01,
"$OCN_GRID == \"MISOMIP\"": 0.001
}
},
"USE_LEITHY": {
"description": "\"[Boolean] default = False\nIf true, use a modified version of the biharmonic Leith nonlinear\neddy viscosity. This implementation can include harmonic backscatter\nwhen LEITHY_CK > 0.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true
}
},
"LEITH_AH": {
"description": "\"[Boolean] default = False\nIf true, use a biharmonic Leith nonlinear eddy viscosity.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": false
}
},
"LEITH_BI_CONST": {
"description": "\"[nondim] default = 0.0\nThe nondimensional biharmonic Leith constant, typical values are thus far\nundetermined.\"\n",
"datatype": "real",
"units": "nondim",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 75.0
}
},
"LEITHY_CK": {
"description": "\"[nondim] default = 1.0\nFraction of biharmonic dissipation that gets backscattered, in Leith+E.\"\n",
"datatype": "real",
"units": "nondim",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 0.0
}
},
"USE_LAND_MASK_FOR_HVISC": {
"description": "\"[Boolean] default = False\nIf true, use Use the land mask for the computation of thicknesses\nat velocity locations. This eliminates the dependence on arbitrary\nvalues over land or outside of the domain. Default is False in order to\nmaintain answers with legacy experiments but should be changed to True\nfor new experiments.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": true
},
"FRICTWORK_BUG": {
"description": "\"[Boolean] default = True\nIf true, retain an answer-changing bug in calculating the FrictWork, which\ncancels the h in thickness flux and the h at velocity point. This is not\nrecommended.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": false
},
"HMIX_FIXED": {
"description": "\"[m]\nThe prescribed depth over which the near-surface\nviscosity and diffusivity are elevated when the bulk\nmixed layer is not used.\"\n",
"datatype": "real",
"units": "m",
"value": {
"$OCN_GRID == \"MISOMIP\"": 20.0,
"else": 0.5
}
},
"CHANNEL_DRAG": {
"description": "\"[Boolean] default = False\nIf true, the bottom drag is exerted directly on each\nlayer proportional to the fraction of the bottom it\noverlies.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"MISOMIP\"": false,
"else": true
}
},
"HBBL": {
"description": "\"[m]\n The thickness of a bottom boundary layer with a viscosity of KVBBL if\n BOTTOMDRAGLAW is not defined, or the thickness over which near-bottom\n velocities are averaged for the drag law if BOTTOMDRAGLAW is defined but\n LINEAR_DRAG is not.\"\n",
"datatype": "real",
"units": "m",
"value": 10.0
},
"PRANDTL_TURB": {
"description": "\"[nondim] default = 0.0\nThe turbulent Prandtl number applied to shear\ninstability.\"\n",
"datatype": "real",
"units": "nondim",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 1.0,
"$OCN_GRID == \"tx0.25v1\"": 1.25
}
},
"U_TRUNC_FILE": {
"description": "\"default = ''\nThe absolute path to a file into which the accelerations\nleading to zonal velocity truncations are written.\nUndefine this for efficiency if this diagnostic is not\nneeded.\"\n",
"datatype": "string",
"value": "U_velocity_truncations"
},
"V_TRUNC_FILE": {
"description": "\"default = ''\nThe absolute path to a file into which the accelerations\nleading to meridional velocity truncations are written.\nUndefine this for efficiency if this diagnostic is not\nneeded.\"\n",
"datatype": "string",
"value": "V_velocity_truncations"
},
"MAXVEL": {
"description": "\"[m s-1] default = 3.0E+08\nThe maximum velocity allowed before the velocity\ncomponents are truncated.\"\n",
"datatype": "real",
"units": "m s-1",
"value": {
"$OCN_GRID == \"MISOMIP\"": 10.0,
"else": 6.0
}
},
"CFL_TRUNCATE_RAMP_TIME": {
"description": "\"[s] default = 0.0\nThe time over which the CFL trunction value is ramped\nup at the beginning of the run.\"\n",
"datatype": "real",
"units": "s",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 7200.0
}
},
"Z_INIT_ALE_REMAPPING": {
"description": "\"[Boolean] default = False\nIf True, then remap straight to model coordinate from file.\"\n",
"datatype": "logical",
"units": "Boolean",
"value": {
"$OCN_GRID == \"tx2_3v2\"": true,
"$OCN_GRID == \"tx0.25v1\"": true
}
},
"NUM_DIAG_COORDS": {
"description": "\" The number of diagnostic vertical coordinates to use.\nFor each coordinate, an entry in DIAG_COORDS must be provided.\"\n",
"datatype": "integer",
"value": {
"$OCN_GRID == \"tx2_3v2\"": 2,
"$OCN_GRID == \"tx0.25v1\"": 1
}
},
"DIAG_COORDS": {
"description": "\"A list of string tuples associating diag_table modules to\na coordinate definition used for diagnostics. Each string\nis of the form MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME.\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"tx2_3v2\"": "\"z Z ZSTAR\", \"rho2 RHO2 RHO\"",
"$OCN_GRID == \"tx0.25v1\"": "\"z Z ZSTAR\""
}
},
"DIAG_COORD_DEF_RHO2": {
"description": "\" default = 'WOA09'\nDetermines how to specify the coordinate resolution. Valid options are:\nPARAM - use the vector-parameter DIAG_COORD_RES_RHO2\nUNIFORM[:N] - uniformly distributed\nFILE:string - read from a file. The string specifies\nthe filename and variable name, separated\nby a comma or space, e.g. FILE:lev.nc,dz\nor FILE:lev.nc,interfaces=zw\nWOA09[:N] - the WOA09 vertical grid (approximately)\nFNC1:string - FNC1:dz_min,H_total,power,precision\nHYBRID:string - read from a file. The string specifies\nthe filename and two variable names, separated\nby a comma or space, for sigma-2 and dz. e.g.\nHYBRID:vgrid.nc,sigma2,dz\"\n",
"datatype": "string",
"value": {
"$OCN_GRID == \"tx2_3v2\"": "\"FILE:ocean_rho2_190917.nc,interfaces=rho2\""
}