Ignore:
Timestamp:
08/22/13 08:31:52 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing some stuff for Johannes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Penta.cpp

    r15870 r15872  
    50265026
    50275027        /*Fetch indices of basal nodes for this finite element*/
    5028         BasalNodeIndices(&numindices,&indices,this->VelocityInterpolation());
     5028        BasalNodeIndices(&numindices,&indices,this->element_type);
    50295029
    50305030        /*Get parameters and inputs: */
     
    50625062        /* Intermediaries */
    50635063        bool        isenthalpy;
    5064         int         i,j,analysis_type;
     5064        int         i,j,analysis_type,numindices,numindicesup;
    50655065        IssmDouble  xyz_list[NUMVERTICES][3];
    50665066        IssmDouble  xyz_list_tria[NUMVERTICES2D][3];
     
    50775077        IssmDouble  vx,vy,vz;
    50785078        IssmDouble  dt;
    5079         Friction   *friction                 = NULL;
    5080         GaussPenta *gauss                    = NULL;
    5081         GaussPenta *gaussup                  = NULL;
     5079        int        *indices   = NULL;
     5080        int        *indicesup = NULL;
     5081        Friction   *friction  = NULL;
    50825082
    50835083        /* Only compute melt rates at the base of grounded ice*/
     
    51045104        friction=new Friction("3d",inputs,matpar,analysis_type);
    51055105
    5106         /* Start  looping on the number of gaussian points: */
    5107         gauss=new GaussPenta(0,1,2,2);
    5108         gaussup=new GaussPenta(3,4,5,2);
    5109         for(int ig=gauss->begin();ig<gauss->end();ig++){
    5110                 gauss->GaussPoint(ig);
    5111                 gaussup->GaussPoint(ig);
     5106        /*Fetch indices of basal and surface nodes for this finite element*/
     5107        BasalNodeIndices(&numindices,&indices,this->element_type);
     5108        SurfaceNodeIndices(&numindicesup,&indicesup,this->element_type);
     5109        _assert_(numindices==numindicesup);
     5110
     5111        /*Ok, we have vx and vy in values, fill in vx and vy arrays: */
     5112        GaussPenta* gauss=new GaussPenta();
     5113        GaussPenta* gaussup=new GaussPenta();
     5114        for(i=0;i<numindices;i++){
     5115                gauss->GaussNode(this->element_type,indices[i]);
     5116                gaussup->GaussNode(this->element_type,indicesup[i]);
    51125117
    51135118                watercolumn_input->GetInputValue(&watercolumn, gauss);
     
    51615166                // TODO: feed meltrate & watercolumn back to model
    51625167        } 
     5168
     5169        /*Clean up and return*/
     5170        xDelete<int>(indices);
     5171        xDelete<int>(indicesup);
     5172        delete gauss;
     5173        delete gaussup;
    51635174}
    51645175/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.