20 #ifndef GEOS_PHYSICSSOLVERS_FLUIDFLOW_SINGLEPHASE_RESIDUALNORMKERNEL_HPP
21 #define GEOS_PHYSICSSOLVERS_FLUIDFLOW_SINGLEPHASE_RESIDUALNORMKERNEL_HPP
30 namespace singlePhaseBaseKernels
53 real64 const minNormalizer )
59 m_mass_n( subRegion.template getField< fields::flow::mass_n >() )
64 LinfStackVariables & stack )
const override
68 if( valMass > stack.localValue[0] )
70 stack.localValue[0] = valMass;
76 L2StackVariables & stack )
const override
80 stack.localNormalizer[0] += massNormalizer;
109 real64 const minNormalizer )
115 m_mass_n( subRegion.template getField< fields::flow::mass_n >() ),
116 m_energy_n( subRegion.template getField< fields::flow::energy_n >() )
120 void computeMassEnergyNormalizers(
localIndex const ei,
122 real64 & energyNormalizer )
const
130 LinfStackVariables & stack )
const override
132 real64 massNormalizer = 0.0, energyNormalizer = 0.0;
133 computeMassEnergyNormalizers( ei, massNormalizer, energyNormalizer );
138 if( valMass > stack.localValue[0] )
140 stack.localValue[0] = valMass;
144 real64 const valEnergy = LvArray::math::abs(
m_localResidual[stack.localRow + 1] ) / energyNormalizer;
145 if( valEnergy > stack.localValue[1] )
147 stack.localValue[1] = valEnergy;
153 L2StackVariables & stack )
const override
155 real64 massNormalizer = 0.0, energyNormalizer = 0.0;
156 computeMassEnergyNormalizers( ei, massNormalizer, energyNormalizer );
161 stack.localNormalizer[0] += massNormalizer;
166 stack.localNormalizer[1] += energyNormalizer;
200 template<
typename POLICY >
207 real64 const minNormalizer,
208 real64 (& residualNorm)[1],
209 real64 (& residualNormalizer)[1] )
215 if( normType == physicsSolverBaseKernels::NormType::Linf )
217 IsothermalResidualNormKernel::launchLinf< POLICY >( subRegion.
size(), kernel, residualNorm );
221 IsothermalResidualNormKernel::launchL2< POLICY >( subRegion.
size(), kernel, residualNorm, residualNormalizer );
239 template<
typename POLICY >
243 string const & dofKey,
246 real64 const minNormalizer,
247 real64 (& residualNorm)[2],
248 real64 (& residualNormalizer)[2] )
254 if( normType == physicsSolverBaseKernels::NormType::Linf )
256 ThermalResidualNormKernel::launchLinf< POLICY >( subRegion.
size(), kernel, residualNorm );
260 ThermalResidualNormKernel::launchL2< POLICY >( subRegion.
size(), kernel, residualNorm, residualNormalizer );
#define GEOS_HOST_DEVICE
Marks a host-device function.
NormType
Type of norm used to check convergence TODO: find a way to put this inside the class.
array1d< integer > const & ghostRank()
Get the ghost information of each object.
GEOS_DECLTYPE_AUTO_RETURN getReference(LOOKUP_TYPE const &lookup) const
Look up a wrapper and get reference to wrapped object.
localIndex size() const
Get the "size" of the group, which determines the number of elements in resizable wrappers.
Define the base interface for the residual calculations.
real64 const m_minNormalizer
Value used to make sure that normalizers are never zero.
arrayView1d< globalIndex const > const m_dofNumber
View on the dof numbers.
GEOS_HOST_DEVICE integer ghostRank(localIndex const i) const
Getter for the ghost rank.
globalIndex const m_rankOffset
Offset for my MPI rank.
arrayView1d< real64 const > const m_localResidual
View on the local residual.
virtual GEOS_HOST_DEVICE void computeLinf(localIndex const ei, LinfStackVariables &stack) const override
Compute the local values for the Linf norm.
arrayView1d< real64 const > const m_mass_n
View on mass at the previous converged time step.
virtual GEOS_HOST_DEVICE void computeL2(localIndex const ei, L2StackVariables &stack) const override
Compute the local values and normalizer for the L2 norm.
static void createAndLaunch(physicsSolverBaseKernels::NormType const normType, globalIndex const rankOffset, string const dofKey, arrayView1d< real64 const > const &localResidual, ElementSubRegionBase const &subRegion, real64 const minNormalizer, real64(&residualNorm)[1], real64(&residualNormalizer)[1])
Create a new kernel and launch (isothermal version)
static void createAndLaunch(physicsSolverBaseKernels::NormType const normType, globalIndex const rankOffset, string const &dofKey, arrayView1d< real64 const > const &localResidual, ElementSubRegionBase const &subRegion, real64 const minNormalizer, real64(&residualNorm)[2], real64(&residualNormalizer)[2])
Create a new kernel and launch (thermal version)
virtual GEOS_HOST_DEVICE void computeL2(localIndex const ei, L2StackVariables &stack) const override
Compute the local values and normalizer for the L2 norm.
arrayView1d< real64 const > const m_mass_n
View on mass at the previous converged time step.
virtual GEOS_HOST_DEVICE void computeLinf(localIndex const ei, LinfStackVariables &stack) const override
Compute the local values for the Linf norm.
arrayView1d< real64 const > const m_energy_n
View on energy at the previous converged time step.
ArrayView< T, 1 > arrayView1d
Alias for 1D array view.
GEOS_GLOBALINDEX_TYPE globalIndex
Global index type (for indexing objects across MPI partitions).
double real64
64-bit floating point type.
GEOS_LOCALINDEX_TYPE localIndex
Local index type (for indexing objects within an MPI partition).
Array< T, 1 > array1d
Alias for 1D array.