XC Open source finite element analysis program
|
Node creation manager. More...
#include <NodeLoader.h>
Public Member Functions | |
NodeLoader (Preprocessor *) | |
virtual | ~NodeLoader (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 node whose tag is passed as parameter. | |
size_t | getDimEspacio (void) const |
void | setDimEspacio (const size_t &dim) |
void | setNumGdls (const size_t &ngdl) |
size_t | getNumGdls (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) |
Calculate nodal reaction forces and moments. More... | |
Public Member Functions inherited from XC::Loader | |
Loader (Preprocessor *owr) | |
Default constructor. | |
Domain * | getDomain (void) const |
Returns the domain. | |
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. | |
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. | |
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. | |
Additional Inherited Members | |
Protected Member Functions inherited from XC::Loader | |
void | set_preprocessor (Preprocessor *preprocessor) |
Assigns the preprocessor. | |
Protected Attributes inherited from XC::Loader | |
Preprocessor * | preprocessor |
Pointer to preprocessor. | |
Node creation manager.
void XC::NodeLoader::calculateNodalReactions | ( | bool | inclInertia | ) |
Calculate nodal reaction forces and moments.
inclInertia | if True, the unbalance load vector for each node is calculated including inertial forces. |