Changeset 360
- Timestamp:
- 05/12/09 14:55:33 (16 years ago)
- 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 21 21 22 22 %Mesh 23 md.type=' 2d';23 md.type=''; 24 24 md.numberofelements=0; 25 25 md.numberofgrids=0; … … 61 61 62 62 %Stokes mesh 63 md.stokesreconditioning= 10^13;63 md.stokesreconditioning=0; 64 64 65 65 %Penalties 66 66 md.penalties=NaN; 67 md.penalty_offset= 3; %penalty=Kmax*10^penalty_offset68 md.penalty_melting= 10^7;%penalty used to keep T<Tpmp69 md.penalty_lock= 10;70 md.segments=NaN; %private member, not displayed71 md.segmentmarkers=NaN; %private member, not displayed67 md.penalty_offset=0; 68 md.penalty_melting=0; 69 md.penalty_lock=0; 70 md.segments=NaN; 71 md.segmentmarkers=NaN; 72 72 md.rifts=NaN; 73 73 md.numrifts=0; … … 84 84 md.gridonbed=NaN; 85 85 md.gridonsurface=NaN; 86 md.minh= 1;86 md.minh=0; 87 87 md.firn_layer=NaN; 88 88 md.dof=NaN; … … 93 93 94 94 %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 K101 md.beta= 9.8*10^-8; %dependence of melting on pressure.102 md.mixed_layer_capacity= 3974; %J/kg/K103 md.thermal_exchange_velocity= 1.00*10^-4; %m/s95 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; 104 104 105 105 %Physical parameters 106 md.g= 9.81;107 md.yts= 365*24*3600;106 md.g=0; 107 md.yts=0; 108 108 md.drag=NaN; 109 md.drag_type= 2;109 md.drag_type=0; 110 110 md.p=NaN; 111 111 md.q=NaN; … … 132 132 133 133 %Thermal 134 md.min_thermal_constraints=0; %minimum number of unstable thermal constraints134 md.min_thermal_constraints=0; 135 135 md.gridondirichlet_thermal=NaN; 136 136 md.dirichletvalues_thermal=NaN; … … 153 153 154 154 %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; 159 159 md.lowmem=0; 160 md.viscosity_overshoot=0 .3;160 md.viscosity_overshoot=0; 161 161 162 162 %Transient parameters … … 166 166 md.transient_results=NaN; 167 167 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; 176 175 177 176 %Control 178 md.control_type=' drag';177 md.control_type=''; 179 178 md.cont_vx=NaN; 180 179 md.cont_vy=NaN; … … 185 184 md.nsteps=0; 186 185 md.maxiter=[]; 187 md.tolx= 10^-4;186 md.tolx=0; 188 187 md.optscal=[]; 189 188 md.mincontrolconstraint=0; 190 md.maxcontrolconstraint= 2000;189 md.maxcontrolconstraint=0; 191 190 md.fit=[]; 192 md.epsvel= eps;193 md.meanvel= 1000/(365*24*3600); %1000 m/an191 md.epsvel=0; 192 md.meanvel=0; 194 193 195 194 %Output parameters … … 202 201 md.deviatoricstress=NaN; 203 202 md.strainrate=NaN; 204 md.plot= 1;203 md.plot=0; 205 204 206 205 %debugging 207 md.debug= 1;206 md.debug=0; 208 207 md.element_debug=0; 209 208 md.element_debugid=NaN; … … 219 218 220 219 %Parallelisation parameters 221 md.cluster=' none';220 md.cluster=''; 222 221 md.np=0; 223 222 md.time=0; 224 223 md.queue=''; 225 224 md.exclusive=0; 226 md.scheduler_configuration=' local';227 md.outlog=' 228 md.errlog=' 225 md.scheduler_configuration=''; 226 md.outlog=''; 227 md.errlog=''; 229 228 md.alloc_cleanup=1; 230 229 md.waitonlock=0; 231 230 232 231 %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={}; 236 235 md.mesh2grid_cornereast=0; 237 236 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; 243 242 md.mesh2grid_results=NaN; 244 243 md.dummy=NaN; … … 249 248 md.mesh_resolution=NaN; 250 249 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=''; 255 252 md.analysis_type=''; 256 253 … … 264 261 265 262 %qmu 266 md.variables 267 md.responses 263 md.variables=struct(); 264 md.responses=struct(); 268 265 md.qmu_method=struct(); 269 266 md.qmu_params=struct(); 270 267 md.dakotaresults=struct(); 271 md.dakotain 272 md.dakotaout 273 md.dakotadat 274 275 md.npart =1;276 277 % Solver options278 %ice279 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 280 277 %output 281 278 md=class(md,'model'); 282 279 280 %set default parameters 281 md=setdefaultparameters(md); 282 283 283 case 1 284 284 %If single argument of class model, we have a copy constructor.
Note:
See TracChangeset
for help on using the changeset viewer.