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