DimensionalizeAction
Overview
The DimensionalizeAction
action is responsible for fetching the characteristic scales from the user and applying them to dimensionalize any field passed from NekRS into MOOSE (AuxVariables, Postprocessors, UserObjects, etc.). To use, add a [Dimensionalize]
block inside the [Problem]
block.
Cardinal assumes that the NekRS inputs were nondimensionalized with the following:
(1)
(2)
(3)
(4)
(5)
where superscripts indicate nondimensional quantities. U
is used to specify , T
is used to specify , dT
is used to specify , L
is used to specify , rho
is used to specify , and Cp
is used to specify (which does not appear above, but is necessary for scaling a volumetric heat source). Finally, the mesh mirror must be in the same units as used in the coupled MOOSE application, so the scaling
parameter on NekRSMesh must be set to dimensionalize the nondimensional .re2
mesh. In other words, scaling
must be set to .
For passive scalars, NekRS allows each to be dimensionalized in a manner similar to temperature,
s01
, s02
, and s03
are used to indicate the for scalars 1, 2, and 3, respectively. ds01
, ds02
, and ds03
are used to indicate the for scalars 1, 2, and 3, respectively.
These characteristic scales are used by Cardinal to scale the NekRS solution into the units that the coupled MOOSE application expects. You still need to properly non-dimensionalize the NekRS input files. That is, you cannot simply specify the non-dimensional scales in this class and expect a dimsensional NekRS input specification to be converted to non-dimensional form.
For example, suppose your NekRS input is in non-dimensional form. Applying a NekVolumeAverage postprocessor to temperature would be used to evaluate a volume average of temperature.
If the NekRS inputs are properly non-dimensionalized and the correct scales are provided to this class, then temperature is non-dimensionalized according to Eq. (3) and volume is non-dimensionalized according to Eq. (4), or
(6)
The NekVolumeAverage postprocessor is then computed directly on the NekRS solution (in non-dimensional form) to give
(7)
where is the value of the postprocessor in non-dimensional form. Before returning the value of the postprocessor, Eq. (7) is dimensionalized by applying the scales in Eq. (3) and Eq. (6) to give the
(8)
where is the value of the postprocessor in dimensional form (which is what is actually returned by the postprocessor).
Input Parameters
The following are all optional input parameters for this object:
U
: Reference velocityL
: Reference lengthT
anddT
: Reference temperature and temperature delta, respectivelys01
andds01
: Reference scalar01 and scalar01 delta, respectivelys02
andds02
: Reference scalar02 and scalar02 delta, respectivelys03
andds03
: Reference scalar03 and scalar03 delta, respectivelyrho
: Reference densityCp
: Reference isobaric specific heat
Example Input File Syntax
An example where the NekRS input files are set up in non-dimensional form,
(tutorials/msfr/nek.i)