OOFEM  2.1
Namespaces | Functions
error.h File Reference
#include "oofemcfg.h"
#include "logger.h"

Go to the source code of this file.

Namespaces

namespace  oofem

Defines

#define OOFEM_CLASS_ERROR1(_1)   error(__FILE__, __LINE__, _1);
 @ Macros calling the error/warning service, which is defined for all classes derived form FEMComponent and some others classes.
#define OOFEM_CLASS_ERROR2(_1, _2)   error(__FILE__, __LINE__, _1, _2);
#define OOFEM_CLASS_ERROR3(_1, _2, _3)   error(__FILE__, __LINE__, _1, _2, _3);
#define OOFEM_CLASS_ERROR4(_1, _2, _3, _4)   error(__FILE__, __LINE__, _1, _2, _3, _4);
#define OOFEM_CLASS_ERROR5(_1, _2, _3, _4, _5)   error(__FILE__, __LINE__, _1, _2, _3, _4, _5);
#define OOFEM_CLASS_ERROR6(_1, _2, _3, _4, _5, _6)   error(__FILE__, __LINE__, _1, _2, _3, _4, _5, _6);
#define _error1(_1)   OOFEM_CLASS_ERROR1(_1)
#define _error2(_1, _2)   OOFEM_CLASS_ERROR2(_1, _2)
#define _error3(_1, _2, _3)   OOFEM_CLASS_ERROR3(_1, _2, _3)
#define _error4(_1, _2, _3, _4)   OOFEM_CLASS_ERROR4(_1, _2, _3, _4)
#define _error5(_1, _2, _3, _4, _5)   OOFEM_CLASS_ERROR5(_1, _2, _3, _4, _5)
#define _error6(_1, _2, _3, _4, _5, _6)   OOFEM_CLASS_ERROR6(_1, _2, _3, _4, _5, _6)
#define OOFEM_CLASS_WARNING1(_1)   warning(__FILE__, __LINE__, _1);
#define OOFEM_CLASS_WARNING2(_1, _2)   warning(__FILE__, __LINE__, _1, _2);
#define OOFEM_CLASS_WARNING3(_1, _2, _3)   warning(__FILE__, __LINE__, _1, _2, _3);
#define OOFEM_CLASS_WARNING4(_1, _2, _3, _4)   warning(__FILE__, __LINE__, _1, _2, _3, _4);
#define _warning1(_1)   OOFEM_CLASS_WARNING1(_1)
#define _warning2(_1, _2)   OOFEM_CLASS_WARNING2(_1, _2)
#define _warning3(_1, _2, _3)   OOFEM_CLASS_WARNING3(_1, _2, _3)
#define _warning4(_1, _2, _3, _4)   OOFEM_CLASS_WARNING4(_1, _2, _3, _4)
#define OOFEM_CLASS_ERROR(_1)   OOFEM_CLASS_ERROR1(_1)
#define _error(_1)   _error1(_1)
#define OOFEM_CLASS_WARNING(_1)   OOFEM_CLASS_WARNING1(_1)
#define _warning(_1)   _warning1(_1)
#define OOFEM_FATAL1(_1)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, __FILE__, __LINE__, _1); oofem_exit(1); }
 @ Log-family macros that use OOFEM loggers and exit (for errors and fatals).
#define OOFEM_FATAL2(_1, _2)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, __FILE__, __LINE__, _1, _2); oofem_exit(1); }
#define OOFEM_FATAL3(_1, _2, _3)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, __FILE__, __LINE__, _1, _2, _3); oofem_exit(1); }
#define OOFEM_ERROR1(_1)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1); oofem_exit(1); }
#define OOFEM_ERROR2(_1, _2)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1, _2); oofem_exit(1); }
#define OOFEM_ERROR3(_1, _2, _3)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1, _2, _3); oofem_exit(1); }
#define OOFEM_ERROR4(_1, _2, _3, _4)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1, _2, _3, _4); oofem_exit(1); }
#define OOFEM_ERROR5(_1, _2, _3, _4, _5)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1, _2, _3, _4, _5); oofem_exit(1); }
#define OOFEM_ERROR6(_1, _2, _3, _4, _5, _6)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1, _2, _3, _4, _5, _6); oofem_exit(1); }
#define OOFEM_WARNING1(_1)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1); }
#define OOFEM_WARNING2(_1, _2)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1, _2); }
#define OOFEM_WARNING3(_1, _2, _3)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1, _2, _3); }
#define OOFEM_WARNING4(_1, _2, _3, _4)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1, _2, _3, _4); }
#define OOFEM_WARNING5(_1, _2, _3, _4, _5)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1, _2, _3, _4, _5); }
#define OOFEM_WARNING6(_1, _2, _3, _4, _5, _6)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1, _2, _3, _4, _5, _6); }
#define OOFEM_FATAL(_1)   OOFEM_FATAL1(_1)
#define OOFEM_ERROR(_1)   OOFEM_ERROR1(_1)
#define OOFEM_WARNING(_1)   OOFEM_WARNING1(_1)
#define __OOFEM_FATAL1(_file, _line, _1)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, _file, _line, _1); oofem_exit(1); }
 @ Log-family macros that allow to pass file and line info.
#define __OOFEM_FATAL2(_file, _line, _1, _2)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, _file, _line, _1, _2); oofem_exit(1); }
#define __OOFEM_FATAL3(_file, _line, _1, _2, _3)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, _file, _line, _1, _2, _3); oofem_exit(1); }
#define __OOFEM_ERROR1(_file, _line, _1)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1); oofem_exit(1); }
#define __OOFEM_ERROR2(_file, _line, _1, _2)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2); oofem_exit(1); }
#define __OOFEM_ERROR3(_file, _line, _1, _2, _3)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2, _3); oofem_exit(1); }
#define __OOFEM_ERROR4(_file, _line, _1, _2, _3, _4)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2, _3, _4); oofem_exit(1); }
#define __OOFEM_ERROR5(_file, _line, _1, _2, _3, _4, _5)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2, _3, _4, _5); oofem_exit(1); }
#define __OOFEM_ERROR6(_file, _line, _1, _2, _3, _4, _5, _6)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2, _3, _4, _5, _6); oofem_exit(1); }
#define __OOFEM_ERROR7(_file, _line, _1, _2, _3, _4, _5, _6, _7)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2, _3, _4, _5, _6, _7); oofem_exit(1); }
#define __OOFEM_WARNING1(_file, _line, _1)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, _file, _line, _1); }
#define __OOFEM_WARNING2(_file, _line, _1, _2)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, _file, _line, _1, _2); }
#define __OOFEM_WARNING3(_file, _line, _1, _2, _3)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, _file, _line, _1, _2, _3); }
#define __OOFEM_WARNING4(_file, _line, _1, _2, _3, _4)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, _file, _line, _1, _2, _3, _4); }
#define __OOFEM_WARNING5(_file, _line, _1, _2, _3, _4, _5)   { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, _file, _line, _1, _2, _3, _4, _5); }
#define __OOFEM_FATAL(_file, _line, _1)   __OOFEM_FATAL1(_file, _line, _1)
#define __OOFEM_ERROR(_file, _line, _1)   __OOFEM_ERROR1(_file, _line, _1)
#define __OOFEM_WARNING(_file, _line, _1)   __OOFEM_WARNING1(_file, _line, _1)

Functions

void oofem::oofem_exit (int code)
 Global variable containing warning level, should be in interval (0,3).

Define Documentation

#define __OOFEM_ERROR (   _file,
  _line,
  _1 
)    __OOFEM_ERROR1(_file, _line, _1)

Definition at line 165 of file error.h.

#define __OOFEM_ERROR1 (   _file,
  _line,
  _1 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1); oofem_exit(1); }

Definition at line 150 of file error.h.

#define __OOFEM_ERROR2 (   _file,
  _line,
  _1,
  _2 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2); oofem_exit(1); }

Definition at line 151 of file error.h.

Referenced by oofem::PrimaryUnknownMapper::error(), and oofem::ContextIOERR::print().

#define __OOFEM_ERROR3 (   _file,
  _line,
  _1,
  _2,
  _3 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2, _3); oofem_exit(1); }
#define __OOFEM_ERROR4 (   _file,
  _line,
  _1,
  _2,
  _3,
  _4 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2, _3, _4); oofem_exit(1); }

Definition at line 153 of file error.h.

Referenced by oofem::FEMComponent::error(), and oofem::EngngModel::error().

#define __OOFEM_ERROR5 (   _file,
  _line,
  _1,
  _2,
  _3,
  _4,
  _5 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2, _3, _4, _5); oofem_exit(1); }

Definition at line 154 of file error.h.

Referenced by oofem::Dof::error().

#define __OOFEM_ERROR6 (   _file,
  _line,
  _1,
  _2,
  _3,
  _4,
  _5,
  _6 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2, _3, _4, _5, _6); oofem_exit(1); }

Definition at line 155 of file error.h.

#define __OOFEM_ERROR7 (   _file,
  _line,
  _1,
  _2,
  _3,
  _4,
  _5,
  _6,
  _7 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, _file, _line, _1, _2, _3, _4, _5, _6, _7); oofem_exit(1); }

Definition at line 156 of file error.h.

Referenced by oofem::InputRecord::report_error().

#define __OOFEM_FATAL (   _file,
  _line,
  _1 
)    __OOFEM_FATAL1(_file, _line, _1)

Definition at line 164 of file error.h.

#define __OOFEM_FATAL1 (   _file,
  _line,
  _1 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, _file, _line, _1); oofem_exit(1); }

@ Log-family macros that allow to pass file and line info.

They use OOFEM loggers and exit (fatals and errors).

Definition at line 145 of file error.h.

#define __OOFEM_FATAL2 (   _file,
  _line,
  _1,
  _2 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, _file, _line, _1, _2); oofem_exit(1); }

Definition at line 146 of file error.h.

#define __OOFEM_FATAL3 (   _file,
  _line,
  _1,
  _2,
  _3 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, _file, _line, _1, _2, _3); oofem_exit(1); }

Definition at line 147 of file error.h.

#define __OOFEM_WARNING (   _file,
  _line,
  _1 
)    __OOFEM_WARNING1(_file, _line, _1)

Definition at line 166 of file error.h.

#define __OOFEM_WARNING1 (   _file,
  _line,
  _1 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, _file, _line, _1); }

Definition at line 158 of file error.h.

#define __OOFEM_WARNING2 (   _file,
  _line,
  _1,
  _2 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, _file, _line, _1, _2); }

Definition at line 159 of file error.h.

Referenced by oofem::PrimaryUnknownMapper::warning().

#define __OOFEM_WARNING3 (   _file,
  _line,
  _1,
  _2,
  _3 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, _file, _line, _1, _2, _3); }
#define __OOFEM_WARNING4 (   _file,
  _line,
  _1,
  _2,
  _3,
  _4 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, _file, _line, _1, _2, _3, _4); }

Definition at line 161 of file error.h.

Referenced by oofem::FEMComponent::warning(), and oofem::EngngModel::warning().

#define __OOFEM_WARNING5 (   _file,
  _line,
  _1,
  _2,
  _3,
  _4,
  _5 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, _file, _line, _1, _2, _3, _4, _5); }

Definition at line 162 of file error.h.

#define _error (   _1)    _error1(_1)

Definition at line 95 of file error.h.

