Changeset 358 for issm/trunk/src/c/objects/Penta.cpp
- Timestamp:
- 05/12/09 14:01:34 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Penta.cpp
r350 r358 292 292 293 293 } 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 } 294 303 else{ 295 304 throw ErrorException(__FUNCT__,exprintf("%s%i%s\n","analysis: ",analysis_type," not supported yet")); … … 703 712 CreatePVectorDiagnosticVert( pg,inputs,analysis_type); 704 713 } 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 } 705 723 else{ 706 724 throw ErrorException(__FUNCT__,exprintf("%s%i%s\n","analysis: ",analysis_type," not supported yet")); … … 1575 1593 1576 1594 #undef __FUNCT__ 1595 #define __FUNCT__ "Penta::SlopeExtrude" 1596 void 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__ 1577 1646 #define __FUNCT__ "Penta:GetB_vert" 1578 1647 void Penta::GetB_vert(double* B, double* xyz_list, double* gauss_l1l2l3l4){ … … 1770 1839 double pressure[numgrids]; 1771 1840 double rho_ice,g; 1772 double xyz_list[numgrids][3];1841 double xyz_list[numgrids][3]; 1773 1842 1774 1843 /*Get node data: */ … … 1792 1861 1793 1862 } 1863 1864 1865 #undef __FUNCT__ 1866 #define __FUNCT__ "Penta::CreateKMatrixSlopeCompute" 1867 1868 void 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 1887 void 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.