/[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.16 by dgoldberg, Tue Jun 11 17:42:17 2013 UTC revision 1.17 by dgoldberg, Wed Aug 27 19:29:14 2014 UTC
# Line 43  C     iUnit      :: Work variable for IO Line 43  C     iUnit      :: Work variable for IO
43       &     streamice_vel_update,streamice_cg_tol,streamice_nonlin_tol,       &     streamice_vel_update,streamice_cg_tol,streamice_nonlin_tol,
44       &     streamice_nonlin_tol_fp,       &     streamice_nonlin_tol_fp,
45       &     streamice_max_cg_iter, streamice_max_nl_iter,       &     streamice_max_cg_iter, streamice_max_nl_iter,
46       &     STREAMICE_GL_regularize,       &     streamice_maxcgiter_cpl, streamice_maxnliter_cpl,
47       &     STREAMICEthickInit,       &     STREAMICEthickInit,
48       &     STREAMICEsigcoordInit,       &     STREAMICEsigcoordInit,
49       &     STREAMICEsigcoordFile,       &     STREAMICEsigcoordFile,
# Line 53  C     iUnit      :: Work variable for IO Line 53  C     iUnit      :: Work variable for IO
53       &     STREAMICEison,       &     STREAMICEison,
54       &     STREAMICE_dump_mdsio, STREAMICE_tave_mdsio,       &     STREAMICE_dump_mdsio, STREAMICE_tave_mdsio,
55       &     STREAMICE_dump_mnc, STREAMICE_tave_mnc,       &     STREAMICE_dump_mnc, STREAMICE_tave_mnc,
56       &     STREAMICE_GL_regularize, STREAMICE_move_front,       &     STREAMICE_move_front,
57       &     STREAMICE_calve_to_mask,       &     STREAMICE_calve_to_mask,
58       &     STREAMICE_diagnostic_only,       &     STREAMICE_diagnostic_only,
59       &     STREAMICE_lower_cg_tol,       &     STREAMICE_lower_cg_tol,
# Line 62  C     iUnit      :: Work variable for IO Line 62  C     iUnit      :: Work variable for IO
62       &     streamice_bg_surf_slope_x, streamice_bg_surf_slope_y,       &     streamice_bg_surf_slope_x, streamice_bg_surf_slope_y,
63       &     streamice_kx_b_init, streamice_ky_b_init,       &     streamice_kx_b_init, streamice_ky_b_init,
64       &     STREAMICEbasalTracConfig,       &     STREAMICEbasalTracConfig,
65         &     STREAMICEBdotConfig,
66       &     STREAMICEbasalTracFile,       &     STREAMICEbasalTracFile,
67         &     STREAMICEBdotFile,
68         &     STREAMICEBdotTimeDepFile,
69       &     STREAMICEvelOptimFile,       &     STREAMICEvelOptimFile,
70       &     STREAMICEtopogFile,       &     STREAMICEtopogFile,
71       &     STREAMICEhmaskFile,       &     STREAMICEhmaskFile,
# Line 72  C     iUnit      :: Work variable for IO Line 75  C     iUnit      :: Work variable for IO
75       &     STREAMICEvFaceBdryFile,       &     STREAMICEvFaceBdryFile,
76       &     STREAMICEuDirichValsFile,       &     STREAMICEuDirichValsFile,
77       &     STREAMICEvDirichValsFile,       &     STREAMICEvDirichValsFile,
78         &     STREAMICEuMassFluxFile,
79         &     STREAMICEvMassFluxFile,
80         &     STREAMICEuNormalStressFile,
81         &     STREAMICEvNormalStressFile,
82         &     STREAMICEuShearStressFile,
83         &     STREAMICEvShearStressFile,
84         &     STREAMICEuNormalTimeDepFile,
85         &     STREAMICEvNormalTimeDepFile,
86         &     STREAMICEuShearTimeDepFile,
87         &     STREAMICEvShearTimeDepFile,
88       &     STREAMICEGlenConstFile, STREAMICEGlenConstConfig,       &     STREAMICEGlenConstFile, STREAMICEGlenConstConfig,
89       &     STREAMICE_ppm_driving_stress,       &     STREAMICE_ppm_driving_stress,
90       &     STREAMICE_h_ctrl_const_surf,       &     STREAMICE_h_ctrl_const_surf,
# Line 80  C     iUnit      :: Work variable for IO Line 93  C     iUnit      :: Work variable for IO
93       &     streamice_addl_backstress,       &     streamice_addl_backstress,
94       &     streamice_smooth_gl_width,       &     streamice_smooth_gl_width,
95       &     streamice_adot_uniform,       &     streamice_adot_uniform,
96       &     STREAMICE_ADV_SCHEME       &     STREAMICE_ADV_SCHEME, streamice_forcing_period,
97         &     STREAMICE_chkfixedptconvergence,
98         &     STREAMICE_chkresidconvergence,
99         &     STREAMICE_allow_cpl
100    
101  #ifdef ALLOW_STREAMICE_2DTRACER  #ifdef ALLOW_STREAMICE_2DTRACER
102        NAMELIST /STREAMICE_PARMTRACER/        NAMELIST /STREAMICE_PARMTRACER/
# Line 147  C--   Default values for STREAMICE Line 163  C--   Default values for STREAMICE
163        eps_u_min = 1.0e-6        eps_u_min = 1.0e-6
164        C_basal_fric_const = 31.71 ! Pa (m/a)-1n        C_basal_fric_const = 31.71 ! Pa (m/a)-1n
165        n_basal_friction = 1.        n_basal_friction = 1.
166        streamice_vel_update = 169200. ! seconds        streamice_vel_update = deltaT ! seconds
167        streamice_cg_tol = 1e-6        streamice_cg_tol = 1e-6
168        streamice_nonlin_tol = 1e-6        streamice_nonlin_tol = 1e-6
169        streamice_nonlin_tol_fp = 1.e-14        streamice_nonlin_tol_fp = 1.e-14
170        streamice_max_cg_iter = 2000        streamice_max_cg_iter = 2000
171        streamice_max_nl_iter = 100        streamice_max_nl_iter = 100
172        streamice_n_sub_regularize = 4        streamice_maxcgiter_cpl = 0
173          streamice_maxnliter_cpl = 0
174    !      streamice_n_sub_regularize = 4
175        streamice_CFL_factor = .5        streamice_CFL_factor = .5
176        streamice_adjDump = 0.        streamice_adjDump = 0.
177        streamice_bg_surf_slope_x = .0        streamice_bg_surf_slope_x = .0
# Line 168  C--   Default values for STREAMICE Line 186  C--   Default values for STREAMICE
186        streamice_addl_backstress = 0.0        streamice_addl_backstress = 0.0
187        streamice_smooth_gl_width = 0.0        streamice_smooth_gl_width = 0.0
188        streamice_adot_uniform = 0.0        streamice_adot_uniform = 0.0
189          streamice_forcing_period = 0
190    
191        STREAMICEthickInit = 'FILE'        STREAMICEthickInit = 'FILE'
192        STREAMICEthickFile = ' '        STREAMICEthickFile = ' '
# Line 175  C--   Default values for STREAMICE Line 194  C--   Default values for STREAMICE
194        STREAMICEsigcoordInit = 'UNIFORM'        STREAMICEsigcoordInit = 'UNIFORM'
195        STREAMICEsigcoordFile = ' '        STREAMICEsigcoordFile = ' '
196        STREAMICEbasalTracConfig = 'UNIFORM'        STREAMICEbasalTracConfig = 'UNIFORM'
197          STREAMICEBdotConfig = ''
198          STREAMICEBdotFile = ''
199          STREAMICEBdotTimeDepFile = ' '
200        STREAMICEbasalTracFile = ' '        STREAMICEbasalTracFile = ' '
201        STREAMICEvelOptimFile = ''        STREAMICEvelOptimFile = ''
202        STREAMICEtopogFile = ''        STREAMICEtopogFile = ''
203        STREAMICEhmaskFile = ''        STREAMICEhmaskFile = ''
204        STREAMICEHBCyFile = ''        STREAMICEHBCyFile = ''
205        STREAMICEHBCxFile = ''        STREAMICEHBCxFile = ''
206          STREAMICEuNormalStressFile = ''
207          STREAMICEvNormalStressFile = ''
208          STREAMICEuShearStressFile = ''
209          STREAMICEvShearStressFile = ''
210          STREAMICEuNormalTimeDepFile = ' '
211          STREAMICEvNormalTimeDepFile = ' '
212          STREAMICEuShearTimeDepFile = ' '
213          STREAMICEvShearTimeDepFile = ' '
214    
215  #ifdef ALLOW_STREAMICE_2DTRACER  #ifdef ALLOW_STREAMICE_2DTRACER
216        STREAMICETrac2DBCxFile = ''        STREAMICETrac2DBCxFile = ''
217        STREAMICETrac2DBCyFile = ''        STREAMICETrac2DBCyFile = ''
# Line 190  C--   Default values for STREAMICE Line 221  C--   Default values for STREAMICE
221        STREAMICEvFaceBdryFile = ''        STREAMICEvFaceBdryFile = ''
222        STREAMICEuDirichValsFile = ''        STREAMICEuDirichValsFile = ''
223        STREAMICEvDirichValsFile = ''        STREAMICEvDirichValsFile = ''
224          STREAMICEuMassFluxFile = ''
225          STREAMICEvMassFluxFile = ''
226        STREAMICEGlenConstFile = ''        STREAMICEGlenConstFile = ''
227        STREAMICEcostMaskFile = ''        STREAMICEcostMaskFile = ''
228        STREAMICEGlenConstConfig = 'UNIFORM'        STREAMICEGlenConstConfig = 'UNIFORM'
# Line 215  C--   Default values for STREAMICE Line 248  C--   Default values for STREAMICE
248        STREAMICE_dump_mdsio = .TRUE.        STREAMICE_dump_mdsio = .TRUE.
249        STREAMICE_dump_mnc = .FALSE.        STREAMICE_dump_mnc = .FALSE.
250        STREAMICE_tave_mnc = .FALSE.        STREAMICE_tave_mnc = .FALSE.
251        STREAMICE_GL_regularize = .FALSE.  !      STREAMICE_GL_regularize = .FALSE.
252        STREAMICE_move_front = .FALSE.        STREAMICE_move_front = .FALSE.
253        STREAMICE_calve_to_mask = .FALSE.        STREAMICE_calve_to_mask = .FALSE.
254  !       STREAMICE_geom_file_setup = .FALSE.  !       STREAMICE_geom_file_setup = .FALSE.
# Line 223  C--   Default values for STREAMICE Line 256  C--   Default values for STREAMICE
256        STREAMICE_lower_cg_tol = .FALSE.        STREAMICE_lower_cg_tol = .FALSE.
257        STREAMICE_diagnostic_only = .FALSE.        STREAMICE_diagnostic_only = .FALSE.
258        STREAMICE_ppm_driving_stress = .FALSE.        STREAMICE_ppm_driving_stress = .FALSE.
259          STREAMICE_chkfixedptconvergence = .true.
260          STREAMICE_chkresidconvergence = .true.
261        STREAMICE_h_ctrl_const_surf = .FALSE.        STREAMICE_h_ctrl_const_surf = .FALSE.
262          STREAMICE_allow_cpl = .false.
263  !       STREAMICE_hybrid_stress= .FALSE.  !       STREAMICE_hybrid_stress= .FALSE.
264    
265        min_x_noflow_NORTH = 0.        min_x_noflow_NORTH = 0.

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

  ViewVC Help
Powered by ViewVC 1.1.22