Referenced by oofem::UserDefinedLoadTimeFunction::__accelAt(), oofem::PiecewiseLinFunction::__at(), oofem::UserDefinedLoadTimeFunction::__at(), oofem::PeriodicPiecewiseLinFunction::__at(), oofem::PiecewiseLinFunction::__derAt(), oofem::UserDefinedLoadTimeFunction::__derAt(), oofem::PeriodicPiecewiseLinFunction::__derAt(), oofem::PrimaryField::__evaluateAt(), oofem::MMALeastSquareProjection::__init(), oofem::AdaptiveNonLinearStatic::adaptiveRemap(), oofem::PrimaryField::advanceSolution(), oofem::NRSolver::applyConstraintsToLoadIncrement(), oofem::NRSolver::applyConstraintsToStiffness(), oofem::MDM::applyDamageToStiffness(), oofem::MDM::applyDamageTranformation(), oofem::EngngModel::assemble(), oofem::NLTransientTransportProblem::assembleAlgorithmicPartOfRhs(), oofem::AdaptiveNonLinearStatic::assembleInitialLoadVector(), oofem::BinghamFluidMaterial2Status::BinghamFluidMaterial2Status(), oofem::HuertaErrorEstimator::buildRefinedMesh(), oofem::RigidArmNode::checkConsistency(), oofem::CBS::checkConsistency(), oofem::SUPG::checkConsistency(), oofem::MPlasticMaterial2::closestPointReturn(), oofem::TR1_2D_SUPG2::computeAccelerationTerm_MB(), oofem::TR1_2D_SUPG2::computeAdvectionTerm_MB(), oofem::IDNLMaterial::computeAngleAndSigmaRatio(), oofem::TransportElement::computeBCMtrxAt(), oofem::SUPGElement2::computeBCRhsTerm_MB(), oofem::TR1_2D_SUPG2::computeBCRhsTerm_MB(), oofem::SUPGElement2::computeBCRhsTerm_MC(), oofem::TransportElement::computeBCSubMtrxAt(), oofem::TransportElement::computeBCSubVectorAt(), oofem::TransportElement::computeBCVectorAt(), oofem::TrPlaneStrRot::computeBmatrixAt(), oofem::Q4Axisymm::computeBmatrixAt(), oofem::InterfaceElem1d::computeBmatrixAt(), oofem::L4Axisymm::computeBmatrixAt(), oofem::LIBeam3dNL::computeBmatrixAt(), oofem::LIBeam3dNL2::computeBmatrixAt(), oofem::Axisymm3d::computeBmatrixAt(), oofem::TR_SHELL01::computeBmatrixAt(), oofem::TrPlaneStrRot::computeBodyLoadVectorAt(), oofem::CCTPlate::computeBodyLoadVectorAt(), oofem::TrPlaneStrRot3d::computeBodyLoadVectorAt(), oofem::CCTPlate3d::computeBodyLoadVectorAt(), oofem::Quad1Mindlin::computeBodyLoadVectorAt(), oofem::Quad1MindlinShell3D::computeBodyLoadVectorAt(), oofem::TR_SHELL01::computeBodyLoadVectorAt(), oofem::StructuralElement::computeBodyLoadVectorAt(), oofem::HeMoTKMaterial::computeCapacityCoeff(), oofem::TransportElement::computeCapacityMatrix(), oofem::RheoChainMaterial::computeCharTimes(), oofem::TransportElement::computeConductivityMatrix(), oofem::HeMoTKMaterial::computeConductivityMtrx(), oofem::StructuralElement::computeConsistentMassMatrix(), oofem::KelvinChainSolidMaterial::computeCreepFunction(), oofem::TrabBone3D::computeDamage(), oofem::MDM::computeDamageOnPlane(), oofem::ConcreteDPM::computeDamageParam(), oofem::IsotropicDamageMaterial1::computeDamageParamForCohesiveCrack(), oofem::CylindricalALM::computeDeltaLambda(), oofem::BinghamFluidMaterial2::computeDeviatoricStrain(), oofem::BinghamFluidMaterial2::computeDeviatoricStress(), oofem::NewtonianFluidMaterial::computeDeviatoricStressVector(), oofem::BinghamFluidMaterial2::computeDevStrainMagnitude(), oofem::BinghamFluidMaterial2::computeDevStressMagnitude(), oofem::TR1_2D_SUPG2::computeDiffusionTerm_MB(), oofem::TransportElement::computeEdgeBCSubVectorAt(), oofem::SUPGElement2::computeEdgeLoadVector_MB(), oofem::SUPGElement2::computeEdgeLoadVector_MC(), oofem::Beam2d::computeEdgeLoadVectorAt(), oofem::Beam3d::computeEdgeLoadVectorAt(), oofem::Shell7Base::computeEdgeLoadVectorAt(), oofem::StructuralElement::computeEdgeLoadVectorAt(), oofem::LIBeam2d::computeEdgeVolumeAround(), oofem::LIBeam2dNL::computeEdgeVolumeAround(), oofem::LIBeam3d::computeEdgeVolumeAround(), oofem::Truss2d::computeEdgeVolumeAround(), oofem::LIBeam3dNL::computeEdgeVolumeAround(), oofem::LIBeam3dNL2::computeEdgeVolumeAround(), oofem::Truss3d::computeEdgeVolumeAround(), oofem::LIBeam3d2::computeEdgeVolumeAround(), oofem::IDGMaterial::computeEquivalentStrain(), oofem::IsotropicDamageMaterial1::computeEquivalentStrain(), oofem::MPSMaterial::computeEquivalentTime(), oofem::IDGMaterial::computeEta(), oofem::IsotropicDamageMaterial1::computeEta(), oofem::IsotropicDamageMaterial::computeEta(), oofem::NonLinearStatic::computeExternalLoadReactionContribution(), oofem::NonLinearDynamic::computeExternalLoadReactionContribution(), oofem::B3SolidMaterial::computeFlowTermViscosity(), oofem::MPSMaterial::computeFlowTermViscosity(), oofem::TR_SHELL01::computeForceLoadVector(), oofem::TR_SHELL01::computeGaussPoints(), oofem::MazarsMaterial::computeGc(), oofem::MazarsMaterial::computeGt(), oofem::StructuralElement::computeInitialStressMatrix(), oofem::TransportElement::computeInternalSourceRhsVectorAt(), oofem::HydrationModel::computeIntSource(), oofem::TransportElement::computeIntSourceLHSMatrix(), oofem::Axisymm3d::computeLoadLEToLRotationMatrix(), oofem::Quad1PlaneStrain::computeLoadLEToLRotationMatrix(), oofem::LSpace::computeLoadLEToLRotationMatrix(), oofem::TrPlaneStrain::computeLoadLEToLRotationMatrix(), oofem::TrPlaneStress2d::computeLoadLEToLRotationMatrix(), oofem::LTRSpace::computeLoadLEToLRotationMatrix(), oofem::LTRSpace::computeLoadLSToLRotationMatrix(), oofem::Node::computeLoadVectorAt(), oofem::DofManager::computeLoadVectorAt(), oofem::InterfaceElem2dQuad::computeLocalCoordinates(), oofem::InterfaceElement3dTrLin::computeLocalCoordinates(), oofem::InterfaceElem1d::computeLocalCoordinates(), oofem::MDM::computeLocalDamageTensor(), oofem::InterfaceElem1d::computeLocalSlipDir(), oofem::StructuralElement::computeLumpedMassMatrix(), oofem::TR_SHELL01::computeMassMatrix(), oofem::NlDEIDynamic::computeMassMtrx(), oofem::B3SolidMaterial::computeMicroPrestress(), oofem::Element::computeMidPlaneNormal(), oofem::TR_SHELL01::computeNmatrixAt(), oofem::InterfaceElem1d::computeNumberOfDofs(), oofem::Tet1_3D_SUPG::computeNumberOfDofs(), oofem::Tr1Darcy::computeNumberOfDofs(), oofem::TR21_2D_SUPG::computeNumberOfDofs(), oofem::Quad10_2D_SUPG::computeNumberOfDofs(), oofem::TR1_2D_CBS::computeNumberOfDofs(), oofem::TR1_2D_SUPG::computeNumberOfDofs(), oofem::TR1_2D_SUPG2::computeNumberOfDofs(), oofem::Shell7Base::computePressureForceAt(), oofem::Shell7Base::computePressureTangentMatrix(), oofem::StructuralElement::computeResultingIPEigenstrainAt(), oofem::StructuralElement::computeResultingIPTemperatureAt(), 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::TR_SHELL01::computeStiffnessMatrix(), oofem::Q4Axisymm::computeStrainVector(), oofem::L4Axisymm::computeStrainVector(), oofem::Axisymm3d::computeStrainVector(), oofem::TrPlaneStrRot::computeStrainVector(), oofem::SimpleCrossSection::computeStressIndependentStrainVector(), oofem::LayeredCrossSection::computeStressIndependentStrainVector(), oofem::FiberedCrossSection::computeStressIndependentStrainVector(), oofem::TR_SHELL01::computeStressVector(), oofem::TransportElement::computeSurfaceBCSubVectorAt(), oofem::SUPGElement2::computeSurfaceLoadVector_MB(), oofem::SUPGElement2::computeSurfaceLoadVector_MC(), oofem::Shell7Base::computeSurfaceLoadVectorAt(), oofem::StructuralElement::computeSurfaceLoadVectorAt(), oofem::PlasticMaterial::computeTrialStressIncrement(), oofem::ConstantEdgeLoad::computeValueAt(), oofem::ConstantPressureLoad::computeValueAt(), oofem::ConstantSurfaceLoad::computeValueAt(), oofem::UserDefinedTemperatureField::computeValueAt(), oofem::BoundaryLoad::computeValueAt(), oofem::RankineMatStatus::computeWork(), oofem::DruckerPragerPlasticitySM::computeYieldStressInShear(), oofem::DruckerPragerPlasticitySM::computeYieldStressPrime(), oofem::StructuralElement::condense(), oofem::HellmichMaterial::createMaterialGp(), oofem::IsotropicDamageMaterial::damageFunctionPrime(), oofem::DIIDynamic::determineConstants(), oofem::NonLinearDynamic::determineConstants(), oofem::LEPlic::doLagrangianPhase(), oofem::Lattice2d::drawYourself(), oofem::Element::drawYourself(), oofem::Concrete2::dtp2(), oofem::Concrete2::dtp3(), oofem::TransportElement::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::TR1_2D_CBS::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::TR1_2D_SUPG2::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::TR1_2D_SUPG::EIPrimaryFieldI_evaluateFieldVectorAt(), oofem::HellmichMaterial::elasticCompliance(), oofem::HellmichMaterial::elasticStiffness(), oofem::ZZErrorEstimator::estimateError(), oofem::HuertaErrorEstimator::estimateError(), oofem::ZZRemeshingCriteria::estimateMeshDensities(), oofem::HuertaRemeshingCriteria::estimateMeshDensities(), oofem::FiberedCrossSection::estimatePackSize(), oofem::LayeredCrossSection::estimatePackSize(), oofem::InterfaceElem1d::evaluateLocalCoordinateSystem(), oofem::EngngModel::exchangeRemoteElementData(), oofem::FETICommunicator::FETICommunicator(), oofem::OctreeSpatialLocalizer::findTerminalContaining(), oofem::MDM::formTransformationMatrix(), oofem::TwoFluidMaterial::give(), oofem::PerfectlyPlasticMaterial::give(), oofem::RCM2Material::give(), oofem::HellmichMaterial::give1dMaterialStiffnessMatrix(), oofem::LayeredCrossSection::give2dBeamMaterialStiffnessMatrix(), oofem::IsotropicLinearElasticMaterial::give2dBeamStiffMtrx(), oofem::IsoInterfaceDamageMaterial::give2dInterfaceMaterialStiffnessMatrix(), oofem::LinearElasticMaterial::give2dPlaneStressRotStiffMtrx(), oofem::LayeredCrossSection::give2dPlateMaterialStiffnessMatrix(), oofem::LinearElasticMaterial::give2dPlateStiffMtrx(), oofem::FiberedCrossSection::give3dBeamMaterialStiffnessMatrix(), oofem::IsotropicLinearElasticMaterial::give3dBeamStiffMtrx(), oofem::IsoInterfaceDamageMaterial::give3dInterfaceMaterialStiffnessMatrix(), oofem::CohesiveInterfaceMaterial::give3dMaterialStiffnessMatrix(), oofem::SimpleInterfaceMaterial::give3dMaterialStiffnessMatrix(), oofem::CebFipSlip90Material::give3dMaterialStiffnessMatrix(), oofem::IsoInterfaceDamageMaterial::give3dMaterialStiffnessMatrix(), oofem::PlasticMaterial::give3dMaterialStiffnessMatrix(), oofem::PerfectlyPlasticMaterial::give3dMaterialStiffnessMatrix(), oofem::MPlasticMaterial::give3dMaterialStiffnessMatrix(), oofem::MPlasticMaterial2::give3dMaterialStiffnessMatrix(), oofem::StructuralMaterial::give3dMaterialStiffnessMatrix(), oofem::DruckerPragerPlasticitySM::give3dMaterialStiffnessMatrix(), oofem::DustMaterial::give3dMaterialStiffnessMatrix(), oofem::HellmichMaterial::give3dMaterialStiffnessMatrix(), oofem::ConcreteDPM2::give3dMaterialStiffnessMatrix(), oofem::LayeredCrossSection::give3dShellMaterialStiffness(), oofem::LinearElasticMaterial::give3dShellStiffMtrx(), oofem::HeMoTKMaterial::give_delta_gw(), oofem::OctreeSpatialLocalizer::giveAllElementsWithIpWithinBox(), oofem::RefinedElement::giveBcDofArray2D(), oofem::RefinedElement::giveBcDofArray3D(), oofem::RefinedElement::giveBoundaryFlagArray(), oofem::RefinedElement::giveBoundaryLoadArray2D(), oofem::RefinedElement::giveBoundaryLoadArray3D(), oofem::CBSElement::giveCharacteristicMatrix(), oofem::Tr1Darcy::giveCharacteristicMatrix(), oofem::SUPGElement::giveCharacteristicMatrix(), oofem::SUPGElement2::giveCharacteristicMatrix(), oofem::Material::giveCharacteristicMatrix(), oofem::Element::giveCharacteristicMatrix(), oofem::HellmichMaterial::giveCharacteristicMatrix(), oofem::PlaneStress2d::giveCharacteristicSize(), oofem::TrPlaneStress2d::giveCharacteristicSize(), oofem::RerShell::giveCharacteristicTensor(), oofem::TrPlaneStrRot3d::giveCharacteristicTensor(), oofem::CCTPlate3d::giveCharacteristicTensor(), oofem::CBSElement::giveCharacteristicValue(), oofem::SUPGElement::giveCharacteristicValue(), oofem::SUPGElement2::giveCharacteristicValue(), oofem::Material::giveCharacteristicValue(), oofem::HydrationModel::giveCharacteristicValue(), oofem::Element::giveCharacteristicValue(), oofem::CBSElement::giveCharacteristicVector(), oofem::Tr1Darcy::giveCharacteristicVector(), oofem::SUPGElement::giveCharacteristicVector(), oofem::SUPGElement2::giveCharacteristicVector(), oofem::Element::giveCharacteristicVector(), oofem::StructuralCrossSection::giveCharMaterialComplianceMatrixOf(), oofem::RheoChainMaterial::giveCharTime(), oofem::OctreeSpatialLocalizer::giveClosestIP(), oofem::OctreeSpatialLocalizer::giveClosestIPWithinOctant(), oofem::RefinedElement::giveCompatibleBcDofArray(), oofem::Domain::giveCorrespondingCoordinateIndex(), oofem::FiberedCrossSection::giveCorrespondingSlaveMaterialMode(), oofem::LayeredCrossSection::giveCorrespondingSlaveMaterialMode(), oofem::Element::giveCrossSection(), oofem::LayeredCrossSection::giveDerivedMaterialStiffnessMatrix(), oofem::NewtonianFluidMaterial::giveDeviatoricStiffnessMatrix(), oofem::BinghamFluidMaterial2::giveDeviatoricStiffnessMatrix(), oofem::IncrementalLinearStatic::giveDiscreteTime(), oofem::NonStationaryTransportProblem::giveDiscreteTime(), oofem::StaggeredProblem::giveDiscreteTime(), oofem::DofManager::giveDof(), oofem::DofManager::giveDofArray(), oofem::CombinedZZSIRemeshingCriteria::giveDofManDensity(), oofem::HuertaRemeshingCriteria::giveDofManDensity(), oofem::Tr1Darcy::giveDofManDofIDMask(), oofem::Tet1_3D_SUPG::giveDofManDofIDMask(), oofem::InterfaceElem1d::giveDofManDofIDMask(), oofem::TransportElement::giveDofManDofIDMask(), oofem::TR21_2D_SUPG::giveDofManDofIDMask(), oofem::Quad10_2D_SUPG::giveDofManDofIDMask(), oofem::TR1_2D_CBS::giveDofManDofIDMask(), oofem::TR1_2D_SUPG::giveDofManDofIDMask(), oofem::TR1_2D_SUPG2::giveDofManDofIDMask(), oofem::Tr21Stokes::giveDofManDofIDMask(), oofem::DofManager::giveDofWithID(), oofem::EngngModel::giveDomain(), oofem::EngngModel::GiveDomainDataReader(), oofem::Tr2Shell7::giveEdgeDofMapping(), oofem::LIBeam2d::giveEdgeDofMapping(), oofem::LIBeam2dNL::giveEdgeDofMapping(), oofem::CCTPlate::giveEdgeDofMapping(), oofem::LIBeam3d::giveEdgeDofMapping(), oofem::Truss2d::giveEdgeDofMapping(), oofem::LIBeam3dNL::giveEdgeDofMapping(), oofem::LIBeam3dNL2::giveEdgeDofMapping(), oofem::Quad1Mindlin::giveEdgeDofMapping(), oofem::L4Axisymm::giveEdgeDofMapping(), oofem::Truss3d::giveEdgeDofMapping(), oofem::LIBeam3d2::giveEdgeDofMapping(), oofem::Axisymm3d::giveEdgeDofMapping(), oofem::PlaneStress2d::giveEdgeDofMapping(), oofem::Quad1MindlinShell3D::giveEdgeDofMapping(), oofem::Quad1PlaneStrain::giveEdgeDofMapping(), oofem::LSpace::giveEdgeDofMapping(), oofem::TrPlaneStrain::giveEdgeDofMapping(), oofem::TrPlaneStress2d::giveEdgeDofMapping(), oofem::LTRSpace::giveEdgeDofMapping(), oofem::RCSDEMaterial::giveEffectiveMaterialStiffnessMatrix(), oofem::RCSDMaterial::giveEffectiveMaterialStiffnessMatrix(), oofem::KelvinChainSolidMaterial::giveEigenStrainVector(), oofem::MaxwellChainMaterial::giveEigenStrainVector(), oofem::KelvinChainMaterial::giveEigenStrainVector(), oofem::B3SolidMaterial::giveEigenStrainVector(), oofem::MPSMaterial::giveEigenStrainVector(), oofem::OctreeSpatialLocalizer::giveElementCloseToPoint(), oofem::OctreeSpatialLocalizer::giveElementCloseToPointWithinOctant(), oofem::TransportElement::giveElementDofIDMask(), oofem::OctreeSpatialLocalizer::giveElementsWithIPWithinBox(), oofem::MPSMaterial::giveEModulus(), oofem::Domain::giveEngngModel(), oofem::Shell7Base::giveFieldSize(), oofem::FiberedCrossSection::giveFullCharacteristicVector(), oofem::LayeredCrossSection::giveFullCharacteristicVector(), oofem::HellmichMaterial::giveHeMoMaterial(), oofem::HeMoTKMaterial::giveHumidity(), oofem::B3SolidMaterial::giveHumidity(), oofem::MPSMaterial::giveHumidity(), oofem::B3SolidMaterial::giveHumidityIncrement(), oofem::MPSMaterial::giveInitViscosity(), oofem::Quad10_2D_SUPG::giveInternalDofManDofIDMask(), oofem::TR_SHELL01::giveInternalForcesVector(), oofem::Material::giveIPValueType(), oofem::IGAElement::giveKnotSpanParallelMode(), oofem::HellmichMaterial::giveKvCoeff(), oofem::HellmichMaterial::giveLinearElasticMaterial(), oofem::NRSolver2::giveLinearSolver(), oofem::NRSolver::giveLinearSolver(), oofem::CylindricalALM::giveLinearSolver(), oofem::GeneralBoundaryCondition::giveLoadTimeFunction(), oofem::RerShell::giveLocalCoordinates(), oofem::TrPlaneStrRot3d::giveLocalCoordinates(), oofem::CCTPlate3d::giveLocalCoordinates(), oofem::CCTPlate3d::giveLocalCoordinateSystem(), oofem::DofManager::giveLocationArray(), oofem::SimpleSlaveDof::giveMasterDof(), oofem::Element::giveMaterial(), oofem::InterfaceElem1d::giveMaterialMode(), oofem::FiberedCrossSection::giveMaterialStiffnessMatrixOf(), oofem::LayeredCrossSection::giveMaterialStiffnessMatrixOf(), oofem::MicroplaneMaterial::giveMicroplane(), oofem::NlIsoMoistureMaterial::giveMoistureCapacity(), oofem::CBS::giveNewEquationNumber(), oofem::SUPG::giveNewEquationNumber(), oofem::CBS::giveNewPrescribedEquationNumber(), oofem::SUPG::giveNewPrescribedEquationNumber(), oofem::Element::giveNode(), oofem::CBS::giveNumberOfDomainEquations(), oofem::SUPG::giveNumberOfDomainEquations(), oofem::CBS::giveNumberOfEquations(), oofem::SUPG::giveNumberOfEquations(), oofem::CBS::giveNumberOfPrescribedDomainEquations(), oofem::SUPG::giveNumberOfPrescribedDomainEquations(), oofem::CBS::giveNumberOfPrescribedEquations(), oofem::SUPG::giveNumberOfPrescribedEquations(), oofem::StationaryTransportProblem::giveNumericalMethod(), oofem::LinearStatic::giveNumericalMethod(), oofem::DIIDynamic::giveNumericalMethod(), oofem::NonStationaryTransportProblem::giveNumericalMethod(), oofem::EigenValueDynamic::giveNumericalMethod(), oofem::IncrementalLinearStatic::giveNumericalMethod(), oofem::LinearStability::giveNumericalMethod(), oofem::CBS::giveNumericalMethod(), oofem::SUPG::giveNumericalMethod(), oofem::NonLinearStatic::giveNumericalMethod(), oofem::NonLinearDynamic::giveNumericalMethod(), oofem::LinearStability::giveNumericalMethodForLinStaticProblem(), oofem::Tr2Shell7::giveOrdering(), oofem::NlIsoMoistureMaterial::givePermeability(), oofem::EngngModel::givePetscContext(), oofem::HellmichMaterial::givePrestressStrainVector(), oofem::BoundaryLoad::giveProperty(), oofem::MDM::giveRawMDMParameters(), oofem::RCM2Material::giveRealPrincipalStressVector3d(), oofem::SimpleCrossSection::giveRealStresses(), oofem::StructuralCrossSection::giveRealStresses(), oofem::LayeredCrossSection::giveRealStresses(), oofem::FiberedCrossSection::giveRealStresses(), oofem::IDGMaterial::giveRealStressVector(), oofem::SimpleInterfaceMaterial::giveRealStressVector(), oofem::RCSDNLMaterial::giveRealStressVector(), oofem::Concrete2::giveRealStressVector(), oofem::IsotropicDamageMaterial::giveRealStressVector(), oofem::MDM::giveRealStressVector(), oofem::HellmichMaterial::giveRealStressVector(), oofem::FiberedCrossSection::giveReducedCharacteristicVector(), oofem::LayeredCrossSection::giveReducedCharacteristicVector(), oofem::IDNLMaterial::giveRemoteNonlocalStiffnessContribution(), oofem::Element::giveRotationMatrix(), oofem::B3Material::giveShrinkageStrainVector(), oofem::B3SolidMaterial::giveShrinkageStrainVector(), oofem::MPSMaterial::giveShrinkageStrainVector(), oofem::Element::giveSide(), oofem::FiberedCrossSection::giveSlaveGaussPoint(), oofem::LayeredCrossSection::giveSlaveGaussPoint(), oofem::LayeredCrossSection::giveSlaveGaussPointNew(), oofem::StaggeredProblem::giveSlaveProblem(), oofem::PrimaryField::giveSolutionVector(), oofem::Element::giveSpatialDimension(), oofem::HydrationModel::giveStatus(), oofem::LinearElasticMaterial::giveStressStrainComponentIndOf(), oofem::FiberedCrossSection::giveStressStrainMask(), oofem::LayeredCrossSection::giveStressStrainMask(), oofem::LinearElasticMaterial::giveStressStrainMask(), oofem::StructuralCrossSection::giveStressStrainMask(), oofem::LSpace::giveSurfaceDofMapping(), oofem::LTRSpace::giveSurfaceDofMapping(), oofem::MPSMaterial::giveTemperature(), oofem::OrthotropicLinearElasticMaterial::giveTensorRotationMatrix(), oofem::Tet1_3D_SUPG::giveTermIntergationRuleIndex(), oofem::AdaptiveNonLinearStatic::giveTimeStepLoadLevel(), oofem::StationaryTransportProblem::giveUnknownComponent(), oofem::DarcyFlow::giveUnknownComponent(), oofem::DEIDynamic::giveUnknownComponent(), oofem::LinearStatic::giveUnknownComponent(), oofem::EigenValueDynamic::giveUnknownComponent(), oofem::DIIDynamic::giveUnknownComponent(), oofem::AdaptiveNonLinearStatic::giveUnknownComponent(), oofem::LinearStability::giveUnknownComponent(), oofem::CBS::giveUnknownComponent(), oofem::SUPG::giveUnknownComponent(), oofem::NonLinearStatic::giveUnknownComponent(), oofem::NonLinearDynamic::giveUnknownComponent(), oofem::NlDEIDynamic::giveUnknownComponent(), oofem::SUPG::giveUnknownDictHashIndx(), oofem::PrimaryField::giveUnknownValue(), oofem::Node::giveUpdatedCoordinate(), oofem::CBS::giveVariableScale(), oofem::SUPG::giveVariableScale(), oofem::HydrationModel::HydrationModel(), oofem::FiberedCrossSection::imposeStrainConstrainsOnGradient(), oofem::LayeredCrossSection::imposeStrainConstrainsOnGradient(), oofem::StructuralCrossSection::imposeStrainConstrainsOnGradient(), oofem::FiberedCrossSection::imposeStressConstrainsOnGradient(), oofem::LayeredCrossSection::imposeStressConstrainsOnGradient(), oofem::StructuralCrossSection::imposeStressConstrainsOnGradient(), oofem::HellmichMaterial::initAuxStatus(), oofem::OctreeSpatialLocalizer::initElementIPDataStructure(), oofem::TR1_2D_SUPG::initGeometry(), oofem::AdaptiveNonLinearStatic::initializeAdaptive(), oofem::AdaptiveNonLinearStatic::initializeAdaptiveFrom(), oofem::MicroplaneMaterial::initializeData(), oofem::MDM::initializeData(), oofem::LIBeam3d::initializeFrom(), oofem::Particle::initializeFrom(), oofem::ConstantEdgeLoad::initializeFrom(), oofem::ScalarErrorIndicator::initializeFrom(), oofem::SlaveNode::initializeFrom(), oofem::LIBeam3d2::initializeFrom(), oofem::SymmetryBarrier::initializeFrom(), oofem::LinearEdgeLoad::initializeFrom(), oofem::ConstantPressureLoad::initializeFrom(), oofem::ConstantSurfaceLoad::initializeFrom(), oofem::CohesiveSurface3d::initializeFrom(), oofem::InterfaceElem1d::initializeFrom(), oofem::TwoFluidMaterial::initializeFrom(), oofem::LIBeam3dNL2::initializeFrom(), oofem::LIBeam3dNL::initializeFrom(), oofem::Beam2d::initializeFrom(), oofem::Truss2d::initializeFrom(), oofem::DIIDynamic::initializeFrom(), oofem::RigidArmNode::initializeFrom(), oofem::LayeredCrossSection::initializeFrom(), oofem::Beam3d::initializeFrom(), oofem::IMLSolver::initializeFrom(), oofem::NlIsoMoistureMaterial::initializeFrom(), oofem::MazarsMaterial::initializeFrom(), oofem::Load::initializeFrom(), oofem::StaggeredProblem::initializeFrom(), oofem::RCSDNLMaterial::initializeFrom(), oofem::B3SolidMaterial::initializeFrom(), oofem::HuertaErrorEstimator::initializeFrom(), oofem::CompoDamageMat::initializeFrom(), oofem::NonLinearDynamic::initializeFrom(), oofem::NRSolver::initializeFrom(), oofem::FiberedCrossSection::initializeFrom(), oofem::NlDEIDynamic::initializeFrom(), oofem::GeneralBoundaryCondition::initializeFrom(), oofem::Node::initializeFrom(), oofem::MPSMaterial::initializeFrom(), oofem::CylindricalALM::initializeFrom(), oofem::HydrationModel::initializeFrom(), oofem::DruckerPragerPlasticitySM::initializeFrom(), oofem::MDM::initializeFrom(), oofem::DofManager::initializeFrom(), oofem::EngngModel::initializeFrom(), oofem::ConcreteDPM2::initializeFrom(), oofem::OctreeSpatialLocalizer::insertNodeIntoOctree(), oofem::EngngModel::instanciateDefaultMetaStep(), oofem::PolylineNonlocalBarrier::isActivated(), oofem::Load::isDofExcluded(), oofem::Domain::LB_giveUpdatedGlobalNumber(), oofem::Domain::LB_giveUpdatedLocalNumber(), oofem::FETISolver::masterMapDirectionVector(), oofem::FETISolver::masterMapPPVector(), oofem::FETISolver::masterMapRBM(), oofem::FETISolver::masterMapResiduals(), oofem::FETISolver::masterMapSolution(), oofem::HeMoTKMaterial::matcond1d(), oofem::HeMoTKMaterial::matcond2d(), oofem::HeMoTKMaterial::matcond3d(), oofem::MDM::MMI_map(), oofem::LSpace::NodalAveragingRecoveryMI_computeNodalValue(), oofem::FiberedCrossSection::packUnknowns(), oofem::LayeredCrossSection::packUnknowns(), oofem::DruckerPragerPlasticitySM::performRegularReturn(), oofem::ConcreteDPM::performRegularReturn(), oofem::DruckerPragerPlasticitySM::performVertexReturn(), oofem::PetscSolver::petsc_solve(), oofem::HellmichMaterial::plotReturn(), oofem::DarcyFlow::printDofOutputAt(), oofem::CBS::printDofOutputAt(), oofem::SUPG::printDofOutputAt(), oofem::NonLinearStatic::proceedStep(), oofem::NonLinearDynamic::proceedStep(), oofem::HellmichMaterial::projection(), oofem::StructuralMaterial::reduceTo2dPlateLayerStiffMtrx(), oofem::Truss2d::resolveCoordIndices(), oofem::DofManager::resolveDofIDArray(), oofem::RVEStokesFlowMaterialStatus::restoreContext(), oofem::FluidDynamicMaterialStatus::restoreContext(), oofem::BinghamFluidMaterial2Status::restoreContext(), oofem::TransportMaterialStatus::restoreContext(), oofem::StructuralMaterialStatus::restoreContext(), oofem::MasterDof::restoreContext(), oofem::Node::restoreContext(), oofem::Domain::restoreContext(), oofem::HellmichMaterialStatus::restoreContext(), oofem::HellmichMaterial::restoreIPContext(), oofem::MaxwellChainMaterialStatus::saveContext(), oofem::B3SolidMaterialStatus::saveContext(), oofem::RVEStokesFlowMaterialStatus::saveContext(), oofem::MPSMaterialStatus::saveContext(), oofem::FluidDynamicMaterialStatus::saveContext(), oofem::BinghamFluidMaterial2Status::saveContext(), oofem::TransportMaterialStatus::saveContext(), oofem::RheoChainMaterialStatus::saveContext(), oofem::StructuralMaterialStatus::saveContext(), oofem::MDMStatus::saveContext(), oofem::MasterDof::saveContext(), oofem::Node::saveContext(), oofem::HellmichMaterialStatus::saveContext(), oofem::RheoChainMaterial::saveIPContext(), oofem::MicroplaneMaterial::saveIPContext(), oofem::HellmichMaterial::saveIPContext(), oofem::InterfaceElem1d::setCoordMode(), oofem::DofManager::setDof(), oofem::HydratingHeMoMaterial::setMixture(), oofem::HydratingIsoHeatMaterial::setMixture(), oofem::HydrationModel::setMixture(), oofem::ProblemCommunicator::setProcessCommunicatorToRecvArry(), oofem::ProblemCommunicator::setProcessCommunicatorToSendArry(), oofem::ProblemCommunicator::setUpCommunicationMaps(), oofem::FETICommunicator::setUpCommunicationMaps(), oofem::ProblemCommunicator::setUpCommunicationMapsForElementCut(), oofem::ProblemCommunicator::setUpCommunicationMapsForNodeCut(), oofem::ProblemCommunicator::setUpCommunicationMapsForRemoteElementMode(), oofem::HuertaErrorEstimator::setupRefinedProblemProlog(), oofem::PetscSolver::solve(), oofem::SLEPcSolver::solve(), oofem::LDLTFactorization::solve(), oofem::GJacobi::solve(), oofem::SpoolesSolver::solve(), oofem::IMLSolver::solve(), oofem::InverseIteration::solve(), oofem::SubspaceIteration::solve(), oofem::FETISolver::solve(), oofem::HuertaErrorEstimator::solveRefinedElementProblem(), oofem::HuertaErrorEstimator::solveRefinedPatchProblem(), oofem::StationaryTransportProblem::solveYourselfAt(), oofem::NLTransientTransportProblem::solveYourselfAt(), oofem::IncrementalLinearStatic::solveYourselfAt(), oofem::DEIDynamic::solveYourselfAt(), oofem::LinearStatic::solveYourselfAt(), oofem::NonStationaryTransportProblem::solveYourselfAt(), oofem::DIIDynamic::solveYourselfAt(), oofem::AdaptiveNonLinearStatic::solveYourselfAt(), oofem::CBS::solveYourselfAt(), oofem::SUPG::solveYourselfAt(), oofem::Tetrah1_ht::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::Quad1PlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::PlaneStress2d::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QTrPlaneStrain::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::QTrPlaneStress2d::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::LWedge::SPRNodalRecoveryMI_computeIPGlobalCoordinates(), oofem::QWedge::SPRNodalRecoveryMI_computeIPGlobalCoordinates(), oofem::QTRSpace::SPRNodalRecoveryMI_computeIPGlobalCoordinates(), oofem::PlaneStress2d::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::Quad1PlaneStrain::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::L4Axisymm::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::QTrPlaneStress2d::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::TrPlaneStrain::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::Axisymm3d::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::QTrPlaneStrain::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::TrPlaneStress2d::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::LTRSpace::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::TR1_2D_CBS::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::TR1_2D_SUPG2_AXI::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::CCTPlate::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::TR1_2D_SUPG2::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::TR1_2D_SUPG::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::DIIDynamic::timesMtrx(), oofem::NonLinearDynamic::timesMtrx(), oofem::FiberedCrossSection::unpackAndUpdateUnknowns(), oofem::LayeredCrossSection::unpackAndUpdateUnknowns(), oofem::EngngModel::unpackDofManagers(), oofem::EngngModel::unpackRemoteElementData(), oofem::StaggeredProblem::updateAttributes(), oofem::NonLinearStatic::updateAttributes(), oofem::NonLinearDynamic::updateAttributes(), oofem::NonLinearStatic::updateComponent(), oofem::NonLinearDynamic::updateComponent(), oofem::EngngModel::updateComponent(), oofem::HydrationModel::updateInternalState(), and oofem::AdaptiveLinearStatic::updateYourself().

