Changeset 9358


Ignore:
Timestamp:
08/19/11 18:05:04 (14 years ago)
Author:
Eric.Larour
Message:

changed a bunch of field templates from int to bool

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/model.m

    r9320 r9358  
    4444
    4545                 %I/O
    46                  io_gather           = {NaN,true,'Integer'};
     46                 io_gather           = {NaN,true,'Boolean'};
    4747
    4848                 %Initial 2d mesh
     
    6262
    6363                 %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'};
    6767
    6868                 %Elements
     
    192192                 eps_rel                  = {0,true,'Double'};
    193193                 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'};
    196196                 sparsity                 = {0,true,'Double'};
    197197                 connectivity             = {0,true,'Integer'};
    198                  lowmem                   = {0,true,'Integer'};
     198                 lowmem                   = {0,true,'Boolean'};
    199199                 viscosity_overshoot      = {0,true,'Double'};
    200200
     
    202202                 dt                     = {0,true,'Double'};
    203203                 ndt                    = {0,true,'Double'};
    204                  time_adapt             = {0,true,'Integer'};
     204                 time_adapt             = {0,true,'Boolean'};
    205205                 cfl_coefficient        = {0,true,'Double'};
    206206                 adaptative_cfl         = {0,false};
     
    214214                 timedec                = {0,false};
    215215                 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'};
    219219                 %Control
    220                  control_analysis = {0,true,'Integer'};
     220                 control_analysis = {0,true,'Boolean'};
    221221                 control_type     = {0,true,'DoubleMat',3};
    222222                 weights          = {[],true,'DoubleMat',1};
     
    283283                 errlog        = {'',false};
    284284                 alloc_cleanup = {1,false};
    285                  waitonlock    = {0,true,'Double'};
     285                 waitonlock    = {0,true,'Boolean'};
    286286
    287287                 %dummy
     
    316316                 dakotaout                       = {'',false};
    317317                 dakotadat                       = {'',false};
    318                  qmu_analysis                    = {0,true,'Integer'};
     318                 qmu_analysis                    = {0,true,'Boolean'};
    319319                 part                            = {[],true,'DoubleMat',2};
    320320                 npart                           = {0,true,'Integer'};
     
    340340
    341341                 %grounding line migration:
    342                  gl_migration = {0,true,'Integer'};
     342                 groundingline_migration = {0,true,'Integer'};
    343343
    344344                 %solution parameters
     
    831831
    832832                         %grounding line migration:
    833                          md.gl_migration=NoneEnum;
     833                         md.groundingline_migration=NoneEnum;
    834834
    835835                         %How often to save results, default is 1 so save every step
Note: See TracChangeset for help on using the changeset viewer.