/[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.6 by dgoldberg, Tue Sep 18 17:06:48 2012 UTC revision 1.13 by dgoldberg, Sat Apr 6 17:43:41 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,       &     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,
53       &     STREAMICE_GL_regularize, STREAMICE_move_front,       &     STREAMICE_GL_regularize, STREAMICE_move_front,
54       &     STREAMICE_calve_to_mask,       &     STREAMICE_calve_to_mask,
55    !      &     STREAMICE_geom_file_setup,
56       &     STREAMICE_diagnostic_only,       &     STREAMICE_diagnostic_only,
57  !     &     STREAMICE_construct_matrix,  !     &     STREAMICE_construct_matrix,
58       &     STREAMICE_lower_cg_tol,       &     STREAMICE_lower_cg_tol,
# Line 61  C     iUnit      :: Work variable for IO Line 63  C     iUnit      :: Work variable for IO
63       &     streamice_kx_b_init, streamice_ky_b_init,       &     streamice_kx_b_init, streamice_ky_b_init,
64       &     STREAMICEbasalTracConfig,       &     STREAMICEbasalTracConfig,
65       &     STREAMICEbasalTracFile,       &     STREAMICEbasalTracFile,
66       &     STREAMICEvelOptimFile       &     STREAMICEvelOptimFile,
67         &     STREAMICEtopogFile,
68         &     STREAMICEhmaskFile,
69         &     STREAMICEuFaceBdryFile,
70         &     STREAMICEvFaceBdryFile,
71         &     STREAMICEuDirichValsFile,
72         &     STREAMICEvDirichValsFile,
73         &     STREAMICEGlenConstFile, STREAMICEGlenConstConfig,
74         &     STREAMICE_ppm_driving_stress,
75         &     STREAMICE_h_ctrl_const_surf,
76         &     streamice_wgt_drift,streamice_wgt_surf,streamice_wgt_vel,
77         &     streamice_wgt_avthick, streamice_wgt_tikh,
78         &     streamice_addl_backstress,
79         &     streamice_smooth_gl_width,
80         &     PETSC_PRECOND_TYPE, PETSC_SOLVER_TYPE    
81    
82    
83        NAMELIST /STREAMICE_PARM02/        NAMELIST /STREAMICE_PARM02/
# Line 103  C--   Default values for STREAMICE Line 119  C--   Default values for STREAMICE
119    
120        streamice_density = 917.        streamice_density = 917.
121        streamice_density_ocean_avg = 1024.        streamice_density_ocean_avg = 1024.
122        A_glen_isothermal = 9.461e-18   !  Pa (-1/3) a        B_glen_isothermal = 9.461e-18   !  Pa (-1/3) a
123        n_glen = 3.        n_glen = 3.
124        eps_glen_min = 1.0e-12        eps_glen_min = 1.0e-12
125          eps_u_min = 1.0e-6
126        C_basal_fric_const = 31.71 ! Pa (m/a)-1n        C_basal_fric_const = 31.71 ! Pa (m/a)-1n
127        n_basal_friction = 1.        n_basal_friction = 1.
128        streamice_vel_update = 169200. ! seconds        streamice_vel_update = 169200. ! seconds
# Line 121  C--   Default values for STREAMICE Line 138  C--   Default values for STREAMICE
138        streamice_bg_surf_slope_y = 0.        streamice_bg_surf_slope_y = 0.
139        streamice_kx_b_init = 1.        streamice_kx_b_init = 1.
140        streamice_ky_b_init = 1.        streamice_ky_b_init = 1.
141          streamice_wgt_drift = 0.
142          streamice_wgt_tikh = 0.
143          streamice_wgt_surf = 0.    
144          streamice_wgt_vel = 0.    
145          streamice_wgt_avthick = 0.
146          streamice_addl_backstress = 0.0
147          streamice_smooth_gl_width = 0.0
148    
149        STREAMICEthickInit = 'FILE'        STREAMICEthickInit = 'FILE'
150        STREAMICEthickFile = ' '        STREAMICEthickFile = ' '
# Line 130  C--   Default values for STREAMICE Line 154  C--   Default values for STREAMICE
154        STREAMICEbasalTracConfig = 'UNIFORM'        STREAMICEbasalTracConfig = 'UNIFORM'
155        STREAMICEbasalTracFile = ' '        STREAMICEbasalTracFile = ' '
156        STREAMICEvelOptimFile = ''        STREAMICEvelOptimFile = ''
157          STREAMICEtopogFile = ''
158          STREAMICEhmaskFile = ''
159          STREAMICEuFaceBdryFile = ''
160          STREAMICEvFaceBdryFile = ''
161          STREAMICEuDirichValsFile = ''
162          STREAMICEvDirichValsFile = ''
163          STREAMICEGlenConstFile = ''
164          STREAMICEcostMaskFile = ''
165          STREAMICEGlenConstConfig = 'UNIFORM'
166          PETSC_PRECOND_TYPE = 'PCBJACOBI'
167          PETSC_SOLVER_TYPE = 'KSPCG'
168    
169        STREAMICEison = .TRUE.        STREAMICEison = .TRUE.
170        STREAMICE_tave_mdsio = .TRUE.        STREAMICE_tave_mdsio = .TRUE.
# Line 139  C--   Default values for STREAMICE Line 174  C--   Default values for STREAMICE
174        STREAMICE_GL_regularize = .FALSE.        STREAMICE_GL_regularize = .FALSE.
175        STREAMICE_move_front = .FALSE.        STREAMICE_move_front = .FALSE.
176        STREAMICE_calve_to_mask = .FALSE.        STREAMICE_calve_to_mask = .FALSE.
177    !       STREAMICE_geom_file_setup = .FALSE.
178  !      STREAMICE_construct_matrix = .TRUE.  !      STREAMICE_construct_matrix = .TRUE.
179        STREAMICE_lower_cg_tol = .FALSE.        STREAMICE_lower_cg_tol = .FALSE.
180        STREAMICE_diagnostic_only = .FALSE.        STREAMICE_diagnostic_only = .FALSE.
181          STREAMICE_ppm_driving_stress = .FALSE.
182          STREAMICE_h_ctrl_const_surf = .FALSE.
183  !       STREAMICE_hybrid_stress= .FALSE.  !       STREAMICE_hybrid_stress= .FALSE.
184    
185        min_x_noflow_NORTH = 0.        min_x_noflow_NORTH = 0.

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.13

  ViewVC Help
Powered by ViewVC 1.1.22