#define _error1 (   _1)    OOFEM_CLASS_ERROR1(_1)

Definition at line 77 of file error.h.

#define _error2 (   _1,
  _2 
)    OOFEM_CLASS_ERROR2(_1, _2)

Definition at line 78 of file error.h.

Referenced by oofem::TR1_2D_SUPG2::computeAdvectionDerivativeTerm_MB(), oofem::ConcreteDPM::computeDamageParam(), oofem::TR1_2D_SUPG2::computeDiffusionDerivativeTerm_MB(), oofem::Node::computeL2GTransformation(), oofem::TR1_2D_SUPG2::computeLSICStabilizationTerm_MB(), oofem::TR1_2D_SUPG2_AXI::computePressureTerm_MC(), oofem::TR1_2D_SUPG2::computePressureTerm_MC(), oofem::B3Material::computeShrinkageStrainVector(), oofem::B3SolidMaterial::computeShrinkageStrainVector(), oofem::UserDefinedTemperatureField::computeValueAt(), oofem::LEPlic::doLagrangianPhase(), oofem::LoadTimeFunction::evaluate(), oofem::CebFipSlip90Material::give1dInterfaceMaterialStiffnessMatrix(), oofem::MasterDof::giveBc(), oofem::Domain::giveBc(), oofem::IsotropicMoistureTransferMaterial::giveCharacteristicMatrix(), oofem::IsotropicHeatTransferMaterial::giveCharacteristicMatrix(), oofem::TransportElement::giveCharacteristicMatrix(), oofem::LsMasterMatGrad::giveCharacteristicMatrix(), oofem::NonlinearMassTransferMaterial::giveCharacteristicMatrix(), oofem::IDGMaterial::giveCharacteristicMatrix(), oofem::HeMoTKMaterial::giveCharacteristicMatrix(), oofem::TrabBoneGrad3D::giveCharacteristicMatrix(), oofem::AnisotropicMassTransferMaterial::giveCharacteristicMatrix(), oofem::StructuralElement::giveCharacteristicMatrix(), oofem::SimpleInterfaceMaterial::giveCharacteristicMatrix(), oofem::IsotropicMoistureTransferMaterial::giveCharacteristicValue(), oofem::HydratingHeMoMaterial::giveCharacteristicValue(), oofem::IsotropicHeatTransferMaterial::giveCharacteristicValue(), oofem::TwoFluidMaterial::giveCharacteristicValue(), oofem::HydratingIsoHeatMaterial::giveCharacteristicValue(), oofem::AnisotropicMassTransferMaterial::giveCharacteristicValue(), oofem::TransportElement::giveCharacteristicVector(), oofem::StructuralElement::giveCharacteristicVector(), oofem::EngngModel::giveContextFile(), oofem::Domain::giveCrossSection(), oofem::Domain::giveDefaultNodeDofIDArry(), oofem::Domain::giveDofManager(), oofem::Domain::giveElement(), oofem::B3SolidMaterial::giveHumidity(), oofem::MPSMaterial::giveHumidity(), oofem::B3SolidMaterial::giveHumidityIncrement(), oofem::Domain::giveIc(), oofem::Element::giveInternalDofManager(), oofem::TransportMaterial::giveIPValueSize(), oofem::HellmichMaterial::giveKvCoeffs(), oofem::Domain::giveLoad(), oofem::Domain::giveLoadTimeFunction(), oofem::Domain::giveMaterial(), oofem::EngngModel::giveMetaStep(), oofem::Domain::giveNode(), oofem::Domain::giveNonlocalBarrier(), oofem::Element::giveNumberOfBoundarySides(), oofem::SlaveDof::giveNumberOfPrimaryMasterDofs(), oofem::EngngModel::givePetscContext(), oofem::Domain::giveRandomFieldGenerator(), oofem::Domain::giveSide(), oofem::FiberedCrossSection::giveStressStrainMask(), oofem::LayeredCrossSection::giveStressStrainMask(), oofem::MPSMaterial::giveTemperature(), oofem::TwoFluidMaterial::giveTempVOF(), oofem::TR21_2D_SUPG::giveTermIntergationRuleIndex(), oofem::Quad10_2D_SUPG::giveTermIntergationRuleIndex(), oofem::NLTransientTransportProblem::giveUnknownDictHashIndx(), oofem::NonStationaryTransportProblem::giveUnknownDictHashIndx(), oofem::EngngModel::giveXfemManager(), oofem::StructuralCrossSection::imposeStrainConstrainsOnGradient(), oofem::StructuralCrossSection::imposeStressConstrainsOnGradient(), oofem::PrimaryField::initialize(), oofem::CylindricalALM::initializeFrom(), oofem::DofManager::initializeFrom(), oofem::EngngModel::Instanciate_init(), oofem::Domain::instanciateYourself(), oofem::HeMoTKMaterial::isCharacteristicMtrxSymmetric(), oofem::Domain::LB_giveUpdatedGlobalNumber(), oofem::Domain::LB_giveUpdatedLocalNumber(), oofem::DofManager::removeDof(), oofem::Domain::resolveDomainDofsDefaults(), oofem::NLTransientTransportProblem::solveYourselfAt(), oofem::QBrick1_ht::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::Brick1_ht::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::LWedge::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::QWedge::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::QSpace::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::QTRSpace::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::LSpace::SPRNodalRecoveryMI_giveDofMansDeterminedByPatch(), oofem::DarcyFlow::updateComponent(), oofem::TR1_2D_SUPG2_AXI::updateIntegrationRules(), oofem::TR1_2D_SUPG2::updateIntegrationRules(), and oofem::RCM2Material::updateStatusForNewCrack().

