/[MITgcm]/MITgcm/pkg/thsice/thsice_readparms.F
ViewVC logotype

Diff of /MITgcm/pkg/thsice/thsice_readparms.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.4 by jmc, Sat Dec 4 00:19:32 2004 UTC revision 1.11 by jmc, Wed Apr 4 02:11:35 2007 UTC
# Line 26  C     === Global variables === Line 26  C     === Global variables ===
26  #include "PARAMS.h"  #include "PARAMS.h"
27  #include "GRID.h"  #include "GRID.h"
28  #include "THSICE_PARAMS.h"  #include "THSICE_PARAMS.h"
29    #ifdef ALLOW_MNC
30    #include "MNC_PARAMS.h"
31    #endif
32    
33  C     !INPUT/OUTPUT PARAMETERS:  C     !INPUT/OUTPUT PARAMETERS:
34  C     === Routine arguments ===  C     === Routine arguments ===
35    C     myThid    :: My Thread Id. number
36        INTEGER myThid        INTEGER myThid
37  CEOP  CEOP
38    
39  #ifdef ALLOW_THSICE  #ifdef ALLOW_THSICE
40    
41  C     === Local variables ===  C     === Local variables ===
42  C     msgBuf      - Informational/error message buffer  C     msgBuf    :: Informational/error message buffer
43  C     iUnit       - Work variable for IO unit number  C     iUnit     :: Work variable for IO unit number
44        CHARACTER*(MAX_LEN_MBUF) msgBuf        CHARACTER*(MAX_LEN_MBUF) msgBuf
45        INTEGER iUnit        INTEGER iUnit
46    
# Line 46  C--   Th-Sea-ICE parameter Line 50  C--   Th-Sea-ICE parameter
50       &  cpice, cpwater,       &  cpice, cpwater,
51       &  kice, ksnow,       &  kice, ksnow,
52       &  transcoef, Lfresh, qsnow,       &  transcoef, Lfresh, qsnow,
53       &  albColdSnow, albWarmSnow, albOldSnow, hNewSnowAge,       &  albColdSnow, albWarmSnow, tempSnowAlb,
54         &  albOldSnow, hNewSnowAge, snowAgTime,
55       &  albIceMax, albIceMin, hAlbIce, hAlbSnow,       &  albIceMax, albIceMin, hAlbIce, hAlbSnow,
56       &  i0, ksolar,       &  i0, ksolar,
57       &  saltice, S_winton, mu_Tf,       &  saltice, S_winton, mu_Tf,
# Line 54  C--   Th-Sea-ICE parameter Line 59  C--   Th-Sea-ICE parameter
59       &  himin, Terrmax, nitMaxTsf, hiMax, hsMax,       &  himin, Terrmax, nitMaxTsf, hiMax, hsMax,
60       &  iceMaskmax, iceMaskmin, himin0,       &  iceMaskmax, iceMaskmin, himin0,
61       &  frac_energy, hihig       &  frac_energy, hihig
62    
63        NAMELIST /THSICE_PARM01/        NAMELIST /THSICE_PARM01/
64       &         startIceModel, stepFwd_oceMxL,       &     startIceModel, stepFwd_oceMxL,
65       &         thSIce_deltaT, ocean_deltaT, tauRelax_MxL,       &     thSIce_deltaT, ocean_deltaT, tauRelax_MxL,
66       &         hMxL_default, sMxL_default, vMxL_default,       &     hMxL_default, sMxL_default, vMxL_default,
67       &         stressReduction,       &     thSIce_diffK, thSIceAdvScheme, stressReduction,
68       &         thSIce_taveFreq, thSIce_diagFreq, thSIce_monFreq       &     thSIce_taveFreq, thSIce_diagFreq, thSIce_monFreq,
69         &     thSIce_tave_mnc, thSIce_snapshot_mnc, thSIce_mon_mnc,
70         &     thSIce_pickup_read_mnc, thSIce_pickup_write_mnc,
71         &     thSIceFract_InitFile, thSIceThick_InitFile,
72         &     thSIceSnowH_InitFile, thSIceSnowA_InitFile,
73         &     thSIceEnthp_InitFile, thSIceTsurf_InitFile
74    
75        _BEGIN_MASTER(myThid)        _BEGIN_MASTER(myThid)
76    
77        WRITE(msgBuf,'(A)') ' THSICE_READPARMS: opening data.ice'        WRITE(msgBuf,'(A)') ' THSICE_READPARMS: opening data.ice'
78        CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,        CALL PRINT_MESSAGE( msgBuf, standardMessageUnit,
79       &                    SQUEEZE_RIGHT , 1)       &                    SQUEEZE_RIGHT , 1)
80        
81        CALL OPEN_COPY_DATA_FILE(        CALL OPEN_COPY_DATA_FILE(
82       I                          'data.ice', 'THSICE_READPARMS',       I                          'data.ice', 'THSICE_READPARMS',
83       O                          iUnit,       O                          iUnit,
# Line 87  C--   Default values (constants) Line 97  C--   Default values (constants)
97        qsnow    = Lfresh        qsnow    = Lfresh
98        albColdSnow= 0.85 _d 0        albColdSnow= 0.85 _d 0
99        albWarmSnow= 0.70 _d 0        albWarmSnow= 0.70 _d 0
100          tempSnowAlb= -10. _d 0
101        albOldSnow = 0.55 _d 0        albOldSnow = 0.55 _d 0
102        albIceMax  = 0.65 _d 0        albIceMax  = 0.65 _d 0
103        albIceMin  = 0.20 _d 0        albIceMin  = 0.20 _d 0
104        hAlbIce    = 0.50 _d 0        hAlbIce    = 0.50 _d 0
105        hAlbSnow   = 0.30 _d 0        hAlbSnow   = 0.30 _d 0
106        hNewSnowAge= 2. _d -3        hNewSnowAge= 2. _d -3
107          snowAgTime = 50. _d 0 * 86400. _d 0
108        i0       = 0.3 _d 0        i0       = 0.3 _d 0
109        ksolar   = 1.5 _d 0        ksolar   = 1.5 _d 0
110        saltice  = 4. _d 0        saltice  = 4. _d 0
# Line 119  C--   Default values (parameters) Line 131  C--   Default values (parameters)
131        hMxL_default    = 50. _d 0        hMxL_default    = 50. _d 0
132        sMxL_default    = 35. _d 0        sMxL_default    = 35. _d 0
133        vMxL_default    = 5. _d -2        vMxL_default    = 5. _d -2
134          thSIce_diffK    = 0. _d 0
135          thSIceAdvScheme = 0
136        stressReduction = 1. _d 0        stressReduction = 1. _d 0
137        thSIce_taveFreq = taveFreq        IF ( useSEAICE ) stressReduction = 0. _d 0
138          thSIce_taveFreq = taveFreq
139        thSIce_diagFreq = dumpFreq        thSIce_diagFreq = dumpFreq
140        thSIce_monFreq  = monitorFreq        thSIce_monFreq  = monitorFreq
141    #ifdef ALLOW_MNC
142          thSIce_tave_mnc     = timeave_mnc
143          thSIce_snapshot_mnc = snapshot_mnc
144          thSIce_mon_mnc      = monitor_mnc
145          thSIce_pickup_read_mnc  = pickup_read_mnc
146          thSIce_pickup_write_mnc = pickup_write_mnc
147    #else
148          thSIce_tave_mnc     = .FALSE.
149          thSIce_snapshot_mnc = .FALSE.
150          thSIce_mon_mnc      = .FALSE.
151          thSIce_pickup_read_mnc  = .FALSE.
152          thSIce_pickup_write_mnc = .FALSE.
153    #endif
154          thSIceFract_InitFile = ' '
155          thSIceThick_InitFile = ' '
156          thSIceSnowH_InitFile = ' '
157          thSIceSnowA_InitFile = ' '
158          thSIceEnthp_InitFile = ' '
159          thSIceTsurf_InitFile = ' '
160    
161    
162  C--   Read parameters from open data file  C--   Read parameters from open data file
163        READ(UNIT=iUnit,NML=THSICE_CONST)        READ(UNIT=iUnit,NML=THSICE_CONST)
# Line 142  C-    Define other constants (from previ Line 177  C-    Define other constants (from previ
177        Tmlt1=-mu_Tf*S_winton        Tmlt1=-mu_Tf*S_winton
178        rhoiw = rhosw - rhoi        rhoiw = rhosw - rhoi
179    
180    C     Set I/O parameters
181          thSIce_tave_mdsio     = .TRUE.
182          thSIce_snapshot_mdsio = .TRUE.
183          thSIce_mon_stdio      = .TRUE.
184          thSIce_pickup_write_mdsio = .TRUE.
185    #ifdef ALLOW_MNC
186          IF (useMNC) THEN
187            IF ( .NOT.outputTypesInclusive
188         &       .AND. thSIce_tave_mnc ) thSIce_tave_mdsio = .FALSE.
189            IF ( .NOT.outputTypesInclusive
190         &       .AND. thSIce_snapshot_mnc )
191         &       thSIce_snapshot_mdsio = .FALSE.
192            IF ( .NOT.outputTypesInclusive
193         &       .AND. thSIce_mon_mnc  ) thSIce_mon_stdio  = .FALSE.
194            IF ( .NOT.outputTypesInclusive
195         &       .AND. thSIce_pickup_write_mnc  )
196         &       thSIce_pickup_write_mdsio = .FALSE.
197          ENDIF
198    #endif
199    
200    C--   Check parameter consistency:
201          IF ( useSEAICE .AND. stressReduction.NE.0. _d 0 ) THEN
202    C--     If useSEAICE=.true., the stress is computed in seaice_model,
203    C--     so that it does not need any further reduction
204            WRITE(msgBuf,'(2A)')
205         &   'THSICE_READPARMS: if useSEAICE, stress will be computed',
206         &   ' by SEAICE pkg => no reduction'
207            CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
208         &                    SQUEEZE_RIGHT , myThid)
209            WRITE(msgBuf,'(A)')
210         &   'THSICE_READPARMS: WARNING: reset stressReduction to zero'
211            CALL PRINT_MESSAGE( msgBuf, errorMessageUnit,
212         &                    SQUEEZE_RIGHT , myThid)
213            stressReduction = 0. _d 0
214          ENDIF
215    
216  C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|  C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
217        iUnit = standardMessageUnit        iUnit = standardMessageUnit
218  c     iUnit = 88  c     CALL MDSFINDUNIT( iUnit, mythid )
219  c     OPEN(iUnit,file='thsice_check_params',status='unknown')  c     OPEN(iUnit,file='thsice_check_params',status='unknown')
220        WRITE(iUnit,*) 'ThSI: rhos    =',rhos        WRITE(iUnit,*) 'ThSI: rhos    =',rhos
221        WRITE(iUnit,*) 'ThSI: rhoi    =',rhoi        WRITE(iUnit,*) 'ThSI: rhoi    =',rhoi
# Line 160  c     OPEN(iUnit,file='thsice_check_para Line 231  c     OPEN(iUnit,file='thsice_check_para
231        WRITE(iUnit,*) 'ThSI: qsnow   =',qsnow        WRITE(iUnit,*) 'ThSI: qsnow   =',qsnow
232        WRITE(iUnit,*) 'ThSI: albColdSnow=',albColdSnow        WRITE(iUnit,*) 'ThSI: albColdSnow=',albColdSnow
233        WRITE(iUnit,*) 'ThSI: albWarmSnow=',albWarmSnow        WRITE(iUnit,*) 'ThSI: albWarmSnow=',albWarmSnow
234          WRITE(iUnit,*) 'ThSI: tempSnowAlb=',tempSnowAlb
235        WRITE(iUnit,*) 'ThSI: albOldSnow =',albOldSnow        WRITE(iUnit,*) 'ThSI: albOldSnow =',albOldSnow
236        WRITE(iUnit,*) 'ThSI: hNewSnowAge=',hNewSnowAge        WRITE(iUnit,*) 'ThSI: hNewSnowAge=',hNewSnowAge
237          WRITE(iUnit,*) 'ThSI: snowAgTime =',snowAgTime
238        WRITE(iUnit,*) 'ThSI: albIceMax =',albIceMax        WRITE(iUnit,*) 'ThSI: albIceMax =',albIceMax
239        WRITE(iUnit,*) 'ThSI: albIceMin =',albIceMin        WRITE(iUnit,*) 'ThSI: albIceMin =',albIceMin
240        WRITE(iUnit,*) 'ThSI: hAlbIce   =',hAlbIce        WRITE(iUnit,*) 'ThSI: hAlbIce   =',hAlbIce
# Line 184  c     OPEN(iUnit,file='thsice_check_para Line 257  c     OPEN(iUnit,file='thsice_check_para
257        WRITE(iUnit,*) 'ThSI: frac_energy',frac_energy        WRITE(iUnit,*) 'ThSI: frac_energy',frac_energy
258        WRITE(iUnit,*) 'ThSI: hihig   =',hihig        WRITE(iUnit,*) 'ThSI: hihig   =',hihig
259        WRITE(iUnit,*) 'ThSI: stressReduction =',stressReduction        WRITE(iUnit,*) 'ThSI: stressReduction =',stressReduction
260          WRITE(iUnit,*) 'ThSI: thSIceAdvScheme =',thSIceAdvScheme
261          WRITE(iUnit,*) 'ThSI: thSIce_diffK  =',thSIce_diffK
262        WRITE(iUnit,*) 'ThSI: thSIce_deltaT =',thSIce_deltaT        WRITE(iUnit,*) 'ThSI: thSIce_deltaT =',thSIce_deltaT
263        WRITE(iUnit,*) 'ThSI: ocean_deltaT  =',ocean_deltaT        WRITE(iUnit,*) 'ThSI: ocean_deltaT  =',ocean_deltaT
264        WRITE(iUnit,*) 'ThSI: stepFwd_oceMxL=',stepFwd_oceMxL        WRITE(iUnit,*) 'ThSI: stepFwd_oceMxL=',stepFwd_oceMxL
# Line 195  c     OPEN(iUnit,file='thsice_check_para Line 270  c     OPEN(iUnit,file='thsice_check_para
270        WRITE(iUnit,*) 'ThSI: thSIce_diagFreq=',thSIce_diagFreq        WRITE(iUnit,*) 'ThSI: thSIce_diagFreq=',thSIce_diagFreq
271        WRITE(iUnit,*) 'ThSI: thSIce_monFreq =',thSIce_monFreq        WRITE(iUnit,*) 'ThSI: thSIce_monFreq =',thSIce_monFreq
272        WRITE(iUnit,*) 'ThSI: startIceModel =',startIceModel        WRITE(iUnit,*) 'ThSI: startIceModel =',startIceModel
273        IF (iUnit.EQ.88) CLOSE(iUnit)        IF (iUnit.NE.standardMessageUnit) CLOSE(iUnit)
274  C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|  C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
275    
276        _END_MASTER(myThid)        _END_MASTER(myThid)
# Line 207  C--   Everyone else must wait for the pa Line 282  C--   Everyone else must wait for the pa
282    
283        RETURN        RETURN
284        END        END
285    

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.11

  ViewVC Help
Powered by ViewVC 1.1.22