| 369 | } |
| 370 | |
| 371 | void |
| 372 | FE_Element::addCtoTang(double fact) |
| 373 | { |
| 374 | if (myEle != 0 && myEle->isActive()) { |
| 375 | |
| 376 | // check for a quick return |
| 377 | if (fact == 0.0) |
| 378 | return; |
| 379 | else if (myEle->isSubdomain() == false) |
| 380 | theTangent->addMatrix(1.0, myEle->getDamp(),fact); |
| 381 | else { |
| 382 | opserr << "WARNING FE_Element::addCToTang() - "; |
| 383 | opserr << "- this should not be called on a Subdomain!\n"; |
| 384 | } |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | void |
| 389 | FE_Element::addMtoTang(double fact) |
no test coverage detected