Changeset 7105
- Timestamp:
- 01/14/11 13:41:35 (14 years ago)
- Location:
- issm/trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/IoModel.cpp
r7097 r7105 164 164 IoModelFetchData(&this->epsvel,iomodel_handle,"epsvel"); 165 165 IoModelFetchData(&this->verbose,iomodel_handle,"verbose_binary"); 166 IoModelFetchData(&this->plot,iomodel_handle,"plot");167 166 IoModelFetchData(&this->output_frequency,iomodel_handle,"output_frequency"); 168 167 IoModelFetchData(&this->prognostic_DG,iomodel_handle,"prognostic_DG"); … … 324 323 this->cm_gradient=0; 325 324 this->verbose=0; 326 this->plot=0;327 325 this->output_frequency=0; 328 326 this->eps_res=0; -
issm/trunk/src/c/objects/IoModel.h
r7097 r7105 139 139 double* maxiter; 140 140 int verbose; 141 int plot;142 141 int output_frequency; 143 142 double eps_res; -
issm/trunk/src/m/classes/@model/model.m
r7084 r7105 229 229 md.deviatoricstress=NaN; 230 230 md.strainrate=NaN; 231 md.plot=0;232 231 233 232 %debugging -
issm/trunk/src/m/classes/@model/setdefaultparameters.m
r7084 r7105 216 216 md.meanvel=1000/(365*24*3600); 217 217 218 %the value of plot can be set to 1 if the user wants to see219 %the direction and the updated parameter after each control220 %method iteration (only for serial)221 md.plot=0;222 223 218 %grounding line migration: 224 219 md.gl_migration=0; -
issm/trunk/src/m/model/marshall.m
r7097 r7105 112 112 WriteData(fid,md.epsvel,'Scalar','epsvel'); 113 113 WriteData(fid,md.verbose_binary,'Integer','verbose_binary'); 114 WriteData(fid,md.plot,'Integer','plot');115 114 WriteData(fid,md.output_frequency,'Integer','output_frequency'); 116 115 WriteData(fid,md.artificial_diffusivity,'Integer','artificial_diffusivity');
Note:
See TracChangeset
for help on using the changeset viewer.