Changeset 7105


Ignore:
Timestamp:
01/14/11 13:41:35 (14 years ago)
Author:
Mathieu Morlighem
Message:

model field 'plot' not used anymore

Location:
issm/trunk/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/IoModel.cpp

    r7097 r7105  
    164164        IoModelFetchData(&this->epsvel,iomodel_handle,"epsvel");
    165165        IoModelFetchData(&this->verbose,iomodel_handle,"verbose_binary");
    166         IoModelFetchData(&this->plot,iomodel_handle,"plot");
    167166        IoModelFetchData(&this->output_frequency,iomodel_handle,"output_frequency");
    168167        IoModelFetchData(&this->prognostic_DG,iomodel_handle,"prognostic_DG");
     
    324323        this->cm_gradient=0;
    325324        this->verbose=0;
    326         this->plot=0;
    327325        this->output_frequency=0;
    328326        this->eps_res=0;
  • issm/trunk/src/c/objects/IoModel.h

    r7097 r7105  
    139139                double* maxiter;
    140140                int     verbose;
    141                 int     plot;
    142141                int     output_frequency;
    143142                double  eps_res;
  • issm/trunk/src/m/classes/@model/model.m

    r7084 r7105  
    229229        md.deviatoricstress=NaN;
    230230        md.strainrate=NaN;
    231         md.plot=0;
    232231
    233232        %debugging
  • issm/trunk/src/m/classes/@model/setdefaultparameters.m

    r7084 r7105  
    216216md.meanvel=1000/(365*24*3600);
    217217
    218 %the value of plot can be set to 1 if the user wants to see
    219 %the direction and the updated parameter after each control
    220 %method iteration (only for serial)
    221 md.plot=0;
    222 
    223218%grounding line migration:
    224219md.gl_migration=0;
  • issm/trunk/src/m/model/marshall.m

    r7097 r7105  
    112112WriteData(fid,md.epsvel,'Scalar','epsvel');
    113113WriteData(fid,md.verbose_binary,'Integer','verbose_binary');
    114 WriteData(fid,md.plot,'Integer','plot');
    115114WriteData(fid,md.output_frequency,'Integer','output_frequency');
    116115WriteData(fid,md.artificial_diffusivity,'Integer','artificial_diffusivity');
Note: See TracChangeset for help on using the changeset viewer.