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