67 #ifndef EigenIntegrator_h 68 #define EigenIntegrator_h 70 #include <solution/analysis/integrator/Integrator.h> 100 virtual int formK(
void);
101 virtual int formM(
void);
107 virtual int formNodTangM(
DOF_Group *theDof);
108 virtual int update(
const Vector &deltaU);
115 virtual int newStep(
void);
122 inline Integrator *EigenIntegrator::getCopy(
void)
const virtual int formEleTangM(FE_Element *theEle)
Asks the element being passed as parameter to build its mass matrix.
Definition: EigenIntegrator.cpp:208
virtual int recvSelf(const Communicator &)
Receive the object.
Definition: EigenIntegrator.cpp:244
Float vector abstraction.
Definition: Vector.h:94
Base class for eigenproblem systems of equations.
Definition: EigenSOE.h:64
Communication parameters between processes.
Definition: Communicator.h:66
virtual int sendSelf(Communicator &)
Send the object.
Definition: EigenIntegrator.cpp:241
Vector of integers.
Definition: ID.h:95
virtual int formEleTangK(FE_Element *theEle)
Asks the element being passed as parameter to build its tangent stiffness matrix. ...
Definition: EigenIntegrator.cpp:199
Base class for the objects that performs the integration of physical properties over the domain to fo...
Definition: Integrator.h:100
virtual int formNodTangent(DOF_Group *theDof)
Called upon to determine the DOF_Group theDofs matrix contribution to the SystemOfEqn object...
Definition: EigenIntegrator.cpp:87
A DOF_Group object is instantiated by the ConstraintHandler for every unconstrained node in the domai...
Definition: DOF_Group.h:107
virtual int formM(void)
Mass matrix assembly.
Definition: EigenIntegrator.cpp:145
Base class for eigenproblem integrators.
Definition: EigenIntegrator.h:86
virtual int formEleResidual(FE_Element *theEle)
Called upon to determine the FE_Element theEles vector contribution to the SystemOfEqn object...
Definition: EigenIntegrator.cpp:90
Solution strategy for the finite element problem.
Definition: SolutionStrategy.h:94
virtual int formK(void)
Stiffness matrix assembly.
Definition: EigenIntegrator.cpp:103
Finite element as seen by analysis.
Definition: FE_Element.h:108
Open source finite element program for structural analysis.
Definition: ContinuaReprComponent.h:35
virtual int formNodUnbalance(DOF_Group *theDof)
Called upon to determine the DOF_Group theDofs vector contribution to the SystemOfEqn object...
Definition: EigenIntegrator.cpp:93
EigenIntegrator(SolutionStrategy *)
Constructor.
Definition: EigenIntegrator.cpp:74
virtual int formEleTangent(FE_Element *theEle)
Asks the element being passed as parameter to build its mass(flagK= false) or stiffness matrix (flagK...
Definition: EigenIntegrator.cpp:79
EigenSOE * getEigenSOEPtr(void)
Returns a pointer to the system of equations de eigenvalues.
Definition: EigenIntegrator.cpp:226
virtual int getLastResponse(Vector &result, const ID &id)
Called upon to get the result quantities for the components specified in the ID id and to place them ...
Definition: EigenIntegrator.cpp:99