/[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.9 by jmc, Sun Jun 25 22:31:02 2006 UTC revision 1.11 by jmc, Wed Apr 4 02:11:35 2007 UTC
# Line 32  C     === Global variables === Line 32  C     === Global variables ===
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 49  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,       &  albColdSnow, albWarmSnow, tempSnowAlb,
54       &  hNewSnowAge, snowAgTime,       &  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 63  C--   Th-Sea-ICE parameter Line 64  C--   Th-Sea-ICE parameter
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,       &     thSIce_tave_mnc, thSIce_snapshot_mnc, thSIce_mon_mnc,
70       &     thSIce_pickup_read_mnc, thSIce_pickup_write_mnc,       &     thSIce_pickup_read_mnc, thSIce_pickup_write_mnc,
# Line 96  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
# Line 129  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        IF ( useSEAICE ) stressReduction = 0. _d 0        IF ( useSEAICE ) stressReduction = 0. _d 0
138        thSIce_taveFreq = taveFreq        thSIce_taveFreq = taveFreq
# Line 227  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
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
241        WRITE(iUnit,*) 'ThSI: hAlbSnow  =',hAlbSnow        WRITE(iUnit,*) 'ThSI: hAlbSnow  =',hAlbSnow
       WRITE(iUnit,*) 'ThSI: hNewSnowAge=',hNewSnowAge  
       WRITE(iUnit,*) 'ThSI: snowAgTime =',snowAgTime  
242        WRITE(iUnit,*) 'ThSI: i0      =',i0        WRITE(iUnit,*) 'ThSI: i0      =',i0
243        WRITE(iUnit,*) 'ThSI: ksolar  =',ksolar        WRITE(iUnit,*) 'ThSI: ksolar  =',ksolar
244        WRITE(iUnit,*) 'ThSI: saltice =',saltice        WRITE(iUnit,*) 'ThSI: saltice =',saltice
# Line 252  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 275  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.9  
changed lines
  Added in v.1.11

  ViewVC Help
Powered by ViewVC 1.1.22