Truss.cpp

For developers writing C++, Fortran, Java, code who have questions or comments to make.

Moderators: silvia, selimgunay, Moderators

Post Reply
tangzhen
Posts: 30
Joined: Thu May 30, 2013 4:58 am
Location: HIT

Truss.cpp

Post by tangzhen »

1.Truss::addInertiaLoadToUnbalance(const Vector &accel)
2.Truss::getResistingForceIncInertia()
what is the relationship of the two classes above in Truss.cpp. and what result will get after invoke the two classes. thanks.
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Truss.cpp

Post by fmk »

no relationship.

the addInertiaLoadToUnbalance(a) will just add M * R (a) to the ressiing force, where R(a) is obatined from the Node.
the getResistingForceIncInetia for the Truss will just add any rayleigh damping forces to the resisting force that is returned.
Post Reply