66 #ifndef EigenIntegrator_h 67 #define EigenIntegrator_h 69 #include <solution/analysis/integrator/Integrator.h> 99 virtual int formK(
void);
100 virtual int formM(
void);
106 virtual int formNodTangM(
DOF_Group *theDof);
107 virtual int update(
const Vector &deltaU);
110 virtual int formNodTangent(
DOF_Group *theDof);
111 virtual int formEleResidual(
FE_Element *theEle);
112 virtual int formNodUnbalance(
DOF_Group *theDof);
114 virtual int newStep(
void);
116 virtual int getLastResponse(
Vector &result,
const ID &
id);
121 inline Integrator *EigenIntegrator::getCopy(
void)
const 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
A DOF_Group object is instantiated by the ConstraintHandler for every unconstrained node in the domai...
Definition: DOF_Group.h:94
virtual int formK(void)
Stiffness matrix assembly.
Definition: EigenIntegrator.cpp:103
Solution procedure for the finite element problem. The solution procedure is definde by specifiying: ...
Definition: SoluMethod.h:76
virtual int formEleTangK(FE_Element *theEle)
Asks the element being passed as parameter to build its tangent stiffness matrix. ...
Definition: EigenIntegrator.cpp:196
Finite element as seen by analysis.
Definition: FE_Element.h:84
Base class for eigenproblem systems of equations.
Definition: EigenSOE.h:63
virtual int formM(void)
Mass matrix assembly.
Definition: EigenIntegrator.cpp:143
Base class for eigenproblem integrators.
Definition: EigenIntegrator.h:85
virtual int formEleTangM(FE_Element *theEle)
Asks the element being passed as parameter to build its mass matrix.
Definition: EigenIntegrator.cpp:205
EigenSOE * getEigenSOEPtr(void)
Returns a pointer to the system of equations de eigenvalues.
Definition: EigenIntegrator.cpp:223
Communication parameters between processes.
Definition: CommParameters.h:65
================================================================================
Definition: ContinuaReprComponent.h:34
EigenIntegrator(SoluMethod *)
Constructor.
Definition: EigenIntegrator.cpp:74
Base class for the object that performs the integration of physical properties over the domain to for...
Definition: Integrator.h:91