#define _error3 (   _1,
  _2,
  _3 
)    OOFEM_CLASS_ERROR3(_1, _2, _3)
#define _error4 (   _1,
  _2,
  _3,
  _4 
)    OOFEM_CLASS_ERROR4(_1, _2, _3, _4)

Definition at line 80 of file error.h.

#define _error5 (   _1,
  _2,
  _3,
  _4,
  _5 
)    OOFEM_CLASS_ERROR5(_1, _2, _3, _4, _5)

Definition at line 81 of file error.h.

Referenced by oofem::NLTransientTransportProblem::giveUnknownDictHashIndx().

#define _error6 (   _1,
  _2,
  _3,
  _4,
  _5,
  _6 
)    OOFEM_CLASS_ERROR6(_1, _2, _3, _4, _5, _6)

Definition at line 82 of file error.h.

#define _warning (   _1)    _warning1(_1)
#define _warning1 (   _1)    OOFEM_CLASS_WARNING1(_1)

Definition at line 89 of file error.h.

Referenced by oofem::HellmichMaterial::giveRealStressVector().

#define _warning2 (   _1,
  _2 
)    OOFEM_CLASS_WARNING2(_1, _2)
#define _warning3 (   _1,
  _2,
  _3 
)    OOFEM_CLASS_WARNING3(_1, _2, _3)

