https://mooseframework.inl.gov
Classes | Namespaces | Functions | Variables
MooseError.h File Reference

Go to the source code of this file.

Classes

class  MooseRuntimeError
 Exception to be thrown whenever we have _throw_on_error set and a mooseError() is emitted. More...
 

Namespaces

 MetaPhysicL
 We need to instantiate the following CompareTypes to tell the compiler that ADReal is a subtype of ChainedADReal.
 
 hit
 
 moose
 
 moose::internal
 

Functions

template<size_t n, typename... T>
void print_tuple (std::ostream &os, const std::tuple< T... > &tup)
 
template<typename... T>
std::ostream & operator<< (std::ostream &os, const std::tuple< T... > &tup)
 
template<typename... Args>
void mooseError (Args &&... args)
 Emit an error message with the given stringified, concatenated args and terminate the application. More...
 
std::string moose::internal::incompatVarMsg (MooseVariableFieldBase &var1, MooseVariableFieldBase &var2)
 Builds and returns a string of the form: More...
 
std::string moose::internal::mooseMsgFmt (const std::string &msg, const std::string &title, const std::string &color)
 Format a message for output with a title. More...
 
std::string moose::internal::mooseMsgFmt (const std::string &msg, const std::string &color)
 Format a message for output without a title. More...
 
void moose::internal::mooseErrorRaw (std::string msg, const std::string &prefix="", const hit::Node *node=nullptr, const bool show_trace=true)
 Main callback for emitting a moose error. More...
 
std::string moose::internal::formatMooseDocumentedError (const std::string &repo_name, const unsigned int issue_num, const std::string &msg)
 Formats a documented error. More...
 
void moose::translateMetaPhysicLError (const MetaPhysicL::LogicError &)
 emit a relatively clear error message when we catch a MetaPhysicL logic error More...
 
template<typename... Args>
void mooseDocumentedError (const std::string &repo_name, const unsigned int issue_num, Args &&... args)
 Emit a documented error message with the given stringified, concatenated args and terminate the application. More...
 
template<typename... Args>
void mooseWarning (Args &&... args)
 Emit a warning message with the given stringified, concatenated args. More...
 
template<typename... Args>
void mooseUnused (Args &&... args)
 Warning message used to notify the users of unused parts of their input files Really used internally by the parser and shouldn't really be called elsewhere. More...
 
template<typename... Args>
void mooseDeprecated (Args &&... args)
 Emit a deprecated code/feature message with the given stringified, concatenated args. More...
 
template<typename... Args>
void mooseDeprecatedNoTrace (Args &&... args)
 Emit a deprecated code/feature message with the given stringified, concatenated args. More...
 
template<typename... Args>
void mooseDeprecationExpired (Args &&... args)
 Emit a deprecated code/feature message with the given stringified, concatenated args. More...
 
template<typename... Args>
void mooseDeprecationExpiredNoTrace (Args &&... args)
 Emit a deprecated code/feature message with the given stringified, concatenated args. More...
 
template<typename... Args>
void mooseInfo (Args &&... args)
 Emit an informational message with the given stringified, concatenated args. More...
 
template<typename... Args>
void mooseInfoRepeated (Args &&... args)
 Emit an informational message with the given stringified, concatenated args. More...
 
void moose::internal::mooseStreamAll (std::ostringstream &ss)
 All of the following are not meant to be called directly - they are called by the normal macros (mooseError(), etc.) down below. More...
 
template<typename T , typename... Args>
void moose::internal::mooseStreamAll (std::ostringstream &ss, T &&val, Args &&... args)
 
template<typename S , typename... Args>
void moose::internal::mooseWarningStream (S &oss, Args &&... args)
 
template<typename S , typename... Args>
void moose::internal::mooseUnusedStream (S &oss, Args &&... args)
 
template<typename S , typename... Args>
void moose::internal::mooseInfoStreamRepeated (S &oss, Args &&... args)
 
template<typename S , typename... Args>
void moose::internal::mooseInfoStream (S &oss, Args &&... args)
 
template<typename S , typename... Args>
void moose::internal::mooseDeprecatedStream (S &oss, const bool expired, const bool print_title, const bool show_trace, Args &&... args)
 

Variables

libMesh::Threads::spin_mutex moose::internal::moose_stream_lock
 

Function Documentation

◆ mooseDeprecated()

template<typename... Args>
void mooseDeprecated ( Args &&...  args)

Emit a deprecated code/feature message with the given stringified, concatenated args.

Will include a stack trace; use mooseDeprecatedNoTrace to exclude the trace.

Definition at line 363 of file MooseError.h.

Referenced by Registry::addDeprecatedAppDataFilePath(), InputParameters::addDeprecatedCoupledVar(), Coupleable::adZeroGradient(), Coupleable::adZeroSecond(), Coupleable::adZeroValue(), MultiMooseEnum::clear(), NonlinearSystemBase::computeResidual(), AppFactory::createAppShared(), Factory::createTempl(), MooseVariableFE< Real >::dofValue(), MultiMooseEnum::erase(), MooseVariableData< OutputType >::getElementalValue(), MultiMooseEnum::getEnum(), Coupleable::getFEVar(), Registry::getRegisteredName(), Syntax::isActionRequired(), MooseEnum::operator!=(), MultiMooseEnum::operator+=(), MooseEnum::operator==(), InputParameters::paramSetByUser(), ActionWarehouse::problem(), DerivativeMaterialPropertyNameInterface::propertyName(), DerivativeMaterialPropertyNameInterface::propertyNameFirst(), DerivativeMaterialPropertyNameInterface::propertyNameSecond(), DerivativeMaterialPropertyNameInterface::propertyNameThird(), MultiMooseEnum::push_back(), RankTwoTensorTempl< Real >::RankTwoTensorTempl(), Moose::registerActions(), NonlinearSystemBase::residualVector(), PointReduction::sqr(), TimedPrint::TimedPrint(), Syntax::verifyMooseObjectTask(), Moose::Builder::walkRaw(), and Coupleable::writableCoupledValue().

364 {
366  Moose::out, false, true, true, std::forward<Args>(args)...);
367 }
void mooseDeprecatedStream(S &oss, const bool expired, const bool print_title, const bool show_trace, Args &&... args)
Definition: MooseError.h:252

◆ mooseDeprecatedNoTrace()

template<typename... Args>
void mooseDeprecatedNoTrace ( Args &&...  args)

Emit a deprecated code/feature message with the given stringified, concatenated args.

Will not include a stack trace; use mooseDeprecated to include the trace.

Definition at line 373 of file MooseError.h.

Referenced by Factory::deprecatedMessage().

374 {
376  Moose::out, false, true, false, std::forward<Args>(args)...);
377 }
void mooseDeprecatedStream(S &oss, const bool expired, const bool print_title, const bool show_trace, Args &&... args)
Definition: MooseError.h:252

◆ mooseDeprecationExpired()

template<typename... Args>
void mooseDeprecationExpired ( Args &&...  args)

Emit a deprecated code/feature message with the given stringified, concatenated args.

Will include a stack trace; use mooseDeprecationExpiredNoTrace to exclude the trace.

Definition at line 383 of file MooseError.h.

384 {
385  moose::internal::mooseDeprecatedStream(Moose::out, true, true, true, std::forward<Args>(args)...);
386 }
void mooseDeprecatedStream(S &oss, const bool expired, const bool print_title, const bool show_trace, Args &&... args)
Definition: MooseError.h:252

◆ mooseDeprecationExpiredNoTrace()

template<typename... Args>
void mooseDeprecationExpiredNoTrace ( Args &&...  args)

Emit a deprecated code/feature message with the given stringified, concatenated args.

