Changeset 13216 for issm/trunk-jpl/src/c/classes/objects/Loads/Icefront.cpp
- Timestamp:
- 08/31/12 17:23:24 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/objects/Loads/Icefront.cpp
r13129 r13216 228 228 /*}}}*/ 229 229 /*FUNCTION Icefront::CreateKMatrix {{{*/ 230 void Icefront::CreateKMatrix(Matrix * Kff, Matrix* Kfs){230 void Icefront::CreateKMatrix(Matrix<IssmDouble>* Kff, Matrix<IssmDouble>* Kfs){ 231 231 232 232 /*No stiffness loads applied, do nothing: */ … … 236 236 /*}}}*/ 237 237 /*FUNCTION Icefront::CreatePVector {{{*/ 238 void Icefront::CreatePVector(Vector * pf){238 void Icefront::CreatePVector(Vector<IssmDouble>* pf){ 239 239 240 240 /*Checks in debugging mode*/ … … 274 274 /*}}}*/ 275 275 /*FUNCTION Icefront::CreateJacobianMatrix{{{*/ 276 void Icefront::CreateJacobianMatrix(Matrix * Jff){276 void Icefront::CreateJacobianMatrix(Matrix<IssmDouble>* Jff){ 277 277 this->CreateKMatrix(Jff,NULL); 278 278 } 279 279 /*}}}*/ 280 280 /*FUNCTION Icefront::PenaltyCreateKMatrix {{{*/ 281 void Icefront::PenaltyCreateKMatrix(Matrix * Kff, Matrix* Kfs, IssmDouble kmax){281 void Icefront::PenaltyCreateKMatrix(Matrix<IssmDouble>* Kff, Matrix<IssmDouble>* Kfs, IssmDouble kmax){ 282 282 /*do nothing: */ 283 283 return; … … 285 285 /*}}}*/ 286 286 /*FUNCTION Icefront::PenaltyCreatePVector{{{*/ 287 void Icefront::PenaltyCreatePVector(Vector * pf,IssmDouble kmax){287 void Icefront::PenaltyCreatePVector(Vector<IssmDouble>* pf,IssmDouble kmax){ 288 288 /*do nothing: */ 289 289 return; … … 291 291 /*}}}*/ 292 292 /*FUNCTION Icefront::PenaltyCreateJacobianMatrix{{{*/ 293 void Icefront::PenaltyCreateJacobianMatrix(Matrix * Jff,IssmDouble kmax){293 void Icefront::PenaltyCreateJacobianMatrix(Matrix<IssmDouble>* Jff,IssmDouble kmax){ 294 294 this->PenaltyCreateKMatrix(Jff,NULL,kmax); 295 295 }
Note:
See TracChangeset
for help on using the changeset viewer.