Definition at line 91 of file error.h.

#define _warning4 (   _1,
  _2,
  _3,
  _4 
)    OOFEM_CLASS_WARNING4(_1, _2, _3, _4)
#define OOFEM_CLASS_ERROR (   _1)    OOFEM_CLASS_ERROR1(_1)

Definition at line 94 of file error.h.

Referenced by oofem::LineSurfaceTension::computeLoadVector().

#define OOFEM_CLASS_ERROR1 (   _1)    error(__FILE__, __LINE__, _1);

@ Macros calling the error/warning service, which is defined for all classes derived form FEMComponent and some others classes.

It inserts automatically file and line informations into call. This macro can be used only within classes that implement error service. The corresponding error service is assumed to have fist argument the filename, second argument line number, followed by format string and optional arguments (as in printf family of functions). It typically formats the final message and uses oofem default loggers to report message.

These macros add to given message also file and line information. They can be implemented in a very elegant way using macro with variable number of arguments (__VA_ARGS__). But since the many compilers do not support macros with variable number of arguments we have two choices: to implement this as a function with variable number of arguments, but then we can not add file and line info via __FILE__ and __LINE__ macros. Or if file and line info is preferred, then instead of single macro with variable number of arguments we can have series of "classical" macros with increasing number of parameters. The latter approach is used here.

Definition at line 70 of file error.h.

#define OOFEM_CLASS_ERROR2 (   _1,
  _2 
)    error(__FILE__, __LINE__, _1, _2);

Definition at line 71 of file error.h.

#define OOFEM_CLASS_ERROR3 (   _1,
  _2,
  _3 
)    error(__FILE__, __LINE__, _1, _2, _3);

Definition at line 72 of file error.h.

#define OOFEM_CLASS_ERROR4 (   _1,
  _2,
  _3,
  _4 
)    error(__FILE__, __LINE__, _1, _2, _3, _4);

Definition at line 73 of file error.h.

#define OOFEM_CLASS_ERROR5 (   _1,
  _2,
  _3,
  _4,
  _5 
)    error(__FILE__, __LINE__, _1, _2, _3, _4, _5);

Definition at line 74 of file error.h.

#define OOFEM_CLASS_ERROR6 (   _1,
  _2,
  _3,
  _4,
  _5,
  _6 
)    error(__FILE__, __LINE__, _1, _2, _3, _4, _5, _6);

Definition at line 75 of file error.h.

#define OOFEM_CLASS_WARNING (   _1)    OOFEM_CLASS_WARNING1(_1)

Definition at line 96 of file error.h.

#define OOFEM_CLASS_WARNING1 (   _1)    warning(__FILE__, __LINE__, _1);

Definition at line 84 of file error.h.

#define OOFEM_CLASS_WARNING2 (   _1,
  _2 
)    warning(__FILE__, __LINE__, _1, _2);

Definition at line 85 of file error.h.

#define OOFEM_CLASS_WARNING3 (   _1,
  _2,
  _3 
)    warning(__FILE__, __LINE__, _1, _2, _3);

Definition at line 86 of file error.h.

#define OOFEM_CLASS_WARNING4 (   _1,
  _2,
  _3,
  _4 
)    warning(__FILE__, __LINE__, _1, _2, _3, _4);

Definition at line 87 of file error.h.

#define OOFEM_ERROR (   _1)    OOFEM_ERROR1(_1)

Definition at line 137 of file error.h.

