moltres
Loading...
Searching...
No Matches
WallShearStressAux.h
Go to the documentation of this file.
1#pragma once
2
3#include "AuxKernel.h"
4
8class WallShearStressAux : public AuxKernel
9{
10public:
11 static InputParameters validParams();
12
13 WallShearStressAux(const InputParameters & parameters);
14
15protected:
16 virtual Real computeValue();
17
18 const ADVectorVariableGradient & _grad_velocity;
19 const ADMaterialProperty<Real> & _mu;
20 const MooseArray<Point> & _normals;
21};
Definition WallShearStressAux.h:9
const MooseArray< Point > & _normals
Definition WallShearStressAux.h:20
const ADMaterialProperty< Real > & _mu
Definition WallShearStressAux.h:19
virtual Real computeValue()
Definition WallShearStressAux.C:33
const ADVectorVariableGradient & _grad_velocity
Definition WallShearStressAux.h:18
static InputParameters validParams()
Definition WallShearStressAux.C:9