XC Open source finite element analysis program
|
Vectors that store trial and commited values of the node acceleration. More...
#include <NodeAccelVectors.h>
Public Member Functions | |
NodeAccelVectors (void) | |
Constructor. | |
virtual void | Print (std::ostream &s, int flag=0) |
Public Member Functions inherited from XC::NodeVectors | |
NodeVectors (const size_t &nv=2) | |
Constructor. | |
NodeVectors (const NodeVectors &otro) | |
Constructor de copia. | |
NodeVectors & | operator= (const NodeVectors &otro) |
virtual | ~NodeVectors (void) |
destructor | |
size_t | getVectorsSize (void) const |
Return the number of node DOFs. | |
virtual const Vector & | getData (const size_t &) const |
Returns the data vector. | |
virtual const Vector & | getTrialData (const size_t &) const |
Returns the data vector de prueba. | |
const Vector & | getTrialData (void) const |
Returns the valores de prueba. | |
const Vector & | getCommitData (void) const |
Returns commited values. | |
virtual int | setTrialData (const size_t &nDOF, const double &value, const size_t &dof) |
virtual int | setTrialData (const size_t &nDOF, const Vector &) |
Asigna el valor being passed as parameter. | |
virtual int | incrTrialData (const size_t &nDOF, const Vector &) |
virtual int | commitState (const size_t &nDOF) |
virtual int | revertToLastCommit (const size_t &nDOF) |
Returns the vectores al estado correspondiente al último commit. | |
virtual int | revertToStart (const size_t &nDOF) |
Returns the nodo a su estado inicial. | |
virtual int | sendSelf (CommParameters &) |
Envia los vectores through the channel being passed as parameter.E. | |
virtual int | recvSelf (const CommParameters &) |
Public Member Functions inherited from XC::MovableObject | |
MovableObject (int classTag, int dbTag) | |
Constructor. | |
MovableObject (int classTag) | |
Constructor. | |
MovableObject (const MovableObject &otro) | |
Copy constructor. | |
MovableObject & | operator= (const MovableObject &otro) |
Operacdor asignación. | |
int | getClassTag (void) const |
Returns the tag de la clase. | |
int | getDbTag (void) const |
Returns the tag para la database. | |
int | getDbTag (CommParameters &) |
Returns the tag para la database. | |
void | setDbTag (int dbTag) |
Asigna el tag para la database. | |
void | setDbTag (CommParameters &) |
Asigna, sólo si es preciso, el tag para la database. | |
virtual int | setParameter (const std::vector< std::string > &argv, Parameter ¶m) |
virtual int | updateParameter (int parameterID, Information &info) |
virtual int | activateParameter (int parameterID) |
virtual int | setVariable (const std::string &variable, Information &) |
Returns the identificador de la variable cuyo nombre being passed as parameter. | |
virtual int | getVariable (const std::string &variable, Information &) |
Public Member Functions inherited from XC::DistributedBase | |
DistributedBase (void) | |
Constructor. | |
const int & | getDbTagDataPos (const int &i) const |
Returns the data at the i-th position. | |
void | setDbTagDataPos (const int &i, const int &v) |
Sets the data at the i-th position. | |
void | inicComm (const int &dataSize) const |
Initializes communication. | |
Additional Inherited Members | |
Protected Member Functions inherited from XC::NodeVectors | |
DbTagData & | getDbTagData (void) const |
Returns a vector para almacenar los dbTags de los miembros de la clase. | |
int | sendData (CommParameters &) |
Sends object members through the channel being passed as parameter. | |
int | recvData (const CommParameters &) |
Receives object members through the channel being passed as parameter. | |
int | createData (const size_t &) |
private method to create the arrays to hold the data values and the Vector objects for the committed and trial quantities. | |
void | libera (void) |
void | copia (const NodeVectors &) |
Protected Attributes inherited from XC::NodeVectors | |
size_t | numVectors |
number of vectors. | |
Vector * | commitData |
commited quantities | |
Vector * | trialData |
trial quantities | |
Vector | values |
double array holding the displacement/velocity/acceleration. | |
Vectors that store trial and commited values of the node acceleration.