xc
Public Member Functions | List of all members

3D beam column internal forces. More...

#include <EsfBeamColumn3d.h>

Inheritance diagram for XC::EsfBeamColumn3d:
XC::Vector

Public Member Functions

 EsfBeamColumn3d (void)
 Default constructor.
 
 EsfBeamColumn3d (const Vector &)
 Constructor.
 
 EsfBeamColumn3d (const EsfBeamColumn3d &)
 Copy constructor.
 
EsfBeamColumn3doperator= (const EsfBeamColumn3d &)
 Assignment operator.
 
const double & N (void) const
 Returns the axil.
 
double & N (void)
 Returns the axil.
 
double AN1 (void) const
 Return the axial force in the back end.
 
double AN2 (void) const
 Return the axial force in the front end.
 
const double & Mz1 (void) const
 Returns the moment about z in the back end.
 
double & Mz1 (void)
 Returns the moment about z in the back end.
 
const double & Mz2 (void) const
 Returns the moment about z in the front end.
 
double & Mz2 (void)
 Returns the moment about z in the front end.
 
double Vy (const double &L) const
 Returns shear along y axis.
 
const double & My1 (void) const
 Returns the moment about y in the back end.
 
double & My1 (void)
 Returns the moment about y in the back end.
 
const double & My2 (void) const
 Returns the moment about y in the front end.
 
double & My2 (void)
 Returns the moment about y in the front end.
 
double Vz (const double &L) const
 Returns the shear along z.
 
const double & T (void) const
 Returns the torsor.
 
double & T (void)
 Returns the torsor.
 
double T1 (void) const
 Returns the torsor in the back end.
 
double T2 (void) const
 Returns the torsor in the front end.
 
- Public Member Functions inherited from XC::Vector
 Vector (void)
 Default constructor, sets size= 0;.
 
 Vector (const int &, const double &value=0.0)
 Constructor used to allocate a vector of size szt. More...
 
 Vector (const std::vector< double > &v)
 Copy from a std::vector.
 
 Vector (const Vector2d &v)
 Copy from Vector2d.
 
 Vector (const Vector3d &v)
 Copy from Vector2d.
 
 Vector (const double &, const double &, const double &)
 Create from x,y,z coordinates.
 
 Vector (const Vector &)
 Copy constructor.
 
 Vector (double *data, int size)
 Constructor. More...
 
 Vector (const boost::python::list &)
 Constructor (Python interface).
 
virtual ~Vector (void)
 Destructor, free memory.
 
iterator begin (void)
 Iterator that points to the first vector component.
 
iterator end (void)
 Iterator that points one past the last vector component.
 
int setData (double *newData, int size)
 Help to construct a Vector of order size whose data will be stored in the array pointed to by data. More...
 
const double * getDataPtr (void) const
 Return a pointer to the float date.
 
double * getDataPtr (void)
 Return a pointer to the float date.
 
bool isEmpty (void) const
 Return true if the vector has no data.
 
int Assemble (const Vector &V, const ID &l, double fact=1.0)
 Method to assemble into object the Vector V using the ID l. More...
 
double Norm2 (void) const
 Returns the square of the vector modulus. More...
 
double Norm (void) const
 Return the norm of vector. More...
 
double pNorm (int p) const
 
double NormInf (void) const
 Returns the maximum of the absolute values of the components (infinite norm). More...
 
int Size (void) const
 Returns the size of the Vector.
 
int getNumBytes (void) const
 Number of bytes occupied by the vector.
 
int resize (int newSize)
 Changes vector size.
 
void Zero (void)
 Zeros out the Vector, i.e. More...
 
bool isnan (void) const
 Return true if one of the component is not a number.
 
int reset (const int &newSize)
 Resize the vector and set all components equal to 0.
 
int Normalize (void)
 Normalizes the vector using the euclidean norm.
 
int NormalizeInf (void)
 Normaliza el vector using the infinity norm.
 
Vector Normalized (void) const
 Returns the normalized vector (euclidean norm).
 
Vector NormalizedInf (void) const
 Returns the normalized vector (infinity norm).
 
