Changeset 5472


Ignore:
Timestamp:
08/23/10 00:24:19 (15 years ago)
Author:
Eric.Larour
Message:

We now have a different number of responses and responses descriptors. Same thing
for variables. Makes processing of Qmu inputs a lot simpler.

Location:
issm/trunk/src/c/objects
Files:
2 edited

Legend:

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

    r5358 r5472  
    209209        if(this->qmu_analysis){
    210210                IoModelFetchData(&this->numberofvariables,iomodel_handle,"numberofvariables");
     211                IoModelFetchData(&this->numvariabledescriptors,iomodel_handle,"numvariabledescriptors");
    211212                IoModelFetchData(&this->numberofresponses,iomodel_handle,"numberofresponses");
     213                IoModelFetchData(&this->numresponsedescriptors,iomodel_handle,"numresponsedescriptors");
    212214                IoModelFetchData(&this->qmu_npart,iomodel_handle,"npart");
    213215                IoModelFetchData(&this->qmu_mass_flux_num_profiles,iomodel_handle,"qmu_mass_flux_num_profiles");
     
    230232        this->control_parameter=NULL;
    231233        this->solverstring=NULL;
     234        this->numberofvariables=0;
     235        this->numvariabledescriptors=0;
    232236        this->numberofresponses=0;
    233         this->numberofvariables=0;
     237        this->numresponsedescriptors=0;
    234238        this->qmu_npart=0;
    235239        this->numberofelements=0;
  • issm/trunk/src/c/objects/IoModel.h

    r5358 r5472  
    6565
    6666                /*qmu: */
     67                int      numberofvariables;
     68                int      numvariabledescriptors;
    6769                int      numberofresponses;
    68                 int      numberofvariables;
     70                int      numresponsedescriptors;
    6971                int      qmu_npart;
    7072
Note: See TracChangeset for help on using the changeset viewer.