Changeset 5876 for issm/trunk
- Timestamp:
- 09/17/10 17:03:09 (15 years ago)
- Location:
- issm/trunk/src/c/objects/Elements
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Elements/Penta.cpp
r5874 r5876 699 699 switch(analysis_type){ 700 700 case DiagnosticHorizAnalysisEnum: case AdjointHorizAnalysisEnum: 701 CreateKMatrixDiagnosticHoriz(Kgg); 701 Ke=CreateKMatrixDiagnosticHoriz(); 702 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 703 delete Ke; 702 704 break; 703 705 case DiagnosticHutterAnalysisEnum: … … 2166 2168 /*}}}*/ 2167 2169 /*FUNCTION Penta::CreateKMatrixDiagnosticHoriz {{{1*/ 2168 void Penta::CreateKMatrixDiagnosticHoriz(Mat Kgg){2170 ElementMatrix* Penta::CreateKMatrixDiagnosticHoriz(void){ 2169 2171 2170 2172 int approximation; 2171 ElementMatrix* Ke=NULL;2172 2173 2173 inputs->GetParameterValue(&approximation,ApproximationEnum); 2174 2174 2175 2175 switch(approximation){ 2176 2176 case MacAyealApproximationEnum: 2177 Ke=CreateKMatrixDiagnosticMacAyeal2d(); 2178 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2179 delete Ke; 2180 break; 2177 return CreateKMatrixDiagnosticMacAyeal2d(); 2181 2178 case PattynApproximationEnum: 2182 Ke=CreateKMatrixDiagnosticPattyn(); 2183 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2184 delete Ke; 2185 break; 2179 return CreateKMatrixDiagnosticPattyn(); 2186 2180 case StokesApproximationEnum: 2187 Ke=CreateKMatrixDiagnosticStokes(); 2188 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2189 delete Ke; 2190 break; 2181 return CreateKMatrixDiagnosticStokes(); 2191 2182 case HutterApproximationEnum: 2192 break;2183 return NULL; 2193 2184 case NoneApproximationEnum: 2194 break;2185 return NULL; 2195 2186 case MacAyealPattynApproximationEnum: 2196 Ke=CreateKMatrixDiagnosticMacAyealPattyn(); 2197 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2198 delete Ke; 2199 break; 2187 return CreateKMatrixDiagnosticMacAyealPattyn(); 2200 2188 case PattynStokesApproximationEnum: 2201 Ke=CreateKMatrixDiagnosticPattynStokes(); 2202 if(Ke) Ke->AddToGlobal(Kgg,NULL,NULL); 2203 delete Ke; 2204 break; 2189 return CreateKMatrixDiagnosticPattynStokes(); 2205 2190 default: 2206 2191 ISSMERROR("Approximation %s not supported yet",EnumToString(approximation)); -
issm/trunk/src/c/objects/Elements/Penta.h
r5874 r5876 127 127 ElementMatrix* CreateKMatrixCouplingMacAyealPattynFriction(void); 128 128 ElementMatrix* CreateKMatrixCouplingPattynStokes(void); 129 void CreateKMatrixDiagnosticHoriz( Mat Kgg);129 ElementMatrix* CreateKMatrixDiagnosticHoriz(void); 130 130 ElementMatrix* CreateKMatrixDiagnosticHutter(void); 131 131 ElementMatrix* CreateKMatrixDiagnosticMacAyeal2d(void);
Note:
See TracChangeset
for help on using the changeset viewer.