www.mooseframework.org
LevelSetTimeDerivativeSUPG.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
12 // MOOSE includes
13 #include "ADTimeKernelGrad.h"
15 
16 // Forward declarations
17 template <ComputeStage>
19 
21 
25 template <ComputeStage compute_stage>
26 class LevelSetTimeDerivativeSUPG : public LevelSetVelocityInterface<ADTimeKernelGrad<compute_stage>>
27 {
28 public:
29  LevelSetTimeDerivativeSUPG(const InputParameters & parameters);
30 
31 protected:
32  virtual ADRealVectorValue precomputeQpResidual() override;
33 
37 };
38 
LevelSetVelocityInterface.h
LevelSetTimeDerivativeSUPG::usingTimeKernelGradMembers
usingTimeKernelGradMembers
Definition: LevelSetTimeDerivativeSUPG.h:34
LevelSetTimeDerivativeSUPG
Applies SUPG stabilization to the time derivative.
Definition: LevelSetTimeDerivativeSUPG.h:18
LevelSetVelocityInterface< ADTimeKernelGrad< compute_stage > >::_velocity
RealVectorValue _velocity
Storage for velocity vector.
Definition: LevelSetVelocityInterface.h:55
declareADValidParams
declareADValidParams(LevelSetTimeDerivativeSUPG)
LevelSetVelocityInterface
A helper class for defining the velocity as coupled variables for the levelset equation.
Definition: LevelSetVelocityInterface.h:18
LevelSetTimeDerivativeSUPG::LevelSetTimeDerivativeSUPG
LevelSetTimeDerivativeSUPG(const InputParameters &parameters)
Definition: LevelSetTimeDerivativeSUPG.C:22
LevelSetTimeDerivativeSUPG::precomputeQpResidual
virtual ADRealVectorValue precomputeQpResidual() override
Definition: LevelSetTimeDerivativeSUPG.C:30
LevelSetVelocityInterface< ADTimeKernelGrad< compute_stage > >::computeQpVelocity
void computeQpVelocity()
This method should be called when the velocity vector needs to be updated, this is not done automatic...
Definition: LevelSetVelocityInterface.h:60