-
Notifications
You must be signed in to change notification settings - Fork 0
/
namelist_defaults_pop.xml
1724 lines (1372 loc) · 88.4 KB
/
namelist_defaults_pop.xml
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>
<!---------------------------->
<!-- domain_nml -->
<!---------------------------->
<clinic_distribution_type decomptype="cartesian" >cartesian</clinic_distribution_type>
<clinic_distribution_type decomptype="spacecurve">spacecurve</clinic_distribution_type>
<clinic_distribution_type decomptype="blockone" >blockone</clinic_distribution_type>
<tropic_distribution_type decomptype="cartesian" >cartesian</tropic_distribution_type>
<tropic_distribution_type decomptype="spacecurve">spacecurve</tropic_distribution_type>
<tropic_distribution_type decomptype="blockone" >blockone</tropic_distribution_type>
<ew_boundary_type>cyclic</ew_boundary_type>
<ns_boundary_type>closed</ns_boundary_type>
<ns_boundary_type ocn_grid="tx1v1" >tripole</ns_boundary_type>
<ns_boundary_type ocn_grid="tx0.1v2">tripole</ns_boundary_type>
<ns_boundary_type ocn_grid="tx0.1v3">tripole</ns_boundary_type>
<profile_barrier>.false.</profile_barrier>
<num_iotasks>1</num_iotasks>
<lredirect_stdout>.true.</lredirect_stdout>
<luse_pointer_files>.true.</luse_pointer_files>
<!---------------------------->
<!-- time_manager_nml -->
<!---------------------------->
<time_mix_opt ocn_ncpl="24" ocn_grid="gx1v6">robert</time_mix_opt>
<time_mix_opt ocn_ncpl="12" ocn_grid="gx1v6">robert</time_mix_opt>
<time_mix_opt ocn_ncpl="24" ocn_grid="gx1v7">robert</time_mix_opt>
<time_mix_opt ocn_ncpl="12" ocn_grid="gx1v7">robert</time_mix_opt>
<time_mix_opt>avgfit</time_mix_opt>
<time_mix_freq>17</time_mix_freq>
<dt_option>steps_per_day</dt_option>
<!-- this gives you 1-hour coupling defaults -->
<dt_count ocn_ncpl="24" time_mix="robert" ocn_grid="gx1v6">24</dt_count>
<!-- this gives you 2-hour coupling defaults -->
<dt_count ocn_ncpl="12" time_mix="robert" ocn_grid="gx1v6">24</dt_count>
<dt_count ocn_ncpl="12" time_mix="avg_mix" ocn_grid="gx1v6">23</dt_count>
<dt_count ocn_ncpl="24" time_mix="robert" ocn_grid="gx1v7">24</dt_count>
<dt_count ocn_ncpl="12" time_mix="robert" ocn_grid="gx1v7">24</dt_count>
<dt_count ocn_ncpl="12" time_mix="avg_mix" ocn_grid="gx1v7">23</dt_count>
<!-- this gives you original cesm1 default behavior out of the box -->
<dt_count ocn_grid="gx3v7" > 12</dt_count>
<dt_count ocn_grid="gx3v7" ocn_onedim="TRUE">24</dt_count>
<dt_count ocn_grid="gx1v6" > 24</dt_count>
<dt_count ocn_grid="gx1v6" ocn_onedim="TRUE">46</dt_count>
<dt_count ocn_grid="gx1v7" > 24</dt_count>
<dt_count ocn_grid="gx1v7" ocn_onedim="TRUE">46</dt_count>
<dt_count ocn_grid="tx1v1" > 24</dt_count>
<dt_count ocn_grid="tx0.1v2">300</dt_count>
<dt_count ocn_grid="tx0.1v2" ocn_coupling="partial">500</dt_count>
<dt_count ocn_grid="tx0.1v3">300</dt_count>
<dt_count ocn_grid="tx0.1v3" ocn_coupling="partial">500</dt_count>
<impcor>.true.</impcor>
<laccel>.false.</laccel>
<dtuxcel>1.0</dtuxcel>
<allow_leapyear calendar="GREGORIAN">.true.</allow_leapyear>
<allow_leapyear>.false.</allow_leapyear>
<date_separator>'-'</date_separator>
<stop_option>nyear</stop_option>
<stop_count>1000</stop_count>
<fit_freq>1</fit_freq>
<robert_alpha> 1.0 </robert_alpha>
<robert_nu> 0.1 </robert_nu>
<!---------------------------->
<!-- grid_nml -->
<!---------------------------->
<sfc_layer_opt>'varthick'</sfc_layer_opt>
<sfc_layer_opt ocn_onedim="TRUE">'rigid'</sfc_layer_opt>
<horiz_grid_opt>file</horiz_grid_opt>
<vert_grid_opt >file</vert_grid_opt>
<lremove_points topography_opt="file" >.false.</lremove_points>
<lremove_points topography_opt="bathymetry">.true.</lremove_points>
<horiz_grid_file ocn_grid="gx3v7" >ocn/pop/gx3v7/grid/horiz_grid_20030806.ieeer8</horiz_grid_file>
<horiz_grid_file ocn_grid="gx1v6" >ocn/pop/gx1v6/grid/horiz_grid_20010402.ieeer8</horiz_grid_file>
<horiz_grid_file ocn_grid="gx1v7" >ocn/pop/gx1v7/grid/horiz_grid_20010402.ieeer8</horiz_grid_file>
<horiz_grid_file ocn_grid="tx1v1" >ocn/pop/tx1v1/grid/horiz_grid_20050510.ieeer8</horiz_grid_file>
<horiz_grid_file ocn_grid="tx0.1v2">ocn/pop/tx0.1v2/grid/horiz_grid_200709.ieeer8</horiz_grid_file>
<horiz_grid_file ocn_grid="tx0.1v3">ocn/pop/tx0.1v2/grid/horiz_grid_200709.ieeer8</horiz_grid_file>
<topography_file ocn_grid="gx1v6" >ocn/pop/gx1v6/grid/topography_20090204.ieeei4</topography_file>
<topography_file ocn_grid="gx1v7" >ocn/pop/gx1v7/grid/topography_20161215.ieeei4</topography_file>
<topography_file ocn_grid="gx3v7" >ocn/pop/gx3v7/grid/topography_20100105.ieeei4</topography_file>
<topography_file ocn_grid="tx1v1" >ocn/pop/tx1v1/grid/topography_20050510.ieeei4</topography_file>
<topography_file ocn_grid="tx0.1v2">ocn/pop/tx0.1v2/grid/topography_200709.ieeei4</topography_file>
<topography_file ocn_grid="tx0.1v3">ocn/pop/tx0.1v3/grid/topography_20170718.ieeei4</topography_file>
<region_mask_file ocn_grid="gx3v7" >ocn/pop/gx3v7/grid/region_mask_20090831.ieeei4</region_mask_file>
<region_mask_file ocn_grid="gx1v6" >ocn/pop/gx1v6/grid/region_mask_20090205.ieeei4</region_mask_file>
<region_mask_file ocn_grid="gx1v7" >ocn/pop/gx1v7/grid/region_mask_20151008.ieeei4</region_mask_file>
<region_mask_file ocn_grid="tx1v1" >ocn/pop/tx1v1/grid/region_mask_20050510.ieeei4</region_mask_file>
<region_mask_file ocn_grid="tx0.1v2">ocn/pop/tx0.1v2/grid/region_mask_20080702.ieeei4</region_mask_file>
<region_mask_file ocn_grid="tx0.1v3">ocn/pop/tx0.1v3/grid/region_mask_20170718.ieeei4</region_mask_file>
<kmt_kmin>3</kmt_kmin>
<partial_bottom_cells>.false.</partial_bottom_cells>
<partial_bottom_cells ocn_grid="tx0.1v2">.true.</partial_bottom_cells>
<partial_bottom_cells ocn_grid="tx0.1v3">.true.</partial_bottom_cells>
<bottom_cell_file ocn_grid="tx0.1v2">ocn/pop/tx0.1v2/grid/dzbc_pbc_s2.0_200709.ieeer8</bottom_cell_file>
<bottom_cell_file ocn_grid="tx0.1v3">ocn/pop/tx0.1v3/grid/dzbc_pbc_s2.0_20171019.ieeer8</bottom_cell_file>
<n_topo_smooth>0</n_topo_smooth>
<flat_bottom>.false.</flat_bottom>
<flat_bottom iden_cols="TRUE">.true.</flat_bottom>
<l1Ddyn>.false.</l1Ddyn>
<l1Ddyn ocn_onedim="TRUE">.true.</l1Ddyn>
<!---------------------------->
<!-- pop1d_nml -->
<!---------------------------->
<lidentical_columns>.false.</lidentical_columns>
<lconst_Coriolis>.false.</lconst_Coriolis>
<lconst_Coriolis iden_cols="TRUE">.true.</lconst_Coriolis>
<lmin_Coriolis>.false.</lmin_Coriolis>
<lmin_Coriolis ocn_onedim="TRUE">.true.</lmin_Coriolis>
<Coriolis_min>6.4e-6</Coriolis_min>
<Coriolis_val>1e-4</Coriolis_val>
<global_taux>0.1</global_taux>
<global_SHF_coef>-100</global_SHF_coef>
<!---------------------------->
<!-- init_ts_nml -->
<!---------------------------->
<init_ts_file ocn_grid="gx3v7"> ocn/pop/gx3v7/ic/ts_PHC2_jan_ic_gx3v7_20100107.ieeer8</init_ts_file>
<init_ts_file ocn_grid="gx1v6"> ocn/pop/gx1v6/ic/ts_PHC2_jan_ic_gx1v6_20090205.ieeer8</init_ts_file>
<init_ts_file ocn_grid="gx1v7"> ocn/pop/gx1v7/ic/ts_WOA13v2_jan_ic_gx1v7_20170706.ieeer8</init_ts_file>
<init_ts_file ocn_grid="tx1v1"> ocn/pop/tx1v1/ic/ts_jan_ic_20050510.ieeer8</init_ts_file>
<init_ts_file ocn_grid="tx0.1v2">ocn/pop/tx0.1v2/ic/GC007v3.pop.r.0001-01-16-00000</init_ts_file>
<init_ts_file ocn_grid="tx0.1v3">ocn/pop/tx0.1v3/ic/ts.woa2013v2_0.25.ic.POP_tx0.1v3_62lev.20170920.nc</init_ts_file>
<init_ts_file_fmt ocn_grid="tx0.1v3">nc</init_ts_file_fmt>
<init_ts_hdr_file ocn_grid="tx0.1v2">ocn/pop/tx0.1v2/ic/GC007v3.pop.r.0001-01-16-00000.hdr</init_ts_hdr_file>
<init_ts_suboption>'null'</init_ts_suboption>
<init_ts_suboption ocn_grid="tx0.1v2">'spunup'</init_ts_suboption>
<init_ts_outfile_fmt>'nc'</init_ts_outfile_fmt>
<init_ts_outfile_fmt ocn_grid="tx0.1v2">'bin'</init_ts_outfile_fmt>
<init_ts_perturb>0.0e-3</init_ts_perturb>
<!---------------------------->
<!-- diagnostics_nml -->
<!---------------------------->
<diag_global_freq_opt>'nmonth'</diag_global_freq_opt>
<diag_global_freq_opt ocn_grid="tx0.1v2">'nday'</diag_global_freq_opt>
<diag_global_freq_opt ocn_grid="tx0.1v3">'nday'</diag_global_freq_opt>
<diag_global_freq>1</diag_global_freq>
<diag_cfl_freq_opt>'nmonth'</diag_cfl_freq_opt>
<diag_cfl_freq_opt ocn_grid="tx0.1v2">'nday'</diag_cfl_freq_opt>
<diag_cfl_freq_opt ocn_grid="tx0.1v3">'nday'</diag_cfl_freq_opt>
<diag_cfl_freq>1</diag_cfl_freq>
<diag_transp_freq_opt>'nmonth'</diag_transp_freq_opt>
<diag_transp_freq_opt ocn_grid="tx0.1v2">'nday'</diag_transp_freq_opt>
<diag_transp_freq_opt ocn_grid="tx0.1v3">'nday'</diag_transp_freq_opt>
<diag_transp_freq>1</diag_transp_freq>
<cfl_all_levels>.false.</cfl_all_levels>
<diag_all_levels>.false.</diag_all_levels>
<ldiag_velocity>.true.</ldiag_velocity>
<ldiag_velocity ocn_grid="tx1v1" >.false.</ldiag_velocity>
<ldiag_velocity ocn_grid="tx0.1v2">.false.</ldiag_velocity>
<ldiag_velocity ocn_grid="tx0.1v3">.false.</ldiag_velocity>
<!---------------------------->
<!-- budget_diagnostics_nml ***-->
<!---------------------------->
<ldiag_global_tracer_budgets>.true.</ldiag_global_tracer_budgets>
<ldiag_global_tracer_budgets ocn_onedim="TRUE">.false.</ldiag_global_tracer_budgets>
<ldiag_global_tracer_budgets ocn_grid="tx1v1" >.false.</ldiag_global_tracer_budgets>
<ldiag_global_tracer_budgets ocn_grid="tx0.1v2">.false.</ldiag_global_tracer_budgets>
<ldiag_global_tracer_budgets ocn_grid="tx0.1v3">.false.</ldiag_global_tracer_budgets>
<!---------------------------->
<!-- bsf_diagnostics_nml -->
<!---------------------------->
<ldiag_bsf>.true.</ldiag_bsf>
<ldiag_bsf ocn_onedim="TRUE" >.false.</ldiag_bsf>
<ldiag_bsf ocn_grid="tx1v1" >.false.</ldiag_bsf>
<ldiag_bsf ocn_grid="tx0.1v2">.false.</ldiag_bsf>
<ldiag_bsf ocn_grid="tx0.1v3">.false.</ldiag_bsf>
<!---------------------------->
<!-- restart_nml -->
<!---------------------------->
<restart_freq_opt>'nyear'</restart_freq_opt>
<restart_freq>100000</restart_freq>
<restart_start_opt>'nstep'</restart_start_opt>
<restart_start> 0</restart_start>
<restart_fmt>'nc'</restart_fmt>
<leven_odd_on>.false.</leven_odd_on>
<even_odd_freq>100000</even_odd_freq>
<pressure_correction>.false.</pressure_correction>
<!---------------------------->
<!-- history_nml -->
<!---------------------------->
<history_freq_opt>'never'</history_freq_opt>
<history_freq>1</history_freq>
<history_fmt>'nc'</history_fmt>
<!---------------------------->
<!-- movie_nml -->
<!---------------------------->
<movie_freq_opt>'never'</movie_freq_opt>
<movie_freq>1</movie_freq>
<movie_fmt>'nc'</movie_fmt>
<!---------------------------->
<!-- solvers -->
<!---------------------------->
<solverChoice>'PCSI'</solverChoice>
<solverChoice ocn_grid="gx3v7">'ChronGear'</solverChoice>
<convergenceCriterion>1.0e-13</convergenceCriterion>
<maxIterations>1000</maxIterations>
<convergenceCheckFreq>10</convergenceCheckFreq>
<convergenceCheckStart>60</convergenceCheckStart>
<preconditionerChoice>'evp'</preconditionerChoice>
<preconditionerChoice ocn_grid="gx3v7">'diagonal'</preconditionerChoice>
<preconditionerFile>'unknownPrecondFile'</preconditionerFile>
<LanczosconvergenceCriterion>0.15</LanczosconvergenceCriterion>
<maxLanczosStep>100</maxLanczosStep>
<!---------------------------->
<!-- vertical_mix_nml -->
<!---------------------------->
<vmix_choice>'kpp'</vmix_choice>
<aidif>1.0</aidif>
<implicit_vertical_mix>.true.</implicit_vertical_mix>
<convection_type>'diffusion'</convection_type>
<nconvad>2</nconvad>
<convect_diff>10000.0</convect_diff>
<convect_visc>10000.0</convect_visc>
<bottom_drag>1.0e-3</bottom_drag>
<!---------------------------->
<!-- geoheatflux_nml -->
<!---------------------------->
<geoheatflux_choice>'const'</geoheatflux_choice>
<geoheatflux_const>0.0</geoheatflux_const>
<geoheatflux_depth>1000.0e2</geoheatflux_depth>
<!---------------------------->
<!-- vmix_const_nml -->
<!---------------------------->
<const_vvc>0.25</const_vvc>
<const_vdc>0.25</const_vdc>
<!---------------------------->
<!-- vmix_rich_nml -->
<!---------------------------->
<bckgrnd_vvc>1.0</bckgrnd_vvc>
<bckgrnd_vdc>0.1</bckgrnd_vdc>
<rich_mix>50.0</rich_mix>
<!---------------------------->
<!-- tidal_nml -->
<!---------------------------->
<tidal_local_mixing_fraction>0.33</tidal_local_mixing_fraction>
<ltidal_all_TC_coefs_eq_1>.false.</ltidal_all_TC_coefs_eq_1>
<ltidal_all_TC_coefs_eq_p33>.false.</ltidal_all_TC_coefs_eq_p33>
<ltidal_mixing>.true.</ltidal_mixing>
<ltidal_melet_plot>.false.</ltidal_melet_plot>
<ltidal_lunar_cycle>.false.</ltidal_lunar_cycle>
<ltidal_mixing ocn_grid="tx1v1" >.false.</ltidal_mixing>
<ltidal_mixing ocn_grid="tx0.1v2">.false.</ltidal_mixing>
<ltidal_mixing ocn_grid="tx0.1v3">.false.</ltidal_mixing>
<ltidal_max >.true.</ltidal_max>
<ltidal_stabc >.true.</ltidal_stabc>
<ltidal_min_regions>.true.</ltidal_min_regions>
<ltidal_min_regions ocn_grid="tx1v1" >.false.</ltidal_min_regions>
<ltidal_min_regions ocn_grid="tx0.1v2">.false.</ltidal_min_regions>
<ltidal_min_regions ocn_grid="tx0.1v3">.false.</ltidal_min_regions>
<num_tidal_min_regions> 3</num_tidal_min_regions>
<tidal_min_values(1)> 20.0</tidal_min_values(1)>
<tidal_min_regions_name(1)> 'Denmark Strait'</tidal_min_regions_name(1)>
<tidal_min_regions_klevels(1)>6</tidal_min_regions_klevels(1)>
<tidal_TLATmin_regions(1)> 67.0</tidal_TLATmin_regions(1)>
<tidal_TLATmax_regions(1)> 69.4</tidal_TLATmax_regions(1)>
<tidal_TLONmin_regions(1)> 333.5</tidal_TLONmin_regions(1)>
<tidal_TLONmax_regions(1)> 337.9</tidal_TLONmax_regions(1)>
<tidal_min_values(2)> 20.0</tidal_min_values(2)>
<tidal_min_regions_name(2)> 'Faroe Bank Channel'</tidal_min_regions_name(2)>
<tidal_min_regions_klevels(2)>6</tidal_min_regions_klevels(2)>
<tidal_TLATmin_regions(2)> 60.7</tidal_TLATmin_regions(2)>
<tidal_TLATmax_regions(2)> 64.1</tidal_TLATmax_regions(2)>
<tidal_TLONmin_regions(2)> 355.</tidal_TLONmin_regions(2)>
<tidal_TLONmax_regions(2)> 1.8</tidal_TLONmax_regions(2)>
<tidal_min_values(3)> 20.0</tidal_min_values(3)>
<tidal_min_regions_name(3)> 'Ross Sea'</tidal_min_regions_name(3)>
<tidal_min_regions_klevels(3)>6</tidal_min_regions_klevels(3)>
<tidal_TLATmin_regions(3)> -78.2</tidal_TLATmin_regions(3)>
<tidal_TLATmax_regions(3)> -74.4</tidal_TLATmax_regions(3)>
<tidal_TLONmin_regions(3)> 164.2</tidal_TLONmin_regions(3)>
<tidal_TLONmax_regions(3)> 188.9</tidal_TLONmax_regions(3)>
<ltidal_schmittner_socn>.false.</ltidal_schmittner_socn>
<ltidal_schmittner_socn ocn_grid="gx3v7" >.false.</ltidal_schmittner_socn>
<ltidal_schmittner_socn ocn_grid="tx1v1" >.false.</ltidal_schmittner_socn>
<ltidal_schmittner_socn ocn_grid="tx0.1v2">.false.</ltidal_schmittner_socn>
<ltidal_schmittner_socn ocn_grid="tx0.1v3">.false.</ltidal_schmittner_socn>
<tidal_diss_lim_TC>0.0e02</tidal_diss_lim_TC>
<tidal_energy_choice>'jayne'</tidal_energy_choice>
<!-------- select tidal energy input file based on tidal_energy_choice and resolution -------------------->
<!-------- arbic ------------>
<tidal_energy_file ocn_grid="gx1v6" tidal_energy_choice="'arbic'">'ocn/pop/gx1v6/forcing/tidal_mixing_arbic_gx1v6_20140221.temporary.nc'</tidal_energy_file>
<tidal_energy_file_fmt ocn_grid="gx1v6" tidal_energy_choice="'arbic'">'nc'</tidal_energy_file_fmt>
<!-------- jayne ------------>
<tidal_energy_file ocn_grid="gx3v7" tidal_energy_choice="'jayne'">'ocn/pop/gx3v7/forcing/tidal_energy_gx3v7_20100107.ieeer8' </tidal_energy_file>
<tidal_energy_file_fmt ocn_grid="gx3v7" tidal_energy_choice="'jayne'">'bin' </tidal_energy_file_fmt>
<tidal_energy_file ocn_grid="gx1v6" tidal_energy_choice="'jayne'">'ocn/pop/gx1v6/forcing/tidal_energy_gx1v6_20090205.ieeer8' </tidal_energy_file>
<tidal_energy_file_fmt ocn_grid="gx1v6" tidal_energy_choice="'jayne'">'bin' </tidal_energy_file_fmt>
<tidal_energy_file ocn_grid="gx1v7" tidal_energy_choice="'jayne'">'ocn/pop/gx1v6/forcing/tidal_energy_gx1v6_20090205.ieeer8' </tidal_energy_file>
<tidal_energy_file_fmt ocn_grid="gx1v7" tidal_energy_choice="'jayne'">'bin' </tidal_energy_file_fmt>
<tidal_energy_file ocn_grid="tx0.1v3" tidal_energy_choice="'jayne'">'ocn/pop/tx0.1v3/forcing/tidal_energy_tx01v3_conserve_180304.ieeer8' </tidal_energy_file>
<tidal_energy_file_fmt ocn_grid="tx0.1v3" tidal_energy_choice="'jayne'">'bin' </tidal_energy_file_fmt>
<!-------- ER03 ------------>
<tidal_energy_file ocn_grid="gx1v6" tidal_energy_choice="'ER03'">'ocn/pop/gx1v6/forcing/tidal_constituents.ER03.20140225.nc'</tidal_energy_file>
<tidal_energy_file_fmt ocn_grid="gx1v6" tidal_energy_choice="'ER03'">'nc'</tidal_energy_file_fmt>
<!-------- 3D Green and Nycander 2013 -------------------->
<tidal_energy_file ocn_grid="gx1v6" tidal_energy_choice="'GN13'">'ocn/pop/gx1v6/forcing/tidal_constituents.GN13.20141027.nc'</tidal_energy_file>
<tidal_energy_file_fmt ocn_grid="gx1v6" tidal_energy_choice="'GN13'">'nc'</tidal_energy_file_fmt>
<!-------- LGM0 Wilmes -------------------->
<tidal_energy_file ocn_grid="gx1v6" tidal_energy_choice="'LGM0'">'ocn/pop/gx1v6/forcing/tidal_constituents.LGM.00kyrBP.20170927.nc'</tidal_energy_file>
<tidal_energy_file_fmt ocn_grid="gx1v6" tidal_energy_choice="'LGM0'">'nc'</tidal_energy_file_fmt>
<!--------LGMi5g21 Wilmes -------------------->
<tidal_energy_file ocn_grid="gx1v6" tidal_energy_choice="'LGMi5g21'">'ocn/pop/gx1v6/forcing/tidal_constituents.LGM.21kyrBP.i5g.20170927.nc'</tidal_energy_file>
<tidal_energy_file_fmt ocn_grid="gx1v6" tidal_energy_choice="'LGMi5g21'">'nc'</tidal_energy_file_fmt>
<!-------- LGMi6g21 Wilmes -------------------->
<tidal_energy_file ocn_grid="gx1v6" tidal_energy_choice="'LGMi6g21'">'ocn/pop/gx1v6/forcing/tidal_constituents.LGM.21kyrBP.i6g.20170927.nc</tidal_energy_file>
<tidal_energy_file_fmt ocn_grid="gx1v6" tidal_energy_choice="'LGMi6g21'">'nc'</tidal_energy_file_fmt>
<!-------- polzin input file gx1v6 only -------------------->
<tidal_vars_file_polz ocn_grid="gx1v6">'ocn/pop/gx1v6/forcing/tidal_energy_gx1v6_polzin.noatt.20170302.nc'</tidal_vars_file_polz>
<tidal_vars_file_fmt_polz>'nc'</tidal_vars_file_fmt_polz>
<!-------- lunar cycle -------------------->
<tidal_energy_ts_calendar >'365'</tidal_energy_ts_calendar>
<tidal_energy_ts_model_yr_align>1</tidal_energy_ts_model_yr_align>
<tidal_energy_ts_data_first_year >1948</tidal_energy_ts_data_first_year>
<tidal_energy_ts_data_first_month>1 </tidal_energy_ts_data_first_month>
<tidal_energy_ts_data_first_day >1 </tidal_energy_ts_data_first_day>
<tidal_energy_ts_data_final_year >2009</tidal_energy_ts_data_final_year>
<tidal_energy_ts_data_final_month>1 </tidal_energy_ts_data_final_month>
<tidal_energy_ts_data_final_day >2 </tidal_energy_ts_data_final_day>
<tidal_energy_ts_files(1)>'ocn/pop/gx1v6/forcing/tidal_lunar_m2modul_nodalTOmonth.20141028.txt'</tidal_energy_ts_files(1)>
<tidal_energy_ts_files(2)>'ocn/pop/gx1v6/forcing/tidal_lunar_s2modul_nodalTOmonth.20141028.txt'</tidal_energy_ts_files(2)>
<tidal_energy_ts_files(3)>'ocn/pop/gx1v6/forcing/tidal_lunar_k1modul_nodalTOmonth.20141028.txt'</tidal_energy_ts_files(3)>
<tidal_energy_ts_files(4)>'ocn/pop/gx1v6/forcing/tidal_lunar_o1modul_nodalTOmonth.20141028.txt' </tidal_energy_ts_files(4)>
<tidal_energy_ts_file_fmt >'ascii'</tidal_energy_ts_file_fmt>
<!-------- other -------------------->
<tidal_eps_n2>1.0e-8</tidal_eps_n2>
<tidal_mix_max>100.0</tidal_mix_max>
<tidal_mixing_method_choice>'jayne'</tidal_mixing_method_choice>
<tidal_mixing_efficiency>0.2</tidal_mixing_efficiency>
<tidal_vert_decay_option_schm>'SSJ02'</tidal_vert_decay_option_schm>
<vertical_decay_scale>500.0e02</vertical_decay_scale>
<!---------------------------->
<!-- vmix_kpp_nml -->
<!---------------------------->
<lcvmix>.true.</lcvmix>
<lcvmix ocn_onedim="TRUE">.true.</lcvmix>
<linertial>.false.</linertial>
<Prandtl>10.0</Prandtl>
<lrich>.true.</lrich>
<ldbl_diff>.true.</ldbl_diff>
<lshort_wave>.true.</lshort_wave>
<lcheckekmo>.false.</lcheckekmo>
<larctic_bckgrnd_vdc>.false.</larctic_bckgrnd_vdc>
<num_v_smooth_Ri>1</num_v_smooth_Ri>
<bckgrnd_vdc_linv>4.5e-05</bckgrnd_vdc_linv>
<!--QL, 150526, langmuir mixing parameterization option-->
<langmuir_opt comp_wav="swav">'null'</langmuir_opt>
<langmuir_opt>'vr12-ma'</langmuir_opt>
<lhoriz_varying_bckgrnd ocn_grid="gx3v7" >.true.</lhoriz_varying_bckgrnd>
<lhoriz_varying_bckgrnd ocn_grid="gx3v7" ocn_onedim="TRUE">.false.</lhoriz_varying_bckgrnd>
<lhoriz_varying_bckgrnd ocn_grid="gx1v6" >.true.</lhoriz_varying_bckgrnd>
<lhoriz_varying_bckgrnd ocn_grid="gx1v6" ocn_onedim="TRUE">.false.</lhoriz_varying_bckgrnd>
<lhoriz_varying_bckgrnd ocn_grid="gx1v7" >.true.</lhoriz_varying_bckgrnd>
<lhoriz_varying_bckgrnd ocn_grid="gx1v7" ocn_onedim="TRUE">.false.</lhoriz_varying_bckgrnd>
<lhoriz_varying_bckgrnd ocn_grid="tx1v1" >.false.</lhoriz_varying_bckgrnd>
<lhoriz_varying_bckgrnd ocn_grid="tx0.1v2">.false.</lhoriz_varying_bckgrnd>
<lhoriz_varying_bckgrnd ocn_grid="tx0.1v3">.false.</lhoriz_varying_bckgrnd>
<bckgrnd_vdc_dpth ocn_grid="gx1v6" >1000.0e02</bckgrnd_vdc_dpth>
<bckgrnd_vdc_dpth ocn_grid="gx1v7" >1000.0e02</bckgrnd_vdc_dpth>
<bckgrnd_vdc_dpth ocn_grid="gx3v7" >1000.0e02</bckgrnd_vdc_dpth>
<bckgrnd_vdc_dpth ocn_grid="tx1v1" >2500.0e02</bckgrnd_vdc_dpth>
<bckgrnd_vdc_dpth ocn_grid="tx0.1v2">2500.0e02</bckgrnd_vdc_dpth>
<bckgrnd_vdc_dpth ocn_grid="tx0.1v3">2500.0e02</bckgrnd_vdc_dpth>
<bckgrnd_vdc1 ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".true." ltidal_mixing=".true." >0.16</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".true." ltidal_mixing=".true." >0.0</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".true." >0.16</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".true." >0.0</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".false.">0.524</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".false.">0.313</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".true." ltidal_mixing=".true." >0.16</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".true." ltidal_mixing=".true." >0.0</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".true." >0.16</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".true." >0.0</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".false.">0.524</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".false.">0.313</bckgrnd_vdc2>
#... .true., .false. defaults are missing... not straightforward to define
<bckgrnd_vdc1 ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".true." ltidal_mixing=".true." >0.16</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".true." ltidal_mixing=".true." >0.0</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".true." >0.16</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".true." >0.0</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".false.">0.524</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".false.">0.313</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="tx1v1" lhoriz_varying_bckgrnd=".false." >0.55</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="tx1v1" lhoriz_varying_bckgrnd=".false." >0.303615</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="tx0.1v2" lhoriz_varying_bckgrnd=".false." >0.55</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="tx0.1v2" lhoriz_varying_bckgrnd=".false." >0.303615</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="tx0.1v3" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".true." >0.1</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="tx0.1v3" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".true." >0.0</bckgrnd_vdc2>
<bckgrnd_vdc1 ocn_grid="tx0.1v3" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".false." >0.55</bckgrnd_vdc1>
<bckgrnd_vdc2 ocn_grid="tx0.1v3" lhoriz_varying_bckgrnd=".false." ltidal_mixing=".false." >0.303615</bckgrnd_vdc2>
<bckgrnd_vdc_eq ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".true." >0.01</bckgrnd_vdc_eq>
<bckgrnd_vdc_psim ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".true." >0.13</bckgrnd_vdc_psim>
<bckgrnd_vdc_ban ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".true." >1.0</bckgrnd_vdc_ban>
<bckgrnd_vdc_eq ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".false.">0.0</bckgrnd_vdc_eq>
<bckgrnd_vdc_psim ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".false.">0.0</bckgrnd_vdc_psim>
<bckgrnd_vdc_ban ocn_grid="gx3v7" lhoriz_varying_bckgrnd=".false.">0.0</bckgrnd_vdc_ban>
<bckgrnd_vdc_eq ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".true." >0.01</bckgrnd_vdc_eq>
<bckgrnd_vdc_psim ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".true." >0.13</bckgrnd_vdc_psim>
<bckgrnd_vdc_ban ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".true." >1.0</bckgrnd_vdc_ban>
<bckgrnd_vdc_eq ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".false.">0.0</bckgrnd_vdc_eq>
<bckgrnd_vdc_psim ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".false.">0.0</bckgrnd_vdc_psim>
<bckgrnd_vdc_ban ocn_grid="gx1v6" lhoriz_varying_bckgrnd=".false.">0.0</bckgrnd_vdc_ban>
<bckgrnd_vdc_eq ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".true." >0.01</bckgrnd_vdc_eq>
<bckgrnd_vdc_psim ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".true." >0.13</bckgrnd_vdc_psim>
<bckgrnd_vdc_ban ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".true." >1.0</bckgrnd_vdc_ban>
<bckgrnd_vdc_eq ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".false.">0.0</bckgrnd_vdc_eq>
<bckgrnd_vdc_psim ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".false.">0.0</bckgrnd_vdc_psim>
<bckgrnd_vdc_ban ocn_grid="gx1v7" lhoriz_varying_bckgrnd=".false.">0.0</bckgrnd_vdc_ban>
<bckgrnd_vdc_eq ocn_grid="tx1v1" >0.0</bckgrnd_vdc_eq>
<bckgrnd_vdc_psim ocn_grid="tx1v1" >0.0</bckgrnd_vdc_psim>
<bckgrnd_vdc_ban ocn_grid="tx1v1" >0.0</bckgrnd_vdc_ban>
<bckgrnd_vdc_eq ocn_grid="tx0.1v2" >0.0</bckgrnd_vdc_eq>
<bckgrnd_vdc_psim ocn_grid="tx0.1v2" >0.0</bckgrnd_vdc_psim>
<bckgrnd_vdc_ban ocn_grid="tx0.1v2" >0.0</bckgrnd_vdc_ban>
<bckgrnd_vdc_eq ocn_grid="tx0.1v3" >0.0</bckgrnd_vdc_eq>
<bckgrnd_vdc_psim ocn_grid="tx0.1v3" >0.0</bckgrnd_vdc_psim>
<bckgrnd_vdc_ban ocn_grid="tx0.1v3" >0.0</bckgrnd_vdc_ban>
<!---------------------------->
<!-- advect_nml -->
<!---------------------------->
<tadvect_ctype ocn_grid="gx3v7" >upwind3</tadvect_ctype>
<tadvect_ctype ocn_grid="gx1v6" >upwind3</tadvect_ctype>
<tadvect_ctype ocn_grid="gx1v7" >upwind3</tadvect_ctype>
<tadvect_ctype ocn_grid="tx1v1" >centered</tadvect_ctype>
<tadvect_ctype ocn_grid="tx0.1v2">centered</tadvect_ctype>
<tadvect_ctype ocn_grid="tx0.1v3">centered</tadvect_ctype>
<!---------------------------->
<!-- hmix_nml -->
<!---------------------------->
<hmix_momentum_choice ocn_grid="gx3v7" >'anis'</hmix_momentum_choice>
<hmix_momentum_choice ocn_grid="gx1v6" >'anis'</hmix_momentum_choice>
<hmix_momentum_choice ocn_grid="gx1v7" >'anis'</hmix_momentum_choice>
<hmix_momentum_choice ocn_grid="tx1v1" >'del4'</hmix_momentum_choice>
<hmix_momentum_choice ocn_grid="tx0.1v2">'del4'</hmix_momentum_choice>
<hmix_momentum_choice ocn_grid="tx0.1v3">'del4'</hmix_momentum_choice>
<hmix_tracer_choice ocn_grid="gx3v7" >'gent'</hmix_tracer_choice>
<hmix_tracer_choice ocn_grid="gx1v6" >'gent'</hmix_tracer_choice>
<hmix_tracer_choice ocn_grid="gx1v7" >'gent'</hmix_tracer_choice>
<hmix_tracer_choice ocn_grid="tx1v1" >'del4'</hmix_tracer_choice>
<hmix_tracer_choice ocn_grid="tx0.1v2" >'del4'</hmix_tracer_choice>
<hmix_tracer_choice ocn_grid="tx0.1v3" >'del4'</hmix_tracer_choice>
<lsubmesoscale_mixing ocn_grid="gx3v7" >.true.</lsubmesoscale_mixing>
<lsubmesoscale_mixing ocn_grid="gx1v6" >.true.</lsubmesoscale_mixing>
<lsubmesoscale_mixing ocn_grid="gx1v7" >.true.</lsubmesoscale_mixing>
<lsubmesoscale_mixing ocn_grid="tx1v1" >.false.</lsubmesoscale_mixing>
<lsubmesoscale_mixing ocn_grid="tx0.1v2">.false.</lsubmesoscale_mixing>
<lsubmesoscale_mixing ocn_grid="tx0.1v3">.false.</lsubmesoscale_mixing>
<!---------------------------->
<!-- hmix_gm_aniso_nml -->
<!---------------------------->
<isoonly >.false.</isoonly>
<kdir_type_choice >shear</kdir_type_choice>
<kdir_type_choice isoonly="TRUE" >flow</kdir_type_choice>
<krat_type_choice >shear</krat_type_choice>
<krat_type_choice isoonly="TRUE" >simple</krat_type_choice>
<kmin_type_choice >simple</kmin_type_choice>
<savenewtavgs isoonly="TRUE" >.false.</savenewtavgs>
<addrandfluc >.false.</addrandfluc>
<cflmajoronly >.true.</cflmajoronly>
<cflmult >0.175</cflmult>
<erat_const >5.0</erat_const>
<erat_const isoonly="TRUE" >1.0</erat_const>
<erat_factor >0.0</erat_factor>
<erat_factor kmin_type_choice="simple" >0.0</erat_factor>
<isominoronly >.true.</isominoronly>
<minorfactor >1.0</minorfactor>
<savenewtavgs >.true.</savenewtavgs>
<shrdispfac >0.05066</shrdispfac>
<simpsubcells >.false.</simpsubcells>
<vertdiffhere >.false.</vertdiffhere>
<!-------------------------------------------------------------->
<!-- enhanced diffusivity at depth, only default for 1 degree -->
<!-- until validated at other resolutions -->
<!-------------------------------------------------------------->
<kappa_thic_deep >0.1</kappa_thic_deep>
<kappa_isop_deep >0.1</kappa_isop_deep>
<kappa_isop_deep ocn_grid="gx1v6" >0.2</kappa_isop_deep>
<kappa_isop_deep ocn_grid="gx1v7" >0.2</kappa_isop_deep>
<!---------------------------->
<!-- hmix_gm_nml -->
<!---------------------------->
<kappa_isop_choice ocn_grid="gx3v7" >bfre</kappa_isop_choice>
<kappa_isop_choice ocn_grid="gx1v6" >bfre</kappa_isop_choice>
<kappa_isop_choice ocn_grid="gx1v7" >bfre</kappa_isop_choice>
<kappa_isop_choice ocn_grid="tx1v1" >bfre</kappa_isop_choice>
<kappa_isop_choice ocn_grid="tx0.1v2">bfre</kappa_isop_choice>
<kappa_isop_choice ocn_grid="tx0.1v3">bfre</kappa_isop_choice>
<kappa_thic_choice ocn_grid="gx3v7" >bfre</kappa_thic_choice>
<kappa_thic_choice ocn_grid="gx1v6" >bfre</kappa_thic_choice>
<kappa_thic_choice ocn_grid="gx1v7" >bfre</kappa_thic_choice>
<kappa_thic_choice ocn_grid="tx1v1" >bfre</kappa_thic_choice>
<kappa_thic_choice ocn_grid="tx0.1v2">bfre</kappa_thic_choice>
<kappa_thic_choice ocn_grid="tx0.1v3">bfre</kappa_thic_choice>
<diag_gm_bolus ocn_grid="gx3v7" >.true.</diag_gm_bolus>
<diag_gm_bolus ocn_grid="gx1v6" >.true.</diag_gm_bolus>
<diag_gm_bolus ocn_grid="gx1v7" >.true.</diag_gm_bolus>
<diag_gm_bolus ocn_grid="gx3v7" ocn_onedim="TRUE">.false.</diag_gm_bolus>
<diag_gm_bolus ocn_grid="gx1v6" ocn_onedim="TRUE">.false.</diag_gm_bolus>
<diag_gm_bolus ocn_grid="gx1v7" ocn_onedim="TRUE">.false.</diag_gm_bolus>
<diag_gm_bolus ocn_grid="tx1v1" >.false.</diag_gm_bolus>
<diag_gm_bolus ocn_grid="tx0.1v2">.false.</diag_gm_bolus>
<diag_gm_bolus ocn_grid="tx0.1v3">.false.</diag_gm_bolus>
<use_const_ah_bkg_srfbl>.true.</use_const_ah_bkg_srfbl>
<use_const_ah_bkg_srfbl kappa_isop_choice="edgr" kappa_thic_choice="edgr" >.false.</use_const_ah_bkg_srfbl>
<ah_bolus kappa_isop_choice="edgr" kappa_thic_choice="edgr" >1.0</ah_bolus>
<ah_bolus ocn_grid="gx3v7" kappa_isop_choice="constant" kappa_thic_choice="constant">0.87e7</ah_bolus>
<ah_bolus ocn_grid="gx3v7" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >4.0e7</ah_bolus>
<ah_bolus ocn_grid="gx3v7" kappa_isop_choice="steer" kappa_thic_choice="steer" >4.0e7</ah_bolus>
<ah_bolus ocn_grid="gx1v6" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >3.0e7</ah_bolus>
<ah_bolus ocn_grid="gx1v6" kappa_isop_choice="steer" kappa_thic_choice="steer" >3.0e7</ah_bolus>
<ah_bolus ocn_grid="gx1v6" kappa_isop_choice="constant" kappa_thic_choice="constant">0.6e7</ah_bolus>
<ah_bolus ocn_grid="gx1v7" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >3.0e7</ah_bolus>
<ah_bolus ocn_grid="gx1v7" kappa_isop_choice="steer" kappa_thic_choice="steer" >3.0e7</ah_bolus>
<ah_bolus ocn_grid="gx1v7" kappa_isop_choice="constant" kappa_thic_choice="constant">0.6e7</ah_bolus>
<ah_bolus ocn_grid="tx1v1" kappa_isop_choice="constant" kappa_thic_choice="constant">0.6e7</ah_bolus>
<ah_bolus ocn_grid="tx1v1" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >3.0e7</ah_bolus>
<ah_bolus ocn_grid="tx1v1" kappa_isop_choice="steer" kappa_thic_choice="steer" >3.0e7</ah_bolus>
<ah_bolus ocn_grid="tx0.1v2" kappa_isop_choice="constant" kappa_thic_choice="constant">0.6e7</ah_bolus>
<ah_bolus ocn_grid="tx0.1v2" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >3.0e7</ah_bolus>
<ah_bolus ocn_grid="tx0.1v2" kappa_isop_choice="steer" kappa_thic_choice="steer" >3.0e7</ah_bolus>
<ah_bolus ocn_grid="tx0.1v3" kappa_isop_choice="constant" kappa_thic_choice="constant">0.6e7</ah_bolus>
<ah_bolus ocn_grid="tx0.1v3" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >3.0e7</ah_bolus>
<ah_bolus ocn_grid="tx0.1v3" kappa_isop_choice="steer" kappa_thic_choice="steer" >3.0e7</ah_bolus>
<ah_bkg_srfbl kappa_isop_choice="edgr" kappa_thic_choice="edgr" >1.0</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="gx3v7" kappa_isop_choice="constant" kappa_thic_choice="constant">0.87e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="gx3v7" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >4.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="gx3v7" kappa_isop_choice="steer" kappa_thic_choice="steer" >4.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="gx1v6" kappa_isop_choice="constant" kappa_thic_choice="constant">0.6e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="gx1v6" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >3.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="gx1v6" kappa_isop_choice="steer" kappa_thic_choice="steer" >3.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="gx1v7" kappa_isop_choice="constant" kappa_thic_choice="constant">0.6e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="gx1v7" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >3.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="gx1v7" kappa_isop_choice="steer" kappa_thic_choice="steer" >3.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="tx1v1" kappa_isop_choice="constant" kappa_thic_choice="constant">0.6e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="tx1v1" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >3.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="tx1v1" kappa_isop_choice="steer" kappa_thic_choice="steer" >3.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="tx0.1v2" kappa_isop_choice="constant" kappa_thic_choice="constant">0.6e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="tx0.1v2" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >3.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="tx0.1v2" kappa_isop_choice="steer" kappa_thic_choice="steer" >3.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="tx0.1v3" kappa_isop_choice="constant" kappa_thic_choice="constant">0.6e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="tx0.1v3" kappa_isop_choice="bfre" kappa_thic_choice="bfre" >3.0e7</ah_bkg_srfbl>
<ah_bkg_srfbl ocn_grid="tx0.1v3" kappa_isop_choice="steer" kappa_thic_choice="steer" >3.0e7</ah_bkg_srfbl>
<kappa_freq_choice>once_a_day</kappa_freq_choice>
<slope_control_choice>notanh</slope_control_choice>
<kappa_depth_1>1.0</kappa_depth_1>
<kappa_depth_2>0.0</kappa_depth_2>
<kappa_depth_scale>150000.0</kappa_depth_scale>
<ah_bkg_bottom>0.0</ah_bkg_bottom>
<slm_r>0.3</slm_r>
<slm_b>0.3</slm_b>
<transition_layer_on>.true.</transition_layer_on>
<read_n2_data>.false.</read_n2_data>
<buoyancy_freq_fmt>nc</buoyancy_freq_fmt>
<const_eg>1.2</const_eg>
<gamma_eg>500.0</gamma_eg>
<kappa_min_eg>0.35e7</kappa_min_eg>
<kappa_max_eg>2.0e7</kappa_max_eg>
<!---------------------------->
<!-- mix_submeso_nml -->
<!---------------------------->
<efficiency_factor>0.07</efficiency_factor>
<time_scale_constant>8.64e4</time_scale_constant>
<luse_const_horiz_len_scale>.false.</luse_const_horiz_len_scale>
<hor_length_scale>5.0e5</hor_length_scale>
<!---------------------------->
<!-- hmix_aniso_nml -->
<!---------------------------->
<hmix_alignment_choice ocn_grid="gx3v7"> grid</hmix_alignment_choice>
<lvariable_hmix_aniso ocn_grid="gx3v7">.true.</lvariable_hmix_aniso>
<lsmag_aniso ocn_grid="gx3v7">.false.</lsmag_aniso>
<visc_para ocn_grid="gx3v7">1.0</visc_para>
<visc_perp ocn_grid="gx3v7">1.0</visc_perp>
<c_para ocn_grid="gx3v7">0.0</c_para>
<c_perp ocn_grid="gx3v7">0.0</c_perp>
<u_para ocn_grid="gx3v7">0.0</u_para>
<u_perp ocn_grid="gx3v7">0.0</u_perp>
<vconst_1 ocn_grid="gx3v7">1.0e7</vconst_1>
<vconst_2 ocn_grid="gx3v7">24.5</vconst_2>
<vconst_3 ocn_grid="gx3v7">0.2</vconst_3>
<vconst_4 ocn_grid="gx3v7">1.0e-8</vconst_4>
<vconst_5 ocn_grid="gx3v7">3</vconst_5>
<vconst_6 ocn_grid="gx3v7">1.0e7</vconst_6>
<vconst_7 ocn_grid="gx3v7">90.0</vconst_7>
<hmix_alignment_choice ocn_grid="gx1v6">east</hmix_alignment_choice>
<lvariable_hmix_aniso ocn_grid="gx1v6">.true.</lvariable_hmix_aniso>
<lsmag_aniso ocn_grid="gx1v6">.false.</lsmag_aniso>
<visc_para ocn_grid="gx1v6">50.0e7</visc_para>
<visc_perp ocn_grid="gx1v6">50.0e7</visc_perp>
<c_para ocn_grid="gx1v6">8.0</c_para>
<c_perp ocn_grid="gx1v6">8.0</c_perp>
<u_para ocn_grid="gx1v6">5.0</u_para>
<u_perp ocn_grid="gx1v6">5.0</u_perp>
<vconst_1 ocn_grid="gx1v6">0.6e7</vconst_1>
<vconst_2 ocn_grid="gx1v6">0.5</vconst_2>
<vconst_3 ocn_grid="gx1v6">0.16</vconst_3>
<vconst_4 ocn_grid="gx1v6">2.e-8</vconst_4>
<vconst_5 ocn_grid="gx1v6">3</vconst_5>
<vconst_6 ocn_grid="gx1v6">0.6e7</vconst_6>
<vconst_7 ocn_grid="gx1v6">45.0</vconst_7>
<hmix_alignment_choice ocn_grid="gx1v7">east</hmix_alignment_choice>
<lvariable_hmix_aniso ocn_grid="gx1v7">.true.</lvariable_hmix_aniso>
<lsmag_aniso ocn_grid="gx1v7">.false.</lsmag_aniso>
<visc_para ocn_grid="gx1v7">50.0e7</visc_para>
<visc_perp ocn_grid="gx1v7">50.0e7</visc_perp>
<c_para ocn_grid="gx1v7">8.0</c_para>
<c_perp ocn_grid="gx1v7">8.0</c_perp>
<u_para ocn_grid="gx1v7">5.0</u_para>
<u_perp ocn_grid="gx1v7">5.0</u_perp>
<vconst_1 ocn_grid="gx1v7">0.6e7</vconst_1>
<vconst_2 ocn_grid="gx1v7">0.5</vconst_2>
<vconst_3 ocn_grid="gx1v7">0.16</vconst_3>
<vconst_4 ocn_grid="gx1v7">2.e-8</vconst_4>
<vconst_5 ocn_grid="gx1v7">3</vconst_5>
<vconst_6 ocn_grid="gx1v7">0.6e7</vconst_6>
<vconst_7 ocn_grid="gx1v7">45.0</vconst_7>
<hmix_alignment_choice ocn_grid="tx1v1"> east</hmix_alignment_choice>
<lvariable_hmix_aniso ocn_grid="tx1v1">.true.</lvariable_hmix_aniso>
<lsmag_aniso ocn_grid="tx1v1">.false.</lsmag_aniso>
<visc_para ocn_grid="tx1v1">50.0e7</visc_para>
<visc_perp ocn_grid="tx1v1">50.0e7</visc_perp>
<c_para ocn_grid="tx1v1">8.0</c_para>
<c_perp ocn_grid="tx1v1">8.0</c_perp>
<u_para ocn_grid="tx1v1">5.0</u_para>
<u_perp ocn_grid="tx1v1">5.0</u_perp>
<vconst_1 ocn_grid="tx1v1">0.6e7</vconst_1>
<vconst_2 ocn_grid="tx1v1">0.5</vconst_2>
<vconst_3 ocn_grid="tx1v1">0.16</vconst_3>
<vconst_4 ocn_grid="tx1v1">2.e-8</vconst_4>
<vconst_5 ocn_grid="tx1v1">3</vconst_5>
<vconst_6 ocn_grid="tx1v1">0.6e7</vconst_6>
<vconst_7 ocn_grid="tx1v1">45.0</vconst_7>
<hmix_alignment_choice ocn_grid="tx0.1v2"> east</hmix_alignment_choice>
<lvariable_hmix_aniso ocn_grid="tx0.1v2">.true.</lvariable_hmix_aniso>
<lsmag_aniso ocn_grid="tx0.1v2">.false.</lsmag_aniso>
<visc_para ocn_grid="tx0.1v2">50.0e7</visc_para>
<visc_perp ocn_grid="tx0.1v2">50.0e7</visc_perp>
<c_para ocn_grid="tx0.1v2">8.0</c_para>
<c_perp ocn_grid="tx0.1v2">8.0</c_perp>
<u_para ocn_grid="tx0.1v2">5.0</u_para>
<u_perp ocn_grid="tx0.1v2">5.0</u_perp>
<vconst_1 ocn_grid="tx0.1v2">0.6e7</vconst_1>
<vconst_2 ocn_grid="tx0.1v2">0.5</vconst_2>
<vconst_3 ocn_grid="tx0.1v2">0.16</vconst_3>
<vconst_4 ocn_grid="tx0.1v2">2.e-8</vconst_4>
<vconst_5 ocn_grid="tx0.1v2">3</vconst_5>
<vconst_6 ocn_grid="tx0.1v2">0.6e7</vconst_6>
<vconst_7 ocn_grid="tx0.1v2">45.0</vconst_7>
<hmix_alignment_choice ocn_grid="tx0.1v3"> east</hmix_alignment_choice>
<lvariable_hmix_aniso ocn_grid="tx0.1v3">.true.</lvariable_hmix_aniso>
<lsmag_aniso ocn_grid="tx0.1v3">.false.</lsmag_aniso>
<visc_para ocn_grid="tx0.1v3">50.0e7</visc_para>
<visc_perp ocn_grid="tx0.1v3">50.0e7</visc_perp>
<c_para ocn_grid="tx0.1v3">8.0</c_para>
<c_perp ocn_grid="tx0.1v3">8.0</c_perp>
<u_para ocn_grid="tx0.1v3">5.0</u_para>
<u_perp ocn_grid="tx0.1v3">5.0</u_perp>
<vconst_1 ocn_grid="tx0.1v3">0.6e7</vconst_1>
<vconst_2 ocn_grid="tx0.1v3">0.5</vconst_2>
<vconst_3 ocn_grid="tx0.1v3">0.16</vconst_3>
<vconst_4 ocn_grid="tx0.1v3">2.e-8</vconst_4>
<vconst_5 ocn_grid="tx0.1v3">3</vconst_5>
<vconst_6 ocn_grid="tx0.1v3">0.6e7</vconst_6>
<vconst_7 ocn_grid="tx0.1v3">45.0</vconst_7>
<smag_lat>20.0</smag_lat>
<smag_lat_fact>0.98</smag_lat_fact>
<smag_lat_gauss>98.0</smag_lat_gauss>
<var_viscosity_infile>ccsm-internal</var_viscosity_infile>
<var_viscosity_infile_fmt>'bin'</var_viscosity_infile_fmt>
<var_viscosity_outfile_fmt>'nc'</var_viscosity_outfile_fmt>
<!---------------------------->
<!-- state_nml -->
<!---------------------------->
<state_choice>'mwjf'</state_choice>
<state_file>'internal'</state_file>
<state_range_opt>'enforce'</state_range_opt>
<state_range_freq>100000</state_range_freq>
<!---------------------------->
<!-- baroclinic_nml -->
<!---------------------------->
<reset_to_freezing>.false.</reset_to_freezing>
<!---------------------------->
<!-- ice_nml -->
<!---------------------------->
<ice_freq_opt>'coupled'</ice_freq_opt>
<ice_freq>100000</ice_freq>
<kmxice>1</kmxice>
<lactive_ice>.true.</lactive_ice>
<lactive_ice ocn_ice_forcing="inactive">.false.</lactive_ice>
<licecesm2>.true.</licecesm2>
<!---------------------------->
<!-- pressure_grad_nml -->
<!---------------------------->
<lpressure_avg>.true.</lpressure_avg>
<lbouss_correct>.false.</lbouss_correct>
<!---------------------------->
<!-- topostress_nml -->
<!---------------------------->
<ltopostress>.false.</ltopostress>
<nsmooth_topo>0</nsmooth_topo>
<!---------------------------->
<!-- damping_nml -->
<!---------------------------->
<ldamp_uv>.false.</ldamp_uv>
<ldamp_uv ocn_onedim="TRUE">.true.</ldamp_uv>
<!---------------------------->
<!-- forcing_ws_nml -->
<!---------------------------->
<ws_data_renorm>10., 19*1.</ws_data_renorm>
<ws_data_type>'none'</ws_data_type>
<ws_data_inc>24.</ws_data_inc>
<ws_interp_freq>'every-timestep'</ws_interp_freq>
<ws_interp_type>'linear'</ws_interp_type>
<ws_interp_inc>72.</ws_interp_inc>
<ws_filename>'unknown-ws'</ws_filename>
<ws_file_fmt>'bin'</ws_file_fmt>
<!---------------------------->
<!-- forcing_shf_nml -->
<!---------------------------->
<shf_formulation>restoring</shf_formulation>
<shf_formulation ocn_coupling="partial">partially-coupled</shf_formulation>
<shf_data_type>none</shf_data_type>
<shf_data_type ocn_coupling="partial">monthly</shf_data_type>
<luse_cpl_ifrac>.false.</luse_cpl_ifrac>
<luse_cpl_ifrac ocn_coupling="partial">.true.</luse_cpl_ifrac>
<shf_data_renorm(3)>0.94</shf_data_renorm(3)>
<shf_data_inc>24.</shf_data_inc>
<shf_interp_freq>'every-timestep'</shf_interp_freq>
<shf_interp_type>'linear'</shf_interp_type>
<shf_interp_inc>72.</shf_interp_inc>
<shf_restore_tau>30.</shf_restore_tau>
<shf_file_fmt>'bin'</shf_file_fmt>
<shf_weak_restore>0.0</shf_weak_restore>
<shf_weak_restore ocn_onedim="TRUE">0.0</shf_weak_restore>
<shf_strong_restore>0.0</shf_strong_restore>
<shf_strong_restore ocn_onedim="TRUE">0.0</shf_strong_restore>
<shf_strong_restore_ms>92.64</shf_strong_restore_ms>
<shf_strong_restore_ms ocn_onedim="TRUE">0.0</shf_strong_restore_ms>
<shf_filename ocn_grid="gx3v7" >ocn/pop/gx3v7/forcing/shf_20090831.ieeer8</shf_filename>
<shf_filename ocn_grid="gx1v6" >ocn/pop/gx1v6/forcing/shf_mm_all_85-88_20010308.ieeer8</shf_filename>
<shf_filename ocn_grid="gx1v7" >ocn/pop/gx1v6/forcing/shf_mm_all_85-88_20010308.ieeer8</shf_filename>
<shf_filename ocn_grid="tx1v1" >ocn/pop/tx1v1/forcing/shf_mm_all_85-88_20080505.ieeer8</shf_filename>
<shf_filename ocn_grid="tx0.1v2">ocn/pop/tx0.1v2/forcing/shf_20100318.ieeer8</shf_filename>
<shf_filename ocn_grid="tx0.1v3">ocn/pop/tx0.1v2/forcing/shf_20100318.ieeer8</shf_filename>
<!---------------------------->
<!-- forcing_sfwf_nml -->
<!---------------------------->
<sfwf_formulation>restoring</sfwf_formulation>
<sfwf_formulation ocn_coupling="partial">partially-coupled</sfwf_formulation>
<sfwf_data_type>none</sfwf_data_type>
<sfwf_data_type ocn_coupling="partial">monthly</sfwf_data_type>
<ladjust_precip>.false.</ladjust_precip>
<ladjust_precip ocn_onedim="TRUE">.false.</ladjust_precip>
<ladjust_precip ocn_coupling="partial">.true.</ladjust_precip>
<lms_balance>.true.</lms_balance>
<lms_balance ocn_onedim="TRUE">.false.</lms_balance>
<lms_balance ocn_coupling="partial">.false.</lms_balance>
<lsend_precip_fact>.false.</lsend_precip_fact>
<lsend_precip_fact ocn_onedim="TRUE">.false.</lsend_precip_fact>
<lsend_precip_fact ocn_coupling="partial">.true.</lsend_precip_fact>
<sfwf_data_inc>24.</sfwf_data_inc>
<sfwf_interp_freq>'every-timestep'</sfwf_interp_freq>
<sfwf_interp_type>'linear'</sfwf_interp_type>
<sfwf_interp_inc>72.</sfwf_interp_inc>
<sfwf_restore_tau>30.</sfwf_restore_tau>
<sfwf_file_fmt>'bin'</sfwf_file_fmt>
<sfwf_strong_restore>0.0</sfwf_strong_restore>
<sfwf_strong_restore ocn_onedim="TRUE">0.0</sfwf_strong_restore>
<sfwf_strong_restore_ms>0.6648</sfwf_strong_restore_ms>
<sfwf_strong_restore_ms ocn_onedim="TRUE">0.0</sfwf_strong_restore_ms>
<lfw_as_salt_flx>.true.</lfw_as_salt_flx>
<sfwf_data_renorm>0.001, 19*1.</sfwf_data_renorm>
<sfwf_filename ocn_grid="gx3v7" >ocn/pop/gx3v7/forcing/sfwf_mm_PHC2_salx_flxio_20090831.ieeer8</sfwf_filename>
<sfwf_filename ocn_grid="gx1v6" >ocn/pop/gx1v6/forcing/sfwf_mm_PHC2_salx_flxio_20090205.ieeer8</sfwf_filename>
<sfwf_filename ocn_grid="gx1v7" >ocn/pop/gx1v7/forcing/sfwf_mm_WOA13v2_salx_flxio_gx1v7_20170706.ieeer8</sfwf_filename>
<sfwf_filename ocn_grid="tx1v1" >ocn/pop/tx1v1/forcing/sfwf_mm_PHC2_salx_flxio_20080502.ieeer8</sfwf_filename>
<sfwf_filename ocn_grid="tx0.1v2">ocn/pop/tx0.1v2/forcing/sfwf_mm_PHC2_salx_flxio_20100323.ieeer8</sfwf_filename>
<sfwf_filename ocn_grid="tx0.1v3">ocn/pop/tx0.1v3/forcing/sfwf_mm_WOA13v2_salx_flxio_tx0.1v2_20180321.ieeer8</sfwf_filename>
<sfwf_weak_restore ocn_grid="gx3v7" >0.0115</sfwf_weak_restore>
<sfwf_weak_restore ocn_grid="gx3v7" ocn_onedim="TRUE">0.0</sfwf_weak_restore>
<sfwf_weak_restore ocn_grid="gx1v6" >0.0115</sfwf_weak_restore>
<sfwf_weak_restore ocn_grid="gx1v6" ocn_onedim="TRUE">0.0</sfwf_weak_restore>
<sfwf_weak_restore ocn_grid="gx1v7" >0.046</sfwf_weak_restore>
<sfwf_weak_restore ocn_grid="gx1v7" ocn_onedim="TRUE">0.0</sfwf_weak_restore>
<sfwf_weak_restore ocn_grid="tx1v1" >0.0115</sfwf_weak_restore>
<sfwf_weak_restore ocn_grid="tx0.1v2">0.0115</sfwf_weak_restore>
<sfwf_weak_restore ocn_grid="tx0.1v3">0.046</sfwf_weak_restore>
<precip_fact_const>1.0</precip_fact_const>
<!---------------------------->
<!-- forcing_pt_interior_nml-->
<!---------------------------->
<pt_interior_data_renorm>20*1.</pt_interior_data_renorm>
<pt_interior_data_type>'none'</pt_interior_data_type>
<pt_interior_data_inc>24.</pt_interior_data_inc>
<pt_interior_interp_freq>'every-timestep'</pt_interior_interp_freq>
<pt_interior_interp_type>'linear'</pt_interior_interp_type>
<pt_interior_interp_inc>72.</pt_interior_interp_inc>
<pt_interior_restore_tau>365.</pt_interior_restore_tau>
<pt_interior_filename>'unknown-pt_interior'</pt_interior_filename>
<pt_interior_file_fmt>'bin'</pt_interior_file_fmt>
<pt_interior_restore_max_level>0</pt_interior_restore_max_level>
<pt_interior_formulation>'restoring'</pt_interior_formulation>
<pt_interior_variable_restore>.false.</pt_interior_variable_restore>
<pt_interior_restore_filename>'unknown-pt_interior_restore'</pt_interior_restore_filename>
<pt_interior_restore_file_fmt>'bin'</pt_interior_restore_file_fmt>
<pt_interior_surface_restore>.false.</pt_interior_surface_restore>
<pt_interior_surface_restore ocn_onedim="TRUE">.true.</pt_interior_surface_restore>
<pt_interior_shr_stream_year_first>1</pt_interior_shr_stream_year_first>
<pt_interior_shr_stream_year_last>1</pt_interior_shr_stream_year_last>
<pt_interior_shr_stream_year_align>1</pt_interior_shr_stream_year_align>
<pt_interior_shr_stream_file> 'unknown-pt_interior_shr_stream'</pt_interior_shr_stream_file>
<!---------------------------->
<!--forcing_s_interior_nml -->
<!---------------------------->
<s_interior_data_renorm>20*1.</s_interior_data_renorm>
<s_interior_data_type>none</s_interior_data_type>
<s_interior_data_inc>24.</s_interior_data_inc>
<s_interior_interp_freq>every-timestep</s_interior_interp_freq>
<s_interior_interp_type>linear</s_interior_interp_type>