Changeset 5873 for issm/trunk
- Timestamp:
- 09/17/10 16:50:44 (15 years ago)
- Location:
- issm/trunk/src/c/objects
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Elements/Penta.cpp
r5872 r5873 2194 2194 break; 2195 2195 case MacAyealPattynApproximationEnum: 2196 Ke=CreateKMatrixDiagnosticMacAyeal3d(); 2197 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2198 delete Ke; 2199 Ke=CreateKMatrixDiagnosticPattyn(); 2200 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2201 delete Ke; 2202 Ke=CreateKMatrixCouplingMacAyealPattyn(); 2196 Ke=CreateKMatrixDiagnosticMacAyealPattyn(); 2203 2197 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2204 2198 delete Ke; 2205 2199 break; 2200 2206 2201 case PattynStokesApproximationEnum: 2207 2202 Ke=CreateKMatrixDiagnosticPattyn(); … … 2416 2411 2417 2412 /*clean-up and return*/ 2413 return Ke; 2414 } 2415 /*}}}*/ 2416 /*FUNCTION Penta::CreateKMatrixDiagnosticMacAyealPattyn{{{1*/ 2417 ElementMatrix* Penta::CreateKMatrixDiagnosticMacAyealPattyn(void){ 2418 2419 /*compute all stiffness matrices for this element*/ 2420 ElementMatrix* Ke1=CreateKMatrixDiagnosticMacAyeal3d(); 2421 ElementMatrix* Ke2=CreateKMatrixDiagnosticPattyn(); 2422 ElementMatrix* Ke3=CreateKMatrixCouplingMacAyealPattyn(); 2423 ElementMatrix* Ke =new ElementMatrix(Ke1,Ke2,Ke3); 2424 2425 /*clean-up and return*/ 2426 delete Ke1; 2427 delete Ke2; 2428 delete Ke3; 2418 2429 return Ke; 2419 2430 } -
issm/trunk/src/c/objects/Elements/Penta.h
r5872 r5873 133 133 ElementMatrix* CreateKMatrixDiagnosticMacAyeal3dViscous(void); 134 134 ElementMatrix* CreateKMatrixDiagnosticMacAyeal3dFriction(void); 135 ElementMatrix* CreateKMatrixDiagnosticMacAyealPattyn(void); 135 136 ElementMatrix* CreateKMatrixDiagnosticPattyn(void); 136 137 ElementMatrix* CreateKMatrixDiagnosticPattynViscous(void); -
issm/trunk/src/c/objects/Numerics/ElementMatrix.cpp
r5839 r5873 171 171 /*clean-up*/ 172 172 xfree((void**)&P); 173 } 174 /*}}}*/ 175 /*FUNCTION ElementMatrix::ElementMatrix(ElementMatrix* Ke1, ElementMatrix* Ke2,ElementMatrix* Ke3){{{1*/ 176 ElementMatrix::ElementMatrix(ElementMatrix* Ke1, ElementMatrix* Ke2,ElementMatrix* Ke3){ 177 178 /*Concatenate all matrices*/ 179 ElementMatrix* Ke12 =new ElementMatrix(Ke1,Ke2); 180 ElementMatrix* Ke123=new ElementMatrix(Ke12,Ke3); 181 182 /*Initialize current object with this matrix*/ 183 this->Init(Ke123); 184 185 /*clean-up*/ 186 delete Ke12; 187 delete Ke123; 173 188 } 174 189 /*}}}*/ -
issm/trunk/src/c/objects/Numerics/ElementMatrix.h
r5831 r5873 51 51 ElementMatrix(); 52 52 ElementMatrix(ElementMatrix* Ke1,ElementMatrix* Ke2); 53 ElementMatrix(ElementMatrix* Ke1,ElementMatrix* Ke2,ElementMatrix* Ke3); 53 54 ElementMatrix(bool square,int* gglobaldoflist,int gsize); 54 55 ElementMatrix(bool square,int* gglobaldoflist,int gsize,int* flocaldoflist,int* fglobaldoflist,int fsize,int* slocaldoflist,int* sglobaldoflist,int ssize);
Note:
See TracChangeset
for help on using the changeset viewer.