|
OOFEM 3.0
|
#include <integrationrule.h>
Public Member Functions | |
| std::vector< GaussPoint * >::iterator | begin () |
| std::vector< GaussPoint * >::iterator | end () |
| IntegrationRule (int n, Element *e, int startIndx, int endIndx, bool dynamic) | |
| IntegrationRule (int n, Element *e) | |
| virtual | ~IntegrationRule () |
| Destructor. | |
| int | giveNumberOfIntegrationPoints () const |
| GaussPoint * | getIntegrationPoint (int n) |
| GaussPoint * | findIntegrationPointClosestTo (const FloatArray &lcoord) |
| int | getStartIndexOfLocalStrainWhereApply () |
| int | getEndIndexOfLocalStrainWhereApply () |
| int | setUpIntegrationPoints (integrationDomain intdomain, int nPoints, MaterialMode matMode) |
| int | setUpIntegrationPoints (integrationDomain intdomain, int nPointsXY, int nPointsZ, MaterialMode matMode) |
| int | setUpEmbeddedIntegrationPoints (integrationDomain intdomain, int nPoints, MaterialMode matMode, const std ::vector< FloatArray > &coords) |
| virtual void | printOutputAt (FILE *file, TimeStep *tStep) |
| void | updateYourself (TimeStep *tStep) |
| Element * | giveElement () |
| void | setElement (Element *e) |
| int | giveNumber () |
| integrationDomain | giveIntegrationDomain () const |
| virtual int | getRequiredNumberOfIntegrationPoints (integrationDomain dType, int approxOrder) |
| virtual void | saveContext (DataStream &stream, ContextMode mode) |
| virtual void | restoreContext (DataStream &stream, ContextMode mode) |
| void | clear () |
| virtual const IntArray * | giveKnotSpan () |
| Returns receiver sub patch indices (if apply). | |
| virtual const char * | giveClassName () const |
| std::string | errorInfo (const char *func) const |
| Error printing helper. | |
| virtual IntegrationRuleType | giveIntegrationRuleType () const |
| virtual void | initializeFrom (InputRecord &ir) |
| int | SetUpPoint (MaterialMode mode) |
| virtual int | SetUpPointsOnLine (int, MaterialMode mode) |
| virtual int | SetUpPointsOnTriangle (int, MaterialMode mode) |
| virtual int | SetUpPointsOnSquare (int, MaterialMode mode) |
| virtual int | SetUpPointsOn3dDegShell (int nPointsXY, int nPointsZ, MaterialMode mode) |
| virtual int | SetUpPointsOn3dDegShellLayers (int nPointsXY, int nPointsZ, MaterialMode mode, const FloatArray &layerThickness) |
| virtual int | SetUpPointsOnCube (int, MaterialMode mode) |
| virtual int | SetUpPointsOnCubeLayers (int nPoints1, int nPoints2, int nPointsDepth, MaterialMode mode, const FloatArray &layerThickness) |
| virtual int | SetUpPointsOnTetrahedra (int, MaterialMode mode) |
| virtual int | SetUpPointsOn2DEmbeddedLine (int nPoints, MaterialMode mode, const FloatArray &coord0, const FloatArray &coord1) |
| virtual int | SetUpPointsOnWedge (int nPointsTri, int nPointsDepth, MaterialMode mode) |
| virtual int | SetUpPointsOnWedgeLayers (int nPointsTri, int nPointsDepth, MaterialMode mode, const FloatArray &layerThickness) |
Protected Attributes | |
| int | number |
| Number. | |
| Element * | elem |
| Element which integration rule is coupled to. | |
| integrationDomain | intdomain |
| Integration domain. | |
| std::vector< GaussPoint * > | gaussPoints |
| Array containing integration points. | |
| int | firstLocalStrainIndx |
| int | lastLocalStrainIndx |
| bool | isDynamic |
Abstract base class representing integration rule. The integration rule is a collection of integration points used to numerically integrate some formula. The number of integration points and their coordinates and integration weights depends on integration rule type (rule for integration in 1d, 2d, 3d) and required accuracy. General services for initialization are declared. Services for integration point retrieval are provided.
In general, finite elements can have multiple integration rules, for different tasks or when some components are integrated using reduced or selective integration. Therefore, first and last index variables are introduced to characterize components for which given integration rule applies.
The integration rule is a rather passive object. It does not perform numerical integration - it just provide way how to set up correct integration points and weights.
Because integration points contain related history parameters (using material status), the unique copy of integration rule must exist on each element. The integration rule is exclusively possessed by particular finite element.
Tasks:
Definition at line 94 of file integrationrule.h.
| oofem::IntegrationRule::IntegrationRule | ( | int | n, |
| Element * | e, | ||
| int | startIndx, | ||
| int | endIndx, | ||
| bool | dynamic ) |
Constructor.
| n | Number associated with receiver. |
| e | Reference to element. |
| startIndx | First component, for which rule applies. |
| endIndx | Last component, for which rule applies. |
| dynamic | Flag indicating that receiver can change. |
Definition at line 44 of file integrationrule.C.
References oofem::_UnknownIntegrationDomain, elem, firstLocalStrainIndx, intdomain, isDynamic, lastLocalStrainIndx, and number.
Referenced by oofem::GaussIntegrationRule::GaussIntegrationRule(), oofem::GaussIntegrationRule::GaussIntegrationRule(), oofem::LayeredIntegrationRule::LayeredIntegrationRule(), oofem::LayeredIntegrationRule::LayeredIntegrationRule(), oofem::LobattoIntegrationRule::LobattoIntegrationRule(), and oofem::LobattoIntegrationRule::LobattoIntegrationRule().
| oofem::IntegrationRule::IntegrationRule | ( | int | n, |
| Element * | e ) |
Constructor.
| n | Number associated with receiver. |
| e | Reference to element. |
Definition at line 54 of file integrationrule.C.
References oofem::_UnknownIntegrationDomain, elem, firstLocalStrainIndx, intdomain, isDynamic, lastLocalStrainIndx, and number.
|
virtual |
|
inline |
Definition at line 119 of file integrationrule.h.
References gaussPoints.
| void oofem::IntegrationRule::clear | ( | ) |
Clears the receiver, ie deallocates all integration points
Definition at line 71 of file integrationrule.C.
References gaussPoints.
Referenced by restoreContext(), and ~IntegrationRule().
|
inline |
Definition at line 120 of file integrationrule.h.
References gaussPoints.
|
inline |
Error printing helper.
Definition at line 249 of file integrationrule.h.
References giveClassName().
| GaussPoint * oofem::IntegrationRule::findIntegrationPointClosestTo | ( | const FloatArray & | lcoord | ) |
Scans through the integration points and finds the one closest to the given (local) coordinate.
Definition at line 95 of file integrationrule.C.
References oofem::distance_square(), and oofem::GaussPoint::giveNaturalCoordinates().
|
inline |
Returns last component index, for which receiver applies.
Definition at line 162 of file integrationrule.h.
References lastLocalStrainIndx.
| GaussPoint * oofem::IntegrationRule::getIntegrationPoint | ( | int | n | ) |
Access particular integration point of receiver.
| n | Integration point number (should be in range 0,.., giveNumberOfIntegrationPoints()-1). |
Definition at line 82 of file integrationrule.C.
References gaussPoints, giveNumberOfIntegrationPoints(), and OOFEM_ERROR.
Referenced by oofem::ElementErrorCheckingRule::check(), oofem::TrPlaneStrRot::computeBmatrixAt(), oofem::CCTPlate3d::computeBodyLoadVectorAt(), oofem::CCTPlate::computeBodyLoadVectorAt(), oofem::DKTPlate3d::computeBodyLoadVectorAt(), oofem::DKTPlate::computeBodyLoadVectorAt(), oofem::TR_SHELL11::computeBodyLoadVectorAt(), oofem::TrPlanestressRotAllman3d::computeBodyLoadVectorAt(), oofem::TrPlaneStrRot3d::computeBodyLoadVectorAt(), oofem::TransportGradientNeumann::computeEta(), oofem::Shell7Base::computeInterLaminarStressesAt(), oofem::LIBeam3dNL2::computeStiffnessMatrix(), oofem::LIBeam3dNL::computeStiffnessMatrix(), oofem::LIBeam3dNL2::computeTempCurv(), oofem::LIBeam3dNL::computeTempCurv(), oofem::DKTPlate::computeVertexBendingMoments(), oofem::TransportGradientDirichlet::computeXi(), oofem::IntElPoint::drawScalar(), oofem::ElementErrorCheckingRule::getValue(), oofem::SADGBoundaryElement::giveCharacteristicMatrix(), oofem::LIBeam3dNL2::giveInternalForcesVector(), oofem::LIBeam3dNL::giveInternalForcesVector(), oofem::Lattice2d_mt::giveMass(), oofem::Lattice2d::giveNormalStress(), oofem::Lattice2d_mt::giveOldPressure(), oofem::Lattice2d_mt::givePressure(), oofem::Lattice2d::hasBeenUpdated(), oofem::NCPrincipalStrain::nucleateEnrichmentItems(), oofem::NCPrincipalStress::nucleateEnrichmentItems(), oofem::GnuplotExportModule::outputInterfaceEl(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem1D(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem2D(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem3D(), and oofem::ErrorCheckingExportModule::writeCheck().
|
inlinevirtual |
Abstract service. Returns required number of integration points to exactly integrate polynomial of order approxOrder on given domain. When approxOrder is too large and is not supported by implementation method returns -1. Must be overloaded by derived classes.
Reimplemented in oofem::GaussIntegrationRule, and oofem::LobattoIntegrationRule.
Definition at line 217 of file integrationrule.h.
Referenced by oofem::StructuralElement::giveNumberOfIPForMassMtrxIntegration().
|
inline |
Returns starting component index, for which receiver applies.
Definition at line 157 of file integrationrule.h.
References firstLocalStrainIndx.
|
inlinevirtual |
Reimplemented in oofem::GaussIntegrationRule, oofem::LayeredIntegrationRule, oofem::LobattoIntegrationRule, and oofem::PatchIntegrationRule.
Definition at line 247 of file integrationrule.h.
Referenced by errorInfo().
|
inline |
Returns reference to element containing receiver
Definition at line 203 of file integrationrule.h.
References elem.
Referenced by oofem::GaussIntegrationRule::SetUpPointsOn2DEmbeddedLine().
|
inline |
Returns the domain for the receiver
Definition at line 209 of file integrationrule.h.
Referenced by oofem::LayeredCrossSection::give(), oofem::LayeredCrossSection::giveFirstPKStress_3d(), oofem::LayeredCrossSection::giveIPValue(), oofem::FiberedCrossSection::giveMaterial(), oofem::LayeredCrossSection::giveMaterial(), oofem::LayeredCrossSection::giveRealStress_3d(), oofem::LayeredCrossSection::giveRealStress_3dDegeneratedShell(), oofem::LayeredCrossSection::giveStiffnessMatrix_3d(), and oofem::LayeredCrossSection::giveStiffnessMatrix_dPdF_3d().
|
inlinevirtual |
Reimplemented in oofem::GaussIntegrationRule, and oofem::LobattoIntegrationRule.
Definition at line 250 of file integrationrule.h.
References oofem::IRT_None.
|
inlinevirtual |
Returns receiver sub patch indices (if apply).
Reimplemented in oofem::IGAIntegrationElement.
Definition at line 245 of file integrationrule.h.
Referenced by oofem::PlaneStressStructuralElementEvaluator::computeBMatrixAt(), oofem::Space3dStructuralElementEvaluator::computeBMatrixAt(), oofem::PlaneStressStructuralElementEvaluator::computeNMatrixAt(), oofem::Space3dStructuralElementEvaluator::computeNMatrixAt(), oofem::PlaneStressStructuralElementEvaluator::computeVolumeAround(), oofem::Space3dStructuralElementEvaluator::computeVolumeAround(), and oofem::StructuralElementEvaluator::drawIGAPatchDeformedGeometry.
|
inline |
Returns receiver number
Definition at line 207 of file integrationrule.h.
Referenced by oofem::FiberedCrossSection::giveIPValue(), oofem::LayeredCrossSection::giveIPValue(), oofem::TR_SHELL01::printOutputAt(), and oofem::TR_SHELL02::printOutputAt().
|
inline |
Returns number of integration points of receiver.
Definition at line 143 of file integrationrule.h.
References gaussPoints.
Referenced by oofem::MMALeastSquareProjection::__init(), oofem::MatlabExportModule::doOutputIntegrationPointFields(), oofem::PlaneStress2dXfem::drawScalar(), oofem::TrPlaneStress2dXFEM::drawScalar(), oofem::VTKXMLExportModule::exportIntVarsInGpAs(), getIntegrationPoint(), oofem::LayeredCrossSection::give(), oofem::SADGBoundaryElement::giveCharacteristicMatrix(), oofem::LayeredCrossSection::giveCharMaterialStiffnessMatrix(), oofem::LayeredCrossSection::giveCharMaterialStiffnessMatrix_dPdF(), oofem::LayeredCrossSection::giveFirstPKStress_3d(), oofem::LayeredCrossSection::giveIPValue(), oofem::LayeredCrossSection::giveMaterial(), oofem::LayeredCrossSection::giveRealStress_3d(), oofem::LayeredCrossSection::giveRealStress_3dDegeneratedShell(), oofem::LayeredCrossSection::giveStiffnessMatrix_3d(), oofem::LayeredCrossSection::giveStiffnessMatrix_dPdF_3d(), oofem::NonlocalMaterialExtensionInterface::manipulateWeight(), oofem::NCPrincipalStrain::nucleateEnrichmentItems(), oofem::NCPrincipalStress::nucleateEnrichmentItems(), oofem::GnuplotExportModule::outputInterfaceEl(), oofem::GaussIntegrationRule::SetUpPointsOn2DEmbeddedLine(), oofem::GaussIntegrationRule::SetUpPointsOn3dDegShell(), oofem::GaussIntegrationRule::SetUpPointsOn3dDegShellLayers(), oofem::GaussIntegrationRule::SetUpPointsOnCube(), oofem::LobattoIntegrationRule::SetUpPointsOnCube(), oofem::GaussIntegrationRule::SetUpPointsOnCubeLayers(), oofem::DiscontinuousSegmentIntegrationRule::SetUpPointsOnLine(), oofem::GaussIntegrationRule::SetUpPointsOnLine(), oofem::LobattoIntegrationRule::SetUpPointsOnLine(), oofem::GaussIntegrationRule::SetUpPointsOnSquare(), oofem::LobattoIntegrationRule::SetUpPointsOnSquare(), oofem::GaussIntegrationRule::SetUpPointsOnTetrahedra(), oofem::GaussIntegrationRule::SetUpPointsOnTriangle(), oofem::PatchIntegrationRule::SetUpPointsOnTriangle(), oofem::GaussIntegrationRule::SetUpPointsOnWedge(), oofem::LayeredIntegrationRule::SetUpPointsOnWedge(), oofem::PatchIntegrationRule::SetUpPointsOnWedge(), oofem::GaussIntegrationRule::SetUpPointsOnWedgeLayers(), oofem::MITC4Shell::SPRNodalRecoveryMI_giveNumberOfIP(), and oofem::ErrorCheckingExportModule::writeCheck().
|
inlinevirtual |
Reimplemented in oofem::GaussIntegrationRule, and oofem::LobattoIntegrationRule.
Definition at line 251 of file integrationrule.h.
|
virtual |
Prints receiver's output to given stream. Invokes printOutputAt service on all receiver's integration points.
Definition at line 111 of file integrationrule.C.
|
virtual |
Restores receiver's context to stream. Calls restoreContext service for all receiver's integration points. Note: does not call the FEMComponent::restoreContext service, in order not to write class id info for each integration rule.
| stream | Input stream. |
| mode | Determines amount of info available in stream (state, definition, ...). |
| ContextIOERR | If error encountered. |
Reimplemented in oofem::PatchIntegrationRule.
Definition at line 185 of file integrationrule.C.
References oofem::CIO_IOERR, oofem::CIO_OK, clear(), CM_Definition, firstLocalStrainIndx, gaussPoints, isDynamic, lastLocalStrainIndx, oofem::DataStream::read(), oofem::FloatArray::restoreYourself(), and THROW_CIOERR.
|
virtual |
Saves receiver's context to stream. Calls saveContext service for all receiver's integration points. Note: does not call the FEMComponent::saveContext service, in order not to write class id info for each integration rule.
| stream | Output stream. |
| mode | Determines amount of info required in stream (state, definition, ...). |
| ContextIOERR | If error encountered. |
Reimplemented in oofem::PatchIntegrationRule.
Definition at line 130 of file integrationrule.C.
References oofem::CIO_IOERR, oofem::CIO_OK, CM_Definition, firstLocalStrainIndx, gaussPoints, isDynamic, lastLocalStrainIndx, THROW_CIOERR, and oofem::DataStream::write().
|
inline |
| int oofem::IntegrationRule::setUpEmbeddedIntegrationPoints | ( | integrationDomain | intdomain, |
| int | nPoints, | ||
| MaterialMode | matMode, | ||
| const std ::vector< FloatArray > & | coords ) |
Initializes the receiver. Receiver integration points are created according to given parameters.
| intdomain | Describes integration domain. |
| nPoints | Required number of integration points of receiver. |
| matMode | Material mode of receiver's integration points. |
| coords |
Definition at line 311 of file integrationrule.C.
References oofem::_Embedded2dLine, intdomain, OOFEM_ERROR, and SetUpPointsOn2DEmbeddedLine().
| int oofem::IntegrationRule::setUpIntegrationPoints | ( | integrationDomain | intdomain, |
| int | nPoints, | ||
| MaterialMode | matMode ) |
Initializes the receiver. Receiver integration points are created according to given parameters.
| intdomain | Describes integration domain. |
| nPoints | Required number of integration points of receiver. |
| matMode | Material mode of receiver's integration points. |
Definition at line 258 of file integrationrule.C.
References oofem::_Cube, oofem::_Line, oofem::_Square, oofem::_Tetrahedra, oofem::_Triangle, oofem::_Wedge, intdomain, OOFEM_ERROR, SetUpPointsOnCube(), SetUpPointsOnLine(), SetUpPointsOnSquare(), SetUpPointsOnTetrahedra(), SetUpPointsOnTriangle(), and SetUpPointsOnWedge().
Referenced by oofem::TR1_2D_PFEM::computeEdgeBCSubVectorAt(), oofem::PFEMElement2d::computePrescribedRhsVector(), oofem::CrossSection::setupIntegrationPoints(), oofem::CrossSection::setupIntegrationPoints(), oofem::LayeredCrossSection::setupIntegrationPoints(), and oofem::StructuralElement::setupIRForMassMtrxIntegration().
| int oofem::IntegrationRule::setUpIntegrationPoints | ( | integrationDomain | intdomain, |
| int | nPointsXY, | ||
| int | nPointsZ, | ||
| MaterialMode | matMode ) |
Initializes the receiver. Receiver integration points are created according to given parameters.
| intdomain | Describes integration domain. |
| nPointsXY | Required number of integration points of receiver in plane XY. |
| nPointsZ | Required number of integration points of receiver in Z direction. |
| matMode | Material mode of receiver's integration points. |
Definition at line 295 of file integrationrule.C.
References oofem::_3dDegShell, intdomain, OOFEM_ERROR, and SetUpPointsOn3dDegShell().
| int oofem::IntegrationRule::SetUpPoint | ( | MaterialMode | mode | ) |
Trivial implementation, only creates a single point.
Definition at line 330 of file integrationrule.C.
References oofem::_Point, gaussPoints, and intdomain.
|
inlinevirtual |
Sets up integration points on 2D embedded line inside 2D volume (the list of local coordinates should be provided).
| nPoints | Number of points along line. |
Reimplemented in oofem::GaussIntegrationRule.
Definition at line 327 of file integrationrule.h.
Referenced by setUpEmbeddedIntegrationPoints().
|
inlinevirtual |
Sets up receiver's integration points on shell integration domain. Default implementation does not sets up any integration points and returns 0. Must be overloaded by derived classes.
| nPointsXY | Number of integration points in the "xi-eta"-plane. |
| nPointsZ | Number of integration points in the "zeta"-direction |
Reimplemented in oofem::GaussIntegrationRule.
Definition at line 286 of file integrationrule.h.
Referenced by setUpIntegrationPoints().
|
inlinevirtual |
Sets up receiver's integration points on shell integration domain wih layers. Default implementation does not sets up any integration points and returns 0. Must be overloaded by derived classes.
| nPointsXY | Number of integration points in the "xi-eta"-plane. |
| nPointsZ | Number of integration points in the "zeta"-direction |
| layerThickness | Array of thicknesses of individual layers |
Reimplemented in oofem::GaussIntegrationRule.
Definition at line 296 of file integrationrule.h.
Referenced by oofem::LayeredCrossSection::setupIntegrationPoints().
|
inlinevirtual |
Sets up receiver's integration points on unit cube integration domain. Default implementation does not sets up any integration points and returns 0. Must be overloaded by derived classes.
Reimplemented in oofem::GaussIntegrationRule, and oofem::LobattoIntegrationRule.
Definition at line 303 of file integrationrule.h.
Referenced by setUpIntegrationPoints().
|
inlinevirtual |
Sets up receiver's integration points on unit cube integration domain divided into layers in the zeta-direction. Default implementation does not sets up any integration points and returns 0. Must be overloaded by derived classes.
| nPoints1 | Number of integration points in the "xi"-direction. |
| nPoints2 | Number of integration points in the "eta"-direction. |
| nPointsDepth | Number of integration points in the "zeta"-direction |
| layerThickness | Array of thicknesses of individual layers |
Reimplemented in oofem::GaussIntegrationRule.
Definition at line 314 of file integrationrule.h.
Referenced by oofem::LayeredCrossSection::setupIntegrationPoints().
|
inlinevirtual |
Sets up receiver's integration points on unit line integration domain. Default implementation does not sets up any integration points and returns 0. Must be overloaded by derived classes.
Reimplemented in oofem::DiscontinuousSegmentIntegrationRule, oofem::GaussIntegrationRule, and oofem::LobattoIntegrationRule.
Definition at line 263 of file integrationrule.h.
Referenced by setUpIntegrationPoints().
|
inlinevirtual |
Sets up receiver's integration points on unit square integration domain. Default implementation does not sets up any integration points and returns 0. Must be overloaded by derived classes.
Reimplemented in oofem::GaussIntegrationRule, and oofem::LobattoIntegrationRule.
Definition at line 277 of file integrationrule.h.
Referenced by setUpIntegrationPoints().
|
inlinevirtual |
Sets up receiver's integration points on tetrahedra (volume coords) integration domain. Default implementation does not sets up any integration points and returns 0. Must be overloaded by derived classes.
Reimplemented in oofem::GaussIntegrationRule.
Definition at line 321 of file integrationrule.h.
Referenced by setUpIntegrationPoints().
|
inlinevirtual |
Sets up receiver's integration points on triangular (area coords) integration domain. Default implementation does not sets up any integration points and returns 0. Must be overloaded by derived classes.
Reimplemented in oofem::GaussIntegrationRule, oofem::LobattoIntegrationRule, and oofem::PatchIntegrationRule.
Definition at line 270 of file integrationrule.h.
Referenced by setUpIntegrationPoints().
|
inlinevirtual |
Sets up receiver's integration points on a wedge integration domain. Default implementation does not sets up any integration points and returns 0. Must be overloaded by derived classes.
| nPointsTri | Number of points over the triangle cross-section. |
| nPointsDepth | Number of points over the depth. |
Reimplemented in oofem::GaussIntegrationRule, oofem::LayeredIntegrationRule, and oofem::PatchIntegrationRule.
Definition at line 338 of file integrationrule.h.
Referenced by setUpIntegrationPoints().
|
inlinevirtual |
Sets up receiver's integration points on a wedge integration domain divided into layers in the zeta-direction. Default implementation does not sets up any integration points and returns 0. Must be overloaded by derived classes.
| nPointsTri | Number of points over the triangle cross-section. |
| nPointsDepth | Number of points over the depth. |
| layerThickness | Array of thicknesses of individual layers |
Reimplemented in oofem::GaussIntegrationRule.
Definition at line 348 of file integrationrule.h.
Referenced by oofem::LayeredCrossSection::setupIntegrationPoints().
| void oofem::IntegrationRule::updateYourself | ( | TimeStep * | tStep | ) |
Updates receiver state. Calls updateYourself service of all receiver's integration points.
Definition at line 120 of file integrationrule.C.
|
protected |
Element which integration rule is coupled to.
Definition at line 100 of file integrationrule.h.
Referenced by giveElement(), IntegrationRule(), IntegrationRule(), setElement(), oofem::PatchIntegrationRule::SetUpPointsOnTriangle(), and oofem::PatchIntegrationRule::SetUpPointsOnWedge().
|
protected |
firstLocalStrainIndx and lastLocalStrainIndx indexes describe range of components (strains for example) for which receiver integration points apply.
Definition at line 110 of file integrationrule.h.
Referenced by getStartIndexOfLocalStrainWhereApply(), IntegrationRule(), IntegrationRule(), restoreContext(), saveContext(), oofem::PatchIntegrationRule::SetUpPointsOnTriangle(), and oofem::PatchIntegrationRule::SetUpPointsOnWedge().
|
protected |
Array containing integration points.
Definition at line 105 of file integrationrule.h.
Referenced by begin(), clear(), end(), getIntegrationPoint(), giveNumberOfIntegrationPoints(), restoreContext(), saveContext(), SetUpPoint(), oofem::GaussIntegrationRule::SetUpPointsOn2DEmbeddedLine(), oofem::GaussIntegrationRule::SetUpPointsOn3dDegShell(), oofem::GaussIntegrationRule::SetUpPointsOn3dDegShellLayers(), oofem::GaussIntegrationRule::SetUpPointsOnCube(), oofem::LobattoIntegrationRule::SetUpPointsOnCube(), oofem::GaussIntegrationRule::SetUpPointsOnCubeLayers(), oofem::DiscontinuousSegmentIntegrationRule::SetUpPointsOnLine(), oofem::GaussIntegrationRule::SetUpPointsOnLine(), oofem::LobattoIntegrationRule::SetUpPointsOnLine(), oofem::GaussIntegrationRule::SetUpPointsOnSquare(), oofem::LobattoIntegrationRule::SetUpPointsOnSquare(), oofem::GaussIntegrationRule::SetUpPointsOnTetrahedra(), oofem::GaussIntegrationRule::SetUpPointsOnTriangle(), oofem::PatchIntegrationRule::SetUpPointsOnTriangle(), oofem::GaussIntegrationRule::SetUpPointsOnWedge(), oofem::LayeredIntegrationRule::SetUpPointsOnWedge(), oofem::PatchIntegrationRule::SetUpPointsOnWedge(), and oofem::GaussIntegrationRule::SetUpPointsOnWedgeLayers().
|
protected |
Integration domain.
Definition at line 102 of file integrationrule.h.
Referenced by IntegrationRule(), IntegrationRule(), setUpEmbeddedIntegrationPoints(), setUpIntegrationPoints(), setUpIntegrationPoints(), SetUpPoint(), oofem::GaussIntegrationRule::SetUpPointsOn2DEmbeddedLine(), oofem::GaussIntegrationRule::SetUpPointsOn3dDegShell(), oofem::GaussIntegrationRule::SetUpPointsOn3dDegShellLayers(), oofem::GaussIntegrationRule::SetUpPointsOnCube(), oofem::LobattoIntegrationRule::SetUpPointsOnCube(), oofem::GaussIntegrationRule::SetUpPointsOnCubeLayers(), oofem::GaussIntegrationRule::SetUpPointsOnLine(), oofem::LobattoIntegrationRule::SetUpPointsOnLine(), oofem::GaussIntegrationRule::SetUpPointsOnSquare(), oofem::LobattoIntegrationRule::SetUpPointsOnSquare(), oofem::GaussIntegrationRule::SetUpPointsOnTetrahedra(), oofem::GaussIntegrationRule::SetUpPointsOnTriangle(), oofem::GaussIntegrationRule::SetUpPointsOnWedge(), and oofem::GaussIntegrationRule::SetUpPointsOnWedgeLayers().
|
protected |
Flag indicating that rule is dynamic, ie, its gauss points (their number, coordinates, weights) can change during computation. Then some more data should be stored/restored from context file to reflect such dynamic feature.
Definition at line 116 of file integrationrule.h.
Referenced by IntegrationRule(), IntegrationRule(), restoreContext(), and saveContext().
|
protected |
Definition at line 110 of file integrationrule.h.
Referenced by getEndIndexOfLocalStrainWhereApply(), IntegrationRule(), IntegrationRule(), restoreContext(), saveContext(), oofem::PatchIntegrationRule::SetUpPointsOnTriangle(), and oofem::PatchIntegrationRule::SetUpPointsOnWedge().
|
protected |
Number.
Definition at line 98 of file integrationrule.h.
Referenced by IntegrationRule(), and IntegrationRule().