| 61 | |
| 62 | |
| 63 | void |
| 64 | ElementalLoad::setDomain(Domain *theDomain) |
| 65 | { |
| 66 | this->DomainComponent::setDomain(theDomain); |
| 67 | |
| 68 | if (theDomain == 0) { |
| 69 | theElement = 0; |
| 70 | return; |
| 71 | } |
| 72 | |
| 73 | theElement = theDomain->getElement(eleTag); |
| 74 | if (theElement == 0) { |
| 75 | opserr << "WARNING - ElementalLoad::setDomain - no ele with tag "; |
| 76 | opserr << eleTag << " exists in the domain\n"; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | void |
| 81 | ElementalLoad::applyLoad(double loadFactor) |
nothing calls this directly
no test coverage detected