Changeset 11340
- Timestamp:
- 02/07/12 08:02:29 (13 years ago)
- Location:
- issm/trunk-jpl/src/c/objects/Elements
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/objects/Elements/Penta.cpp
r11338 r11340 7432 7432 switch(approximation){ 7433 7433 case MacAyealApproximationEnum: 7434 _error_("Not supported yet");7434 return CreateJacobianDiagnosticMacayeal2d(); 7435 7435 case PattynApproximationEnum: 7436 7436 return CreateJacobianDiagnosticPattyn(); … … 7440 7440 _error_("Approximation %s not supported yet",EnumToStringx(approximation)); 7441 7441 } 7442 } 7443 /*}}}*/ 7444 /*FUNCTION Penta::CreateJacobianDiagnosticMacayeal2d{{{1*/ 7445 ElementMatrix* Penta::CreateJacobianDiagnosticMacayeal2d(void){ 7446 7447 /*Figure out if this penta is collapsed. If so, then bailout, except if it is at the 7448 bedrock, in which case we spawn a tria element using the 3 first nodes, and use it to build 7449 the stiffness matrix. */ 7450 if (!IsOnBed()) return NULL; 7451 7452 /*Depth Averaging B*/ 7453 this->InputDepthAverageAtBase(MaterialsRheologyBEnum,MaterialsRheologyBbarEnum,MaterialsEnum); 7454 7455 /*Call Tria function*/ 7456 Tria* tria=(Tria*)SpawnTria(0,1,2); //nodes 0, 1 and 2 make the new tria. 7457 ElementMatrix* Ke=tria->CreateJacobianDiagnosticMacayeal(); 7458 delete tria->matice; delete tria; 7459 7460 /*Delete B averaged*/ 7461 this->matice->inputs->DeleteInput(MaterialsRheologyBbarEnum); 7462 7463 /*clean up and return*/ 7464 return Ke; 7442 7465 } 7443 7466 /*}}}*/ -
issm/trunk-jpl/src/c/objects/Elements/Penta.h
r11338 r11340 236 236 ElementMatrix* CreateKMatrixDiagnosticVertSurface(void); 237 237 ElementMatrix* CreateJacobianDiagnosticHoriz(void); 238 ElementMatrix* CreateJacobianDiagnosticMacayeal2d(void); 238 239 ElementMatrix* CreateJacobianDiagnosticPattyn(void); 239 240 ElementMatrix* CreateJacobianDiagnosticStokes(void);
Note:
See TracChangeset
for help on using the changeset viewer.