Changeset 16872
- Timestamp:
- 11/21/13 16:46:58 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp
r16866 r16872 974 974 return Ke; 975 975 }/*}}}*/ 976 ElementMatrix* StressbalanceAnalysis::CreateKMatrixSSAFriction(Element* element){/*{{{*/ 977 /*Intermediaries*/ 978 bool mainlyfloating; 979 int analysis_type,migration_style,point1; 980 IssmDouble alpha2,Jdet,fraction1,fraction2; 981 IssmDouble phi=1.0; 982 IssmDouble D_scalar,gllevelset; 983 IssmDouble *xyz_list = NULL; 984 Friction *friction = NULL; 985 Gauss* gauss = NULL; 986 987 /*Return if element is inactive*/ 988 if(element->IsFloating()) return NULL; 989 990 /*Fetch number of nodes and dof for this finite element*/ 991 int numnodes = element->GetNumberOfNodes(); 992 int numdof = numnodes*2; 993 994 /*Initialize Element matrix and vectors*/ 995 ElementMatrix* Ke = element->NewElementMatrix(SSAApproximationEnum); 996 IssmDouble* B = xNew<IssmDouble>(2*numdof); 997 IssmDouble* D = xNewZeroInit<IssmDouble>(2*2); 998 999 /*Retrieve all inputs and parameters*/ 1000 element->GetVerticesCoordinates(&xyz_list); 1001 element->FindParam(&migration_style,GroundinglineMigrationEnum); 1002 Input* surface_input=element->GetInput(SurfaceEnum); _assert_(surface_input); 1003 Input* vx_input=element->GetInput(VxEnum); _assert_(vx_input); 1004 Input* vy_input=element->GetInput(VyEnum); _assert_(vy_input); 1005 Input* gllevelset_input=NULL; 1006 element->FindParam(&analysis_type,AnalysisTypeEnum); 1007 1008 /*build friction object, used later on: */ 1009 //friction=new Friction("2d",inputs,matpar,analysis_type); 1010 1011 /*Recover portion of element that is grounded*/ 1012 if(migration_style==SubelementMigrationEnum) phi=element->GetGroundedPortion(xyz_list); 1013 if(migration_style==SubelementMigration2Enum){ 1014 gllevelset_input=element->GetInput(MaskGroundediceLevelsetEnum); _assert_(gllevelset_input); 1015 element->GetGroundedPart(&point1,&fraction1,&fraction2,&mainlyfloating); 1016 gauss = element->NewGauss(point1,fraction1,fraction2,mainlyfloating,2); 1017 } 1018 else{ 1019 gauss = element->NewGauss(2); 1020 } 1021 1022 /* Start looping on the number of gaussian points: */ 1023 for(int ig=gauss->begin();ig<gauss->end();ig++){ 1024 1025 gauss->GaussPoint(ig); 1026 1027 //friction->GetAlpha2(&alpha2, gauss,VxEnum,VyEnum,VzEnum); 1028 alpha2=1.0; 1029 if(migration_style==SubelementMigrationEnum) alpha2=phi*alpha2; 1030 if(migration_style==SubelementMigration2Enum){ 1031 gllevelset_input->GetInputValue(&gllevelset, gauss); 1032 if(gllevelset<0) alpha2=0; 1033 } 1034 1035 this->GetBSSAFriction(B, element, xyz_list, gauss); 1036 element->JacobianDeterminant(&Jdet, xyz_list,gauss); 1037 D_scalar=alpha2*gauss->weight*Jdet; 1038 for(int i=0;i<2;i++) D[i*2+i]=D_scalar; 1039 1040 TripleMultiply(B,2,numdof,1, 1041 D,2,2,0, 1042 B,2,numdof,0, 1043 &Ke->values[0],1); 1044 } 1045 1046 /*Transform Coordinate System*/ 1047 element->TransformStiffnessMatrixCoord(Ke,XYEnum); 1048 1049 /*Clean up and return*/ 1050 delete gauss; 1051 delete friction; 1052 xDelete<IssmDouble>(xyz_list); 1053 xDelete<IssmDouble>(D); 1054 xDelete<IssmDouble>(B); 1055 return Ke; 1056 }/*}}}*/ 976 1057 ElementMatrix* StressbalanceAnalysis::CreateKMatrixSSAViscous(Element* element){/*{{{*/ 977 1058 … … 1034 1115 xDelete<IssmDouble>(B); 1035 1116 return Ke; 1036 }/*}}}*/1037 ElementMatrix* StressbalanceAnalysis::CreateKMatrixSSAFriction(Element* element){/*{{{*/1038 return NULL;1039 1117 }/*}}}*/ 1040 1118 ElementVector* StressbalanceAnalysis::CreatePVectorSSA(Element* element){/*{{{*/ … … 1207 1285 /*Clean-up*/ 1208 1286 xDelete<IssmDouble>(dbasis); 1287 }/*}}}*/ 1288 void StressbalanceAnalysis::GetBSSAFriction(IssmDouble* B,Element* element,IssmDouble* xyz_list,Gauss* gauss){/*{{{*/ 1289 /*Compute B matrix. B=[B1 B2 B3] where Bi is square and of size 2. 1290 * For node i, Bi can be expressed in the actual coordinate system 1291 * by: 1292 * Bi=[ N 0 ] 1293 * [ 0 N ] 1294 * where N is the finiteelement function for node i. 1295 * 1296 * We assume B has been allocated already, of size: 2 x (numdof*numnodes) 1297 */ 1298 1299 /*Fetch number of nodes for this finite element*/ 1300 int numnodes = element->GetNumberOfNodes(); 1301 1302 /*Get nodal functions derivatives*/ 1303 IssmDouble* basis=xNew<IssmDouble>(numnodes); 1304 element->NodalFunctions(basis,gauss); 1305 1306 /*Build L: */ 1307 for(int i=0;i<numnodes;i++){ 1308 B[2*numnodes*0+2*i+0] = basis[i]; 1309 B[2*numnodes*0+2*i+1] = 0.; 1310 B[2*numnodes*1+2*i+0] = 0.; 1311 B[2*numnodes*1+2*i+1] = basis[i]; 1312 } 1313 1314 /*Clean-up*/ 1315 xDelete<IssmDouble>(basis); 1209 1316 }/*}}}*/ 1210 1317 void StressbalanceAnalysis::GetBSSAprime(IssmDouble* Bprime,Element* element,IssmDouble* xyz_list,Gauss* gauss){/*{{{*/ -
issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.h
r16859 r16872 35 35 ElementVector* CreatePVectorSSAFront(Element* element); 36 36 void GetBSSA(IssmDouble* B,Element* element,IssmDouble* xyz_list,Gauss* gauss); 37 void GetBSSAFriction(IssmDouble* B,Element* element,IssmDouble* xyz_list,Gauss* gauss); 37 38 void GetBSSAprime(IssmDouble* B,Element* element,IssmDouble* xyz_list,Gauss* gauss); 38 39 void InputUpdateFromSolutionSSA(IssmDouble* solution,Element* element); -
issm/trunk-jpl/src/c/classes/Elements/Element.h
r16866 r16872 106 106 virtual bool IsOnBed()=0; 107 107 virtual bool IsOnSurface()=0; 108 virtual void GetGroundedPart(int* point1,IssmDouble* fraction1,IssmDouble* fraction2, bool* mainlyfloating)=0; 109 virtual IssmDouble GetGroundedPortion(IssmDouble* xyz_list)=0; 108 110 virtual void GetInputListOnNodes(IssmDouble* pvalue,int enumtype)=0; 109 111 virtual void GetInputListOnNodes(IssmDouble* pvalue,int enumtype,IssmDouble defaultvalue)=0; … … 144 146 virtual Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order)=0; 145 147 virtual Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order_horiz,int order_vert)=0; 148 virtual Gauss* NewGauss(int point1,IssmDouble fraction1,IssmDouble fraction2,bool mainlyfloating,int order)=0; 146 149 virtual Gauss* NewGaussBase(int order)=0; 147 150 virtual Gauss* NewGaussLine(int vertex1,int vertex2,int order)=0; -
issm/trunk-jpl/src/c/classes/Elements/Penta.h
r16866 r16872 92 92 void GetDofListVelocity(int** pdoflist,int setenum); 93 93 void GetDofListPressure(int** pdoflist,int setenum); 94 void GetGroundedPart(int* point1,IssmDouble* fraction1, IssmDouble* fraction2,bool* mainlyfloating); 95 IssmDouble GetGroundedPortion(IssmDouble* xyz_list); 94 96 int GetNodeIndex(Node* node); 95 97 void GetNodesSidList(int* sidlist); … … 228 230 void GetVertexSidList(int* sidlist); 229 231 void GetConnectivityList(int* connectivity); 230 void GetGroundedPart(int* point1,IssmDouble* fraction1, IssmDouble* fraction2,bool* mainlyfloating);231 IssmDouble GetGroundedPortion(IssmDouble* xyz_list);232 232 int GetElementType(void); 233 233 Input* GetInput(int inputenum); … … 266 266 Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order){_error_("not implemented yet");}; 267 267 Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order_horiz,int order_vert); 268 Gauss* NewGauss(int point1,IssmDouble fraction1,IssmDouble fraction2,bool mainlyfloating,int order){_error_("not implemented yet");}; 268 269 Gauss* NewGaussBase(int order); 269 270 Gauss* NewGaussLine(int vertex1,int vertex2,int order); -
issm/trunk-jpl/src/c/classes/Elements/Seg.h
r16866 r16872 142 142 void ValueP1DerivativesOnGauss(IssmDouble* dvalue,IssmDouble* values,IssmDouble* xyz_list,Gauss* gauss){_error_("not implemented yet");}; 143 143 int VelocityInterpolation(void){_error_("not implemented yet");}; 144 void GetGroundedPart(int* point1,IssmDouble* fraction1, IssmDouble* fraction2,bool* mainlyfloating){_error_("not implemented yet");}; 145 IssmDouble GetGroundedPortion(IssmDouble* xyz_list){_error_("not implemented yet");}; 144 146 Input* GetInput(int inputenum); 145 147 Input* GetMaterialInput(int inputenum){_error_("not implemented yet");}; … … 157 159 Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order){_error_("not implemented yet");}; 158 160 Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order_horiz,int order_vert){_error_("not implemented yet");}; 161 Gauss* NewGauss(int point1,IssmDouble fraction1,IssmDouble fraction2,bool mainlyfloating,int order){_error_("not implemented yet");}; 159 162 Gauss* NewGaussBase(int order){_error_("not implemented yet");}; 160 163 Gauss* NewGaussLine(int vertex1,int vertex2,int order){_error_("not implemented yet");}; -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r16868 r16872 2298 2298 2299 2299 return new GaussTria(area_coordinates,order); 2300 } 2301 /*}}}*/ 2302 /*FUNCTION Tria::NewGauss(int point1,IssmDouble fraction1,IssmDouble fraction2,bool mainlyfloating){{{*/ 2303 Gauss* Tria::NewGauss(int point1,IssmDouble fraction1,IssmDouble fraction2,bool mainlyfloating,int order){ 2304 2305 return new GaussTria(point1,fraction1,fraction2,mainlyfloating,order); 2300 2306 } 2301 2307 /*}}}*/ -
issm/trunk-jpl/src/c/classes/Elements/Tria.h
r16866 r16872 91 91 void GetDofListVelocity(int** pdoflist,int setenum); 92 92 void GetDofListPressure(int** pdoflist,int setenum); 93 void GetGroundedPart(int* point1,IssmDouble* fraction1, IssmDouble* fraction2,bool* mainlyfloating); 94 IssmDouble GetGroundedPortion(IssmDouble* xyz_list); 93 95 int GetNodeIndex(Node* node); 94 96 void GetNodesSidList(int* sidlist); … … 264 266 void GetVertexSidList(int* sidlist); 265 267 void GetConnectivityList(int* connectivity); 266 void GetGroundedPart(int* point1,IssmDouble* fraction1, IssmDouble* fraction2,bool* mainlyfloating);267 IssmDouble GetGroundedPortion(IssmDouble* xyz_list);268 268 IssmDouble GetYcoord(Gauss* gauss); 269 269 IssmDouble GetZcoord(Gauss* gauss){_error_("not implemented");}; … … 298 298 Gauss* NewGauss(int order); 299 299 Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order); 300 Gauss* NewGauss(int point1,IssmDouble fraction1,IssmDouble fraction2,bool mainlyfloating,int order); 300 301 Gauss* NewGauss(IssmDouble* xyz_list, IssmDouble* xyz_list_front,int order_horiz,int order_vert); 301 302 Gauss* NewGaussBase(int order);
Note:
See TracChangeset
for help on using the changeset viewer.