Changeset 26003


Ignore:
Timestamp:
02/19/21 21:15:42 (4 years ago)
Author:
bulthuis
Message:

CGH: Update sampling analysis Input2 to Input and gauss->begin() to gauss->next()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/SamplingAnalysis.cpp

    r26001 r26003  
    160160        /*Retrieve all inputs and parameters*/
    161161        element->GetVerticesCoordinates(&xyz_list);
    162         Input2* kappa_input=element->GetInput2(SamplingKappaEnum); _assert_(kappa_input);
     162        Input*  kappa_input=element->GetInput(SamplingKappaEnum); _assert_(kappa_input);
    163163
    164164        /* Start  looping on the number of gaussian points: */
    165165        Gauss* gauss=element->NewGauss(2);
    166         for(int ig=gauss->begin();ig<gauss->end();ig++){
    167 
    168                 gauss->GaussPoint(ig);
     166        while(gauss->next()){
    169167
    170168                element->JacobianDeterminant(&Jdet,xyz_list,gauss);
     
    224222        element->GetVerticesCoordinates(&xyz_list);
    225223        element->GetLevelCoordinates(&xyz_list_boundary,xyz_list,MeshVertexonboundaryEnum,1.);
    226         Input2* beta_input=element->GetInput2(SamplingBetaEnum); _assert_(beta_input);
     224        Input*  beta_input=element->GetInput(SamplingBetaEnum); _assert_(beta_input);
    227225
    228226        /* Start  looping on the number of gaussian points: */
    229227        Gauss* gauss=element->NewGauss(xyz_list,xyz_list_boundary,3);
    230         for(int ig=gauss->begin();ig<gauss->end();ig++){
    231                 gauss->GaussPoint(ig);
     228        while(gauss->next()){
    232229
    233230                element->JacobianDeterminantSurface(&Jdet,xyz_list_boundary,gauss);
     
    283280
    284281    /*Add sample inputs to the tria element: */
    285     element->AddInput2(SampleEnum,newsample,element->GetElementType());
     282    element->AddInput(SampleEnum,newsample,element->GetElementType());
    286283
    287284    /*Free ressources:*/
     
    315312        /* Start  looping on the number of gaussian points: */
    316313        Gauss* gauss=element->NewGauss(2);
    317         for(int ig=gauss->begin();ig<gauss->end();ig++){
    318                 gauss->GaussPoint(ig);
     314        while(gauss->next()){
    319315
    320316                element->JacobianDeterminant(&Jdet,xyz_list,gauss);
Note: See TracChangeset for help on using the changeset viewer.