| 417 | } |
| 418 | |
| 419 | void |
| 420 | FE_Element::addKgToTang(double fact) |
| 421 | { |
| 422 | if (myEle != 0) { |
| 423 | // check for a quick return |
| 424 | if (fact == 0.0) |
| 425 | return; |
| 426 | else if (myEle->isSubdomain() == false) |
| 427 | theTangent->addMatrix(1.0, myEle->getGeometricTangentStiff(), fact); |
| 428 | else { |
| 429 | opserr << "WARNING FE_Element::addKgToTang() - "; |
| 430 | opserr << "- this should not be called on a Subdomain!\n"; |
| 431 | } |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | void |
| 436 | FE_Element::addKpToTang(double fact, int numP) |
nothing calls this directly
no test coverage detected