Ignore:
Timestamp:
05/12/09 14:01:34 (16 years ago)
Author:
Eric.Larour
Message:

New slope extrude module. New slope computation in Penta and Tria

File:
1 edited

Legend:

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

    r350 r358  
    292292
    293293        }
     294        else if (
     295                        (analysis_type==SurfaceSlopeComputeXAnalysisEnum()) ||
     296                        (analysis_type==SurfaceSlopeComputeYAnalysisEnum()) ||
     297                        (analysis_type==BedSlopeComputeXAnalysisEnum()) ||
     298                        (analysis_type==BedSlopeComputeYAnalysisEnum())
     299                        ){
     300               
     301                CreateKMatrixSlopeCompute( Kgg,inputs,analysis_type);
     302        }
    294303        else{
    295304                throw ErrorException(__FUNCT__,exprintf("%s%i%s\n","analysis: ",analysis_type," not supported yet"));
     
    703712                CreatePVectorDiagnosticVert( pg,inputs,analysis_type);
    704713        }
     714        else if (
     715                        (analysis_type==SurfaceSlopeComputeXAnalysisEnum()) ||
     716                        (analysis_type==SurfaceSlopeComputeYAnalysisEnum()) ||
     717                        (analysis_type==BedSlopeComputeXAnalysisEnum()) ||
     718                        (analysis_type==BedSlopeComputeYAnalysisEnum())
     719                        ){
     720               
     721                CreatePVectorSlopeCompute( pg,inputs,analysis_type);
     722        }
    705723        else{
    706724                throw ErrorException(__FUNCT__,exprintf("%s%i%s\n","analysis: ",analysis_type," not supported yet"));
     
    15751593
    15761594#undef __FUNCT__
     1595#define __FUNCT__ "Penta::SlopeExtrude"
     1596void  Penta::SlopeExtrude(Vec sg,double* sg_serial){
     1597
     1598        /* node data: */
     1599        const int    numgrids=6;
     1600        const int    NDOF1=1;
     1601        const int    numdofs=NDOF1*numgrids;
     1602        int          doflist[numdofs];
     1603        int          nodedof;
     1604        int          numberofdofspernode;
     1605       
     1606        Node* node=NULL;
     1607        int   i;
     1608        double slope;
     1609               
     1610
     1611        if(onbed==1){
     1612                       
     1613                GetDofList(&doflist[0],&numberofdofspernode);
     1614
     1615                if(numberofdofspernode!=1)throw ErrorException(__FUNCT__," slope can only be extruded on 1 dof per node");
     1616
     1617                /*For each node on the base of this penta,  we grab the slope. Once we know the slope, we follow the upper nodes,
     1618                 * inserting the same slope value into sg, until we reach the surface: */
     1619               
     1620                for(i=0;i<3;i++){
     1621       
     1622                        node=nodes[i]; //base nodes
     1623       
     1624                        /*get velocity for this base node: */
     1625                        slope=sg_serial[doflist[i]];
     1626
     1627                        //go throsgn all nodes which sit on top of this node, until we reach the surface,
     1628                        //and plsg  slope in sg
     1629                        for(;;){
     1630
     1631                                node->GetDofList(&nodedof,&numberofdofspernode);
     1632                                VecSetValues(sg,1,&nodedof,&slope,INSERT_VALUES);
     1633
     1634                                if (node->IsOnSurface())break;
     1635                                /*get next node: */
     1636                                node=node->GetUpperNode();
     1637                        }
     1638                }
     1639
     1640        }
     1641
     1642}
     1643
     1644
     1645#undef __FUNCT__
    15771646#define __FUNCT__ "Penta:GetB_vert"
    15781647void Penta::GetB_vert(double* B, double* xyz_list, double* gauss_l1l2l3l4){
     
    17701839        double pressure[numgrids];
    17711840        double rho_ice,g;
    1772         double xyz_list[numgrids][3];
     1841        double       xyz_list[numgrids][3];
    17731842               
    17741843        /*Get node data: */
     
    17921861
    17931862}
     1863
     1864
     1865#undef __FUNCT__
     1866#define __FUNCT__ "Penta::CreateKMatrixSlopeCompute"
     1867
     1868void  Penta::CreateKMatrixSlopeCompute(Mat Kgg,void* inputs,int analysis_type){
     1869
     1870        /*Collapsed formulation: */
     1871        Tria*  tria=NULL;
     1872       
     1873        /*Is this element on the bed? :*/
     1874        if(!onbed)return;
     1875
     1876        /*Spawn Tria element from the base of the Penta: */
     1877        tria=(Tria*)SpawnTria(0,1,2); //grids 0, 1 and 2 make the new tria.
     1878        tria->CreateKMatrix(Kgg,inputs, analysis_type);
     1879        delete tria;
     1880        return;
     1881
     1882}
     1883
     1884#undef __FUNCT__
     1885#define __FUNCT__ "Penta::CreatePVectorSlopeCompute"
     1886
     1887void Penta::CreatePVectorSlopeCompute( Vec pg, void* inputs, int analysis_type){
     1888       
     1889        /*Collapsed formulation: */
     1890        Tria*  tria=NULL;
     1891       
     1892        /*Is this element on the bed? :*/
     1893        if(!onbed)return;
     1894
     1895        /*Spawn Tria element from the base of the Penta: */
     1896        tria=(Tria*)SpawnTria(0,1,2); //grids 0, 1 and 2 make the new tria.
     1897        tria->CreatePVector(pg,inputs, analysis_type);
     1898        delete tria;
     1899        return;
     1900}
     1901
Note: See TracChangeset for help on using the changeset viewer.