Will not include a stack trace; use mooseDeprecationExpired to include the trace.

Definition at line 392 of file MooseError.h.

Referenced by Factory::deprecatedMessage().

393 {
395  Moose::out, true, true, false, std::forward<Args>(args)...);
396 }
void mooseDeprecatedStream(S &oss, const bool expired, const bool print_title, const bool show_trace, Args &&... args)
Definition: MooseError.h:252

◆ mooseDocumentedError()

template<typename... Args>
void mooseDocumentedError ( const std::string &  repo_name,
const unsigned int  issue_num,
Args &&...  args 
)

Emit a documented error message with the given stringified, concatenated args and terminate the application.

Inside static functions, you will need to explicitly scope your mooseError call - i.e. do "::mooseError(arg1, ...);".

Here, a documented error message is one with an associated issue. See formatMooseDocumentedError for more information.

Parameters
repo_nameThe repository name where the issue resides
issue_numThe number of the issue
argsThe error message to stringify

Definition at line 332 of file MooseError.h.

333 {
334  std::ostringstream oss;
335  moose::internal::mooseStreamAll(oss, std::forward<Args>(args)...);
337  moose::internal::formatMooseDocumentedError(repo_name, issue_num, oss.str()));
338 }
void mooseStreamAll(std::ostringstream &ss)
All of the following are not meant to be called directly - they are called by the normal macros (moos...
Definition: MooseError.C:137
void mooseErrorRaw(std::string msg, const std::string &prefix="", const hit::Node *node=nullptr, const bool show_trace=true)
Main callback for emitting a moose error.
Definition: MooseError.C:53
std::string formatMooseDocumentedError(const std::string &repo_name, const unsigned int issue_num, const std::string &msg)
Formats a documented error.
Definition: MooseError.C:142

◆ mooseError()

template<typename... Args>
void mooseError ( Args &&...  args)

Emit an error message with the given stringified, concatenated args and terminate the application.

Inside static functions, you will need to explicitly scope your mooseError call - i.e. do "::mooseError(arg1, ...);".

Definition at line 311 of file MooseError.h.

Referenced by Adaptivity::adaptMesh(), Coupleable::adCoupledCurl(), Coupleable::adCoupledDofValues(), Coupleable::adCoupledDot(), Coupleable::adCoupledDotDot(), Coupleable::adCoupledGradient(), Coupleable::adCoupledGradientDot(), Coupleable::adCoupledLowerValue(), NeighborCoupleable::adCoupledNeighborGradient(), NeighborCoupleable::adCoupledNeighborValue(), NeighborCoupleable::adCoupledNeighborValueDot(), Coupleable::adCoupledNodalValue(), ScalarCoupleable::adCoupledScalarValue(), Coupleable::adCoupledSecond(), Coupleable::adCoupledValue(), Coupleable::adCoupledVectorDot(), Coupleable::adCoupledVectorGradient(), NeighborCoupleable::adCoupledVectorNeighborValue(), adCoupledVectorSecond(), Coupleable::adCoupledVectorValue(), Moose::ParameterRegistry::add(), VariableWarehouse::add(), Moose::WebServerControlTypeRegistry::add(), MooseLinearVariableFV< Real >::add(), ActionWarehouse::addActionBlock(), NonlinearSystemBase::addBoundaryCondition(), CSG::CSGCellList::addCell(), CSG::CSGBase::addCellToList(), CSG::CSGBase::addCellToUniverse(), Moose::MFEM::CoefficientMap< mfem::MatrixCoefficient, mfem::PWMatrixCoefficient >::addCoefficient(), InputParameterWarehouse::addControllableParameterAlias(), InputParameterWarehouse::addControllableParameterConnection(), NonlinearSystemBase::addDamper(), FormattedTable::addData(), Registry::addDataFilePath(), Syntax::addDependency(), InputParameters::addDeprecatedParam(), MooseEnumBase::addDocumentation(), MooseEnumBase::addEnumerationItem(), MooseEnumBase::addEnumerationName(), FunctionParserUtils< false >::addFParserConstants(), NonlinearSystemBase::addImplicitGeometricCouplingEntries(), InputParameterWarehouse::addInputParameters(), AuxiliarySystem::addKernel(), CSG::CSGLatticeList::addLattice(), CSG::CSGBase::addLattice(), Moose::LibtorchArtificialNeuralNet::addLayer(), SystemBase::addMatrix(), InitialConditionWarehouse::addObject(), FVInitialConditionWarehouse::addObject(), ConstraintWarehouse::addObject(), ExecuteMooseObjectWarehouse< Transfer >::addObject(), OutputWarehouse::addOutputFilename(), InputParameters::addParam(), Moose::PetscSupport::addPetscFlagsToPetscOptions(), Moose::MFEM::CoefficientMap< mfem::MatrixCoefficient, mfem::PWMatrixCoefficient >::addPiecewiseBlocks(), InputParameters::addPrivateParam(), MaterialPropertyStorage::addProperty(), Registry::addRepository(), CSG::CSGSurfaceList::addSurface(), CSG::CSGTransformationHelper::addTransformation(), CSG::CSGBase::addTransformation(), CSG::CSGUniverseList::addUniverse(), SystemBase::addVariable(), MooseVariableData< OutputType >::adGradPhi(), MooseVariableData< OutputType >::adGradPhiFace(), MooseVariableDataFV< OutputType >::adGradSlnDot(), ADMaterialProperty< Real >::ADMaterialProperty(), Moose::adOffset(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::aliasDevice(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::aliasHost(), AllLocalDofIndicesThread::AllLocalDofIndicesThread(), ExecFlagEnum::appendCurrent(), MeshGeneratorSystem::appendMeshGenerator(), Syntax::appendTaskName(), CSG::CSGBase::applyAxisRotation(), Moose::MFEM::EquationSystem::ApplyBoundaryNLFIntegrators(), Moose::MFEM::EquationSystem::ApplyDomainNLFIntegrators(), CSG::CSGTransformationHelper::applyReverseTransformsToPoint(), Registry::appNameFromAppPath(), NEML2Utils::assertNEML2Enabled(), MooseEnum::assign(), MultiMooseEnum::assignValues(), SystemBase::associateMatrixToTag(), SystemBase::associateVectorToTag(), TheWarehouse::attribID(), LinearSystem::augmentSparsity(), MFEMBoundaryRestrictable::boundariesToAttributes(), boundaryIntegrityCheckError(), MooseMeshXYCuttingUtils::boundaryTriElemImprover(), ReporterContext< std::vector< T > >::broadcast(), SplineUtils::bSplineControlPoints(), RegistryEntry< T >::build(), Moose::FV::Limiter< T >::build(), RegistryEntry< T >::buildAction(), MooseMeshUtils::buildBoundaryMesh(), MooseMeshUtils::buildBoundaryNodeToElemMap(), Moose::Kokkos::FunctorRegistry::buildFunction(), Moose::Kokkos::FunctorRegistry::buildFunctor(), CommandLine::buildHitParams(), Moose::BSpline::buildKnotVector(), MooseMeshUtils::buildLoopBoundaryOf2DMesh(), AutomaticMortarGeneration::buildMortarSegmentMesh(), AutomaticMortarGeneration::buildMortarSegmentMesh3d(), AutomaticMortarGeneration::buildNodeToElemMaps(), ParsedFunctorMaterialTempl< is_ad >::buildParsedFunction(), RegistryEntry< T >::buildShared(), MooseObjectParameterName::check(), MooseObjectName::check(), ReporterData::check(), MaterialPropertyInterface::checkBlockAndBoundaryCompatibility(), DM_Moose::checkChildSize(), Registry::checkDataFilePathName(), ControllableParameter::checkExecuteOnType(), MaterialPropertyInterface::checkExecutionStage(), Moose::FunctorBase< libMesh::VectorValue >::checkFace(), Moose::MFEM::NamedFieldsMap< mfem::ParNonlinearForm >::CheckFieldIsRegistered(), MooseUtils::checkFileReadable(), MooseUtils::checkFileWriteable(), TaggingInterface::checkForNans(), FunctorInterface::checkFunctorSupportsSideIntegration(), Coupleable::checkFuncType(), Moose::MFEM::ScaleIntegrator::CheckIntegrator(), Moose::MFEM::NLScaleIntegrator::CheckIntegrator(), NonlinearEigenSystem::checkIntegrity(), NonlinearSystemBase::checkKernelCoverage(), MeshBaseDiagnosticsUtils::checkNonConformalMesh(), OutputWarehouse::checkOutputs(), CSG::CSGXCylinder::checkRadius(), CSG::CSGYCylinder::checkRadius(), CSG::CSGZCylinder::checkRadius(), CSG::CSGSphere::checkRadius(), CSG::CSGBase::checkRegionSurfaces(), ColumnMajorMatrixTempl< Real >::checkShapeEquality(), checkSize(), ColumnMajorMatrixTempl< Real >::checkSquareness(), ActionWarehouse::checkUnsatisfiedActions(), CSGUtils::checkValidCSGName(), ScalarCoupleable::checkVar(), Coupleable::checkVar(), BlockRestrictable::checkVariable(), Coupleable::checkWritableVar(), SplineUtils::circularControlPoints(), MathUtils::circumcenter2D(), MathUtils::circumcenter3D(), ReporterGeneralContext< T >::clear(), AppFactory::clearAppParams(), MooseUtils::clearSymlink(), Factory::clone(), SplineUtils::closestPoints(), SystemBase::closeTaggedVector(), CSG::CSGPlane::coeffsFromPoints(), PenetrationThread::competeInteractions(), CompositeTensorBase< T, U >::CompositeTensorBase(), ComputeJacobianThread::compute(), SplineInterpolationBase::computeCoeffs(), ADInterfaceKernelTempl< T >::computeElemNeighJacobian(), InterfaceKernelTempl< T >::computeElemNeighJacobian(), Assembly::computeFaceMap(), MooseVariableFV< Real >::computeFaceValues(), AutomaticMortarGeneration::computeInactiveLMNodes(), AutomaticMortarGeneration::computeIncorrectEdgeDroppingInactiveLMNodes(), MooseVariableData< OutputType >::computeIncrementAtNode(), ADIntegratedBCTempl< T >::computeJacobian(), ADKernelTempl< T >::computeJacobian(), Moose::LibtorchArtificialNeuralNetTrainer< SamplerType >::computeLocalBatchSize(), AutomaticMortarGeneration::computeMsmStatistics(), SideAdvectiveFluxIntegralTempl< is_ad >::computeQpIntegral(), EqualValueEmbeddedConstraintTempl< is_ad >::computeQpJacobian(), PenaltyEqualValueConstraintTempl< is_ad >::computeQpJacobian(), ConservativeAdvectionTempl< is_ad >::computeQpJacobian(), EqualValueEmbeddedConstraintTempl< is_ad >::computeQpOffDiagJacobian(), ConservativeAdvectionTempl< is_ad >::computeQpOffDiagJacobian(), ADKernelGradTempl< T >::computeQpResidual(), ADKernelValueTempl< T >::computeQpResidual(), ADKernelStabilizedTempl< T >::computeQpResidual(), InterfaceQpMaterialPropertyBaseUserObject< Real >::computeRealValue(), NonlinearSystemBase::computeScaling(), ControllableItem::connect(), NonlinearSystemBase::constraintJacobians(), MooseUnits::convert(), MooseMeshElementConversionUtils::convert3DMeshToAllTet4(), MooseMeshUtils::convertBlockToMesh(), MemoryUtils::convertBytes(), MooseUtils::convertLatestCheckpoint(), MooseMeshUtils::coordTransformFactor(), Factory::copyConstruct(), Assembly::copyFaceShapes(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::copyIn(), Assembly::copyNeighborShapes(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::copyOut(), Assembly::copyShapes(), NEML2Utils::copyTensorToMOOSEData(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::copyToDevice(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::copyToHost(), SystemBase::copyVars(), LazyCoupleable::coupled(), NeighborCoupleable::coupledArrayNeighborGradient(), NeighborCoupleable::coupledArrayNeighborGradientOld(), NeighborCoupleable::coupledArrayNeighborGradientOlder(), AuxKernelTempl< Real >::coupledDot(), AuxKernelTempl< Real >::coupledDotDu(), Coupleable::coupledMatrixTagValue(), Coupleable::coupledMatrixTagValues(), Coupleable::coupledName(), NeighborCoupleable::coupledNeighborDofValues(), NeighborCoupleable::coupledNeighborDofValuesOld(), NeighborCoupleable::coupledNeighborDofValuesOlder(), NeighborCoupleable::coupledNeighborGradient(), NeighborCoupleable::coupledNeighborGradientOld(), NeighborCoupleable::coupledNeighborGradientOlder(), NeighborCoupleable::coupledNeighborSecond(), NeighborCoupleable::coupledNeighborValueOlder(), Coupleable::coupledNodalDot(), Coupleable::coupledNodalValue(), Coupleable::coupledNodalValueOld(), Coupleable::coupledNodalValueOlder(), ScalarCoupleable::coupledScalarComponents(), ScalarCoupleable::coupledScalarValueOlder(), Coupleable::coupledValueLower(), NeighborCoupleable::coupledVectorNeighborGradient(), NeighborCoupleable::coupledVectorNeighborGradientOld(), NeighborCoupleable::coupledVectorNeighborGradientOlder(), Coupleable::coupledVectorTagArrayGradient(), Coupleable::coupledVectorTagArrayGradients(), Coupleable::coupledVectorTagArrayValues(), Coupleable::coupledVectorTagDofValues(), Coupleable::coupledVectorTagGradient(), Coupleable::coupledVectorTagGradients(), ScalarCoupleable::coupledVectorTagScalarValue(), Coupleable::coupledVectorTagValues(), ActionFactory::create(), AppFactory::create(), MeshGeneratorSystem::createAddedMeshGenerators(), CSG::CSGBase::createCell(), Factory::createCheckObjectType(), AppFactory::createdAppCount(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::createInternal(), MeshGeneratorSystem::createMeshGeneratorOrder(), Moose::createMooseApp(), MortarInterfaceWarehouse::createMortarInterface(), MooseMeshUtils::createSubdomainFromSidesets(), MooseUtils::createSymlink(), CSG::CSGCartesianLattice::CSGCartesianLattice(), CSG::CSGHexagonalLattice::CSGHexagonalLattice(), CSG::CSGRegion::CSGRegion(), MooseLinearVariableFV< Real >::curlPhi(), MooseVariableDataFV< OutputType >::curlSln(), MooseVariableData< OutputType >::curlSln(), DependencyResolverInterface::cyclicDependencyError(), CyclicDependencyException< T, Compare >::CyclicDependencyException(), RankTwoTensorTempl< Real >::d2sin3Lode(), RestartableDataMap::data(), dataLoad(), Moose::Kokkos::dataLoad(), dataStore(), ChainControlDataSystem::declareChainControlData(), ReporterVectorContext< T >::declareClone(), MaterialData::declareKokkosProperty(), Moose::MFEM::CoefficientManager::declareMatrixProperty(), Moose::MFEM::CoefficientManager::declareScalarProperty(), ReporterVectorContext< T >::declareVectorClone(), Moose::MFEM::CoefficientManager::declareVectorProperty(), FunctorInterface::deduceFunctorName(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::deepCopy(), CSG::CSGBase::deleteCell(), CSG::CSGBase::deleteLattice(), CSG::CSGBase::deleteSurface(), Syntax::deleteTaskDependencies(), CSG::CSGBase::deleteUniverse(), MooseEnumBase::deprecate(), Syntax::deprecatedActionSyntaxMessage(), RestartableDataReader::deserializeValue(), Registry::determineDataFilePath(), ComputeResidualAndJacobianThread::determineObjectWarehouses(), AuxKernelTempl< Real >::determineWhetherCoincidentLowerDCalc(), Moose::Kokkos::MaterialPropertyBase::dim(), Moose::Kokkos::MaterialPropertyBase::dimSize(), SystemBase::disassociateMatrixFromTag(), SystemBase::disassociateVectorFromTag(), MooseLinearVariableFV< Real >::divPhi(), MooseVariableData< OutputType >::divSln(), DMMooseFunction(), DMMooseGetEmbedding_Private(), DMMooseJacobian(), DMSetUp_Moose_Pre(), MooseVariableDataFV< OutputType >::dofValuesDot(), MooseVariableData< OutputType >::dofValuesDot(), MooseVariableDataFV< OutputType >::dofValuesDotDot(), MooseVariableData< OutputType >::dofValuesDotDot(), MooseVariableDataFV< OutputType >::dofValuesDotDotOld(), MooseVariableData< OutputType >::dofValuesDotDotOld(), MooseVariableDataFV< OutputType >::dofValuesDotOld(), MooseVariableData< OutputType >::dofValuesDotOld(), SymmetricRankTwoTensorTempl< Real >::dsin3Lode(), RankTwoTensorTempl< Real >::dsin3Lode(), ColumnMajorMatrixTempl< Real >::eigen(), ColumnMajorMatrixTempl< Real >::eigenNonsym(), NonlinearSystemBase::enforceNodalConstraintsJacobian(), BicubicInterpolation::errorCheck(), FileRangeBuilder::errorCheck(), SplineInterpolation::errorCheck(), BicubicSplineInterpolation::errorCheck(), Moose::Builder::errorCheck(), ADFParser::Eval(), GeneralFieldTransfer::RecordRequests< Output >::eval_mixed_derivatives(), GeneralFieldTransfer::CachedData< Output >::eval_mixed_derivatives(), GeneralFieldTransfer::RecordRequests< Output >::eval_old_dofs(), GeneralFieldTransfer::CachedData< Output >::eval_old_dofs(), FunctionParserUtils< false >::evaluate(), PiecewiseByBlockLambdaFunctor< T >::evaluate(), evaluate(), MooseLinearVariableFV< Real >::evaluate(), MooseVariableFE< Real >::evaluate(), Moose::NullFunctor< T >::evaluate(), Moose::FunctorBase< libMesh::VectorValue >::evaluateDot(), MooseVariableFV< Real >::evaluateDot(), GriddedData::evaluateFcn(), Moose::FunctorBase< libMesh::VectorValue >::evaluateGradDot(), Moose::FunctorBase< libMesh::VectorValue >::evaluateGradient(), MooseVariableFE< Real >::faceEvaluate(), FactorizedRankTwoTensorTempl< T >::FactorizedRankTwoTensorTempl(), Moose::fe_lagrange_1D_shape(), Moose::fe_lagrange_1D_shape_deriv(), Moose::fe_lagrange_2D_shape(), Moose::fe_lagrange_2D_shape_deriv(), FieldSplitPreconditionerTempl< MoosePreconditioner >::FieldSplitPreconditionerTempl(), MooseVariableField< Real >::fieldType(), FileRangeBuilder::FileRangeBuilder(), ColumnMajorMatrixTempl< Real >::fill(), RankFourTensorTempl< T >::fillAntisymmetricFromInputVector(), RankFourTensorTempl< T >::fillAntisymmetricIsotropicFromInputVector(), FillBetweenPointVectorsTools::fillBetweenPointVectorsGenerator(), SymmetricRankTwoTensorTempl< Real >::fillFromInputVector(), RankThreeTensorTempl< T >::fillFromInputVector(), SymmetricRankFourTensorTempl< T >::fillFromInputVector(), RankFourTensorTempl< T >::fillFromInputVector(), RankTwoTensorTempl< Real >::fillFromInputVector(), SymmetricRankTwoTensorTempl< Real >::fillFromScalarVariable(), RankTwoTensorTempl< Real >::fillFromScalarVariable(), RankThreeTensorTempl< T >::fillGeneralFromInputVector(), RankFourTensorTempl< T >::fillGeneralFromInputVector(), RankFourTensorTempl< T >::fillGeneralIsotropicFromInputVector(), SymmetricRankFourTensorTempl< T >::fillGeneralOrthotropicFromInputVector(), RankFourTensorTempl< T >::fillGeneralOrthotropicFromInputVector(), NearestPointBase< LayeredSideDiffusiveFluxAverage, SideIntegralVariableUserObject >::fillPoints(), SymmetricRankFourTensorTempl< T >::fillPrincipalFromInputVector(), RankFourTensorTempl< T >::fillPrincipalFromInputVector(), SymmetricRankFourTensorTempl< T >::fillSymmetricIsotropicEandNuFromInputVector(), RankFourTensorTempl< T >::fillSymmetricIsotropicEandNuFromInputVector(), TriangleManifold::finalize(), SamplerBase::finalize(), VectorPostprocessorContext< T >::finalize(), ReporterContext< std::vector< T > >::finalize(), NonlinearEigenSystem::finalNonlinearResidual(), CommandLine::findCommandLineParam(), NearestNodeLocator::findNodes(), MultiIndex< Real >::flatIndex(), FormattedTable::FormattedTable(), FunctionPeriodicBoundary::FunctionPeriodicBoundary(), FunctionParserUtils< false >::functionsOptimize(), MOOSEQuantityToNEML2< T, state >::gatheredData(), LeastSquaresFitBase::generate(), GeometricSearchData::GeometricSearchData(), FileInputStream::get(), ControllableItem::get(), Moose::WebServerControlTypeRegistry::get(), ActionWarehouse::getAction(), ActionWarehouse::getActionByTask(), MooseObjectWarehouseBase< Indicator >::getActiveObject(), AppFactory::getAppParams(), AppFactory::getAppParamsID(), BlockRestrictable::getBlockCoordSystem(), MaterialPropertyInterface::getBlockMaterialProperty(), MooseVariableFV< Real >::getBoundaryFaceValue(), MooseMeshUtils::getBoundaryIDs(), CSG::CSGUniverse::getCell(), CSG::CSGCellList::getCell(), ChainControlDataBase::getChainControl(), ChainControlDataSystem::getChainControlData(), MooseServer::getCheckApp(), Moose::MFEM::CoefficientMap< mfem::MatrixCoefficient, mfem::PWMatrixCoefficient >::getCoefficientPtr(), Parser::getCommandLineRoot(), NonlinearEigenSystem::getConvergedEigenpair(), NonlinearEigenSystem::getConvergedEigenvalue(), NonlinearEigenSystem::getCurrentNonlinearIterationNumber(), MooseUtils::DelimitedFileReaderTempl< T >::getData(), MooseUtils::DelimitedFileReaderTempl< T >::getDataAsPoints(), Registry::getDataFilePath(), Coupleable::getDefaultValue(), Moose::Kokkos::DispatcherRegistry::getDispatcher(), DistributionInterface::getDistribution(), DistributionInterface::getDistributionByName(), MooseVariableDataFV< OutputType >::getElementalValue(), MooseVariableData< OutputType >::getElementalValue(), ElementIDInterface::getElementIDIndex(), ElementIDInterface::getElementIDIndexByName(), ElementPairLocator::getElemPairInfo(), ElementPairLocator::getElemPairs(), NonlinearEigenSystem::getEPS(), Moose::getExec(), NonlinearSystemBase::getFieldSplitPreconditioner(), CSG::CSGCell::getFillLattice(), CSG::CSGCell::getFillMaterial(), CSG::CSGCell::getFillUniverse(), MeshCoarseningUtils::getFineElementsFromInteriorNode(), VariableWarehouse::getFVVariable(), AuxKernelTempl< Real >::getGenericMaterialProperty(), Moose::MFEM::EquationSystem::GetGradient(), CSG::CSGSurface::getHalfspaceFromPoint(), RestartableDataReader::getHeader(), MortarInterfaceWarehouse::getHigherDimSubdomainIDs(), MaterialPropertyRegistry::getID(), MooseMeshUtils::getIDFromName(), PenetrationThread::getInfoForFacesWithCommonNodes(), InputParameterWarehouse::getInputParameters(), MaterialPropertyInterface::getKokkosBlockMaterialProperty(), MaterialData::getKokkosProperty(), FormattedTable::getLastData(), Parser::getLastInputFileName(), MooseUtils::getLatestCheckpointFilePrefix(), CSG::CSGLatticeList::getLattice(), CSG::CSGBase::getLatticeByName(), LayeredBase::getLayerValue(), AuxKernelTempl< Real >::getMaterialProperty(), AuxKernelTempl< Real >::getMaterialPropertyOld(), AuxKernelTempl< Real >::getMaterialPropertyOlder(), SystemBase::getMatrix(), MeshGeneratorSystem::getMeshGenerator(), MortarInterfaceWarehouse::getMortarInterface(), MortarSegmentHelper::getMortarSegments(), MaterialPropertyRegistry::getName(), MooseVariableData< OutputType >::getNodalValue(), MooseObjectWarehouseBase< Indicator >::getObject(), MeshCoarseningUtils::getOppositeNodeIndex(), CSG::CSGLattice::getOuterMaterial(), CSG::CSGLattice::getOuterUniverse(), OutputWarehouse::getOutput(), Moose::DataFileUtils::getPath(), Moose::PetscSupport::getPetscKSPNormType(), Moose::PetscSupport::getPetscPCSide(), ActionWarehouse::getPhysics(), MaterialPropertyInterface::getPossiblyConstantGenericMaterialPropertyByName(), InterfaceValueTools::getQuantity(), ReporterData::getReporterContextBase(), ReporterData::getReporterStateBase(), ReporterData::getReporterStateHelper(), ReporterData::getReporterValue(), Registry::getRepositoryURL(), CSG::CSGHexagonalLattice::getRingIndexFromRowIndex(), Parser::getRoot(), MooseServer::getRoot(), CSG::CSGHexagonalLattice::getRowIndexFromRingIndex(), RankTwoTensorTempl< Real >::getRUDecompositionRotation(), SamplerInterface::getSamplerByName(), MeshGeneratorSystem::getSavedMesh(), Moose::MFEM::CoefficientManager::getScalarCoefficientPtr(), ScalarCoupleable::getScalarVar(), SystemBase::getScalarVariable(), PenetrationThread::getSideCornerNodes(), PenetrationThread::getSmoothingEdgeNodesAndWeights(), PenetrationThread::getSmoothingFacesAndWeights(), NonlinearSystem::getSNES(), NonlinearEigenSystem::getSNES(), Syntax::getSortedTask(), MooseMeshUtils::getSubdomainID(), MooseMeshUtils::getSubdomainIDs(), CSG::CSGSurfaceList::getSurface(), Moose::MFEM::TimeDerivativeMap::getTimeDerivativeName(), Moose::MFEM::TimeDerivativeMap::getTimeIntegralName(), SystemBase::getTimeIntegrator(), CSG::CSGUniverseList::getUniverse(), CSG::CSGLattice::getUniverseAtIndex(), CSG::CSGLattice::getUniverseIndices(), ActionFactory::getValidParams(), AppFactory::getValidParams(), Coupleable::getVarHelper(), SystemBase::getVariable(), SystemBase::getVector(), Moose::MFEM::CoefficientManager::getVectorCoefficientPtr(), Coupleable::getVectorVar(), Moose::globalDofIndexToDerivative(), MooseVariableInterface< Real >::gradient(), MooseVariableInterface< Real >::gradientOld(), MooseVariableInterface< Real >::gradientOlder(), MooseVariableDataFV< OutputType >::gradSlnDot(), MooseVariableData< OutputType >::gradSlnDot(), MooseVariableDataFV< OutputType >::gradSlnDotDot(), MooseVariableData< OutputType >::gradSlnDotDot(), Moose::FV::greenGaussGradient(), Moose::FunctorBase< libMesh::VectorValue >::hasBlocks(), MooseUtils::hostname(), GeneralRegistry< std::string, PerfGraphSectionInfo >::id(), Moose::MFEM::ComplexEquationSystem::Init(), LazyCoupleable::init(), Moose::MFEM::EquationSystem::Init(), Adaptivity::init(), MooseParsedFunctionWrapper::initialize(), BlockRestrictable::initializeBlockRestrictable(), BoundaryRestrictable::initializeBoundaryRestrictable(), ChainControlParsedFunctionWrapper::initializeFunctionInputs(), LinearSystem::initialSetup(), Moose::Builder::initSyntaxFormatter(), InputParameters::addDeprecatedParam< std::vector< MooseEnum > >(), InputParameters::addParam< std::vector< MooseEnum > >(), InputParameters::addParam< std::vector< MultiMooseEnum > >(), InputParameters::addRequiredParam< std::vector< MultiMooseEnum > >(), MooseUtils::StaticallyAllocatedSet< T, N >::insert(), MooseLinearVariableFV< Real >::insertLower(), MooseUtils::installedInputsDir(), LayeredBase::integralValue(), Moose::FV::interpCoeffs(), Moose::FV::interpolate(), ColumnMajorMatrixTempl< Real >::inverse(), RankFourTensorTempl< T >::invSymm(), MooseVariableField< Real >::isArray(), RestartableDataReader::isAvailable(), Coupleable::isCoupled(), ScalarCoupleable::isCoupledScalar(), Moose::FunctorBase< libMesh::VectorValue >::isExtrapolatedBoundaryFace(), ActionWarehouse::isTaskComplete(), MortarSegmentInfo::isValid(), CSG::CSGTransformationHelper::isValidTransformationValue(), GeneralRegistry< std::string, PerfGraphSectionInfo >::itemNonLocking(), ADFParser::JITCompile(), Moose::Kokkos::MeshHolder::kokkosMesh(), LayeredBase::LayeredBase(), LayeredIntegralBase< ElementIntegralVariableUserObject >::LayeredIntegralBase(), LevelSetMeshingHelper::LevelSetMeshingHelper(), Moose::LibtorchArtificialNeuralNet::LibtorchArtificialNeuralNet(), Moose::FV::limiterType(), LinearFVGradientInterface::linearFVLimitedGradientContainer(), MooseMeshXYCuttingUtils::lineRemoverCutElemTri(), MooseMeshXYCuttingUtils::lineRemoverMoveNode(), RestartableEquationSystems::load(), Moose::TorchScriptModule::loadNeuralNetwork(), LockFile::LockFile(), MooseVariableFV< Real >::lowerDError(), MooseUtils::makedirs(), FaceArgProducerInterface::makeFace(), FormattedTable::makeGnuplot(), MultiAppCoordTransform::mapBack(), MaterialProperty< Real >::MaterialProperty(), MaterialPropertyBase< T, false >::MaterialPropertyBase(), MooseVariableDataBase< OutputType >::matrixTagValue(), MeshBaseImageSampler::MeshBaseImageSampler(), MeshMetaDataInterface::meshPropertyPrefix(), MooseAppCoordTransform::MooseAppCoordTransform(), moose::internal::mooseDeprecatedStream(), MooseEnumBase::MooseEnumBase(), MeshMetaDataInterface::mooseErrorInternal(), MooseVariableInterface< Real >::mooseLinearVariableFV(), Moose::SlepcSupport::mooseMatMult_Eigen(), Moose::SlepcSupport::mooseMatMult_NonEigen(), MooseParsedFunctionBase::MooseParsedFunctionBase(), MathUtils::mooseSetToZero(), Moose::SlepcSupport::mooseSlepcEPSGetSNES(), MooseVariableInterface< Real >::mooseVariable(), MooseVariableInterface< Real >::mooseVariableFV(), MooseVariableInterface< Real >::MooseVariableInterface(), moose::internal::mooseWarningStream(), NonlinearSystemBase::mortarConstraints(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::moveToDevice(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::moveToHost(), MultiIndex< Real >::MultiIndex(), Moose::Kokkos::MaterialPropertyBase::name(), SystemBase::needSolutionState(), NeighborMooseVariableInterface< Real >::neighborGradient(), NeighborMooseVariableInterface< Real >::neighborGradientOld(), NeighborMooseVariableInterface< Real >::neighborGradientOlder(), MooseMeshElementConversionUtils::neighborNodeIndicesHEX8(), KDTree::neighborSearch(), NeighborMooseVariableInterface< Real >::neighborSecond(), NeighborMooseVariableInterface< Real >::neighborSecondOld(), NeighborMooseVariableInterface< Real >::neighborSecondOlder(), NeighborMooseVariableInterface< Real >::neighborSecondPhi(), NeighborMooseVariableInterface< Real >::neighborSecondTest(), NeighborMooseVariableInterface< Real >::neighborValue(), NeighborMooseVariableInterface< Real >::neighborValueOld(), NeighborMooseVariableInterface< Real >::neighborValueOlder(), NonlinearEigenSystem::nLinearIterations(), NonlinearEigenSystem::nNonlinearIterations(), MooseVariableDataBase< OutputType >::nodalMatrixTagValue(), ProjectedStatefulMaterialNodalPatchRecoveryTempl< T, is_ad >::nodalPatchRecovery(), MooseVariableDataBase< OutputType >::nodalValue(), MooseVariableDataBase< OutputType >::nodalValueArray(), MooseVariableData< OutputType >::nodalValueDot(), MooseVariableData< OutputType >::nodalValueDotDot(), MooseVariableData< OutputType >::nodalValueDotDotOld(), MooseVariableData< OutputType >::nodalValueDotOld(), MooseVariableDataBase< OutputType >::nodalVectorTagValue(), MooseMeshElementConversionUtils::nodeRotationHEX8(), MooseMeshElementConversionUtils::nodeRotationPRISM6(), MooseMeshElementConversionUtils::nodeRotationPYRAMID5(), NonlinearEigenSystem::NonlinearEigenSystem(), NonlinearEigenSystem::nonlinearSolver(), SystemBase::nonTimeVectorTag(), CSG::nRingToRow(), CSG::nRowToRing(), Registry::objData(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::offset(), Moose::FV::onBoundary(), FlagElementsThread::onElement(), NonlinearThread::onExternalSide(), ProjectMaterialProperties::onInternalSide(), FormattedTable::open(), MooseUnits::operator Real(), NearestNodeThread::operator()(), PenetrationThread::operator()(), ComputeLinearFVLimitedGradientThread::operator()(), ColumnMajorMatrixTempl< Real >::operator()(), ColumnMajorMatrixTempl< Real >::operator*(), ColumnMajorMatrixTempl< Real >::operator+=(), MaterialPropertyBase< T, false >::operator=(), ColumnMajorMatrixTempl< Real >::operator=(), MaterialProperty< Real >::operator=(), ADMaterialProperty< Real >::operator=(), RankTwoTensorTempl< Real >::operator=(), ExecuteMooseObjectWarehouse< Transfer >::operator[](), OutputMapWrapper< ExecFlagEnum >::operator[](), OrientedBoxInterface::OrientedBoxInterface(), MortarNodalGeometryOutput::output(), Moose::Kokkos::DispatcherBase::parallelFor(), Moose::Kokkos::DispatcherBase::parallelReduce(), FVRelationshipManagerInterface::parameterError(), MooseUnits::parse(), CommandLine::parse(), GriddedData::parse(), FunctionMaterialPropertyDescriptor< is_ad >::parseDependentSymbols(), FunctionMaterialPropertyDescriptor< is_ad >::parseDerivative(), FunctionParserUtils< false >::parsedFunctionSetup(), MooseUnits::parseError(), Parser::parseError(), Parser::Parser(), Factory::parseTime(), Moose::SlepcSupport::PCApply_MoosePC(), Moose::SlepcSupport::PCSetUp_MoosePC(), PenetrationLocator::PenetrationLocator(), MathUtils::plainLog(), MathUtils::poly1Log(), MathUtils::poly2Log(), MathUtils::poly3Log(), MathUtils::poly4Log(), PolynomialFit::PolynomialFit(), CommandLine::populateCommandLineParams(), SymmetricRankTwoTensorTempl< Real >::positiveProjectionEigenDecomposition(), RankTwoTensorTempl< Real >::positiveProjectionEigenDecomposition(), NonlinearEigenSystem::postAddResidualObject(), MortarNodalAuxKernelTempl< ComputeValueType >::precalculateValue(), MaterialPropertyValueTempl< is_ad >::precomputeQpJacobian(), Moose::MFEM::EquationSystem::PrepareLinearSolver(), MooseUtils::DelimitedFileReaderTempl< T >::preprocessLine(), NonlinearSystemBase::preSMOResidual(), MooseUtils::DelimitedFileReaderTempl< T >::processLine(), processLiteralVectors(), MFEMNodalProjector::projectNodalValues(), Moose::Mortar::projectQPoints3d(), PerfGraph::push(), MOOSEQuantityToNEML2< T, state >::qpData(), rankConfig(), RankFourTensorTempl< T >::RankFourTensorTempl(), RankMap::ranks(), RankThreeTensorTempl< T >::RankThreeTensorTempl(), RankTwoTensorTempl< Real >::RankTwoTensorTempl(), MooseUtils::DelimitedFileReaderTempl< T >::readColumnData(), RestartableDataReader::readHeader(), DerivativeParsedMaterialHelperTempl< is_ad >::recurseDerivative(), FunctorChangeFunctorMaterialTempl< is_ad >::referenceState(), Factory::reg(), moose::internal::PerfGraphRegistry::registerSection(), Syntax::registerTaskName(), EqualValueEmbeddedConstraintTempl< is_ad >::reinitConstraint(), StringInputStream::release(), CommandLine::removeArgument(), ExecFlagEnum::removeAvailableFlags(), CSG::CSGUniverse::removeCell(), CSG::CSGBase::removeCellFromUniverse(), MooseUtils::removedirs(), SystemBase::removeMatrix(), SystemBase::removeVector(), CSG::CSGCellList::renameCell(), CSG::CSGLatticeList::renameLattice(), CSG::CSGSurfaceList::renameSurface(), CSG::CSGUniverseList::renameUniverse(), ReporterName::ReporterName(), Factory::reportUnregisteredError(), LinearFVGradientInterface::requestLinearFVLimitedGradients(), Coupleable::requestStates(), RestartableDataReader::requireRestoring(), ReporterContextBase::requiresConsumerModes(), CSG::CSGBase::resetCellFill(), CSG::CSGBase::resetLatticeOuter(), NonlinearSystem::residualAndJacobianTogether(), NonlinearEigenSystem::residualAndJacobianTogether(), SystemBase::residualCopy(), SystemBase::residualGhosted(), NonlinearSystemBase::residualVector(), SystemBase::residualVectorTag(), Moose::Kokkos::Thread< thread_id_type, max_dimension >::resize(), MultiIndex< Real >::resize(), ReporterGeneralContext< T >::resize(), MooseVariableDataBase< OutputType >::resizeVectorTagData(), OptionalMaterialPropertyProxy< M, T, is_ad >::resolve(), RestartableDataReader::restore(), RestartableEquationSystems::restore(), RestartableDataReader::restoreData(), SystemBase::restoreSolutions(), Moose::restrictPointToFace(), PenetrationThread::restrictPointToFace(), PenetrationThread::restrictPointToSpecifiedEdgeOfFace(), RotationMatrix::rodriguesRotationMatrix(), SymmetricRankTwoTensorTempl< Real >::row(), LinearInterpolation::sample(), BidimensionalInterpolation::sample2ndDerivative(), BicubicInterpolation::sample2ndDerivative(), BicubicSplineInterpolation::sample2ndDerivative(), BidimensionalInterpolation::sampleDerivative(), BicubicInterpolation::sampleDerivative(), BicubicSplineInterpolation::sampleDerivative(), BilinearInterpolation::sampleDerivativeInternal(), BidimensionalInterpolation::sampleValueAndDerivatives(), ScalarCoupleable::ScalarCoupleable(), MooseVariableInterface< Real >::second(), MooseVariableInterface< Real >::secondOld(), MooseVariableInterface< Real >::secondOlder(), MooseVariableInterface< Real >::secondPhi(), MooseLinearVariableFV< Real >::secondPhi(), MooseVariableInterface< Real >::secondPhiFace(), MooseLinearVariableFV< Real >::secondPhiFace(), MooseLinearVariableFV< Real >::secondPhiFaceNeighbor(), MooseLinearVariableFV< Real >::secondPhiNeighbor(), MooseVariableDataFV< OutputType >::secondSln(), MooseVariableData< OutputType >::secondSln(), MooseVariableInterface< Real >::secondTest(), MooseVariableInterface< Real >::secondTestFace(), PerfGraph::sectionData(), Moose::FV::selectInterpolationMethod(), ControllableItem::set(), Moose::ParameterRegistry::set(), Adaptivity::setAdaptivityOn(), CommandLine::setCommandLineParam(), MooseAppCoordTransform::setCoordinateSystem(), MultiAppCoordTransform::setDestinationCoordTransform(), Moose::SlepcSupport::setEigenProblemOptions(), Moose::SlepcSupport::setEigenProblemSolverParams(), Moose::SlepcSupport::setEigenSolverOptions(), Adaptivity::setErrorEstimator(), ActionWarehouse::setFinalTask(), PiecewiseByBlockLambdaFunctor< T >::setFunctor(), MooseEnumItem::setID(), CSG::CSGBase::setLatticeOuter(), CSG::CSGBase::setLatticeUniverses(), Moose::PetscSupport::setLineSearchFromParams(), SolverSystem::setMooseKSPNormType(), Assembly::setMortarQRule(), Moose::SlepcSupport::setNewtonPetscOptions(), MooseVariableFV< Real >::setNodalValue(), Moose::SlepcSupport::setNonlinearPowerOptions(), PenetrationLocator::setNormalSmoothingMethod(), Adaptivity::setParam(), SolverSystem::setPCSide(), CSG::CSGCartesianLattice::setPitch(), CSG::CSGHexagonalLattice::setPitch(), NonlinearSystemBase::setPreconditioner(), MooseAppCoordTransform::setRotation(), Moose::PetscSupport::setSinglePetscOption(), CSG::CSGLattice::setUniverseAtIndex(), CSG::CSGBase::setUniverseAtLatticeIndex(), CSG::CSGCartesianLattice::setUniverses(), CSG::CSGHexagonalLattice::setUniverses(), NonlinearSystem::setupColoringFiniteDifferencedPreconditioner(), MooseAppCoordTransform::setUpDirection(), NonlinearSystem::setupFiniteDifferencedPreconditioner(), NonlinearEigenSystem::setupFiniteDifferencedPreconditioner(), MeshBaseImageSampler::setupImageSampler(), ImageSampler::setupImageSampler(), NonlinearSystemBase::setupScalingData(), SamplerBase::setupVariables(), Moose::SlepcSupport::setWhichEigenPairsOptions(), Moose::Kokkos::ArrayBase< Moose::Kokkos::RPNEvaluator::Instruction, dimension, index_type >::shallowCopy(), SymmetricRankTwoTensorTempl< Real >::sin3Lode(), RankTwoTensorTempl< Real >::sin3Lode(), MultiIndex< Real >::slice(), SystemBase::solutionState(), SystemBase::solutionStateParallelType(), Moose::MFEM::EigenproblemESProblemOperator::Solve(), Moose::MFEM::ProblemOperatorBase::SolveWithOperator(), SplineInterpolationBase::spline(), GriddedData::splitToRealVec(), MooseVariableDataBase< OutputType >::stateToTagHelper(), NonlinearSystem::stopSolve(), NonlinearEigenSystem::stopSolve(), RestartableDataValue::store(), NEML2Utils::stringify(), Moose::PetscSupport::stringify(), Moose::stringify(), Moose::stringToEnum< CoordinateSystemType >(), Moose::stringToEnum< EigenProblemType >(), Moose::stringToEnum< EigenSolveType >(), Moose::stringToEnum< LineSearchType >(), Moose::stringToEnum< MffdType >(), Moose::stringToEnum< RelationshipManagerType >(), Moose::stringToEnum< SolveType >(), Moose::stringToEnum< TimeIntegratorType >(), Moose::stringToEnum< WhichEigenPairs >(), PiecewiseByBlockLambdaFunctor< T >::subdomainErrorMessage(), RankFourTensorTempl< T >::surfaceFillFromInputVector(), RankTwoTensorTempl< Real >::surfaceFillFromInputVector(), SymmetricRankTwoTensorTempl< Real >::syev(), RankTwoTensorTempl< Real >::syev(), SymmetricRankTwoTensorTempl< Real >::symmetricEigenvaluesEigenvectors(), RankTwoTensorTempl< Real >::symmetricEigenvaluesEigenvectors(), SymmetricRankFourTensorTempl< T >::SymmetricRankFourTensorTempl(), SymmetricRankTwoTensorTempl< Real >::SymmetricRankTwoTensorTempl(), SystemBase::systemMatrixTag(), TableValue< T >::TableValue(), TaggingInterface::TaggingInterface(), LibtorchUtils::tensorToVector(), MooseMeshElementConversionUtils::tetNodesForHex(), LinearTimeIntegratorInterface::timeDerivativeMatrixContribution(), LinearTimeIntegratorInterface::timeDerivativeRHSContribution(), SystemBase::timeVectorTag(), Moose::LibtorchArtificialNeuralNetTrainer< SamplerType >::train(), ReporterContext< std::vector< T > >::transferFromVector(), ReporterContext< std::vector< T > >::transferToVector(), MooseAppCoordTransform::transformMesh(), moose::translateMetaPhysicLError(), TriangleManifoldUtils::SurfaceChecker::triangulate(), MortarSegmentHelper::triangulatePoly(), MeshTriangulationUtils::triangulateWithDelaunay(), TrilinearInterpolation::TrilinearInterpolation(), Moose::Kokkos::MaterialPropertyBase::type(), MooseVariableDataFV< OutputType >::uDot(), MooseVariableData< OutputType >::uDot(), MooseVariableDataFV< OutputType >::uDotDot(), MooseVariableData< OutputType >::uDotDot(), MooseVariableDataFV< OutputType >::uDotDotOld(), MooseVariableData< OutputType >::uDotDotOld(), MooseVariableDataFV< OutputType >::uDotOld(), MooseVariableData< OutputType >::uDotOld(), geom_utils::unitVector(), AuxKernelTempl< Real >::uOld(), AuxKernelTempl< Real >::uOlder(), MortarInterfaceWarehouse::update(), CSG::CSGBase::updateCellFill(), CSG::CSGBase::updateCellRegion(), NearestNodeLocator::updatePatch(), TaggingInterface::useMatrixTag(), TaggingInterface::useVectorTag(), ScalarCoupleable::validateExecutionerType(), Coupleable::validateExecutionerType(), ADInterfaceKernelTempl< T >::validParams(), ADKernelTempl< T >::validParams(), DiracKernelTempl< T >::validParams(), InterfaceKernelTempl< T >::validParams(), FunctionMaterialPropertyDescriptor< is_ad >::value(), ReporterState< std::vector< T > >::value(), ValueCache< T >::ValueCache(), ReporterGeneralContext< T >::vectorSum(), ReporterVectorContext< T >::vectorSum(), MooseVariableDataBase< OutputType >::vectorTagDofValue(), Coupleable::vectorTagDofValueHelper(), MooseVariableDataBase< OutputType >::vectorTagGradient(), MooseVariableDataBase< OutputType >::vectorTagValue(), Coupleable::vectorTagValueHelper(), MooseParsedFunctionBase::verifyFunction(), MeshBaseImageSampler::vtkThreshold(), ImageSampler::vtkThreshold(), Coupleable::writableCoupledValue(), Coupleable::writableVariable(), RestartableDataWriter::write(), SystemBase::zeroTaggedVector(), SystemBase::zeroVariables(), InputStream::~InputStream(), and ThreadedFaceLoop< RangeType >::~ThreadedFaceLoop().

312 {
313  std::ostringstream oss;
314  moose::internal::mooseStreamAll(oss, std::forward<Args>(args)...);
316 }
void mooseStreamAll(std::ostringstream &ss)
All of the following are not meant to be called directly - they are called by the normal macros (moos...
Definition: MooseError.C:137
void mooseErrorRaw(std::string msg, const std::string &prefix="", const hit::Node *node=nullptr, const bool show_trace=true)
Main callback for emitting a moose error.
Definition: MooseError.C:53

◆ mooseInfo()

template<typename... Args>
void mooseInfo ( Args &&...  args)

Emit an informational message with the given stringified, concatenated args.

Definition at line 401 of file MooseError.h.

Referenced by Parser::parse(), DerivativeParsedMaterialHelperTempl< is_ad >::recurseDerivative(), and ReporterData::restoreState().

402 {
403  moose::internal::mooseInfoStream(Moose::out, std::forward<Args>(args)...);
404 }
void mooseInfoStream(S &oss, Args &&... args)
Definition: MooseError.h:245

◆ mooseInfoRepeated()

template<typename... Args>
void mooseInfoRepeated ( Args &&...  args)

◆ mooseUnused()

template<typename... Args>
void mooseUnused ( Args &&...  args)

Warning message used to notify the users of unused parts of their input files Really used internally by the parser and shouldn't really be called elsewhere.

Definition at line 354 of file MooseError.h.

Referenced by Moose::Builder::errorCheck().

355 {
356  moose::internal::mooseUnusedStream(Moose::out, std::forward<Args>(args)...);
357 }
void mooseUnusedStream(S &oss, Args &&... args)
Definition: MooseError.h:216

◆ mooseWarning()

template<typename... Args>
void mooseWarning ( Args &&...  args)

Emit a warning message with the given stringified, concatenated args.

Inside static functions, you will need to explicitly scope your mooseWarning call - i.e. do "::mooseWarning(arg1, ...);".

Definition at line 345 of file MooseError.h.

Referenced by CSG::CSGUniverse::addCell(), SplineUtils::bSplineControlPoints(), MooseMeshUtils::buildLoopBoundaryOf2DMesh(), AutomaticMortarGeneration::buildMortarSegmentMesh(), AutomaticMortarGeneration::buildMortarSegmentMesh3d(), MooseEnumBase::checkDeprecated(), SolverSystem::checkInvalidSolution(), CSG::CSGBase::checkUniverseLinking(), NonlinearSystem::converged(), CSG::CSGBase::deleteCell(), PenetrationLocator::detectPenetration(), FunctionParserUtils< false >::evaluate(), FileRangeBuilder::FileRangeBuilder(), Moose::findContactPoint(), FunctionParserUtils< false >::FunctionParserUtils(), ControllableParameter::get(), MooseMeshUtils::getBoundaryIDs(), Coupleable::getDefaultVectorValue(), MemoryUtils::getMemoryStats(), Moose::FV::greenGaussGradient(), Moose::FV::harmonicInterpolation(), DerivativeFunctionMaterialBaseTempl< is_ad >::initialSetup(), LayeredBase::LayeredBase(), LockFile::LockFile(), MemoryUsageReporter::MemoryUsageReporter(), ChainControlDataSystem::outputChainControlMap(), MooseMeshXYCuttingUtils::quadToTriOnLine(), MooseMeshXYCuttingUtils::quasiTriElementsFixer(), Moose::internal::Capabilities::registerMooseCapabilities(), MooseUtils::serialBegin(), MooseUtils::serialEnd(), Moose::SlepcSupport::setEigenProblemSolverParams(), ShapeUserObject< SideUserObject >::ShapeUserObject(), InputParameters::transferParam(), DerivativeMaterialInterface< JvarMapKernelInterface< GenericKernelGrad< is_ad > > >::validateCoupling(), DerivativeMaterialInterface< JvarMapKernelInterface< GenericKernelGrad< is_ad > > >::validateDerivativeMaterialPropertyBase(), LockFile::~LockFile(), and ValueCache< T >::~ValueCache().

346 {
347  moose::internal::mooseWarningStream(Moose::out, std::forward<Args>(args)...);
348 }
void mooseWarningStream(S &oss, Args &&... args)
Definition: MooseError.h:197

◆ operator<<()

template<typename... T>
std::ostream& operator<< ( std::ostream &  os,
const std::tuple< T... > &  tup 
)

Definition at line 52 of file MooseError.h.

53 {
54  os << "[";
55  print_tuple<0>(os, tup);
56  return os << "]";
57 }
std::basic_ostream< charT, traits > * os
Definition: InfixIterator.h:34

◆ print_tuple()

template<size_t n, typename... T>
void print_tuple ( std::ostream &  os,
const std::tuple< T... > &  tup 
)

Definition at line 40 of file MooseError.h.

41 {
42  if constexpr (n < sizeof...(T))
43  {
44  if (n != 0)
45  os << ", ";
46  os << std::get<n>(tup);
47  print_tuple<n + 1>(os, tup);
48  }
49 }
std::basic_ostream< charT, traits > * os
Definition: InfixIterator.h:34