AuxScalarKernels System
An AuxiliaryScalarVariable
is to a ScalarVariable what an AuxVariable is to a MooseVariable. It is not the solution of a differential equation and instead can be computed directly by algebraic operations using an auxiliary scalar kernel.
Creating a custom AuxScalarKernel
object is done by creating a new C++ object that inherits from AuxScalarKernel
and overriding the computeValue
method.
AuxScalarKernel
objects, like all Kernel
objects, must operate on a variable. Thus, there is a required parameter ("variable") that indicates the variable that the AuxScalarKernel
object is computing. These variables are defined in the AuxVariables block of the input file, and must be of family SCALAR
.
For higher order scalar variables, computeValue
is called multiple times with each order index _i
for the value of each order. The definition of computeValue
may depend on _i
, as appropriate.
Execution schedule
Please see the documentation for field auxiliary kernels (AuxKernels) which applies identically to AuxScalarKernels
.
Examples
AuxScalarKernels
are essentially used for postprocessing or for decoupling solves. The examples in the documentation for field auxiliary kernels (AuxKernels) can conceptually be adapted to AuxScalarKernels
.
Available Objects
- Moose App
- ConstantScalarAuxSets an auxiliary field variable to a controllable constant value.
- FunctionScalarAuxSets a value of a scalar variable based on a function.
- QuotientScalarAuxCompute the ratio of two scalar variables.
- ScalarTagMatrixAuxCouple a tag matrix, and return its nodal value
- ScalarTagVectorAuxCouple a tag vector, and return its value
- SolutionScalarAuxSets scalar variable by using information from a SolutionUserObject.
- Crane App
- AuxInitialConditionScalar
- BolsigValueScalar
- DensityLogConvertScalar
- EEDFRateCoefficientScalar
- ElectronMobility
- MoleFraction
- ParsedAuxScalarParsed function AuxScalarKernel.
- ParsedScalarRateCoefficientParsed function AuxKernel.
- ReactionRateOneBodyScalar
- ReactionRateThreeBodyScalar
- ReactionRateTwoBodyScalar
- ReducedField
- ReducedFieldScalar
- ScalarLinearInterpolation
- ScalarSplineInterpolation
- SuperelasticRateCoefficientScalar
- VariableSum
- VariableSumLog
Available Actions
- Moose App
- AddScalarKernelActionAdd a AuxScalarKernel object to the simulation.