Changeset 16838
- Timestamp:
- 11/20/13 12:09:18 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp
r16831 r16838 1110 1110 ElementVector* StressbalanceAnalysis::CreatePVectorSSAFront(Element* element){/*{{{*/ 1111 1111 1112 /*If no front, return NULL*/ 1113 if(!element->IsZeroLevelset(MaskIceLevelsetEnum)) return NULL; 1114 1115 /*Intermediaries*/ 1116 IssmDouble rho_ice,rho_water,gravity; 1117 IssmDouble Jdet,thickness,bed,water_pressure,ice_pressure; 1118 IssmDouble surface_under_water,base_under_water,pressure; 1119 IssmDouble *xyz_list = NULL; 1120 IssmDouble *xyz_list_front = NULL; 1121 IssmDouble normal[2]; 1122 1123 /*Fetch number of nodes for this finite element*/ 1124 int numnodes = element->GetNumberOfNodes(); 1125 1126 /*Initialize Element vector and other vectors*/ 1127 ElementVector* pe = element->NewElementVector(SSAApproximationEnum); 1128 IssmDouble* basis = xNew<IssmDouble>(numnodes); 1129 1130 /*Retrieve all inputs and parameters*/ 1131 Input* thickness_input=element->GetInput(ThicknessEnum); _assert_(thickness_input); 1132 Input* bed_input =element->GetInput(BedEnum); _assert_(bed_input); 1133 rho_water = element->GetMaterialParameter(MaterialsRhoWaterEnum); 1134 rho_ice = element->GetMaterialParameter(MaterialsRhoIceEnum); 1135 gravity = element->GetMaterialParameter(ConstantsGEnum); 1136 element->GetVerticesCoordinates(&xyz_list); 1137 element->ZeroLevelsetCoordinates(&xyz_list_front,xyz_list,MaskIceLevelsetEnum); 1138 element->NormalBase(&normal[0],xyz_list_front); 1139 1140 /*Start looping on Gaussian points*/ 1141 Gauss* gauss=element->NewGauss(xyz_list,xyz_list_front,3); 1142 for(int ig=gauss->begin();ig<gauss->end();ig++){ 1143 1144 gauss->GaussPoint(ig); 1145 thickness_input->GetInputValue(&thickness,gauss); 1146 bed_input->GetInputValue(&bed,gauss); 1147 element->JacobianDeterminantSurface(&Jdet,xyz_list_front,gauss); 1148 element->NodalFunctions(basis,gauss); 1149 1150 surface_under_water = min(0.,thickness+bed); // 0 if the top of the glacier is above water level 1151 base_under_water = min(0.,bed); // 0 if the bottom of the glacier is above water level 1152 water_pressure = 1.0/2.0*gravity*rho_water*(surface_under_water*surface_under_water - base_under_water*base_under_water); 1153 ice_pressure = 1.0/2.0*gravity*rho_ice*thickness*thickness; 1154 pressure = ice_pressure + water_pressure; 1155 1156 for (int i=0;i<numnodes;i++){ 1157 pe->values[2*i+0]+= pressure*Jdet*gauss->weight*normal[0]*basis[i]; 1158 pe->values[2*i+1]+= pressure*Jdet*gauss->weight*normal[1]*basis[i]; 1159 } 1160 } 1161 1162 /*Transform coordinate system*/ 1163 element->TransformLoadVectorCoord(pe,XYEnum); 1164 1165 /*Clean up and return*/ 1166 xDelete<IssmDouble>(xyz_list); 1167 xDelete<IssmDouble>(xyz_list_front); 1168 xDelete<IssmDouble>(basis); 1169 delete gauss; 1170 return pe; 1112 1171 return NULL; 1113 1172 }/*}}}*/ -
issm/trunk-jpl/src/c/classes/Elements/Element.h
r16833 r16838 82 82 virtual void GetDofListPressure(int** pdoflist,int setenum)=0; 83 83 virtual void JacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss)=0; 84 virtual void JacobianDeterminantSurface(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss)=0; 84 85 virtual void JacobianDeterminantBase(IssmDouble* Jdet,IssmDouble* xyz_list_base,Gauss* gauss)=0; 85 86 virtual void JacobianDeterminantTop(IssmDouble* Jdet,IssmDouble* xyz_list_base,Gauss* gauss)=0; … … 130 131 virtual Gauss* NewGauss(void)=0; 131 132 virtual Gauss* NewGauss(int order)=0; 133 virtual Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order)=0; 132 134 virtual Gauss* NewGaussBase(int order)=0; 133 135 virtual Gauss* NewGaussTop(int order)=0; … … 152 154 virtual int PressureInterpolation()=0; 153 155 virtual bool IsZeroLevelset(int levelset_enum)=0; 156 virtual void ZeroLevelsetCoordinates(IssmDouble** pxyz_zero,IssmDouble* xyz_list,int levelsetenum)=0; 154 157 155 158 #ifdef _HAVE_RESPONSES_ -
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r16836 r16838 884 884 /*}}}*/ 885 885 /*FUNCTION Penta::GetAreaCoordinates{{{*/ 886 void Penta::GetAreaCoordinates(IssmDouble* area_coordinates,IssmDouble xyz_zero[4][3],IssmDouble xyz_list[6][3],int numpoints){886 void Penta::GetAreaCoordinates(IssmDouble* area_coordinates,IssmDouble* xyz_zero,IssmDouble* xyz_list,int numpoints){ 887 887 /*Computeportion of the element that is grounded*/ 888 888 … … 891 891 IssmDouble xyz_bis[3][3]; 892 892 893 area_init=fabs(xyz_list[1 ][0]*xyz_list[2][1] - xyz_list[1][1]*xyz_list[2][0] + xyz_list[0][0]*xyz_list[1][1] - xyz_list[0][1]*xyz_list[1][0] + xyz_list[2][0]*xyz_list[0][1] - xyz_list[2][1]*xyz_list[0][0])/2.;893 area_init=fabs(xyz_list[1*3+0]*xyz_list[2*3+1] - xyz_list[1*3+1]*xyz_list[2*3+0] + xyz_list[0*3+0]*xyz_list[1*3+1] - xyz_list[0*3+1]*xyz_list[1*3+0] + xyz_list[2*3+0]*xyz_list[0*3+1] - xyz_list[2*3+1]*xyz_list[0*3+0])/2.; 894 894 895 895 /*Initialize xyz_list with original xyz_list of triangle coordinates*/ 896 896 for(j=0;j<3;j++){ 897 897 for(k=0;k<3;k++){ 898 xyz_bis[j][k]=xyz_list[j ][k];898 xyz_bis[j][k]=xyz_list[j*3+k]; 899 899 } 900 900 } … … 903 903 for(k=0;k<3;k++){ 904 904 /*Change appropriate line*/ 905 xyz_bis[j][k]=xyz_zero[i ][k];905 xyz_bis[j][k]=xyz_zero[i*3+k]; 906 906 } 907 907 … … 913 913 for(k=0;k<3;k++){ 914 914 /*Reinitialize xyz_list with original coordinates*/ 915 xyz_bis[j][k]=xyz_list[j ][k];915 xyz_bis[j][k]=xyz_list[j*3+k]; 916 916 } 917 917 } … … 1512 1512 /*}}}*/ 1513 1513 /*FUNCTION Penta::GetQuadNormal {{{*/ 1514 void Penta:: GetQuadNormal(IssmDouble* normal,IssmDouble xyz_list[4][3]){1514 void Penta:: GetQuadNormal(IssmDouble* normal,IssmDouble* xyz_list){ 1515 1515 1516 1516 /*Build unit outward pointing vector*/ … … 1519 1519 IssmDouble norm; 1520 1520 1521 AB[0]=xyz_list[1 ][0] - xyz_list[0][0];1522 AB[1]=xyz_list[1 ][1] - xyz_list[0][1];1523 AB[2]=xyz_list[1 ][2] - xyz_list[0][2];1524 AC[0]=xyz_list[2 ][0] - xyz_list[0][0];1525 AC[1]=xyz_list[2 ][1] - xyz_list[0][1];1526 AC[2]=xyz_list[2 ][2] - xyz_list[0][2];1521 AB[0]=xyz_list[1*3+0] - xyz_list[0*3+0]; 1522 AB[1]=xyz_list[1*3+1] - xyz_list[0*3+1]; 1523 AB[2]=xyz_list[1*3+2] - xyz_list[0*3+2]; 1524 AC[0]=xyz_list[2*3+0] - xyz_list[0*3+0]; 1525 AC[1]=xyz_list[2*3+1] - xyz_list[0*3+1]; 1526 AC[2]=xyz_list[2*3+2] - xyz_list[0*3+2]; 1527 1527 1528 1528 cross(normal,AB,AC); … … 1648 1648 } 1649 1649 /*}}}*/ 1650 /*FUNCTION Penta:: GetZeroLevelsetCoordinates{{{*/1651 void Penta:: GetZeroLevelsetCoordinates(IssmDouble* xyz_zero,IssmDouble xyz_list[6][3],int levelsetenum){1650 /*FUNCTION Penta::ZeroLevelsetCoordinates{{{*/ 1651 void Penta::ZeroLevelsetCoordinates(IssmDouble** pxyz_zero,IssmDouble* xyz_list,int levelsetenum){ 1652 1652 /*Computeportion of the element that is grounded*/ 1653 1653 … … 1655 1655 IssmDouble s1,s2; 1656 1656 IssmDouble levelset[NUMVERTICES]; 1657 IssmDouble* xyz_zero = xNew<IssmDouble>(4*3); 1657 1658 1658 1659 /*Recover parameters and values*/ … … 1666 1667 if(levelset[2]>0.) normal_orientation=1; 1667 1668 /*New point 1*/ 1668 xyz_zero[3*normal_orientation+0]=xyz_list[2 ][0]+s1*(xyz_list[1][0]-xyz_list[2][0]);1669 xyz_zero[3*normal_orientation+1]=xyz_list[2 ][1]+s1*(xyz_list[1][1]-xyz_list[2][1]);1670 xyz_zero[3*normal_orientation+2]=xyz_list[2 ][2]+s1*(xyz_list[1][2]-xyz_list[2][2]);1669 xyz_zero[3*normal_orientation+0]=xyz_list[2*3+0]+s1*(xyz_list[1*3+0]-xyz_list[2*3+0]); 1670 xyz_zero[3*normal_orientation+1]=xyz_list[2*3+1]+s1*(xyz_list[1*3+1]-xyz_list[2*3+1]); 1671 xyz_zero[3*normal_orientation+2]=xyz_list[2*3+2]+s1*(xyz_list[1*3+2]-xyz_list[2*3+2]); 1671 1672 1672 1673 /*New point 0*/ 1673 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[2 ][0]+s2*(xyz_list[0][0]-xyz_list[2][0]);1674 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[2 ][1]+s2*(xyz_list[0][1]-xyz_list[2][1]);1675 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[2 ][2]+s2*(xyz_list[0][2]-xyz_list[2][2]);1674 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[2*3+0]+s2*(xyz_list[0*3+0]-xyz_list[2*3+0]); 1675 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[2*3+1]+s2*(xyz_list[0*3+1]-xyz_list[2*3+1]); 1676 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[2*3+2]+s2*(xyz_list[0*3+2]-xyz_list[2*3+2]); 1676 1677 1677 1678 /*New point 3*/ 1678 xyz_zero[3*(2+1-normal_orientation)+0]=xyz_list[5 ][0]+s1*(xyz_list[4][0]-xyz_list[5][0]);1679 xyz_zero[3*(2+1-normal_orientation)+1]=xyz_list[5 ][1]+s1*(xyz_list[4][1]-xyz_list[5][1]);1680 xyz_zero[3*(2+1-normal_orientation)+2]=xyz_list[5 ][2]+s1*(xyz_list[4][2]-xyz_list[5][2]);1679 xyz_zero[3*(2+1-normal_orientation)+0]=xyz_list[5*3+0]+s1*(xyz_list[4*3+0]-xyz_list[5*3+0]); 1680 xyz_zero[3*(2+1-normal_orientation)+1]=xyz_list[5*3+1]+s1*(xyz_list[4*3+1]-xyz_list[5*3+1]); 1681 xyz_zero[3*(2+1-normal_orientation)+2]=xyz_list[5*3+2]+s1*(xyz_list[4*3+2]-xyz_list[5*3+2]); 1681 1682 1682 1683 /*New point 4*/ 1683 xyz_zero[3*(2+normal_orientation)+0]=xyz_list[5 ][0]+s2*(xyz_list[3][0]-xyz_list[5][0]);1684 xyz_zero[3*(2+normal_orientation)+1]=xyz_list[5 ][1]+s2*(xyz_list[3][1]-xyz_list[5][1]);1685 xyz_zero[3*(2+normal_orientation)+2]=xyz_list[5 ][2]+s2*(xyz_list[3][2]-xyz_list[5][2]);1684 xyz_zero[3*(2+normal_orientation)+0]=xyz_list[5*3+0]+s2*(xyz_list[3*3+0]-xyz_list[5*3+0]); 1685 xyz_zero[3*(2+normal_orientation)+1]=xyz_list[5*3+1]+s2*(xyz_list[3*3+1]-xyz_list[5*3+1]); 1686 xyz_zero[3*(2+normal_orientation)+2]=xyz_list[5*3+2]+s2*(xyz_list[3*3+2]-xyz_list[5*3+2]); 1686 1687 } 1687 1688 else if(levelset[1]*levelset[2]>0.){ //Nodes 1 and 2 are similar, so points must be found on segment 0-1 and 0-2 … … 1692 1693 if(levelset[0]>0.) normal_orientation=1; 1693 1694 /*New point 1*/ 1694 xyz_zero[3*normal_orientation+0]=xyz_list[0 ][0]+s1*(xyz_list[2][0]-xyz_list[0][0]);1695 xyz_zero[3*normal_orientation+1]=xyz_list[0 ][1]+s1*(xyz_list[2][1]-xyz_list[0][1]);1696 xyz_zero[3*normal_orientation+2]=xyz_list[0 ][2]+s1*(xyz_list[2][2]-xyz_list[0][2]);1695 xyz_zero[3*normal_orientation+0]=xyz_list[0*3+0]+s1*(xyz_list[2*3+0]-xyz_list[0*3+0]); 1696 xyz_zero[3*normal_orientation+1]=xyz_list[0*3+1]+s1*(xyz_list[2*3+1]-xyz_list[0*3+1]); 1697 xyz_zero[3*normal_orientation+2]=xyz_list[0*3+2]+s1*(xyz_list[2*3+2]-xyz_list[0*3+2]); 1697 1698 1698 1699 /*New point 2*/ 1699 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[0 ][0]+s2*(xyz_list[1][0]-xyz_list[0][0]);1700 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[0 ][1]+s2*(xyz_list[1][1]-xyz_list[0][1]);1701 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[0 ][2]+s2*(xyz_list[1][2]-xyz_list[0][2]);1700 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[0*3+0]+s2*(xyz_list[1*3+0]-xyz_list[0*3+0]); 1701 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[0*3+1]+s2*(xyz_list[1*3+1]-xyz_list[0*3+1]); 1702 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[0*3+2]+s2*(xyz_list[1*3+2]-xyz_list[0*3+2]); 1702 1703 1703 1704 /*New point 3*/ 1704 xyz_zero[3*(2+1-normal_orientation)+0]=xyz_list[3 ][0]+s1*(xyz_list[5][0]-xyz_list[3][0]);1705 xyz_zero[3*(2+1-normal_orientation)+1]=xyz_list[3 ][1]+s1*(xyz_list[5][1]-xyz_list[3][1]);1706 xyz_zero[3*(2+1-normal_orientation)+2]=xyz_list[3 ][2]+s1*(xyz_list[5][2]-xyz_list[3][2]);1705 xyz_zero[3*(2+1-normal_orientation)+0]=xyz_list[3*3+0]+s1*(xyz_list[5*3+0]-xyz_list[3*3+0]); 1706 xyz_zero[3*(2+1-normal_orientation)+1]=xyz_list[3*3+1]+s1*(xyz_list[5*3+1]-xyz_list[3*3+1]); 1707 xyz_zero[3*(2+1-normal_orientation)+2]=xyz_list[3*3+2]+s1*(xyz_list[5*3+2]-xyz_list[3*3+2]); 1707 1708 1708 1709 /*New point 4*/ 1709 xyz_zero[3*(2+normal_orientation)+0]=xyz_list[3 ][0]+s2*(xyz_list[4][0]-xyz_list[3][0]);1710 xyz_zero[3*(2+normal_orientation)+1]=xyz_list[3 ][1]+s2*(xyz_list[4][1]-xyz_list[3][1]);1711 xyz_zero[3*(2+normal_orientation)+2]=xyz_list[3 ][2]+s2*(xyz_list[4][2]-xyz_list[3][2]);1710 xyz_zero[3*(2+normal_orientation)+0]=xyz_list[3*3+0]+s2*(xyz_list[4*3+0]-xyz_list[3*3+0]); 1711 xyz_zero[3*(2+normal_orientation)+1]=xyz_list[3*3+1]+s2*(xyz_list[4*3+1]-xyz_list[3*3+1]); 1712 xyz_zero[3*(2+normal_orientation)+2]=xyz_list[3*3+2]+s2*(xyz_list[4*3+2]-xyz_list[3*3+2]); 1712 1713 } 1713 1714 else if(levelset[0]*levelset[2]>0.){ //Nodes 0 and 2 are similar, so points must be found on segment 1-0 and 1-2 … … 1718 1719 if(levelset[1]>0.) normal_orientation=1; 1719 1720 /*New point 0*/ 1720 xyz_zero[3*normal_orientation+0]=xyz_list[1 ][0]+s1*(xyz_list[0][0]-xyz_list[1][0]);1721 xyz_zero[3*normal_orientation+1]=xyz_list[1 ][1]+s1*(xyz_list[0][1]-xyz_list[1][1]);1722 xyz_zero[3*normal_orientation+2]=xyz_list[1 ][2]+s1*(xyz_list[0][2]-xyz_list[1][2]);1721 xyz_zero[3*normal_orientation+0]=xyz_list[1*3+0]+s1*(xyz_list[0*3+0]-xyz_list[1*3+0]); 1722 xyz_zero[3*normal_orientation+1]=xyz_list[1*3+1]+s1*(xyz_list[0*3+1]-xyz_list[1*3+1]); 1723 xyz_zero[3*normal_orientation+2]=xyz_list[1*3+2]+s1*(xyz_list[0*3+2]-xyz_list[1*3+2]); 1723 1724 1724 1725 /*New point 2*/ 1725 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[1 ][0]+s2*(xyz_list[2][0]-xyz_list[1][0]);1726 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[1 ][1]+s2*(xyz_list[2][1]-xyz_list[1][1]);1727 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[1 ][2]+s2*(xyz_list[2][2]-xyz_list[1][2]);1726 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[1*3+0]+s2*(xyz_list[2*3+0]-xyz_list[1*3+0]); 1727 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[1*3+1]+s2*(xyz_list[2*3+1]-xyz_list[1*3+1]); 1728 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[1*3+2]+s2*(xyz_list[2*3+2]-xyz_list[1*3+2]); 1728 1729 1729 1730 /*New point 3*/ 1730 xyz_zero[3*(2+1-normal_orientation)+0]=xyz_list[4 ][0]+s1*(xyz_list[3][0]-xyz_list[4][0]);1731 xyz_zero[3*(2+1-normal_orientation)+1]=xyz_list[4 ][1]+s1*(xyz_list[3][1]-xyz_list[4][1]);1732 xyz_zero[3*(2+1-normal_orientation)+2]=xyz_list[4 ][2]+s1*(xyz_list[3][2]-xyz_list[4][2]);1731 xyz_zero[3*(2+1-normal_orientation)+0]=xyz_list[4*3+0]+s1*(xyz_list[3*3+0]-xyz_list[4*3+0]); 1732 xyz_zero[3*(2+1-normal_orientation)+1]=xyz_list[4*3+1]+s1*(xyz_list[3*3+1]-xyz_list[4*3+1]); 1733 xyz_zero[3*(2+1-normal_orientation)+2]=xyz_list[4*3+2]+s1*(xyz_list[3*3+2]-xyz_list[4*3+2]); 1733 1734 1734 1735 /*New point 4*/ 1735 xyz_zero[3*(2+normal_orientation)+0]=xyz_list[4 ][0]+s2*(xyz_list[5][0]-xyz_list[4][0]);1736 xyz_zero[3*(2+normal_orientation)+1]=xyz_list[4 ][1]+s2*(xyz_list[5][1]-xyz_list[4][1]);1737 xyz_zero[3*(2+normal_orientation)+2]=xyz_list[4 ][2]+s2*(xyz_list[5][2]-xyz_list[4][2]);1736 xyz_zero[3*(2+normal_orientation)+0]=xyz_list[4*3+0]+s2*(xyz_list[5*3+0]-xyz_list[4*3+0]); 1737 xyz_zero[3*(2+normal_orientation)+1]=xyz_list[4*3+1]+s2*(xyz_list[5*3+1]-xyz_list[4*3+1]); 1738 xyz_zero[3*(2+normal_orientation)+2]=xyz_list[4*3+2]+s2*(xyz_list[5*3+2]-xyz_list[4*3+2]); 1738 1739 } 1739 1740 else if(levelset[0]==0. && levelset[1]==0.){ //front is on point 0 and 1 1740 xyz_zero[3*0+0]=xyz_list[0 ][0];1741 xyz_zero[3*0+1]=xyz_list[0 ][1];1742 xyz_zero[3*0+2]=xyz_list[0 ][2];1741 xyz_zero[3*0+0]=xyz_list[0*3+0]; 1742 xyz_zero[3*0+1]=xyz_list[0*3+1]; 1743 xyz_zero[3*0+2]=xyz_list[0*3+2]; 1743 1744 1744 1745 /*New point 2*/ 1745 xyz_zero[3*1+0]=xyz_list[1 ][0];1746 xyz_zero[3*1+1]=xyz_list[1 ][1];1747 xyz_zero[3*1+2]=xyz_list[1 ][2];1746 xyz_zero[3*1+0]=xyz_list[1*3+0]; 1747 xyz_zero[3*1+1]=xyz_list[1*3+1]; 1748 xyz_zero[3*1+2]=xyz_list[1*3+2]; 1748 1749 1749 1750 /*New point 3*/ 1750 xyz_zero[3*2+0]=xyz_list[4 ][0];1751 xyz_zero[3*2+1]=xyz_list[4 ][1];1752 xyz_zero[3*2+2]=xyz_list[4 ][2];1751 xyz_zero[3*2+0]=xyz_list[4*3+0]; 1752 xyz_zero[3*2+1]=xyz_list[4*3+1]; 1753 xyz_zero[3*2+2]=xyz_list[4*3+2]; 1753 1754 1754 1755 /*New point 4*/ 1755 xyz_zero[3*3+0]=xyz_list[3 ][0];1756 xyz_zero[3*3+1]=xyz_list[3 ][1];1757 xyz_zero[3*3+2]=xyz_list[3 ][2];1756 xyz_zero[3*3+0]=xyz_list[3*3+0]; 1757 xyz_zero[3*3+1]=xyz_list[3*3+1]; 1758 xyz_zero[3*3+2]=xyz_list[3*3+2]; 1758 1759 } 1759 1760 else if(levelset[0]==0. && levelset[2]==0.){ //front is on point 0 and 1 1760 xyz_zero[3*0+0]=xyz_list[2 ][0];1761 xyz_zero[3*0+1]=xyz_list[2 ][1];1762 xyz_zero[3*0+2]=xyz_list[2 ][2];1761 xyz_zero[3*0+0]=xyz_list[2*3+0]; 1762 xyz_zero[3*0+1]=xyz_list[2*3+1]; 1763 xyz_zero[3*0+2]=xyz_list[2*3+2]; 1763 1764 1764 1765 /*New point 2*/ 1765 xyz_zero[3*1+0]=xyz_list[0 ][0];1766 xyz_zero[3*1+1]=xyz_list[0 ][1];1767 xyz_zero[3*1+2]=xyz_list[0 ][2];1766 xyz_zero[3*1+0]=xyz_list[0*3+0]; 1767 xyz_zero[3*1+1]=xyz_list[0*3+1]; 1768 xyz_zero[3*1+2]=xyz_list[0*3+2]; 1768 1769 1769 1770 /*New point 3*/ 1770 xyz_zero[3*2+0]=xyz_list[3 ][0];1771 xyz_zero[3*2+1]=xyz_list[3 ][1];1772 xyz_zero[3*2+2]=xyz_list[3 ][2];1771 xyz_zero[3*2+0]=xyz_list[3*3+0]; 1772 xyz_zero[3*2+1]=xyz_list[3*3+1]; 1773 xyz_zero[3*2+2]=xyz_list[3*3+2]; 1773 1774 1774 1775 /*New point 4*/ 1775 xyz_zero[3*3+0]=xyz_list[5 ][0];1776 xyz_zero[3*3+1]=xyz_list[5 ][1];1777 xyz_zero[3*3+2]=xyz_list[5 ][2];1776 xyz_zero[3*3+0]=xyz_list[5*3+0]; 1777 xyz_zero[3*3+1]=xyz_list[5*3+1]; 1778 xyz_zero[3*3+2]=xyz_list[5*3+2]; 1778 1779 } 1779 1780 else if(levelset[1]==0. && levelset[2]==0.){ //front is on point 0 and 1 1780 xyz_zero[3*0+0]=xyz_list[1 ][0];1781 xyz_zero[3*0+1]=xyz_list[1 ][1];1782 xyz_zero[3*0+2]=xyz_list[1 ][2];1781 xyz_zero[3*0+0]=xyz_list[1*3+0]; 1782 xyz_zero[3*0+1]=xyz_list[1*3+1]; 1783 xyz_zero[3*0+2]=xyz_list[1*3+2]; 1783 1784 1784 1785 /*New point 2*/ 1785 xyz_zero[3*1+0]=xyz_list[2 ][0];1786 xyz_zero[3*1+1]=xyz_list[2 ][1];1787 xyz_zero[3*1+2]=xyz_list[2 ][2];1786 xyz_zero[3*1+0]=xyz_list[2*3+0]; 1787 xyz_zero[3*1+1]=xyz_list[2*3+1]; 1788 xyz_zero[3*1+2]=xyz_list[2*3+2]; 1788 1789 1789 1790 /*New point 3*/ 1790 xyz_zero[3*2+0]=xyz_list[5 ][0];1791 xyz_zero[3*2+1]=xyz_list[5 ][1];1792 xyz_zero[3*2+2]=xyz_list[5 ][2];1791 xyz_zero[3*2+0]=xyz_list[5*3+0]; 1792 xyz_zero[3*2+1]=xyz_list[5*3+1]; 1793 xyz_zero[3*2+2]=xyz_list[5*3+2]; 1793 1794 1794 1795 /*New point 4*/ 1795 xyz_zero[3*3+0]=xyz_list[4 ][0];1796 xyz_zero[3*3+1]=xyz_list[4 ][1];1797 xyz_zero[3*3+2]=xyz_list[4 ][2];1796 xyz_zero[3*3+0]=xyz_list[4*3+0]; 1797 xyz_zero[3*3+1]=xyz_list[4*3+1]; 1798 xyz_zero[3*3+2]=xyz_list[4*3+2]; 1798 1799 } 1799 1800 else _error_("Case not covered"); 1801 1802 /*Assign output pointer*/ 1803 *pxyz_zero= xyz_zero; 1800 1804 } 1801 1805 /*}}}*/ … … 8764 8768 IssmDouble surface_under_water,base_under_water,pressure; 8765 8769 IssmDouble xyz_list[NUMVERTICES][3]; 8766 IssmDouble xyz_list_front[4][3];8770 IssmDouble* xyz_list_front = NULL; 8767 8771 IssmDouble area_coordinates[4][3]; 8768 8772 IssmDouble normal[3]; … … 8782 8786 rho_ice =matpar->GetRhoIce(); 8783 8787 gravity =matpar->GetG(); 8784 GetZeroLevelsetCoordinates(&xyz_list_front[0][0],xyz_list,MaskIceLevelsetEnum);8785 GetAreaCoordinates(&area_coordinates[0][0],xyz_list_front, xyz_list,4);8788 ZeroLevelsetCoordinates(&xyz_list_front,&xyz_list[0][0],MaskIceLevelsetEnum); 8789 GetAreaCoordinates(&area_coordinates[0][0],xyz_list_front,&xyz_list[0][0],4); 8786 8790 GetQuadNormal(&normal[0],xyz_list_front); 8787 8791 … … 8854 8858 IssmDouble surface_under_water,base_under_water,pressure; 8855 8859 IssmDouble xyz_list[NUMVERTICES][3]; 8856 IssmDouble xyz_list_front[4][3];8860 IssmDouble* xyz_list_front = NULL; 8857 8861 IssmDouble area_coordinates[4][3]; 8858 8862 IssmDouble normal[3]; … … 8869 8873 8870 8874 /*Initialize Element matrix and vectors*/ 8875 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES); 8871 8876 ElementVector* pe = new ElementVector(nodes,vnumnodes+pnumnodes,this->parameters,FSvelocityEnum); 8872 8877 IssmDouble* vbasis = xNew<IssmDouble>(vnumnodes); 8873 8878 8874 8879 /*Retrieve all inputs and parameters*/ 8875 ::GetVerticesCoordinates(&xyz_list[0][0],vertices,NUMVERTICES);8876 8880 rho_water=matpar->GetRhoWater(); 8877 8881 rho_ice =matpar->GetRhoIce(); 8878 8882 gravity =matpar->GetG(); 8879 GetZeroLevelsetCoordinates(&xyz_list_front[0][0],xyz_list,MaskIceLevelsetEnum);8880 GetAreaCoordinates(&area_coordinates[0][0],xyz_list_front, xyz_list,4);8883 ZeroLevelsetCoordinates(&xyz_list_front,&xyz_list[0][0],MaskIceLevelsetEnum); 8884 GetAreaCoordinates(&area_coordinates[0][0],xyz_list_front,&xyz_list[0][0],4); 8881 8885 GetQuadNormal(&normal[0],xyz_list_front); 8882 8886 … … 8910 8914 /*Clean up and return*/ 8911 8915 xDelete<int>(cs_list); 8916 xDelete<IssmDouble>(xyz_list_front); 8912 8917 xDelete<IssmDouble>(vbasis); 8913 8918 delete gauss; -
issm/trunk-jpl/src/c/classes/Elements/Penta.h
r16833 r16838 114 114 int PressureInterpolation(); 115 115 bool IsZeroLevelset(int levelset_enum); 116 void ZeroLevelsetCoordinates(IssmDouble** pxyz_zero,IssmDouble* xyz_list,int levelsetenum); 116 117 117 118 void ResultInterpolation(int* pinterpolation,int output_enum); … … 211 212 IssmDouble EnthalpyDiffusionParameter(IssmDouble enthalpy,IssmDouble pressure); 212 213 IssmDouble EnthalpyDiffusionParameterVolume(int numvertices,IssmDouble* enthalpy,IssmDouble* pressure); 213 void GetAreaCoordinates(IssmDouble *area_coordinates,IssmDouble xyz_zero[3][3],IssmDouble xyz_list[6][3],int numpoints);214 void GetAreaCoordinates(IssmDouble *area_coordinates,IssmDouble* xyz_zero,IssmDouble* xyz_list,int numpoints); 214 215 215 216 void GetVertexPidList(int* doflist); … … 231 232 void GetMaterialInputValue(IssmDouble* pvalue,Node* node,int enumtype); 232 233 void GetPhi(IssmDouble* phi, IssmDouble* epsilon, IssmDouble viscosity); 233 void GetQuadNormal(IssmDouble* normal,IssmDouble xyz_list[4][3]);234 void GetQuadNormal(IssmDouble* normal,IssmDouble* xyz_list); 234 235 void GetStrainRate3dHO(IssmDouble* epsilon,IssmDouble* xyz_list,Gauss* gauss, Input* vx_input, Input* vy_input); 235 236 void GetStrainRate3d(IssmDouble* epsilon,IssmDouble* xyz_list, Gauss* gauss, Input* vx_input, Input* vy_input, Input* vz_input); 236 237 Penta* GetUpperElement(void); 237 void GetZeroLevelsetCoordinates(IssmDouble* xyz_zero,IssmDouble xyz_list[6][3],int levelsetenum);238 238 Penta* GetLowerElement(void); 239 239 void InputChangeName(int input_enum, int enum_type_old); … … 247 247 bool IsNodeOnShelfFromFlags(IssmDouble* flags); 248 248 void JacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss); 249 void JacobianDeterminantSurface(IssmDouble* pJdet, IssmDouble* xyz_list,Gauss* gauss){_error_("not implemented yet");}; 249 250 void JacobianDeterminantBase(IssmDouble* pJdet,IssmDouble* xyz_list_base,Gauss* gauss); 250 251 void JacobianDeterminantTop(IssmDouble* pJdet,IssmDouble* xyz_list_base,Gauss* gauss); … … 252 253 Gauss* NewGauss(void); 253 254 Gauss* NewGauss(int order); 255 Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order){_error_("not implemented yet");}; 254 256 Gauss* NewGaussBase(int order); 255 257 Gauss* NewGaussTop(int order); -
issm/trunk-jpl/src/c/classes/Elements/PentaRef.cpp
r16818 r16838 1945 1945 /*}}}*/ 1946 1946 /*FUNCTION PentaRef::GetQuadJacobianDeterminant{{{*/ 1947 void PentaRef::GetQuadJacobianDeterminant(IssmDouble* Jdet,IssmDouble xyz_list[4][3],Gauss* gauss){1947 void PentaRef::GetQuadJacobianDeterminant(IssmDouble* Jdet,IssmDouble* xyz_list,Gauss* gauss){ 1948 1948 /*This routine returns the values of the nodal functions at the gaussian point.*/ 1949 1949 1950 1950 IssmDouble x1,x2,x3,x4,y1,y2,y3,y4,z1,z2,z3,z4; 1951 1951 1952 x1=xyz_list[0 ][0];1953 y1=xyz_list[0 ][1];1954 z1=xyz_list[0 ][2];1955 x2=xyz_list[1 ][0];1956 y2=xyz_list[1 ][1];1957 z2=xyz_list[1 ][2];1958 x3=xyz_list[2 ][0];1959 y3=xyz_list[2 ][1];1960 z3=xyz_list[2 ][2];1961 x4=xyz_list[3 ][0];1962 y4=xyz_list[3 ][1];1963 z4=xyz_list[3 ][2];1952 x1=xyz_list[0*3+0]; 1953 y1=xyz_list[0*3+1]; 1954 z1=xyz_list[0*3+2]; 1955 x2=xyz_list[1*3+0]; 1956 y2=xyz_list[1*3+1]; 1957 z2=xyz_list[1*3+2]; 1958 x3=xyz_list[2*3+0]; 1959 y3=xyz_list[2*3+1]; 1960 z3=xyz_list[2*3+2]; 1961 x4=xyz_list[3*3+0]; 1962 y4=xyz_list[3*3+1]; 1963 z4=xyz_list[3*3+2]; 1964 1964 1965 1965 /*Jdet = (Area of the trapezoid)/(Area trapezoid ref) with AreaRef = 4*/ -
issm/trunk-jpl/src/c/classes/Elements/PentaRef.h
r16818 r16838 35 35 void GetNodalFunctionsP1DerivativesReference(IssmDouble* dl1dl6,Gauss* gauss); 36 36 void GetNodalFunctionsMINIDerivativesReference(IssmDouble* dl1dl7,Gauss* gauss); 37 void GetQuadJacobianDeterminant(IssmDouble* Jdet, IssmDouble xyz_list[4][3],Gauss* gauss);37 void GetQuadJacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss); 38 38 void GetJacobian(IssmDouble* J, IssmDouble* xyz_list,Gauss* gauss); 39 39 void GetJacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss); -
issm/trunk-jpl/src/c/classes/Elements/Seg.h
r16833 r16838 114 114 bool IsNodeOnShelfFromFlags(IssmDouble* flags){_error_("not implemented yet");}; 115 115 void JacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss){_error_("not implemented yet");}; 116 void JacobianDeterminantSurface(IssmDouble* pJdet, IssmDouble* xyz_list,Gauss* gauss){_error_("not implemented yet");}; 116 117 void JacobianDeterminantBase(IssmDouble* pJdet,IssmDouble* xyz_list_base,Gauss* gauss){_error_("not implemented yet");}; 117 118 void JacobianDeterminantTop(IssmDouble* pJdet,IssmDouble* xyz_list_base,Gauss* gauss){_error_("not implemented yet");}; … … 142 143 Gauss* NewGauss(void){_error_("not implemented yet");}; 143 144 Gauss* NewGauss(int order){_error_("not implemented yet");}; 145 Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order){_error_("not implemented yet");}; 144 146 Gauss* NewGaussBase(int order){_error_("not implemented yet");}; 145 147 Gauss* NewGaussTop(int order){_error_("not implemented yet");}; … … 151 153 void ViscositySSA(IssmDouble* pviscosity,IssmDouble* xyz_list,Gauss* gauss,Input* vx_input,Input* vy_input){_error_("not implemented");}; 152 154 bool IsZeroLevelset(int levelset_enum){_error_("not implemented");}; 155 void ZeroLevelsetCoordinates(IssmDouble** pxyz_zero,IssmDouble* xyz_list,int levelsetenum){_error_("not implemented");}; 153 156 154 157 #ifdef _HAVE_THERMAL_ -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r16834 r16838 879 879 /*}}}*/ 880 880 /*FUNCTION Tria::GetAreaCoordinates{{{*/ 881 void Tria::GetAreaCoordinates(IssmDouble* area_coordinates,IssmDouble xyz_zero[3][3],IssmDouble xyz_list[3][3],int numpoints){881 void Tria::GetAreaCoordinates(IssmDouble* area_coordinates,IssmDouble* xyz_zero,IssmDouble* xyz_list,int numpoints){ 882 882 /*Computeportion of the element that is grounded*/ 883 883 … … 891 891 for(j=0;j<3;j++){ 892 892 for(k=0;k<3;k++){ 893 xyz_bis[j][k]=xyz_list[j ][k];893 xyz_bis[j][k]=xyz_list[j*3+k]; 894 894 } 895 895 } … … 898 898 for(k=0;k<3;k++){ 899 899 /*Change appropriate line*/ 900 xyz_bis[j][k]=xyz_zero[i ][k];900 xyz_bis[j][k]=xyz_zero[i*3+k]; 901 901 } 902 902 … … 908 908 for(k=0;k<3;k++){ 909 909 /*Reinitialize xyz_list with original coordinates*/ 910 xyz_bis[j][k]=xyz_list[j ][k];910 xyz_bis[j][k]=xyz_list[j*3+k]; 911 911 } 912 912 } … … 1184 1184 } 1185 1185 /*}}}*/ 1186 /*FUNCTION Tria::GetZeroLevelsetCoordinates{{{*/ 1187 void Tria::GetZeroLevelsetCoordinates(IssmDouble* xyz_zero,IssmDouble xyz_list[3][3],int levelsetenum){ 1188 /*Computeportion of the element that is grounded*/ 1186 /*FUNCTION Tria::ZeroLevelsetCoordinates{{{*/ 1187 void Tria::ZeroLevelsetCoordinates(IssmDouble** pxyz_zero,IssmDouble* xyz_list,int levelsetenum){ 1189 1188 1190 1189 int normal_orientation=0; … … 1193 1192 1194 1193 /*Recover parameters and values*/ 1194 IssmDouble* xyz_zero = xNew<IssmDouble>(2*3); 1195 1195 GetInputListOnVertices(&levelset[0],levelsetenum); 1196 1196 … … 1202 1202 if(levelset[2]>0.) normal_orientation=1; 1203 1203 /*New point 1*/ 1204 xyz_zero[3*normal_orientation+0]=xyz_list[2 ][0]+s1*(xyz_list[1][0]-xyz_list[2][0]);1205 xyz_zero[3*normal_orientation+1]=xyz_list[2 ][1]+s1*(xyz_list[1][1]-xyz_list[2][1]);1206 xyz_zero[3*normal_orientation+2]=xyz_list[2 ][2]+s1*(xyz_list[1][2]-xyz_list[2][2]);1204 xyz_zero[3*normal_orientation+0]=xyz_list[2*3+0]+s1*(xyz_list[1*3+0]-xyz_list[2*3+0]); 1205 xyz_zero[3*normal_orientation+1]=xyz_list[2*3+1]+s1*(xyz_list[1*3+1]-xyz_list[2*3+1]); 1206 xyz_zero[3*normal_orientation+2]=xyz_list[2*3+2]+s1*(xyz_list[1*3+2]-xyz_list[2*3+2]); 1207 1207 1208 1208 /*New point 0*/ 1209 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[2 ][0]+s2*(xyz_list[0][0]-xyz_list[2][0]);1210 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[2 ][1]+s2*(xyz_list[0][1]-xyz_list[2][1]);1211 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[2 ][2]+s2*(xyz_list[0][2]-xyz_list[2][2]);1209 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[2*3+0]+s2*(xyz_list[0*3+0]-xyz_list[2*3+0]); 1210 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[2*3+1]+s2*(xyz_list[0*3+1]-xyz_list[2*3+1]); 1211 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[2*3+2]+s2*(xyz_list[0*3+2]-xyz_list[2*3+2]); 1212 1212 } 1213 1213 else if(levelset[1]*levelset[2]>0.){ //Nodes 1 and 2 are similar, so points must be found on segment 0-1 and 0-2 … … 1218 1218 if(levelset[0]>0.) normal_orientation=1; 1219 1219 /*New point 1*/ 1220 xyz_zero[3*normal_orientation+0]=xyz_list[0 ][0]+s1*(xyz_list[2][0]-xyz_list[0][0]);1221 xyz_zero[3*normal_orientation+1]=xyz_list[0 ][1]+s1*(xyz_list[2][1]-xyz_list[0][1]);1222 xyz_zero[3*normal_orientation+2]=xyz_list[0 ][2]+s1*(xyz_list[2][2]-xyz_list[0][2]);1220 xyz_zero[3*normal_orientation+0]=xyz_list[0*3+0]+s1*(xyz_list[2*3+0]-xyz_list[0*3+0]); 1221 xyz_zero[3*normal_orientation+1]=xyz_list[0*3+1]+s1*(xyz_list[2*3+1]-xyz_list[0*3+1]); 1222 xyz_zero[3*normal_orientation+2]=xyz_list[0*3+2]+s1*(xyz_list[2*3+2]-xyz_list[0*3+2]); 1223 1223 1224 1224 /*New point 2*/ 1225 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[0 ][0]+s2*(xyz_list[1][0]-xyz_list[0][0]);1226 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[0 ][1]+s2*(xyz_list[1][1]-xyz_list[0][1]);1227 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[0 ][2]+s2*(xyz_list[1][2]-xyz_list[0][2]);1225 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[0*3+0]+s2*(xyz_list[1*3+0]-xyz_list[0*3+0]); 1226 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[0*3+1]+s2*(xyz_list[1*3+1]-xyz_list[0*3+1]); 1227 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[0*3+2]+s2*(xyz_list[1*3+2]-xyz_list[0*3+2]); 1228 1228 } 1229 1229 else if(levelset[0]*levelset[2]>0.){ //Nodes 0 and 2 are similar, so points must be found on segment 1-0 and 1-2 … … 1234 1234 if(levelset[1]>0.) normal_orientation=1; 1235 1235 /*New point 0*/ 1236 xyz_zero[3*normal_orientation+0]=xyz_list[1 ][0]+s1*(xyz_list[0][0]-xyz_list[1][0]);1237 xyz_zero[3*normal_orientation+1]=xyz_list[1 ][1]+s1*(xyz_list[0][1]-xyz_list[1][1]);1238 xyz_zero[3*normal_orientation+2]=xyz_list[1 ][2]+s1*(xyz_list[0][2]-xyz_list[1][2]);1236 xyz_zero[3*normal_orientation+0]=xyz_list[1*3+0]+s1*(xyz_list[0*3+0]-xyz_list[1*3+0]); 1237 xyz_zero[3*normal_orientation+1]=xyz_list[1*3+1]+s1*(xyz_list[0*3+1]-xyz_list[1*3+1]); 1238 xyz_zero[3*normal_orientation+2]=xyz_list[1*3+2]+s1*(xyz_list[0*3+2]-xyz_list[1*3+2]); 1239 1239 1240 1240 /*New point 2*/ 1241 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[1 ][0]+s2*(xyz_list[2][0]-xyz_list[1][0]);1242 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[1 ][1]+s2*(xyz_list[2][1]-xyz_list[1][1]);1243 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[1 ][2]+s2*(xyz_list[2][2]-xyz_list[1][2]);1241 xyz_zero[3*(1-normal_orientation)+0]=xyz_list[1*3+0]+s2*(xyz_list[2*3+0]-xyz_list[1*3+0]); 1242 xyz_zero[3*(1-normal_orientation)+1]=xyz_list[1*3+1]+s2*(xyz_list[2*3+1]-xyz_list[1*3+1]); 1243 xyz_zero[3*(1-normal_orientation)+2]=xyz_list[1*3+2]+s2*(xyz_list[2*3+2]-xyz_list[1*3+2]); 1244 1244 } 1245 1245 else if(levelset[0]==0. && levelset[1]==0.){ //front is on point 0 and 1 1246 xyz_zero[3*0+0]=xyz_list[0 ][0];1247 xyz_zero[3*0+1]=xyz_list[0 ][1];1248 xyz_zero[3*0+2]=xyz_list[0 ][2];1246 xyz_zero[3*0+0]=xyz_list[0*3+0]; 1247 xyz_zero[3*0+1]=xyz_list[0*3+1]; 1248 xyz_zero[3*0+2]=xyz_list[0*3+2]; 1249 1249 1250 1250 /*New point 2*/ 1251 xyz_zero[3*1+0]=xyz_list[1 ][0];1252 xyz_zero[3*1+1]=xyz_list[1 ][1];1253 xyz_zero[3*1+2]=xyz_list[1 ][2];1251 xyz_zero[3*1+0]=xyz_list[1*3+0]; 1252 xyz_zero[3*1+1]=xyz_list[1*3+1]; 1253 xyz_zero[3*1+2]=xyz_list[1*3+2]; 1254 1254 } 1255 1255 else if(levelset[0]==0. && levelset[2]==0.){ //front is on point 0 and 1 1256 xyz_zero[3*0+0]=xyz_list[2 ][0];1257 xyz_zero[3*0+1]=xyz_list[2 ][1];1258 xyz_zero[3*0+2]=xyz_list[2 ][2];1256 xyz_zero[3*0+0]=xyz_list[2*3+0]; 1257 xyz_zero[3*0+1]=xyz_list[2*3+1]; 1258 xyz_zero[3*0+2]=xyz_list[2*3+2]; 1259 1259 1260 1260 /*New point 2*/ 1261 xyz_zero[3*1+0]=xyz_list[0 ][0];1262 xyz_zero[3*1+1]=xyz_list[0 ][1];1263 xyz_zero[3*1+2]=xyz_list[0 ][2];1261 xyz_zero[3*1+0]=xyz_list[0*3+0]; 1262 xyz_zero[3*1+1]=xyz_list[0*3+1]; 1263 xyz_zero[3*1+2]=xyz_list[0*3+2]; 1264 1264 } 1265 1265 else if(levelset[1]==0. && levelset[2]==0.){ //front is on point 0 and 1 1266 xyz_zero[3*0+0]=xyz_list[1 ][0];1267 xyz_zero[3*0+1]=xyz_list[1 ][1];1268 xyz_zero[3*0+2]=xyz_list[1 ][2];1266 xyz_zero[3*0+0]=xyz_list[1*3+0]; 1267 xyz_zero[3*0+1]=xyz_list[1*3+1]; 1268 xyz_zero[3*0+2]=xyz_list[1*3+2]; 1269 1269 1270 1270 /*New point 2*/ 1271 xyz_zero[3*1+0]=xyz_list[2 ][0];1272 xyz_zero[3*1+1]=xyz_list[2 ][1];1273 xyz_zero[3*1+2]=xyz_list[2 ][2];1271 xyz_zero[3*1+0]=xyz_list[2*3+0]; 1272 xyz_zero[3*1+1]=xyz_list[2*3+1]; 1273 xyz_zero[3*1+2]=xyz_list[2*3+2]; 1274 1274 } 1275 1275 else _error_("Case not covered"); 1276 1277 /*Assign output pointer*/ 1278 *pxyz_zero= xyz_zero; 1276 1279 } 1277 1280 /*}}}*/ … … 2014 2017 } 2015 2018 /*}}}*/ 2019 /*FUNCTION Tria::JacobianDeterminantSurface{{{*/ 2020 void Tria::JacobianDeterminantSurface(IssmDouble* pJdet,IssmDouble* xyz_list,Gauss* gauss){ 2021 2022 _assert_(gauss->Enum()==GaussTriaEnum); 2023 this->GetSegmentJacobianDeterminant(pJdet,xyz_list,(GaussTria*)gauss); 2024 2025 } 2026 /*}}}*/ 2016 2027 /*FUNCTION Tria::HasEdgeOnBed {{{*/ 2017 2028 bool Tria::HasEdgeOnBed(){ … … 2207 2218 Gauss* Tria::NewGauss(int order){ 2208 2219 return new GaussTria(order); 2220 } 2221 /*}}}*/ 2222 /*FUNCTION Tria::NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order){{{*/ 2223 Gauss* Tria::NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order){ 2224 2225 IssmDouble area_coordinates[2][3]; 2226 2227 GetAreaCoordinates(&area_coordinates[0][0],xyz_list_front,xyz_list,2); 2228 2229 return new GaussTria(area_coordinates,order); 2209 2230 } 2210 2231 /*}}}*/ … … 3930 3951 IssmDouble Jdet,water_pressure,air_pressure,pressure; 3931 3952 IssmDouble xyz_list[NUMVERTICES][3]; 3932 IssmDouble xyz_list_front[2][3];3953 IssmDouble* xyz_list_front = NULL; 3933 3954 IssmDouble area_coordinates[2][3]; 3934 3955 IssmDouble normal[2]; … … 3953 3974 rho_ice = matpar->GetRhoIce(); 3954 3975 gravity = matpar->GetG(); 3955 GetZeroLevelsetCoordinates(&xyz_list_front[0][0],xyz_list,MaskIceLevelsetEnum);3956 GetAreaCoordinates(&area_coordinates[0][0],xyz_list_front, xyz_list,2);3957 NormalBase(&normal[0], &xyz_list_front[0][0]);3976 ZeroLevelsetCoordinates(&xyz_list_front,&xyz_list[0][0],MaskIceLevelsetEnum); 3977 GetAreaCoordinates(&area_coordinates[0][0],xyz_list_front,&xyz_list[0][0],2); 3978 NormalBase(&normal[0],xyz_list_front); 3958 3979 3959 3980 /*Start looping on Gaussian points*/ 3960 IssmDouble ymax=max(xyz_list_front[0 ][1],xyz_list_front[1][1]);3961 IssmDouble ymin=min(xyz_list_front[0 ][1],xyz_list_front[1][1]);3981 IssmDouble ymax=max(xyz_list_front[0*3+1],xyz_list_front[1*3+1]); 3982 IssmDouble ymin=min(xyz_list_front[0*3+1],xyz_list_front[1*3+1]); 3962 3983 if(ymax>0. && ymin<0.) gauss=new GaussTria(area_coordinates,30); //refined in vertical because of the sea level discontinuity 3963 3984 else gauss=new GaussTria(area_coordinates,3); … … 3968 3989 y_g=GetYcoord(gauss); 3969 3990 GetNodalFunctionsVelocity(vbasis,gauss); 3970 GetSegmentJacobianDeterminant(&Jdet, &xyz_list_front[0][0],gauss);3991 GetSegmentJacobianDeterminant(&Jdet,xyz_list_front,gauss); 3971 3992 3972 3993 water_pressure = rho_water*gravity*min(0.,y_g); //0 if the gaussian point is above water level … … 3980 4001 } 3981 4002 3982 3983 4003 /*Transform coordinate system*/ 3984 4004 ::TransformLoadVectorCoord(pe,nodes,(vnumnodes+pnumnodes),cs_list); … … 3986 4006 /*Clean up and return*/ 3987 4007 xDelete<int>(cs_list); 4008 xDelete<IssmDouble>(xyz_list_front); 3988 4009 xDelete<IssmDouble>(vbasis); 3989 4010 delete gauss; … … 4201 4222 IssmDouble surface_under_water,base_under_water,pressure; 4202 4223 IssmDouble xyz_list[NUMVERTICES][3]; 4203 IssmDouble xyz_list_front[2][3];4224 IssmDouble *xyz_list_front = NULL; 4204 4225 IssmDouble area_coordinates[2][3]; 4205 4226 IssmDouble normal[2]; … … 4219 4240 rho_ice = matpar->GetRhoIce(); 4220 4241 gravity = matpar->GetG(); 4221 GetZeroLevelsetCoordinates(&xyz_list_front[0][0],xyz_list,MaskIceLevelsetEnum);4222 GetAreaCoordinates(&area_coordinates[0][0],xyz_list_front, xyz_list,2);4223 NormalBase(&normal[0], &xyz_list_front[0][0]);4242 ZeroLevelsetCoordinates(&xyz_list_front,&xyz_list[0][0],MaskIceLevelsetEnum); 4243 GetAreaCoordinates(&area_coordinates[0][0],xyz_list_front,&xyz_list[0][0],2); 4244 NormalBase(&normal[0],xyz_list_front); 4224 4245 4225 4246 /*Start looping on Gaussian points*/ … … 4230 4251 thickness_input->GetInputValue(&thickness,gauss); 4231 4252 bed_input->GetInputValue(&bed,gauss); 4232 GetSegmentJacobianDeterminant(&Jdet, &xyz_list_front[0][0],gauss);4253 GetSegmentJacobianDeterminant(&Jdet,xyz_list_front,gauss); 4233 4254 GetNodalFunctions(basis,gauss); 4234 4255 … … 4251 4272 /*Clean up and return*/ 4252 4273 xDelete<IssmDouble>(basis); 4274 xDelete<IssmDouble>(xyz_list_front); 4253 4275 delete gauss; 4254 4276 return pe; -
issm/trunk-jpl/src/c/classes/Elements/Tria.h
r16833 r16838 135 135 void Update(int index, IoModel* iomodel,int analysis_counter,int analysis_type,int finitelement); 136 136 IssmDouble TimeAdapt(); 137 void ZeroLevelsetCoordinates(IssmDouble** pxyz_zero,IssmDouble* xyz_list,int levelsetenum); 137 138 bool IsZeroLevelset(int levelset_enum); 138 139 … … 248 249 IssmDouble EnthalpyDiffusionParameterVolume(int numvertices,IssmDouble* enthalpy,IssmDouble* pressure){_error_("not implemented");}; 249 250 IssmDouble GetArea(void); 250 void GetAreaCoordinates(IssmDouble *area_coordinates,IssmDouble xyz_zero[3][3],IssmDouble xyz_list[3][3],int numpoints);251 void GetAreaCoordinates(IssmDouble *area_coordinates,IssmDouble* xyz_zero,IssmDouble* xyz_list,int numpoints); 251 252 int GetElementType(void); 252 253 … … 259 260 void NormalTop(IssmDouble* normal,IssmDouble* xyz_list){_error_("not implemented yet");}; 260 261 IssmDouble GetMaterialParameter(int enum_in); 261 void GetZeroLevelsetCoordinates(IssmDouble* xyz_zero,IssmDouble xyz_list[3][3],int levelsetenum);262 262 Input* GetInput(int inputenum); 263 263 void GetInputListOnVertices(IssmDouble* pvalue,int enumtype); … … 277 277 bool IsInput(int name); 278 278 void JacobianDeterminant(IssmDouble* pJdet, IssmDouble* xyz_list,Gauss* gauss); 279 void JacobianDeterminantSurface(IssmDouble* pJdet, IssmDouble* xyz_list,Gauss* gauss); 279 280 void JacobianDeterminantBase(IssmDouble* pJdet,IssmDouble* xyz_list_base,Gauss* gauss){_error_("not implemented yet");}; 280 281 void JacobianDeterminantTop(IssmDouble* pJdet,IssmDouble* xyz_list_base,Gauss* gauss){_error_("not implemented yet");}; … … 282 283 Gauss* NewGauss(void); 283 284 Gauss* NewGauss(int order); 285 Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order); 284 286 Gauss* NewGaussBase(int order){_error_("not implemented yet");}; 285 287 Gauss* NewGaussTop(int order){_error_("not implemented yet");};
Note:
See TracChangeset
for help on using the changeset viewer.