www.mooseframework.org
INSADMomentumAdvection.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 #include "ADKernelValue.h"
13 
14 // Forward Declarations
15 template <ComputeStage>
17 
19 
25 template <ComputeStage compute_stage>
26 class INSADMomentumAdvection : public ADVectorKernelValue<compute_stage>
27 {
28 public:
29  INSADMomentumAdvection(const InputParameters & parameters);
30 
31 protected:
32  virtual ADRealVectorValue precomputeQpResidual() override;
33 
34  const ADMaterialProperty(RealVectorValue) & _convective_strong_residual;
35 
37 };
38 
INSADMomentumAdvection::usingVectorKernelValueMembers
usingVectorKernelValueMembers
Definition: INSADMomentumAdvection.h:36
INSADMomentumAdvection::INSADMomentumAdvection
INSADMomentumAdvection(const InputParameters &parameters)
Definition: INSADMomentumAdvection.C:20
INSADMomentumAdvection::ADMaterialProperty
const ADMaterialProperty(RealVectorValue) &_convective_strong_residual
declareADValidParams
declareADValidParams(INSADMomentumAdvection)
INSADMomentumAdvection::precomputeQpResidual
virtual ADRealVectorValue precomputeQpResidual() override
Definition: INSADMomentumAdvection.C:29
INSADMomentumAdvection
This class computes the momentum equation residual and Jacobian contributions for the convective term...
Definition: INSADMomentumAdvection.h:16