Changeset 9358 for issm/trunk/src/m/classes/model.m
- Timestamp:
- 08/19/11 18:05:04 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/model.m
r9320 r9358 44 44 45 45 %I/O 46 io_gather = {NaN,true,' Integer'};46 io_gather = {NaN,true,'Boolean'}; 47 47 48 48 %Initial 2d mesh … … 62 62 63 63 %Elements type 64 ishutter = {0,true,' Integer'};65 ismacayealpattyn = {0,true,' Integer'};66 isstokes = {0,true,' Integer'};64 ishutter = {0,true,'Boolean'}; 65 ismacayealpattyn = {0,true,'Boolean'}; 66 isstokes = {0,true,'Boolean'}; 67 67 68 68 %Elements … … 192 192 eps_rel = {0,true,'Double'}; 193 193 eps_abs = {0,true,'Double'}; 194 max_nonlinear_iterations = {0,true,' Double'};195 max_steadystate_iterations = {0,true,' Double'};194 max_nonlinear_iterations = {0,true,'Integer'}; 195 max_steadystate_iterations = {0,true,'Integer'}; 196 196 sparsity = {0,true,'Double'}; 197 197 connectivity = {0,true,'Integer'}; 198 lowmem = {0,true,' Integer'};198 lowmem = {0,true,'Boolean'}; 199 199 viscosity_overshoot = {0,true,'Double'}; 200 200 … … 202 202 dt = {0,true,'Double'}; 203 203 ndt = {0,true,'Double'}; 204 time_adapt = {0,true,' Integer'};204 time_adapt = {0,true,'Boolean'}; 205 205 cfl_coefficient = {0,true,'Double'}; 206 206 adaptative_cfl = {0,false}; … … 214 214 timedec = {0,false}; 215 215 hydrostatic_adjustment = {0,true,'Integer'}; 216 isprognostic = {0,true,' Integer'};217 isdiagnostic = {0,true,' Integer'};218 isthermal = {0,true,' Integer'};216 isprognostic = {0,true,'Boolean'}; 217 isdiagnostic = {0,true,'Boolean'}; 218 isthermal = {0,true,'Boolean'}; 219 219 %Control 220 control_analysis = {0,true,' Integer'};220 control_analysis = {0,true,'Boolean'}; 221 221 control_type = {0,true,'DoubleMat',3}; 222 222 weights = {[],true,'DoubleMat',1}; … … 283 283 errlog = {'',false}; 284 284 alloc_cleanup = {1,false}; 285 waitonlock = {0,true,' Double'};285 waitonlock = {0,true,'Boolean'}; 286 286 287 287 %dummy … … 316 316 dakotaout = {'',false}; 317 317 dakotadat = {'',false}; 318 qmu_analysis = {0,true,' Integer'};318 qmu_analysis = {0,true,'Boolean'}; 319 319 part = {[],true,'DoubleMat',2}; 320 320 npart = {0,true,'Integer'}; … … 340 340 341 341 %grounding line migration: 342 g l_migration = {0,true,'Integer'};342 groundingline_migration = {0,true,'Integer'}; 343 343 344 344 %solution parameters … … 831 831 832 832 %grounding line migration: 833 md.g l_migration=NoneEnum;833 md.groundingline_migration=NoneEnum; 834 834 835 835 %How often to save results, default is 1 so save every step
Note:
See TracChangeset
for help on using the changeset viewer.