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