Referenced by oofem::SlaveDof::__giveEquationNumber(), oofem::SlaveDof::__givePrescribedEquationNumber(), oofem::MMAClosestIPTransfer::__init(), oofem::MMAContainingElementProjection::__init(), oofem::MMALeastSquareProjection::__init(), oofem::MMALeastSquareProjection::__mapVariable(), oofem::MMAShapeFunctProjection::__mapVariable(), oofem::OOFEMTXTInputRecord::__readSimpleString(), oofem::TDictionary< Key, T >::add(), oofem::SurfaceTensionBoundaryCondition::addElement(), oofem::FloatMatrix::addProductOf(), oofem::FloatMatrix::addTProductOf(), oofem::StressVector::applyDeviatoricElasticCompliance(), oofem::StrainVector::applyDeviatoricElasticStiffness(), oofem::StrainVector::applyElasticStiffness(), oofem::SurfaceTensionBoundaryCondition::assemble(), oofem::SkylineUnsym::assemble(), oofem::DynCompRow::assemble(), oofem::DynCompCol::assemble(), oofem::DSSMatrix::assemble(), oofem::Skyline::assemble(), oofem::SymCompCol::assemble(), oofem::CompCol::assemble(), oofem::FloatMatrix::assemble(), oofem::EngngModel::assemble(), oofem::SpoolesSparseMtrx::at(), oofem::PetscSparseMtrx::at(), oofem::DynCompCol::at(), oofem::SymCompCol::at(), oofem::SkylineUnsym::backSubstitutionWith(), oofem::DynamicCommunicationBuffer::bcast(), oofem::FloatArray::beFullVectorForm(), oofem::FloatMatrix::beLocalCoordSys(), oofem::FloatMatrix::beMatrixForm(), oofem::FloatArray::beProductOf(), oofem::FloatMatrix::beProductOf(), oofem::FloatMatrix::beProductTOf(), oofem::FloatArray::beReducedVectorForm(), oofem::FloatArray::beSubArrayOf(), oofem::FloatMatrix::beSubMatrixOf(), oofem::FloatMatrix::beSubMatrixOfSizeOf(), oofem::FloatArray::beTProductOf(), oofem::FloatMatrix::beTProductOf(), oofem::FloatArray::beVectorProductOf(), oofem::BSplineInterpolation::boundaryEvalN(), oofem::FEInterpolation1d::boundaryEvalNormal(), oofem::BSplineInterpolation::boundaryEvalNormal(), oofem::FEInterpolation1d::boundaryGiveNodes(), oofem::BSplineInterpolation::boundaryGiveNodes(), oofem::BSplineInterpolation::boundaryGiveTransformationJacobian(), oofem::BSplineInterpolation::boundaryLocal2Global(), oofem::PetscSparseMtrx::buildInternalStructure(), oofem::DSSMatrix::buildInternalStructure(), oofem::SparseMtrx::buildInternalStructure(), oofem::NonlocalMaterialExtensionInterface::buildNonlocalPointTable(), oofem::ParmetisLoadBalancer::calculateLoadTransfer(), oofem::MacroLSpace::changeMicroBoundaryConditions(), oofem::RowColumn::checkSizeTowards(), oofem::cltypesGiveUnknownTypeModeKey(), oofem::Element::computeArea(), oofem::NLStructuralElement::computeBFmatrixAt(), oofem::Shell7Base::computeBodyLoadVectorAt(), oofem::Element::computeBoundaryVectorOf(), oofem::StructuralElementEvaluator::computeConsistentMassMatrix(), oofem::ConcreteDPM2::computeDamageParam(), oofem::FE2FluidMaterial::computeDeviatoricStressVector(), oofem::StressVector::computeDeviatoricVolumetricSplit(), oofem::StrainVector::computeDeviatoricVolumetricSplit(), oofem::StressVector::computeDeviatoricVolumetricSum(), oofem::StrainVector::computeDeviatoricVolumetricSum(), oofem::MixedGradientPressureDirichlet::computeDofTransformation(), oofem::Tr1BubbleStokes::computeEdgeBCSubVectorAt(), oofem::Tr21Stokes::computeEdgeBCSubVectorAt(), oofem::Tet1BubbleStokes::computeEdgeBCSubVectorAt(), oofem::IDGMaterial::computeEquivalentStrain(), oofem::IsotropicDamageMaterial1::computeEquivalentStrain(), oofem::Tr2Shell7::computeGaussPoints(), oofem::Element::computeLength(), oofem::SurfaceTensionBoundaryCondition::computeLoadVectorFromElement(), oofem::FEI3dHexaQuad::computeLocalEdgeMapping(), oofem::FEI3dLineLin::computeLocalSurfaceMapping(), oofem::StructuralElementEvaluator::computeLumpedMassMatrix(), oofem::Shell7Base::computeLumpedMassMatrix(), oofem::SparseMtrx::computeNorm(), oofem::Tr21Stokes::computeNumberOfDofs(), oofem::Tet21Stokes::computeNumberOfDofs(), oofem::DustMaterial::computePlastStrainDirM1(), oofem::DustMaterial::computePlastStrainDirM2(), oofem::DustMaterial::computePlastStrainDirM3(), oofem::SPRNodalRecoveryModel::computePolynomialTerms(), oofem::MMALeastSquareProjection::computePolynomialTerms(), oofem::StructuralMaterial::computePrincipalValDir(), oofem::StrainVector::computePrincipalValues(), oofem::StressVector::computePrincipalValues(), oofem::StructuralMaterial::computePrincipalValues(), oofem::DustMaterial::computeQFromPlastVolEps(), oofem::MacroLSpace::computeStiffnessMatrix(), oofem::NLStructuralElement::computeStrainVector(), oofem::Tet21Stokes::computeSurfaceBCSubVectorAt(), oofem::Tet1BubbleStokes::computeSurfBCSubVectorAt(), oofem::Line2SurfaceTension::computeTangent(), oofem::SurfaceTensionBoundaryCondition::computeTangentFromElement(), oofem::Element::computeVolume(), oofem::StressStrainBaseVector::computeVolumetricPart(), oofem::StressStrainBaseVector::convertFromFullForm(), oofem::StressStrainBaseVector::convertToFullForm(), oofem::FreemInterface::createInput(), oofem::Subdivision::createMesh(), oofem::FE2FluidMaterialStatus::createRVE(), oofem::CemhydMat::CreateStatus(), oofem::WallClockLoadBalancerMonitor::decide(), oofem::LoadBalancer::deleteRemoteDofManagers(), oofem::CemhydMatStatus::distrib3d(), oofem::GPInitModule::doInit(), oofem::LEPlic::doInterfaceRemapping(), oofem::dot(), oofem::DSSMatrix::DSSMatrix(), oofem::FEI2dLineQuad::edgeComputeLength(), oofem::FEI3dTetQuad::edgeComputeLength(), oofem::FEI3dTrQuad::edgeComputeLength(), oofem::FEI2dQuadConst::edgeEvaldNds(), oofem::FEI3dWedgeQuad::edgeEvaldNdx(), oofem::FEI3dWedgeLin::edgeEvaldNdx(), oofem::FEI3dTetQuad::edgeEvaldNdx(), oofem::FEI3dTrQuad::edgeEvaldNdx(), oofem::FEI3dHexaQuad::edgeEvaldNdx(), oofem::FEInterpolation3d::edgeEvaldNdxi(), oofem::FEI3dHexaQuad::edgeEvalN(), oofem::FEI2dQuadConst::edgeEvalNormal(), oofem::FEI2dTrConst::edgeEvalNormal(), oofem::FEI3dWedgeQuad::edgeGiveTransformationJacobian(), oofem::FEI3dWedgeLin::edgeGiveTransformationJacobian(), oofem::FEI3dTetQuad::edgeGiveTransformationJacobian(), oofem::FEI3dTrQuad::edgeGiveTransformationJacobian(), oofem::FEI3dHexaQuad::edgeGiveTransformationJacobian(), oofem::FEI2dQuadConst::edgeLocal2global(), oofem::FEI3dHexaQuad::edgeLocal2global(), oofem::EIPrimaryUnknownMapperInterface::EIPrimaryUnknownMI_computePrimaryUnknownVectorAtLocal(), oofem::NonlocalMaterialExtensionInterface::endIPNonlocalAverage(), oofem::FEInterpolation::evald2Ndx2(), oofem::FEI3dTetLin::evaldNdx(), oofem::FEI3dTrQuad::evaldNdx(), oofem::BSplineInterpolation::evaldNdx(), oofem::FEInterpolation::evaldNdxi(), oofem::EIPrimaryUnknownMapper::evaluateAt(), oofem::NodalAveragingRecoveryModel::exchangeDofManValues(), oofem::ZZNodalRecoveryModel::exchangeDofManValues(), oofem::SPRNodalRecoveryModel::exchangeDofManValues(), oofem::VTKExportModule::exportIntVarAs(), oofem::POIExportModule::exportPrimVarAs(), oofem::SloanGraph::extractCandidates(), oofem::FE2FluidMaterialStatus::FE2FluidMaterialStatus(), oofem::LEPlic::findCellLineConstant(), oofem::ExternalFieldGenerator::generateRandomValue(), oofem::RandomFieldGenerator::generateRandomValueAt(), oofem::LobattoIntegrationRule::getRequiredNumberOfIntegrationPoints(), oofem::GaussIntegrationRule::getRequiredNumberOfIntegrationPoints(), oofem::RotatingBoundary::give(), oofem::PrescribedGradient::give(), oofem::MisesMat::give3dMaterialStiffnessMatrix(), oofem::FEInterpolation2d::giveArea(), oofem::MixedGradientPressureDirichlet::giveBcValue(), oofem::VTKExportModule::giveCellType(), oofem::StructuralMaterial::giveCharacteristicComplianceMatrix(), oofem::Tr1BubbleStokes::giveCharacteristicMatrix(), oofem::Tr21Stokes::giveCharacteristicMatrix(), oofem::Tet1BubbleStokes::giveCharacteristicMatrix(), oofem::Tet21Stokes::giveCharacteristicMatrix(), oofem::Tr1BubbleStokes::giveCharacteristicVector(), oofem::Tr21Stokes::giveCharacteristicVector(), oofem::Tet1BubbleStokes::giveCharacteristicVector(), oofem::Tet21Stokes::giveCharacteristicVector(), oofem::FETIBoundaryDofManager::giveCodeNumber(), oofem::SpoolesSparseMtrx::GiveCopy(), oofem::DSSMatrix::GiveCopy(), oofem::SparseMtrx::GiveCopy(), oofem::FE2FluidMaterial::giveDeviatoricPressureStiffness(), oofem::FE2FluidMaterial::giveDeviatoricStiffnessMatrix(), oofem::MicroMaterial::giveDofEquationNumber(), oofem::Tet21Stokes::giveDofManDofIDMask(), oofem::PerfectlyPlasticMaterial::giveEffectiveMaterialStiffnessMatrix(), oofem::VTKExportModule::giveElementCell(), oofem::VTKXMLExportModule::giveElementCell(), oofem::StructuralMaterial::giveFullCharacteristicVector(), oofem::MasterDof::giveIc(), oofem::FluidDynamicMaterial::giveIntVarCompFullIndx(), oofem::SUPGElement::giveIntVarCompFullIndx(), oofem::NonlocalMaterialExtensionInterface::giveIPIntegrationList(), oofem::FluidDynamicMaterial::giveIPValueSize(), oofem::SUPGElement::giveIPValueSize(), oofem::FEI3dTrQuad::giveJacobianMatrixAt(), oofem::FEInterpolation::giveJacobianMatrixAt(), oofem::FEInterpolation1d::giveLength(), oofem::MicroMaterial::giveMacroStiffnessMatrix(), oofem::POIExportModule::giveMapper(), oofem::LevelSetPCS::giveMaterialMixtureAt(), oofem::Domain::giveNextFreeDofID(), oofem::VTKExportModule::giveNumberOfElementCells(), oofem::VTKXMLExportModule::giveNumberOfElementCells(), oofem::VTKExportModule::giveNumberOfNodesPerCell(), oofem::VTKXMLExportModule::giveNumberOfNodesPerCell(), oofem::FEIVoidCellGeometry::giveNumberOfVertices(), oofem::DarcyFlow::giveNumericalMethod(), oofem::TimeStep::givePreviousStep(), oofem::ProcessCommunicator::giveProcessCommunicatorBuff(), oofem::giveRawLineFromInput(), oofem::BufferedDataReader::giveRawLineFromInput(), oofem::MicroMaterial::giveRealStressVector(), oofem::MisesMat::giveRealStressVector(), oofem::RankineMat::giveRealStressVector(), oofem::CompoDamageMat::giveRealStressVector(), oofem::SimpleCrossSection::giveReducedCharacteristicVector(), oofem::StructuralMaterial::giveReducedCharacteristicVector(), oofem::DruckerPragerPlasticitySM::giveRegAlgorithmicStiffMatrix(), oofem::SkylineUnsym::giveRowColumn(), oofem::GaussPoint::giveSlaveGaussPoint(), oofem::StructuralMaterial::giveStressStrainComponentIndOf(), oofem::StressStrainBaseVector::giveStressStrainMask(), oofem::StructuralMaterial::giveStressStrainMask(), oofem::Domain::giveTransactionManager(), oofem::FEI3dTetLin::giveTransformationJacobian(), oofem::NURBSInterpolation::giveTransformationJacobian(), oofem::FEI2dQuadConst::giveTransformationJacobian(), oofem::TSplineInterpolation::giveTransformationJacobian(), oofem::BSplineInterpolation::giveTransformationJacobian(), oofem::MixedGradientPressureDirichlet::giveUnknown(), oofem::IncrementalLinearStatic::giveUnknownComponent(), oofem::StokesFlow::giveUnknownComponent(), oofem::FEIVoidCellGeometry::giveVertexCoordinates(), oofem::Shell7Base::giveVoigtIndex(), oofem::FEInterpolation3d::giveVolume(), oofem::FE2FluidMaterial::giveVolumetricDeviatoricStiffness(), oofem::FE2FluidMaterial::giveVolumetricPressureStiffness(), oofem::FEI3dTrQuad::global2local(), oofem::NURBSInterpolation::global2local(), oofem::FEI3dWedgeQuad::global2local(), oofem::FEI2dQuadConst::global2local(), oofem::FEI3dWedgeLin::global2local(), oofem::TSplineInterpolation::global2local(), oofem::BSplineInterpolation::global2local(), oofem::MasterDof::hasBc(), oofem::MasterDof::hasIc(), oofem::DynCompRow::ILUPYourself(), oofem::CompCol_ICPreconditioner::init(), oofem::CompCol_ILUPreconditioner::init(), oofem::CompRow_ILUPreconditioner::init(), oofem::MaterialMappingAlgorithm::init(), oofem::MicroMaterial::init(), oofem::CemhydMatStatus::init(), oofem::NodalAveragingRecoveryModel::initCommMaps(), oofem::ZZNodalRecoveryModel::initCommMaps(), oofem::SPRNodalRecoveryModel::initCommMaps(), oofem::ParmetisLoadBalancer::initGlobalParmetisElementNumbering(), oofem::CompCol_ICPreconditioner::initialize(), oofem::ActiveDof::initialize(), oofem::LevelSetPCS::initialize(), oofem::BsplinePlaneStressElement::initializeFrom(), oofem::MacroLSpace::initializeFrom(), oofem::BSplineInterpolation::initializeFrom(), oofem::TR_SHELL01::initializeFrom(), oofem::LoadBalancerMonitor::initializeFrom(), oofem::OutputManager::initializeFrom(), oofem::NonStationaryTransportProblem::initializeFrom(), oofem::NURBSPlaneStressElement::initializeFrom(), oofem::RandomMaterialExtensionInterface::initializeFrom(), oofem::RankineMat::initializeFrom(), oofem::XfemManager::initializeFrom(), oofem::WallClockLoadBalancerMonitor::initializeFrom(), oofem::NURBSSpace3dElement::initializeFrom(), oofem::IsotropicDamageMaterial1::initializeFrom(), oofem::HydrationModelInterface::initializeFrom(), oofem::NonlocalMaterialExtensionInterface::initializeFrom(), oofem::DustMaterial::initializeFrom(), oofem::LoadBalancer::initializeWtp(), oofem::InstanciateProblem(), oofem::FloatMatrix::jaco_(), oofem::RheoChainMaterialStatus::letHiddenVarsVectorBe(), oofem::TR1_2D_SUPG::LS_PCS_computeS(), oofem::Tet1_3D_SUPG::LS_PCS_computeVOFFractions(), oofem::TR1_2D_SUPG_AXI::LS_PCS_computeVOFFractions(), oofem::TR1_2D_SUPG::LS_PCS_computeVOFFractions(), oofem::MaterialMappingAlgorithm::mapVariable(), oofem::MMAShapeFunctProjection::mapVariable(), oofem::IntArray::maximum(), oofem::TriangleMesherInterface::meshPSLG(), oofem::NonlocalMaterialWTP::migrate(), oofem::IntArray::minimum(), oofem::LocalGaussianRandomGenerator::normal01CdfInverse(), oofem::LocalGaussianRandomGenerator::normalCdfInverse(), oofem::FloatArray::normalize(), oofem::MapBasedEntityRenumberingFunctor::operator()(), oofem::DynCompCol::operator()(), oofem::operator+(), oofem::operator+=(), oofem::operator-(), oofem::operator-=(), oofem::ParmetisLoadBalancer::ParmetisLoadBalancer(), oofem::DustMaterial::performF1return(), oofem::DustMaterial::performF2return(), oofem::RankineMat::performPlasticityReturn(), oofem::ConcreteDPM2::performPlasticityReturn(), oofem::DustMaterial::performStressReturn(), oofem::DynamicCommunicationBuffer::popNewRecvPacket(), oofem::CommunicationPacketPool::popPacket(), oofem::StokesFlow::printDofOutputAt(), oofem::CompoDamageMatStatus::printOutputAt(), oofem::CommunicationPacketPool::pushPacket(), oofem::ComBuffDataStream::read(), oofem::ProcessCommDataStream::read(), oofem::NonlocalMaterialExtensionInterface::rebuildNonlocalPointTable(), oofem::StructuralMaterial::reduceTo1dFiberComplMtrx(), oofem::StructuralMaterial::reduceTo1dFiberStiffMtrx(), oofem::StructuralMaterial::reduceTo1dStressComplMtrx(), oofem::StructuralMaterial::reduceTo1dStressStiffMtrx(), oofem::StructuralMaterial::reduceTo2dBeamLayerComplMtrx(), oofem::StructuralMaterial::reduceTo2dBeamLayerStiffMtrx(), oofem::StructuralMaterial::reduceTo2dPlateLayerComplMtrx(), oofem::StructuralMaterial::reduceTo2dPlateLayerStiffMtrx(), oofem::StructuralMaterial::reduceToPlaneStrainComplMtrx(), oofem::StructuralMaterial::reduceToPlaneStrainStiffMtrx(), oofem::StructuralMaterial::reduceToPlaneStressComplMtrx(), oofem::StructuralMaterial::reduceToPlaneStressStiffMtrx(), oofem::MPIBuffer::resize(), oofem::PatchIntegrationRule::restoreContext(), oofem::Patch::restoreContext(), oofem::IntegrationRule::restoreContext(), oofem::FloatArray::rotatedWith(), oofem::PatchIntegrationRule::saveContext(), oofem::Patch::saveContext(), oofem::Dictionary::saveContext(), oofem::IntegrationRule::saveContext(), oofem::BufferedDataReader::seek(), oofem::FloatMatrix::setColumn(), oofem::GaussPoint::setMaterialStatus(), oofem::EngngModel::setParallelMode(), oofem::PrescribedGradient::setPrescribedGradientVoigt(), oofem::PrescribedGradient::setPrescribedValue(), oofem::FloatMatrix::setSubMatrix(), oofem::FloatMatrix::setTSubMatrix(), oofem::IntegrationRule::setUpEmbeddedIntegrationPoints(), oofem::IntegrationRule::setUpIntegrationPoints(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem1D(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem2D(), oofem::HuertaErrorEstimatorInterface::setupRefinedElementProblem3D(), oofem::Subdivision::smoothMesh(), oofem::DSSSolver::solve(), oofem::SparseLinearSystemNM::solve(), oofem::CylindricalALM::solve(), oofem::FloatMatrix::solveForRhs(), oofem::DustMaterial::solveQ0(), oofem::HuertaErrorEstimator::solveRefinedElementProblem(), oofem::HuertaErrorEstimator::solveRefinedPatchProblem(), oofem::IncrementalLinearStatic::solveYourselfAt(), oofem::LinearStatic::solveYourselfAt(), oofem::StructuralMaterial::sortPrincDirAndValCloseTo(), oofem::SpatialLocalizerInterface::SpatialLocalizerI_BBoxContainsPoint(), oofem::FEI3dTrQuad::surfaceEvaldNdx(), oofem::FEInterpolation3d::surfaceEvaldNdx(), oofem::FEI3dLineLin::surfaceEvalN(), oofem::FEI3dLineLin::surfaceEvalNormal(), oofem::FEInterpolation3d::surfaceEvalNormal(), oofem::FEI3dLineLin::surfaceGiveTransformationJacobian(), oofem::FEI3dWedgeQuad::surfaceGiveTransformationJacobian(), oofem::FEI3dWedgeLin::surfaceGiveTransformationJacobian(), oofem::FEI3dTrQuad::surfaceGiveTransformationJacobian(), oofem::FEI3dLineLin::surfaceLocal2global(), oofem::FloatMatrix::symmetrized(), oofem::SpoolesSparseMtrx::times(), oofem::SkylineUnsym::times(), oofem::PetscSparseMtrx::times(), oofem::DynCompRow::times(), oofem::DynCompCol::times(), oofem::Skyline::times(), oofem::DSSMatrix::times(), oofem::SparseMtrx::times(), oofem::SymCompCol::times(), oofem::CompCol::times(), oofem::SpoolesSparseMtrx::timesT(), oofem::SkylineUnsym::timesT(), oofem::PetscSparseMtrx::timesT(), oofem::DynCompRow::timesT(), oofem::DynCompCol::timesT(), oofem::SparseMtrx::timesT(), oofem::CompCol::timesT(), oofem::PetscSparseMtrx::toFloatMatrix(), oofem::SparseMtrx::toFloatMatrix(), oofem::Line::transformIntoPolar(), oofem::Subdivision::unpackIrregularSharedGlobnums(), oofem::Subdivision::unpackSharedEdges(), oofem::Subdivision::unpackSharedIrregulars(), oofem::PrescribedGradient::updateCoefficientMatrix(), oofem::StokesFlow::updateComponent(), oofem::ComBuffDataStream::write(), oofem::ProcessCommDataStream::write(), and oofem::ZZErrorEstimatorInterface::ZZErrorEstimatorI_computeElementContributions().

#define OOFEM_ERROR1 (   _1)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1); oofem_exit(1); }
#define OOFEM_ERROR2 (   _1,
  _2 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1, _2); oofem_exit(1); }

