| 349 | } |
| 350 | |
| 351 | void |
| 352 | FE_Element::addKtToTang(double fact) |
| 353 | { |
| 354 | if (myEle != 0) { |
| 355 | |
| 356 | // check for a quick return |
| 357 | if (fact == 0.0) |
| 358 | return; |
| 359 | else if (myEle->isSubdomain() == false) |
| 360 | theTangent->addMatrix(1.0, myEle->getTangentStiff(),fact); |
| 361 | else { |
| 362 | opserr << "WARNING FE_Element::addKToTang() - "; |
| 363 | opserr << "- this should not be called on a Subdomain!\n"; |
| 364 | } |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | void |
| 369 | FE_Element::addCtoTang(double fact) |
no test coverage detected