Changeset 21419


Ignore:
Timestamp:
11/23/16 09:20:52 (8 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixed 3d extraction so that it works like 2d, had to change xyz_list

File:
1 edited

Legend:

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

    r21401 r21419  
    8484
    8585        /*Intermediaries */
     86        bool          extrapolatebydiffusion = true;
    8687        int           dim, domaintype, extrapolationcase;
    8788        int           i,row,col,stabilization;
    88         bool          extrapolatebydiffusion;
    8989        IssmDouble  Jdet,D_scalar,h;
    9090        IssmDouble  norm_dlsf;
     
    128128        workelement->GetVerticesCoordinates(&xyz_list);
    129129
     130        if(element->ObjectEnum()==PentaEnum){
     131                for(i=0;i<3;i++) xyz_list[3*i+2] = 0.;
     132                for(i=3;i<6;i++) xyz_list[3*i+2] = 1.;
     133        }
     134
    130135        /* Start  looping on the number of gaussian points: */
    131136        Gauss* gauss=workelement->NewGauss(2);
     
    139144                D_scalar=gauss->weight*Jdet;
    140145
    141                 extrapolatebydiffusion=true;
    142146                if(extrapolatebydiffusion){
    143147
     
    214218}/*}}}*/
    215219ElementVector* ExtrapolationAnalysis::CreatePVector(Element* element){/*{{{*/
    216 
    217         /*Intermediaries */
    218         Element* workelement=NULL;
    219 
    220         /*Get problem dimension*/
    221         int extrapolationcase=GetExtrapolationCase(element);
    222         switch(extrapolationcase){
    223                 case 0:
    224                         if(!element->IsOnBase()) return NULL;
    225                         workelement = element->SpawnBasalElement();
    226                         break;
    227                 case 1: case 2: case 3: workelement=element; break;
    228         }
    229 
    230         /*Fetch number of nodes */
    231         int numnodes = workelement->GetNumberOfNodes();
    232 
    233         /*Initialize Element vector*/
    234         ElementVector* pe = workelement->NewElementVector();
    235 
    236         if(extrapolationcase==0){
    237       workelement->DeleteMaterials();
    238       delete workelement;
    239    }
    240 
    241         return pe;
     220        return NULL;
     221
    242222}/*}}}*/
    243223void           ExtrapolationAnalysis::GetB(IssmDouble* B,Element* element,IssmDouble* xyz_list,Gauss* gauss, int dim){/*{{{*/
Note: See TracChangeset for help on using the changeset viewer.