Definition at line 123 of file error.h.

Referenced by oofem::Dictionary::add(), oofem::ActiveBoundaryCondition::addDofman(), oofem::ActiveBoundaryCondition::addElement(), oofem::ActiveBoundaryCondition::addElementSide(), oofem::Subdivision::assignGlobalNumbersToElements(), oofem::SloanGraph::assignNewNumbers(), oofem::AList< T >::at(), oofem::SkylineUnsym::backSubstitutionWith(), oofem::FloatMatrix::beInverseOf(), oofem::Subdivision::RS_Triangle::bisect(), oofem::Subdivision::RS_Tetra::bisect(), oofem::Subdivision::bisectMesh(), oofem::Matrix::checkBounds(), oofem::CompoDamageMat::checkSnapBack(), oofem::IsotropicDamageMaterial1::computeDamageParamForCohesiveCrack(), oofem::ActiveBoundaryCondition::computeDofTransformation(), oofem::HydrationModel::computeHydrationDegreeIncrement(), oofem::HydratingConcreteMat::computeInternalSourceVector(), oofem::CemhydMat::computeInternalSourceVector(), oofem::Tet1BubbleStokes::computeLoadVector(), oofem::FEI2dTrLin::computeLocalEdgeMapping(), oofem::FEI2dQuadConst::computeLocalEdgeMapping(), oofem::FEI2dTrConst::computeLocalEdgeMapping(), oofem::FEI3dLineLin::computeLocalEdgeMapping(), oofem::FEI3dHexaLin::computeLocalEdgeMapping(), oofem::FEI3dTetLin::computeLocalEdgeMapping(), oofem::FEI2dQuadLin::computeLocalEdgeMapping(), oofem::FEI3dWedgeQuad::computeLocalEdgeMapping(), oofem::FEI3dWedgeLin::computeLocalEdgeMapping(), oofem::FEI2dTrQuad::computeLocalEdgeMapping(), oofem::FEI3dTetQuad::computeLocalEdgeMapping(), oofem::FEI3dTrQuad::computeLocalEdgeMapping(), oofem::FEI2dQuadQuad::computeLocalEdgeMapping(), oofem::FEI3dHexaLin::computeLocalSurfaceMapping(), oofem::FEI3dTetLin::computeLocalSurfaceMapping(), oofem::FEI3dWedgeQuad::computeLocalSurfaceMapping(), oofem::FEI3dWedgeLin::computeLocalSurfaceMapping(), oofem::FEI3dTetQuad::computeLocalSurfaceMapping(), oofem::FEI3dHexaQuad::computeLocalSurfaceMapping(), oofem::FloatMatrix::computeNorm(), oofem::FloatMatrix::computeReciprocalCondition(), oofem::DruckerPragerCutMat::computeReducedSSGradientMatrix(), oofem::StructuralMaterial::computeStressIndependentStrainVector(), oofem::PrescribedGradient::computeTangent(), oofem::MixedGradientPressureDirichlet::computeTangents(), oofem::MixedGradientPressureNeumann::computeTangents(), oofem::FloatMatrix::copyColumn(), oofem::T3DInterface::createInput(), oofem::Subdivision::createMesh(), oofem::WallClockLoadBalancerMonitor::decide(), oofem::TopologyDescription::doOutput(), oofem::drawIGAPatchDeformedGeometry(), oofem::IGAElement::drawRawGeometry(), oofem::BsplinePlaneStressElement::drawScalar(), oofem::NURBSPlaneStressElement::drawScalar(), oofem::TSplinePlaneStressElement::drawScalar(), oofem::NURBSSpace3dElement::drawScalar(), oofem::NURBSInterpolation::evaldNdx(), oofem::TSplineInterpolation::evaldNdx(), oofem::BSplineInterpolation::evaldNdx(), oofem::NURBSInterpolation::evalN(), oofem::TSplineInterpolation::evalN(), oofem::BSplineInterpolation::evalN(), oofem::VTKExportModule::exportCellVars(), oofem::VTKXMLExportModule::exportPointDataHeader(), oofem::VTKExportModule::exportPrimVarAs(), oofem::VTKXMLExportModule::exportPrimVarAs(), oofem::Subdivision::RS_Triangle::generate(), oofem::Subdivision::RS_Tetra::generate(), oofem::IntegrationRule::getIntegrationPoint(), oofem::VTKXMLExportModule::getPrimaryVariable(), oofem::ActiveDof::giveActiveBoundaryCondition(), oofem::VTKXMLExportModule::giveCellType(), oofem::StructuralElementEvaluator::giveCharacteristicMatrix(), oofem::LineSurfaceTension::giveCharacteristicMatrix(), oofem::StructuralMaterial::giveCharacteristicMatrix(), oofem::HydratingConcreteMat::giveCharacteristicValue(), oofem::CemhydMat::giveCharacteristicValue(), oofem::LineSurfaceTension::giveCharacteristicVector(), oofem::HydratingConcreteMat::giveConcreteCapacity(), oofem::CemhydMat::giveConcreteCapacity(), oofem::HydratingConcreteMat::giveConcreteDensity(), oofem::CemhydMat::giveConcreteDensity(), oofem::Element::giveDofManager(), oofem::SpatialLocalizer::giveElementClosestToPoint(), oofem::XfemManager::giveEnrichmentFunction(), oofem::XfemManager::giveEnrichmentItem(), oofem::XfemManager::giveGeometry(), oofem::BazantNajjarMoistureTransferMaterial::giveHumidity(), oofem::NlIsoMoistureMaterial::giveHumidity(), oofem::HydratingConcreteMat::giveIsotropicConductivity(), oofem::CemhydMat::giveIsotropicConductivity(), oofem::TSplineInterpolation::giveKnotSpanBasisFuncMask(), oofem::BSplineInterpolation::giveKnotSpanBasisFuncMask(), oofem::GaussIntegrationRule::giveLineCoordsAndWeights(), oofem::MicroMaterial::giveMacroStiffnessMatrix(), oofem::ActiveBoundaryCondition::giveMasterDof(), oofem::CompoDamageMat::giveMatStiffRotationMatrix(), oofem::ModuleManager< InitModule >::giveModule(), oofem::ActiveBoundaryCondition::giveNumberOfMasterDofs(), oofem::MatlabExportModule::giveOutputStream(), oofem::DofManExportModule::giveOutputStream(), oofem::GPExportModule::giveOutputStream(), oofem::POIExportModule::giveOutputStream(), oofem::VTKExportModule::giveOutputStream(), oofem::VTKXMLExportModule::giveOutputStream(), oofem::EngngModel::giveOutputStream(), oofem::HydratingConcreteMatStatus::GivePower(), oofem::AbaqusUserMaterial::giveRealStressVector(), oofem::CompoDamageMat::giveRealStressVector(), oofem::StressStrainBaseVector::giveReducedSize(), oofem::StructuralMaterial::giveSizeOfReducedStressStrainVector(), oofem::StructuralMaterial::giveStressStrainComponentIndOf(), oofem::StressStrainBaseVector::giveStressStrainMask(), oofem::StructuralMaterial::giveStressStrainMask(), oofem::GaussIntegrationRule::giveTetCoordsAndWeights(), oofem::NURBSInterpolation::giveTransformationJacobian(), oofem::TSplineInterpolation::giveTransformationJacobian(), oofem::BSplineInterpolation::giveTransformationJacobian(), oofem::GaussIntegrationRule::giveTriCoordsAndWeights(), oofem::ActiveBoundaryCondition::giveUnknown(), oofem::NLTransientTransportProblem::giveUnknownComponent(), oofem::IncrementalLinearStatic::giveUnknownComponent(), oofem::NonStationaryTransportProblem::giveUnknownComponent(), oofem::SUPG::giveUnknownComponent(), oofem::DofManager::giveUnknownVector(), oofem::DofManager::giveUnknownVectorOfType(), oofem::DruckerPragerPlasticitySM::giveVertexAlgorithmicStiffMatrix(), oofem::AList< T >::includes(), oofem::DiagPreconditioner::init(), oofem::IDGMaterial::initDamaged(), oofem::IsotropicDamageMaterial1::initDamaged(), oofem::HOMExportModule::initialize(), oofem::ExternalFieldGenerator::initializeFrom(), oofem::HydratingConcreteMat::initializeFrom(), oofem::TSplineInterpolation::initializeFrom(), oofem::InitModule::initializeFrom(), oofem::BSplineInterpolation::initializeFrom(), oofem::CohesiveSurface3d::initializeFrom(), oofem::AbaqusUserMaterial::initializeFrom(), oofem::IGAElement::initializeFrom(), oofem::CemhydMat::initializeFrom(), oofem::IGATSplineElement::initializeFrom(), oofem::IsotropicDamageMaterial1::initializeFrom(), oofem::ModuleManager< InitModule >::instanciateYourself(), oofem::XfemManager::instanciateYourself(), oofem::Domain::instanciateYourself(), oofem::HeMoTKMaterial::inverse_sorption_isotherm(), oofem::NURBSInterpolation::local2global(), oofem::TSplineInterpolation::local2global(), oofem::BSplineInterpolation::local2global(), oofem::EIPrimaryUnknownMapper::mapAndUpdate(), oofem::Subdivision::RS_Tetra::numberSharedEdges(), oofem::OOFEMTXTDataReader::OOFEMTXTDataReader(), oofem::MapBasedEntityRenumberingFunctor::operator()(), oofem::LevelSetPCS::pcs_stage1(), oofem::PetscSolver::petsc_solve(), oofem::NonLinearStatic::proceedStep(), oofem::AList< T >::put(), oofem::POIExportModule::readPOIFile(), oofem::StructuralMaterial::reduceComplMtrx3d(), oofem::StructuralMaterial::reduceStiffMtrx3d(), oofem::LevelSetPCS::reinitialization(), oofem::AList< T >::remove(), oofem::TopologyDescription::replaceFEMesh(), oofem::Subdivision::RS_Tetra::RS_Tetra(), oofem::Subdivision::RS_Triangle::RS_Triangle(), oofem::MicroMaterial::setMacroProperties(), oofem::LobattoIntegrationRule::SetUpPointsOnCube(), oofem::LobattoIntegrationRule::SetUpPointsOnLine(), oofem::LobattoIntegrationRule::SetUpPointsOnSquare(), oofem::LobattoIntegrationRule::SetUpPointsOnTetrahedra(), oofem::LobattoIntegrationRule::SetUpPointsOnTriangle(), oofem::GaussIntegrationRule::SetUpPointsOnWedge(), oofem::Subdivision::smoothMesh(), oofem::FloatMatrix::solveForRhs(), oofem::DarcyFlow::solveYourselfAt(), oofem::StokesFlow::solveYourselfAt(), oofem::HeMoTKMaterial::sorption_isotherm(), oofem::SpatialLocalizerInterface::SpatialLocalizerI_giveDistanceFromParametricCenter(), oofem::SpoolesSparseMtrx::timesT(), oofem::AList< T >::unlink(), oofem::LoadBalancer::unpackMigratingData(), oofem::ParmetisLoadBalancer::unpackSharedDmanPartitions(), oofem::Subdivision::RS_Triangle::update_neighbours(), oofem::Subdivision::RS_Tetra::update_neighbours(), oofem::BufferedDataReader::writeToFile(), and oofem::ZZNodalRecoveryModelInterface::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx().

