/[MITgcm]/MITgcm_contrib/dgoldberg/streamice/streamice_readparms.F
ViewVC logotype

Diff of /MITgcm_contrib/dgoldberg/streamice/streamice_readparms.F

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

revision 1.11 by dgoldberg, Sun Jan 27 21:05:50 2013 UTC revision 1.12 by dgoldberg, Thu Mar 7 15:23:19 2013 UTC
# Line 35  C     iUnit      :: Work variable for IO Line 35  C     iUnit      :: Work variable for IO
35    
36        NAMELIST /STREAMICE_PARM01/        NAMELIST /STREAMICE_PARM01/
37       &     streamice_density, streamice_density_ocean_avg,       &     streamice_density, streamice_density_ocean_avg,
38       &     A_glen_isothermal, n_glen, eps_glen_min, eps_u_min,       &     B_glen_isothermal, n_glen, eps_glen_min, eps_u_min,
39       &     C_basal_fric_const, n_basal_friction,       &     C_basal_fric_const, n_basal_friction,
40       &     streamice_vel_update,streamice_cg_tol,streamice_nonlin_tol,       &     streamice_vel_update,streamice_cg_tol,streamice_nonlin_tol,
41       &     streamice_nonlin_tol_fp,       &     streamice_nonlin_tol_fp,
# Line 46  C     iUnit      :: Work variable for IO Line 46  C     iUnit      :: Work variable for IO
46       &     STREAMICEsigcoordFile,       &     STREAMICEsigcoordFile,
47       &     STREAMICEthickFile,       &     STREAMICEthickFile,
48       &     STREAMICEcalveMaskFile,       &     STREAMICEcalveMaskFile,
49         &     STREAMICEcostMaskFile,
50       &     STREAMICEison,       &     STREAMICEison,
51       &     STREAMICE_dump_mdsio, STREAMICE_tave_mdsio,       &     STREAMICE_dump_mdsio, STREAMICE_tave_mdsio,
52       &     STREAMICE_dump_mnc, STREAMICE_tave_mnc,       &     STREAMICE_dump_mnc, STREAMICE_tave_mnc,
# Line 63  C     iUnit      :: Work variable for IO Line 64  C     iUnit      :: Work variable for IO
64       &     STREAMICEbasalTracConfig,       &     STREAMICEbasalTracConfig,
65       &     STREAMICEbasalTracFile,       &     STREAMICEbasalTracFile,
66       &     STREAMICEvelOptimFile,       &     STREAMICEvelOptimFile,
67         &     STREAMICEtopogFile,
68       &     STREAMICEhmaskFile,       &     STREAMICEhmaskFile,
69       &     STREAMICEuFaceBdryFile,       &     STREAMICEuFaceBdryFile,
70       &     STREAMICEvFaceBdryFile,       &     STREAMICEvFaceBdryFile,
# Line 73  C     iUnit      :: Work variable for IO Line 75  C     iUnit      :: Work variable for IO
75       &     STREAMICE_h_ctrl_const_surf,       &     STREAMICE_h_ctrl_const_surf,
76       &     streamice_wgt_drift,streamice_wgt_surf,streamice_wgt_vel,       &     streamice_wgt_drift,streamice_wgt_surf,streamice_wgt_vel,
77       &     streamice_wgt_avthick, streamice_wgt_tikh,       &     streamice_wgt_avthick, streamice_wgt_tikh,
78       &     streamice_addl_backstress           &     streamice_addl_backstress,
79         &     streamice_smooth_gl_width    
80    
81    
82        NAMELIST /STREAMICE_PARM02/        NAMELIST /STREAMICE_PARM02/
# Line 115  C--   Default values for STREAMICE Line 118  C--   Default values for STREAMICE
118    
119        streamice_density = 917.        streamice_density = 917.
120        streamice_density_ocean_avg = 1024.        streamice_density_ocean_avg = 1024.
121        A_glen_isothermal = 9.461e-18   !  Pa (-1/3) a        B_glen_isothermal = 9.461e-18   !  Pa (-1/3) a
122        n_glen = 3.        n_glen = 3.
123        eps_glen_min = 1.0e-12        eps_glen_min = 1.0e-12
124        eps_u_min = 1.0e-6        eps_u_min = 1.0e-6
# Line 139  C--   Default values for STREAMICE Line 142  C--   Default values for STREAMICE
142        streamice_wgt_surf = 0.            streamice_wgt_surf = 0.    
143        streamice_wgt_vel = 0.            streamice_wgt_vel = 0.    
144        streamice_wgt_avthick = 0.        streamice_wgt_avthick = 0.
145        streamice_addl_backstress = 0.        streamice_addl_backstress = 0.0
146          streamice_smooth_gl_width = 0.0
147    
148        STREAMICEthickInit = 'FILE'        STREAMICEthickInit = 'FILE'
149        STREAMICEthickFile = ' '        STREAMICEthickFile = ' '
# Line 149  C--   Default values for STREAMICE Line 153  C--   Default values for STREAMICE
153        STREAMICEbasalTracConfig = 'UNIFORM'        STREAMICEbasalTracConfig = 'UNIFORM'
154        STREAMICEbasalTracFile = ' '        STREAMICEbasalTracFile = ' '
155        STREAMICEvelOptimFile = ''        STREAMICEvelOptimFile = ''
156          STREAMICEtopogFile = ''
157        STREAMICEhmaskFile = ''        STREAMICEhmaskFile = ''
158        STREAMICEuFaceBdryFile = ''        STREAMICEuFaceBdryFile = ''
159        STREAMICEvFaceBdryFile = ''        STREAMICEvFaceBdryFile = ''
160        STREAMICEuDirichValsFile = ''        STREAMICEuDirichValsFile = ''
161        STREAMICEvDirichValsFile = ''        STREAMICEvDirichValsFile = ''
162        STREAMICEGlenConstFile = ''        STREAMICEGlenConstFile = ''
163          STREAMICEcostMaskFile = ''
164        STREAMICEGlenConstConfig = 'UNIFORM'        STREAMICEGlenConstConfig = 'UNIFORM'
165    
166        STREAMICEison = .TRUE.        STREAMICEison = .TRUE.

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

  ViewVC Help
Powered by ViewVC 1.1.22