OOFEM
2.4
OOFEM.org - Object Oriented Finite Element Solver
|
This class is the implementation of general 2d element with arbitrary interpolation of velocity and pressure fields. More...
#include <pfemelement2d.h>
Public Member Functions | |
PFEMElement2d (int n, Domain *d) | |
Constructor. More... | |
~PFEMElement2d () | |
Destructor. More... | |
virtual double | computeCriticalTimeStep (TimeStep *tStep)=0 |
Calculates critical time step. More... | |
virtual const char * | giveClassName () const |
virtual Element_Geometry_Type | giveGeometryType () const |
Returns the element geometry type. More... | |
virtual void | giveElementDofIDMask (IntArray &answer) const =0 |
Returns element dof mask for node. More... | |
virtual void | giveDofManDofIDMask (int inode, IntArray &answer) const =0 |
Returns dofmanager dof mask for node. More... | |
virtual int | computeNumberOfDofs ()=0 |
Computes or simply returns total number of element's local DOFs. More... | |
IRResultType | initializeFrom (InputRecord *ir) |
Initializes receiver acording to object description stored in input record. More... | |
virtual int | checkConsistency () |
Performs consistency check. More... | |
virtual Interface * | giveInterface (InterfaceType)=0 |
Interface requesting service. More... | |
virtual Element * | giveElement () |
virtual int | giveInternalStateAtNode (FloatArray &answer, InternalStateType type, InternalStateMode mode, int node, TimeStep *tStep)=0 |
Returns internal state variable (like stress,strain) at node of element in Reduced form, the way how is obtained is dependent on InternalValueType. More... | |
virtual FEInterpolation * | giveVelocityInterpolation ()=0 |
Returns the interpolation for velocity. More... | |
virtual FEInterpolation * | givePressureInterpolation ()=0 |
Returns the interpolation for the pressure. More... | |
Public Member Functions inherited from oofem::PFEMElement | |
PFEMElement (int, Domain *) | |
Constructor. More... | |
~PFEMElement () | |
Destructor. More... | |
void | giveCharacteristicMatrix (FloatMatrix &answer, CharType, TimeStep *) |
Computes characteristic matrix of receiver of requested type in given time step. More... | |
void | giveCharacteristicVector (FloatArray &answer, CharType, ValueModeType, TimeStep *) |
Computes characteristic vector of receiver of requested type in given time step. More... | |
virtual void | computeDiagonalMassMtrx (FloatArray &answer, TimeStep *)=0 |
Calculates diagonal mass matrix as vector. More... | |
virtual void | computeDiagonalMassMtrx (FloatMatrix &answer, TimeStep *)=0 |
Calculates diagonal mass matrix. More... | |
virtual void | updateInternalState (TimeStep *tStep) |
Updates element state after equilibrium in time step has been reached. More... | |
virtual void | printOutputAt (FILE *file, TimeStep *tStep) |
Prints output of receiver to stream, for given time step. More... | |
void | computeLoadVector (FloatArray &answer, BodyLoad *load, CharType type, ValueModeType mode, TimeStep *tStep) |
Computes the contribution of the given body load (volumetric). More... | |
virtual const IntArray & | giveVelocityDofMask () const =0 |
Returns mask of velocity Dofs. More... | |
virtual const IntArray & | givePressureDofMask () const =0 |
Returns mask of pressure Dofs. More... | |
virtual void | computeBodyLoadVectorAt (FloatArray &answer, BodyLoad *load, TimeStep *tStep, ValueModeType mode)=0 |
Computes the load vector due to body load acting on receiver, at given time step. More... | |
Public Member Functions inherited from oofem::FMElement | |
FMElement (int n, Domain *aDomain) | |
virtual | ~FMElement () |
virtual void | updateStabilizationCoeffs (TimeStep *tStep) |
Updates the stabilization coefficients used for CBS and SUPG algorithms. More... | |
virtual void | computeVectorOfVelocities (ValueModeType mode, TimeStep *tStep, FloatArray &velocities) |
virtual void | computeVectorOfPressures (ValueModeType mode, TimeStep *tStep, FloatArray &pressures) |
Public Member Functions inherited from oofem::Element | |
Element (int n, Domain *aDomain) | |
Constructor. More... | |
Element (const Element &src)=delete | |
Element & | operator= (const Element &src)=delete |
virtual | ~Element () |
Virtual destructor. More... | |
virtual void | drawYourself (oofegGraphicContext &gc, TimeStep *tStep) |
virtual void | drawAnnotation (oofegGraphicContext &gc, TimeStep *tStep) |
virtual void | drawRawGeometry (oofegGraphicContext &gc, TimeStep *tStep) |
virtual void | drawDeformedGeometry (oofegGraphicContext &gc, TimeStep *tStep, UnknownType) |
virtual void | drawScalar (oofegGraphicContext &gc, TimeStep *tStep) |
virtual void | drawSpecial (oofegGraphicContext &gc, TimeStep *tStep) |
virtual void | giveLocalIntVarMaxMin (oofegGraphicContext &gc, TimeStep *tStep, double &emin, double &emax) |
virtual int | giveInternalStateAtSide (FloatArray &answer, InternalStateType type, InternalStateMode mode, int side, TimeStep *tStep) |
Returns internal state variable (like stress,strain) at side of element in Reduced form If side is possessing DOFs, otherwise recover techniques will not work due to absence of side-shape functions. More... | |
virtual void | showSparseMtrxStructure (CharType mtrx, oofegGraphicContext &gc, TimeStep *tStep) |
Shows sparse structure. More... | |
virtual void | showExtendedSparseMtrxStructure (CharType mtrx, oofegGraphicContext &gc, TimeStep *tStep) |
Shows extended sparse structure (for example, due to nonlocal interactions for tangent stiffness) More... | |
int | giveLabel () const |
int | giveGlobalNumber () const |
void | setGlobalNumber (int num) |
Sets receiver globally unique number. More... | |
elementParallelMode | giveParallelMode () const |
Return elementParallelMode of receiver. More... | |
void | setParallelMode (elementParallelMode _mode) |
Sets parallel mode of element. More... | |
virtual elementParallelMode | giveKnotSpanParallelMode (int) const |
Returns the parallel mode for particular knot span of the receiver. More... | |
int | packUnknowns (DataStream &buff, TimeStep *tStep) |
Pack all necessary data of element (according to its parallel_mode) integration points into given communication buffer. More... | |
int | unpackAndUpdateUnknowns (DataStream &buff, TimeStep *tStep) |
Unpack and updates all necessary data of element (according to its parallel_mode) integration points into given communication buffer. More... | |
int | estimatePackSize (DataStream &buff) |
Estimates the necessary pack size to hold all packed data of receiver. More... | |
const IntArray * | givePartitionList () const |
Returns partition list of receiver. More... | |
void | setPartitionList (IntArray &pl) |
Sets partition list of receiver. More... | |
virtual double | predictRelativeComputationalCost () |
Returns the weight representing relative computational cost of receiver The reference element is triangular plane stress element with linear approximation, single integration point and linear isotropic material. More... | |
virtual double | giveRelativeSelfComputationalCost () |
Returns the weight representing relative computational cost of receiver The reference element is triangular plane stress element. More... | |
virtual double | predictRelativeRedistributionCost () |
Returns the relative redistribution cost of the receiver. More... | |
IntArray * | giveBodyLoadArray () |
Returns array containing load numbers of loads acting on element. More... | |
IntArray * | giveBoundaryLoadArray () |
Returns array containing load numbers of boundary loads acting on element. More... | |
virtual void | giveInputRecord (DynamicInputRecord &input) |
Setups the input record string of receiver. More... | |
virtual contextIOResultType | saveContext (DataStream &stream, ContextMode mode, void *obj=NULL) |
Stores receiver state to output stream. More... | |
virtual contextIOResultType | restoreContext (DataStream &stream, ContextMode mode, void *obj=NULL) |
Restores the receiver state previously written in stream. More... | |
void | giveLocationArray (IntArray &locationArray, const UnknownNumberingScheme &s, IntArray *dofIds=NULL) const |
Returns the location array (array of code numbers) of receiver for given numbering scheme. More... | |
void | giveLocationArray (IntArray &locationArray, const IntArray &dofIDMask, const UnknownNumberingScheme &s, IntArray *dofIds=NULL) const |
virtual void | giveBoundaryLocationArray (IntArray &locationArray, const IntArray &bNodes, const UnknownNumberingScheme &s, IntArray *dofIds=NULL) |
Returns the location array for the boundary of the element. More... | |
virtual void | giveBoundaryLocationArray (IntArray &locationArray, const IntArray &bNodes, const IntArray &dofIDMask, const UnknownNumberingScheme &s, IntArray *dofIds=NULL) |
virtual int | giveNumberOfDofs () |
virtual int | giveNumberOfInternalDofManagers () const |
virtual DofManager * | giveInternalDofManager (int i) const |
Returns i-th internal element dof manager of the receiver. More... | |
virtual double | giveCharacteristicValue (CharType type, TimeStep *tStep) |
Computes characteristic value of receiver of requested type in given time step. More... | |
virtual void | computeBoundarySurfaceLoadVector (FloatArray &answer, BoundaryLoad *load, int boundary, CharType type, ValueModeType mode, TimeStep *tStep, bool global=true) |
Computes the contribution of the given load at the given boundary surface in global coordinate system. More... | |
virtual void | computeTangentFromSurfaceLoad (FloatMatrix &answer, SurfaceLoad *load, int boundary, MatResponseMode rmode, TimeStep *tStep) |
Computes the tangent contribution of the given load at the given boundary. More... | |
virtual void | computeTangentFromEdgeLoad (FloatMatrix &answer, EdgeLoad *load, int boundary, MatResponseMode rmode, TimeStep *tStep) |
Computes the tangent contribution of the given load at the given boundary. More... | |
virtual void | computeBoundaryEdgeLoadVector (FloatArray &answer, BoundaryLoad *load, int edge, CharType type, ValueModeType mode, TimeStep *tStep, bool global=true) |
Computes the contribution of the given load at the given boundary edge. More... | |
const IntArray & | giveBodyLoadList () const |
Returns receiver list of bodyloads. More... | |
const IntArray & | giveBoundaryLoadList () const |
Returns receiver list of boundary loads. More... | |
void | computeVectorOf (ValueModeType u, TimeStep *tStep, FloatArray &answer) |
Returns local vector of unknowns. More... | |
void | computeVectorOf (const IntArray &dofIDMask, ValueModeType u, TimeStep *tStep, FloatArray &answer, bool padding=false) |
void | computeBoundaryVectorOf (const IntArray &bNodes, const IntArray &dofIDMask, ValueModeType u, TimeStep *tStep, FloatArray &answer, bool padding=false) |
Boundary version of computeVectorOf. More... | |
void | computeVectorOf (PrimaryField &field, const IntArray &dofIDMask, ValueModeType u, TimeStep *tStep, FloatArray &answer, bool padding=false) |
Returns local vector of unknowns. More... | |
void | computeVectorOfPrescribed (ValueModeType u, TimeStep *tStep, FloatArray &answer) |
Returns local vector of prescribed unknowns. More... | |
void | computeVectorOfPrescribed (const IntArray &dofIDMask, ValueModeType type, TimeStep *tStep, FloatArray &answer) |
Returns local vector of prescribed unknowns. More... | |
virtual int | computeNumberOfGlobalDofs () |
Computes the total number of element's global dofs. More... | |
int | computeNumberOfPrimaryMasterDofs () |
Computes the total number of element's primary master DOFs. More... | |
virtual bool | computeGtoLRotationMatrix (FloatMatrix &answer) |
Returns transformation matrix from global c.s. More... | |
virtual bool | giveRotationMatrix (FloatMatrix &answer) |
Transformation matrices updates rotation matrix between element-local and primary DOFs, taking into account nodal c.s. More... | |
virtual bool | computeDofTransformationMatrix (FloatMatrix &answer, const IntArray &nodes, bool includeInternal) |
Returns transformation matrix for DOFs from global coordinate system to local coordinate system in nodes. More... | |
virtual void | giveInternalDofManDofIDMask (int inode, IntArray &answer) const |
Returns internal dofmanager dof mask for node. More... | |
virtual void | computeField (ValueModeType mode, TimeStep *tStep, const FloatArray &lcoords, FloatArray &answer) |
Computes the unknown vector interpolated at the specified local coordinates. More... | |
virtual double | computeVolumeAround (GaussPoint *gp) |
Returns volume related to given integration point. More... | |
virtual double | computeVolumeAreaOrLength () |
Computes the volume, area or length of the element depending on its spatial dimension. More... | |
double | computeMeanSize () |
Computes the size of the element defined as its length. More... | |
virtual double | computeVolume () |
Computes the volume. More... | |
virtual double | computeArea () |
Computes the area (zero for all but 2d geometries). More... | |
virtual double | computeLength () |
Computes the length (zero for all but 1D geometries) More... | |
virtual void | giveBoundaryEdgeNodes (IntArray &bNodes, int boundary) |
Returns list of receiver boundary nodes for given edge. More... | |
virtual void | giveBoundarySurfaceNodes (IntArray &bNodes, int boundary) |
Returns list of receiver boundary nodes for given surface. More... | |
virtual IntegrationRule * | giveBoundaryEdgeIntegrationRule (int order, int boundary) |
Returns boundary edge integration rule. More... | |
virtual IntegrationRule * | giveBoundarySurfaceIntegrationRule (int order, int boundary) |
Returns boundary surface integration rule. More... | |
int | giveDofManagerNumber (int i) const |
Translates local to global indices for dof managers. More... | |
const IntArray & | giveDofManArray () const |
void | addDofManager (DofManager *dMan) |
DofManager * | giveDofManager (int i) const |
Node * | giveNode (int i) const |
Returns reference to the i-th node of element. More... | |
virtual ElementSide * | giveSide (int i) const |
Returns reference to the i-th side of element. More... | |
virtual FEInterpolation * | giveInterpolation () const |
virtual FEInterpolation * | giveInterpolation (DofIDItem id) const |
Returns the interpolation for the specific dof id. More... | |
virtual Material * | giveMaterial () |
int | giveMaterialNumber () const |
CrossSection * | giveCrossSection () |
void | setMaterial (int matIndx) |
Sets the material of receiver. More... | |
virtual void | setCrossSection (int csIndx) |
Sets the cross section model of receiver. More... | |
virtual int | giveNumberOfDofManagers () const |
virtual int | giveNumberOfNodes () const |
Returns number of nodes of receiver. More... | |
void | setDofManagers (const IntArray &dmans) |
Sets receiver dofManagers. More... | |
void | setBodyLoads (const IntArray &bodyLoads) |
Sets receiver bodyLoadArray. More... | |
void | setIntegrationRules (std::vector< std::unique_ptr< IntegrationRule > > irlist) |
Sets integration rules. More... | |
virtual integrationDomain | giveIntegrationDomain () const |
Returns integration domain for receiver, used to initialize integration point over receiver volume. More... | |
virtual MaterialMode | giveMaterialMode () |
Returns material mode for receiver integration points. More... | |
virtual int | giveIntegrationRuleLocalCodeNumbers (IntArray &answer, IntegrationRule &ie) |
Assembles the code numbers of given integration element (sub-patch) This is done by obtaining list of nonzero shape functions and by collecting the code numbers of nodes corresponding to these shape functions. More... | |
int | giveRegionNumber () |
virtual void | postInitialize () |
Performs post initialization steps. More... | |
virtual void | updateYourself (TimeStep *tStep) |
Updates element state after equilibrium in time step has been reached. More... | |
virtual void | initializeYourself (TimeStep *timeStepWhenICApply) |
Initialization according to state given by initial conditions. More... | |
virtual bool | isActivated (TimeStep *tStep) |
virtual bool | isCast (TimeStep *tStep) |
virtual void | initForNewStep () |
Initializes receivers state to new time step. More... | |
virtual int | giveSpatialDimension () |
Returns the element spatial dimension (1, 2, or 3). More... | |
virtual int | giveNumberOfBoundarySides () |
virtual int | giveDefaultIntegrationRule () const |
Returns id of default integration rule. More... | |
virtual IntegrationRule * | giveDefaultIntegrationRulePtr () |
Access method for default integration rule. More... | |
int | giveNumberOfIntegrationRules () |
virtual IntegrationRule * | giveIntegrationRule (int i) |
std::vector< std::unique_ptr< IntegrationRule > > & | giveIntegrationRulesArray () |
virtual int | testElementExtension (ElementExtension ext) |
Tests if the element implements required extension. More... | |
virtual int | giveIPValue (FloatArray &answer, GaussPoint *gp, InternalStateType type, TimeStep *tStep) |
Returns the integration point corresponding value in full form. More... | |
int | giveGlobalIPValue (FloatArray &answer, GaussPoint *gp, InternalStateType type, TimeStep *tStep) |
virtual double | giveLengthInDir (const FloatArray &normalToCrackPlane) |
Default implementation returns length of element projection into specified direction. More... | |
virtual double | giveCharacteristicLength (const FloatArray &normalToCrackPlane) |
Returns the size of element in the given direction, in some cases adjusted (e.g. More... | |
double | giveCharacteristicLengthForPlaneElements (const FloatArray &normalToCrackPlane) |
Returns the size of element in the given direction if the direction is in the XY plane, otherwise gives the mean size defined as the square root of the element area. More... | |
double | giveCharacteristicLengthForAxisymmElements (const FloatArray &normalToCrackPlane) |
Returns the size of an axisymmetric element in the given direction if the direction is in the XY plane, otherwise gives the mean distance vrom the symmetry axis multiplied by pi. More... | |
virtual double | giveCharacteristicSize (GaussPoint *gp, FloatArray &normalToCrackPlane, ElementCharSizeMethod method) |
Returns characteristic element size for a given integration point and given direction. More... | |
virtual double | giveParentElSize () const |
Returns the size (length, area or volume depending on element type) of the parent element. More... | |
virtual void | updateBeforeNonlocalAverage (TimeStep *tStep) |
Updates internal element state (in all integration points of receiver) before nonlocal averaging takes place. More... | |
virtual int | computeGlobalCoordinates (FloatArray &answer, const FloatArray &lcoords) |
Computes the global coordinates from given element's local coordinates. More... | |
virtual bool | computeLocalCoordinates (FloatArray &answer, const FloatArray &gcoords) |
Computes the element local coordinates from given global coordinates. More... | |
virtual int | giveLocalCoordinateSystem (FloatMatrix &answer) |
Returns local coordinate system of receiver Required by material models with ortho- and anisotrophy. More... | |
virtual void | computeMidPlaneNormal (FloatArray &answer, const GaussPoint *gp) |
Computes mid-plane normal of receiver at integration point. More... | |
virtual int | adaptiveMap (Domain *oldd, TimeStep *tStep) |
Initializes the internal state variables stored in all IPs according to state in given domain. More... | |
virtual int | mapStateVariables (Domain &iOldDom, const TimeStep &iTStep) |
Maps the internal state variables stored in all IPs from the old domain to the new domain. More... | |
virtual int | adaptiveUpdate (TimeStep *tStep) |
Updates the internal state variables stored in all IPs according to already mapped state. More... | |
virtual int | adaptiveFinish (TimeStep *tStep) |
Finishes the mapping for given time step. More... | |
virtual void | updateLocalNumbering (EntityRenumberingFunctor &f) |
Local renumbering support. More... | |
template<class T > | |
void | ipEvaluator (T *src, void(T::*f)(GaussPoint *gp)) |
Integration point evaluator, loops over receiver IP's and calls given function (passed as f parameter) on them. The IP is parameter to function f. More... | |
template<class T , class S > | |
void | ipEvaluator (T *src, void(T::*f)(GaussPoint *, S &), S &_val) |
Integration point evaluator, loops over receiver IP's and calls given function (passed as f parameter) on them. The IP is parameter to function f as well as additional array. More... | |
Public Member Functions inherited from oofem::FEMComponent | |
FEMComponent (int n, Domain *d) | |
Regular constructor, creates component with given number and belonging to given domain. More... | |
virtual | ~FEMComponent () |
Virtual destructor. More... | |
virtual const char * | giveInputRecordName () const =0 |
Domain * | giveDomain () const |
virtual void | setDomain (Domain *d) |
Sets associated Domain. More... | |
int | giveNumber () const |
void | setNumber (int num) |
Sets number of receiver. More... | |
virtual void | printYourself () |
Prints receiver state on stdout. Useful for debugging. More... | |
std::string | errorInfo (const char *func) const |
Returns string for prepending output (used by error reporting macros). More... | |
Protected Member Functions | |
virtual void | computeGaussPoints ()=0 |
Initializes the array of integration rules member variable. More... | |
virtual void | computeDeviatoricStress (FloatArray &answer, GaussPoint *gp, TimeStep *tStep)=0 |
Computes deviatoric stress vector in given integration point and solution step from given total strain vector. More... | |
virtual void | computeDeviatoricStressDivergence (FloatArray &answer, TimeStep *tStep)=0 |
Calculates the divergence of the deviatoric stress. More... | |
virtual void | computeBMatrix (FloatMatrix &answer, GaussPoint *gp) |
Calculates the element shape function derivative matrix. More... | |
virtual void | computeStiffnessMatrix (FloatMatrix &answer, MatResponseMode mode, TimeStep *tStep) |
Calculates the stiffness matrix. More... | |
virtual void | computePressureLaplacianMatrix (FloatMatrix &answer, TimeStep *tStep) |
Calculates the pressure laplacian matrix. More... | |
virtual void | computeDivergenceMatrix (FloatMatrix &answerx, TimeStep *tStep) |
Calculates the velocity divergence matrix. More... | |
virtual void | computeGradientMatrix (FloatMatrix &answer, TimeStep *tStep) |
Calculates the pressure gradient matrix. More... | |
void | computePrescribedRhsVector (FloatArray &answer, TimeStep *tStep, ValueModeType mode) |
Calculates the prescribed velocity vector for the right hand side of the pressure equation. More... | |
void | computeEdgeNMatrixAt (FloatMatrix &answer, int iedge, GaussPoint *gp) |
Calculates the shape function matrix on an edge. More... | |
void | computeEgdeNVectorAt (FloatArray &answer, int iedge, GaussPoint *gp) |
Calculates the shape function vector on an edge. More... | |
double | computeEdgeVolumeAround (GaussPoint *gp, int iEdge) |
Calculates the volume around an edge. More... | |
void | giveEdgeDofMapping (IntArray &answer, int iEdge) const |
Gives the mapping for degrees of freedom on an edge. More... | |
Additional Inherited Members | |
Protected Attributes inherited from oofem::Element | |
int | numberOfDofMans |
Number of dofmanagers. More... | |
IntArray | dofManArray |
Array containing dofmanager numbers. More... | |
int | material |
Number of associated material. More... | |
int | crossSection |
Number of associated cross section. More... | |
IntArray | bodyLoadArray |
Array containing indexes of loads (body loads and boundary loads are kept separately), that apply on receiver. More... | |
IntArray | boundaryLoadArray |
std::vector< std::unique_ptr< IntegrationRule > > | integrationRulesArray |
List of integration rules of receiver (each integration rule contains associated integration points also). More... | |
FloatMatrix | elemLocalCS |
Transformation material matrix, used in orthotropic and anisotropic materials, global->local transformation. More... | |
int | activityTimeFunction |
Element activity time function. If defined, nonzero value indicates active receiver, zero value inactive element. More... | |
int | globalNumber |
In parallel mode, globalNumber contains globally unique DoFManager number. More... | |
int | numberOfGaussPoints |
Number of integration points as specified by nip. More... | |
elementParallelMode | parallel_mode |
Determines the parallel mode of the element. More... | |
IntArray | partitions |
List of partition sharing the shared element or remote partition containing remote element counterpart. More... | |
Protected Attributes inherited from oofem::FEMComponent | |
int | number |
Component number. More... | |
Domain * | domain |
Link to domain object, useful for communicating with other FEM components. More... | |
This class is the implementation of general 2d element with arbitrary interpolation of velocity and pressure fields.
Should be used with PFEM solution algorithm.
Definition at line 68 of file pfemelement2d.h.
oofem::PFEMElement2d::PFEMElement2d | ( | int | n, |
Domain * | d | ||
) |
Constructor.
Definition at line 61 of file pfemelement2d.C.
oofem::PFEMElement2d::~PFEMElement2d | ( | ) |
Destructor.
Definition at line 66 of file pfemelement2d.C.
|
virtual |
Performs consistency check.
This method is called at startup for all elements in particular domain. This method is intended to check data compatibility. Particular element types should test if compatible material and crossSection both with required capabilities are specified. Derived classes should provide their own analysis specific tests. Some printed input if incompatibility is found should be provided (error or warning member functions). Method can be also used to initialize some variables, since this is invoked after all domain components are instanciated.
Reimplemented from oofem::PFEMElement.
Reimplemented in oofem::TR1_2D_PFEM.
Definition at line 77 of file pfemelement2d.C.
References oofem::PFEMElement::checkConsistency().
Referenced by oofem::TR1_2D_PFEM::checkConsistency(), and giveGeometryType().
|
protectedvirtual |
Calculates the element shape function derivative matrix.
Implements oofem::PFEMElement.
Definition at line 84 of file pfemelement2d.C.
References oofem::FloatMatrix::at(), oofem::FEInterpolation::evaldNdx(), oofem::GaussPoint::giveNaturalCoordinates(), oofem::FloatMatrix::giveNumberOfRows(), giveVelocityInterpolation(), oofem::FloatMatrix::resize(), and oofem::FloatMatrix::zero().
Referenced by computeStiffnessMatrix(), and giveElement().
|
pure virtual |
|
protectedpure virtual |
Computes deviatoric stress vector in given integration point and solution step from given total strain vector.
Implements oofem::PFEMElement.
Implemented in oofem::TR1_2D_PFEM.
Referenced by giveElement().
|
protectedpure virtual |
Calculates the divergence of the deviatoric stress.
Implements oofem::PFEMElement.
Implemented in oofem::TR1_2D_PFEM.
Referenced by giveElement().
|
protectedvirtual |
Calculates the velocity divergence matrix.
Implements oofem::PFEMElement.
Definition at line 187 of file pfemelement2d.C.
References oofem::FloatMatrix::add(), oofem::FloatArray::at(), oofem::FloatMatrix::at(), oofem::FloatMatrix::clear(), oofem::Element::computeVolumeAround(), oofem::FEInterpolation::evaldNdx(), oofem::FEInterpolation::evalN(), oofem::Element::giveDefaultIntegrationRule(), oofem::FloatMatrix::giveNumberOfRows(), oofem::FloatArray::giveSize(), giveVelocityInterpolation(), oofem::Element::integrationRulesArray, N, oofem::FloatMatrix::resize(), and oofem::FloatMatrix::zero().
Referenced by giveElement().
|
protected |
Calculates the shape function matrix on an edge.
Definition at line 311 of file pfemelement2d.C.
References oofem::FloatMatrix::beNMatrixOf(), oofem::FEInterpolation::boundaryEvalN(), oofem::GaussPoint::giveNaturalCoordinates(), and giveVelocityInterpolation().
Referenced by computePrescribedRhsVector(), and giveElement().
|
protected |
Calculates the volume around an edge.
Definition at line 325 of file pfemelement2d.C.
References oofem::FEInterpolation::boundaryGiveTransformationJacobian(), oofem::GaussPoint::giveNaturalCoordinates(), giveVelocityInterpolation(), and oofem::GaussPoint::giveWeight().
Referenced by computePrescribedRhsVector(), and giveElement().
|
protected |
Calculates the shape function vector on an edge.
Definition at line 319 of file pfemelement2d.C.
References oofem::FEInterpolation::boundaryEvalN(), oofem::GaussPoint::giveNaturalCoordinates(), and giveVelocityInterpolation().
Referenced by computePrescribedRhsVector(), and giveElement().
|
protectedpure virtual |
Initializes the array of integration rules member variable.
Element can have multiple integration rules for different tasks. For example structural element family class uses this feature to implement transparent support for reduced and selective integration of some strain components. Must be defined by terminator classes.
Reimplemented from oofem::Element.
Implemented in oofem::TR1_2D_PFEM.
Referenced by giveElement().
|
protectedvirtual |
Calculates the pressure gradient matrix.
Implements oofem::PFEMElement.
Definition at line 156 of file pfemelement2d.C.
References oofem::FloatMatrix::add(), oofem::FloatArray::at(), oofem::FloatMatrix::at(), oofem::FloatMatrix::clear(), oofem::Element::computeVolumeAround(), oofem::FEInterpolation::evaldNdx(), oofem::FEInterpolation::evalN(), oofem::Element::giveDefaultIntegrationRule(), oofem::FloatMatrix::giveNumberOfRows(), givePressureInterpolation(), oofem::FloatArray::giveSize(), oofem::Element::integrationRulesArray, N, oofem::FloatMatrix::resize(), and oofem::FloatMatrix::zero().
Referenced by giveElement().
|
pure virtual |
Computes or simply returns total number of element's local DOFs.
Must be defined by particular element.
Reimplemented from oofem::Element.
Implemented in oofem::TR1_2D_PFEM.
Referenced by giveGeometryType().
|
protectedvirtual |
Calculates the prescribed velocity vector for the right hand side of the pressure equation.
Implements oofem::PFEMElement.
Definition at line 217 of file pfemelement2d.C.
References oofem::_Line, oofem::FloatArray::add(), oofem::FloatArray::assemble(), oofem::FloatArray::at(), oofem::FloatArray::beProductOf(), oofem::FEInterpolation::boundaryEvalNormal(), computeEdgeNMatrixAt(), computeEdgeVolumeAround(), computeEgdeNVectorAt(), oofem::Element::computeVectorOfPrescribed(), oofem::FloatArray::dotProduct(), giveEdgeDofMapping(), giveVelocityInterpolation(), N, oofem::Element::numberOfGaussPoints, oofem::FloatArray::resize(), oofem::IntegrationRule::setUpIntegrationPoints(), and oofem::FloatArray::zero().
Referenced by giveElement().
|
protectedvirtual |
Calculates the pressure laplacian matrix.
Implements oofem::PFEMElement.
Definition at line 125 of file pfemelement2d.C.
References oofem::FloatMatrix::add(), oofem::FloatMatrix::at(), oofem::Element::computeVolumeAround(), oofem::FEInterpolation::evaldNdx(), oofem::Element::giveCrossSection(), oofem::Element::giveDefaultIntegrationRule(), oofem::FloatMatrix::giveNumberOfRows(), givePressureInterpolation(), oofem::Element::integrationRulesArray, oofem::FloatMatrix::resize(), oofem::FloatMatrix::times(), and oofem::FloatMatrix::zero().
Referenced by giveElement().
|
protectedvirtual |
Calculates the stiffness matrix.
Implements oofem::PFEMElement.
Definition at line 107 of file pfemelement2d.C.
References oofem::FloatMatrix::beProductOf(), oofem::FloatMatrix::clear(), computeBMatrix(), oofem::Element::computeVolumeAround(), oofem::Element::giveCrossSection(), oofem::Element::giveDefaultIntegrationRule(), oofem::FluidDynamicMaterial::giveDeviatoricStiffnessMatrix(), oofem::Element::integrationRulesArray, and oofem::FloatMatrix::plusProductUnsym().
Referenced by giveElement().
|
inlinevirtual |
Reimplemented from oofem::PFEMElement.
Reimplemented in oofem::TR1_2D_PFEM.
Definition at line 80 of file pfemelement2d.h.
|
pure virtual |
Returns dofmanager dof mask for node.
This mask defines the dofs which are used by element in node. Mask influences the code number ordering for particular node. Code numbers are ordered according to node order and dofs belonging to particular node are ordered according to this mask. If element requests dofs using node mask which are not in node then error is generated. This masking allows node to be shared by different elements with different dofs in same node. Elements local code numbers are extracted from node using this mask. Must be defined by particular element.
inode | Mask is computed for local dofmanager with inode number. |
answer | Mask for node. |
Reimplemented from oofem::Element.
Implemented in oofem::TR1_2D_PFEM.
Referenced by giveGeometryType().
|
protected |
Gives the mapping for degrees of freedom on an edge.
Definition at line 286 of file pfemelement2d.C.
References oofem::IntArray::at(), OOFEM_ERROR, and oofem::IntArray::resize().
Referenced by computePrescribedRhsVector(), and giveElement().
|
inlinevirtual |
Reimplemented in oofem::TR1_2D_PFEM.
Definition at line 91 of file pfemelement2d.h.
References computeBMatrix(), computeDeviatoricStress(), computeDeviatoricStressDivergence(), computeDivergenceMatrix(), computeEdgeNMatrixAt(), computeEdgeVolumeAround(), computeEgdeNVectorAt(), computeGaussPoints(), computeGradientMatrix(), computePrescribedRhsVector(), computePressureLaplacianMatrix(), computeStiffnessMatrix(), giveEdgeDofMapping(), giveInternalStateAtNode(), givePressureInterpolation(), and giveVelocityInterpolation().
|
pure virtual |
Returns element dof mask for node.
This mask defines the dof ordering of the element interpolation. Default implementation for most elements, with noteable exceptions such as XFEM and some types of shell elements.
ut | Equation DOFs belong to. |
answer | DOF mask for receiver. |
Reimplemented from oofem::Element.
Implemented in oofem::TR1_2D_PFEM.
Referenced by giveGeometryType().
|
inlinevirtual |
Returns the element geometry type.
This information is assumed to be of general interest, but it is required only for some specialized tasks.
Reimplemented from oofem::Element.
Reimplemented in oofem::TR1_2D_PFEM.
Definition at line 81 of file pfemelement2d.h.
References checkConsistency(), computeNumberOfDofs(), giveDofManDofIDMask(), giveElementDofIDMask(), giveInterface(), and initializeFrom().
|
pure virtual |
Interface requesting service.
Reimplemented from oofem::FEMComponent.
Implemented in oofem::TR1_2D_PFEM.
Referenced by giveGeometryType().
|
pure virtual |
Returns internal state variable (like stress,strain) at node of element in Reduced form, the way how is obtained is dependent on InternalValueType.
The value may be local, or smoothed using some recovery technique. Returns zero if element is unable to respond to request.
answer | Contains result, zero sized if not supported. |
type | Determines the internal variable requested (physical meaning). |
mode | Determines the mode of variable (recovered, local, ...). |
node | Node number, for which variable is required. |
tStep | Time step. |
Reimplemented from oofem::PFEMElement.
Implemented in oofem::TR1_2D_PFEM.
Referenced by giveElement().
|
pure virtual |
Returns the interpolation for the pressure.
Implements oofem::PFEMElement.
Implemented in oofem::TR1_2D_PFEM.
Referenced by computeGradientMatrix(), computePressureLaplacianMatrix(), and giveElement().
|
pure virtual |
Returns the interpolation for velocity.
Implements oofem::PFEMElement.
Implemented in oofem::TR1_2D_PFEM.
Referenced by computeBMatrix(), computeDivergenceMatrix(), computeEdgeNMatrixAt(), computeEdgeVolumeAround(), computeEgdeNVectorAt(), computePrescribedRhsVector(), and giveElement().
|
virtual |
Initializes receiver acording to object description stored in input record.
Reimplemented from oofem::PFEMElement.
Reimplemented in oofem::TR1_2D_PFEM.
Definition at line 71 of file pfemelement2d.C.
References oofem::PFEMElement::initializeFrom().
Referenced by giveGeometryType().