|
OOFEM
2.1
|
Class representing vector of real numbers. More...
#include <flotarry.h>
Inheritance diagram for oofem::FloatArray:Public Member Functions | |
| FloatArray (int size=0) | |
| Constructor. | |
| FloatArray (const FloatArray &x) | |
| Copy constructor. | |
| virtual | ~FloatArray () |
| Destructor. | |
| FloatArray & | operator= (const FloatArray &) |
| Assignment operator. | |
| void | setValues (int n,...) |
| Sets values in array. Convenient for writing small specific vectors. | |
| double & | at (int i) |
| Coefficient access function. | |
| double | at (int i) const |
| Coefficient access function. | |
| double & | operator() (int i) |
| Coefficient access function. | |
| const double & | operator() (int i) const |
| Coefficient access function. | |
| void | checkBounds (int i) const |
| Checks size of receiver towards requested bounds. | |
| void | checkSizeTowards (const IntArray &loc) |
| Checks size of receiver towards values stored in loc array. | |
| void | resize (int s, int allocChunk=0) |
| Checks size of receiver towards requested bounds. | |
| void | hardResize (int s) |
| Resizes the size of the receiver to requested bounds. | |
| bool | containsOnlyZeroes () const |
| Returns nonzero if all coefficients of the receiver are 0, else returns zero. | |
| int | giveSize () const |
| Returns the size of receiver. | |
| bool | isNotEmpty () const |
| Returns true if receiver is not empty. | |
| bool | isEmpty () const |
| Returns true if receiver is empty. | |
| void | negated () |
| Switches the sign of every coefficient of receiver. | |
| virtual void | printYourself () const |
| Print receiver on stdout. | |
| virtual void | pY () const |
| Print receiver on stdout with high accuracy. | |
| void | zero () |
| Zeroes all coefficients of receiver. | |
| void | beProductOf (const FloatMatrix &aMatrix, const FloatArray &anArray) |
| Receiver becomes the result of the product of aMatrix and anArray. | |
| void | beTProductOf (const FloatMatrix &aMatrix, const FloatArray &anArray) |
| Receiver becomes the result of the product of aMatrix^T and anArray. | |
| void | beVectorProductOf (const FloatArray &v1, const FloatArray &v2) |
Computes vector product (or cross product) of vectors given as parameters, , and stores the result into receiver. | |
| void | beScaled (double s, const FloatArray &b) |
Sets receiver to be . | |
| void | add (const FloatArray &src) |
| Adds array src to receiver. | |
| void | add (double factor, const FloatArray &b) |
| Adds array times factor to receiver. | |
| void | add (double offset) |
| Adds scalar to receiver. | |
| void | subtract (const FloatArray &src) |
| Subtracts array src to receiver. | |
| void | times (double s) |
| Multiplies receiver with scalar. | |
| void | beMaxOf (const FloatArray &a, const FloatArray &b) |
| Sets receiver to maximum of a or b's respective elements. | |
| void | beMinOf (const FloatArray &a, const FloatArray &b) |
| Sets receiver to be minimum of a or b's respective elements. | |
| void | beDifferenceOf (const FloatArray &a, const FloatArray &b) |
| Sets receiver to be a - b. | |
| void | beDifferenceOf (const FloatArray &a, const FloatArray &b, int n) |
| Sets receiver to be a - b, using only the first n entries. | |
| void | beSubArrayOf (const FloatArray &src, const IntArray &indx) |
| Extract sub vector form src array and stores the result into receiver. | |
| void | addSubVector (const FloatArray &src, int si) |
| Adds the given vector as sub-vector to receiver. | |
| void | assemble (const FloatArray &fe, const IntArray &loc) |
| Assembles the array fe (typically, the load vector of a finite element) into the receiver, using loc as location array. | |
| void | copySubVector (const FloatArray &src, int si) |
| Copy the given vector as sub-vector to receiver. | |
| double | distance (const FloatArray &x) const |
| Computes the distance between position represented by receiver and position given as parameter. | |
| double | distance (const FloatArray *x) const |
| double | distance_square (const FloatArray &x) const |
| Computes the square of distance between position represented by receiver and position given as parameter. | |
| double | dotProduct (const FloatArray &x) const |
| Computes the dot product (or inner product) of receiver and argument. | |
| double | dotProduct (const FloatArray &x, int size) const |
| Computes the dot product (or inner product) of receiver and argument. | |
| double | normalize () |
| Normalizes receiver. | |
| double | computeNorm () const |
| Computes the norm (or length) of the vector. | |
| double | computeSquaredNorm () const |
| Computes the square of the norm. | |
| double | sum () const |
| Computes the sum of receiver values. | |
| void | rotatedWith (FloatMatrix &r, char mode) |
| Returns the receiver a rotated according the change-of-base matrix r. | |
| double * | givePointer () const |
| Gives the pointer to the raw data, breaking encapsulation. | |
| void | beFullVectorForm (const FloatMatrix &aMatrix) |
| Reciever will be a vector with 9 components formed from a 3x3 matrix. | |
| void | beReducedVectorForm (const FloatMatrix &aMatrix) |
| Reciever will be a vector with 6 components formed from a 3x3 matrix. | |
| int | packToCommBuffer (CommunicationBuffer &buff) const |
| int | unpackFromCommBuffer (CommunicationBuffer &buff) |
| int | givePackSize (CommunicationBuffer &buff) const |
| contextIOResultType | storeYourself (DataStream *stream, ContextMode mode) |
| contextIOResultType | restoreYourself (DataStream *stream, ContextMode mode) |
| FloatArray & | operator= (const double &) |
| Assignment of scalar to all components of receiver. | |
Protected Attributes | |
| int | size |
| Size of array. | |
| int | allocatedSize |
| allocated space size for array. | |
| double * | values |
| Stored values of vector. | |
Class representing vector of real numbers.
This array can grow or shrink to desired dimension. The lower value index of array is 1, upper depends on array size.
Tasks:
Remarks:
Definition at line 84 of file flotarry.h.
| oofem::FloatArray::FloatArray | ( | int | size = 0 | ) |
Constructor.
Array is not zeroed.
| size | Size of array. |
Definition at line 57 of file flotarry.C.
References allocatedSize, oofem::allocDouble(), OOFEM_FATAL2, size, and values.
| oofem::FloatArray::FloatArray | ( | const FloatArray & | x | ) |
Copy constructor.
Creates the array from another array.
| x | Array to copy. |
Definition at line 74 of file flotarry.C.
References allocatedSize, oofem::allocDouble(), OOFEM_FATAL2, size, and values.
| oofem::FloatArray::~FloatArray | ( | ) | [virtual] |
| void oofem::FloatArray::add | ( | const FloatArray & | src | ) |
Adds array src to receiver.
If the receiver's size is zero, it adjusts its size to size of src array. If receiver's size is nonzero and different from src array size an error is generated.
| src | Array to add to receiver. |
Definition at line 163 of file flotarry.C.
References OOFEM_ERROR3, size, and values.
Referenced by oofem::NLTransientTransportProblem::assembleAlgorithmicPartOfRhs(), oofem::AdaptiveNonLinearStatic::assembleInitialLoadVector(), oofem::Subdivision::RS_Triangle::bisect(), oofem::Subdivision::RS_Tetra::bisect(), oofem::OctreeSpatialLocalizer::buildOctreeDataStructure(), oofem::CylindricalALM::checkConvergence(), oofem::MPlasticMaterial::closestPointReturn(), oofem::MPlasticMaterial2::closestPointReturn(), oofem::SUPGElement2::computeBCRhsTerm_MB(), oofem::SUPGElement2::computeBCRhsTerm_MC(), oofem::TransportElement::computeBCSubVectorAt(), oofem::Quad1Mindlin::computeBodyLoadVectorAt(), oofem::Quad1MindlinShell3D::computeBodyLoadVectorAt(), oofem::StructuralElement::computeBodyLoadVectorAt(), oofem::Shell7Base::computeBulkTangentMatrix(), oofem::Shell7Base::computeConvectiveMassForce(), oofem::ConcreteDPM::computeDCosThetaDStress(), oofem::TwoFluidMaterial::computeDeviatoricStressVector(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MB(), oofem::SUPGElement2::computeDiffusionTerm_MB(), oofem::Tr1Darcy::computeEdgeBCSubVectorAt(), oofem::TransportElement::computeEdgeBCSubVectorAt(), oofem::HTSelement::computeEdgeLoadVectorAt(), oofem::StructuralElement::computeEdgeLoadVectorAt(), oofem::NonLinearStatic::computeExternalLoadReactionContribution(), oofem::NonLinearDynamic::computeExternalLoadReactionContribution(), oofem::HTSelement::computeForceLoadVector(), oofem::Tr1Darcy::computeInternalForcesVector(), oofem::Tr1BubbleStokes::computeInternalForcesVector(), oofem::Tr21Stokes::computeInternalForcesVector(), oofem::Tet1BubbleStokes::computeInternalForcesVector(), oofem::Tet21Stokes::computeInternalForcesVector(), oofem::TransportElement::computeInternalSourceRhsSubVectorAt(), oofem::QSpace::computeLoadLSToLRotationMatrix(), oofem::LSpace::computeLoadLSToLRotationMatrix(), oofem::Tr1Darcy::computeLoadVector(), oofem::Line2SurfaceTension::computeLoadVector(), oofem::Tr1BubbleStokes::computeLoadVector(), oofem::Tr21Stokes::computeLoadVector(), oofem::Tet1BubbleStokes::computeLoadVector(), oofem::Tet21Stokes::computeLoadVector(), oofem::Node::computeLoadVectorAt(), oofem::DofManager::computeLoadVectorAt(), oofem::SurfaceTensionBoundaryCondition::computeLoadVectorFromElement(), oofem::StructuralElement::computeLocalForceLoadVector(), oofem::GradDpElement::computeLocNonForceLoadVector(), oofem::TrabBone3D::computePlasStrainEnerDensity(), oofem::HTSelement::computePrescribedDisplacementLoadVectorAt(), oofem::StructuralElement::computePrescribedStrainLocalLoadVectorAt(), oofem::Shell7Base::computePressureForce(), oofem::Shell7Base::computePressureTangentMatrix(), oofem::J2MPlasticMaterial::computeReducedGradientMatrix(), oofem::J2plasticMaterial::computeReducedGradientMatrix(), oofem::J2Mat::computeReducedSSGradientMatrix(), oofem::StructuralElement::computeResultingIPEigenstrainAt(), oofem::StructuralElement::computeResultingIPTemperatureAt(), oofem::Shell7Base::computeSectionalForces(), oofem::B3Material::computeShrinkageStrainVector(), oofem::B3SolidMaterial::computeShrinkageStrainVector(), oofem::LIBeam3d2::computeStrainVector(), oofem::J2plasticMaterial::ComputeStressGradient(), oofem::J2MPlasticMaterial::computeStressGradientVector(), oofem::J2Mat::computeStressGradientVector(), oofem::RheoChainMaterial::computeStressIndependentStrainVector(), oofem::StructuralMaterial::computeStressIndependentStrainVector(), oofem::HellmichMaterial::computeStressIndependentStrainVector(), oofem::TransportElement::computeSurfaceBCSubVectorAt(), oofem::StructuralElement::computeSurfaceLoadVectorAt(), oofem::LIBeam3dNL2::computeTempCurv(), oofem::Shell7Base::computeThicknessMappingCoeff(), oofem::Shell7Base::computeTractionForce(), oofem::RheoChainMaterial::computeTrueStressIndependentStrainVector(), oofem::J2MPlasticMaterial::computeYieldValueAt(), oofem::J2Mat::computeYieldValueAt(), oofem::J2plasticMaterial::computeYieldValueAt(), oofem::TrabBone3D::constructDerivativeOfPlasFlowDirec(), oofem::TrabBone3D::constructPlasFlowDirec(), oofem::MPlasticMaterial::cuttingPlaneReturn(), oofem::MPlasticMaterial2::cuttingPlaneReturn(), oofem::CylindricalALM::do_lineSearch(), oofem::LSpace::drawTriad(), oofem::Shell7Base::edgeEvalInitialDirectorAt(), oofem::FEI3dWedgeQuad::edgeLocal2global(), oofem::FEI3dWedgeLin::edgeLocal2global(), oofem::FEI3dTrQuad::edgeLocal2global(), oofem::FEI3dTetQuad::edgeLocal2global(), oofem::Shell7Base::evalCovarBaseVectorsAt(), oofem::Shell7Base::evalInitialDirectorAt(), oofem::SmoothedNodalInternalVariableField::evaluateAt(), oofem::DofManValueField::evaluateAt(), oofem::VTKXMLExportModule::exportCellVarAs(), oofem::VTKExportModule::exportCellVars(), oofem::RotatingBoundary::give(), oofem::PlaneStress2d::giveCharacteristicSize(), oofem::TR_SHELL01::giveCharacteristicVector(), oofem::MPlasticMaterial2::giveConsistentStiffnessMatrix(), oofem::PolylineNonlocalBarrier::giveDistancePointLine(), oofem::Shell7Base::giveDualBase(), oofem::MaxwellChainMaterial::giveEigenStrainVector(), oofem::KelvinChainMaterial::giveEigenStrainVector(), oofem::B3SolidMaterial::giveEigenStrainVector(), oofem::MPSMaterial::giveEigenStrainVector(), oofem::HellmichMaterial::giveEigenStrainVector(), oofem::MPlasticMaterial2::giveElastoPlasticStiffnessMatrix(), oofem::TR1_2D_SUPG2::giveElementCenter(), oofem::TR1_2D_SUPG::giveElementCenter(), oofem::TR1_2D_SUPG2_AXI::giveElementCenter(), oofem::SUPG::giveElementCharacteristicVector(), oofem::Tr21Stokes::giveElementFMatrix(), oofem::StructuralElementEvaluator::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector(), oofem::StructuralElement::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::StructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::TR_SHELL01::giveIPValue(), oofem::GradDpElement::giveLocalInternalForcesVector(), oofem::GradDpElement::giveNonlocalInternalForcesVector(), oofem::Concrete2::giveRealStresses3dShellLayer(), oofem::TrabBoneGrad3D::giveRealStressVector(), oofem::RCSDNLMaterial::giveRealStressVector(), oofem::PerfectlyPlasticMaterial::giveRealStressVector(), oofem::RheoChainMaterial::giveRealStressVector(), oofem::PlasticMaterial::giveRealStressVector(), oofem::TrabBoneNL3D::giveRealStressVector(), oofem::TrabBone3D::giveRealStressVector(), oofem::ConcreteDPM2::giveRealStressVector(), oofem::HellmichMaterial::giveRealStressVector(), oofem::FEI3dTetQuad::global2local(), oofem::FEI2dTrQuad::global2local(), oofem::FEI2dQuadQuad::global2local(), oofem::FEI3dHexaQuad::global2local(), oofem::SlaveNode::initializeFrom(), oofem::MixedGradientPressureNeumann::integrateVolTangent(), oofem::FEI3dTetLin::local2global(), oofem::FEI3dHexaLin::local2global(), oofem::FEI3dTrQuad::local2global(), oofem::FEI3dTetQuad::local2global(), oofem::FEI3dLineLin::local2global(), oofem::FEI3dWedgeLin::local2global(), oofem::FEI3dHexaQuad::local2global(), oofem::QPlaneStress2d::NodalAveragingRecoveryMI_computeNodalValue(), oofem::MisesMat::performPlasticityReturn(), oofem::ConcreteDPM2::performPlasticityReturn(), oofem::DruckerPragerPlasticitySM::performRegularReturn(), oofem::ConcreteDPM::performRegularReturn(), oofem::DustMaterial::performStressReturn(), oofem::TR_SHELL01::printOutputAt(), oofem::ConcreteDPM2Status::printOutputAt(), oofem::NonLinearStatic::proceedStep(), oofem::TrabBone3D::projectOnYieldSurface(), oofem::Shell7Base::setupInitialNodeDirectors(), oofem::Subdivision::smoothMesh(), oofem::LineSearchNM::solve(), oofem::NRSolver::solve(), oofem::NRSolver2::solve(), oofem::CylindricalALM::solve(), oofem::StokesFlow::solveYourselfAt(), oofem::CBS::solveYourselfAt(), oofem::LineSurfaceTension::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::FEI3dTrQuad::surfaceEvalBaseVectorsAt(), oofem::FEI3dHexaLin::surfaceEvalNormal(), oofem::FEI3dTetQuad::surfaceEvalNormal(), oofem::FEI3dHexaQuad::surfaceEvalNormal(), oofem::FEI3dWedgeQuad::surfaceLocal2global(), oofem::FEI3dWedgeLin::surfaceLocal2global(), oofem::FEI3dTrQuad::surfaceLocal2global(), oofem::FEI3dTetQuad::surfaceLocal2global(), oofem::FEI3dHexaQuad::surfaceLocal2global(), oofem::Subdivision::unpackSharedIrregulars(), oofem::NonLinearStatic::updateLoadVectors(), oofem::SUPG::updateSolutionVectors(), oofem::KelvinChainSolidMaterial::updateYourself(), oofem::KelvinChainMaterial::updateYourself(), oofem::MaxwellChainMaterial::updateYourself(), and oofem::PerfectlyPlasticMaterialStatus::updateYourself().
| void oofem::FloatArray::add | ( | double | factor, |
| const FloatArray & | b | ||
| ) |
Adds array times factor to receiver.
If the receiver's size is zero, it adjusts its size to size of b array. If receiver's size is nonzero and different from b array size an error is generated.
| factor | Factor to be multiplied with b. |
| b | Will be multiplied by factor and added to receiver. |
Definition at line 195 of file flotarry.C.
References beScaled(), OOFEM_ERROR3, size, and values.
| void oofem::FloatArray::add | ( | double | offset | ) |
| void oofem::FloatArray::addSubVector | ( | const FloatArray & | src, |
| int | si | ||
| ) |
Adds the given vector as sub-vector to receiver.
The sub-vector values will be added to receivers corresponding receiver's values at positions (si,...,si+src.size). The size of receiver will be adjusted, if necessary.
| src | Sub-vector to be added. |
| si | Determines the position (receiver's 1-based index) of first src value to be added. |
Definition at line 345 of file flotarry.C.
References at(), giveSize(), and resize().
Referenced by oofem::Tr1BubbleStokes::computeInternalForcesVector(), oofem::Tr21Stokes::computeInternalForcesVector(), and oofem::Tet1BubbleStokes::computeInternalForcesVector().
| void oofem::FloatArray::assemble | ( | const FloatArray & | fe, |
| const IntArray & | loc | ||
| ) |
Assembles the array fe (typically, the load vector of a finite element) into the receiver, using loc as location array.
| fe | Array to be assembled. |
| loc | Array of code numbers. src(i) value will be added to receiver value at position loc(i) (if this loc(i) value is nonzero). |
Definition at line 438 of file flotarry.C.
References oofem::IntArray::at(), at(), oofem::IntArray::giveSize(), giveSize(), and OOFEM_ERROR3.
Referenced by oofem::NLTransientTransportProblem::assembleAlgorithmicPartOfRhs(), oofem::NonStationaryTransportProblem::assembleAlgorithmicPartOfRhs(), oofem::StationaryTransportProblem::assembleDirichletBcRhsVector(), oofem::NonStationaryTransportProblem::assembleDirichletBcRhsVector(), oofem::EngngModel::assembleExtrapolatedForces(), oofem::SurfaceTensionBoundaryCondition::assembleVector(), oofem::WeakPeriodicbc::assembleVector(), oofem::MixedGradientPressureNeumann::assembleVector(), oofem::EngngModel::assembleVectorFromDofManagers(), oofem::EngngModel::assembleVectorFromElements(), oofem::Tr1BubbleStokes::computeBodyLoadVectorAt(), oofem::Tr21Stokes::computeBodyLoadVectorAt(), oofem::Tet1BubbleStokes::computeBodyLoadVectorAt(), oofem::Tet21Stokes::computeBodyLoadVectorAt(), oofem::Tr1Darcy::computeEdgeBCSubVectorAt(), oofem::Tr1BubbleStokes::computeEdgeBCSubVectorAt(), oofem::Tr21Stokes::computeEdgeBCSubVectorAt(), oofem::Tet1BubbleStokes::computeEdgeBCSubVectorAt(), oofem::TransportElement::computeEdgeBCSubVectorAt(), oofem::Shell7Base::computeEdgeLoadVectorAt(), oofem::StructuralElement::computeEdgeLoadVectorAt(), oofem::GradDpElement::computeForceLoadVector(), oofem::Tr1BubbleStokes::computeInternalForcesVector(), oofem::Tr21Stokes::computeInternalForcesVector(), oofem::Tet1BubbleStokes::computeInternalForcesVector(), oofem::Tet21Stokes::computeInternalForcesVector(), oofem::Shell7Base::computeSectionalForces(), oofem::Tet21Stokes::computeSurfaceBCSubVectorAt(), oofem::TransportElement::computeSurfaceBCSubVectorAt(), oofem::Shell7Base::computeSurfaceLoadVectorAt(), oofem::StructuralElement::computeSurfaceLoadVectorAt(), oofem::Tet1BubbleStokes::computeSurfBCSubVectorAt(), oofem::MixedGradientPressureNeumann::computeTangents(), oofem::Shell7Base::edgeGiveUpdatedSolutionVector(), oofem::SUPGElement::giveCharacteristicVector(), oofem::SUPGElement2::giveCharacteristicVector(), oofem::GradDpElement::giveInternalForcesVector(), oofem::StructuralElementEvaluator::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::StructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::Shell7Base::giveUpdatedSolutionVector(), and oofem::EIPrimaryUnknownMapper::mapAndUpdate().
| double& oofem::FloatArray::at | ( | int | i | ) | [inline] |
Coefficient access function.
Returns value of coefficient at given position of the receiver. Provides 1-based indexing access.
| i | Position of coefficient in array. |
Definition at line 123 of file flotarry.h.
References values.
Referenced by oofem::PiecewiseLinFunction::__at(), oofem::PeriodicPiecewiseLinFunction::__at(), oofem::PiecewiseLinFunction::__derAt(), oofem::PeriodicPiecewiseLinFunction::__derAt(), oofem::PrimaryField::__evaluateAt(), oofem::MMALeastSquareProjection::__mapVariable(), oofem::WeakPeriodicbc::addElementSide(), addSubVector(), oofem::FloatMatrix::addSubVectorCol(), oofem::FloatMatrix::addSubVectorRow(), oofem::SymmetryBarrier::applyConstraint(), oofem::NRSolver::applyConstraintsToLoadIncrement(), oofem::MDM::applyDamageToStiffness(), oofem::MDM::applyDamageTranformation(), oofem::NonStationaryTransportProblem::applyIC(), oofem::CBS::applyIC(), oofem::SUPG::applyIC(), oofem::DynCompRow::assemble(), oofem::DynCompCol::assemble(), oofem::WeakPeriodicbc::assemble(), assemble(), oofem::TransportElement::assembleLocalContribution(), oofem::SurfaceTensionBoundaryCondition::assembleVector(), oofem::WeakPeriodicbc::assembleVector(), oofem::MixedGradientPressureDirichlet::assembleVector(), oofem::MixedGradientPressureNeumann::assembleVector(), oofem::EngngModel::assembleVectorFromDofManagers(), oofem::EngngModel::assembleVectorFromElements(), oofem::DynCompRow::at(), oofem::DynCompCol::at(), oofem::FloatMatrix::beDyadicProductOf(), beFullVectorForm(), oofem::FloatMatrix::beMatrixForm(), beProductOf(), beReducedVectorForm(), beTProductOf(), beVectorProductOf(), oofem::Subdivision::RS_Tetra::bisect(), oofem::FEInterpolation1d::boundaryEvalN(), oofem::OctreeSpatialLocalizer::buildOctreeDataStructure(), oofem::PolylineNonlocalBarrier::calculateMinimumDistanceFromBoundary(), oofem::MacroLSpace::changeMicroBoundaryConditions(), oofem::NRSolver::checkConvergence(), oofem::CylindricalALM::checkConvergence(), oofem::RCM2Material::checkForNewActiveCracks(), oofem::RCM2Material::checkIfClosedCracks(), oofem::CompoDamageMat::checkSnapBack(), oofem::MPlasticMaterial::closestPointReturn(), oofem::MPlasticMaterial2::closestPointReturn(), oofem::Delaunay::colinear(), oofem::TR1_2D_SUPG_AXI::computeAccelerationTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeAccelerationTerm_MB(), oofem::TR1_2D_SUPG::computeAccelerationTerm_MB(), oofem::TR1_2D_SUPG2::computeAccelerationTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeAccelerationTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeAccelerationTerm_MC(), oofem::TR1_2D_SUPG_AXI::computeAdvectionDerivativeTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeAdvectionDerivativeTerm_MB(), oofem::TR1_2D_SUPG::computeAdvectionDerivativeTerm_MB(), oofem::TR1_2D_SUPG2::computeAdvectionDerivativeTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeAdvectionDerivativeTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeAdvectionDerivativeTerm_MC(), oofem::TR1_2D_SUPG::computeAdvectionDerivativeTerm_MC(), oofem::TR1_2D_SUPG2::computeAdvectionDerivativeTerm_MC(), oofem::TR1_2D_SUPG_AXI::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeAdvectionTerm_MB(), oofem::SUPGElement2::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG2::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeAdvectionTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeAdvectionTerm_MC(), oofem::SUPGElement2::computeAdvectionTerm_MC(), oofem::TR1_2D_SUPG::computeAdvectionTerm_MC(), oofem::TR1_2D_SUPG2::computeAdvectionTerm_MC(), oofem::MPlasticMaterial::computeAlgorithmicModuli(), oofem::MPlasticMaterial2::computeAlgorithmicModuli(), oofem::ConcreteDPM2::computeAlpha(), oofem::IDNLMaterial::computeAngleAndSigmaRatio(), oofem::Triangle::computeBarycentrCoor(), oofem::TR1_2D_SUPG_AXI::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG2::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeBCRhsTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeBCRhsTerm_MC(), oofem::TR1_2D_SUPG::computeBCRhsTerm_MC(), oofem::TrPlaneStrRot::computeBmatrixAt(), oofem::PlaneStress2dXfem::computeBmatrixAt(), oofem::CohesiveSurface3d::computeBmatrixAt(), oofem::Q4Axisymm::computeBmatrixAt(), oofem::InterfaceElement3dTrLin::computeBmatrixAt(), oofem::L4Axisymm::computeBmatrixAt(), oofem::Lattice2d::computeBmatrixAt(), oofem::Axisymm3d::computeBmatrixAt(), oofem::RerShell::computeBmatrixAt(), oofem::Shell7Base::computeBmatrixAt(), oofem::TrPlaneStrRot::computeBodyLoadVectorAt(), oofem::CCTPlate::computeBodyLoadVectorAt(), oofem::TrPlaneStrRot3d::computeBodyLoadVectorAt(), oofem::CCTPlate3d::computeBodyLoadVectorAt(), oofem::Quad1Mindlin::computeBodyLoadVectorAt(), oofem::RerShell::computeBodyLoadVectorAt(), oofem::Quad1MindlinShell3D::computeBodyLoadVectorAt(), oofem::Element::computeBoundaryVectorOf(), oofem::HeMoTKMaterial::computeCapacityCoeff(), oofem::TR21_2D_SUPG::computeCenterOf(), oofem::Triangle::computeCenterOfCircumCircle(), oofem::KelvinChainMaterial::computeCharCoefficients(), oofem::MaxwellChainMaterial::computeCharCoefficients(), oofem::B3SolidMaterial::computeCharCoefficients(), oofem::MPSMaterial::computeCharCoefficients(), oofem::B3SolidMaterial::computeCharTimes(), oofem::MPSMaterial::computeCharTimes(), oofem::RheoChainMaterial::computeCharTimes(), oofem::TR1_2D_CBS::computeConvectionTermsI(), oofem::Shell7Base::computeConvectiveMassForce(), oofem::TR21_2D_SUPG::computeCoordsOfEdge(), oofem::TR1_2D_CBS::computeCorrectionRhs(), oofem::TR1_2D_SUPG::computeCriticalLEPlicTimeStep(), oofem::Tet1_3D_SUPG::computeCriticalTimeStep(), oofem::TR1_2D_CBS::computeCriticalTimeStep(), oofem::RCSDEMaterial::computeCurrEquivStrain(), oofem::RCSDMaterial::computeCurrEquivStrain(), oofem::ConcreteDPM2::computeDamage(), oofem::MDM::computeDamageOnPlane(), oofem::MazarsMaterial::computeDamageParam(), oofem::CylindricalALM::computeDeltaLambda(), oofem::TrabBone3D::computeDensificationStress(), oofem::TR1_2D_CBS::computeDensityRhsPressureTerms(), oofem::TR1_2D_CBS::computeDensityRhsVelocityTerms(), oofem::BinghamFluidMaterial2::computeDeviatoricStrain(), oofem::TR1_2D_SUPG::computeDeviatoricStrain(), oofem::TR1_2D_SUPG2_AXI::computeDeviatoricStress(), oofem::BinghamFluidMaterial2::computeDeviatoricStress(), oofem::TR1_2D_CBS::computeDeviatoricStress(), oofem::TR1_2D_SUPG2::computeDeviatoricStress(), oofem::NewtonianFluidMaterial::computeDeviatoricStressVector(), oofem::NonlinearFluidMaterial::computeDeviatoricStressVector(), oofem::FluidDynamicMaterial::computeDeviatoricStressVector(), oofem::FE2FluidMaterial::computeDeviatoricStressVector(), oofem::StressVector::computeDeviatoricVolumetricSplit(), oofem::StrainVector::computeDeviatoricVolumetricSplit(), oofem::BinghamFluidMaterial2::computeDevStrainMagnitude(), oofem::BinghamFluidMaterial2::computeDevStressMagnitude(), oofem::TR1_2D_CBS::computeDiagonalMassMtrx(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MB(), oofem::SUPGElement2::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG2::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MC(), oofem::TR1_2D_CBS::computeDiffusionTermsI(), oofem::RheoChainMaterial::computeDiscreteRelaxationFunction(), oofem::GradDpElement::computeDisplacementDegreesOfFreedom(), oofem::Line::computeDistanceTo(), oofem::ActiveDof::computeDofTransformation(), oofem::SlaveDof::computeDofTransformation(), oofem::MixedGradientPressureDirichlet::computeDofTransformation(), oofem::Dof::computeDofTransformation(), oofem::Tr1Darcy::computeEdgeBCSubVectorAt(), oofem::TransportElement::computeEdgeBCSubVectorAt(), oofem::Quad1MindlinShell3D::computeEdgeIpGlobalCoords(), oofem::Beam2d::computeEdgeLoadVectorAt(), oofem::Beam3d::computeEdgeLoadVectorAt(), oofem::TrAxisym1_ht::computeEdgeVolumeAround(), oofem::QuadAxisym1_ht::computeEdgeVolumeAround(), oofem::L4Axisymm::computeEdgeVolumeAround(), oofem::Axisymm3d::computeEdgeVolumeAround(), oofem::CCTPlate::computeEgdeNMatrixAt(), oofem::QPlaneStress2d::computeEgdeNMatrixAt(), oofem::L4Axisymm::computeEgdeNMatrixAt(), oofem::QTrPlaneStress2d::computeEgdeNMatrixAt(), oofem::Axisymm3d::computeEgdeNMatrixAt(), oofem::PlaneStress2d::computeEgdeNMatrixAt(), oofem::Quad1PlaneStrain::computeEgdeNMatrixAt(), oofem::LSpace::computeEgdeNMatrixAt(), oofem::TrPlaneStrain::computeEgdeNMatrixAt(), oofem::TrPlaneStress2d::computeEgdeNMatrixAt(), oofem::LTRSpace::computeEgdeNMatrixAt(), oofem::WeakPeriodicbc::computeElementTangent(), oofem::IDGMaterial::computeEquivalentStrain(), oofem::MazarsMaterial::computeEquivalentStrain(), oofem::IsoInterfaceDamageMaterial::computeEquivalentStrain(), oofem::IsotropicDamageMaterial1::computeEquivalentStrain(), oofem::IDGMaterial::computeEta(), oofem::RankineMat::computeEta(), oofem::IsotropicDamageMaterial1::computeEta(), oofem::Shell7Base::computeFieldNmatrix(), oofem::MixedGradientPressureDirichlet::computeFields(), oofem::MixedGradientPressureNeumann::computeFields(), oofem::Shell7Base::computeGeneralizedStrainVector(), oofem::InterfaceElem2dQuad::computeGlobalCoordinates(), oofem::InterfaceElement3dTrLin::computeGlobalCoordinates(), oofem::InterfaceElem1d::computeGlobalCoordinates(), oofem::LIBeam2dNL::computeGlobalCoordinates(), oofem::Lattice2d::computeGlobalCoordinates(), oofem::LIBeam2d::computeGlobalCoordinates(), oofem::Truss2d::computeGlobalCoordinates(), oofem::Beam3d::computeGlobalCoordinates(), oofem::LIBeam3d::computeGlobalCoordinates(), oofem::LIBeam3dNL2::computeGlobalCoordinates(), oofem::LIBeam3dNL::computeGlobalCoordinates(), oofem::LIBeam3d2::computeGlobalCoordinates(), oofem::PlasticMaterial::ComputeGradientVector(), oofem::MPlasticMaterial::computeGradientVector(), oofem::Tet1_3D_SUPG::computeGradUMatrix(), oofem::TR21_2D_SUPG::computeGradUMatrix(), oofem::Quad10_2D_SUPG::computeGradUMatrix(), oofem::RerShell::computeGtoLRotationMatrix(), oofem::InterfaceElem2dQuad::computeGtoLRotationMatrix(), oofem::TrPlaneStrRot3d::computeGtoLRotationMatrix(), oofem::CCTPlate3d::computeGtoLRotationMatrix(), oofem::SpringElement::computeGtoLRotationMatrix(), oofem::TR1_2D_SUPG::computeHomogenizedReinforceTerm_MB(), oofem::TR1_2D_SUPG::computeHomogenizedReinforceTerm_MC(), oofem::Line::computeInclinationAngle(), oofem::LIBeam2dNL::computeInitialStressMatrix(), oofem::Beam3d::computeInitialStressMatrix(), oofem::Beam2d::computeInitialStressMatrix(), oofem::LayeredCrossSection::computeIntegralThick(), oofem::TransportElement::computeInternalSourceRhsSubVectorAt(), oofem::HydratingConcreteMat::computeInternalSourceVector(), oofem::CemhydMat::computeInternalSourceVector(), oofem::TR21_2D_SUPG::computeIntersection(), oofem::Line::computeIntersectionPoints(), oofem::Circle::computeIntersectionPoints(), oofem::Steel1::computeJ2InvariantAt(), oofem::J2MPlasticMaterial::computeJ2InvariantAt(), oofem::J2plasticMaterial::computeJ2InvariantAt(), oofem::J2Mat::computeJ2InvariantAt(), oofem::ConcreteDPM2::computeJacobian(), oofem::Q4Axisymm::computeJacobianMatrixAt(), oofem::J2Mat::computeKGradientVector(), oofem::Masonry02::computeKGradientVector(), oofem::DruckerPragerCutMat::computeKGradientVector(), oofem::InterfaceElement3dTrLin::computeLCS(), oofem::Quad1MindlinShell3D::computeLCS(), oofem::TR1_2D_SUPG_AXI::computeLinearAdvectionTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeLinearAdvectionTerm_MC(), oofem::QPlaneStress2d::computeLoadLEToLRotationMatrix(), oofem::QTrPlaneStress2d::computeLoadLEToLRotationMatrix(), oofem::Line2SurfaceTension::computeLoadVector(), oofem::LineSurfaceTension::computeLoadVector(), oofem::RerShell::computeLocalCoordinates(), oofem::CCTPlate::computeLocalCoordinates(), oofem::MDM::computeLocalDamageTensor(), oofem::InterfaceElem1d::computeLocalSlipDir(), oofem::GradDpElement::computeLocalStrainVector(), oofem::LumpedMassElement::computeLumpedMassMatrix(), oofem::Shell7Base::computeMassMatrix(), oofem::Shell7Base::computeMassMatrixNum(), oofem::NlDEIDynamic::computeMassMtrx(), oofem::RigidArmNode::computeMasterContribution(), oofem::TR21_2D_SUPG::computeMiddlePointOnParabolicArc(), oofem::LinearEdgeLoad::computeNArray(), oofem::QPlaneStrainGrad::computeNkappaMatrixAt(), oofem::QPlaneStressGrad::computeNkappaMatrixAt(), oofem::QTrPlaneStressGrad::computeNkappaMatrixAt(), oofem::QSpaceGrad::computeNkappaMatrixAt(), oofem::QWedgeGrad::computeNkappaMatrixAt(), oofem::QTRSpaceGrad::computeNkappaMatrixAt(), oofem::QTruss1dGrad::computeNkappaMatrixAt(), oofem::TrPlaneStress2d::computeNLBMatrixAt(), oofem::PlaneStressStructuralElementEvaluator::computeNMatrixAt(), oofem::Space3dStructuralElementEvaluator::computeNMatrixAt(), oofem::TrPlaneStrRot::computeNmatrixAt(), oofem::Q4Axisymm::computeNmatrixAt(), oofem::QTruss1d::computeNmatrixAt(), oofem::QPlaneStrain::computeNmatrixAt(), oofem::QPlaneStress2d::computeNmatrixAt(), oofem::QSpace::computeNmatrixAt(), oofem::LWedge::computeNmatrixAt(), oofem::QWedge::computeNmatrixAt(), oofem::L4Axisymm::computeNmatrixAt(), oofem::QTRSpace::computeNmatrixAt(), oofem::QTrPlaneStress2d::computeNmatrixAt(), oofem::QTrPlaneStrain::computeNmatrixAt(), oofem::Truss3d::computeNmatrixAt(), oofem::Axisymm3d::computeNmatrixAt(), oofem::RerShell::computeNmatrixAt(), oofem::PlaneStress2d::computeNmatrixAt(), oofem::Quad1PlaneStrain::computeNmatrixAt(), oofem::LSpace::computeNmatrixAt(), oofem::Truss1d::computeNmatrixAt(), oofem::TrPlaneStrain::computeNmatrixAt(), oofem::LTRSpace::computeNmatrixAt(), oofem::TrPlaneStress2d::computeNmatrixAt(), oofem::TransportElement::computeNmatrixAt(), oofem::Shell7Base::computeNmatrixAt(), oofem::TR1_2D_SUPG::computeNMtrx(), oofem::GradDpElement::computeNonlocalCumPlasticStrain(), oofem::GradDpElement::computeNonlocalDegreesOfFreedom(), oofem::MicroplaneMaterial::computeNormalStrainComponent(), oofem::MicroplaneMaterial::computeNormalVolumetricStrainComponent(), oofem::Tet1_3D_SUPG::computeNpMatrix(), oofem::TR21_2D_SUPG::computeNpMatrix(), oofem::Quad10_2D_SUPG::computeNpMatrix(), oofem::Tet1_3D_SUPG::computeNuMatrix(), oofem::TR21_2D_SUPG::computeNuMatrix(), oofem::Quad10_2D_SUPG::computeNuMatrix(), oofem::Line::computeNumberOfIntersectionPoints(), oofem::TR1_2D_CBS::computeNumberOfNodalPrescribedTractionPressureContributions(), oofem::TR1_2D_SUPG_AXI::computeOutFlowBCTerm_MB(), oofem::SPRNodalRecoveryModel::computePatch(), oofem::TR1_2D_SUPG_AXI::computePenetrationWithResistanceBCTerm_MB(), oofem::PerfectlyPlasticMaterial::computePlasticStiffnessAt(), oofem::DustMaterial::computePlastStrainDirM1(), oofem::DustMaterial::computePlastStrainDirM2(), oofem::DustMaterial::computePlastStrainDirM3(), oofem::MPSMaterial::computePointShrinkageStrainVector(), oofem::B3SolidMaterial::computePointShrinkageStrainVectorMPS(), oofem::SPRNodalRecoveryModel::computePolynomialTerms(), oofem::MMALeastSquareProjection::computePolynomialTerms(), oofem::TR1_2D_CBS::computePrescribedTractionPressure(), oofem::Shell7Base::computePressureForceAt(), oofem::Shell7Base::computePressureTangentMatrix(), oofem::TR1_2D_SUPG_AXI::computePressureTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computePressureTerm_MB(), oofem::TR1_2D_SUPG::computePressureTerm_MB(), oofem::TR1_2D_SUPG2::computePressureTerm_MB(), oofem::StrainVector::computePrincipalValDir(), oofem::StressVector::computePrincipalValDir(), oofem::StructuralMaterial::computePrincipalValDir(), oofem::StrainVector::computePrincipalValues(), oofem::StressVector::computePrincipalValues(), oofem::StructuralMaterial::computePrincipalValues(), oofem::TR21_2D_SUPG::computeQuadraticFunct(), oofem::TR21_2D_SUPG::computeQuadraticRoots(), oofem::LIBeam3dNL2::computeQuaternionFromRotMtrx(), oofem::TrAxisym1_ht::computeRadiusAt(), oofem::QuadAxisym1_ht::computeRadiusAt(), oofem::TR1_2D_SUPG_AXI::computeRadiusAt(), oofem::ConcreteDPM2::computeRateFactor(), oofem::J2MPlasticMaterial::computeReducedGradientMatrix(), oofem::J2plasticMaterial::computeReducedGradientMatrix(), oofem::J2Mat::computeReducedHardeningVarsLamGradient(), oofem::Masonry02::computeReducedHardeningVarsLamGradient(), oofem::DruckerPragerCutMat::computeReducedHardeningVarsLamGradient(), oofem::J2Mat::computeReducedHardeningVarsSigmaGradient(), oofem::Masonry02::computeReducedHardeningVarsSigmaGradient(), oofem::Masonry02::computeReducedSKGradientMatrix(), oofem::J2Mat::computeReducedSSGradientMatrix(), oofem::DruckerPragerCutMat::computeReducedSSGradientMatrix(), oofem::PlasticMaterial::ComputeResidualVector(), oofem::MPlasticMaterial::computeResidualVector(), oofem::MPlasticMaterial2::computeResidualVector(), oofem::LIBeam3dNL2::computeRotMtrxFromQuaternion(), oofem::ConcreteDPM2::computeSecantStiffness(), oofem::Shell7Base::computeSectionalForcesAt(), oofem::MicroplaneMaterial::computeShearLStrainComponent(), oofem::MicroplaneMaterial::computeShearMStrainComponent(), oofem::B3Material::computeShrinkageStrainVector(), oofem::B3SolidMaterial::computeShrinkageStrainVector(), oofem::TR1_2D_SUPG_AXI::computeSlipWithFrictionBCTerm_MB(), oofem::LIBeam3d2::computeSMtrx(), oofem::LIBeam3dNL::computeSMtrx(), oofem::LIBeam3dNL2::computeSMtrx(), oofem::Shell7Base::computeSolutionFields(), oofem::SpringElement::computeSpringInternalForce(), oofem::LIBeam3dNL2::computeStiffnessMatrix(), oofem::LIBeam3dNL::computeStiffnessMatrix(), oofem::NLStructuralElement::computeStiffnessMatrix(), oofem::GradDpElement::computeStiffnessMatrix_kk(), oofem::GradDpElement::computeStiffnessMatrix_ku(), oofem::GradDpElement::computeStiffnessMatrix_uu(), oofem::NLStructuralElement::computeStiffnessMatrix_withIRulesAsSubcells(), oofem::J2Mat::computeStrainHardeningVarsIncrement(), oofem::Masonry02::computeStrainHardeningVarsIncrement(), oofem::DruckerPragerCutMat::computeStrainHardeningVarsIncrement(), oofem::IsotropicDamageMaterial1::computeStrainInvariants(), oofem::Q4Axisymm::computeStrainVector(), oofem::L4Axisymm::computeStrainVector(), oofem::LIBeam3dNL2::computeStrainVector(), oofem::LIBeam3dNL::computeStrainVector(), oofem::Axisymm3d::computeStrainVector(), oofem::TrPlaneStrRot::computeStrainVector(), oofem::GradDpElement::computeStrainVector(), oofem::StructuralElementEvaluator::computeStrainVector(), oofem::Shell7Base::computeStrainVector(), oofem::NLStructuralElement::computeStrainVector(), oofem::MicroplaneMaterial::computeStrainVectorComponents(), oofem::LIBeam2d::computeStrainVectorInLayer(), oofem::LIBeam2dNL::computeStrainVectorInLayer(), oofem::RerShell::computeStrainVectorInLayer(), oofem::Quad1Mindlin::computeStrainVectorInLayer(), oofem::Beam2d::computeStrainVectorInLayer(), oofem::Quad1MindlinShell3D::computeStrainVectorInLayer(), oofem::CCTPlate::computeStrainVectorInLayer(), oofem::IDNLMaterial::computeStressBasedWeight(), oofem::J2plasticMaterial::ComputeStressGradient(), oofem::J2MPlasticMaterial::computeStressGradientVector(), oofem::J2Mat::computeStressGradientVector(), oofem::RankinePlasticMaterial::computeStressGradientVector(), oofem::DruckerPragerCutMat::computeStressGradientVector(), oofem::Masonry02::computeStressGradientVector(), oofem::SimpleCrossSection::computeStressIndependentStrainVector(), oofem::StructuralMaterial::computeStressIndependentStrainVector(), oofem::Shell7Base::computeStressResultantsAt(), oofem::J2MPlasticMaterial::computeStressSpaceHardeningVars(), oofem::J2plasticMaterial::ComputeStressSpaceHardeningVars(), oofem::J2MPlasticMaterial::computeStressSpaceHardeningVarsReducedGradient(), oofem::J2plasticMaterial::ComputeStressSpaceHardeningVarsReducedGradient(), oofem::TransportElement::computeSurfaceBCSubVectorAt(), oofem::LSpace::computeSurfaceNMatrixAt(), oofem::LTRSpace::computeSurfaceNMatrixAt(), oofem::Line2SurfaceTension::computeTangent(), oofem::LineSurfaceTension::computeTangent(), oofem::MixedGradientPressureDirichlet::computeTangents(), oofem::MixedGradientPressureNeumann::computeTangents(), oofem::LIBeam3dNL::computeTempCurv(), oofem::LIBeam3dNL2::computeTempCurv(), oofem::Shell7Base::computeThicknessMappingCoeff(), oofem::B3Material::computeTotalAverageShrinkageStrainVector(), oofem::B3SolidMaterial::computeTotalAverageShrinkageStrainVector(), oofem::Shell7Base::computeTractionForce(), oofem::Tet1_3D_SUPG::computeUDotGradUMatrix(), oofem::TR21_2D_SUPG::computeUDotGradUMatrix(), oofem::Quad10_2D_SUPG::computeUDotGradUMatrix(), oofem::TF1::computeValueAt(), oofem::UserDefinedTemperatureField::computeValueAt(), oofem::BoundaryLoad::computeValueAt(), oofem::PlaneStress2dXfem::computeVectorOf(), oofem::Element::computeVectorOf(), oofem::Element::computeVectorOfPrescribed(), oofem::Q4Axisymm::computeVolumeAround(), oofem::L4Axisymm::computeVolumeAround(), oofem::Axisymm3d::computeVolumeAround(), oofem::StressStrainBaseVector::computeVolumetricPart(), oofem::StructuralMaterial::computeVonMisesStress(), oofem::LIBeam3dNL::computeXdVector(), oofem::LIBeam3dNL2::computeXdVector(), oofem::RankinePlasticMaterial::computeYieldValueAt(), oofem::DruckerPragerCutMat::computeYieldValueAt(), oofem::Masonry02::computeYieldValueAt(), oofem::StructuralElement::condense(), oofem::TrabBone3D::constructAnisoFtensor(), oofem::StressStrainBaseVector::convertFromFullForm(), oofem::CylindricalALM::convertHPCMap(), oofem::StressStrainBaseVector::convertToFullForm(), copySubVector(), oofem::FloatMatrix::copySubVectorRow(), oofem::FreemInterface::createInput(), oofem::TSplineInterpolation::createLocalKnotVector(), oofem::Subdivision::createMesh(), oofem::MPlasticMaterial::cuttingPlaneReturn(), oofem::MPlasticMaterial2::cuttingPlaneReturn(), oofem::WallClockLoadBalancerMonitor::decide(), oofem::SPRNodalRecoveryModel::determineValuesFromPatch(), oofem::OctantRec::divideLocally(), oofem::CylindricalALM::do_lineSearch(), oofem::LEPlic::doCellDLS(), oofem::GPInitModule::doInit(), oofem::LEPlic::doLagrangianPhase(), oofem::GPExportModule::doOutput(), oofem::HOMExportModule::doOutput(), oofem::VTKExportModule::doOutput(), oofem::VTKXMLExportModule::doOutput(), oofem::RowColumn::dot(), oofem::TrianglePatch::draw(), oofem::drawIGAPatchDeformedGeometry(), oofem::Lattice2d::drawRawCrossSections(), oofem::IGAElement::drawRawGeometry(), oofem::InterfaceElem2dQuad::drawScalar(), oofem::PlaneStress2dXfem::drawScalar(), oofem::InterfaceElem1d::drawScalar(), oofem::Quad1_ht::drawScalar(), oofem::QTrPlaneStrain::drawScalar(), oofem::QTrPlaneStress2d::drawScalar(), oofem::BsplinePlaneStressElement::drawScalar(), oofem::CohesiveSurface3d::drawScalar(), oofem::Axisymm3d::drawScalar(), oofem::Tetrah1_ht::drawScalar(), oofem::QPlaneStrain::drawScalar(), oofem::QPlaneStress2d::drawScalar(), oofem::TrPlaneStress2d::drawScalar(), oofem::Truss1d::drawScalar(), oofem::Brick1_ht::drawScalar(), oofem::TR_SHELL01::drawScalar(), oofem::L4Axisymm::drawScalar(), oofem::LTRSpace::drawScalar(), oofem::TR1_2D_SUPG2_AXI::drawScalar(), oofem::LIBeam3d2::drawScalar(), oofem::PlaneStress2d::drawScalar(), oofem::Quad1PlaneStrain::drawScalar(), oofem::NURBSPlaneStressElement::drawScalar(), oofem::TR21_2D_SUPG::drawScalar(), oofem::Quad10_2D_SUPG::drawScalar(), oofem::LSpace::drawScalar(), oofem::TR1_2D_CBS::drawScalar(), oofem::TrPlaneStrain::drawScalar(), oofem::CCTPlate::drawScalar(), oofem::TSplinePlaneStressElement::drawScalar(), oofem::TR1_2D_SUPG2::drawScalar(), oofem::TR1_2D_SUPG::drawScalar(), oofem::NURBSSpace3dElement::drawScalar(), oofem::TrPlaneStress2d::drawSpecial(), oofem::Lattice2d::drawSpecial(), oofem::LTRSpace::drawSpecial(), oofem::PlaneStress2d::drawSpecial(), oofem::Quad1PlaneStrain::drawSpecial(), oofem::LSpace::drawSpecial(), oofem::LSpace::drawTriad(), oofem::TrianglePatch::drawWD(), oofem::Node::drawYourself(), oofem::Concrete2::dtp2(), oofem::Concrete2::dtp3(), oofem::DarcyFlow::DumpMatricesToFile(), oofem::Shell7Base::edgeComputeBmatrixAt(), oofem::FEI2dTrLin::edgeComputeLength(), oofem::FEI2dTrConst::edgeComputeLength(), oofem::FEI2dQuadLin::edgeComputeLength(), oofem::FEI2dQuadConst::edgeComputeLength(), oofem::FEI2dLineLin::edgeComputeLength(), oofem::Shell7Base::edgeComputeNmatrixAt(), oofem::Shell7Base::edgeEvalCovarBaseVectorsAt(), oofem::FEI2dLineHermite::edgeEvald2Nds2(), oofem::FEI2dTrLin::edgeEvaldNds(), oofem::FEI2dQuadLin::edgeEvaldNds(), oofem::FEI2dLineQuad::edgeEvaldNds(), oofem::FEI2dLineLin::edgeEvaldNds(), oofem::FEI2dLineHermite::edgeEvaldNds(), oofem::FEI2dTrQuad::edgeEvaldNds(), oofem::FEI2dQuadQuad::edgeEvaldNds(), oofem::FEI3dTrQuad::edgeEvaldNdxi(), oofem::Shell7Base::edgeEvalInitialCovarBaseVectorsAt(), oofem::Shell7Base::edgeEvalInitialDirectorAt(), oofem::FEI3dHexaLin::edgeEvalN(), oofem::FEI3dTetLin::edgeEvalN(), oofem::FEI2dTrLin::edgeEvalN(), oofem::FEI3dWedgeQuad::edgeEvalN(), oofem::FEI3dWedgeLin::edgeEvalN(), oofem::FEI2dTrConst::edgeEvalN(), oofem::FEI3dTrQuad::edgeEvalN(), oofem::FEI3dTetQuad::edgeEvalN(), oofem::FEI2dQuadLin::edgeEvalN(), oofem::FEI2dTrQuad::edgeEvalN(), oofem::FEI2dQuadQuad::edgeEvalN(), oofem::FEI2dTrLin::edgeEvalNormal(), oofem::FEI2dQuadLin::edgeEvalNormal(), oofem::FEI2dLineLin::edgeEvalNormal(), oofem::FEI2dLineQuad::edgeEvalNormal(), oofem::FEI2dLineHermite::edgeEvalNormal(), oofem::FEI2dTrQuad::edgeEvalNormal(), oofem::FEI2dQuadQuad::edgeEvalNormal(), oofem::Shell7Base::edgeGiveInitialSolutionVector(), oofem::FEI3dHexaLin::edgeLocal2global(), oofem::FEI3dTetLin::edgeLocal2global(), oofem::FEI3dWedgeQuad::edgeLocal2global(), oofem::FEI2dTrLin::edgeLocal2global(), oofem::FEI3dWedgeLin::edgeLocal2global(), oofem::FEI2dTrConst::edgeLocal2global(), oofem::FEI2dQuadLin::edgeLocal2global(), oofem::FEI2dTrQuad::edgeLocal2global(), oofem::FEI2dQuadQuad::edgeLocal2global(), oofem::TransportElement::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::TR1_2D_CBS::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::TR1_2D_SUPG2::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::TR1_2D_SUPG::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::Quad1PlaneStrain::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::LSpace::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::QTrPlaneStress2d::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::QTrPlaneStrain::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::TrPlaneStrain::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::PlaneStress2d::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::TrPlaneStress2d::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::LTRSpace::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::Line2SurfaceTension::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Line2BoundaryElement::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::LineSurfaceTension::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tr1BubbleStokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tr21Stokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tet1BubbleStokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tet21Stokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::ZZErrorEstimator::estimateError(), oofem::HuertaErrorEstimator::estimateError(), oofem::DirectErrorIndicatorRC::estimateMeshDensities(), oofem::ZZRemeshingCriteria::estimateMeshDensities(), oofem::HuertaRemeshingCriteria::estimateMeshDensities(), oofem::FEI1dHermite::evald2Ndx2(), oofem::FEI2dTrQuad::evald2Ndx2(), oofem::FEI3dTetLin::evaldNdx(), oofem::FEI3dLineLin::evaldNdx(), oofem::FEI3dTetQuad::evaldNdx(), oofem::NURBSInterpolation::evaldNdx(), oofem::FEI2dTrLin::evaldNdx(), oofem::FEI1dLin::evaldNdx(), oofem::FEI1dQuad::evaldNdx(), oofem::FEI1dHermite::evaldNdx(), oofem::FEI2dTrQuad::evaldNdx(), oofem::FEI2dQuadLin::evaldNdx(), oofem::FEI2dLineHermite::evaldNdx(), oofem::FEI2dQuadQuad::evaldNdx(), oofem::TSplineInterpolation::evaldNdx(), oofem::BSplineInterpolation::evaldNdx(), oofem::Shell7Base::evalInitialCovarBaseVectorsAt(), oofem::Shell7Base::evalInitialDirectorAt(), oofem::FEI3dHexaLin::evalN(), oofem::FEI3dTetLin::evalN(), oofem::FEI3dLineLin::evalN(), oofem::FEI2dTrLin::evalN(), oofem::NURBSInterpolation::evalN(), oofem::FEI1dLin::evalN(), oofem::FEI1dQuad::evalN(), oofem::FEI3dWedgeQuad::evalN(), oofem::FEI1dHermite::evalN(), oofem::FEI2dTrQuad::evalN(), oofem::FEI3dWedgeLin::evalN(), oofem::FEI2dQuadConst::evalN(), oofem::FEI2dTrConst::evalN(), oofem::FEI2dQuadLin::evalN(), oofem::FEI2dQuadBiQuad::evalN(), oofem::FEI2dLineLin::evalN(), oofem::FEI2dLineHermite::evalN(), oofem::FEI2dQuadQuad::evalN(), oofem::TSplineInterpolation::evalN(), oofem::FEI3dHexaQuad::evalN(), oofem::BSplineInterpolation::evalN(), oofem::SmoothedNodalInternalVariableField::evaluateAt(), oofem::DofManValueField::evaluateAt(), oofem::CohesiveSurface3d::evaluateCenter(), oofem::BranchFunction::evaluateDerivativeAt(), oofem::RampFunction::evaluateDerivativeAt(), oofem::BranchFunction::evaluateFunctionAt(), oofem::RampFunction::evaluateFunctionAt(), oofem::CohesiveSurface3d::evaluateLocalCoordinateSystem(), oofem::InterfaceElem1d::evaluateLocalCoordinateSystem(), oofem::RankineMat::evaluatePlaneStressStiffMtrx(), oofem::RankineMat::evalYieldFunction(), oofem::VTKXMLExportModule::exportCellVarAs(), oofem::VTKExportModule::exportCellVars(), oofem::POIExportModule::exportIntVarAs(), oofem::VTKExportModule::exportIntVarAs(), oofem::VTKXMLExportModule::exportIntVarAs(), oofem::POIExportModule::exportIntVars(), oofem::POIExportModule::exportPrimVarAs(), oofem::VTKExportModule::exportPrimVarAs(), oofem::VTKXMLExportModule::exportPrimVarAs(), oofem::HuertaErrorEstimator::extractVectorFrom(), oofem::SkylineUnsym::factorized(), oofem::LIBeam3d::FiberedCrossSectionInterface_computeStrainVectorInFiber(), oofem::Beam3d::FiberedCrossSectionInterface_computeStrainVectorInFiber(), oofem::LIBeam3d2::FiberedCrossSectionInterface_computeStrainVectorInFiber(), oofem::LEPlic::findCellLineConstant(), oofem::FloatMatrix::FloatMatrix(), oofem::LevelSetPCS::FMMReinitialization(), oofem::TR1_2D_SUPG2::formVolumeInterfacePoly(), oofem::TR1_2D_SUPG::formVolumeInterfacePoly(), oofem::TR1_2D_SUPG2_AXI::formVolumeInterfacePoly(), oofem::MixedGradientPressureNeumann::fromDeviatoricBase2D(), oofem::MixedGradientPressureNeumann::fromDeviatoricBase3D(), oofem::RheoChainMaterial::generateLogTimeScale(), oofem::ExternalFieldGenerator::generateRandomValue(), oofem::Triangle::getArea(), oofem::VTKExportModule::getDofManPrimaryVariable(), oofem::StokesFlowVelocityHomogenization::getMeans(), oofem::VTKXMLExportModule::getPrimaryVariable(), oofem::RotatingBoundary::give(), oofem::PrescribedGradient::give(), oofem::IDGMaterial::give1dGprime(), oofem::IDGMaterial::give1dKappaMatrix(), oofem::MisesMat::give1dStressStiffMtrx(), oofem::LayeredCrossSection::give2dBeamMaterialStiffnessMatrix(), oofem::IsoInterfaceDamageMaterial::give2dInterfaceMaterialStiffnessMatrix(), oofem::LayeredCrossSection::give2dPlateMaterialStiffnessMatrix(), oofem::FiberedCrossSection::give3dBeamMaterialStiffnessMatrix(), oofem::TrabBoneGrad3D::give3dGprime(), oofem::IsoInterfaceDamageMaterial::give3dInterfaceMaterialStiffnessMatrix(), oofem::TrabBoneGrad3D::give3dKappaMatrix(), oofem::MisesMat::give3dLSMaterialStiffnessMatrix(), oofem::HyperElasticMaterial::give3dMaterialStiffnessMatrix(), oofem::LayeredCrossSection::give3dShellMaterialStiffness(), oofem::FEI2dQuadLin::giveArea(), oofem::FEI2dTrLin::giveArea(), oofem::TrPlaneStrRot::giveArea(), oofem::FEI2dTrQuad::giveArea(), oofem::FEI2dQuadQuad::giveArea(), oofem::RerShell::giveArea(), oofem::FiberedCrossSection::giveArea(), oofem::LayeredCrossSection::giveArea(), oofem::StokesFlowVelocityHomogenization::giveAreaOfRVE(), oofem::CemhydMatStatus::giveAverageTemperature(), oofem::TrPlaneStress2d::GivebCoeff(), oofem::TrPlaneStress2d::GivecCoeff(), oofem::L4Axisymm::giveCharacteristicLenght(), oofem::QTrPlaneStress2d::giveCharacteristicLenght(), oofem::PlaneStress2d::giveCharacteristicLenght(), oofem::Axisymm3d::giveCharacteristicLenght(), oofem::QPlaneStress2d::giveCharacteristicLenght(), oofem::TrPlaneStress2d::giveCharacteristicLenght(), oofem::AbaqusUserMaterial::giveCharacteristicMatrix(), oofem::SimpleInterfaceMaterial::giveCharacteristicMatrix(), oofem::PlaneStress2d::giveCharacteristicSize(), oofem::TrPlaneStress2d::giveCharacteristicSize(), oofem::RerShell::giveCharacteristicTensor(), oofem::TrPlaneStrRot3d::giveCharacteristicTensor(), oofem::CCTPlate3d::giveCharacteristicTensor(), oofem::HydratingConcreteMat::giveCharacteristicValue(), oofem::HydratingHeMoMaterial::giveCharacteristicValue(), oofem::HydratingIsoHeatMaterial::giveCharacteristicValue(), oofem::BinghamFluidMaterial2::giveCharacteristicValue(), oofem::RCM2MaterialStatus::giveCharLength(), oofem::CompoDamageMat::giveCharLength(), oofem::CompoDamageMat::giveCharLengthForModes(), oofem::RheoChainMaterial::giveCharTime(), oofem::OctantRec::giveChildContainingPoint(), oofem::DofManager::giveCompleteUnknownVector(), oofem::CemhydMat::giveConcreteCapacity(), oofem::CemhydMat::giveConcreteDensity(), oofem::PlasticMaterial::giveConsistentStiffnessMatrix(), oofem::MPlasticMaterial2::giveConsistentStiffnessMatrix(), oofem::Node::giveCoordinate(), oofem::Subdivision::RS_Node::giveCoordinate(), oofem::GaussPoint::giveCoordinate(), oofem::Shell7Base::giveCoordTransMatrix(), oofem::RCM2MaterialStatus::giveCrackStrain(), oofem::Lattice2d::giveCrossSectionCoordinates(), oofem::LIBeam3d2::giveCurrentLength(), oofem::FEI3dTrQuad::giveDerivativeEta(), oofem::Q4Axisymm::GiveDerivativeEta(), oofem::Q4Axisymm::GiveDerivativeKsi(), oofem::FEI2dQuadBiQuad::giveDerivatives(), oofem::FEI2dQuadLin::giveDerivatives(), oofem::FEI2dTrQuad::giveDerivatives(), oofem::FEI2dQuadQuad::giveDerivatives(), oofem::TrPlaneStrRot::GiveDerivativeUX(), oofem::TrPlaneStrRot::GiveDerivativeUY(), oofem::TrPlaneStrRot::GiveDerivativeVX(), oofem::TrPlaneStrRot::GiveDerivativeVY(), oofem::FEI3dTrQuad::giveDerivativeXi(), oofem::NonlinearFluidMaterial::giveDeviatoricStiffnessMatrix(), oofem::BinghamFluidMaterial2::giveDeviatoricStiffnessMatrix(), oofem::FE2FluidMaterial::giveDeviatoricStiffnessMatrix(), oofem::IncrementalLinearStatic::giveDiscreteTime(), oofem::NonStationaryTransportProblem::giveDiscreteTime(), oofem::StaggeredProblem::giveDiscreteTime(), oofem::WeakPeriodicbc::giveEdgeNormal(), oofem::RCM2Material::giveEffectiveMaterialStiffnessMatrix(), oofem::HellmichMaterial::giveEigenStrainVector(), oofem::MPlasticMaterial2::giveElastoPlasticStiffnessMatrix(), oofem::TR1_2D_SUPG2::giveElementCenter(), oofem::TR1_2D_SUPG2_AXI::giveElementCenter(), oofem::TR1_2D_SUPG::giveElementCenter(), oofem::ZZErrorEstimator::giveElementError(), oofem::HuertaErrorEstimator::giveElementError(), oofem::Tr21Stokes::giveElementFMatrix(), oofem::LevelSetPCS::giveElementMaterialMixture(), oofem::LEPlic::giveElementMaterialMixture(), oofem::RheoChainMaterial::giveEparModulus(), oofem::OOFEMTXTInputRecord::giveField(), oofem::RVEStokesFlow::giveFluxVector(), oofem::SimpleCrossSection::giveFullCharacteristicVector(), oofem::FiberedCrossSection::giveFullCharacteristicVector(), oofem::LayeredCrossSection::giveFullCharacteristicVector(), oofem::StructuralMaterial::giveFullCharacteristicVector(), oofem::Shell7Base::giveGeneralizedStrainComponents(), oofem::BazantNajjarMoistureTransferMaterial::giveHumidity(), oofem::NlIsoMoistureMaterial::giveHumidity(), oofem::HeMoTKMaterial::giveHumidity(), oofem::B3SolidMaterial::giveHumidity(), oofem::MPSMaterial::giveHumidity(), oofem::B3SolidMaterial::giveHumidityIncrement(), oofem::Shell7Base::giveInitialSolutionVector(), oofem::PiecewiseLinFunction::giveInputRecordString(), oofem::LinearEdgeLoad::giveInputRecordString(), oofem::Load::giveInputRecordString(), oofem::PrescribedGradient::giveInputRecordString(), oofem::PointLoad::giveInputRecordString(), oofem::MixedGradientPressureDirichlet::giveInputRecordString(), oofem::MixedGradientPressureNeumann::giveInputRecordString(), oofem::FiberedCrossSection::GiveIntegrated3dBeamStress(), oofem::LayeredCrossSection::giveIntegrated3dShellStress(), oofem::Tr21Stokes::giveIntegratedVelocity(), oofem::MacroLSpace::giveInternalForcesVector(), oofem::SpringElement::giveInternalForcesVector(), oofem::LIBeam3dNL2::giveInternalForcesVector(), oofem::LIBeam3dNL::giveInternalForcesVector(), oofem::IDGMaterial::giveInternalLength(), oofem::IDGMaterial::giveInternalLengthDerivative(), oofem::CBSElement::giveInternalStateAtNode(), oofem::SUPGElement2::giveInternalStateAtNode(), oofem::TransportElement::giveInternalStateAtNode(), oofem::TR1_2D_CBS::giveInternalStateAtNode(), oofem::SUPGElement::giveInternalStateAtNode(), oofem::StructuralElement::giveInternalStateAtNode(), oofem::Element::giveInternalStateAtNode(), oofem::IsotropicMoistureTransferMaterial::giveIPValue(), oofem::HydratingConcreteMat::giveIPValue(), oofem::IsotropicHeatTransferMaterial::giveIPValue(), oofem::HydratingHeMoMaterial::giveIPValue(), oofem::TrPlaneStrRot3d::giveIPValue(), oofem::CCTPlate3d::giveIPValue(), oofem::RerShell::giveIPValue(), oofem::HydratingIsoHeatMaterial::giveIPValue(), oofem::CemhydMat::giveIPValue(), oofem::RVEStokesFlow::giveIPValue(), oofem::Quad10_2D_SUPG::giveIPValue(), oofem::HeMoTKMaterial::giveIPValue(), oofem::TR1_2D_CBS::giveIPValue(), oofem::MisesMat::giveIPValue(), oofem::RankineMat::giveIPValue(), oofem::PlasticMaterial::giveIPValue(), oofem::IsoInterfaceDamageMaterial::giveIPValue(), oofem::TransportMaterial::giveIPValue(), oofem::PerfectlyPlasticMaterial::giveIPValue(), oofem::TR1_2D_SUPG2::giveIPValue(), oofem::TR1_2D_SUPG::giveIPValue(), oofem::FluidDynamicMaterial::giveIPValue(), oofem::MPlasticMaterial::giveIPValue(), oofem::RCM2Material::giveIPValue(), oofem::IsotropicDamageMaterial::giveIPValue(), oofem::TrabBone3D::giveIPValue(), oofem::MPlasticMaterial2::giveIPValue(), oofem::MDM::giveIPValue(), oofem::StructuralMaterial::giveIPValue(), oofem::DruckerPragerPlasticitySM::giveIPValue(), oofem::DustMaterial::giveIPValue(), oofem::Element::giveIPValue(), oofem::ConcreteDPM::giveIPValue(), oofem::HellmichMaterial::giveIPValue(), oofem::ConcreteDPM2::giveIPValue(), oofem::CemhydMat::giveIsotropicConductivity(), oofem::J2MPlasticMaterial::giveIsotropicHardeningVar(), oofem::J2plasticMaterial::giveIsotropicHardeningVar(), oofem::J2Mat::giveIsotropicHardeningVar(), oofem::FEI2dTrQuad::giveJacobianMatrixAt(), oofem::FEI2dQuadLin::giveJacobianMatrixAt(), oofem::FEI2dQuadQuad::giveJacobianMatrixAt(), oofem::FEI2dLineQuad::giveJacobianMatrixAt(), oofem::FEI3dTetQuad::giveJacobianMatrixAt(), oofem::LayeredCrossSection::giveLayerMidZ(), oofem::LayeredCrossSection::giveLayerThickness(), oofem::FEI1dQuad::giveLength(), oofem::FEI1dLin::giveLength(), oofem::FEI1dHermite::giveLength(), oofem::FEI2dLineHermite::giveLength(), oofem::LevelSetPCS::giveLevelSetDofManValue(), oofem::Beam3d::giveLocalCoordinateSystem(), oofem::LIBeam3d::giveLocalCoordinateSystem(), oofem::Truss3d::giveLocalCoordinateSystem(), oofem::LIBeam3d2::giveLocalCoordinateSystem(), oofem::LIBeam3dNL::giveLocalCoordinateSystem(), oofem::LIBeam3dNL2::giveLocalCoordinateSystem(), oofem::FEI3dHexaLin::giveLocalDerivative(), oofem::FEI3dWedgeQuad::giveLocalDerivative(), oofem::FEI3dWedgeLin::giveLocalDerivative(), oofem::FEI3dHexaQuad::giveLocalDerivative(), oofem::TrabBoneNL3D::giveLocalNonlocalStiffnessContribution(), oofem::IDNLMaterial::giveLocalNonlocalStiffnessContribution(), oofem::MicroMaterial::giveMacroStiffnessMatrix(), oofem::Shell7Base::giveMassFactorsAt(), oofem::LevelSetPCS::giveMaterialMixtureAt(), oofem::LEPlic::giveMaterialMixtureAt(), oofem::MDMStatus::giveMicroplaneDamage(), oofem::MicroplaneMaterial::giveMicroplaneNormal(), oofem::MDMStatus::giveMicroplaneTempDamage(), oofem::NlIsoMoistureMaterial::giveMoistureCapacity(), oofem::LevelSetPCS::giveNodalScalarRepresentation(), oofem::TrPlaneStrRot::giveNodeCoordinates(), oofem::TrPlaneStrRot3d::giveNodeCoordinates(), oofem::CCTPlate3d::giveNodeCoordinates(), oofem::CCTPlate::giveNodeCoordinates(), oofem::GradDpElement::giveNonlocalInternalForcesVector(), oofem::RCM2MaterialStatus::giveNumberOfActiveCracks(), oofem::NlIsoMoistureMaterial::givePermeability(), oofem::TrPlaneStrRot::GivePitch(), oofem::IDGMaterial::givePlaneStressGprime(), oofem::IDGMaterial::givePlaneStressStiffMtrx(), oofem::DofManager::givePrescribedUnknownVector(), oofem::MDM::giveRawMDMParameters(), oofem::M4Material::giveRealMicroplaneStressVector(), oofem::RCM2Material::giveRealPrincipalStressVector3d(), oofem::Concrete2::giveRealStresses3dShellLayer(), oofem::MicroplaneMaterial_Bazant::giveRealStressVector(), oofem::IDGMaterial::giveRealStressVector(), oofem::HyperElasticMaterial::giveRealStressVector(), oofem::LsMasterMatGrad::giveRealStressVector(), oofem::LsMasterMat::giveRealStressVector(), oofem::TrabBoneGrad3D::giveRealStressVector(), oofem::TrabBoneNL::giveRealStressVector(), oofem::CohesiveInterfaceMaterial::giveRealStressVector(), oofem::SimpleInterfaceMaterial::giveRealStressVector(), oofem::RCSDNLMaterial::giveRealStressVector(), oofem::CebFipSlip90Material::giveRealStressVector(), oofem::RCSDEMaterial::giveRealStressVector(), oofem::RCSDMaterial::giveRealStressVector(), oofem::PerfectlyPlasticMaterial::giveRealStressVector(), oofem::PlasticMaterial::giveRealStressVector(), oofem::CompoDamageMat::giveRealStressVector(), oofem::TrabBoneNL3D::giveRealStressVector(), oofem::MPlasticMaterial::giveRealStressVector(), oofem::IsotropicDamageMaterial::giveRealStressVector(), oofem::MPlasticMaterial2::giveRealStressVector(), oofem::MDM::giveRealStressVector(), oofem::ConcreteDPM2::giveRealStressVector(), oofem::MisesMat::giveRealStressVectorComputedFromDefGrad(), oofem::SimpleCrossSection::giveReducedCharacteristicVector(), oofem::FiberedCrossSection::giveReducedCharacteristicVector(), oofem::LayeredCrossSection::giveReducedCharacteristicVector(), oofem::StructuralMaterial::giveReducedCharacteristicVector(), oofem::DruckerPragerPlasticitySM::giveRegAlgorithmicStiffMatrix(), oofem::TrabBoneNL3D::giveRemoteNonlocalStiffnessContribution(), oofem::IDNLMaterial::giveRemoteNonlocalStiffnessContribution(), oofem::DirectErrorIndicatorRC::giveRequiredDofManDensity(), oofem::ZZRemeshingCriteria::giveRequiredDofManDensity(), oofem::HuertaRemeshingCriteria::giveRequiredDofManDensity(), oofem::FiberedCrossSection::giveSlaveGaussPoint(), oofem::LayeredCrossSection::giveSlaveGaussPoint(), oofem::LayeredCrossSection::giveSlaveGaussPointNew(), oofem::J2MPlasticMaterial::giveStressBackVector(), oofem::J2plasticMaterial::giveStressBackVector(), oofem::J2Mat::giveStressBackVector(), oofem::PerfectlyPlasticMaterial::GiveStressCorrectionBackToYieldSurface(), oofem::MPSMaterial::giveTemperature(), oofem::RCM2MaterialStatus::giveTempMaxCrackStrain(), oofem::TwoFluidMaterial::giveTempVOF(), oofem::OrthotropicLinearElasticMaterial::giveTensorRotationMatrix(), oofem::B3Material::giveThermalDilatationVector(), oofem::M4Material::giveThermalDilatationVector(), oofem::IsotropicLinearElasticMaterial::giveThermalDilatationVector(), oofem::OrthotropicLinearElasticMaterial::giveThermalDilatationVector(), oofem::B3SolidMaterial::giveThermalDilatationVector(), oofem::CohesiveInterfaceMaterial::giveThermalDilatationVector(), oofem::SimpleInterfaceMaterial::giveThermalDilatationVector(), oofem::CebFipSlip90Material::giveThermalDilatationVector(), oofem::IsoInterfaceDamageMaterial::giveThermalDilatationVector(), oofem::MPSMaterial::giveThermalDilatationVector(), oofem::IsotropicDamageMaterial::giveThermalDilatationVector(), oofem::MDM::giveThermalDilatationVector(), oofem::AdaptiveNonLinearStatic::giveTimeStepLoadLevel(), oofem::FEI3dTetLin::giveTransformationJacobian(), oofem::FEI2dTrLin::giveTransformationJacobian(), oofem::FEI1dLin::giveTransformationJacobian(), oofem::FEI1dQuad::giveTransformationJacobian(), oofem::NURBSInterpolation::giveTransformationJacobian(), oofem::FEI2dTrConst::giveTransformationJacobian(), oofem::FEI2dLineLin::giveTransformationJacobian(), oofem::FEI2dLineQuad::giveTransformationJacobian(), oofem::FEI2dLineHermite::giveTransformationJacobian(), oofem::TSplineInterpolation::giveTransformationJacobian(), oofem::BSplineInterpolation::giveTransformationJacobian(), oofem::MixedGradientPressureDirichlet::giveUnknown(), oofem::DEIDynamic::giveUnknownComponent(), oofem::LinearStatic::giveUnknownComponent(), oofem::DIIDynamic::giveUnknownComponent(), oofem::EigenValueDynamic::giveUnknownComponent(), oofem::AdaptiveNonLinearStatic::giveUnknownComponent(), oofem::LinearStability::giveUnknownComponent(), oofem::CBS::giveUnknownComponent(), oofem::SUPG::giveUnknownComponent(), oofem::NonLinearStatic::giveUnknownComponent(), oofem::NonLinearDynamic::giveUnknownComponent(), oofem::NlDEIDynamic::giveUnknownComponent(), oofem::Dof::giveUnknowns(), oofem::PrimaryField::giveUnknownValue(), oofem::DofManager::giveUnknownVector(), oofem::DofManager::giveUnknownVectorOfType(), oofem::CompoDamageMat::giveUnrotated3dMaterialStiffnessMatrix(), oofem::LEPlic::giveUpdatedCoordinate(), oofem::Node::giveUpdatedCoordinates(), oofem::LEPlic::giveUpdatedXCoordinate(), oofem::LEPlic::giveUpdatedYCoordinate(), oofem::DruckerPragerPlasticitySM::giveVertexAlgorithmicStiffMatrix(), oofem::FE2FluidMaterial::giveVolumetricDeviatoricStiffness(), oofem::Steel1::GiveYCStressGradient(), oofem::FEI3dHexaLin::global2local(), oofem::FEI3dTetLin::global2local(), oofem::FEI2dTrLin::global2local(), oofem::FEI3dLineLin::global2local(), oofem::FEI1dLin::global2local(), oofem::FEI1dQuad::global2local(), oofem::FEI1dHermite::global2local(), oofem::FEI2dTrConst::global2local(), oofem::FEI2dLineLin::global2local(), oofem::FEI2dLineQuad::global2local(), oofem::FEI2dQuadLin::global2local(), oofem::FEI2dLineHermite::global2local(), oofem::FEI2dQuadQuad::global2local(), oofem::FEI3dHexaQuad::global2local(), oofem::PlaneStress2d::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::Quad1PlaneStrain::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::LSpace::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::TrPlaneStrain::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::Truss1d::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::TrPlaneStress2d::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::LTRSpace::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::DynCompRow::ILUPsolve(), oofem::DynCompRow::ILUPtrans_solve(), oofem::DynCompRow::ILUPYourself(), oofem::FiberedCrossSection::imposeStrainConstrainsOnGradient(), oofem::LayeredCrossSection::imposeStrainConstrainsOnGradient(), oofem::StructuralCrossSection::imposeStrainConstrainsOnGradient(), oofem::FiberedCrossSection::imposeStressConstrainsOnGradient(), oofem::LayeredCrossSection::imposeStressConstrainsOnGradient(), oofem::StructuralCrossSection::imposeStressConstrainsOnGradient(), oofem::HellmichMaterial::initAuxStatus(), oofem::IDGMaterial::initDamaged(), oofem::MazarsMaterial::initDamaged(), oofem::IsotropicDamageMaterial1::initDamaged(), oofem::ConcreteDPM::initDamaged(), oofem::ConcreteDPM2::initDamaged(), oofem::FloatMatrix::initFromVector(), oofem::DofDistributedPrimaryField::initialize(), oofem::CompCol_ILUPreconditioner::initialize(), oofem::LevelSetPCS::initialize(), oofem::MicroplaneMaterial::initializeData(), oofem::MDM::initializeData(), oofem::SymmetryBarrier::initializeFrom(), oofem::BSplineInterpolation::initializeFrom(), oofem::IncrementalLinearStatic::initializeFrom(), oofem::InterfaceElem1d::initializeFrom(), oofem::NlIsoMoistureMaterial::initializeFrom(), oofem::IGAElement::initializeFrom(), oofem::Load::initializeFrom(), oofem::OrthotropicLinearElasticMaterial::initializeFrom(), oofem::AnisotropicMassTransferMaterial::initializeFrom(), oofem::CemhydMat::initializeFrom(), oofem::IGATSplineElement::initializeFrom(), oofem::CompoDamageMat::initializeFrom(), oofem::NRSolver::initializeFrom(), oofem::LevelSetPCS::initializeFrom(), oofem::Node::initializeFrom(), oofem::CylindricalALM::initializeFrom(), oofem::Element::initializeFrom(), oofem::DynCompRow::insertColInRow(), oofem::OctreeSpatialLocalizer::insertElementIntoOctree(), oofem::DynCompCol::insertRowInColumn(), oofem::MixedGradientPressureNeumann::integrateDevTangent(), oofem::PolylineNonlocalBarrier::isActivated(), oofem::Triangle::isOrientedAnticlockwise(), oofem::Line::isPointInside(), oofem::FloatMatrix::jaco_(), oofem::Skyline::ldl_feti_sky(), oofem::FEI3dTetLin::local2global(), oofem::FEI3dHexaLin::local2global(), oofem::FEI3dTrQuad::local2global(), oofem::FEI3dLineLin::local2global(), oofem::NURBSInterpolation::local2global(), oofem::FEI2dTrLin::local2global(), oofem::FEI1dQuad::local2global(), oofem::FEI1dLin::local2global(), oofem::FEI3dWedgeQuad::local2global(), oofem::FEI3dWedgeLin::local2global(), oofem::FEI1dHermite::local2global(), oofem::FEI2dQuadConst::local2global(), oofem::FEI2dTrConst::local2global(), oofem::FEI2dLineLin::local2global(), oofem::FEI2dTrQuad::local2global(), oofem::FEI2dLineQuad::local2global(), oofem::FEI2dQuadLin::local2global(), oofem::FEI2dLineHermite::local2global(), oofem::FEI2dQuadQuad::local2global(), oofem::TSplineInterpolation::local2global(), oofem::FEI3dHexaQuad::local2global(), oofem::BSplineInterpolation::local2global(), oofem::TR1_2D_SUPG::LS_PCS_computeF(), oofem::Tet1_3D_SUPG::LS_PCS_computeS(), oofem::TR1_2D_SUPG::LS_PCS_computeS(), oofem::Tet1_3D_SUPG::LS_PCS_computeVOFFractions(), oofem::TR1_2D_SUPG_AXI::LS_PCS_computeVOFFractions(), oofem::TR21_2D_SUPG::LS_PCS_computeVOFFractions(), oofem::TR1_2D_SUPG::LS_PCS_computeVOFFractions(), oofem::VTKXMLExportModule::makeFullForm(), oofem::EIPrimaryUnknownMapper::mapAndUpdate(), oofem::LayeredCrossSection::mapLayerGpCoordsToShellCoords(), oofem::FETISolver::masterMapDirectionVector(), oofem::FETISolver::masterMapGammas(), oofem::FETISolver::masterMapPPVector(), oofem::FETISolver::masterMapQQProduct(), oofem::FETISolver::masterMapResiduals(), oofem::FETISolver::masterMapSolution(), oofem::FETISolver::masterUnpackQQProduct(), oofem::HeMoTKMaterial::matcond1d(), oofem::HeMoTKMaterial::matcond2d(), oofem::HeMoTKMaterial::matcond3d(), oofem::MDMStatus::MDMStatus(), oofem::LTRSpace::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::TrPlaneStrain::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::Truss1d::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::TrPlaneStress2d::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::IsotropicDamageMaterial1::MMI_map(), oofem::MDM::MMI_map(), oofem::IDNLMaterial::modifyNonlocalWeightFunctionAround(), oofem::LSpace::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Tr21Stokes::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Tet21Stokes::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Shell7Base::NodalAveragingRecoveryMI_computeNodalValue(), oofem::TrabBoneNL3D::NonlocalMaterialStiffnessInterface_addIPContribution(), oofem::IDNLMaterial::NonlocalMaterialStiffnessInterface_addIPContribution(), oofem::DynCompRow::operator()(), oofem::DynCompCol::operator()(), oofem::FETISolver::packDirectionVector(), oofem::EngngModel::packDofManagers(), oofem::FETISolver::packGammas(), oofem::NonLinearStatic::packMigratingData(), oofem::NonLinearDynamic::packMigratingData(), oofem::FETISolver::packPPVector(), oofem::FETISolver::packQQProducts(), oofem::FETISolver::packResiduals(), oofem::NodalAveragingRecoveryModel::packSharedDofManData(), oofem::ZZNodalRecoveryModel::packSharedDofManData(), oofem::SPRNodalRecoveryModel::packSharedDofManData(), oofem::FETISolver::packSolution(), oofem::LevelSetPCS::pcs_stage1(), oofem::MisesMat::performPlasticityReturn(), oofem::RankineMat::performPlasticityReturn(), oofem::ConcreteDPM2::performRegularReturn(), oofem::FloatMatrix::plusDyadSymmUpper(), oofem::FloatMatrix::plusDyadUnsym(), oofem::RCSDNLMaterialStatus::printOutputAt(), oofem::CompoDamageMatStatus::printOutputAt(), oofem::SimpleInterfaceMaterialStatus::printOutputAt(), oofem::TrabBoneNL3DStatus::printOutputAt(), oofem::BinghamFluidMaterial2Status::printOutputAt(), oofem::FluidDynamicMaterialStatus::printOutputAt(), oofem::RheoChainMaterialStatus::printOutputAt(), oofem::TrabBone3DStatus::printOutputAt(), oofem::PlasticMaterialStatus::printOutputAt(), oofem::TransportMaterialStatus::printOutputAt(), oofem::Beam3d::printOutputAt(), oofem::StructuralMaterialStatus::printOutputAt(), oofem::Beam2d::printOutputAt(), oofem::TR_SHELL01::printOutputAt(), oofem::MPlasticMaterialStatus::printOutputAt(), oofem::DustMaterialStatus::printOutputAt(), oofem::IsotropicDamageMaterialStatus::printOutputAt(), oofem::MPlasticMaterial2Status::printOutputAt(), oofem::TrPlaneStrRot3d::printOutputAt(), oofem::CCTPlate3d::printOutputAt(), oofem::MDMStatus::printOutputAt(), oofem::ConcreteDPM2Status::printOutputAt(), oofem::HellmichMaterialStatus::printOutputAt(), oofem::StructuralEngngModel::printReactionForces(), oofem::NRSolver::printState(), oofem::StressVector::printYourself(), oofem::StrainVector::printYourself(), oofem::OctantRec::printYourself(), printYourself(), oofem::NonLinearDynamic::proceedStep(), oofem::TrabBone3D::projectOnYieldSurface(), pY(), oofem::Skyline::rbmodes(), oofem::NodalAveragingRecoveryModel::recoverValues(), oofem::ZZNodalRecoveryModel::recoverValues(), oofem::SPRNodalRecoveryModel::recoverValues(), oofem::LevelSetPCS::redistance(), oofem::EigenValueDynamic::restoreContext(), oofem::LinearStability::restoreContext(), oofem::StokesFlowVelocityHomogenization::rveGiveCharacteristicData(), oofem::PetscContext::scatterG2N(), oofem::LineSearchNM::search(), oofem::CylindricalALM::search(), oofem::RCM2MaterialStatus::setCharLength(), oofem::DeadWeight::setDeadWeighComponents(), oofem::ConcreteDPMStatus::setIPValue(), oofem::DustMaterial::setIPValue(), oofem::MDMStatus::setMicroplaneTempDamage(), oofem::MixedGradientPressureNeumann::setPrescribedDeviatoricGradientFromVoigt(), oofem::PrescribedGradient::setPrescribedGradientVoigt(), oofem::RCM2MaterialStatus::setTempMaxCrackStrain(), oofem::Shell7Base::setupInitialNodeDirectors(), oofem::LayeredCrossSection::setupLayerMidPlanes(), oofem::GaussIntegrationRule::SetUpPointsOn2DEmbeddedLine(), oofem::GaussIntegrationRule::SetUpPointsOnCube(), oofem::LobattoIntegrationRule::SetUpPointsOnLine(), oofem::GaussIntegrationRule::SetUpPointsOnLine(), oofem::GaussIntegrationRule::SetUpPointsOnSquare(), oofem::GaussIntegrationRule::SetUpPointsOnTetrahedra(), oofem::GaussIntegrationRule::SetUpPointsOnTriangle(), oofem::GaussIntegrationRule::SetUpPointsOnWedge(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem1D(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem2D(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem3D(), oofem::HuertaErrorEstimator::setupRefinedProblemProlog(), oofem::TriangleMesherInterface::simplifyPSLG(), oofem::FreemInterface::smoothNodalDensities(), oofem::SLEPcSolver::solve(), oofem::LDLTFactorization::solve(), oofem::GJacobi::solve(), oofem::SpoolesSolver::solve(), oofem::LineSearchNM::solve(), oofem::InverseIteration::solve(), oofem::SubspaceIteration::solve(), oofem::FETISolver::solve(), oofem::NRSolver::solve(), oofem::CylindricalALM::solve(), oofem::FloatMatrix::solveForRhs(), oofem::HuertaErrorEstimator::solveRefinedElementProblem(), oofem::HuertaErrorEstimator::solveRefinedPatchProblem(), oofem::DEIDynamic::solveYourselfAt(), oofem::NonStationaryTransportProblem::solveYourselfAt(), oofem::DIIDynamic::solveYourselfAt(), oofem::CBS::solveYourselfAt(), oofem::SUPG::solveYourselfAt(), oofem::NlDEIDynamic::solveYourselfAt(), oofem::StructuralMaterial::sortPrincDirAndValCloseTo(), oofem::SpatialLocalizerInterface::SpatialLocalizerI_BBoxContainsPoint(), oofem::Tr1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Tetrah1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::PlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Quad1PlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QTrPlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QTrPlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::LSpace::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Axisymm3d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TrPlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_CBS::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Truss1d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TrPlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::LTRSpace::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_SUPG2::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_SUPG::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::CemhydMat::storeWeightTemperatureProductVolume(), oofem::Concrete2::strsoft(), oofem::FEI3dTetLin::surfaceEvaldNdx(), oofem::FEI3dTetQuad::surfaceEvaldNdx(), oofem::FEI3dTrQuad::surfaceEvaldNdxi(), oofem::FEI3dHexaLin::surfaceEvalN(), oofem::FEI3dTetLin::surfaceEvalN(), oofem::FEI3dWedgeQuad::surfaceEvalN(), oofem::FEI3dWedgeLin::surfaceEvalN(), oofem::FEI3dTetQuad::surfaceEvalN(), oofem::FEI3dTrQuad::surfaceEvalN(), oofem::FEI3dHexaQuad::surfaceEvalN(), oofem::FEI3dHexaLin::surfaceEvalNormal(), oofem::FEI3dTetQuad::surfaceEvalNormal(), oofem::FEI3dHexaQuad::surfaceEvalNormal(), oofem::FEI3dTrQuad::surfaceGiveJacobianMatrixAt(), oofem::FEI3dHexaLin::surfaceLocal2global(), oofem::FEI3dTetLin::surfaceLocal2global(), oofem::FEI3dWedgeQuad::surfaceLocal2global(), oofem::FEI3dWedgeLin::surfaceLocal2global(), oofem::FEI3dHexaQuad::surfaceLocal2global(), oofem::EigenValueDynamic::terminate(), oofem::LinearStability::terminate(), oofem::OctantRec::testBoundingBox(), oofem::SkylineUnsym::times(), oofem::DynCompRow::times(), oofem::DynCompCol::times(), oofem::Skyline::times(), oofem::DIIDynamic::timesMtrx(), oofem::NonLinearDynamic::timesMtrx(), oofem::SkylineUnsym::timesT(), oofem::DynCompRow::timesT(), oofem::DynCompCol::timesT(), oofem::CompCol_ILUPreconditioner::trans_solve(), oofem::Line::transformIntoPolar(), oofem::MDM::transformStrainToPDC(), oofem::MDM::transformStressFromPDC(), oofem::Delaunay::triangulate(), oofem::FETISolver::unpackDirectionVector(), oofem::EngngModel::unpackDofManagers(), oofem::FETISolver::unpackGammas(), oofem::NonLinearStatic::unpackMigratingData(), oofem::NonLinearDynamic::unpackMigratingData(), oofem::FETISolver::unpackPPVector(), oofem::FETISolver::unpackResiduals(), oofem::NodalAveragingRecoveryModel::unpackSharedDofManData(), oofem::ZZNodalRecoveryModel::unpackSharedDofManData(), oofem::SPRNodalRecoveryModel::unpackSharedDofManData(), oofem::Subdivision::unpackSharedIrregulars(), oofem::FETISolver::unpackSolution(), oofem::DofDistributedPrimaryField::update(), oofem::PrescribedGradient::updateCoefficientMatrix(), oofem::NonLinearDynamic::updateComponent(), oofem::RCM2Material::updateCrackStatus(), oofem::WeakPeriodicbc::updateDirection(), oofem::NLTransientTransportProblem::updateDofUnknownsDictionary(), oofem::IncrementalLinearStatic::updateDofUnknownsDictionary(), oofem::SUPG::updateDofUnknownsDictionary_corrector(), oofem::HydratingHeMoMaterial::updateInternalState(), oofem::HydratingIsoHeatMaterial::updateInternalState(), oofem::LevelSetPCS::updatePosition(), oofem::NodalRecoveryModel::updateRegionRecoveredValues(), oofem::SUPG::updateSolutionVectors(), oofem::SUPG::updateSolutionVectors_predictor(), oofem::Tet1_3D_SUPG::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG_AXI::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG2_AXI::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG2::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG::updateStabilizationCoeffs(), oofem::Concrete2::updateStirrups(), oofem::LIBeam3dNL2::updateTempQuaternion(), oofem::LIBeam3dNL::updateTempTriad(), oofem::LIBeam3d2::updateTempTriad(), oofem::FastMarchingMethod::updateTrialValue(), oofem::TR1_2D_SUPG2_AXI::updateVolumePolygons(), oofem::TR1_2D_SUPG2::updateVolumePolygons(), oofem::M4Material::updateVolumetricStressTo(), oofem::DIIDynamic::updateYourself(), oofem::AdaptiveNonLinearStatic::updateYourself(), oofem::NonLinearDynamic::updateYourself(), oofem::Node::updateYourself(), oofem::XfemElementInterface::XfemElementInterface_prepareNodesForDelaunay(), oofem::ZZErrorEstimatorInterface::ZZErrorEstimatorI_computeElementContributions(), oofem::LWedge::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::QWedge::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::QTRSpace::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::RerShell::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::TR_SHELL01::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::CCTPlate::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::TR1_2D_SUPG2::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::ZZNodalRecoveryModelInterface::ZZNodalRecoveryMI_computeNNMatrix(), and oofem::ZZNodalRecoveryModelInterface::ZZNodalRecoveryMI_computeNValProduct().
| double oofem::FloatArray::at | ( | int | i | ) | const [inline] |
Coefficient access function.
Returns l-value of coefficient at given position of the receiver. Provides 1-based indexing access.
| i | Position of coefficient in array. |
Definition at line 133 of file flotarry.h.
References values.
| void oofem::FloatArray::beDifferenceOf | ( | const FloatArray & | a, |
| const FloatArray & | b | ||
| ) |
Sets receiver to be a - b.
| a | Array which receiver goes to. |
| b | Array which receiver comes from. |
Definition at line 282 of file flotarry.C.
References OOFEM_ERROR3, resize(), size, and values.
Referenced by oofem::NLTransientTransportProblem::assembleAlgorithmicPartOfRhs(), oofem::MixedGradientPressureDirichlet::computeDofTransformation(), oofem::Quad1MindlinShell3D::computeLCS(), oofem::LineSurfaceTension::computeLoadVector(), oofem::Quad1Mindlin::computeMidPlaneNormal(), oofem::CCTPlate::computeMidPlaneNormal(), oofem::Quad1MindlinShell3D::computeMidPlaneNormal(), oofem::TrabBone3D::computePlasStrainEnerDensity(), oofem::Line::computeProjection(), oofem::Line::computeTangentialDistanceToEnd(), oofem::IsotropicDamageMaterialStatus::computeWork(), oofem::RankineMatStatus::computeWork(), oofem::FEI3dLineLin::evaldNdx(), oofem::PrescribedGradient::give(), oofem::FE2FluidMaterial::giveDeviatoricPressureStiffness(), oofem::FE2FluidMaterial::giveDeviatoricStiffnessMatrix(), oofem::Truss3d::giveLocalCoordinateSystem(), oofem::M4Material::giveRealMicroplaneStressVector(), oofem::RCM2Material::giveRealPrincipalStressVector3d(), oofem::AbaqusUserMaterial::giveRealStressVector(), oofem::PerfectlyPlasticMaterial::giveRealStressVector(), oofem::RheoChainMaterial::giveRealStressVector(), oofem::PlasticMaterial::giveRealStressVector(), oofem::MisesMat::giveRealStressVectorComputedFromDefGrad(), oofem::MixedGradientPressureDirichlet::giveUnknown(), oofem::FEI3dTetQuad::global2local(), oofem::FEI3dLineLin::global2local(), oofem::FEI2dTrQuad::global2local(), oofem::FEI2dQuadQuad::global2local(), oofem::FEI3dHexaQuad::global2local(), oofem::ConcreteDPM2::performPlasticityReturn(), oofem::NRSolver::solve(), oofem::NRSolver2::solve(), oofem::FEI3dTetLin::surfaceEvalNormal(), oofem::Line::transformIntoPolar(), and oofem::FastMarchingMethod::updateTrialValue().
| void oofem::FloatArray::beDifferenceOf | ( | const FloatArray & | a, |
| const FloatArray & | b, | ||
| int | n | ||
| ) |
Sets receiver to be a - b, using only the first n entries.
| a | Array which receiver goes to. |
| b | Array which receiver comes from. |
| n | Only first n entries are taken. |
Definition at line 296 of file flotarry.C.
References OOFEM_ERROR3, resize(), size, and values.
| void oofem::FloatArray::beFullVectorForm | ( | const FloatMatrix & | aMatrix | ) |
Reciever will be a vector with 9 components formed from a 3x3 matrix.
Order of matrix components in vector: 11, 22, 33, 23, 13, 12, 32, 31, 21
| aMatrix | Matrix to transform. |
Definition at line 1016 of file flotarry.C.
References at(), oofem::FloatMatrix::at(), oofem::Matrix::giveNumberOfColumns(), OOFEM_ERROR, and resize().
| void oofem::FloatArray::beMaxOf | ( | const FloatArray & | a, |
| const FloatArray & | b | ||
| ) |
Sets receiver to maximum of a or b's respective elements.
| a | Array of size n. |
| b | Array of size n. |
Definition at line 246 of file flotarry.C.
References giveSize(), oofem::max(), OOFEM_ERROR3, resize(), size, and values.
Referenced by oofem::StokesFlowVelocityHomogenization::giveAreaOfRVE(), and oofem::SpatialLocalizerInterface::SpatialLocalizerI_giveBBox().
| void oofem::FloatArray::beMinOf | ( | const FloatArray & | a, |
| const FloatArray & | b | ||
| ) |
Sets receiver to be minimum of a or b's respective elements.
| a | Array of size n. |
| b | Array of size n. |
Definition at line 264 of file flotarry.C.
References giveSize(), oofem::min(), OOFEM_ERROR3, resize(), size, and values.
Referenced by oofem::StokesFlowVelocityHomogenization::giveAreaOfRVE(), and oofem::SpatialLocalizerInterface::SpatialLocalizerI_giveBBox().
| void oofem::FloatArray::beProductOf | ( | const FloatMatrix & | aMatrix, |
| const FloatArray & | anArray | ||
| ) |
Receiver becomes the result of the product of aMatrix and anArray.
Adjusts the size of receiver if necessary.
Definition at line 603 of file flotarry.C.
References at(), oofem::FloatMatrix::at(), oofem::Matrix::giveNumberOfColumns(), oofem::Matrix::giveNumberOfRows(), giveSize(), OOFEM_ERROR, resize(), and sum().
Referenced by oofem::NLTransientTransportProblem::assembleAlgorithmicPartOfRhs(), oofem::NonStationaryTransportProblem::assembleAlgorithmicPartOfRhs(), oofem::StationaryTransportProblem::assembleDirichletBcRhsVector(), oofem::NonStationaryTransportProblem::assembleDirichletBcRhsVector(), oofem::EngngModel::assembleExtrapolatedForces(), oofem::WeakPeriodicbc::assembleVector(), oofem::MixedGradientPressureNeumann::assembleVector(), oofem::MPlasticMaterial::closestPointReturn(), oofem::MPlasticMaterial2::closestPointReturn(), oofem::SUPGElement2::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG2::computeAdvectionTerm_MB(), oofem::SUPGElement2::computeAdvectionTerm_MC(), oofem::Quad1MindlinShell3D::computeBodyLoadVectorAt(), oofem::Shell7Base::computeBulkTangentMatrix(), oofem::Shell7Base::computeConvectiveMassForce(), oofem::RCSDEMaterial::computeCurrEquivStrain(), oofem::RCSDMaterial::computeCurrEquivStrain(), oofem::MazarsMaterial::computeDamageParam(), oofem::TR1_2D_SUPG_AXI::computeDeviatoricStrain(), oofem::SUPGElement2::computeDeviatoricStrain(), oofem::TR1_2D_SUPG_AXI::computeDiffusionDerivativeTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionDerivativeTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MB(), oofem::SUPGElement2::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MC(), oofem::Quad1MindlinShell3D::computeEdgeIpGlobalCoords(), oofem::MDM::computeEffectiveStress(), oofem::IDGMaterial::computeEquivalentStrain(), oofem::IsotropicDamageMaterial1::computeEquivalentStrain(), oofem::RankineMat::computeEta(), oofem::IsotropicDamageMaterial1::computeEta(), oofem::TransportElement::computeFlow(), oofem::Tr1Darcy::computeInternalForcesVector(), oofem::Tr1BubbleStokes::computeInternalForcesVector(), oofem::Tr21Stokes::computeInternalForcesVector(), oofem::Tet1BubbleStokes::computeInternalForcesVector(), oofem::Tet21Stokes::computeInternalForcesVector(), oofem::Line2SurfaceTension::computeLoadVector(), oofem::SurfaceTensionBoundaryCondition::computeLoadVectorFromElement(), oofem::GradDpElement::computeLocalStrainVector(), oofem::Shell7Base::computeMassMatrix(), oofem::GradDpElement::computeNonlocalCumPlasticStrain(), oofem::GradDpElement::computeNonlocalGradient(), oofem::PerfectlyPlasticMaterial::computePlasticStiffnessAt(), oofem::HTSelement::computePrescribedDisplacementLoadVectorAt(), oofem::StructuralElement::computePrescribedStrainLocalLoadVectorAt(), oofem::CBSElement::computePrescribedTermsI(), oofem::Shell7Base::computePressureForce(), oofem::Shell7Base::computePressureTangentMatrix(), oofem::HTSelement::computePsVectorAt(), oofem::Q4Axisymm::computeStrainVector(), oofem::L4Axisymm::computeStrainVector(), oofem::Axisymm3d::computeStrainVector(), oofem::TrPlaneStrRot::computeStrainVector(), oofem::LIBeam3d2::computeStrainVector(), oofem::StructuralElementEvaluator::computeStrainVector(), oofem::NLStructuralElement::computeStrainVector(), oofem::StructuralElement::computeStrainVector(), oofem::Line2SurfaceTension::computeTangent(), oofem::SurfaceTensionBoundaryCondition::computeTangentFromElement(), oofem::LIBeam3dNL2::computeTempCurv(), oofem::J2plasticMaterial::computeTrialStressIncrement(), oofem::PerfectlyPlasticMaterial::computeTrialStressIncrement(), oofem::MPlasticMaterial::computeTrialStressIncrement(), oofem::MPlasticMaterial2::computeTrialStressIncrement(), oofem::Tet1_3D_SUPG::computeUDotGradUMatrix(), oofem::TR21_2D_SUPG::computeUDotGradUMatrix(), oofem::Quad10_2D_SUPG::computeUDotGradUMatrix(), oofem::InterfaceElement3dTrLin::computeVolumeAround(), oofem::TrabBone3D::constructAnisoFtensor(), oofem::TrabBone3D::constructDerivativeOfPlasFlowDirec(), oofem::TrabBone3D::constructPlasFlowDirec(), oofem::drawIGAPatchDeformedGeometry(), oofem::Shell7Base::edgeEvalCovarBaseVectorsAt(), oofem::Quad1PlaneStrain::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::QTrPlaneStress2d::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::LSpace::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::QTrPlaneStrain::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::TrPlaneStrain::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::PlaneStress2d::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::TrPlaneStress2d::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::LTRSpace::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::HellmichMaterial::elasticCompliance(), oofem::HellmichMaterial::elasticStiffness(), oofem::TrabBone3D::evaluatePlasCriterion(), oofem::RotatingBoundary::give(), oofem::PrescribedGradient::give(), oofem::IsoInterfaceDamageMaterial::give2dInterfaceMaterialStiffnessMatrix(), oofem::IsoInterfaceDamageMaterial::give3dInterfaceMaterialStiffnessMatrix(), oofem::TrabBoneGrad3D::give3dMaterialStiffnessMatrix(), oofem::TrabBoneNL3D::give3dMaterialStiffnessMatrix(), oofem::TrabBone3D::give3dMaterialStiffnessMatrix(), oofem::SUPGElement::giveCharacteristicVector(), oofem::SUPGElement2::giveCharacteristicVector(), oofem::PlasticMaterial::giveConsistentStiffnessMatrix(), oofem::MaxwellChainMaterial::giveEigenStrainVector(), oofem::B3SolidMaterial::giveEigenStrainVector(), oofem::MPSMaterial::giveEigenStrainVector(), oofem::SUPG::giveElementCharacteristicVector(), oofem::Beam2d::giveEndForcesVector(), oofem::AnisotropicMassTransferMaterial::giveFluxVector(), oofem::Beam3d::giveInternalForcesVector(), oofem::Beam2d::giveInternalForcesVector(), oofem::LIBeam3dNL2::giveInternalForcesVector(), oofem::LIBeam3dNL::giveInternalForcesVector(), oofem::RerShell::giveLocalCoordinates(), oofem::TrPlaneStrRot3d::giveLocalCoordinates(), oofem::CCTPlate3d::giveLocalCoordinates(), oofem::GradDpElement::giveLocalInternalForcesVector(), oofem::IDNLMaterial::giveLocalNonlocalStiffnessContribution(), oofem::GradDpElement::giveNonlocalInternalForcesVector(), oofem::RCM2Material::giveRealPrincipalStressVector3d(), oofem::IDGMaterial::giveRealStressVector(), oofem::LsMasterMatGrad::giveRealStressVector(), oofem::LsMasterMat::giveRealStressVector(), oofem::TrabBoneNLEmbed::giveRealStressVector(), oofem::RCSDNLMaterial::giveRealStressVector(), oofem::LinearElasticMaterial::giveRealStressVector(), oofem::RCSDEMaterial::giveRealStressVector(), oofem::RCSDMaterial::giveRealStressVector(), oofem::PerfectlyPlasticMaterial::giveRealStressVector(), oofem::IsoInterfaceDamageMaterial::giveRealStressVector(), oofem::RheoChainMaterial::giveRealStressVector(), oofem::PlasticMaterial::giveRealStressVector(), oofem::IsotropicDamageMaterial::giveRealStressVector(), oofem::IDNLMaterial::giveRemoteNonlocalStiffnessContribution(), oofem::OrthotropicLinearElasticMaterial::giveThermalDilatationVector(), oofem::DofManager::giveUnknownVectorOfType(), oofem::Homogenize::herveZaoui(), oofem::Tet1_3D_SUPG::LS_PCS_computeF(), oofem::TR21_2D_SUPG::LS_PCS_computeF(), oofem::TrabBone3D::performPlasticityReturn(), oofem::ConcreteDPM::performRegularReturn(), oofem::ConcreteDPM2::performRegularReturn(), oofem::FETISolver::projection(), oofem::TrabBone3D::projectOnYieldSurface(), rotatedWith(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem1D(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem2D(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem3D(), oofem::FETISolver::solve(), oofem::HuertaErrorEstimator::solveRefinedElementProblem(), oofem::Line::transformIntoPolar(), oofem::StressStrainBaseVector::transformTo(), oofem::Shell7Base::transInitialCartesianToInitialContravar(), oofem::TransportElement::updateInternalState(), oofem::Tet1_3D_SUPG::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG2_AXI::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG2::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG::updateStabilizationCoeffs(), oofem::KelvinChainSolidMaterial::updateYourself(), oofem::MaxwellChainMaterial::updateYourself(), and oofem::ZZErrorEstimatorInterface::ZZErrorEstimatorI_computeElementContributions().
| void oofem::FloatArray::beReducedVectorForm | ( | const FloatMatrix & | aMatrix | ) |
Reciever will be a vector with 6 components formed from a 3x3 matrix.
Off-diagonals of the matrix are symmetrized. Order of matrix components in vector: 11, 22, 33, 23, 13, 12
| aMatrix | Matrix to transform. |
Definition at line 1031 of file flotarry.C.
References at(), oofem::FloatMatrix::at(), oofem::Matrix::giveNumberOfColumns(), OOFEM_ERROR, and resize().
Referenced by oofem::Shell7Base::computeStrainVector().
| void oofem::FloatArray::beScaled | ( | double | s, |
| const FloatArray & | b | ||
| ) |
Sets receiver to be
.
| s | Scaling factor. |
| b | Vector to be scaled. |
Definition at line 154 of file flotarry.C.
References resize(), size, and values.
Referenced by add(), oofem::MixedGradientPressureNeumann::assembleVector(), oofem::SimpleInterfaceMaterial::giveRealStressVector(), and oofem::FEI3dLineLin::local2global().
| void oofem::FloatArray::beSubArrayOf | ( | const FloatArray & | src, |
| const IntArray & | indx | ||
| ) |
Extract sub vector form src array and stores the result into receiver.
| src | source vector for sub vector |
| indx | Determines sub vector. Receiver size will be indx max value, and on i-th position of subVector will be src(indx->at(i)) value. |
Definition at line 311 of file flotarry.C.
References oofem::IntArray::giveSize(), OOFEM_ERROR, resize(), size, and values.
Referenced by oofem::RCM2Material::giveRealPrincipalStressVector3d().
| void oofem::FloatArray::beTProductOf | ( | const FloatMatrix & | aMatrix, |
| const FloatArray & | anArray | ||
| ) |
Receiver becomes the result of the product of aMatrix^T and anArray.
Adjusts the size of receiver if necessary.
Definition at line 629 of file flotarry.C.
References at(), oofem::FloatMatrix::at(), oofem::Matrix::giveNumberOfColumns(), oofem::Matrix::giveNumberOfRows(), giveSize(), OOFEM_ERROR, resize(), and sum().
Referenced by oofem::WeakPeriodicbc::assembleVector(), oofem::MixedGradientPressureNeumann::assembleVector(), oofem::MPlasticMaterial::closestPointReturn(), oofem::MPlasticMaterial2::closestPointReturn(), oofem::SUPGElement2::computeBCRhsTerm_MB(), oofem::SUPGElement2::computeBCRhsTerm_MC(), oofem::StructuralElement::computeBodyLoadVectorAt(), oofem::Shell7Base::computeBulkTangentMatrix(), oofem::Shell7Base::computeConvectiveMassForce(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MB(), oofem::SUPGElement2::computeDiffusionTerm_MB(), oofem::StructuralElement::computeEdgeLoadVectorAt(), oofem::PrescribedGradient::computeField(), oofem::Tr1Darcy::computeInternalForcesVector(), oofem::Tr1BubbleStokes::computeInternalForcesVector(), oofem::Tr21Stokes::computeInternalForcesVector(), oofem::Tet1BubbleStokes::computeInternalForcesVector(), oofem::Tet21Stokes::computeInternalForcesVector(), oofem::Quad1MindlinShell3D::computeLCS(), oofem::Line2SurfaceTension::computeLoadVector(), oofem::StructuralElement::computePointLoadVectorAt(), oofem::StructuralElement::computePrescribedStrainLocalLoadVectorAt(), oofem::Shell7Base::computePressureForce(), oofem::Shell7Base::computePressureTangentMatrix(), oofem::Shell7Base::computeSectionalForces(), oofem::Tr1BubbleStokes::computeStiffnessMatrix(), oofem::Tr21Stokes::computeStiffnessMatrix(), oofem::Tet1BubbleStokes::computeStiffnessMatrix(), oofem::Tet21Stokes::computeStiffnessMatrix(), oofem::StructuralElement::computeSurfaceLoadVectorAt(), oofem::Line2SurfaceTension::computeTangent(), oofem::LIBeam3dNL::computeTempCurv(), oofem::LIBeam3dNL2::computeTempCurv(), oofem::Shell7Base::computeTractionForce(), oofem::TrabBone3D::constructDerivativeOfPlasFlowDirec(), oofem::MPlasticMaterial::cuttingPlaneReturn(), oofem::MPlasticMaterial2::cuttingPlaneReturn(), oofem::VTKExportModule::exportPrimVarAs(), oofem::VTKXMLExportModule::exportPrimVarAs(), oofem::TrabBoneGrad3D::give3dKappaMatrix(), oofem::TrabBoneGrad3D::give3dMaterialStiffnessMatrix(), oofem::TrabBoneNL3D::give3dMaterialStiffnessMatrix(), oofem::TrabBone3D::give3dMaterialStiffnessMatrix(), oofem::MPlasticMaterial2::giveConsistentStiffnessMatrix(), oofem::MPlasticMaterial2::giveElastoPlasticStiffnessMatrix(), oofem::StructuralElementEvaluator::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector(), oofem::StructuralElement::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::StructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::TrabBoneNL3D::giveRemoteNonlocalStiffnessContribution(), oofem::IDNLMaterial::giveRemoteNonlocalStiffnessContribution(), oofem::MixedGradientPressureNeumann::integrateVolTangent(), oofem::Tet1_3D_SUPG::LS_PCS_computeF(), oofem::TR21_2D_SUPG::LS_PCS_computeF(), oofem::FETISolver::projection(), rotatedWith(), and oofem::FETISolver::solve().
| void oofem::FloatArray::beVectorProductOf | ( | const FloatArray & | v1, |
| const FloatArray & | v2 | ||
| ) |
Computes vector product (or cross product) of vectors given as parameters,
, and stores the result into receiver.
| v1 | First vector in the product. |
| v2 | Second vector in the product. |
Definition at line 361 of file flotarry.C.
References at(), giveSize(), OOFEM_ERROR, and resize().
Referenced by oofem::FloatMatrix::beLocalCoordSys(), oofem::Tr2Shell7::computeAreaAround(), oofem::Shell7Base::computeAreaAround(), oofem::Tet1_3D_SUPG::computeCriticalTimeStep(), oofem::RerShell::computeGtoLRotationMatrix(), oofem::CCTPlate3d::computeGtoLRotationMatrix(), oofem::Quad1MindlinShell3D::computeLCS(), oofem::QSpace::computeLoadLSToLRotationMatrix(), oofem::LSpace::computeLoadLSToLRotationMatrix(), oofem::Quad1Mindlin::computeMidPlaneNormal(), oofem::Quad1MindlinShell3D::computeMidPlaneNormal(), oofem::CCTPlate::computeMidPlaneNormal(), oofem::Shell7Base::computePressureForceAt(), oofem::Shell7Base::computePressureTangentMatrix(), oofem::LIBeam3dNL2::computeTempCurv(), oofem::Shell7Base::computeThicknessMappingCoeff(), oofem::Shell7Base::computeTractionForce(), oofem::Tr2Shell7::computeVolumeAround(), oofem::Tr2Shell7::computeVolumeAroundLayer(), oofem::Shell7Base::computeVolumeAroundLayer(), oofem::LSpace::drawTriad(), oofem::CohesiveSurface3d::evaluateLocalCoordinateSystem(), oofem::InterfaceElem1d::evaluateLocalCoordinateSystem(), oofem::OrthotropicLinearElasticMaterial::giveTensorRotationMatrix(), oofem::MicroplaneMaterial::initializeData(), oofem::FEI3dTetLin::surfaceEvalNormal(), oofem::FEI3dHexaLin::surfaceEvalNormal(), oofem::FEI3dTrQuad::surfaceEvalNormal(), oofem::FEI3dTetQuad::surfaceEvalNormal(), oofem::FEI3dHexaQuad::surfaceEvalNormal(), and oofem::FEI3dTrQuad::surfaceGiveJacobianMatrixAt().
| void oofem::FloatArray::checkBounds | ( | int | i | ) | const |
Checks size of receiver towards requested bounds.
Current implementation will call exit(1), if dimension mismatch found.
| i | Required size of receiver. |
| void oofem::FloatArray::checkSizeTowards | ( | const IntArray & | loc | ) |
Checks size of receiver towards values stored in loc array.
Expands the receiver if loc points to coefficients beyond the size of receiver.
| loc | Array with indices. |
Definition at line 492 of file flotarry.C.
References oofem::IntArray::at(), oofem::IntArray::giveSize(), oofem::max(), resize(), and size.
| double oofem::FloatArray::computeNorm | ( | ) | const |
Computes the norm (or length) of the vector.
Definition at line 727 of file flotarry.C.
References computeSquaredNorm().
Referenced by oofem::MMALeastSquareProjection::__init(), oofem::MixedGradientPressureNeumann::assembleVector(), oofem::MPlasticMaterial::closestPointReturn(), oofem::MPlasticMaterial2::closestPointReturn(), oofem::IDNLMaterial::computeAngleAndSigmaRatio(), oofem::Tr2Shell7::computeAreaAround(), oofem::Shell7Base::computeAreaAround(), oofem::ConcreteDPM2::computeDeltaPlasticStrainNormCompression(), oofem::ConcreteDPM2::computeDeltaPlasticStrainNormTension(), oofem::Line2SurfaceTension::computeLoadVector(), oofem::LineSurfaceTension::computeLoadVector(), oofem::LIBeam3d2::computeRotMtrx(), oofem::LIBeam3dNL::computeRotMtrx(), oofem::LIBeam3dNL2::computeRotMtrx(), oofem::IDNLMaterial::computeStressBasedWeight(), oofem::Line2SurfaceTension::computeTangent(), oofem::Line::computeTangentialDistanceToEnd(), oofem::Shell7Base::computeThicknessMappingCoeff(), oofem::Shell7Base::edgeComputeLengthAround(), oofem::FEI2dTrQuad::edgeEvaldNds(), oofem::HuertaRemeshingCriteria::estimateMeshDensities(), oofem::NonlinearMassTransferMaterial::giveCharacteristicMatrix(), oofem::FE2FluidMaterial::giveDeviatoricPressureStiffness(), oofem::PolylineNonlocalBarrier::giveDistancePointLine(), oofem::ScalarErrorIndicator::giveElementError(), oofem::NonlinearMassTransferMaterial::giveFluxVector(), oofem::PlasticMaterial::giveRealStressVector(), oofem::OrthotropicLinearElasticMaterial::giveTensorRotationMatrix(), oofem::FE2FluidMaterial::giveVolumetricDeviatoricStiffness(), oofem::FEI3dTetQuad::global2local(), oofem::FEI2dTrQuad::global2local(), oofem::FEI2dQuadQuad::global2local(), oofem::FEI3dHexaQuad::global2local(), oofem::PetscContext::localNorm(), oofem::Tet1_3D_SUPG::LS_PCS_computeF(), oofem::TR21_2D_SUPG::LS_PCS_computeF(), oofem::PetscContext::naturalNorm(), normalize(), oofem::TriangleMesherInterface::simplifyPSLG(), oofem::NLTransientTransportProblem::solveYourselfAt(), oofem::SUPG::solveYourselfAt(), oofem::LineSurfaceTension::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::FEI3dTrQuad::surfaceEvalNormal(), oofem::FEI3dTetQuad::surfaceEvalNormal(), oofem::Line::transformIntoPolar(), oofem::TR1_2D_SUPG2_AXI::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG2::updateStabilizationCoeffs(), and oofem::Quad10_2D_SUPG::updateStabilizationCoeffs().
| double oofem::FloatArray::computeSquaredNorm | ( | ) | const |
Computes the square of the norm.
Definition at line 733 of file flotarry.C.
Referenced by oofem::SurfaceTensionBoundaryCondition::assembleVector(), oofem::WeakPeriodicbc::assembleVector(), oofem::MixedGradientPressureNeumann::assembleVector(), oofem::EngngModel::assembleVectorFromDofManagers(), oofem::EngngModel::assembleVectorFromElements(), oofem::NRSolver::checkConvergence(), oofem::CylindricalALM::checkConvergence(), oofem::CylindricalALM::computeDeltaLambda(), oofem::QSpace::computeLoadLSToLRotationMatrix(), oofem::LSpace::computeLoadLSToLRotationMatrix(), computeNorm(), oofem::LIBeam3dNL2::computeTempCurv(), oofem::CylindricalALM::do_lineSearch(), oofem::FEI3dLineLin::evaldNdx(), oofem::PolylineNonlocalBarrier::giveDistancePointLine(), oofem::FEI3dLineLin::global2local(), oofem::FETISolver::solve(), oofem::NRSolver::solve(), oofem::NRSolver2::solve(), oofem::CylindricalALM::solve(), oofem::HuertaErrorEstimator::solveRefinedElementProblem(), oofem::SUPG::solveYourselfAt(), and oofem::ZZErrorEstimatorInterface::ZZErrorEstimatorI_computeElementContributions().
| bool oofem::FloatArray::containsOnlyZeroes | ( | ) | const |
Returns nonzero if all coefficients of the receiver are 0, else returns zero.
Definition at line 583 of file flotarry.C.
Referenced by oofem::StationaryTransportProblem::assembleDirichletBcRhsVector(), oofem::NonStationaryTransportProblem::assembleDirichletBcRhsVector(), oofem::HTSelement::computePrescribedDisplacementLoadVectorAt(), oofem::ConcreteDPM2::computeSecantStiffness(), oofem::HellmichMaterial::elasticCompliance(), oofem::HellmichMaterial::elasticStiffness(), oofem::RCM2Material::giveRealPrincipalStressVector3d(), and oofem::CompoDamageMatStatus::printOutputAt().
| void oofem::FloatArray::copySubVector | ( | const FloatArray & | src, |
| int | si | ||
| ) |
Copy the given vector as sub-vector to receiver.
The sub-vector values will be set to receivers values starting at at positions (si,...,si+src.size). The size of receiver will be adjusted, if necessary.
| src | Sub-vector to be added |
| si | Determines the position (receiver's 1-based index) of first src value to be added. |
Definition at line 763 of file flotarry.C.
References at(), giveSize(), and resize().
Referenced by oofem::ActiveDof::computeDofTransformation(), oofem::SlaveDof::computeDofTransformation(), oofem::RVEStokesFlow::giveIPValue(), oofem::ActiveDof::giveUnknowns(), and oofem::SlaveDof::giveUnknowns().
| double oofem::FloatArray::distance | ( | const FloatArray & | x | ) | const |
Computes the distance between position represented by receiver and position given as parameter.
| x | Coordinate to calculate distance from. |
Definition at line 412 of file flotarry.C.
References distance_square().
Referenced by oofem::MMAContainingElementProjection::__init(), oofem::MMALeastSquareProjection::__init(), oofem::Triangle::computeBarycentrCoor(), oofem::Line::computeDistanceTo(), oofem::Circle::computeDistanceTo(), oofem::LinearEdgeLoad::computeNArray(), oofem::MeshQualityErrorEstimator::computeTriangleRadiusError(), oofem::TrabBoneNL::computeWeightFunction(), oofem::TrabBoneNLEmbed::computeWeightFunction(), oofem::MazarsNLMaterial::computeWeightFunction(), oofem::RCSDNLMaterial::computeWeightFunction(), oofem::TrabBoneNL3D::computeWeightFunction(), oofem::MDM::computeWeightFunction(), oofem::NonlocalMaterialExtensionInterface::computeWeightFunction(), oofem::LEPlic::doCellDLS(), oofem::Triangle::getRadiusOfCircumCircle(), oofem::DummySpatialLocalizer::giveAllElementsWithIpWithinBox(), oofem::DummySpatialLocalizer::giveAllNodesWithinBox(), oofem::FEI3dTetQuad::giveCharacteristicLength(), oofem::FEI3dHexaQuad::giveCharacteristicLength(), oofem::FEI2dQuadQuad::giveCharacteristicLength(), oofem::DummySpatialLocalizer::giveClosestIP(), oofem::OctreeSpatialLocalizer::giveClosestIP(), oofem::OctreeSpatialLocalizer::giveClosestIPWithinOctant(), oofem::OctreeSpatialLocalizer::giveElementClosestToPoint(), oofem::OctreeSpatialLocalizer::giveElementsWithIPWithinBox(), oofem::FEI3dLineLin::giveLength(), oofem::OctreeSpatialLocalizer::giveNodesWithinBox(), oofem::Circle::intersects(), oofem::Delaunay::isInsideCC(), oofem::Circle::isOutside(), oofem::FreemInterface::smoothNodalDensities(), oofem::SpatialLocalizerInterface::SpatialLocalizerI_giveClosestPoint(), oofem::Quad1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Tr1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Line2SurfaceTension::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Tetrah1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QBrick1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Brick1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::PlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Quad1PlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QTrPlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QTrPlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::LSpace::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Line2BoundaryElement::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Axisymm3d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TrPlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_CBS::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Truss1d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TrPlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::LTRSpace::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Tr1BubbleStokes::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_SUPG2::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_SUPG::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Tr21Stokes::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Tet1BubbleStokes::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Tet21Stokes::SpatialLocalizerI_giveDistanceFromParametricCenter(), and oofem::FastMarchingMethod::updateTrialValue().
| double oofem::FloatArray::distance | ( | const FloatArray * | x | ) | const [inline] |
Definition at line 324 of file flotarry.h.
References distance().
Referenced by distance().
| double oofem::FloatArray::distance_square | ( | const FloatArray & | x | ) | const |
Computes the square of distance between position represented by receiver and position given as parameter.
| x | Coordinate to calculate squared distance from. |
Definition at line 418 of file flotarry.C.
References oofem::min().
Referenced by distance(), oofem::EIPrimaryUnknownMapper::evaluateAt(), oofem::Subdivision::RS_Tetra::evaluateLongestEdge(), and oofem::FEI2dLineQuad::global2local().
| double oofem::FloatArray::dotProduct | ( | const FloatArray & | x | ) | const |
Computes the dot product (or inner product) of receiver and argument.
| x | Vector to contract to receiver. |
Definition at line 376 of file flotarry.C.
References OOFEM_ERROR3, size, and values.
Referenced by oofem::MPlasticMaterial::closestPointReturn(), oofem::Shell7Base::computeConvectiveMassForce(), oofem::Tet1_3D_SUPG::computeCriticalTimeStep(), oofem::CylindricalALM::computeDeltaLambda(), oofem::IDGMaterial::computeEquivalentStrain(), oofem::IsotropicDamageMaterial1::computeEquivalentStrain(), oofem::IsotropicDamageMaterial1::computeEta(), oofem::MixedGradientPressureNeumann::computeFields(), oofem::Quad10_2D_SUPG::computeGradUMatrix(), oofem::Tr1BubbleStokes::computeInternalForcesVector(), oofem::Tr21Stokes::computeInternalForcesVector(), oofem::Tet1BubbleStokes::computeInternalForcesVector(), oofem::Tet21Stokes::computeInternalForcesVector(), oofem::GradDpElement::computeLocalStrainVector(), oofem::Shell7Base::computeMassMatrix(), oofem::Shell7Base::computeMassMatrixNum(), oofem::TrabBone3D::computePlasStrainEnerDensity(), oofem::Shell7Base::computePressureForceAt(), oofem::L4Axisymm::computeStrainVector(), oofem::Axisymm3d::computeStrainVector(), oofem::NLStructuralElement::computeStrainVector(), oofem::Line::computeTangentialDistanceToEnd(), oofem::Shell7Base::computeThicknessMappingCoeff(), oofem::Tr2Shell7::computeVolumeAround(), oofem::Tr2Shell7::computeVolumeAroundLayer(), oofem::Shell7Base::computeVolumeAroundLayer(), oofem::IsotropicDamageMaterialStatus::computeWork(), oofem::RankineMatStatus::computeWork(), oofem::TrabBone3D::constructDerivativeOfPlasFlowDirec(), oofem::TrabBone3D::constructPlasFlowDirec(), oofem::CylindricalALM::do_lineSearch(), oofem::LSpace::drawTriad(), oofem::Truss1d::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::TrabBone3D::evaluatePlasCriterion(), oofem::PlasticMaterial::giveConsistentStiffnessMatrix(), oofem::Shell7Base::giveCoordTransMatrix(), oofem::PolylineNonlocalBarrier::giveDistancePointLine(), oofem::Shell7Base::giveDualBase(), oofem::Element::giveLenghtInDir(), oofem::TrabBoneNLEmbed::giveRealStressVector(), oofem::SimpleInterfaceMaterial::giveRealStressVector(), oofem::SlaveDof::giveUnknown(), oofem::FEI3dLineLin::global2local(), oofem::PetscContext::localDotProduct(), oofem::Tet1_3D_SUPG::LS_PCS_computeF(), oofem::TR21_2D_SUPG::LS_PCS_computeF(), oofem::TR21_2D_SUPG::LS_PCS_computeS(), oofem::TR21_2D_SUPG::LS_PCS_computeVOFFractions(), oofem::PetscContext::naturalDotProduct(), oofem::TrabBone3D::projectOnYieldSurface(), oofem::InverseIteration::solve(), oofem::FETISolver::solve(), oofem::CylindricalALM::solve(), oofem::HuertaErrorEstimator::solveRefinedElementProblem(), oofem::LevelSetPCS::updatePosition(), oofem::FastMarchingMethod::updateTrialValue(), oofem::ConcreteDPMStatus::updateYourself(), and oofem::ZZErrorEstimatorInterface::ZZErrorEstimatorI_computeElementContributions().
| double oofem::FloatArray::dotProduct | ( | const FloatArray & | x, |
| int | size | ||
| ) | const |
Computes the dot product (or inner product) of receiver and argument.
| x | Vector to contract to receiver. |
| size | Number of elements to contract. May not be larger than |
Definition at line 394 of file flotarry.C.
References OOFEM_ERROR3, size, and values.
| int oofem::FloatArray::givePackSize | ( | CommunicationBuffer & | buff | ) | const |
Definition at line 863 of file flotarry.C.
References oofem::CommunicationBuffer::givePackSize(), and size.
Referenced by oofem::RCSDNLMaterial::estimatePackSize().
| double* oofem::FloatArray::givePointer | ( | ) | const [inline] |
Gives the pointer to the raw data, breaking encapsulation.
Definition at line 379 of file flotarry.h.
References values.
Referenced by oofem::PetscContext::accumulate(), oofem::EngngModel::assembleVector(), oofem::FloatMatrix::beInverseOf(), oofem::NRSolver::checkConvergence(), oofem::FloatMatrix::computeNorm(), oofem::FloatMatrix::computeReciprocalCondition(), oofem::FloatMatrix::copyColumn(), oofem::AbaqusUserMaterial::giveRealStressVector(), oofem::StressStrainBaseVector::operator=(), oofem::HellmichMaterial::plotReturn(), oofem::PetscContext::scatterL2G(), oofem::PetscContext::scatterN2G(), oofem::FloatMatrix::setColumn(), oofem::SpoolesSolver::solve(), oofem::DSSMatrix::solve(), oofem::FloatMatrix::solveForRhs(), oofem::SpoolesSparseMtrx::times(), oofem::PetscSparseMtrx::times(), oofem::SpoolesSparseMtrx::timesT(), and oofem::PetscSparseMtrx::timesT().
| int oofem::FloatArray::giveSize | ( | ) | const [inline] |
Returns the size of receiver.
Definition at line 186 of file flotarry.h.
References size.
Referenced by oofem::PetscContext::accumulate(), addSubVector(), oofem::FloatMatrix::addSubVectorCol(), oofem::FloatMatrix::addSubVectorRow(), oofem::SymmetryBarrier::applyConstraint(), assemble(), oofem::EngngModel::assembleVector(), oofem::FloatMatrix::beDyadicProductOf(), oofem::FloatMatrix::beLocalCoordSys(), oofem::FloatMatrix::beMatrixForm(), beMaxOf(), beMinOf(), oofem::FloatMatrix::beNMatrixOf(), beProductOf(), beTProductOf(), beVectorProductOf(), oofem::OctreeSpatialLocalizer::buildOctreeDataStructure(), oofem::PolylineNonlocalBarrier::calculateMinimumDistanceFromBoundary(), oofem::LumpedMassElement::checkConsistency(), oofem::HangingNode::checkConsistency(), oofem::NRSolver::checkConvergence(), oofem::MPlasticMaterial::closestPointReturn(), oofem::MPlasticMaterial2::closestPointReturn(), oofem::MPlasticMaterial::computeAlgorithmicModuli(), oofem::ConcreteDPM2::computeAlpha(), oofem::TR1_2D_SUPG_AXI::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeBCRhsTerm_MB(), oofem::SUPGElement2::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG2::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeBCRhsTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeBCRhsTerm_MC(), oofem::SUPGElement2::computeBCRhsTerm_MC(), oofem::TR1_2D_SUPG::computeBCRhsTerm_MC(), oofem::TrPlaneStrRot::computeBodyLoadVectorAt(), oofem::CCTPlate::computeBodyLoadVectorAt(), oofem::TrPlaneStrRot3d::computeBodyLoadVectorAt(), oofem::CCTPlate3d::computeBodyLoadVectorAt(), oofem::Quad1Mindlin::computeBodyLoadVectorAt(), oofem::Tr1BubbleStokes::computeBodyLoadVectorAt(), oofem::Tr21Stokes::computeBodyLoadVectorAt(), oofem::Tet1BubbleStokes::computeBodyLoadVectorAt(), oofem::RerShell::computeBodyLoadVectorAt(), oofem::Tet21Stokes::computeBodyLoadVectorAt(), oofem::Quad1MindlinShell3D::computeBodyLoadVectorAt(), oofem::StructuralElement::computeBodyLoadVectorAt(), oofem::Element::computeBoundaryVectorOf(), oofem::Triangle::computeCenterOfCircumCircle(), oofem::KelvinChainMaterial::computeCharCoefficients(), oofem::MaxwellChainMaterial::computeCharCoefficients(), oofem::B3SolidMaterial::computeCharCoefficients(), oofem::TR1_2D_CBS::computeConvectionTermsI(), oofem::ConcreteDPM::computeDCosThetaDStress(), oofem::ConcreteDPM::computeDDRhoDDStress(), oofem::ConcreteDPM2::computeDDRhoDDStress(), oofem::NewtonianFluidMaterial::computeDeviatoricStressVector(), oofem::BinghamFluidMaterial2::computeDeviatoricStressVector(), oofem::TR1_2D_CBS::computeDiffusionTermsI(), oofem::RheoChainMaterial::computeDiscreteRelaxationFunction(), oofem::ActiveDof::computeDofTransformation(), oofem::SlaveDof::computeDofTransformation(), oofem::MixedGradientPressureDirichlet::computeDofTransformation(), oofem::ConcreteDPM::computeDuctilityMeasureDamage(), oofem::Tet1BubbleStokes::computeEdgeBCSubVectorAt(), oofem::TransportElement::computeFlow(), oofem::HTSelement::computeForceLoadVector(), oofem::PlasticMaterial::ComputeGradientVector(), oofem::MPlasticMaterial::computeGradientVector(), oofem::LIBeam2dNL::computeInitialStressMatrix(), oofem::TransportElement::computeInternalSourceRhsVectorAt(), oofem::Line::computeIntersectionPoints(), oofem::J2Mat::computeKGradientVector(), oofem::Beam3d::computeLocalForceLoadVector(), oofem::Beam2d::computeLocalForceLoadVector(), oofem::StructuralElement::computeLocalForceLoadVector(), oofem::GradDpElement::computeLocalStrainVector(), oofem::GradDpElement::computeLocNonForceLoadVector(), oofem::DofManager::computeM2LTransformation(), oofem::StrainVector::computeMaxPrincipalDir(), oofem::LinearEdgeLoad::computeNArray(), oofem::TransportElement::computeNmatrixAt(), oofem::Beam2d::computePrescribedStrainLocalLoadVectorAt(), oofem::Beam3d::computePrescribedStrainLocalLoadVectorAt(), oofem::StructuralElement::computePrescribedStrainLocalLoadVectorAt(), oofem::StrainVector::computePrincipalValDir(), oofem::StressVector::computePrincipalValDir(), oofem::StructuralMaterial::computePrincipalValDir(), oofem::StrainVector::computePrincipalValues(), oofem::StressVector::computePrincipalValues(), oofem::StructuralMaterial::computePrincipalValues(), oofem::J2MPlasticMaterial::computeReducedGradientMatrix(), oofem::J2plasticMaterial::computeReducedGradientMatrix(), oofem::J2Mat::computeReducedHardeningVarsLamGradient(), oofem::J2Mat::computeReducedSSGradientMatrix(), oofem::PlasticMaterial::ComputeResidualVector(), oofem::MPlasticMaterial::computeResidualVector(), oofem::MPlasticMaterial2::computeResidualVector(), oofem::LIBeam3d2::computeRotMtrx(), oofem::LIBeam3dNL::computeRotMtrx(), oofem::LIBeam3dNL2::computeRotMtrx(), oofem::B3Material::computeShrinkageStrainVector(), oofem::B3SolidMaterial::computeShrinkageStrainVector(), oofem::LIBeam3d2::computeSMtrx(), oofem::LIBeam3dNL::computeSMtrx(), oofem::LIBeam3dNL2::computeSMtrx(), oofem::NLStructuralElement::computeStiffnessMatrix(), oofem::GradDpElement::computeStiffnessMatrix_ku(), oofem::GradDpElement::computeStiffnessMatrix_uk(), oofem::GradDpElement::computeStiffnessMatrix_uu(), oofem::NLStructuralElement::computeStiffnessMatrix_withIRulesAsSubcells(), oofem::J2Mat::computeStrainHardeningVarsIncrement(), oofem::LIBeam3d2::computeStrainVector(), oofem::GradDpElement::computeStrainVector(), oofem::NLStructuralElement::computeStrainVector(), oofem::SimpleCrossSection::computeStressIndependentStrainVector(), oofem::RheoChainMaterial::computeStressIndependentStrainVector(), oofem::StructuralMaterial::computeStressIndependentStrainVector(), oofem::HellmichMaterial::computeStressIndependentStrainVector(), oofem::J2MPlasticMaterial::computeStressSpaceHardeningVarsReducedGradient(), oofem::J2plasticMaterial::ComputeStressSpaceHardeningVarsReducedGradient(), oofem::GradDpElement::computeStressVector(), oofem::Tet21Stokes::computeSurfaceBCSubVectorAt(), oofem::Tet1BubbleStokes::computeSurfBCSubVectorAt(), oofem::MixedGradientPressureDirichlet::computeTangents(), oofem::MixedGradientPressureNeumann::computeTangents(), oofem::LIBeam3dNL::computeTempCurv(), oofem::LIBeam3dNL2::computeTempCurv(), oofem::PerfectlyPlasticMaterial::computeTrialStressIncrement(), oofem::TF1::computeValueAt(), oofem::BoundaryLoad::computeValueAt(), oofem::PlaneStress2dXfem::computeVectorOf(), oofem::Element::computeVectorOf(), oofem::Element::computeVectorOfPrescribed(), oofem::StructuralMaterial::computeVonMisesStress(), oofem::StructuralElement::condense(), copySubVector(), oofem::FloatMatrix::copySubVectorRow(), oofem::CylindricalALM::do_lineSearch(), oofem::GPExportModule::doOutput(), oofem::HOMExportModule::doOutput(), oofem::VTKExportModule::doOutput(), oofem::VTKXMLExportModule::doOutput(), oofem::dot(), oofem::TrianglePatch::drawWD(), oofem::Concrete2::dtp2(), oofem::Concrete2::dtp3(), oofem::DarcyFlow::DumpMatricesToFile(), oofem::FEI3dWedgeQuad::edgeLocal2global(), oofem::FEI3dWedgeLin::edgeLocal2global(), oofem::FEI3dTetQuad::edgeLocal2global(), oofem::FEI3dTrQuad::edgeLocal2global(), oofem::TransportElement::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::Line2SurfaceTension::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Line2BoundaryElement::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::LineSurfaceTension::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tr1BubbleStokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tr21Stokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tet1BubbleStokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tet21Stokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::SmoothedNodalInternalVariableField::evaluateAt(), oofem::DofManValueField::evaluateAt(), oofem::VTKXMLExportModule::exportCellVarAs(), oofem::VTKExportModule::exportCellVars(), oofem::POIExportModule::exportIntVarAs(), oofem::VTKExportModule::exportIntVarAs(), oofem::VTKXMLExportModule::exportIntVarAs(), oofem::POIExportModule::exportPrimVarAs(), oofem::VTKExportModule::exportPrimVarAs(), oofem::FloatMatrix::FloatMatrix(), oofem::VTKExportModule::getDofManPrimaryVariable(), oofem::VTKXMLExportModule::getPrimaryVariable(), oofem::RotatingBoundary::give(), oofem::PrescribedGradient::give(), oofem::LSpace::giveCharacteristicLenght(), oofem::AbaqusUserMaterial::giveCharacteristicMatrix(), oofem::HellmichMaterial::giveCharacteristicMatrix(), oofem::HydratingHeMoMaterial::giveCharacteristicValue(), oofem::HydratingIsoHeatMaterial::giveCharacteristicValue(), oofem::OctantRec::giveChildContainingPoint(), oofem::PlasticMaterial::giveConsistentStiffnessMatrix(), oofem::Node::giveCoordinate(), oofem::NonStationaryTransportProblem::giveDeltaT(), oofem::StaggeredProblem::giveDeltaT(), oofem::IncrementalLinearStatic::giveDiscreteTime(), oofem::NonStationaryTransportProblem::giveDiscreteTime(), oofem::StaggeredProblem::giveDiscreteTime(), oofem::HellmichMaterial::giveEigenStrainVector(), oofem::KelvinChainSolidMaterial::giveEModulus(), oofem::KelvinChainMaterial::giveEModulus(), oofem::B3SolidMaterial::giveEModulus(), oofem::MPSMaterial::giveEModulus(), oofem::Beam3d::giveEndForcesVector(), oofem::RVEStokesFlow::giveFluxVector(), oofem::FiberedCrossSection::giveFullCharacteristicVector(), oofem::LayeredCrossSection::giveFullCharacteristicVector(), oofem::HeMoTKMaterial::giveHumidity(), oofem::PiecewiseLinFunction::giveInputRecordString(), oofem::LinearEdgeLoad::giveInputRecordString(), oofem::Load::giveInputRecordString(), oofem::PrescribedGradient::giveInputRecordString(), oofem::PointLoad::giveInputRecordString(), oofem::MixedGradientPressureDirichlet::giveInputRecordString(), oofem::MixedGradientPressureNeumann::giveInputRecordString(), oofem::FiberedCrossSection::GiveIntegrated3dBeamStress(), oofem::LayeredCrossSection::giveIntegrated3dShellStress(), oofem::Beam3d::giveInternalForcesVector(), oofem::Beam2d::giveInternalForcesVector(), oofem::StructuralElementEvaluator::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector(), oofem::StructuralElement::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::StructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::PlasticMaterial::giveIPValue(), oofem::PerfectlyPlasticMaterial::giveIPValue(), oofem::MPlasticMaterial::giveIPValue(), oofem::MPlasticMaterial2::giveIPValue(), oofem::StructuralMaterial::giveIPValue(), oofem::DruckerPragerPlasticitySM::giveIPValue(), oofem::HellmichMaterial::giveIPValue(), oofem::Element::giveLenghtInDir(), oofem::RerShell::giveLocalCoordinates(), oofem::TrPlaneStrRot3d::giveLocalCoordinates(), oofem::CCTPlate3d::giveLocalCoordinates(), oofem::GradDpElement::giveLocalInternalForcesVector(), oofem::TrabBoneNL3D::giveLocalNonlocalStiffnessContribution(), oofem::IDNLMaterial::giveLocalNonlocalStiffnessContribution(), oofem::NlIsoMoistureMaterial::giveMoistureCapacity(), oofem::NodalRecoveryModel::giveNodalVector(), oofem::GradDpElement::giveNonlocalInternalForcesVector(), oofem::NlIsoMoistureMaterial::givePermeability(), oofem::RCM2Material::giveRealPrincipalStressVector3d(), oofem::IDGMaterial::giveRealStressVector(), oofem::TrabBoneGrad3D::giveRealStressVector(), oofem::AbaqusUserMaterial::giveRealStressVector(), oofem::LinearElasticMaterial::giveRealStressVector(), oofem::RheoChainMaterial::giveRealStressVector(), oofem::PlasticMaterial::giveRealStressVector(), oofem::IsotropicDamageMaterial::giveRealStressVector(), oofem::SimpleCrossSection::giveReducedCharacteristicVector(), oofem::FiberedCrossSection::giveReducedCharacteristicVector(), oofem::LayeredCrossSection::giveReducedCharacteristicVector(), oofem::StructuralMaterial::giveReducedCharacteristicVector(), oofem::TrabBoneNL3D::giveRemoteNonlocalStiffnessContribution(), oofem::IDNLMaterial::giveRemoteNonlocalStiffnessContribution(), oofem::LayeredCrossSection::giveSlaveGaussPoint(), oofem::LayeredCrossSection::giveSlaveGaussPointNew(), oofem::StructuralMaterial::giveStressDependentPartOfStrainVector(), oofem::MixedGradientPressureDirichlet::giveUnknown(), oofem::ActiveDof::giveUnknowns(), oofem::SlaveDof::giveUnknowns(), oofem::Node::giveUpdatedCoordinates(), oofem::FEI3dTetQuad::global2local(), oofem::FEI2dTrQuad::global2local(), oofem::FEI2dQuadQuad::global2local(), oofem::FEI3dHexaQuad::global2local(), oofem::CompCol_ICPreconditioner::ICSolve(), oofem::DynCompRow::ILUPsolve(), oofem::DynCompRow::ILUPtrans_solve(), oofem::DynCompRow::ILUPYourself(), oofem::FiberedCrossSection::imposeStrainConstrainsOnGradient(), oofem::LayeredCrossSection::imposeStrainConstrainsOnGradient(), oofem::StructuralCrossSection::imposeStrainConstrainsOnGradient(), oofem::FiberedCrossSection::imposeStressConstrainsOnGradient(), oofem::LayeredCrossSection::imposeStressConstrainsOnGradient(), oofem::StructuralCrossSection::imposeStressConstrainsOnGradient(), oofem::HellmichMaterial::initAuxStatus(), oofem::MazarsMaterial::initDamaged(), oofem::FloatMatrix::initFromVector(), oofem::SlaveDof::initialize(), oofem::LevelSetPCS::initialize(), oofem::ConstantEdgeLoad::initializeFrom(), oofem::SlaveNode::initializeFrom(), oofem::LinearEdgeLoad::initializeFrom(), oofem::SymmetryBarrier::initializeFrom(), oofem::ConstantPressureLoad::initializeFrom(), oofem::BSplineInterpolation::initializeFrom(), oofem::ConstantSurfaceLoad::initializeFrom(), oofem::IncrementalLinearStatic::initializeFrom(), oofem::LoadBalancerMonitor::initializeFrom(), oofem::LayeredCrossSection::initializeFrom(), oofem::NlIsoMoistureMaterial::initializeFrom(), oofem::Load::initializeFrom(), oofem::OrthotropicLinearElasticMaterial::initializeFrom(), oofem::CemhydMat::initializeFrom(), oofem::WallClockLoadBalancerMonitor::initializeFrom(), oofem::CompoDamageMat::initializeFrom(), oofem::NRSolver::initializeFrom(), oofem::FiberedCrossSection::initializeFrom(), oofem::LevelSetPCS::initializeFrom(), oofem::Node::initializeFrom(), oofem::CylindricalALM::initializeFrom(), oofem::RCSDNLMaterialStatus::initTempStatus(), oofem::PlasticMaterialStatus::initTempStatus(), oofem::PerfectlyPlasticMaterialStatus::initTempStatus(), oofem::StructuralMaterialStatus::initTempStatus(), oofem::MPlasticMaterialStatus::initTempStatus(), oofem::MPlasticMaterial2Status::initTempStatus(), oofem::PlastData::initTempStatus(), oofem::Concrete2MaterialStatus::initTempStatus(), oofem::CreepData::initTempStatus(), oofem::MisesMatStatus::initTempStatus(), oofem::RankineMatStatus::initTempStatus(), oofem::OctreeSpatialLocalizer::insertElementIntoOctree(), oofem::PolylineNonlocalBarrier::isActivated(), oofem::FEI3dTetQuad::local2global(), oofem::FEI2dQuadQuad::local2global(), oofem::PetscContext::localDotProduct(), oofem::PetscContext::localNorm(), oofem::ls2fit(), oofem::TriangleMesherInterface::meshPSLG(), oofem::LTRSpace::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::TrPlaneStrain::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::Truss1d::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::TrPlaneStress2d::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::MDM::MMI_map(), oofem::operator*(), oofem::operator*=(), oofem::operator+(), oofem::operator+=(), oofem::operator-(), oofem::operator-=(), oofem::ConcreteDPM::performVertexReturn(), oofem::ConcreteDPM2::performVertexReturn(), oofem::HellmichMaterial::plotStressStrain(), oofem::FloatMatrix::plusDyadSymmUpper(), oofem::FloatMatrix::plusDyadUnsym(), oofem::RCSDNLMaterialStatus::printOutputAt(), oofem::TrabBoneNL3DStatus::printOutputAt(), oofem::FluidDynamicMaterialStatus::printOutputAt(), oofem::BinghamFluidMaterial2Status::printOutputAt(), oofem::RheoChainMaterialStatus::printOutputAt(), oofem::PlasticMaterialStatus::printOutputAt(), oofem::TransportMaterialStatus::printOutputAt(), oofem::StructuralMaterialStatus::printOutputAt(), oofem::Beam3d::printOutputAt(), oofem::Beam2d::printOutputAt(), oofem::MPlasticMaterialStatus::printOutputAt(), oofem::DustMaterialStatus::printOutputAt(), oofem::MPlasticMaterial2Status::printOutputAt(), oofem::MDMStatus::printOutputAt(), oofem::ConcreteDPM2Status::printOutputAt(), oofem::HellmichMaterialStatus::printOutputAt(), oofem::NRSolver::printState(), oofem::DynCompRow::printStatistics(), oofem::TrabBone3D::projectOnYieldSurface(), oofem::NodalAveragingRecoveryModel::recoverValues(), oofem::PetscContext::scatterL2G(), oofem::PetscContext::scatterN2G(), oofem::FloatMatrix::setColumn(), oofem::PrescribedGradient::setPrescribedGradientVoigt(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem1D(), oofem::HuertaErrorEstimator::setupRefinedProblemProlog(), oofem::TriangleMesherInterface::simplifyPSLG(), oofem::DiagPreconditioner::solve(), oofem::PetscSolver::solve(), oofem::SLEPcSolver::solve(), oofem::CompCol_ILUPreconditioner::solve(), oofem::LDLTFactorization::solve(), oofem::GJacobi::solve(), oofem::SpoolesSolver::solve(), oofem::LineSearchNM::solve(), oofem::IMLSolver::solve(), oofem::DSSMatrix::solve(), oofem::SubspaceIteration::solve(), oofem::FETISolver::solve(), oofem::NRSolver::solve(), oofem::NRSolver2::solve(), oofem::CylindricalALM::solve(), oofem::FloatMatrix::solveForRhs(), oofem::StructuralMaterial::sortPrincDirAndValCloseTo(), oofem::SpatialLocalizerInterface::SpatialLocalizerI_BBoxContainsPoint(), oofem::Tetrah1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::PlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Quad1PlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QTrPlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QTrPlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::LSpace::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Axisymm3d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TrPlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_CBS::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Truss1d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TrPlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::LTRSpace::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_SUPG2::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_SUPG::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::StressStrainBaseVector::StressStrainBaseVector(), subtract(), oofem::FEI3dWedgeQuad::surfaceLocal2global(), oofem::FEI3dWedgeLin::surfaceLocal2global(), oofem::FEI3dTrQuad::surfaceLocal2global(), oofem::FEI3dTetQuad::surfaceLocal2global(), oofem::OctantRec::testBoundingBox(), oofem::SkylineUnsym::times(), oofem::PetscSparseMtrx::times(), oofem::DynCompRow::times(), oofem::DynCompCol::times(), oofem::Skyline::times(), oofem::SymCompCol::times(), oofem::CompCol::times(), oofem::SkylineUnsym::timesT(), oofem::PetscSparseMtrx::timesT(), oofem::DynCompRow::timesT(), oofem::DynCompCol::timesT(), oofem::CompCol::timesT(), oofem::DiagPreconditioner::trans_solve(), oofem::CompCol_ILUPreconditioner::trans_solve(), oofem::HydratingHeMoMaterial::updateInternalState(), oofem::HydrationModel::updateInternalState(), oofem::NonLinearStatic::updateLoadVectors(), oofem::KelvinChainSolidMaterial::updateYourself(), oofem::KelvinChainMaterial::updateYourself(), oofem::MaxwellChainMaterial::updateYourself(), and oofem::ConcreteDPMStatus::updateYourself().
| void oofem::FloatArray::hardResize | ( | int | s | ) |
Resizes the size of the receiver to requested bounds.
Memory allocation always happens, more preferably use resize() function instead.
| s | New size. |
Definition at line 551 of file flotarry.C.
References allocatedSize, oofem::allocDouble(), oofem::freeDouble(), oofem::min(), OOFEM_FATAL2, size, and values.
| bool oofem::FloatArray::isEmpty | ( | ) | const [inline] |
Returns true if receiver is empty.
Definition at line 190 of file flotarry.h.
References size.
Referenced by oofem::HeMoTKMaterial::computeCapacityCoeff(), oofem::MazarsMaterial::computeDamageParam(), oofem::IDGMaterial::computeEquivalentStrain(), oofem::MazarsMaterial::computeEquivalentStrain(), oofem::IsotropicDamageMaterial1::computeEquivalentStrain(), oofem::IDGMaterial::computeEta(), oofem::IsotropicDamageMaterial1::computeEta(), oofem::TransportElement::computeInternalSourceRhsVectorAt(), oofem::J2MPlasticMaterial::computeJ2InvariantAt(), oofem::J2Mat::computeJ2InvariantAt(), oofem::StructuralMaterial::computeStressIndependentStrainVector(), oofem::HydrationModel::giveCharacteristicValue(), oofem::LinearEdgeLoad::initializeFrom(), oofem::HeMoTKMaterial::matcond1d(), oofem::HeMoTKMaterial::matcond2d(), oofem::HeMoTKMaterial::matcond3d(), oofem::NonLinearStatic::packMigratingData(), oofem::NonLinearDynamic::packMigratingData(), oofem::HellmichMaterialStatus::printOutputAt(), oofem::LinearStability::restoreContext(), oofem::HydratingHeMoMaterial::updateInternalState(), oofem::HydratingIsoHeatMaterial::updateInternalState(), oofem::NonLinearStatic::updateLoadVectors(), and oofem::AdaptiveNonLinearStatic::updateYourself().
| bool oofem::FloatArray::isNotEmpty | ( | ) | const [inline] |
Returns true if receiver is not empty.
Definition at line 188 of file flotarry.h.
References size.
Referenced by oofem::AdaptiveNonLinearStatic::adaptiveRemap(), oofem::EngngModel::assembleVectorFromDofManagers(), oofem::EngngModel::assembleVectorFromElements(), oofem::MDM::computeDamageOnPlane(), oofem::MPlasticMaterial::computeGradientVector(), oofem::TransportElement::computeInternalSourceRhsVectorAt(), oofem::GradDpElement::computeLocForceLoadVector(), oofem::J2MPlasticMaterial::computeStressGradientVector(), oofem::J2Mat::computeStressGradientVector(), oofem::LayeredCrossSection::computeStressIndependentStrainVector(), oofem::FiberedCrossSection::computeStressIndependentStrainVector(), oofem::StructuralMaterial::computeStressIndependentStrainVector(), oofem::J2MPlasticMaterial::computeYieldValueAt(), oofem::J2Mat::computeYieldValueAt(), oofem::TR_SHELL01::giveCharacteristicVector(), oofem::RheoChainMaterial::giveCharTime(), oofem::RheoChainMaterial::giveDiscreteTimes(), oofem::HellmichMaterial::giveEigenStrainVector(), oofem::Beam2d::giveEndForcesVector(), oofem::M4Material::giveRealMicroplaneStressVector(), oofem::LinearStatic::giveUnknownComponent(), oofem::AdaptiveNonLinearStatic::giveUnknownComponent(), oofem::CBS::giveUnknownComponent(), oofem::NonLinearStatic::giveUnknownComponent(), oofem::AdaptiveNonLinearStatic::initializeAdaptiveFrom(), oofem::RheoChainMaterialStatus::printOutputAt(), oofem::NonLinearStatic::proceedStep(), and oofem::NonLinearDynamic::proceedStep().
| void oofem::FloatArray::negated | ( | ) |
Switches the sign of every coefficient of receiver.
Definition at line 655 of file flotarry.C.
Referenced by oofem::NLTransientTransportProblem::assembleAlgorithmicPartOfRhs(), oofem::StationaryTransportProblem::assembleDirichletBcRhsVector(), oofem::NonStationaryTransportProblem::assembleDirichletBcRhsVector(), oofem::TransportElement::computeFlow(), oofem::Tr1Darcy::computeLoadVector(), oofem::HTSelement::computePrescribedDisplacementLoadVectorAt(), oofem::CBSElement::computePrescribedTermsI(), oofem::Shell7Base::computePressureTangentMatrix(), oofem::J2MPlasticMaterial::computeStressSpaceHardeningVars(), oofem::J2plasticMaterial::ComputeStressSpaceHardeningVars(), oofem::LEPlic::doCellDLS(), oofem::SUPG::giveElementCharacteristicVector(), oofem::NonlinearMassTransferMaterial::giveFluxVector(), oofem::AnisotropicMassTransferMaterial::giveFluxVector(), oofem::PerfectlyPlasticMaterial::giveRealStressVector(), oofem::ConcreteDPM::performRegularReturn(), oofem::ConcreteDPM2::performRegularReturn(), oofem::NonLinearStatic::proceedStep(), oofem::FETISolver::solve(), oofem::StokesFlow::solveYourselfAt(), and oofem::LinearStability::solveYourselfAt().
| double oofem::FloatArray::normalize | ( | ) |
Normalizes receiver.
Euclidean norm is used, after operation receiver will have this norm equal to 1.0.
Definition at line 715 of file flotarry.C.
References computeNorm(), oofem::norm(), OOFEM_ERROR, and times().
Referenced by oofem::Tet1_3D_SUPG::computeCriticalTimeStep(), oofem::RerShell::computeGtoLRotationMatrix(), oofem::InterfaceElem2dQuad::computeGtoLRotationMatrix(), oofem::CCTPlate3d::computeGtoLRotationMatrix(), oofem::Quad1MindlinShell3D::computeLCS(), oofem::QSpace::computeLoadLSToLRotationMatrix(), oofem::LSpace::computeLoadLSToLRotationMatrix(), oofem::InterfaceElem1d::computeLocalSlipDir(), oofem::Quad1Mindlin::computeMidPlaneNormal(), oofem::CCTPlate::computeMidPlaneNormal(), oofem::Quad1MindlinShell3D::computeMidPlaneNormal(), oofem::Shell7Base::computeTractionForce(), oofem::LEPlic::doCellDLS(), oofem::Lattice2d::drawSpecial(), oofem::LSpace::drawTriad(), oofem::FEI2dTrLin::edgeEvalNormal(), oofem::FEI2dQuadLin::edgeEvalNormal(), oofem::FEI2dLineQuad::edgeEvalNormal(), oofem::FEI2dLineLin::edgeEvalNormal(), oofem::FEI2dLineHermite::edgeEvalNormal(), oofem::FEI2dTrQuad::edgeEvalNormal(), oofem::FEI2dQuadQuad::edgeEvalNormal(), oofem::FEI2dLineHermite::evaldNdx(), oofem::CohesiveSurface3d::evaluateLocalCoordinateSystem(), oofem::InterfaceElem1d::evaluateLocalCoordinateSystem(), oofem::Lattice2d::giveCrossSectionCoordinates(), oofem::RotatingBoundary::initializeFrom(), oofem::SpringElement::initializeFrom(), oofem::OrthotropicLinearElasticMaterial::initializeFrom(), oofem::FEI3dTetLin::surfaceEvalNormal(), oofem::FEI3dHexaLin::surfaceEvalNormal(), oofem::FEI3dHexaQuad::surfaceEvalNormal(), and oofem::FastMarchingMethod::updateTrialValue().
| double& oofem::FloatArray::operator() | ( | int | i | ) | [inline] |
Coefficient access function.
Returns value of coefficient at given position of the receiver. Provides 0-based indexing access.
| i | Position of coefficient in array. |
Definition at line 144 of file flotarry.h.
References values.
| const double& oofem::FloatArray::operator() | ( | int | i | ) | const [inline] |
Coefficient access function.
Returns value of coefficient at given position of the receiver. Provides 0-based indexing access.
| i | Position of coefficient in array. |
Definition at line 154 of file flotarry.h.
References values.
| FloatArray & oofem::FloatArray::operator= | ( | const FloatArray & | src | ) |
Assignment operator.
Definition at line 107 of file flotarry.C.
| FloatArray & oofem::FloatArray::operator= | ( | const double & | val | ) |
Assignment of scalar to all components of receiver.
Definition at line 872 of file flotarry.C.
| int oofem::FloatArray::packToCommBuffer | ( | CommunicationBuffer & | buff | ) | const |
Definition at line 840 of file flotarry.C.
References oofem::CommunicationBuffer::packArray(), oofem::CommunicationBuffer::packInt(), size, and values.
Referenced by oofem::ProcessCommunicatorBuff::packFloatArray(), oofem::CommunicationBuffer::packFloatArray(), and oofem::RCSDNLMaterial::packUnknowns().
| void oofem::FloatArray::printYourself | ( | ) | const [virtual] |
Print receiver on stdout.
Useful for debugging.
Reimplemented in oofem::StrainVector, and oofem::StressVector.
Definition at line 663 of file flotarry.C.
Referenced by oofem::MPlasticMaterial2::closestPointReturn(), oofem::Quad1MindlinShell3D::computeLCS(), oofem::Shell7Base::computeMassMatrix(), oofem::Shell7Base::computeMassMatrixNum(), oofem::FE2FluidMaterial::giveDeviatoricPressureStiffness(), oofem::FE2FluidMaterial::giveVolumetricDeviatoricStiffness(), oofem::FiberedCrossSection::printYourself(), oofem::Triangle::printYourself(), oofem::LayeredCrossSection::printYourself(), oofem::Circle::printYourself(), oofem::GJacobi::solve(), and oofem::SubspaceIteration::solve().
| void oofem::FloatArray::pY | ( | ) | const [virtual] |
Print receiver on stdout with high accuracy.
Definition at line 675 of file flotarry.C.
Referenced by oofem::RankineMat::performPlasticityReturn().
| void oofem::FloatArray::resize | ( | int | s, |
| int | allocChunk = 0 |
||
| ) |
Checks size of receiver towards requested bounds.
If dimension mismatch, size is adjusted accordingly.
| s | New size. |
| allocChunk | Additional space to allocate. |
Definition at line 510 of file flotarry.C.
References allocatedSize, oofem::allocDouble(), oofem::freeDouble(), OOFEM_FATAL2, size, and values.
Referenced by oofem::MMALeastSquareProjection::__mapVariable(), oofem::PetscContext::accumulate(), oofem::AdaptiveNonLinearStatic::adaptiveRemap(), addSubVector(), oofem::NonStationaryTransportProblem::applyIC(), oofem::CBS::applyIC(), oofem::SUPG::applyIC(), oofem::EngngModel::assembleExtrapolatedForces(), oofem::NonLinearStatic::assembleIncrementalReferenceLoadVectors(), oofem::NonLinearDynamic::assembleIncrementalReferenceLoadVectors(), oofem::AdaptiveNonLinearStatic::assembleInitialLoadVector(), oofem::DIIDynamic::assembleLoadVector(), oofem::WeakPeriodicbc::assembleVector(), oofem::EngngModel::assembleVector(), oofem::BSplineInterpolation::basisFuns(), beDifferenceOf(), beFullVectorForm(), beMaxOf(), beMinOf(), beProductOf(), beReducedVectorForm(), beScaled(), beSubArrayOf(), beTProductOf(), beVectorProductOf(), oofem::BinghamFluidMaterial2Status::BinghamFluidMaterial2Status(), oofem::FEInterpolation1d::boundaryEvalN(), oofem::SymCompCol::buildInternalStructure(), oofem::CompCol::buildInternalStructure(), oofem::RigidArmNode::checkConsistency(), oofem::NRSolver::checkConvergence(), checkSizeTowards(), oofem::NodalRecoveryModel::clear(), oofem::MPlasticMaterial::closestPointReturn(), oofem::MPlasticMaterial2::closestPointReturn(), oofem::CompoDamageMatStatus::CompoDamageMatStatus(), oofem::TR1_2D_SUPG_AXI::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeAdvectionTerm_MB(), oofem::SUPGElement2::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG2::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeAdvectionTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeAdvectionTerm_MC(), oofem::SUPGElement2::computeAdvectionTerm_MC(), oofem::TR1_2D_SUPG::computeAdvectionTerm_MC(), oofem::TR1_2D_SUPG2::computeAdvectionTerm_MC(), oofem::Triangle::computeBarycentrCoor(), oofem::TR1_2D_SUPG_AXI::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeBCRhsTerm_MB(), oofem::SUPGElement2::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG2::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeBCRhsTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeBCRhsTerm_MC(), oofem::SUPGElement2::computeBCRhsTerm_MC(), oofem::TR1_2D_SUPG::computeBCRhsTerm_MC(), oofem::TransportElement::computeBCSubVectorAt(), oofem::TransportElement::computeBCVectorAt(), oofem::PlaneStress2dXfem::computeBmatrixAt(), oofem::PlaneStress2d::computeBmatrixAt(), oofem::TrPlaneStrRot::computeBodyLoadVectorAt(), oofem::CCTPlate::computeBodyLoadVectorAt(), oofem::TrPlaneStrRot3d::computeBodyLoadVectorAt(), oofem::CCTPlate3d::computeBodyLoadVectorAt(), oofem::Quad1Mindlin::computeBodyLoadVectorAt(), oofem::Tr1BubbleStokes::computeBodyLoadVectorAt(), oofem::Tr21Stokes::computeBodyLoadVectorAt(), oofem::Tet1BubbleStokes::computeBodyLoadVectorAt(), oofem::RerShell::computeBodyLoadVectorAt(), oofem::Tet21Stokes::computeBodyLoadVectorAt(), oofem::Quad1MindlinShell3D::computeBodyLoadVectorAt(), oofem::StructuralElement::computeBodyLoadVectorAt(), oofem::Element::computeBoundaryVectorOf(), oofem::Shell7Base::computeBulkTangentMatrix(), oofem::Triangle::computeCenterOfCircumCircle(), oofem::B3SolidMaterial::computeCharCoefficients(), oofem::MPSMaterial::computeCharCoefficients(), oofem::B3SolidMaterial::computeCharTimes(), oofem::MPSMaterial::computeCharTimes(), oofem::RheoChainMaterial::computeCharTimes(), oofem::TR1_2D_CBS::computeConvectionTermsI(), oofem::Shell7Base::computeConvectiveMassForce(), oofem::TR1_2D_CBS::computeCorrectionRhs(), oofem::MazarsMaterial::computeDamageParam(), oofem::TrabBone3D::computeDensificationStress(), oofem::TR1_2D_CBS::computeDensityRhsPressureTerms(), oofem::TR1_2D_CBS::computeDensityRhsVelocityTerms(), oofem::TR1_2D_SUPG_AXI::computeDeviatoricStrain(), oofem::BinghamFluidMaterial2::computeDeviatoricStrain(), oofem::TR1_2D_SUPG::computeDeviatoricStrain(), oofem::TR1_2D_SUPG_AXI::computeDeviatoricStress(), oofem::TR1_2D_SUPG2_AXI::computeDeviatoricStress(), oofem::TR1_2D_CBS::computeDeviatoricStress(), oofem::TR1_2D_SUPG2::computeDeviatoricStress(), oofem::NewtonianFluidMaterial::computeDeviatoricStressVector(), oofem::TwoFluidMaterial::computeDeviatoricStressVector(), oofem::BinghamFluidMaterial2::computeDeviatoricStressVector(), oofem::TR1_2D_CBS::computeDiagonalMassMtrx(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MB(), oofem::SUPGElement2::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG2::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MC(), oofem::SUPGElement2::computeDiffusionTerm_MC(), oofem::TR1_2D_SUPG::computeDiffusionTerm_MC(), oofem::TR1_2D_SUPG2::computeDiffusionTerm_MC(), oofem::TR1_2D_CBS::computeDiffusionTermsI(), oofem::RheoChainMaterial::computeDiscreteRelaxationFunction(), oofem::GradDpElement::computeDisplacementDegreesOfFreedom(), oofem::ActiveDof::computeDofTransformation(), oofem::SlaveDof::computeDofTransformation(), oofem::MixedGradientPressureDirichlet::computeDofTransformation(), oofem::Dof::computeDofTransformation(), oofem::Tr1Darcy::computeEdgeBCSubVectorAt(), oofem::Tr1BubbleStokes::computeEdgeBCSubVectorAt(), oofem::Tr21Stokes::computeEdgeBCSubVectorAt(), oofem::Tet1BubbleStokes::computeEdgeBCSubVectorAt(), oofem::TransportElement::computeEdgeBCSubVectorAt(), oofem::Quad1MindlinShell3D::computeEdgeIpGlobalCoords(), oofem::StructuralElement::computeEdgeIpGlobalCoords(), oofem::HTSelement::computeEdgeLoadVectorAt(), oofem::Beam2d::computeEdgeLoadVectorAt(), oofem::Beam3d::computeEdgeLoadVectorAt(), oofem::Shell7Base::computeEdgeLoadVectorAt(), oofem::StructuralElement::computeEdgeLoadVectorAt(), oofem::IDGMaterial::computeEquivalentStrain(), oofem::MazarsMaterial::computeEquivalentStrain(), oofem::IDGMaterial::computeEta(), oofem::IsotropicDamageMaterial1::computeEta(), oofem::StructuralEngngModel::computeExternalLoadReactionContribution(), oofem::MixedGradientPressureDirichlet::computeFields(), oofem::MixedGradientPressureNeumann::computeFields(), oofem::TransportElement::computeFlow(), oofem::LumpedMassElement::computeForceLoadVector(), oofem::HTSelement::computeForceLoadVector(), oofem::SpringElement::computeForceLoadVector(), oofem::GradDpElement::computeForceLoadVector(), oofem::Shell7Base::computeGeneralizedStrainVector(), oofem::InterfaceElem2dQuad::computeGlobalCoordinates(), oofem::InterfaceElement3dTrLin::computeGlobalCoordinates(), oofem::InterfaceElem1d::computeGlobalCoordinates(), oofem::LIBeam2dNL::computeGlobalCoordinates(), oofem::Lattice2d::computeGlobalCoordinates(), oofem::LIBeam2d::computeGlobalCoordinates(), oofem::Truss2d::computeGlobalCoordinates(), oofem::LIBeam3d::computeGlobalCoordinates(), oofem::Beam3d::computeGlobalCoordinates(), oofem::LIBeam3dNL2::computeGlobalCoordinates(), oofem::LIBeam3dNL::computeGlobalCoordinates(), oofem::LIBeam3d2::computeGlobalCoordinates(), oofem::Element::computeGlobalCoordinates(), oofem::MPlasticMaterial::computeGradientVector(), oofem::Tr1Darcy::computeInternalForcesVector(), oofem::Tr1BubbleStokes::computeInternalForcesVector(), oofem::Tr21Stokes::computeInternalForcesVector(), oofem::Tet1BubbleStokes::computeInternalForcesVector(), oofem::Tet21Stokes::computeInternalForcesVector(), oofem::TransportElement::computeInternalSourceRhsSubVectorAt(), oofem::TransportElement::computeInternalSourceRhsVectorAt(), oofem::HydratingConcreteMat::computeInternalSourceVector(), oofem::HydratingHeMoMaterial::computeInternalSourceVector(), oofem::HydratingIsoHeatMaterial::computeInternalSourceVector(), oofem::CemhydMat::computeInternalSourceVector(), oofem::TransportMaterial::computeInternalSourceVector(), oofem::HydrationModel::computeInternalSourceVector(), oofem::TR21_2D_SUPG::computeIntersection(), oofem::J2Mat::computeKGradientVector(), oofem::Masonry02::computeKGradientVector(), oofem::DruckerPragerCutMat::computeKGradientVector(), oofem::Tr1Darcy::computeLoadVector(), oofem::Line2SurfaceTension::computeLoadVector(), oofem::LineSurfaceTension::computeLoadVector(), oofem::Tr1BubbleStokes::computeLoadVector(), oofem::Tr21Stokes::computeLoadVector(), oofem::Tet1BubbleStokes::computeLoadVector(), oofem::Tet21Stokes::computeLoadVector(), oofem::NlDEIDynamic::computeLoadVector(), oofem::Node::computeLoadVectorAt(), oofem::DofManager::computeLoadVectorAt(), oofem::SurfaceTensionBoundaryCondition::computeLoadVectorFromElement(), oofem::RerShell::computeLocalCoordinates(), oofem::Element::computeLocalCoordinates(), oofem::StructuralElement::computeLocalForceLoadVector(), oofem::InterfaceElem1d::computeLocalSlipDir(), oofem::GradDpElement::computeLocForceLoadVector(), oofem::GradDpElement::computeLocNonForceLoadVector(), oofem::NlDEIDynamic::computeMassMtrx(), oofem::ConstantEdgeLoad::computeNArray(), oofem::LinearEdgeLoad::computeNArray(), oofem::ConstantPressureLoad::computeNArray(), oofem::ConstantSurfaceLoad::computeNArray(), oofem::TR1_2D_SUPG::computeNMtrx(), oofem::GradDpElement::computeNonForceLoadVector(), oofem::GradDpElement::computeNonlocalDegreesOfFreedom(), oofem::TR1_2D_CBS::computeNumberOfNodalPrescribedTractionPressureContributions(), oofem::SPRNodalRecoveryModel::computePatch(), oofem::MDM::computePDC(), oofem::MPSMaterial::computePointShrinkageStrainVector(), oofem::B3SolidMaterial::computePointShrinkageStrainVectorMPS(), oofem::SPRNodalRecoveryModel::computePolynomialTerms(), oofem::MMALeastSquareProjection::computePolynomialTerms(), oofem::HTSelement::computePrescribedDisplacementLoadVectorAt(), oofem::StructuralElement::computePrescribedStrainLocalLoadVectorAt(), oofem::TR1_2D_CBS::computePrescribedTractionPressure(), oofem::Shell7Base::computePressureForce(), oofem::Shell7Base::computePressureForceAt(), oofem::StrainVector::computePrincipalValDir(), oofem::StressVector::computePrincipalValDir(), oofem::StructuralMaterial::computePrincipalValDir(), oofem::StrainVector::computePrincipalValues(), oofem::StressVector::computePrincipalValues(), oofem::StructuralMaterial::computePrincipalValues(), oofem::TR21_2D_SUPG::computeQuadraticFunct(), oofem::LIBeam3dNL2::computeQuaternionFromRotMtrx(), oofem::StructuralEngngModel::computeReaction(), oofem::MPlasticMaterial::computeResidualVector(), oofem::MPlasticMaterial2::computeResidualVector(), oofem::StructuralElement::computeResultingIPEigenstrainAt(), oofem::StructuralElement::computeResultingIPTemperatureAt(), oofem::Shell7Base::computeSectionalForces(), oofem::Shell7Base::computeSectionalForcesAt(), oofem::B3Material::computeShrinkageStrainVector(), oofem::B3SolidMaterial::computeShrinkageStrainVector(), oofem::Shell7Base::computeSolutionFields(), oofem::J2Mat::computeStrainHardeningVarsIncrement(), oofem::Masonry02::computeStrainHardeningVarsIncrement(), oofem::DruckerPragerCutMat::computeStrainHardeningVarsIncrement(), oofem::Q4Axisymm::computeStrainVector(), oofem::L4Axisymm::computeStrainVector(), oofem::HTSelement::computeStrainVector(), oofem::LIBeam3dNL::computeStrainVector(), oofem::LIBeam3dNL2::computeStrainVector(), oofem::Axisymm3d::computeStrainVector(), oofem::TrPlaneStrRot::computeStrainVector(), oofem::GradDpElement::computeStrainVector(), oofem::StructuralElementEvaluator::computeStrainVector(), oofem::NLStructuralElement::computeStrainVector(), oofem::StructuralElement::computeStrainVector(), oofem::MicroplaneMaterial::computeStrainVectorComponents(), oofem::LIBeam2d::computeStrainVectorInLayer(), oofem::LIBeam2dNL::computeStrainVectorInLayer(), oofem::RerShell::computeStrainVectorInLayer(), oofem::Quad1Mindlin::computeStrainVectorInLayer(), oofem::Beam2d::computeStrainVectorInLayer(), oofem::Quad1MindlinShell3D::computeStrainVectorInLayer(), oofem::CCTPlate::computeStrainVectorInLayer(), oofem::J2MPlasticMaterial::computeStressGradientVector(), oofem::J2Mat::computeStressGradientVector(), oofem::RankinePlasticMaterial::computeStressGradientVector(), oofem::DruckerPragerCutMat::computeStressGradientVector(), oofem::Masonry02::computeStressGradientVector(), oofem::SimpleCrossSection::computeStressIndependentStrainVector(), oofem::StructuralMaterial::computeStressIndependentStrainVector(), oofem::HellmichMaterial::computeStressIndependentStrainVector(), oofem::J2MPlasticMaterial::computeStressSpaceHardeningVars(), oofem::RankinePlasticMaterial::computeStressSpaceHardeningVars(), oofem::J2MPlasticMaterial::computeStressSpaceHardeningVarsReducedGradient(), oofem::RankinePlasticMaterial::computeStressSpaceHardeningVarsReducedGradient(), oofem::HTSelement::computeStressVector(), oofem::GradDpElement::computeStressVector(), oofem::Tet21Stokes::computeSurfaceBCSubVectorAt(), oofem::TransportElement::computeSurfaceBCSubVectorAt(), oofem::Shell7Base::computeSurfaceLoadVectorAt(), oofem::StructuralElement::computeSurfaceLoadVectorAt(), oofem::Tet1BubbleStokes::computeSurfBCSubVectorAt(), oofem::StructuralElement::computeSurfIpGlobalCoords(), oofem::HTSelement::computeSvMatrixAt(), oofem::MixedGradientPressureDirichlet::computeTangents(), oofem::MixedGradientPressureNeumann::computeTangents(), oofem::LIBeam3dNL::computeTempCurv(), oofem::LIBeam3dNL2::computeTempCurv(), oofem::Shell7Base::computeThicknessMappingCoeff(), oofem::B3Material::computeTotalAverageShrinkageStrainVector(), oofem::B3SolidMaterial::computeTotalAverageShrinkageStrainVector(), oofem::Shell7Base::computeTractionForce(), oofem::PerfectlyPlasticMaterial::computeTrialStressIncrement(), oofem::HTSelement::computeUvMatrixAt(), oofem::TF1::computeValueAt(), oofem::UserDefinedTemperatureField::computeValueAt(), oofem::BoundaryLoad::computeValueAt(), oofem::PlaneStress2dXfem::computeVectorOf(), oofem::Element::computeVectorOf(), oofem::Element::computeVectorOfPrescribed(), oofem::LIBeam3dNL::computeXdVector(), oofem::LIBeam3dNL2::computeXdVector(), oofem::TrabBone3D::constructAnisoFtensor(), oofem::StressStrainBaseVector::convertFromFullForm(), oofem::CylindricalALM::convertHPCMap(), oofem::StressStrainBaseVector::convertToFullForm(), oofem::FloatMatrix::copyColumn(), copySubVector(), oofem::MPlasticMaterial::cuttingPlaneReturn(), oofem::MPlasticMaterial2::cuttingPlaneReturn(), oofem::TSplineInterpolation::dersBasisFunction(), oofem::HellmichMaterial::deviator(), oofem::CylindricalALM::do_lineSearch(), oofem::GPInitModule::doInit(), oofem::LEPlic::doLagrangianPhase(), oofem::HOMExportModule::doOutput(), oofem::drawIGAPatchDeformedGeometry(), oofem::IGAElement::drawRawGeometry(), oofem::BsplinePlaneStressElement::drawScalar(), oofem::NURBSPlaneStressElement::drawScalar(), oofem::TSplinePlaneStressElement::drawScalar(), oofem::NURBSSpace3dElement::drawScalar(), oofem::Lattice2d::drawSpecial(), oofem::PlaneStress2d::drawSpecial(), oofem::Quad1PlaneStrain::drawSpecial(), oofem::Shell7Base::edgeEvalCovarBaseVectorsAt(), oofem::FEI2dLineHermite::edgeEvald2Nds2(), oofem::FEI2dTrLin::edgeEvaldNds(), oofem::FEI2dTrConst::edgeEvaldNds(), oofem::FEI2dQuadLin::edgeEvaldNds(), oofem::FEI2dLineQuad::edgeEvaldNds(), oofem::FEI2dLineLin::edgeEvaldNds(), oofem::FEI2dLineHermite::edgeEvaldNds(), oofem::FEI2dTrQuad::edgeEvaldNds(), oofem::FEI2dQuadQuad::edgeEvaldNds(), oofem::FEI3dTrQuad::edgeEvaldNdxi(), oofem::Shell7Base::edgeEvalInitialCovarBaseVectorsAt(), oofem::Shell7Base::edgeEvalInitialDirectorAt(), oofem::FEI3dHexaLin::edgeEvalN(), oofem::FEI3dTetLin::edgeEvalN(), oofem::FEI2dTrLin::edgeEvalN(), oofem::FEI3dWedgeQuad::edgeEvalN(), oofem::FEI2dTrConst::edgeEvalN(), oofem::FEI3dWedgeLin::edgeEvalN(), oofem::FEI3dTrQuad::edgeEvalN(), oofem::FEI3dTetQuad::edgeEvalN(), oofem::FEI2dQuadLin::edgeEvalN(), oofem::FEI2dTrQuad::edgeEvalN(), oofem::FEI2dQuadQuad::edgeEvalN(), oofem::FEI2dTrLin::edgeEvalNormal(), oofem::FEI2dQuadLin::edgeEvalNormal(), oofem::FEI2dLineLin::edgeEvalNormal(), oofem::FEI2dLineQuad::edgeEvalNormal(), oofem::FEI2dLineHermite::edgeEvalNormal(), oofem::FEI2dTrQuad::edgeEvalNormal(), oofem::FEI2dQuadQuad::edgeEvalNormal(), oofem::Shell7Base::edgeGiveInitialSolutionVector(), oofem::FEI3dHexaLin::edgeLocal2global(), oofem::FEI3dTetLin::edgeLocal2global(), oofem::FEI3dWedgeQuad::edgeLocal2global(), oofem::FEI2dTrLin::edgeLocal2global(), oofem::FEI3dWedgeLin::edgeLocal2global(), oofem::FEI2dTrConst::edgeLocal2global(), oofem::FEI3dTetQuad::edgeLocal2global(), oofem::FEI3dTrQuad::edgeLocal2global(), oofem::FEI2dQuadLin::edgeLocal2global(), oofem::FEI2dTrQuad::edgeLocal2global(), oofem::FEI2dQuadQuad::edgeLocal2global(), oofem::TransportElement::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::TR1_2D_CBS::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::TR1_2D_SUPG2::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::TR1_2D_SUPG::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::Line2SurfaceTension::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::Line2BoundaryElement::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::LineSurfaceTension::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::Tr1BubbleStokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::Tr21Stokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::Tet1BubbleStokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::Tet21Stokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::Line2SurfaceTension::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Line2BoundaryElement::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::LineSurfaceTension::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tr1BubbleStokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tr21Stokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tet1BubbleStokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tet21Stokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::HellmichMaterial::elasticCompliance(), oofem::HellmichMaterial::elasticStiffness(), oofem::ZZErrorEstimator::estimateError(), oofem::HuertaErrorEstimator::estimateError(), oofem::DirectErrorIndicatorRC::estimateMeshDensities(), oofem::ZZRemeshingCriteria::estimateMeshDensities(), oofem::HuertaRemeshingCriteria::estimateMeshDensities(), oofem::NURBSInterpolation::evaldNdx(), oofem::Shell7Base::evalInitialCovarBaseVectorsAt(), oofem::Shell7Base::evalInitialDirectorAt(), oofem::FEI3dHexaLin::evalN(), oofem::FEI3dTetLin::evalN(), oofem::FEI3dLineLin::evalN(), oofem::FEI3dTetQuad::evalN(), oofem::FEI2dTrLin::evalN(), oofem::NURBSInterpolation::evalN(), oofem::FEI1dLin::evalN(), oofem::FEI1dQuad::evalN(), oofem::FEI3dWedgeQuad::evalN(), oofem::FEI1dHermite::evalN(), oofem::FEI2dQuadConst::evalN(), oofem::FEI2dTrQuad::evalN(), oofem::FEI3dWedgeLin::evalN(), oofem::FEI2dTrConst::evalN(), oofem::FEI2dQuadLin::evalN(), oofem::FEI2dQuadBiQuad::evalN(), oofem::FEI2dLineLin::evalN(), oofem::FEI2dLineQuad::evalN(), oofem::FEI2dLineHermite::evalN(), oofem::FEI2dQuadQuad::evalN(), oofem::TSplineInterpolation::evalN(), oofem::FEI3dHexaQuad::evalN(), oofem::BSplineInterpolation::evalN(), oofem::CohesiveSurface3d::evaluateCenter(), oofem::DiscontinuousFunction::evaluateDerivativeAt(), oofem::BranchFunction::evaluateDerivativeAt(), oofem::RampFunction::evaluateDerivativeAt(), oofem::VTKXMLExportModule::exportCellVarAs(), oofem::VTKExportModule::exportCellVars(), oofem::POIExportModule::exportIntVarAs(), oofem::VTKExportModule::exportIntVarAs(), oofem::POIExportModule::exportPrimVarAs(), oofem::VTKExportModule::exportPrimVarAs(), oofem::VTKXMLExportModule::exportPrimVarAs(), oofem::HuertaErrorEstimator::extractVectorFrom(), oofem::SkylineUnsym::factorized(), oofem::LIBeam3d::FiberedCrossSectionInterface_computeStrainVectorInFiber(), oofem::Beam3d::FiberedCrossSectionInterface_computeStrainVectorInFiber(), oofem::LIBeam3d2::FiberedCrossSectionInterface_computeStrainVectorInFiber(), oofem::LevelSetPCS::FMMReinitialization(), oofem::MixedGradientPressureNeumann::fromDeviatoricBase2D(), oofem::MixedGradientPressureNeumann::fromDeviatoricBase3D(), oofem::RheoChainMaterial::generateLogTimeScale(), oofem::VTKExportModule::getDofManPrimaryVariable(), oofem::StokesFlowVelocityHomogenization::getMeans(), oofem::VTKXMLExportModule::getPrimaryVariable(), oofem::RotatingBoundary::give(), oofem::MisesMat::give3dLSMaterialStiffnessMatrix(), oofem::HydratingHeMoMaterial::giveCharacteristicValue(), oofem::HydratingIsoHeatMaterial::giveCharacteristicValue(), oofem::StructuralElementEvaluator::giveCharacteristicVector(), oofem::SUPGElement::giveCharacteristicVector(), oofem::Line2BoundaryElement::giveCharacteristicVector(), oofem::SUPGElement2::giveCharacteristicVector(), oofem::LineSurfaceTension::giveCharacteristicVector(), oofem::CompoDamageMat::giveCharLengthForModes(), oofem::DofManager::giveCompleteUnknownVector(), oofem::Lattice2d::giveCrossSectionCoordinates(), oofem::FEI3dTrQuad::giveDerivativeEta(), oofem::FEI3dTrQuad::giveDerivativeXi(), oofem::FluidDynamicMaterial::giveDeviatoricPressureStiffness(), oofem::FE2FluidMaterial::giveDeviatoricStiffnessMatrix(), oofem::Shell7Base::giveDualBase(), oofem::WeakPeriodicbc::giveEdgeNormal(), oofem::MaxwellChainMaterial::giveEigenStrainVector(), oofem::B3SolidMaterial::giveEigenStrainVector(), oofem::MPSMaterial::giveEigenStrainVector(), oofem::HellmichMaterial::giveEigenStrainVector(), oofem::TR1_2D_SUPG2::giveElementCenter(), oofem::TR1_2D_SUPG::giveElementCenter(), oofem::TR1_2D_SUPG2_AXI::giveElementCenter(), oofem::SUPG::giveElementCharacteristicVector(), oofem::DummySpatialLocalizer::giveElementClosestToPoint(), oofem::Tr21Stokes::giveElementFMatrix(), oofem::LevelSetPCS::giveElementMaterialMixture(), oofem::LEPlic::giveElementMaterialMixture(), oofem::OOFEMTXTInputRecord::giveField(), oofem::SimpleCrossSection::giveFullCharacteristicVector(), oofem::FiberedCrossSection::giveFullCharacteristicVector(), oofem::LayeredCrossSection::giveFullCharacteristicVector(), oofem::StructuralMaterial::giveFullCharacteristicVector(), oofem::Shell7Base::giveInitialSolutionVector(), oofem::LayeredCrossSection::giveIntegrated3dShellStress(), oofem::StructuralEngngModel::giveInternalForces(), oofem::LumpedMassElement::giveInternalForcesVector(), oofem::MacroLSpace::giveInternalForcesVector(), oofem::HTSelement::giveInternalForcesVector(), oofem::SpringElement::giveInternalForcesVector(), oofem::GradDpElement::giveInternalForcesVector(), oofem::StructuralElementEvaluator::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector(), oofem::StructuralElement::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::StructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::CBSElement::giveInternalStateAtNode(), oofem::SUPGElement2::giveInternalStateAtNode(), oofem::TransportElement::giveInternalStateAtNode(), oofem::TR1_2D_CBS::giveInternalStateAtNode(), oofem::SUPGElement::giveInternalStateAtNode(), oofem::StructuralElement::giveInternalStateAtNode(), oofem::Element::giveInternalStateAtNode(), oofem::Element::giveInternalStateAtSide(), oofem::IsotropicMoistureTransferMaterial::giveIPValue(), oofem::HydratingConcreteMat::giveIPValue(), oofem::IsotropicHeatTransferMaterial::giveIPValue(), oofem::HydratingHeMoMaterial::giveIPValue(), oofem::TrPlaneStrRot3d::giveIPValue(), oofem::CCTPlate3d::giveIPValue(), oofem::RerShell::giveIPValue(), oofem::HydratingIsoHeatMaterial::giveIPValue(), oofem::CemhydMat::giveIPValue(), oofem::RVEStokesFlow::giveIPValue(), oofem::Quad10_2D_SUPG::giveIPValue(), oofem::HeMoTKMaterial::giveIPValue(), oofem::TR1_2D_CBS::giveIPValue(), oofem::DruckerPragerCutMat::giveIPValue(), oofem::MisesMat::giveIPValue(), oofem::RankineMat::giveIPValue(), oofem::CompoDamageMat::giveIPValue(), oofem::IsoInterfaceDamageMaterial::giveIPValue(), oofem::TransportMaterial::giveIPValue(), oofem::TR1_2D_SUPG2::giveIPValue(), oofem::TR1_2D_SUPG::giveIPValue(), oofem::FluidDynamicMaterial::giveIPValue(), oofem::RCM2Material::giveIPValue(), oofem::IsotropicDamageMaterial::giveIPValue(), oofem::TrabBone3D::giveIPValue(), oofem::Material::giveIPValue(), oofem::MDM::giveIPValue(), oofem::StructuralMaterial::giveIPValue(), oofem::DruckerPragerPlasticitySM::giveIPValue(), oofem::DustMaterial::giveIPValue(), oofem::Element::giveIPValue(), oofem::ConcreteDPM::giveIPValue(), oofem::HellmichMaterial::giveIPValue(), oofem::ConcreteDPM2::giveIPValue(), oofem::GaussIntegrationRule::giveLineCoordsAndWeights(), oofem::GradDpElement::giveLocalInternalForcesVector(), oofem::TrabBoneNL3D::giveLocalNonlocalStiffnessContribution(), oofem::IDNLMaterial::giveLocalNonlocalStiffnessContribution(), oofem::Shell7Base::giveMassFactorsAt(), oofem::LevelSetPCS::giveMaterialMixtureAt(), oofem::LEPlic::giveMaterialMixtureAt(), oofem::MicroplaneMaterial::giveMicroplaneNormal(), oofem::GradDpElement::giveNonlocalInternalForcesVector(), oofem::IDGMaterial::givePlaneStressKappaMatrix(), oofem::IDGMaterial::givePlaneStressStiffMtrx(), oofem::DofManager::givePrescribedUnknownVector(), oofem::HellmichMaterial::givePrestressStrainVector(), oofem::M4Material::giveRealMicroplaneStressVector(), oofem::RCM2Material::giveRealPrincipalStressVector3d(), oofem::MicroplaneMaterial_Bazant::giveRealStressVector(), oofem::IDGMaterial::giveRealStressVector(), oofem::HyperElasticMaterial::giveRealStressVector(), oofem::LsMasterMatGrad::giveRealStressVector(), oofem::TrabBoneGrad3D::giveRealStressVector(), oofem::TrabBoneNL::giveRealStressVector(), oofem::CohesiveInterfaceMaterial::giveRealStressVector(), oofem::TrabBoneNLEmbed::giveRealStressVector(), oofem::SimpleInterfaceMaterial::giveRealStressVector(), oofem::LinearElasticMaterial::giveRealStressVector(), oofem::CebFipSlip90Material::giveRealStressVector(), oofem::RCSDEMaterial::giveRealStressVector(), oofem::RCSDMaterial::giveRealStressVector(), oofem::RheoChainMaterial::giveRealStressVector(), oofem::CompoDamageMat::giveRealStressVector(), oofem::RCM2Material::giveRealStressVector(), oofem::HellmichMaterial::giveRealStressVector(), oofem::MisesMat::giveRealStressVectorComputedFromDefGrad(), oofem::SimpleCrossSection::giveReducedCharacteristicVector(), oofem::FiberedCrossSection::giveReducedCharacteristicVector(), oofem::LayeredCrossSection::giveReducedCharacteristicVector(), oofem::StructuralMaterial::giveReducedCharacteristicVector(), oofem::TrabBoneNL3D::giveRemoteNonlocalStiffnessContribution(), oofem::IDNLMaterial::giveRemoteNonlocalStiffnessContribution(), oofem::B3Material::giveShrinkageStrainVector(), oofem::KelvinChainSolidMaterial::giveShrinkageStrainVector(), oofem::MaxwellChainMaterial::giveShrinkageStrainVector(), oofem::KelvinChainMaterial::giveShrinkageStrainVector(), oofem::B3SolidMaterial::giveShrinkageStrainVector(), oofem::MPSMaterial::giveShrinkageStrainVector(), oofem::RheoChainMaterial::giveShrinkageStrainVector(), oofem::HellmichMaterial::giveShrinkageStrainVector(), oofem::J2MPlasticMaterial::giveStressBackVector(), oofem::J2plasticMaterial::giveStressBackVector(), oofem::J2Mat::giveStressBackVector(), oofem::GaussIntegrationRule::giveTetCoordsAndWeights(), oofem::B3Material::giveThermalDilatationVector(), oofem::M4Material::giveThermalDilatationVector(), oofem::IsotropicLinearElasticMaterial::giveThermalDilatationVector(), oofem::B3SolidMaterial::giveThermalDilatationVector(), oofem::CohesiveInterfaceMaterial::giveThermalDilatationVector(), oofem::SimpleInterfaceMaterial::giveThermalDilatationVector(), oofem::RheoChainMaterial::giveThermalDilatationVector(), oofem::CebFipSlip90Material::giveThermalDilatationVector(), oofem::IsoInterfaceDamageMaterial::giveThermalDilatationVector(), oofem::StructuralMaterial::giveThermalDilatationVector(), oofem::MPSMaterial::giveThermalDilatationVector(), oofem::IsotropicDamageMaterial::giveThermalDilatationVector(), oofem::MDM::giveThermalDilatationVector(), oofem::HellmichMaterial::giveThermalDilatationVector(), oofem::NURBSInterpolation::giveTransformationJacobian(), oofem::GaussIntegrationRule::giveTriCoordsAndWeights(), oofem::ActiveDof::giveUnknowns(), oofem::SlaveDof::giveUnknowns(), oofem::Dof::giveUnknowns(), oofem::DofManager::giveUnknownVector(), oofem::DofManager::giveUnknownVectorOfType(), oofem::LEPlic::giveUpdatedCoordinate(), oofem::FluidDynamicMaterial::giveVolumetricDeviatoricStiffness(), oofem::FEI3dTetLin::global2local(), oofem::FEI3dHexaLin::global2local(), oofem::FEI3dTetQuad::global2local(), oofem::FEI2dTrLin::global2local(), oofem::FEI1dLin::global2local(), oofem::FEI1dQuad::global2local(), oofem::FEI2dTrConst::global2local(), oofem::FEI1dHermite::global2local(), oofem::FEI2dLineLin::global2local(), oofem::FEI2dLineQuad::global2local(), oofem::FEI2dTrQuad::global2local(), oofem::FEI2dQuadLin::global2local(), oofem::FEI2dLineHermite::global2local(), oofem::FEI2dQuadQuad::global2local(), oofem::FEI3dHexaQuad::global2local(), oofem::PlaneStress2d::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::Quad1PlaneStrain::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::LSpace::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::TrPlaneStrain::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::Truss1d::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::TrPlaneStress2d::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::LTRSpace::HuertaErrorEstimatorI_setupRefinedElementProblem(), oofem::DynCompRow::ILUPsolve(), oofem::DynCompRow::ILUPtrans_solve(), oofem::DynCompRow::ILUPYourself(), oofem::DiagPreconditioner::init(), oofem::HellmichMaterial::initAuxStatus(), oofem::IDGMaterial::initDamaged(), oofem::CompCol_ICPreconditioner::initialize(), oofem::DofDistributedPrimaryField::initialize(), oofem::CompCol_ILUPreconditioner::initialize(), oofem::PrimaryField::initialize(), oofem::LevelSetPCS::initialize(), oofem::AdaptiveNonLinearStatic::initializeAdaptiveFrom(), oofem::ExternalFieldGenerator::initializeFrom(), oofem::SlaveNode::initializeFrom(), oofem::LoadBalancerMonitor::initializeFrom(), oofem::PrescribedGradient::initializeFrom(), oofem::IGAElement::initializeFrom(), oofem::OrthotropicLinearElasticMaterial::initializeFrom(), oofem::CemhydMat::initializeFrom(), oofem::MixedGradientPressureDirichlet::initializeFrom(), oofem::IGATSplineElement::initializeFrom(), oofem::WallClockLoadBalancerMonitor::initializeFrom(), oofem::NRSolver::initializeFrom(), oofem::Node::initializeFrom(), oofem::CylindricalALM::initializeFrom(), oofem::Element::initializeFrom(), oofem::RCSDNLMaterialStatus::initTempStatus(), oofem::PlasticMaterialStatus::initTempStatus(), oofem::PerfectlyPlasticMaterialStatus::initTempStatus(), oofem::StructuralMaterialStatus::initTempStatus(), oofem::MPlasticMaterialStatus::initTempStatus(), oofem::MPlasticMaterial2Status::initTempStatus(), oofem::PlastData::initTempStatus(), oofem::Concrete2MaterialStatus::initTempStatus(), oofem::CreepData::initTempStatus(), oofem::AbaqusUserMaterialStatus::initTempStatus(), oofem::MisesMatStatus::initTempStatus(), oofem::RankineMatStatus::initTempStatus(), oofem::DynCompRow::insertColInRow(), oofem::DynCompCol::insertRowInColumn(), oofem::MixedGradientPressureNeumann::integrateVolTangent(), oofem::InterfaceElem1d::InterfaceElem1d(), oofem::IsotropicDamageMaterialStatus::IsotropicDamageMaterialStatus(), oofem::FloatMatrix::jaco_(), oofem::StressStrainBaseVector::letStressStrainModeBe(), oofem::FEI3dTetLin::local2global(), oofem::FEI3dHexaLin::local2global(), oofem::FEI3dTrQuad::local2global(), oofem::FEI3dTetQuad::local2global(), oofem::NURBSInterpolation::local2global(), oofem::FEI2dTrLin::local2global(), oofem::FEI1dLin::local2global(), oofem::FEI1dQuad::local2global(), oofem::FEI3dWedgeQuad::local2global(), oofem::FEI2dQuadConst::local2global(), oofem::FEI2dTrConst::local2global(), oofem::FEI3dWedgeLin::local2global(), oofem::FEI1dHermite::local2global(), oofem::FEI2dLineLin::local2global(), oofem::FEI2dLineQuad::local2global(), oofem::FEI2dTrQuad::local2global(), oofem::FEI2dLineHermite::local2global(), oofem::FEI2dQuadLin::local2global(), oofem::FEI2dQuadQuad::local2global(), oofem::TSplineInterpolation::local2global(), oofem::FEI3dHexaQuad::local2global(), oofem::BSplineInterpolation::local2global(), oofem::ls2fit(), oofem::Tet1_3D_SUPG::LS_PCS_computeVOFFractions(), oofem::TR1_2D_SUPG_AXI::LS_PCS_computeVOFFractions(), oofem::TR21_2D_SUPG::LS_PCS_computeVOFFractions(), oofem::TR1_2D_SUPG::LS_PCS_computeVOFFractions(), oofem::VTKXMLExportModule::makeFullForm(), oofem::EIPrimaryUnknownMapper::mapAndUpdate(), oofem::FETISolver::masterMapGammas(), oofem::MisesMatStatus::MisesMatStatus(), oofem::LTRSpace::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::TrPlaneStrain::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::Truss1d::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::TrPlaneStress2d::MMAShapeFunctProjectionInterface_interpolateIntVarAt(), oofem::LWedge::NodalAveragingRecoveryMI_computeNodalValue(), oofem::QSpace::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Truss3d::NodalAveragingRecoveryMI_computeNodalValue(), oofem::QWedge::NodalAveragingRecoveryMI_computeNodalValue(), oofem::QTRSpace::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Axisymm3d::NodalAveragingRecoveryMI_computeNodalValue(), oofem::LSpace::NodalAveragingRecoveryMI_computeNodalValue(), oofem::LTRSpace::NodalAveragingRecoveryMI_computeNodalValue(), oofem::CCTPlate::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Tr21Stokes::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Tet21Stokes::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Shell7Base::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Tr1Darcy::NodalAveragingRecoveryMI_computeSideValue(), oofem::QPlaneStress2d::NodalAveragingRecoveryMI_computeSideValue(), oofem::LWedge::NodalAveragingRecoveryMI_computeSideValue(), oofem::QSpace::NodalAveragingRecoveryMI_computeSideValue(), oofem::Truss3d::NodalAveragingRecoveryMI_computeSideValue(), oofem::QWedge::NodalAveragingRecoveryMI_computeSideValue(), oofem::QTRSpace::NodalAveragingRecoveryMI_computeSideValue(), oofem::TrPlaneStrain::NodalAveragingRecoveryMI_computeSideValue(), oofem::Axisymm3d::NodalAveragingRecoveryMI_computeSideValue(), oofem::LSpace::NodalAveragingRecoveryMI_computeSideValue(), oofem::TR21_2D_SUPG::NodalAveragingRecoveryMI_computeSideValue(), oofem::Quad10_2D_SUPG::NodalAveragingRecoveryMI_computeSideValue(), oofem::RerShell::NodalAveragingRecoveryMI_computeSideValue(), oofem::TrPlaneStress2d::NodalAveragingRecoveryMI_computeSideValue(), oofem::Truss1d::NodalAveragingRecoveryMI_computeSideValue(), oofem::TR_SHELL01::NodalAveragingRecoveryMI_computeSideValue(), oofem::LTRSpace::NodalAveragingRecoveryMI_computeSideValue(), oofem::TR1_2D_CBS::NodalAveragingRecoveryMI_computeSideValue(), oofem::TR1_2D_SUPG2_AXI::NodalAveragingRecoveryMI_computeSideValue(), oofem::CCTPlate::NodalAveragingRecoveryMI_computeSideValue(), oofem::Tr21Stokes::NodalAveragingRecoveryMI_computeSideValue(), oofem::TR1_2D_SUPG2::NodalAveragingRecoveryMI_computeSideValue(), oofem::TR1_2D_SUPG::NodalAveragingRecoveryMI_computeSideValue(), oofem::Tet21Stokes::NodalAveragingRecoveryMI_computeSideValue(), oofem::Shell7Base::NodalAveragingRecoveryMI_computeSideValue(), oofem::NonlinearFluidMaterialStatus::NonlinearFluidMaterialStatus(), oofem::StressStrainBaseVector::operator=(), operator=(), oofem::LevelSetPCS::pcs_stage1(), oofem::HellmichMaterialStatus::printOutputAt(), oofem::NonLinearStatic::proceedStep(), oofem::NonLinearDynamic::proceedStep(), oofem::TrabBone3D::projectOnYieldSurface(), oofem::RCSDNLMaterialStatus::RCSDNLMaterialStatus(), oofem::NodalAveragingRecoveryModel::recoverValues(), oofem::ZZNodalRecoveryModel::recoverValues(), oofem::SPRNodalRecoveryModel::recoverValues(), oofem::StokesFlowVelocityHomogenization::rveGiveCharacteristicData(), oofem::RVEStokesFlowMaterialStatus::RVEStokesFlowMaterialStatus(), oofem::PetscContext::scatterG2N(), oofem::MixedGradientPressureNeumann::setPrescribedDeviatoricGradientFromVoigt(), oofem::LayeredCrossSection::setupLayerMidPlanes(), setValues(), oofem::SimpleInterfaceMaterialStatus::SimpleInterfaceMaterialStatus(), oofem::TriangleMesherInterface::simplifyPSLG(), oofem::DiagPreconditioner::solve(), oofem::CompCol_ILUPreconditioner::solve(), oofem::LineSearchNM::solve(), oofem::InverseIteration::solve(), oofem::DSSMatrix::solve(), oofem::SubspaceIteration::solve(), oofem::FETISolver::solve(), oofem::NRSolver::solve(), oofem::NRSolver2::solve(), oofem::CylindricalALM::solve(), oofem::HuertaErrorEstimator::solveRefinedElementProblem(), oofem::DarcyFlow::solveYourselfAt(), oofem::NLTransientTransportProblem::solveYourselfAt(), oofem::StationaryTransportProblem::solveYourselfAt(), oofem::IncrementalLinearStatic::solveYourselfAt(), oofem::DEIDynamic::solveYourselfAt(), oofem::LinearStatic::solveYourselfAt(), oofem::NonStationaryTransportProblem::solveYourselfAt(), oofem::EigenValueDynamic::solveYourselfAt(), oofem::DIIDynamic::solveYourselfAt(), oofem::StokesFlow::solveYourselfAt(), oofem::LinearStability::solveYourselfAt(), oofem::CBS::solveYourselfAt(), oofem::SUPG::solveYourselfAt(), oofem::NlDEIDynamic::solveYourselfAt(), oofem::Tetrah1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Quad1PlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::PlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QTrPlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QTrPlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::LSpace::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Axisymm3d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TrPlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_CBS::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Truss1d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TrPlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::LTRSpace::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_SUPG2::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::TR1_2D_SUPG::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::StressStrainBaseVector::StressStrainBaseVector(), oofem::StructuralMaterialStatus::StructuralMaterialStatus(), subtract(), oofem::FEI3dTrQuad::surfaceEvalBaseVectorsAt(), oofem::FEI3dTetLin::surfaceEvalN(), oofem::FEI3dHexaLin::surfaceEvalN(), oofem::FEI3dWedgeQuad::surfaceEvalN(), oofem::FEI3dWedgeLin::surfaceEvalN(), oofem::FEI3dTetQuad::surfaceEvalN(), oofem::FEI3dTrQuad::surfaceEvalN(), oofem::FEI3dHexaQuad::surfaceEvalN(), oofem::FEI3dHexaLin::surfaceLocal2global(), oofem::FEI3dWedgeQuad::surfaceLocal2global(), oofem::FEI3dTetLin::surfaceLocal2global(), oofem::FEI3dWedgeLin::surfaceLocal2global(), oofem::FEI3dTrQuad::surfaceLocal2global(), oofem::FEI3dTetQuad::surfaceLocal2global(), oofem::FEI3dHexaQuad::surfaceLocal2global(), oofem::SpoolesSparseMtrx::times(), oofem::SkylineUnsym::times(), oofem::PetscSparseMtrx::times(), oofem::DynCompRow::times(), oofem::DynCompCol::times(), oofem::Skyline::times(), oofem::SymCompCol::times(), oofem::CompCol::times(), oofem::DIIDynamic::timesMtrx(), oofem::NonLinearDynamic::timesMtrx(), oofem::SpoolesSparseMtrx::timesT(), oofem::SkylineUnsym::timesT(), oofem::PetscSparseMtrx::timesT(), oofem::DynCompRow::timesT(), oofem::DynCompCol::timesT(), oofem::CompCol::timesT(), oofem::TrabBone3DStatus::TrabBone3DStatus(), oofem::DiagPreconditioner::trans_solve(), oofem::CompCol_ILUPreconditioner::trans_solve(), oofem::Line::transformIntoPolar(), oofem::MDM::transformStrainToPDC(), oofem::MDM::transformStressFromPDC(), unpackFromCommBuffer(), oofem::FETISolver::unpackGammas(), oofem::NonLinearStatic::unpackMigratingData(), oofem::NonLinearDynamic::unpackMigratingData(), oofem::HydratingHeMoMaterial::updateInternalState(), oofem::HydratingIsoHeatMaterial::updateInternalState(), oofem::NonLinearStatic::updateLoadVectors(), oofem::NodalRecoveryModel::updateRegionRecoveredValues(), oofem::AdaptiveNonLinearStatic::updateYourself(), oofem::MisesMatStatus::updateYourself(), oofem::ZZErrorEstimatorInterface::ZZErrorEstimatorI_computeElementContributions(), oofem::RerShell::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::TR_SHELL01::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::CCTPlate::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::TR1_2D_SUPG2::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::ZZNodalRecoveryModelInterface::ZZNodalRecoveryMI_computeNNMatrix(), and oofem::ZZNodalRecoveryModelInterface::ZZNodalRecoveryMI_computeNValProduct().
| contextIOResultType oofem::FloatArray::restoreYourself | ( | DataStream * | stream, |
| ContextMode | mode | ||
| ) |
Reimplemented in oofem::StressStrainBaseVector.
Definition at line 801 of file flotarry.C.
References allocatedSize, oofem::allocDouble(), oofem::CIO_IOERR, oofem::CIO_OK, oofem::freeDouble(), OOFEM_FATAL2, oofem::DataStream::read(), size, and values.
Referenced by oofem::RVEStokesFlowMaterialStatus::restoreContext(), oofem::FluidDynamicMaterialStatus::restoreContext(), oofem::BinghamFluidMaterial2Status::restoreContext(), oofem::Patch::restoreContext(), oofem::RCSDNLMaterialStatus::restoreContext(), oofem::TransportMaterialStatus::restoreContext(), oofem::PlasticMaterialStatus::restoreContext(), oofem::RheoChainMaterialStatus::restoreContext(), oofem::PerfectlyPlasticMaterialStatus::restoreContext(), oofem::LinearStatic::restoreContext(), oofem::StructuralMaterialStatus::restoreContext(), oofem::EigenValueDynamic::restoreContext(), oofem::MPlasticMaterialStatus::restoreContext(), oofem::LIBeam3dNL2::restoreContext(), oofem::MPlasticMaterial2Status::restoreContext(), oofem::LinearStability::restoreContext(), oofem::DIIDynamic::restoreContext(), oofem::TrabBone3DStatus::restoreContext(), oofem::PlastData::restoreContext(), oofem::CBS::restoreContext(), oofem::Concrete2MaterialStatus::restoreContext(), oofem::AdaptiveNonLinearStatic::restoreContext(), oofem::SUPG::restoreContext(), oofem::MDMStatus::restoreContext(), oofem::CreepData::restoreContext(), oofem::LEPlicElementInterface::restoreContext(), oofem::NonLinearStatic::restoreContext(), oofem::NonLinearDynamic::restoreContext(), oofem::HuertaErrorEstimator::restoreContext(), oofem::SlaveDof::restoreContext(), oofem::NlDEIDynamic::restoreContext(), oofem::RCM2MaterialStatus::restoreContext(), oofem::LevelSetPCS::restoreContext(), oofem::Node::restoreContext(), oofem::PrimaryField::restoreContext(), oofem::IntegrationRule::restoreContext(), oofem::MisesMatStatus::restoreContext(), oofem::RankineMatStatus::restoreContext(), and oofem::StressStrainBaseVector::restoreYourself().
| void oofem::FloatArray::rotatedWith | ( | FloatMatrix & | r, |
| char | mode | ||
| ) |
Returns the receiver a rotated according the change-of-base matrix r.
| r | Rotation matrix. |
| mode | If mode == 't' the method performs the operation , else if mode = 'n' then the method performs the operation . |
Definition at line 687 of file flotarry.C.
References beProductOf(), beTProductOf(), and OOFEM_ERROR.
Referenced by oofem::EngngModel::assembleVectorFromDofManagers(), oofem::EngngModel::assembleVectorFromElements(), oofem::TrPlaneStrRot::computeBodyLoadVectorAt(), oofem::CCTPlate::computeBodyLoadVectorAt(), oofem::TrPlaneStrRot3d::computeBodyLoadVectorAt(), oofem::CCTPlate3d::computeBodyLoadVectorAt(), oofem::RerShell::computeBodyLoadVectorAt(), oofem::StructuralElement::computeBodyLoadVectorAt(), oofem::Beam3d::computeEdgeLoadVectorAt(), oofem::StructuralElement::computeEdgeLoadVectorAt(), oofem::Node::computeLoadVectorAt(), oofem::GradDpElement::computeLocForceLoadVector(), oofem::RigidArmNode::computeMasterContribution(), oofem::StructuralElement::computePointLoadVectorAt(), oofem::IDNLMaterial::computeStressBasedWeight(), oofem::StructuralElement::computeSurfaceLoadVectorAt(), oofem::Element::computeVectorOf(), oofem::Element::computeVectorOfPrescribed(), oofem::Node::drawYourself(), oofem::TR_SHELL01::giveCharacteristicVector(), oofem::DofManager::givePrescribedUnknownVector(), and oofem::DofManager::giveUnknownVector().
| void oofem::FloatArray::setValues | ( | int | n, |
| ... | |||
| ) |
Sets values in array. Convenient for writing small specific vectors.
Definition at line 141 of file flotarry.C.
References resize(), and values.
Referenced by oofem::Shell7Base::computeConvectiveMassForce(), oofem::Shell7Base::computeMassMatrix(), oofem::Shell7Base::computePressureForceAt(), oofem::Shell7Base::edgeEvalCovarBaseVectorsAt(), oofem::FEI2dQuadConst::edgeEvalN(), oofem::Truss1d::EIPrimaryUnknownMI_computePrimaryUnknownVectorAt(), oofem::VTKXMLExportModule::exportCellVarAs(), oofem::Shell7Base::giveGeneralizedStrainComponents(), oofem::FE2FluidMaterial::giveIPValue(), oofem::GaussIntegrationRule::giveLineCoordsAndWeights(), oofem::Tr2Shell7::giveLocalNodeCoords(), oofem::GaussIntegrationRule::giveTriCoordsAndWeights(), oofem::FEI3dLineLin::global2local(), oofem::FEI2dTrQuad::global2local(), oofem::Tr1BubbleStokes::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Tr21Stokes::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Tet1BubbleStokes::SpatialLocalizerI_giveDistanceFromParametricCenter(), and oofem::Tet21Stokes::SpatialLocalizerI_giveDistanceFromParametricCenter().
| contextIOResultType oofem::FloatArray::storeYourself | ( | DataStream * | stream, |
| ContextMode | mode | ||
| ) |
Reimplemented in oofem::StressStrainBaseVector.
Definition at line 779 of file flotarry.C.
References oofem::CIO_IOERR, oofem::CIO_OK, size, values, and oofem::DataStream::write().
Referenced by oofem::RVEStokesFlowMaterialStatus::saveContext(), oofem::FluidDynamicMaterialStatus::saveContext(), oofem::BinghamFluidMaterial2Status::saveContext(), oofem::Patch::saveContext(), oofem::RCSDNLMaterialStatus::saveContext(), oofem::TransportMaterialStatus::saveContext(), oofem::PlasticMaterialStatus::saveContext(), oofem::RheoChainMaterialStatus::saveContext(), oofem::PerfectlyPlasticMaterialStatus::saveContext(), oofem::LinearStatic::saveContext(), oofem::StructuralMaterialStatus::saveContext(), oofem::EigenValueDynamic::saveContext(), oofem::MPlasticMaterialStatus::saveContext(), oofem::LIBeam3dNL2::saveContext(), oofem::MPlasticMaterial2Status::saveContext(), oofem::LinearStability::saveContext(), oofem::DIIDynamic::saveContext(), oofem::TrabBone3DStatus::saveContext(), oofem::PlastData::saveContext(), oofem::CBS::saveContext(), oofem::Concrete2MaterialStatus::saveContext(), oofem::AdaptiveNonLinearStatic::saveContext(), oofem::SUPG::saveContext(), oofem::LEPlicElementInterface::saveContext(), oofem::MDMStatus::saveContext(), oofem::CreepData::saveContext(), oofem::NonLinearStatic::saveContext(), oofem::NonLinearDynamic::saveContext(), oofem::HuertaErrorEstimator::saveContext(), oofem::SlaveDof::saveContext(), oofem::NlDEIDynamic::saveContext(), oofem::RCM2MaterialStatus::saveContext(), oofem::LevelSetPCS::saveContext(), oofem::Node::saveContext(), oofem::PrimaryField::saveContext(), oofem::IntegrationRule::saveContext(), oofem::MisesMatStatus::saveContext(), oofem::RankineMatStatus::saveContext(), and oofem::StressStrainBaseVector::storeYourself().
| void oofem::FloatArray::subtract | ( | const FloatArray & | src | ) |
Subtracts array src to receiver.
If the receiver's size is zero, it adjusts its size to size of src array. If recever's size is nonzero and different from src array size an error is generated.
Definition at line 216 of file flotarry.C.
References giveSize(), OOFEM_ERROR3, resize(), size, and values.
Referenced by oofem::MMALeastSquareProjection::__mapVariable(), oofem::CylindricalALM::checkConvergence(), oofem::MPlasticMaterial::closestPointReturn(), oofem::MPlasticMaterial2::closestPointReturn(), oofem::ConcreteDPM2::computeDeltaPlasticStrainNormCompression(), oofem::ConcreteDPM2::computeDeltaPlasticStrainNormTension(), oofem::ConcreteDPM::computeDuctilityMeasureDamage(), oofem::ConcreteDPM2::computeDuctilityMeasureDamage(), oofem::Beam3d::computeEdgeLoadVectorAt(), oofem::ConcreteDPM2::computeEquivalentStrain(), oofem::MixedGradientPressureDirichlet::computeFields(), oofem::LinearEdgeLoad::computeNArray(), oofem::StructuralEngngModel::computeReaction(), oofem::ConcreteDPM2::computeSecantStiffness(), oofem::NLStructuralElement::computeStrainVector(), oofem::StructuralElement::computeStrainVector(), oofem::IDNLMaterial::computeStressBasedWeight(), oofem::MPlasticMaterial::cuttingPlaneReturn(), oofem::MPlasticMaterial2::cuttingPlaneReturn(), oofem::RotatingBoundary::give(), oofem::AbaqusUserMaterial::giveCharacteristicMatrix(), oofem::FE2FluidMaterial::giveDeviatoricPressureStiffness(), oofem::PolylineNonlocalBarrier::giveDistancePointLine(), oofem::HellmichMaterial::giveEigenStrainVector(), oofem::Beam3d::giveEndForcesVector(), oofem::Beam2d::giveEndForcesVector(), oofem::Beam3d::giveInternalForcesVector(), oofem::Beam2d::giveInternalForcesVector(), oofem::RCM2Material::giveRealPrincipalStressVector3d(), oofem::Concrete2::giveRealStresses3dShellLayer(), oofem::SimpleInterfaceMaterial::giveRealStressVector(), oofem::ConcreteDPM::giveRealStressVector(), oofem::ConcreteDPM2::giveRealStressVector(), oofem::HellmichMaterial::giveRealStressVector(), oofem::B3Material::giveShrinkageStrainVector(), oofem::B3SolidMaterial::giveShrinkageStrainVector(), oofem::StructuralMaterial::giveStressDependentPartOfStrainVector(), oofem::DruckerPragerPlasticitySM::giveVertexAlgorithmicStiffMatrix(), oofem::FE2FluidMaterial::giveVolumetricDeviatoricStiffness(), oofem::FEI3dHexaLin::global2local(), oofem::PrimaryField::initialize(), oofem::DruckerPragerPlasticitySM::performLocalStressReturn(), oofem::MisesMat::performPlasticityReturn(), oofem::RankineMat::performPlasticityReturn(), oofem::ConcreteDPM::performPlasticityReturn(), oofem::ConcreteDPM2::performPlasticityReturn(), oofem::DustMaterial::performStressReturn(), oofem::ConcreteDPM2Status::printOutputAt(), oofem::FETISolver::projection(), oofem::TriangleMesherInterface::simplifyPSLG(), oofem::FETISolver::solve(), oofem::CylindricalALM::solve(), oofem::IncrementalLinearStatic::solveYourselfAt(), oofem::LinearStatic::solveYourselfAt(), oofem::LineSurfaceTension::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::StructuralElementEvaluator::updateInternalState(), oofem::KelvinChainSolidMaterial::updateYourself(), oofem::KelvinChainMaterial::updateYourself(), oofem::MaxwellChainMaterial::updateYourself(), oofem::ConcreteDPMStatus::updateYourself(), and oofem::ZZErrorEstimatorInterface::ZZErrorEstimatorI_computeElementContributions().
| double oofem::FloatArray::sum | ( | ) | const |
Computes the sum of receiver values.
Definition at line 749 of file flotarry.C.
Referenced by beProductOf(), and beTProductOf().
| void oofem::FloatArray::times | ( | double | s | ) |
Multiplies receiver with scalar.
| s | Scalar to multiply by. |
Definition at line 706 of file flotarry.C.
Referenced by oofem::NLTransientTransportProblem::assembleAlgorithmicPartOfRhs(), oofem::AdaptiveNonLinearStatic::assembleInitialLoadVector(), oofem::MixedGradientPressureNeumann::assembleVector(), oofem::EngngModel::assembleVectorFromDofManagers(), oofem::Subdivision::RS_Triangle::bisect(), oofem::Subdivision::RS_Tetra::bisect(), oofem::OctreeSpatialLocalizer::buildOctreeDataStructure(), oofem::CylindricalALM::checkConvergence(), oofem::SUPGElement2::computeBCRhsTerm_MB(), oofem::SUPGElement2::computeBCRhsTerm_MC(), oofem::LIBeam2d::computeBodyLoadVectorAt(), oofem::LIBeam2dNL::computeBodyLoadVectorAt(), oofem::LIBeam3d::computeBodyLoadVectorAt(), oofem::Beam2d::computeBodyLoadVectorAt(), oofem::LIBeam3dNL::computeBodyLoadVectorAt(), oofem::LIBeam3dNL2::computeBodyLoadVectorAt(), oofem::Beam3d::computeBodyLoadVectorAt(), oofem::LIBeam3d2::computeBodyLoadVectorAt(), oofem::Load::computeComponentArrayAt(), oofem::TR1_2D_CBS::computeConvectionTermsI(), oofem::Shell7Base::computeConvectiveMassForce(), oofem::ConcreteDPM::computeDCosThetaDStress(), oofem::ConcreteDPM2::computeDeltaPlasticStrainNormCompression(), oofem::ConcreteDPM2::computeDeltaPlasticStrainNormTension(), oofem::TrabBone3D::computeDensificationStress(), oofem::TR1_2D_CBS::computeDensityRhsVelocityTerms(), oofem::NonlinearFluidMaterial::computeDeviatoricStressVector(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MB(), oofem::SUPGElement2::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG2::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MC(), oofem::TR1_2D_CBS::computeDiffusionTermsI(), oofem::ActiveDof::computeDofTransformation(), oofem::SlaveDof::computeDofTransformation(), oofem::ConcreteDPM::computeDRhoDStress(), oofem::ConcreteDPM2::computeDRhoDStress(), oofem::HTSelement::computeEdgeLoadVectorAt(), oofem::IsotropicDamageMaterial1::computeEta(), oofem::NonLinearStatic::computeExternalLoadReactionContribution(), oofem::PrescribedGradient::computeField(), oofem::MixedGradientPressureDirichlet::computeFields(), oofem::HydratingHeMoMaterial::computeInternalSourceVector(), oofem::HydratingIsoHeatMaterial::computeInternalSourceVector(), oofem::QSpace::computeLoadLSToLRotationMatrix(), oofem::LSpace::computeLoadLSToLRotationMatrix(), oofem::Line2SurfaceTension::computeLoadVector(), oofem::LineSurfaceTension::computeLoadVector(), oofem::MDM::computeLocalDamageTensor(), oofem::TR1_2D_CBS::computePrescribedTractionPressure(), oofem::Shell7Base::computePressureForce(), oofem::Shell7Base::computePressureForceAt(), oofem::Shell7Base::computePressureTangentMatrix(), oofem::StructuralMaterial::computeStressIndependentStrainVector(), oofem::Line2SurfaceTension::computeTangent(), oofem::MixedGradientPressureNeumann::computeTangents(), oofem::LIBeam3dNL::computeTempCurv(), oofem::LIBeam3dNL2::computeTempCurv(), oofem::Shell7Base::computeTractionForce(), oofem::ConstantEdgeLoad::computeValueAt(), oofem::ConstantPressureLoad::computeValueAt(), oofem::ConstantSurfaceLoad::computeValueAt(), oofem::PointLoad::computeValueAt(), oofem::BoundaryLoad::computeValueAt(), oofem::TrabBone3D::constructDerivativeOfPlasFlowDirec(), oofem::TrabBone3D::constructPlasFlowDirec(), oofem::HOMExportModule::doOutput(), oofem::LSpace::drawTriad(), oofem::FEI2dLineQuad::edgeEvaldNds(), oofem::FEI2dLineLin::edgeEvaldNds(), oofem::FEI2dTrQuad::edgeEvaldNds(), oofem::Shell7Base::evalCovarBaseVectorsAt(), oofem::VTKXMLExportModule::exportCellVarAs(), oofem::VTKExportModule::exportCellVars(), oofem::StokesFlowVelocityHomogenization::getMeans(), oofem::PrescribedGradient::give(), oofem::MisesMat::give3dLSMaterialStiffnessMatrix(), oofem::AbaqusUserMaterial::giveCharacteristicMatrix(), oofem::IsotropicDamageMaterialStatus::giveCrackVector(), oofem::FE2FluidMaterial::giveDeviatoricPressureStiffness(), oofem::FE2FluidMaterial::giveDeviatoricStiffnessMatrix(), oofem::PolylineNonlocalBarrier::giveDistancePointLine(), oofem::MaxwellChainMaterial::giveEigenStrainVector(), oofem::KelvinChainMaterial::giveEigenStrainVector(), oofem::B3SolidMaterial::giveEigenStrainVector(), oofem::MPSMaterial::giveEigenStrainVector(), oofem::HellmichMaterial::giveEigenStrainVector(), oofem::TR1_2D_SUPG2::giveElementCenter(), oofem::TR1_2D_SUPG::giveElementCenter(), oofem::TR1_2D_SUPG2_AXI::giveElementCenter(), oofem::Tr21Stokes::giveElementFMatrix(), oofem::NonlinearMassTransferMaterial::giveFluxVector(), oofem::Tr21Stokes::giveIntegratedVelocity(), oofem::Truss3d::giveLocalCoordinateSystem(), oofem::GradDpElement::giveLocalInternalForcesVector(), oofem::IDGMaterial::givePlaneStressStiffMtrx(), oofem::IsotropicDamageMaterial::givePlaneStressStiffMtrx(), oofem::MicroplaneMaterial_Bazant::giveRealStressVector(), oofem::SimpleInterfaceMaterial::giveRealStressVector(), oofem::RCSDNLMaterial::giveRealStressVector(), oofem::RankineMat::giveRealStressVector(), oofem::RCSDEMaterial::giveRealStressVector(), oofem::RCSDMaterial::giveRealStressVector(), oofem::PerfectlyPlasticMaterial::giveRealStressVector(), oofem::RheoChainMaterial::giveRealStressVector(), oofem::PlasticMaterial::giveRealStressVector(), oofem::MPlasticMaterial2::giveRealStressVector(), oofem::ConcreteDPM::giveRealStressVector(), oofem::ConcreteDPM2::giveRealStressVector(), oofem::HellmichMaterial::giveRealStressVector(), oofem::MisesMat::giveRealStressVectorComputedFromDefGrad(), oofem::MisesMat::giveRealStressVectorComputedFromStrain(), oofem::DruckerPragerPlasticitySM::giveRegAlgorithmicStiffMatrix(), oofem::PerfectlyPlasticMaterial::GiveStressCorrectionBackToYieldSurface(), oofem::Homogenize::herveZaoui(), oofem::Node::initializeFrom(), oofem::NURBSInterpolation::local2global(), oofem::TSplineInterpolation::local2global(), oofem::QPlaneStress2d::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Shell7Base::NodalAveragingRecoveryMI_computeNodalValue(), normalize(), oofem::MisesMat::performPlasticityReturn(), oofem::ConcreteDPM2::performPlasticityReturn(), oofem::DruckerPragerPlasticitySM::performRegularReturn(), oofem::DustMaterial::performStressReturn(), oofem::ConcreteDPM2Status::printOutputAt(), oofem::TrabBone3D::projectOnYieldSurface(), oofem::ConcreteDPMStatus::restoreConsistency(), oofem::MixedGradientPressureDirichlet::scale(), oofem::MixedGradientPressureNeumann::scale(), oofem::TriangleMesherInterface::simplifyPSLG(), oofem::Subdivision::smoothMesh(), oofem::LineSearchNM::solve(), oofem::InverseIteration::solve(), oofem::CylindricalALM::solve(), oofem::DEIDynamic::solveYourselfAt(), oofem::NonStationaryTransportProblem::solveYourselfAt(), oofem::CBS::solveYourselfAt(), oofem::LineSurfaceTension::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::FEI3dTrQuad::surfaceEvalNormal(), oofem::FEI3dTetQuad::surfaceEvalNormal(), oofem::DynCompRow::times(), oofem::DynCompCol::times(), oofem::Subdivision::unpackSharedIrregulars(), oofem::HydratingHeMoMaterial::updateInternalState(), oofem::HydratingIsoHeatMaterial::updateInternalState(), oofem::NonLinearStatic::updateLoadVectors(), oofem::Tet1_3D_SUPG::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG_AXI::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG2_AXI::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG2::updateStabilizationCoeffs(), oofem::TR1_2D_SUPG::updateStabilizationCoeffs(), oofem::KelvinChainSolidMaterial::updateYourself(), oofem::KelvinChainMaterial::updateYourself(), and oofem::MaxwellChainMaterial::updateYourself().
| int oofem::FloatArray::unpackFromCommBuffer | ( | CommunicationBuffer & | buff | ) |
Definition at line 851 of file flotarry.C.
References resize(), oofem::CommunicationBuffer::unpackArray(), oofem::CommunicationBuffer::unpackInt(), and values.
Referenced by oofem::RCSDNLMaterial::unpackAndUpdateUnknowns(), oofem::ProcessCommunicatorBuff::unpackFloatArray(), and oofem::CommunicationBuffer::unpackFloatArray().
| void oofem::FloatArray::zero | ( | ) |
Zeroes all coefficients of receiver.
Definition at line 595 of file flotarry.C.
Referenced by oofem::MMALeastSquareProjection::__mapVariable(), oofem::AdaptiveNonLinearStatic::adaptiveRemap(), oofem::NonStationaryTransportProblem::applyIC(), oofem::CBS::applyIC(), oofem::SUPG::applyIC(), oofem::EngngModel::assembleExtrapolatedForces(), oofem::NonLinearStatic::assembleIncrementalReferenceLoadVectors(), oofem::NonLinearDynamic::assembleIncrementalReferenceLoadVectors(), oofem::AdaptiveNonLinearStatic::assembleInitialLoadVector(), oofem::DIIDynamic::assembleLoadVector(), oofem::EngngModel::assembleVector(), oofem::BinghamFluidMaterial2Status::BinghamFluidMaterial2Status(), oofem::SymCompCol::buildInternalStructure(), oofem::CompCol::buildInternalStructure(), oofem::NRSolver::checkConvergence(), oofem::CylindricalALM::checkConvergence(), oofem::MPlasticMaterial::closestPointReturn(), oofem::MPlasticMaterial2::closestPointReturn(), oofem::CompoDamageMatStatus::CompoDamageMatStatus(), oofem::TR1_2D_SUPG_AXI::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeAdvectionTerm_MB(), oofem::SUPGElement2::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG2::computeAdvectionTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeAdvectionTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeAdvectionTerm_MC(), oofem::SUPGElement2::computeAdvectionTerm_MC(), oofem::TR1_2D_SUPG_AXI::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeBCRhsTerm_MB(), oofem::SUPGElement2::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG2::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeBCRhsTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeBCRhsTerm_MC(), oofem::SUPGElement2::computeBCRhsTerm_MC(), oofem::TR1_2D_SUPG::computeBCRhsTerm_MC(), oofem::TransportElement::computeBCSubVectorAt(), oofem::TransportElement::computeBCVectorAt(), oofem::LSpaceBB::computeBmatrixAt(), oofem::PlaneStress2d::computeBmatrixAt(), oofem::Quad1PlaneStrain::computeBmatrixAt(), oofem::TrPlaneStrRot::computeBodyLoadVectorAt(), oofem::CCTPlate::computeBodyLoadVectorAt(), oofem::TrPlaneStrRot3d::computeBodyLoadVectorAt(), oofem::CCTPlate3d::computeBodyLoadVectorAt(), oofem::Quad1Mindlin::computeBodyLoadVectorAt(), oofem::Tr1BubbleStokes::computeBodyLoadVectorAt(), oofem::Tr21Stokes::computeBodyLoadVectorAt(), oofem::Tet1BubbleStokes::computeBodyLoadVectorAt(), oofem::Tet21Stokes::computeBodyLoadVectorAt(), oofem::Quad1MindlinShell3D::computeBodyLoadVectorAt(), oofem::Load::computeComponentArrayAt(), oofem::Shell7Base::computeConvectiveMassForce(), oofem::MazarsMaterial::computeDamageParam(), oofem::ConcreteDPM::computeDDKappaDDeltaLambdaDInv(), oofem::ConcreteDPM2::computeDDKappaDDeltaLambdaDInv(), oofem::TrabBone3D::computeDensificationStress(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MB(), oofem::SUPGElement2::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG2::computeDiffusionTerm_MB(), oofem::TR1_2D_SUPG_AXI::computeDiffusionTerm_MC(), oofem::TR1_2D_SUPG2_AXI::computeDiffusionTerm_MC(), oofem::SUPGElement2::computeDiffusionTerm_MC(), oofem::TR1_2D_SUPG::computeDiffusionTerm_MC(), oofem::TR1_2D_SUPG2::computeDiffusionTerm_MC(), oofem::RheoChainMaterial::computeDiscreteRelaxationFunction(), oofem::GradDpElement::computeDisplacementDegreesOfFreedom(), oofem::Tr1Darcy::computeEdgeBCSubVectorAt(), oofem::Tr1BubbleStokes::computeEdgeBCSubVectorAt(), oofem::Tr21Stokes::computeEdgeBCSubVectorAt(), oofem::Tet1BubbleStokes::computeEdgeBCSubVectorAt(), oofem::TransportElement::computeEdgeBCSubVectorAt(), oofem::HTSelement::computeEdgeLoadVectorAt(), oofem::Beam2d::computeEdgeLoadVectorAt(), oofem::Beam3d::computeEdgeLoadVectorAt(), oofem::Shell7Base::computeEdgeLoadVectorAt(), oofem::StructuralElement::computeEdgeLoadVectorAt(), oofem::IsotropicDamageMaterial1::computeEta(), oofem::StructuralEngngModel::computeExternalLoadReactionContribution(), oofem::PrescribedGradient::computeField(), oofem::MixedGradientPressureDirichlet::computeFields(), oofem::TransportElement::computeFlow(), oofem::GradDpElement::computeForceLoadVector(), oofem::Shell7Base::computeGeneralizedStrainVector(), oofem::InterfaceElement3dTrLin::computeGlobalCoordinates(), oofem::Tr1Darcy::computeInternalForcesVector(), oofem::Tr1BubbleStokes::computeInternalForcesVector(), oofem::Tr21Stokes::computeInternalForcesVector(), oofem::Tet1BubbleStokes::computeInternalForcesVector(), oofem::Tet21Stokes::computeInternalForcesVector(), oofem::TransportElement::computeInternalSourceRhsVectorAt(), oofem::HydratingHeMoMaterial::computeInternalSourceVector(), oofem::HydratingIsoHeatMaterial::computeInternalSourceVector(), oofem::TR21_2D_SUPG::computeIntersection(), oofem::DruckerPragerCutMat::computeKGradientVector(), oofem::Tr1Darcy::computeLoadVector(), oofem::Line2SurfaceTension::computeLoadVector(), oofem::LineSurfaceTension::computeLoadVector(), oofem::Tr1BubbleStokes::computeLoadVector(), oofem::Tr21Stokes::computeLoadVector(), oofem::Tet1BubbleStokes::computeLoadVector(), oofem::Tet21Stokes::computeLoadVector(), oofem::NlDEIDynamic::computeLoadVector(), oofem::SurfaceTensionBoundaryCondition::computeLoadVectorFromElement(), oofem::RerShell::computeLocalCoordinates(), oofem::CCTPlate::computeLocalCoordinates(), oofem::GradDpElement::computeLocForceLoadVector(), oofem::Shell7Base::computeMassMatrix(), oofem::Shell7Base::computeMassMatrixNum(), oofem::NlDEIDynamic::computeMassMtrx(), oofem::LinearEdgeLoad::computeNArray(), oofem::GradDpElement::computeNonForceLoadVector(), oofem::GradDpElement::computeNonlocalDegreesOfFreedom(), oofem::TR1_2D_CBS::computeNumberOfNodalPrescribedTractionPressureContributions(), oofem::SPRNodalRecoveryModel::computePatch(), oofem::MPSMaterial::computePointShrinkageStrainVector(), oofem::B3SolidMaterial::computePointShrinkageStrainVectorMPS(), oofem::TR1_2D_CBS::computePrescribedTractionPressure(), oofem::Shell7Base::computePressureForce(), oofem::Shell7Base::computePressureForceAt(), oofem::Shell7Base::computePressureTangentMatrix(), oofem::StrainVector::computePrincipalValDir(), oofem::StressVector::computePrincipalValDir(), oofem::StructuralMaterial::computePrincipalValDir(), oofem::StrainVector::computePrincipalValues(), oofem::StressVector::computePrincipalValues(), oofem::StructuralMaterial::computePrincipalValues(), oofem::HTSelement::computePsVectorAt(), oofem::HTSelement::computePuVectorAt(), oofem::StructuralEngngModel::computeReaction(), oofem::Shell7Base::computeSectionalForces(), oofem::B3Material::computeShrinkageStrainVector(), oofem::B3SolidMaterial::computeShrinkageStrainVector(), oofem::Shell7Base::computeSolutionFields(), oofem::Tet21Stokes::computeStiffnessMatrix(), oofem::Masonry02::computeStrainHardeningVarsIncrement(), oofem::DruckerPragerCutMat::computeStrainHardeningVarsIncrement(), oofem::Q4Axisymm::computeStrainVector(), oofem::L4Axisymm::computeStrainVector(), oofem::Axisymm3d::computeStrainVector(), oofem::TrPlaneStrRot::computeStrainVector(), oofem::StructuralElementEvaluator::computeStrainVector(), oofem::NLStructuralElement::computeStrainVector(), oofem::StructuralElement::computeStrainVector(), oofem::MicroplaneMaterial::computeStrainVectorComponents(), oofem::LIBeam2d::computeStrainVectorInLayer(), oofem::LIBeam2dNL::computeStrainVectorInLayer(), oofem::RerShell::computeStrainVectorInLayer(), oofem::Beam2d::computeStrainVectorInLayer(), oofem::Quad1Mindlin::computeStrainVectorInLayer(), oofem::Quad1MindlinShell3D::computeStrainVectorInLayer(), oofem::CCTPlate::computeStrainVectorInLayer(), oofem::J2MPlasticMaterial::computeStressGradientVector(), oofem::J2Mat::computeStressGradientVector(), oofem::Masonry02::computeStressGradientVector(), oofem::SimpleCrossSection::computeStressIndependentStrainVector(), oofem::StructuralMaterial::computeStressIndependentStrainVector(), oofem::Tet21Stokes::computeSurfaceBCSubVectorAt(), oofem::TransportElement::computeSurfaceBCSubVectorAt(), oofem::Shell7Base::computeSurfaceLoadVectorAt(), oofem::StructuralElement::computeSurfaceLoadVectorAt(), oofem::Tet1BubbleStokes::computeSurfBCSubVectorAt(), oofem::LineSurfaceTension::computeTangent(), oofem::MixedGradientPressureDirichlet::computeTangents(), oofem::MixedGradientPressureNeumann::computeTangents(), oofem::B3Material::computeTotalAverageShrinkageStrainVector(), oofem::B3SolidMaterial::computeTotalAverageShrinkageStrainVector(), oofem::Shell7Base::computeTractionForce(), oofem::ConstantEdgeLoad::computeValueAt(), oofem::TrabBone3D::constructAnisoFtensor(), oofem::TrabBone3D::constructDerivativeOfPlasFlowDirec(), oofem::TrabBone3D::constructPlasFlowDirec(), oofem::StressStrainBaseVector::convertFromFullForm(), oofem::StressStrainBaseVector::convertToFullForm(), oofem::MPlasticMaterial::cuttingPlaneReturn(), oofem::MPlasticMaterial2::cuttingPlaneReturn(), oofem::SPRNodalRecoveryModel::determineValuesFromPatch(), oofem::LEPlic::doCellDLS(), oofem::HOMExportModule::doOutput(), oofem::Lattice2d::drawSpecial(), oofem::FEI2dLineHermite::edgeEvald2Nds2(), oofem::FEI2dTrConst::edgeEvaldNds(), oofem::FEI2dLineHermite::edgeEvaldNds(), oofem::Shell7Base::edgeEvalInitialCovarBaseVectorsAt(), oofem::Shell7Base::edgeEvalInitialDirectorAt(), oofem::Shell7Base::edgeGiveInitialSolutionVector(), oofem::Line2SurfaceTension::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Line2BoundaryElement::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::LineSurfaceTension::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tr1BubbleStokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tr21Stokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tet1BubbleStokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::Tet21Stokes::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::HellmichMaterial::elasticCompliance(), oofem::HellmichMaterial::elasticStiffness(), oofem::HuertaErrorEstimator::estimateError(), oofem::NURBSInterpolation::evaldNdx(), oofem::BSplineInterpolation::evaldNdx(), oofem::Shell7Base::evalInitialCovarBaseVectorsAt(), oofem::Shell7Base::evalInitialDirectorAt(), oofem::FEI1dQuad::evalN(), oofem::FEI1dHermite::evalN(), oofem::FEI2dLineHermite::evalN(), oofem::DiscontinuousFunction::evaluateDerivativeAt(), oofem::RampFunction::evaluateDerivativeAt(), oofem::VTKXMLExportModule::exportCellVarAs(), oofem::VTKExportModule::exportIntVarAs(), oofem::VTKExportModule::exportPrimVarAs(), oofem::SkylineUnsym::factorized(), oofem::LIBeam3d::FiberedCrossSectionInterface_computeStrainVectorInFiber(), oofem::Beam3d::FiberedCrossSectionInterface_computeStrainVectorInFiber(), oofem::LIBeam3d2::FiberedCrossSectionInterface_computeStrainVectorInFiber(), oofem::RheoChainMaterial::generateLogTimeScale(), oofem::VTKExportModule::getDofManPrimaryVariable(), oofem::StokesFlowVelocityHomogenization::getMeans(), oofem::VTKXMLExportModule::getPrimaryVariable(), oofem::RotatingBoundary::give(), oofem::AbaqusUserMaterial::giveCharacteristicMatrix(), oofem::PlaneStress2d::giveCharacteristicSize(), oofem::TrPlaneStress2d::giveCharacteristicSize(), oofem::SUPGElement::giveCharacteristicVector(), oofem::SUPGElement2::giveCharacteristicVector(), oofem::Lattice2d::giveCrossSectionCoordinates(), oofem::FE2FluidMaterial::giveDeviatoricPressureStiffness(), oofem::FluidDynamicMaterial::giveDeviatoricPressureStiffness(), oofem::BinghamFluidMaterial2::giveDeviatoricStiffnessMatrix(), oofem::FE2FluidMaterial::giveDeviatoricStiffnessMatrix(), oofem::Shell7Base::giveDualBase(), oofem::KelvinChainSolidMaterial::giveEigenStrainVector(), oofem::KelvinChainMaterial::giveEigenStrainVector(), oofem::HellmichMaterial::giveEigenStrainVector(), oofem::TR1_2D_SUPG2::giveElementCenter(), oofem::TR1_2D_SUPG::giveElementCenter(), oofem::TR1_2D_SUPG2_AXI::giveElementCenter(), oofem::Tr21Stokes::giveElementFMatrix(), oofem::SimpleCrossSection::giveFullCharacteristicVector(), oofem::FiberedCrossSection::giveFullCharacteristicVector(), oofem::LayeredCrossSection::giveFullCharacteristicVector(), oofem::StructuralMaterial::giveFullCharacteristicVector(), oofem::Shell7Base::giveInitialSolutionVector(), oofem::StructuralEngngModel::giveInternalForces(), oofem::MacroLSpace::giveInternalForcesVector(), oofem::GradDpElement::giveInternalForcesVector(), oofem::StructuralElementEvaluator::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector(), oofem::StructuralElement::giveInternalForcesVector(), oofem::NLStructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::StructuralElement::giveInternalForcesVector_withIRulesAsSubcells(), oofem::RVEStokesFlow::giveIPValue(), oofem::DruckerPragerCutMat::giveIPValue(), oofem::StructuralMaterial::giveIPValue(), oofem::DruckerPragerPlasticitySM::giveIPValue(), oofem::HellmichMaterial::giveIPValue(), oofem::ConcreteDPM2::giveIPValue(), oofem::Truss3d::giveLocalCoordinateSystem(), oofem::GradDpElement::giveNonlocalInternalForcesVector(), oofem::HellmichMaterial::givePrestressStrainVector(), oofem::M4Material::giveRealMicroplaneStressVector(), oofem::RCM2Material::giveRealPrincipalStressVector3d(), oofem::Concrete2::giveRealStresses3dShellLayer(), oofem::MicroplaneMaterial_Bazant::giveRealStressVector(), oofem::SimpleInterfaceMaterial::giveRealStressVector(), oofem::ConcreteDPM2::giveRealStressVector(), oofem::HellmichMaterial::giveRealStressVector(), oofem::SimpleCrossSection::giveReducedCharacteristicVector(), oofem::StructuralMaterial::giveReducedCharacteristicVector(), oofem::IDNLMaterial::giveRemoteNonlocalStiffnessContribution(), oofem::B3Material::giveShrinkageStrainVector(), oofem::B3SolidMaterial::giveShrinkageStrainVector(), oofem::MPSMaterial::giveShrinkageStrainVector(), oofem::LayeredCrossSection::giveSlaveGaussPoint(), oofem::LayeredCrossSection::giveSlaveGaussPointNew(), oofem::B3Material::giveThermalDilatationVector(), oofem::M4Material::giveThermalDilatationVector(), oofem::IsotropicLinearElasticMaterial::giveThermalDilatationVector(), oofem::B3SolidMaterial::giveThermalDilatationVector(), oofem::CohesiveInterfaceMaterial::giveThermalDilatationVector(), oofem::IsoInterfaceDamageMaterial::giveThermalDilatationVector(), oofem::MPSMaterial::giveThermalDilatationVector(), oofem::IsotropicDamageMaterial::giveThermalDilatationVector(), oofem::MDM::giveThermalDilatationVector(), oofem::HellmichMaterial::giveThermalDilatationVector(), oofem::NURBSInterpolation::giveTransformationJacobian(), oofem::BSplineInterpolation::giveTransformationJacobian(), oofem::DofManager::giveUnknownVectorOfType(), oofem::Node::giveUpdatedCoordinate(), oofem::FE2FluidMaterial::giveVolumetricDeviatoricStiffness(), oofem::FluidDynamicMaterial::giveVolumetricDeviatoricStiffness(), oofem::FE2FluidMaterial::giveVolumetricPressureStiffness(), oofem::FEI3dHexaLin::global2local(), oofem::FEI3dTetQuad::global2local(), oofem::FEI2dTrQuad::global2local(), oofem::FEI2dQuadLin::global2local(), oofem::FEI2dQuadQuad::global2local(), oofem::FEI3dHexaQuad::global2local(), oofem::Homogenize::herveZaoui(), oofem::CompCol_ICPreconditioner::ICSolve(), oofem::DynCompRow::ILUPsolve(), oofem::DiagPreconditioner::init(), oofem::DofDistributedPrimaryField::initialize(), oofem::PrimaryField::initialize(), oofem::AdaptiveNonLinearStatic::initializeAdaptiveFrom(), oofem::ExternalFieldGenerator::initializeFrom(), oofem::PrescribedGradient::initializeFrom(), oofem::MixedGradientPressureDirichlet::initializeFrom(), oofem::PlasticMaterialStatus::initTempStatus(), oofem::PerfectlyPlasticMaterialStatus::initTempStatus(), oofem::MPlasticMaterialStatus::initTempStatus(), oofem::MPlasticMaterial2Status::initTempStatus(), oofem::Concrete2MaterialStatus::initTempStatus(), oofem::AbaqusUserMaterialStatus::initTempStatus(), oofem::MisesMatStatus::initTempStatus(), oofem::RankineMatStatus::initTempStatus(), oofem::InterfaceElem1d::InterfaceElem1d(), oofem::IsotropicDamageMaterialStatus::IsotropicDamageMaterialStatus(), oofem::StressStrainBaseVector::letStressStrainModeBe(), oofem::NURBSInterpolation::local2global(), oofem::FEI3dWedgeQuad::local2global(), oofem::FEI2dLineLin::local2global(), oofem::FEI2dTrQuad::local2global(), oofem::FEI2dLineHermite::local2global(), oofem::FEI2dQuadQuad::local2global(), oofem::TSplineInterpolation::local2global(), oofem::BSplineInterpolation::local2global(), oofem::ls2fit(), oofem::TR21_2D_SUPG::LS_PCS_computeVOFFractions(), oofem::VTKXMLExportModule::makeFullForm(), oofem::EIPrimaryUnknownMapper::mapAndUpdate(), oofem::LWedge::NodalAveragingRecoveryMI_computeNodalValue(), oofem::QSpace::NodalAveragingRecoveryMI_computeNodalValue(), oofem::Truss3d::NodalAveragingRecoveryMI_computeNodalValue(), oofem::QWedge::NodalAveragingRecoveryMI_computeNodalValue(), oofem::QTRSpace::NodalAveragingRecoveryMI_computeNodalValue(), oofem::NonlinearFluidMaterialStatus::NonlinearFluidMaterialStatus(), oofem::LevelSetPCS::pcs_stage1(), oofem::ConcreteDPM::performRegularReturn(), oofem::ConcreteDPM2::performRegularReturn(), oofem::DustMaterial::performStressReturn(), oofem::DruckerPragerPlasticitySM::performVertexReturn(), oofem::HellmichMaterialStatus::printOutputAt(), oofem::NonLinearStatic::proceedStep(), oofem::NonLinearDynamic::proceedStep(), oofem::TrabBone3D::projectOnYieldSurface(), oofem::NodalAveragingRecoveryModel::recoverValues(), oofem::ZZNodalRecoveryModel::recoverValues(), oofem::SPRNodalRecoveryModel::recoverValues(), oofem::RVEStokesFlowMaterialStatus::RVEStokesFlowMaterialStatus(), oofem::SimpleInterfaceMaterialStatus::SimpleInterfaceMaterialStatus(), oofem::Subdivision::smoothMesh(), oofem::CompCol_ILUPreconditioner::solve(), oofem::SubspaceIteration::solve(), oofem::FETISolver::solve(), oofem::NRSolver::solve(), oofem::NRSolver2::solve(), oofem::CylindricalALM::solve(), oofem::HuertaErrorEstimator::solveRefinedElementProblem(), oofem::DarcyFlow::solveYourselfAt(), oofem::StationaryTransportProblem::solveYourselfAt(), oofem::NLTransientTransportProblem::solveYourselfAt(), oofem::IncrementalLinearStatic::solveYourselfAt(), oofem::DEIDynamic::solveYourselfAt(), oofem::LinearStatic::solveYourselfAt(), oofem::NonStationaryTransportProblem::solveYourselfAt(), oofem::EigenValueDynamic::solveYourselfAt(), oofem::DIIDynamic::solveYourselfAt(), oofem::StokesFlow::solveYourselfAt(), oofem::LinearStability::solveYourselfAt(), oofem::CBS::solveYourselfAt(), oofem::SUPG::solveYourselfAt(), oofem::NlDEIDynamic::solveYourselfAt(), oofem::Quad1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QBrick1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Brick1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::HellmichMaterial::stressReturn(), oofem::StressStrainBaseVector::StressStrainBaseVector(), oofem::StructuralMaterialStatus::StructuralMaterialStatus(), oofem::SpoolesSparseMtrx::times(), oofem::SkylineUnsym::times(), oofem::DynCompRow::times(), oofem::DynCompCol::times(), oofem::Skyline::times(), oofem::SymCompCol::times(), oofem::CompCol::times(), oofem::DIIDynamic::timesMtrx(), oofem::NonLinearDynamic::timesMtrx(), oofem::SpoolesSparseMtrx::timesT(), oofem::SkylineUnsym::timesT(), oofem::DynCompRow::timesT(), oofem::DynCompCol::timesT(), oofem::CompCol::timesT(), oofem::DarcyFlow::updateComponent(), oofem::StokesFlow::updateComponent(), oofem::HydratingHeMoMaterial::updateInternalState(), oofem::HydratingIsoHeatMaterial::updateInternalState(), oofem::NonLinearStatic::updateLoadVectors(), oofem::PerfectlyPlasticMaterialStatus::updateYourself(), oofem::DynCompRow::zero(), oofem::DynCompCol::zero(), oofem::ZZErrorEstimatorInterface::ZZErrorEstimatorI_computeElementContributions(), oofem::RerShell::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::TR_SHELL01::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), oofem::CCTPlate::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx(), and oofem::ZZNodalRecoveryModelInterface::ZZNodalRecoveryMI_computeNValProduct().
int oofem::FloatArray::allocatedSize [protected] |
allocated space size for array.
Definition at line 90 of file flotarry.h.
Referenced by FloatArray(), hardResize(), resize(), and restoreYourself().
int oofem::FloatArray::size [protected] |
Size of array.
Definition at line 88 of file flotarry.h.
Referenced by add(), beDifferenceOf(), beMaxOf(), beMinOf(), beScaled(), beSubArrayOf(), checkSizeTowards(), oofem::StrainVector::computePrincipalValDir(), oofem::StressVector::computePrincipalValDir(), oofem::StrainVector::computePrincipalValues(), oofem::StressVector::computePrincipalValues(), computeSquaredNorm(), containsOnlyZeroes(), oofem::StressStrainBaseVector::convertFromFullForm(), dotProduct(), FloatArray(), givePackSize(), giveSize(), hardResize(), isEmpty(), isNotEmpty(), negated(), oofem::StressStrainBaseVector::operator=(), operator=(), packToCommBuffer(), oofem::StressVector::printYourself(), oofem::StrainVector::printYourself(), printYourself(), pY(), resize(), restoreYourself(), storeYourself(), subtract(), sum(), times(), and zero().
double* oofem::FloatArray::values [protected] |
Stored values of vector.
Definition at line 92 of file flotarry.h.
Referenced by add(), oofem::StressVector::applyDeviatoricElasticCompliance(), oofem::StrainVector::applyDeviatoricElasticStiffness(), oofem::StressVector::applyElasticCompliance(), oofem::StrainVector::applyElasticStiffness(), at(), beDifferenceOf(), beMaxOf(), beMinOf(), beScaled(), beSubArrayOf(), oofem::StressVector::computeFirstInvariant(), oofem::StressVector::computeSecondInvariant(), computeSquaredNorm(), oofem::StrainVector::computeStrainNorm(), oofem::StressVector::computeStressNorm(), oofem::StressVector::computeThirdInvariant(), oofem::StrainVector::computeVolumeChange(), containsOnlyZeroes(), dotProduct(), FloatArray(), givePointer(), hardResize(), negated(), operator()(), oofem::StressStrainBaseVector::operator=(), operator=(), packToCommBuffer(), resize(), restoreYourself(), setValues(), storeYourself(), subtract(), sum(), times(), unpackFromCommBuffer(), zero(), and ~FloatArray().