--- MITgcm_contrib/dgoldberg/streamice/streamice_readparms.F 2012/09/27 20:29:00 1.7 +++ MITgcm_contrib/dgoldberg/streamice/streamice_readparms.F 2013/01/09 21:56:18 1.10 @@ -1,4 +1,4 @@ -C $Header: /home/ubuntu/mnt/e9_copy/MITgcm_contrib/dgoldberg/streamice/streamice_readparms.F,v 1.7 2012/09/27 20:29:00 dgoldberg Exp $ +C $Header: /home/ubuntu/mnt/e9_copy/MITgcm_contrib/dgoldberg/streamice/streamice_readparms.F,v 1.10 2013/01/09 21:56:18 dgoldberg Exp $ C $Name: $ @@ -35,7 +35,7 @@ NAMELIST /STREAMICE_PARM01/ & streamice_density, streamice_density_ocean_avg, - & A_glen_isothermal, n_glen, eps_glen_min, + & A_glen_isothermal, n_glen, eps_glen_min, eps_u_min, & C_basal_fric_const, n_basal_friction, & streamice_vel_update,streamice_cg_tol,streamice_nonlin_tol, & streamice_nonlin_tol_fp, @@ -51,6 +51,7 @@ & STREAMICE_dump_mnc, STREAMICE_tave_mnc, & STREAMICE_GL_regularize, STREAMICE_move_front, & STREAMICE_calve_to_mask, +! & STREAMICE_geom_file_setup, & STREAMICE_diagnostic_only, ! & STREAMICE_construct_matrix, & STREAMICE_lower_cg_tol, @@ -62,8 +63,17 @@ & STREAMICEbasalTracConfig, & STREAMICEbasalTracFile, & STREAMICEvelOptimFile, + & STREAMICEhmaskFile, + & STREAMICEuFaceBdryFile, + & STREAMICEvFaceBdryFile, + & STREAMICEuDirichValsFile, + & STREAMICEvDirichValsFile, + & STREAMICEGlenConstFile, STREAMICEGlenConstConfig, & STREAMICE_ppm_driving_stress, - & STREAMICE_h_ctrl_const_surf + & STREAMICE_h_ctrl_const_surf, + & streamice_wgt_drift,streamice_wgt_surf,streamice_wgt_vel, + & streamice_wgt_avthick, streamice_wgt_tikh, + & streamice_addl_backstress NAMELIST /STREAMICE_PARM02/ @@ -108,6 +118,7 @@ A_glen_isothermal = 9.461e-18 ! Pa (-1/3) a n_glen = 3. eps_glen_min = 1.0e-12 + eps_u_min = 1.0e-6 C_basal_fric_const = 31.71 ! Pa (m/a)-1n n_basal_friction = 1. streamice_vel_update = 169200. ! seconds @@ -123,6 +134,12 @@ streamice_bg_surf_slope_y = 0. streamice_kx_b_init = 1. streamice_ky_b_init = 1. + streamice_wgt_drift = 0. + streamice_wgt_tikh = 0. + streamice_wgt_surf = 0. + streamice_wgt_vel = 0. + streamice_wgt_avthick = 0. + streamice_addl_backstress = 0. STREAMICEthickInit = 'FILE' STREAMICEthickFile = ' ' @@ -132,6 +149,13 @@ STREAMICEbasalTracConfig = 'UNIFORM' STREAMICEbasalTracFile = ' ' STREAMICEvelOptimFile = '' + STREAMICEhmaskFile = '' + STREAMICEuFaceBdryFile = '' + STREAMICEvFaceBdryFile = '' + STREAMICEuDirichValsFile = '' + STREAMICEvDirichValsFile = '' + STREAMICEGlenConstFile = '' + STREAMICEGlenConstConfig = '' STREAMICEison = .TRUE. STREAMICE_tave_mdsio = .TRUE. @@ -141,6 +165,7 @@ STREAMICE_GL_regularize = .FALSE. STREAMICE_move_front = .FALSE. STREAMICE_calve_to_mask = .FALSE. +! STREAMICE_geom_file_setup = .FALSE. ! STREAMICE_construct_matrix = .TRUE. STREAMICE_lower_cg_tol = .FALSE. STREAMICE_diagnostic_only = .FALSE.