xc
Public Member Functions | Protected Member Functions | List of all members

Vectores to store trial and commited values («commited») on node displacements. More...

#include <NodeDispVectors.h>

Inheritance diagram for XC::NodeDispVectors:
XC::NodeVectors XC::MovableObject XC::DistributedBase

Public Member Functions

 NodeDispVectors (void)
 Constructor.
 
 NodeDispVectors (const NodeDispVectors &)
 Copy constructor.
 
NodeDispVectorsoperator= (const NodeDispVectors &)
 
virtual ~NodeDispVectors (void)
 destructor
 
virtual const VectorgetIncrDisp (const size_t &) const
 Returns displacement increment. More...
 
virtual const VectorgetIncrDeltaDisp (const size_t &) const
 Returns delta displacement increment. More...
 
virtual int setTrialDispComponent (const size_t &nDOF, const double &value, const size_t &dof)
 Sets trial values for the displacement components. More...
 
virtual int setTrialDisp (const size_t &nDOF, const Vector &)
 Sets trial values for the displacement vector. More...
 
virtual int incrTrialDisp (const size_t &nDOF, const Vector &)
 Increments trial displacements. More...
 
virtual int commitState (const size_t &nDOF)
 Commits state of displacement vectors. More...
 
virtual int revertToLastCommit (const size_t &nDOF)
 Returns the vectors to its last commited value. More...
 
virtual void Print (std::ostream &s, int flag=0)
 Printing.
 
- Public Member Functions inherited from XC::NodeVectors
 NodeVectors (const size_t &nv=2)
 Constructor.
 
 NodeVectors (const NodeVectors &)
 Copy constructor.
 
NodeVectorsoperator= (const NodeVectors &)
 
virtual ~NodeVectors (void)
 destructor
 
size_t getVectorsSize (void) const
 Return the number of node DOFs.
 
virtual const VectorgetData (const size_t &) const
 Returns the data vector.
 
virtual const VectorgetTrialData (const size_t &) const
 Returns the data vector de prueba.
 
const VectorgetTrialData (void) const
 Returns trial values.
 
const VectorgetCommitData (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 &)
 Set trial values.
 
virtual int incrTrialData (const size_t &nDOF, const Vector &)
 
virtual int revertToStart (const size_t &nDOF)
 Returns the node a su estado inicial.
 
virtual int sendSelf (CommParameters &)
 Sends the vector through the communicator.
 
virtual int recvSelf (const CommParameters &)
 Receive the object. More...
 
- Public Member Functions inherited from XC::MovableObject
 MovableObject (int classTag, int dbTag)
 Constructor. More...
 
 MovableObject (int classTag)
 Constructor. More...
 
 MovableObject (const MovableObject &)
 Copy constructor. Doesn't copy the dbTag.
 
MovableObjectoperator= (const MovableObject &)
 Assignment operator. Doesn't copy the dbTag.
 
int getClassTag (void) const
 Return the class identifier.
 
int getDbTag (void) const
 Return the object identifier in the database.
 
int getDbTag (CommParameters &)
 Return the object identifier in the database.
 
void setDbTag (int dbTag)
 Sets the object identifier in the database.
 
void setDbTag (CommParameters &)
 Sets the object identifier in the database if not already set. More...
 
virtual int setParameter (const std::vector< std::string > &argv, Parameter &param)
 Sets the value param to the parameter argv.
 
virtual int updateParameter (int parameterID, Information &info)
 Updates the parameter identified by parameterID with info.
 
virtual int activateParameter (int parameterID)
 Activates the parameter identified by parameterID.
 
virtual int setVariable (const std::string &variable, Information &)
 Set the value of the variable idenfified by var.
 
virtual int getVariable (const std::string &variable, Information &)
 Return the value of the variable idenfified by var.
 
- 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.
 

Protected Member Functions

void free_mem (void)
 
- Protected Member Functions inherited from XC::NodeVectors
DbTagDatagetDbTagData (void) const
 Returns a vector to store the dbTags de los miembros of the clase. More...
 
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. More...
 
void free_mem (void)
 
void copy (const NodeVectors &)
 

Additional Inherited Members

- Protected Attributes inherited from XC::NodeVectors
size_t numVectors
 number of vectors.
 
VectorcommitData
 commited quantities
 
VectortrialData
 trial quantities
 
Vector values
 double array holding the displacement/velocity/acceleration.
 

Detailed Description

Vectores to store trial and commited values («commited») on node displacements.

Member Function Documentation

§ commitState()

int XC::NodeDispVectors::commitState ( const size_t &  nDOF)
virtual

Commits state of displacement vectors.

Parameters
nDOFnumber of degrees of freedom.

Reimplemented from XC::NodeVectors.

§ getIncrDeltaDisp()

const XC::Vector & XC::NodeDispVectors::getIncrDeltaDisp ( const size_t &  nDOF) const
virtual

Returns delta displacement increment.

Parameters
nDOFnumber of degrees of freedom

§ getIncrDisp()

const XC::Vector & XC::NodeDispVectors::getIncrDisp ( const size_t &  nDOF) const
virtual

Returns displacement increment.

Parameters
nDOFnumber of degrees of freedom

§ incrTrialDisp()

int XC::NodeDispVectors::incrTrialDisp ( const size_t &  nDOF,
const Vector incrDispl 
)
virtual

Increments trial displacements.

Parameters
nDOFnumber of degrees of freedom.
incrTrialDispincrement for trial displacement vector.

§ revertToLastCommit()

int XC::NodeDispVectors::revertToLastCommit ( const size_t &  nDOF)
virtual

Returns the vectors to its last commited value.

Parameters
nDOFnumber of degrees of freedom.

Reimplemented from XC::NodeVectors.

§ setTrialDisp()

int XC::NodeDispVectors::setTrialDisp ( const size_t &  nDOF,
const Vector newTrialDisp 
)
virtual

Sets trial values for the displacement vector.

Parameters
nDOFnumber of degrees of freedom.
newTrialDispnew trial displacement vector.

§ setTrialDispComponent()

int XC::NodeDispVectors::setTrialDispComponent ( const size_t &  nDOF,
const double &  value,
const size_t &  dof 
)
virtual

Sets trial values for the displacement components.

Parameters
nDOFnumber of degrees of freedom.
dofcomponent of the displacement to set.

The documentation for this class was generated from the following files: