Changeset 360


Ignore:
Timestamp:
05/12/09 14:55:33 (16 years ago)
Author:
Mathieu Morlighem
Message:

Added setdefaultparameters used in model.m and to plug default parameters onto the model

Location:
issm/trunk/src/m/classes/@model
Files:
1 added
1 edited

Legend:

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

    r337 r360  
    2121       
    2222        %Mesh
    23         md.type='2d';
     23        md.type='';
    2424        md.numberofelements=0;
    2525        md.numberofgrids=0;
     
    6161
    6262        %Stokes mesh
    63         md.stokesreconditioning=10^13;
     63        md.stokesreconditioning=0;
    6464       
    6565        %Penalties
    6666        md.penalties=NaN;
    67         md.penalty_offset=3;   %penalty=Kmax*10^penalty_offset
    68         md.penalty_melting=10^7;%penalty used to keep T<Tpmp
    69         md.penalty_lock=10;
    70         md.segments=NaN;       %private member, not displayed
    71         md.segmentmarkers=NaN; %private member, not displayed
     67        md.penalty_offset=0;
     68        md.penalty_melting=0;
     69        md.penalty_lock=0;
     70        md.segments=NaN;
     71        md.segmentmarkers=NaN;
    7272        md.rifts=NaN;
    7373        md.numrifts=0;
     
    8484        md.gridonbed=NaN;
    8585        md.gridonsurface=NaN;
    86         md.minh=1;
     86        md.minh=0;
    8787        md.firn_layer=NaN;
    8888        md.dof=NaN;
     
    9393       
    9494        %Materials parameters
    95         md.rho_ice=917;
    96         md.rho_water=1023;
    97         md.heatcapacity=2093;
    98         md.latentheat=3.34*10^5; %(J/kg);
    99         md.thermalconductivity=2.4; %(W/m/K)
    100         md.meltingpoint=273.15; %The melting point of ice at 1 atmosphere of pressure in K
    101         md.beta=9.8*10^-8; %dependence of melting on pressure.
    102         md.mixed_layer_capacity=3974; %J/kg/K
    103         md.thermal_exchange_velocity=1.00*10^-4; %m/s
     95        md.rho_ice=0;
     96        md.rho_water=0;
     97        md.heatcapacity=0;
     98        md.latentheat=0;
     99        md.thermalconductivity=0;
     100        md.meltingpoint=0;
     101        md.beta=0;
     102        md.mixed_layer_capacity=0;
     103        md.thermal_exchange_velocity=0;
    104104       
    105105        %Physical parameters
    106         md.g=9.81;
    107         md.yts=365*24*3600;
     106        md.g=0;
     107        md.yts=0;
    108108        md.drag=NaN;
    109         md.drag_type=2;
     109        md.drag_type=0;
    110110        md.p=NaN;
    111111        md.q=NaN;
     
    132132
    133133        %Thermal
    134         md.min_thermal_constraints=0; %minimum number of unstable thermal constraints
     134        md.min_thermal_constraints=0;
    135135        md.gridondirichlet_thermal=NaN;
    136136        md.dirichletvalues_thermal=NaN;
     
    153153
    154154        %Statics parameters
    155         md.eps_rel=0.01;
    156         md.eps_abs=10;
    157         md.sparsity=0.001;
    158         md.connectivity=16;
     155        md.eps_rel=0;
     156        md.eps_abs=0;
     157        md.sparsity=0;
     158        md.connectivity=0;
    159159        md.lowmem=0;
    160         md.viscosity_overshoot=0.3;
     160        md.viscosity_overshoot=0;
    161161       
    162162        %Transient parameters
     
    166166        md.transient_results=NaN;
    167167        md.thermaltransient_results=NaN;
    168         md.timestepping=0; %no adaptative time stepping by default.
    169         md.deltaH=10^-2; %meters
    170         md.DeltaH=50; %meters
    171         md.deltaT=10^-2; %K
    172         md.DeltaT=1; %K
    173         md.timeacc=2;
    174         md.timedec=.5;
    175 
     168        md.timestepping=0;
     169        md.deltaH=0;
     170        md.DeltaH=0;
     171        md.deltaT=0;
     172        md.DeltaT=0;
     173        md.timeacc=0;
     174        md.timedec=0;
    176175
    177176        %Control
    178         md.control_type='drag';
     177        md.control_type='';
    179178        md.cont_vx=NaN;
    180179        md.cont_vy=NaN;
     
    185184        md.nsteps=0;
    186185        md.maxiter=[];
    187         md.tolx=10^-4;
     186        md.tolx=0;
    188187        md.optscal=[];
    189188        md.mincontrolconstraint=0;
    190         md.maxcontrolconstraint=2000;
     189        md.maxcontrolconstraint=0;
    191190        md.fit=[];
    192         md.epsvel=eps;
    193         md.meanvel=1000/(365*24*3600); %1000 m/an
     191        md.epsvel=0;
     192        md.meanvel=0;
    194193
    195194        %Output parameters
     
    202201        md.deviatoricstress=NaN;
    203202        md.strainrate=NaN;
    204         md.plot=1;
     203        md.plot=0;
    205204
    206205        %debugging
    207         md.debug=1;
     206        md.debug=0;
    208207        md.element_debug=0;
    209208        md.element_debugid=NaN;
     
    219218
    220219        %Parallelisation parameters
    221         md.cluster='none';
     220        md.cluster='';
    222221        md.np=0;
    223222        md.time=0;
    224223        md.queue='';
    225224        md.exclusive=0;
    226         md.scheduler_configuration='local';
    227         md.outlog=' ';
    228         md.errlog=' ';
     225        md.scheduler_configuration='';
     226        md.outlog='';
     227        md.errlog='';
    229228        md.alloc_cleanup=1;
    230229        md.waitonlock=0;
    231230
    232231        %mesh2grid
    233         md.mesh2grid_parameters={'vel'};
    234         md.mesh2grid_interpolation={'node'};
    235         md.mesh2grid_filter={'average'};
     232        md.mesh2grid_parameters={};
     233        md.mesh2grid_interpolation={};
     234        md.mesh2grid_filter={};
    236235        md.mesh2grid_cornereast=0;
    237236        md.mesh2grid_cornernorth=0;
    238         md.mesh2grid_xposting=1000;
    239         md.mesh2grid_yposting=1000;
    240         md.mesh2grid_nlines=1000;
    241         md.mesh2grid_ncolumns=1000;
    242         md.mesh2grid_windowsize=1;
     237        md.mesh2grid_xposting=0;
     238        md.mesh2grid_yposting=0;
     239        md.mesh2grid_nlines=0;
     240        md.mesh2grid_ncolumns=0;
     241        md.mesh2grid_windowsize=0;
    243242        md.mesh2grid_results=NaN;
    244243        md.dummy=NaN;
     
    249248        md.mesh_resolution=NaN;
    250249
    251         %Cielo parameters
    252         md.solverstring=' -mat_type aijmumps -ksp_type preonly -pc_type lu -mat_mumps_icntl_14 40 ';
    253 
    254         %Trash, still to organize
     250        %Cielo solver string
     251        md.solverstring='';
    255252        md.analysis_type='';
    256253
     
    264261
    265262        %qmu
    266         md.variables =struct();
    267         md.responses =struct();
     263        md.variables=struct();
     264        md.responses=struct();
    268265        md.qmu_method=struct();
    269266        md.qmu_params=struct();
    270267        md.dakotaresults=struct();
    271         md.dakotain     ='';
    272         md.dakotaout    ='';
    273         md.dakotadat    ='';
    274 
    275         md.npart   =1;
    276 
    277         %Solver options
    278         %ice
    279         md.solver_type='general';
     268        md.dakotain='';
     269        md.dakotaout='';
     270        md.dakotadat='';
     271
     272        md.npart=0;
     273
     274        %Ice solver string
     275        md.solver_type='';
     276
    280277        %output
    281278        md=class(md,'model');
    282                                
     279
     280        %set default parameters
     281        md=setdefaultparameters(md);
     282
    283283case 1
    284284        %If single argument of class model, we have a copy constructor.
Note: See TracChangeset for help on using the changeset viewer.