-
Notifications
You must be signed in to change notification settings - Fork 1
/
ini_parms.F
executable file
·1427 lines (1366 loc) · 56 KB
/
ini_parms.F
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
C $Header: /u/gcmpack/MITgcm/model/src/ini_parms.F,v 1.262 2014/11/13 20:04:17 jmc Exp $
C $Name: checkpoint65g $
#include "PACKAGES_CONFIG.h"
#include "CPP_OPTIONS.h"
#ifdef ALLOW_EXCH2
# include "W2_OPTIONS.h"
#endif /* ALLOW_EXCH2 */
C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
CBOP
C !ROUTINE: INI_PARMS
C !INTERFACE:
SUBROUTINE INI_PARMS( myThid )
C !DESCRIPTION:
C Routine to load model "parameters" from parameter file "data"
C !USES:
IMPLICIT NONE
#include "SIZE.h"
#include "EEPARAMS.h"
#include "PARAMS.h"
#ifdef ALLOW_EXCH2
# include "W2_EXCH2_SIZE.h"
# include "W2_EXCH2_TOPOLOGY.h"
#endif /* ALLOW_EXCH2 */
#include "EOS.h"
#include "SET_GRID.h"
C !INPUT/OUTPUT PARAMETERS:
C myThid :: Number of this instance of INI_PARMS
INTEGER myThid
C !LOCAL VARIABLES:
C dxSpacing, dySpacing :: Default spacing in X and Y.
C :: Units are that of coordinate system
C :: i.e. cartesian => metres
C :: s. polar => degrees
C SadournyCoriolis :: for backward compatibility
C deltaTtracer :: Timestep for tracer equations ( s )
C forcing_In_AB :: flag to put all forcings (Temp,Salt,Tracers,Momentum)
C :: contribution in (or out of) Adams-Bashforth time stepping.
C goptCount :: Used to count the nuber of grid options (only one is allowed!)
C msgBuf :: Informational/error message buffer
C errIO :: IO error flag
C errCount :: error counter (inconsitent params and other errors)
C iUnit :: Work variable for IO unit number
C k, i, j :: Loop counters
C xxxDefault :: Default value for variable xxx
_RL dxSpacing
_RL dySpacing
_RL deltaTtracer
CHARACTER*(MAX_LEN_MBUF) msgBuf
LOGICAL SadournyCoriolis
LOGICAL forcing_In_AB
INTEGER goptCount
INTEGER gridNx, gridNy
INTEGER k, i, j, iUnit
INTEGER errIO, errCount
C Default values for variables which have vertical coordinate system
C dependency.
_RL viscArDefault
_RL diffKrTDefault
_RL diffKrSDefault
_RL hFacMinDrDefault
_RL delRDefault(Nr)
C zCoordInputData :: Variables used to select between different coordinate systems.
C pCoordInputData :: The vertical coordinate system in the rest of the model is
C rCoordInputData :: written in terms of r. In the model "data" file input data
C coordsSet :: can be interms of z, p or r.
C :: e.g. delZ or delP or delR for the vertical grid spacing.
C :: The following rules apply:
C :: All parameters must use the same vertical coordinate system.
C :: e.g. delZ and viscAz is legal but
C :: delZ and viscAr is an error.
C :: Similarly specifying delZ and delP is an error.
C :: zCoord..., pCoord..., rCoord... are used to flag when
C :: z, p or r are used.
C :: coordsSet counts how many vertical coordinate systems have
C :: been used to specify variables. coordsSet > 1 is an error.
C vertSetCount :: to count number of vertical array elements which are set.
C specifiedDiffKrT :: internal flag, true when any diffK[r,z,p,Nr]T is specified
C specifiedDiffKrS :: internal flag, true when any diffK[r,z,p,Nr]S is specified
LOGICAL zCoordInputData
LOGICAL pCoordInputData
LOGICAL rCoordInputData
INTEGER coordsSet
INTEGER vertSetCount
LOGICAL specifiedDiffKrT, specifiedDiffKrS
C Variables which have vertical coordinate system dependency.
C delZ :: Vertical grid spacing ( m ).
C delP :: Vertical grid spacing ( Pa ).
C viscAz :: Eddy viscosity coeff. for mixing of momentum vertically ( m^2/s )
C viscAp :: Eddy viscosity coeff. for mixing of momentum vertically ( Pa^2/s )
C diffKzT :: Laplacian diffusion coeff. for mixing of heat vertically ( m^2/s )
C diffKpT :: Laplacian diffusion coeff. for mixing of heat vertically ( Pa^2/s )
C diffKzS :: Laplacian diffusion coeff. for mixing of salt vertically ( m^2/s )
C diffKpS :: Laplacian diffusion coeff. for mixing of salt vertically ( Pa^2/s )
_RL delZ(Nr)
_RL delP(Nr)
_RL viscAz
_RL viscAp
_RL viscAr
_RL diffKzT
_RL diffKpT
_RL diffKrT
_RL diffKzS
_RL diffKpS
_RL diffKrS
C Retired main data file parameters. Kept here to trap use of old data files.
C nRetired :: Counter used to trap gracefully namelists containing "retired"
C :: parameters. These are parameters that are either no-longer used
C or that have moved to a different input file and/or namelist.
C Namelist PARM01:
C useConstantF :: Coriolis coeff set to f0 (replaced by selectCoriMap=0)
C useBetaPlaneF :: Coriolis coeff = f0 + beta.y (replaced by selectCoriMap=1)
C useSphereF :: Coriolis = 2.omega.sin(phi) (replaced by selectCoriMap=2)
C tracerAdvScheme :: tracer advection scheme (old passive tracer code)
C trac_EvPrRn :: tracer conc. in Rain & Evap (old passive tracer code)
C saltDiffusion :: diffusion of salinity on/off (flag not used)
C tempDiffusion :: diffusion of temperature on/off (flag not used)
C zonal_filt_lat :: Moved to package "zonal_filt"
C gravitySign :: direction of gravity relative to R direction
C :: (removed from namelist and set according to z/p coordinate)
C viscAstrain :: replaced by standard viscosity coeff & useStrainTensionVisc
C viscAtension :: replaced by standard viscosity coeff & useStrainTensionVisc
C useAnisotropicViscAgridMax :: Changed to be default behavior. Can
C use old method by setting useAreaViscLength=.true.
C usePickupBeforeC35 :: to restart from old-pickup files (generated with code
C from before checkpoint-35, Feb 08, 2001): disabled (Jan 2007)
C debugMode :: to print debug msg. now read from parameter file eedata
C allowInteriorFreezing :: Allow water at depth to freeze and rise to the surface
C (replaced by pkg/frazil)
C useOldFreezing :: use the old version (before checkpoint52a_pre, 2003-11-12)
C Namelist PARM03:
C tauThetaClimRelax3Dim :: replaced by pkg/rbcs (3.D Relaxation B.Cs)
C tauSaltClimRelax3Dim :: replaced by pkg/rbcs (3.D Relaxation B.Cs)
C calendarDumps :: moved to package "cal" (calendar)
C Namelist PARM04:
C groundAtK1 :: put the surface(k=1) at the ground (replaced by usingPCoords)
C rkFac :: removed from namelist ; replaced by -rkSign
C thetaMin :: unfortunate variable name ; replaced by xgOrigin
C phiMin :: unfortunate variable name ; replaced by ygOrigin
C Namelist PARM05:
C shelfIceFile :: File containing the topography of the shelfice draught
C (replaced by SHELFICEtopoFile in SHELFICE.h)
C dQdTfile :: File containing thermal relaxation coefficient
INTEGER nRetired
LOGICAL useConstantF, useBetaPlaneF, useSphereF
LOGICAL tempDiffusion, saltDiffusion
INTEGER tracerAdvScheme
_RL trac_EvPrRn
_RL zonal_filt_lat, gravitySign
_RL viscAstrain, viscAtension
LOGICAL useAnisotropicViscAgridMax
LOGICAL usePickupBeforeC35
LOGICAL saveDebugMode
LOGICAL allowInteriorFreezing, useOldFreezing
C-
_RL tauThetaClimRelax3Dim, tauSaltClimRelax3Dim
LOGICAL calendarDumps
C-
LOGICAL groundAtK1
_RL rkFac
_RL thetaMin, phiMin
CHARACTER*(MAX_LEN_FNAM) shelfIceFile
CHARACTER*(MAX_LEN_FNAM) dQdTfile
C-- Continuous equation parameters
NAMELIST /PARM01/
& gravitySign, nh_Am2,
& gravity, gBaro, rhonil, tAlpha, sBeta,
& selectCoriMap, f0, beta, fPrime, omega, rotationPeriod,
& viscAh, viscAhW, viscAhMax,
& viscAhGrid, viscAhGridMax, viscAhGridMin,
& viscC2leith, viscC4leith, smag3D_coeff, useSmag3D,
& useFullLeith, useAnisotropicViscAgridMax, useStrainTensionVisc,
& useAreaViscLength,
& viscC2leithD, viscC4leithD, viscC2smag, viscC4smag,
& viscAhD, viscAhZ, viscA4D, viscA4Z,
& viscA4, viscA4W,
& viscA4Max, viscA4Grid, viscA4GridMax, viscA4GridMin,
& viscA4ReMax, viscAhReMax,
& cosPower, viscAstrain, viscAtension,
& diffKhT, diffK4T, diffKhS, diffK4S,
& tRef, sRef, tRefFile, sRefFile, rhoRefFile,
& tidalVelocity, tidalFreq, yGravity, yCoriolis,constVelocity,
& eosType, integr_GeoPot, selectFindRoSurf, tauLD,
& HeatCapacity_Cp, celsius2K, atm_Cp, atm_Rd, atm_Rq, atm_Po,
& no_slip_sides, sideDragFactor,
& no_slip_bottom, bottomDragLinear, bottomDragQuadratic,
& momViscosity, momAdvection, momForcing, useCoriolis,
& useConstantF, useBetaPlaneF, useSphereF, use3dCoriolis,
& momPressureForcing, metricTerms, vectorInvariantMomentum,
& tempDiffusion, tempAdvection, tempForcing, addFrictionHeating,
& saltDiffusion, saltAdvection, saltForcing,
& implicSurfPress, implicDiv2Dflow, implicitNHPress,
& implicitFreeSurface, rigidLid, freeSurfFac,
& hFacMin, hFacMinDz, hFacMinDp, hFacMinDr,
& exactConserv, linFSConserveTr, uniformLin_PhiSurf,
& nonlinFreeSurf, hFacInf, hFacSup, select_rStar,
& nonHydrostatic, selectNHfreeSurf, quasiHydrostatic,
& implicitIntGravWave, staggerTimeStep, doResetHFactors,
& tempStepping, saltStepping, momStepping,
& implicitDiffusion, implicitViscosity,
& tempImplVertAdv, saltImplVertAdv, momImplVertAdv,
& viscAz, diffKzT, diffKzS, viscAp, diffKpT, diffKpS,
& viscAr, diffKrT, diffKrS, viscArNr, diffKrNrT, diffKrNrS,
& diffKr4T, diffKr4S, BL79LatVary,
& diffKrBL79surf, diffKrBL79deep, diffKrBL79scl, diffKrBL79Ho,
& diffKrBLEQsurf, diffKrBLEQdeep, diffKrBLEQscl, diffKrBLEQHo,
& rhoConst, thetaConst, rhoConstFresh, buoyancyRelation,
& writeBinaryPrec, readBinaryPrec, writeStatePrec,
& globalFiles, useSingleCpuIO, useSingleCpuInput,
& allowFreezing, allowInteriorFreezing, useOldFreezing, ivdc_kappa,
& hMixCriteria, dRhoSmall, hMixSmooth,
& usePickupBeforeC35, usePickupBeforeC54, debugMode, debugLevel,
& tempAdvScheme, tempVertAdvScheme,
& saltAdvScheme, saltVertAdvScheme, tracerAdvScheme,
& multiDimAdvection, useEnergyConservingCoriolis,
& useCDscheme, useJamartWetPoints, useJamartMomAdv, useNHMTerms,
& selectVortScheme, upwindVorticity, highOrderVorticity,
& SadournyCoriolis, useAbsVorticity, upwindShear, selectKEscheme,
& selectAddFluid, useRealFreshWaterFlux, convertFW2Salt,
& temp_EvPrRn, salt_EvPrRn, trac_EvPrRn,
& temp_addMass, salt_addMass, zonal_filt_lat,
& smoothAbsFuncRange,
& balanceEmPmR, balanceQnet, balancePrintMean,
& balanceThetaClimRelax, balanceSaltClimRelax
C-- Elliptic solver parameters
NAMELIST /PARM02/
& cg2dMaxIters, cg2dChkResFreq, cg2dUseMinResSol,
& cg2dTargetResidual, cg2dTargetResWunit,
& cg2dpcOffDFac, cg2dPreCondFreq,
& cg3dMaxIters, cg3dChkResFreq, cg3dTargetResidual,
& useSRCGSolver, printResidualFreq
C-- Time stepping parammeters
NAMELIST /PARM03/
& nIter0, nTimeSteps, nEndIter,
& baseTime, startTime, endTime,
& deltaT, deltaTClock, deltaTMom,
& deltaTtracer, dTtracerLev, deltaTFreeSurf,
& forcing_In_AB, momForcingOutAB, tracForcingOutAB,
& momDissip_In_AB, doAB_onGtGs,
& abEps, alph_AB, beta_AB, startFromPickupAB2,
& tauCD, rCD, epsAB_CD, cAdjFreq,
& chkPtFreq, pChkPtFreq, pickupSuff, pickupStrictlyMatch,
& writePickupAtEnd,
& dumpFreq, dumpInitAndLast, adjDumpFreq, taveFreq, tave_lastIter,
& diagFreq, monitorFreq, adjMonitorFreq, monitorSelect,
& outputTypesInclusive,
& tauThetaClimRelax, tauSaltClimRelax, latBandClimRelax,
& tauThetaClimRelax3Dim, tauSaltClimRelax3Dim,
& periodicExternalForcing, externForcingPeriod, externForcingCycle,
& calendarDumps
C-- Gridding parameters
NAMELIST /PARM04/
& usingCartesianGrid, usingCylindricalGrid,
& usingSphericalPolarGrid, usingCurvilinearGrid,
& xgOrigin, ygOrigin, dxSpacing, dySpacing,
& delX, delY, delXFile, delYFile, horizGridFile,
& phiEuler, thetaEuler, psiEuler,
& rSphere, radius_fromHorizGrid, deepAtmosphere,
& selectSigmaCoord, rSigmaBnd, hybSigmFile,
& Ro_SeaLevel, delZ, delP, delR, delRc, delRFile, delRcFile,
& rkFac, groundAtK1, thetaMin, phiMin
C-- Input files
NAMELIST /PARM05/
& bathyFile, topoFile, addWwallFile, addSwallFile, shelfIceFile,
& diffKrFile, viscAhDfile, viscAhZfile, viscA4Dfile, viscA4Zfile,
& hydrogThetaFile, hydrogSaltFile, tauLDmaskFile,
& maskIniTemp, maskIniSalt, checkIniTemp, checkIniSalt,
& zonalWindFile, meridWindFile,
& thetaClimFile, saltClimFile,
& surfQfile, surfQnetFile, surfQswFile, EmPmRfile, saltFluxFile,
& lambdaThetaFile, lambdaSaltFile,
& uVelInitFile, vVelInitFile, pSurfInitFile,
& dQdTFile, ploadFile, addMassFile, tCylIn, tCylOut,
& eddyPsiXFile, eddyPsiYFile, geothermalFile,
& mdsioLocalDir, adTapeDir,
& the_run_name
CEOP
#ifdef ALLOW_EXCH2
gridNx = exch2_mydNx(1)
gridNy = exch2_mydNy(1)
#else /* ALLOW_EXCH2 */
gridNx = Nx
gridNy = Ny
#endif /* ALLOW_EXCH2 */
_BEGIN_MASTER(myThid)
C Defaults values for input parameters
CALL SET_DEFAULTS(
O viscArDefault, diffKrTDefault, diffKrSDefault,
O hFacMinDrDefault, delRDefault,
I myThid )
SadournyCoriolis = .FALSE.
C-- Initialise "which vertical coordinate system used" flags.
zCoordInputData = .FALSE.
pCoordInputData = .FALSE.
rCoordInputData = .FALSE.
coordsSet = 0
C-- Initialise retired parameters to unlikely value
nRetired = 0
useConstantF = .FALSE.
useBetaPlaneF = .FALSE.
useSphereF = .TRUE.
tempDiffusion = .TRUE.
saltDiffusion = .TRUE.
tracerAdvScheme = UNSET_I
trac_EvPrRn = UNSET_RL
zonal_filt_lat = UNSET_RL
gravitySign = UNSET_RL
viscAstrain = UNSET_RL
viscAtension = UNSET_RL
useAnisotropicViscAgridMax=.TRUE.
usePickupBeforeC35 = .FALSE.
saveDebugMode = debugMode
allowInteriorFreezing = .FALSE.
useOldFreezing = .FALSE.
tauThetaClimRelax3Dim = UNSET_RL
tauSaltClimRelax3Dim = UNSET_RL
calendarDumps = .FALSE.
rkFac = UNSET_RL
groundAtK1 = .FALSE.
thetaMin = UNSET_RL
phiMin = UNSET_RL
shelfIceFile = ' '
dQdTFile = ' '
C-- Open the parameter file
WRITE(msgBuf,'(A)')
& ' INI_PARMS: opening model parameter file "data"'
CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
& SQUEEZE_RIGHT, myThid )
CALL OPEN_COPY_DATA_FILE( 'data', 'INI_PARMS',
O iUnit, myThid )
C-- Read settings from iUnit (= a copy of model parameter file "data").
errIO = 0
errCount = 0
C-- Set default "physical" parameters
viscAhW = UNSET_RL
viscA4W = UNSET_RL
viscAhD = UNSET_RL
viscAhZ = UNSET_RL
viscA4D = UNSET_RL
viscA4Z = UNSET_RL
viscAz = UNSET_RL
viscAp = UNSET_RL
viscAr = UNSET_RL
diffKzT = UNSET_RL
diffKpT = UNSET_RL
diffKrT = UNSET_RL
diffKzS = UNSET_RL
diffKpS = UNSET_RL
diffKrS = UNSET_RL
hFacMinDr = UNSET_RL
hFacMinDz = UNSET_RL
hFacMinDp = UNSET_RL
tAlpha = UNSET_RL
sBeta = UNSET_RL
implicitNHPress = UNSET_RL
tempVertAdvScheme = 0
saltVertAdvScheme = 0
C-- z,p,r coord input switching.
WRITE(msgBuf,'(A)') ' INI_PARMS ; starts to read PARM01'
CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
& SQUEEZE_RIGHT, myThid )
READ(UNIT=iUnit,NML=PARM01) !,IOSTAT=errIO)
IF ( errIO .LT. 0 ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: Error reading model parameter file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A)') 'S/R INI_PARMS: Problem in namelist PARM01'
CALL PRINT_ERROR( msgBuf, myThid )
STOP 'ABNORMAL END: S/R INI_PARMS'
ELSE
WRITE(msgBuf,'(A)') ' INI_PARMS ; read PARM01 : OK'
CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
& SQUEEZE_RIGHT, myThid )
ENDIF
C- set the type of vertical coordinate and type of fluid
C according to buoyancyRelation
usingPCoords = .FALSE.
usingZCoords = .FALSE.
fluidIsAir = .FALSE.
fluidIsWater = .FALSE.
IF ( buoyancyRelation.EQ.'ATMOSPHERIC' ) THEN
usingPCoords = .TRUE.
fluidIsAir = .TRUE.
ELSEIF ( buoyancyRelation.EQ.'OCEANICP') THEN
usingPCoords = .TRUE.
fluidIsWater = .TRUE.
ELSEIF ( buoyancyRelation.EQ.'OCEANIC' ) THEN
usingZCoords = .TRUE.
fluidIsWater = .TRUE.
ELSE
WRITE(msgBuf,'(2A)') 'S/R INI_PARMS:',
& ' Bad value of buoyancyRelation '
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
IF ( .NOT.rigidLid .AND.
& .NOT.implicitFreeSurface ) THEN
C- No barotropic solver selected => use implicitFreeSurface as default
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: No request for barotropic solver'
CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
& SQUEEZE_RIGHT, myThid )
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: => Use implicitFreeSurface as default'
CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
& SQUEEZE_RIGHT, myThid )
implicitFreeSurface = .TRUE.
ENDIF
IF ( implicitFreeSurface ) freeSurfFac = 1. _d 0
IF ( rigidLid ) freeSurfFac = 0. _d 0
IF ( gBaro .EQ. UNSET_RL ) gBaro=gravity
IF ( rhoConst .EQ. UNSET_RL ) rhoConst=rhoNil
IF ( rhoConstFresh .EQ. UNSET_RL ) rhoConstFresh=rhoConst
IF ( implicitNHPress.EQ.UNSET_RL )
& implicitNHPress = implicSurfPress
IF ( omega .EQ. UNSET_RL ) THEN
omega = 0. _d 0
IF ( rotationPeriod .NE. 0. _d 0 )
& omega = 2. _d 0 * PI / rotationPeriod
ELSEIF ( omega .EQ. 0. _d 0 ) THEN
rotationPeriod = 0. _d 0
ELSE
rotationPeriod = 2. _d 0 * PI / omega
ENDIF
IF ( atm_Rd .EQ. UNSET_RL ) THEN
atm_Rd = atm_Cp * atm_kappa
ELSE
atm_kappa = atm_Rd / atm_Cp
ENDIF
C-- Non-hydrostatic/quasi-hydrostatic
IF (nonHydrostatic.AND.quasiHydrostatic) THEN
WRITE(msgBuf,'(A)')
& 'Illegal: both nonHydrostatic = quasiHydrostatic = TRUE'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
C-- Advection and Forcing for Temp and salt
IF (tempVertAdvScheme.EQ.0) tempVertAdvScheme = tempAdvScheme
IF (saltVertAdvScheme.EQ.0) saltVertAdvScheme = saltAdvScheme
C-- horizontal viscosity (acting on Divergence or Vorticity)
IF ( viscAhD .EQ. UNSET_RL ) viscAhD = viscAh
IF ( viscAhZ .EQ. UNSET_RL ) viscAhZ = viscAh
IF ( viscA4D .EQ. UNSET_RL ) viscA4D = viscA4
IF ( viscA4Z .EQ. UNSET_RL ) viscA4Z = viscA4
C-- horizontal viscosity for vertical moments
IF ( viscAhW .EQ. UNSET_RL ) viscAhW = viscAhD
IF ( viscA4W .EQ. UNSET_RL ) viscA4W = viscA4D
C-- z,p,r coord input switching.
IF ( viscAz .NE. UNSET_RL ) zCoordInputData = .TRUE.
IF ( viscAp .NE. UNSET_RL ) pCoordInputData = .TRUE.
IF ( viscAr .NE. UNSET_RL ) rCoordInputData = .TRUE.
IF ( viscAr .EQ. UNSET_RL ) viscAr = viscAz
IF ( viscAr .EQ. UNSET_RL ) viscAr = viscAp
vertSetCount = 0
DO k=1,Nr
IF ( viscArNr(k).NE.UNSET_RL ) vertSetCount = vertSetCount + 1
ENDDO
IF ( vertSetCount.GT.0 .AND. vertSetCount.LT.Nr ) THEN
WRITE(msgBuf,'(A,2(I5,A))') 'S/R INI_PARMS: Partial setting (',
& vertSetCount, ' /', Nr, ') of viscArNr is not allowed'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
IF ( viscAr .EQ. UNSET_RL ) THEN
viscAr = viscArDefault
ELSEIF ( vertSetCount.GT.0 ) THEN
WRITE(msgBuf,'(2A)') 'S/R INI_PARMS: Cannot set both ',
& 'viscArNr and viscAr (or Ap,Az) in param file data'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
IF ( vertSetCount.EQ.0 ) THEN
DO k=1,Nr
viscArNr(k) = viscAr
ENDDO
ENDIF
IF ( diffKzT .NE. UNSET_RL ) zCoordInputData = .TRUE.
IF ( diffKpT .NE. UNSET_RL ) pCoordInputData = .TRUE.
IF ( diffKrT .NE. UNSET_RL ) rCoordInputData = .TRUE.
IF ( diffKrT .EQ. UNSET_RL ) diffKrT = diffKzT
IF ( diffKrT .EQ. UNSET_RL ) diffKrT = diffKpT
vertSetCount = 0
DO k=1,Nr
IF ( diffKrNrT(k).NE.UNSET_RL ) vertSetCount = vertSetCount + 1
ENDDO
IF ( vertSetCount.GT.0 .AND. vertSetCount.LT.Nr ) THEN
WRITE(msgBuf,'(A,2(I5,A))') 'S/R INI_PARMS: Partial setting (',
& vertSetCount, ' /', Nr, ') of diffKrNrT is not allowed'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
specifiedDiffKrT = vertSetCount.EQ.Nr
IF ( diffKrT .EQ. UNSET_RL ) THEN
diffKrT = diffKrTDefault
ELSEIF ( vertSetCount.GT.0 ) THEN
WRITE(msgBuf,'(2A)') 'S/R INI_PARMS: Cannot set both ',
& 'diffKrNrT and diffKrT (or Kp,Kz) in param file data'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ELSE
specifiedDiffKrT = .TRUE.
ENDIF
IF ( vertSetCount.EQ.0 ) THEN
DO k=1,Nr
diffKrNrT(k) = diffKrT
ENDDO
ENDIF
IF ( diffKzS .NE. UNSET_RL ) zCoordInputData = .TRUE.
IF ( diffKpS .NE. UNSET_RL ) pCoordInputData = .TRUE.
IF ( diffKrS .NE. UNSET_RL ) rCoordInputData = .TRUE.
IF ( diffKrS .EQ. UNSET_RL ) diffKrS = diffKzS
IF ( diffKrS .EQ. UNSET_RL ) diffKrS = diffKpS
vertSetCount = 0
DO k=1,Nr
IF ( diffKrNrS(k).NE.UNSET_RL ) vertSetCount = vertSetCount + 1
ENDDO
IF ( vertSetCount.GT.0 .AND. vertSetCount.LT.Nr ) THEN
WRITE(msgBuf,'(A,2(I5,A))') 'S/R INI_PARMS: Partial setting (',
& vertSetCount, ' /', Nr, ') of diffKrNrS is not allowed'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
specifiedDiffKrS = vertSetCount.EQ.Nr
IF ( diffKrS .EQ. UNSET_RL ) THEN
diffKrS = diffKrSDefault
ELSEIF ( vertSetCount.GT.0 ) THEN
WRITE(msgBuf,'(2A)') 'S/R INI_PARMS: Cannot set both ',
& 'diffKrNrS and diffKrS (or Kp,Kz) in param file data'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ELSE
specifiedDiffKrS = .TRUE.
ENDIF
IF ( vertSetCount.EQ.0 ) THEN
DO k=1,Nr
diffKrNrS(k) = diffKrS
ENDDO
ENDIF
IF (diffKrBLEQsurf .EQ. UNSET_RL) diffKrBLEQsurf = diffKrBL79surf
IF (diffKrBLEQdeep .EQ. UNSET_RL) diffKrBLEQdeep = diffKrBL79deep
IF (diffKrBLEQscl .EQ. UNSET_RL) diffKrBLEQscl = diffKrBL79scl
IF (diffKrBLEQHo .EQ. UNSET_RL) diffKrBLEQHo = diffKrBL79Ho
IF ( hFacMinDz .NE. UNSET_RL ) zCoordInputData = .TRUE.
IF ( hFacMinDp .NE. UNSET_RL ) pCoordInputData = .TRUE.
IF ( hFacMinDr .NE. UNSET_RL ) rCoordInputData = .TRUE.
IF ( hFacMinDr .EQ. UNSET_RL ) hFacMinDr = hFacMinDz
IF ( hFacMinDr .EQ. UNSET_RL ) hFacMinDr = hFacMinDp
IF ( hFacMinDr .EQ. UNSET_RL ) hFacMinDr = hFacMinDrDefault
IF (convertFW2Salt.EQ.UNSET_RL) THEN
convertFW2Salt = 35.
IF (useRealFreshWaterFlux) convertFW2Salt=-1
IF ( selectAddFluid.GE.1 ) convertFW2Salt=-1
ENDIF
IF ( SadournyCoriolis ) THEN
C-- for backward compatibility :
IF ( selectVortScheme.EQ.UNSET_I ) selectVortScheme = 2
IF ( selectVortScheme.NE.2 ) THEN
WRITE(msgBuf,'(A,I5,A)')
& 'S/R INI_PARMS: selectVortScheme=', selectVortScheme,
& ' conflicts with "SadournyCoriolis"'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
ENDIF
IF ( ivdc_kappa.NE.zeroRL .AND. .NOT.implicitDiffusion ) THEN
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: To use ivdc_kappa you must enable implicit',
& ' vertical diffusion.'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
coordsSet = 0
IF ( zCoordInputData ) coordsSet = coordsSet + 1
IF ( pCoordInputData ) coordsSet = coordsSet + 1
IF ( rCoordInputData ) coordsSet = coordsSet + 1
IF ( coordsSet .GT. 1 ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: Cannot mix z, p and r in the input data.'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
IF ( rhoConst .LE. 0. ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: rhoConst must be greater than 0.'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
recip_rhoConst = 1. _d 0
ELSE
recip_rhoConst = 1. _d 0 / rhoConst
ENDIF
IF ( eosType.EQ.'LINEAR' .AND. rhoNil.LE.0. ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: rhoNil must be greater than 0.'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
IF ( HeatCapacity_Cp .LE. 0. ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: HeatCapacity_Cp must be greater than 0.'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
IF ( gravity .LE. 0. ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: gravity must be greater than 0.'
C CALL PRINT_ERROR( msgBuf, myThid )
C errCount = errCount + 1
recip_gravity = 1. _d 0
ELSE
recip_gravity = 1. _d 0 / gravity
ENDIF
C- set default printResidualFreq according to debugLevel
printResidualFreq = 0
IF ( debugLevel.GE.debLevE ) printResidualFreq = 1
C- set useSingleCpuInput=.TRUE. if useSingleCpuIO==.TRUE.
IF ( useSingleCpuIO ) useSingleCpuInput=.TRUE.
C Check for retired parameters still being used
nRetired = 0
IF ( useConstantF ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "useConstantF" ',
& 'is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: set "selectCoriMap"',
& ' [0,1,2,3] to impose a setting over grid default'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( useBetaPlaneF ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "useBetaPlaneF" ',
& 'is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: set "selectCoriMap"',
& ' [0,1,2,3] to impose a setting over grid default'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( .NOT. useSphereF ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "useSphereF" ',
& 'is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: set "selectCoriMap"',
& ' [0,1,2,3] to impose a setting over grid default'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( zonal_filt_lat .NE. UNSET_RL ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: Paramater "zonal_filt_lat" is',
& ' no longer allowed in file "data".'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: Paramater "zonal_filt_lat" is',
& ' now read from file "data.zonfilt".'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( gravitySign .NE. UNSET_RL ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: "gravitySign" is set according to vertical ',
& ' coordinate and is no longer allowed in file "data".'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( tracerAdvScheme .NE. UNSET_I ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "tracerAdvScheme" ',
& '(old passive tracer code) is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( trac_EvPrRn .NE. UNSET_RL ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "trac_EvPrRn" ',
& '(old passive tracer code) is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( .NOT. tempDiffusion ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "tempDiffusion" ',
& 'is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: to turn off diffusion',
& ' => set diffusivity to zero'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( .NOT. saltDiffusion ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "saltDiffusion" ',
& 'is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: to turn off diffusion',
& ' => set diffusivity to zero'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( viscAstrain .NE. UNSET_RL ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: "viscAstrain" ',
& 'is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: to use Strain & Tension',
& ' formulation => set useStrainTensionVisc to TRUE'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( viscAtension .NE. UNSET_RL ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: "viscAtension" ',
& 'is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: to use Strain & Tension',
& ' formulation => set useStrainTensionVisc to TRUE'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( .NOT.useAnisotropicViscAgridMax ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: "useAnisotropicViscAgridMax" ',
& 'is not allowed in "data" substitute useAreaViscLength=true'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( usePickupBeforeC35 ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: "usePickupBeforeC35" ',
& 'is no longer supported & not longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( debugMode.NEQV.saveDebugMode ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: "debugMode" has been moved to "eedata"',
& ' and is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( allowInteriorFreezing ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: "allowInteriorFreezing" has been replaced',
& ' by pkg/frazil and is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( useOldFreezing ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "useOldFreezing" ',
& 'is no longer supported & not longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
C-- Elliptic solver parameters
WRITE(msgBuf,'(A)') ' INI_PARMS ; starts to read PARM02'
CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
& SQUEEZE_RIGHT, myThid )
READ(UNIT=iUnit,NML=PARM02) !,IOSTAT=errIO)
IF ( errIO .LT. 0 ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: Error reading model parameter file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A)') 'S/R INI_PARMS: Problem in namelist PARM02'
CALL PRINT_ERROR( msgBuf, myThid )
STOP 'ABNORMAL END: S/R INI_PARMS'
ELSE
WRITE(msgBuf,'(A)') ' INI_PARMS ; read PARM02 : OK'
CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
& SQUEEZE_RIGHT, myThid )
ENDIF
C-- Time stepping parameters
rCD = -1. _d 0
epsAB_CD = UNSET_RL
latBandClimRelax = UNSET_RL
deltaTtracer = 0. _d 0
forcing_In_AB = .TRUE.
WRITE(msgBuf,'(A)') ' INI_PARMS ; starts to read PARM03'
CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
& SQUEEZE_RIGHT, myThid )
READ(UNIT=iUnit,NML=PARM03) !,IOSTAT=errIO)
IF ( errIO .LT. 0 ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: Error reading model parameter file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A)') 'S/R INI_PARMS: Problem in namelist PARM03'
CALL PRINT_ERROR( msgBuf, myThid )
STOP 'ABNORMAL END: S/R INI_PARMS'
ELSE
WRITE(msgBuf,'(A)') ' INI_PARMS ; read PARM03 : OK'
CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
& SQUEEZE_RIGHT, myThid )
ENDIF
C Check for retired parameters still being used
IF ( tauThetaClimRelax3Dim .NE. UNSET_RL ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "tauThetaClimRelax3Dim" ',
& 'is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: 3-dim. relaxation code',
& ' has moved to separate pkg/rbcs.'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( tauSaltClimRelax3Dim .NE. UNSET_RL ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "tauSaltClimRelax3Dim" ',
& 'is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: 3-dim. relaxation code',
& ' has moved to separate pkg/rbcs.'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
IF ( calendarDumps ) THEN
nRetired = nRetired+1
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: "calendarDumps" ',
& 'is no longer allowed in file "data"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A,A)') 'S/R INI_PARMS: calendarDumps',
& ' has moved to "data.cal"'
CALL PRINT_ERROR( msgBuf, myThid )
ENDIF
C Process "timestepping" params
C o Time step size
IF ( deltaTtracer .NE. dTtracerLev(1) .AND.
& deltaTtracer .NE. 0. .AND. dTtracerLev(1) .NE. 0. ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: deltaTtracer & dTtracerLev(1) not equal'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ELSEIF ( dTtracerLev(1) .NE. 0. ) THEN
deltaTtracer = dTtracerLev(1)
ENDIF
IF ( deltaT .EQ. 0. ) deltaT = deltaTClock
IF ( deltaT .EQ. 0. ) deltaT = deltaTtracer
IF ( deltaT .EQ. 0. ) deltaT = deltaTMom
IF ( deltaT .EQ. 0. ) deltaT = deltaTFreeSurf
IF ( deltaT .EQ. 0. ) THEN
WRITE(msgBuf,'(2A)') 'S/R INI_PARMS: ',
& 'need to specify in file "data", namelist "PARM03"'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(2A)') 'S/R INI_PARMS: ',
& ' a model timestep (in s) deltaT or deltaTClock= ?'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
deltaT = 1.
ENDIF
IF ( deltaTMom .EQ. 0. ) deltaTMom = deltaT
IF ( deltaTtracer .EQ. 0. ) deltaTtracer = deltaT
IF ( deltaTClock .EQ. 0. ) deltaTClock = deltaT
DO k=1,Nr
IF (dTtracerLev(k).EQ.0.) dTtracerLev(k)= deltaTtracer
ENDDO
C Note that this line should set deltaFreesurf=deltaTtracer
C but this would change a lot of existing set-ups so we are
C obliged to set the default inappropriately.
C Be advised that when using asynchronous time stepping
C it is better to set deltaTreesurf=deltaTtracer
IF ( deltaTFreeSurf .EQ. 0. ) deltaTFreeSurf = deltaTMom
IF ( periodicExternalForcing ) THEN
IF ( externForcingCycle*externForcingPeriod .EQ. 0. ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: externForcingCycle,externForcingPeriod =0'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ELSEIF ( INT(externForcingCycle/externForcingPeriod) .NE.
& externForcingCycle/externForcingPeriod ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: externForcingCycle <> N*externForcingPeriod'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ELSEIF ( externForcingCycle.LT.externForcingPeriod ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: externForcingCycle < externForcingPeriod'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
IF ( externForcingPeriod.LT.deltaTClock ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: externForcingPeriod < deltaTClock'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
ENDIF
C o Adams-Bashforth time stepping:
IF ( momForcingOutAB .EQ. UNSET_I ) THEN
momForcingOutAB = 1
IF ( forcing_In_AB ) momForcingOutAB = 0
ENDIF
IF ( tracForcingOutAB .EQ. UNSET_I ) THEN
tracForcingOutAB = 1
IF ( forcing_In_AB ) tracForcingOutAB = 0
ENDIF
C o Convection frequency
IF ( cAdjFreq .LT. 0. ) THEN
cAdjFreq = deltaTClock
ENDIF
IF ( ivdc_kappa .NE. 0. .AND. cAdjFreq .NE. 0. ) THEN
WRITE(msgBuf,'(A,A)')
& 'S/R INI_PARMS: You have enabled both ivdc_kappa and',
& ' convective adjustment.'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
IF (useCDscheme) THEN
C o CD coupling (CD scheme):
IF ( tauCD .EQ. 0. _d 0 ) tauCD = deltaTMom
IF ( rCD .LT. 0. ) rCD = 1. _d 0 - deltaTMom/tauCD
IF ( epsAB_CD .EQ. UNSET_RL ) epsAB_CD = abEps
ENDIF
IF ( startTime.EQ.UNSET_RL .AND. nIter0.EQ.-1 ) THEN
C o set default value for start time & nIter0
startTime = baseTime
nIter0 = 0
ELSEIF ( startTime.EQ.UNSET_RL ) THEN
C o set start time from nIter0
startTime = baseTime + deltaTClock*float(nIter0)
ELSEIF ( nIter0.EQ.-1 ) THEN
C o set nIter0 from start time
nIter0 = NINT( (startTime-baseTime)/deltaTClock )
ELSEIF ( baseTime.EQ.0. ) THEN
C o set base time from the 2 others
baseTime = startTime - deltaTClock*float(nIter0)
ENDIF
C o nTimeSteps 1
IF ( nTimeSteps .EQ. 0 .AND. nEndIter .NE. 0 )
& nTimeSteps = nEndIter-nIter0
C o nTimeSteps 2
IF ( nTimeSteps .EQ. 0 .AND. endTime .NE. 0. )
& nTimeSteps = NINT((endTime-startTime)/deltaTClock)
C o nEndIter 1
IF ( nEndIter .EQ. 0 .AND. nTimeSteps .NE. 0 )
& nEndIter = nIter0+nTimeSteps
C o nEndIter 2
IF ( nEndIter .EQ. 0 .AND. endTime .NE. 0. )
& nEndIter = NINT((endTime-baseTime)/deltaTClock)
C o End Time 1
IF ( endTime .EQ. 0. .AND. nTimeSteps .NE. 0 )
& endTime = startTime + deltaTClock*float(nTimeSteps)
C o End Time 2
IF ( endTime .EQ. 0. .AND. nEndIter .NE. 0 )
& endTime = baseTime + deltaTClock*float(nEndIter)
C o Consistent?
IF ( startTime .NE. baseTime+deltaTClock*float(nIter0) ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: startTime, baseTime and nIter0 are inconsistent'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: Perhaps more than two were set at once'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
IF ( nEndIter .NE. nIter0+nTimeSteps ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: nIter0, nTimeSteps and nEndIter are inconsistent'
CALL PRINT_ERROR( msgBuf, myThid )
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: Perhaps more than two were set at once'
CALL PRINT_ERROR( msgBuf, myThid )
errCount = errCount + 1
ENDIF
IF ( nTimeSteps .NE. NINT((endTime-startTime)/deltaTClock)
& ) THEN
WRITE(msgBuf,'(A)')
& 'S/R INI_PARMS: both endTime and nTimeSteps have been set'
CALL PRINT_ERROR( msgBuf, myThid )