int addVector (double factThis, const Vector &other, double factOther)
 To add a factor fact times the Vector other to the current Vector. More...
 
int addMatrixVector (double factThis, const Matrix &m, const Vector &v, double factOther)
 To add a factor fact times the Vector formed by the product of the matrix m and the Vector v to the current Vector. More...
 
int addMatrixTransposeVector (double factThis, const Matrix &m, const Vector &v, double factOther)
 
virtual double & at (const size_t &f)
 Returns the element at the row being passed as parameter. More...
 
virtual const double & at (const size_t &f) const
 Returns the element at the row being passed as parameter. More...
 
virtual bool CheckIndice0 (const size_t &i) const
 Check the index being passed as parameter. More...
 
const double & operator() (int x) const
 Returns the data at location x in the Vector. More...
 
double & operator() (int x)
 Used to set the data at location(x) in the Vector. More...
 
const double & operator[] (int x) const
 If debug flag is on, safely get the data at location x in the Vector. More...
 
double & operator[] (int x)
 If debug flag is on, safely set/get the data at location x in the Vector. More...
 
Vector operator() (const ID &rows) const
 Method to return a vector whose components are the components of the current vector located in positions given by the ID rows. More...
 
Vectoroperator= (const Vector &V)
 the assignment operator, This is assigned to be a copy of V. More...
 
template<class TNSR >
Vectoroperator= (const TNSR &T)
 
Vectoroperator+= (double fact)
 The += operator adds fact to each element of the vector, data[i]= data[i]+fact. More...
 
Vectoroperator-= (double fact)
 The -= operator subtracts fact from each element of the vector, data[i]= data[i]-fact. More...
 
Vectoroperator*= (double fact)
 The *= operator multiplies each element by the factor.
 
Vectoroperator/= (double fact)
 The /= operator divides each element of the vector by fact, theData[i]= theData[i]/fact. More...
 
Vector operator- (void) const
 Unary minus operator.
 
Vector operator+ (double fact) const
 The + operator returns a Vector of the same size as current, whose components are: return(i)= theData[i]+fact. More...
 
Vector operator- (double fact) const
 The + operator returns a Vector of the same size as current, whose components are: return(i)= theData[i]-fact. More...
 
Vector operator* (double fact) const
 The + operator returns a vector of the same size as current, whose components are: return(i)= theData[i]*fact. More...
 
Vector operator/ (double fact) const
 The + operator returns a vector of the same size as current, whose components are return(i)= theData[i]/fact. More...
 
Vectoroperator+= (const Vector &V)
 The += operator adds V's data to data, data[i]+=V(i). More...
 
Vectoroperator-= (const Vector &V)
 The -= operator subtracts V's data from data, data[i]-=V(i). More...
 
Vector operator+ (const Vector &V) const
 The + operator checks the two vectors are of the same size if _G3DEBUG is defined. More...
 
Vector operator- (const Vector &V) const
 The - operator checks the two vectors are of the same size if _G3DEBUG is defined and then returns a Vector whose components are the vector difference of current and V's data. More...
 
double operator^ (const Vector &V) const
 Method to perform (Vector)transposed * vector. More...
 
Vector operator/ (const Matrix &M) const
 Method to return inv(M)*this. More...
 
double dot (const Vector &) const
 
int Assemble (const Vector &V, int init_row, double fact=1.0)
 
int Extract (const Vector &V, int init_row, double fact=1.0)
 
Vector getComponents (const ID &) const
 Returns a vector with the specified subset of components.
 
void putComponents (const Vector &, const ID &)
 Assigns the specified values to the specified set of vector's components.
 
void addComponents (const Vector &, const ID &)
 Sums the specified values to the specified set of vector's components.
 
void write (std::ofstream &)
 Write vector on a binary file.
 
void read (std::ifstream &)
 Read vector from a binary file.
 
std::string toString (void) const
 

Additional Inherited Members

- Public Types inherited from XC::Vector
typedef double * iterator
 

Detailed Description

3D beam column internal forces.


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