xc
|
Node creation manager. More...
#include <NodeHandler.h>
Public Member Functions | |
NodeHandler (Preprocessor *) | |
virtual | ~NodeHandler (void) |
Destructor. | |
const Node * | get_seed_node (void) const |
Node * | newNode (const double &x, const double &y, const double &z) |
Node * | newNode (const double &x, const double &y) |
Node * | newNode (const double &x) |
Node * | newNode (const Pos3d &p) |
Create a nede at the position passed as parameter. | |
Node * | newNode (const Pos2d &p) |
Creates a nede at the position passed as parameter. | |
Node * | newNode (const Vector &) |
Create a node at the position pointed by the vector passed as parameter. | |
Node * | newSeedNode (void) |
Defines the seed node. | |
Node * | newNodeIDXYZ (const int &, const double &, const double &, const double &) |
Create a node whose ID=tag from global coordinates (x,y,z). | |
Node * | newNodeIDXY (const int &, const double &, const double &) |
Node * | newNodeIDV (const int &, const Vector &) |
Node * | duplicateNode (const int &) |
Create a duplicate copy of the node whose tag is passed as parameter. | |
size_t | getDimEspacio (void) const |
void | setDimEspacio (const size_t &dim) |
void | setNumDOFs (const size_t &ndof) |
size_t | getNumDOFs (void) const |
Node * | getNode (const int &tag) |
Get the node whose ID is passed as parameter. | |
int | getDefaultTag (void) const |
Return the default value for next node. | |
void | setDefaultTag (const int &tag) |
Set the default value for next node. | |
void | clearAll (void) |
Clear all nodes. | |
void | calculateNodalReactions (bool inclInertia, const double &tol) |
Calculate nodal reaction forces and moments. More... | |
![]() | |
PrepHandler (Preprocessor *owr) | |
Default constructor. | |
virtual int | sendSelf (CommParameters &) |
Sends object through the channel being passed as parameter. | |
virtual int | recvSelf (const CommParameters &) |
Receives object through the channel being passed as parameter. | |
![]() | |
PreprocessorContainer (Preprocessor *owr) | |
Default constructor. | |
const Domain * | getDomain (void) const |
Returns the domain. | |
Domain * | getDomain (void) |
Returns the domain. | |
Preprocessor * | getPreprocessor (void) |
Returns a pointer to the object preprocessor. | |
const Preprocessor * | getPreprocessor (void) const |
Returns a pointer to the object preprocessor. | |
void | checkPreprocessor (void) |
![]() | |
MovableObject (int classTag, int dbTag) | |
Constructor. More... | |
MovableObject (int classTag) | |
Constructor. More... | |
MovableObject (const MovableObject &) | |
Copy constructor. Doesn't copy the dbTag. | |
MovableObject & | operator= (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 ¶m) |
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 . | |
![]() | |
DistributedBase (void) | |
Constructor. | |
virtual DbTagData & | getDbTagData (void) const |
Returns a vector to store class dbTags. | |
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. | |
Node creation manager.
void XC::NodeHandler::calculateNodalReactions | ( | bool | inclInertia, |
const double & | tol | ||
) |
Calculate nodal reaction forces and moments.
inclInertia | if True, the unbalance load vector for each node is calculated including inertial forces. |