#define OOFEM_ERROR3 (   _1,
  _2,
  _3 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1, _2, _3); oofem_exit(1); }

Definition at line 124 of file error.h.

Referenced by oofem::FloatArray::add(), oofem::FloatArray::assemble(), oofem::DynCompRow::at(), oofem::DynCompCol::at(), oofem::SymCompCol::at(), oofem::CompCol::at(), oofem::Skyline::at(), oofem::FloatArray::beDifferenceOf(), oofem::FloatMatrix::beInverseOf(), oofem::FloatArray::beMaxOf(), oofem::FloatArray::beMinOf(), oofem::FloatMatrix::beUnitMatrix(), oofem::Subdivision::RS_Triangle::bisect(), oofem::Subdivision::RS_Tetra::bisect(), oofem::Subdivision::bisectMesh(), oofem::Matrix::checkBounds(), oofem::Homogenize::checkVolFraction(), oofem::IsotropicDamageMaterial1::computeDamageParamForCohesiveCrack(), oofem::HTSelement::computeForceLoadVector(), oofem::StructuralElement::computeLocalForceLoadVector(), oofem::FloatMatrix::computeReciprocalCondition(), oofem::StructuralMaterial::computeStressIndependentStrainVector(), oofem::FloatArray::dotProduct(), oofem::SimpleCrossSection::give(), oofem::CrossSection::give(), oofem::FloatMatrix::giveDeterminant(), oofem::StructuralMaterial::giveIPValue(), oofem::MicroMaterial::giveMacroStiffnessMatrix(), oofem::SimpleCrossSection::giveMaterialStiffnessMatrixOf(), oofem::NonLinearStatic::giveNextStep(), oofem::NonLinearDynamic::giveNextStep(), oofem::NodalRecoveryModel::giveNodalVectorPtr(), oofem::SkylineUnsym::growTo(), oofem::PetscNatural2GlobalOrdering::init(), oofem::TSplineInterpolation::initializeFrom(), oofem::BSplineInterpolation::initializeFrom(), oofem::AbaqusUserMaterial::initializeFrom(), oofem::DynCompRow::operator()(), oofem::DynCompCol::operator()(), oofem::SymCompCol::operator()(), oofem::CompCol::operator()(), oofem::FloatMatrix::solveForRhs(), oofem::FloatArray::subtract(), oofem::Subdivision::unpackIrregularSharedGlobnums(), oofem::Subdivision::unpackSharedIrregulars(), oofem::Subdivision::RS_Tetra::update_neighbours(), and oofem::ZZNodalRecoveryModelInterface::ZZNodalRecoveryMI_ComputeEstimatedInterpolationMtrx().

#define OOFEM_ERROR4 (   _1,
  _2,
  _3,
  _4 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1, _2, _3, _4); oofem_exit(1); }
#define OOFEM_ERROR5 (   _1,
  _2,
  _3,
  _4,
  _5 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1, _2, _3, _4, _5); oofem_exit(1); }
#define OOFEM_ERROR6 (   _1,
  _2,
  _3,
  _4,
  _5,
  _6 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_ERROR, __FILE__, __LINE__, _1, _2, _3, _4, _5, _6); oofem_exit(1); }

Definition at line 127 of file error.h.

#define OOFEM_FATAL (   _1)    OOFEM_FATAL1(_1)
#define OOFEM_FATAL1 (   _1)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, __FILE__, __LINE__, _1); oofem_exit(1); }

@ Log-family macros that use OOFEM loggers and exit (for errors and fatals).

Definition at line 118 of file error.h.

#define OOFEM_FATAL2 (   _1,
  _2 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, __FILE__, __LINE__, _1, _2); oofem_exit(1); }
#define OOFEM_FATAL3 (   _1,
  _2,
  _3 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_FATAL, __FILE__, __LINE__, _1, _2, _3); oofem_exit(1); }

Definition at line 120 of file error.h.

#define OOFEM_WARNING (   _1)    OOFEM_WARNING1(_1)
#define OOFEM_WARNING1 (   _1)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1); }

Definition at line 129 of file error.h.

Referenced by oofem::Homogenize::herveZaoui(), and oofem::PlaneStress2d::initializeFrom().

#define OOFEM_WARNING2 (   _1,
  _2 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1, _2); }
#define OOFEM_WARNING3 (   _1,
  _2,
  _3 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1, _2, _3); }
#define OOFEM_WARNING4 (   _1,
  _2,
  _3,
  _4 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1, _2, _3, _4); }
#define OOFEM_WARNING5 (   _1,
  _2,
  _3,
  _4,
  _5 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1, _2, _3, _4, _5); }
#define OOFEM_WARNING6 (   _1,
  _2,
  _3,
  _4,
  _5,
  _6 
)    { oofem_errLogger.writeELogMsg(Logger :: LOG_LEVEL_WARNING, __FILE__, __LINE__, _1, _2, _3, _4, _5, _6); }

This page is part of the OOFEM documentation. Copyright (c) 2011 Borek Patzak
Project e-mail: info@oofem.org
Generated at Sun Mar 10 2013 18:16:58 for OOFEM by doxygen 1.7.6.1 written by Dimitri van Heesch, © 1997-2011