| 404 | |
| 405 | |
| 406 | void |
| 407 | FE_Element::addKiToTang(double fact) |
| 408 | { |
| 409 | if (myEle != 0 && myEle->isActive()) { |
| 410 | // check for a quick return |
| 411 | if (fact == 0.0) |
| 412 | return; |
| 413 | else if (myEle->isSubdomain() == false) |
| 414 | theTangent->addMatrix(1.0, myEle->getInitialStiff(), fact); |
| 415 | else { |
| 416 | opserr << "WARNING FE_Element::addKiToTang() - "; |
| 417 | opserr << "- this should not be called on a Subdomain!\n"; |
| 418 | } |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | void |
| 423 | FE_Element::addKgToTang(double fact) |
no test coverage detected