www.mooseframework.org
INSDivergenceAux.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 "AuxKernel.h"
13 
14 // Forward Declarations
15 class INSDivergenceAux;
16 
17 template <>
18 InputParameters validParams<INSDivergenceAux>();
19 
23 class INSDivergenceAux : public AuxKernel
24 {
25 public:
26  INSDivergenceAux(const InputParameters & parameters);
27 
28  virtual ~INSDivergenceAux() {}
29 
30 protected:
31  virtual Real computeValue();
32 
33  // Velocity gradients
34  const VariableGradient & _grad_u_vel;
35  const VariableGradient & _grad_v_vel;
36  const VariableGradient & _grad_w_vel;
37 };
38 
INSDivergenceAux::_grad_w_vel
const VariableGradient & _grad_w_vel
Definition: INSDivergenceAux.h:36
INSDivergenceAux::~INSDivergenceAux
virtual ~INSDivergenceAux()
Definition: INSDivergenceAux.h:28
INSDivergenceAux::_grad_v_vel
const VariableGradient & _grad_v_vel
Definition: INSDivergenceAux.h:35
INSDivergenceAux::computeValue
virtual Real computeValue()
Definition: INSDivergenceAux.C:39
validParams< INSDivergenceAux >
InputParameters validParams< INSDivergenceAux >()
Definition: INSDivergenceAux.C:17
INSDivergenceAux::INSDivergenceAux
INSDivergenceAux(const InputParameters &parameters)
Definition: INSDivergenceAux.C:30
INSDivergenceAux
Computes h_min / |u|.
Definition: INSDivergenceAux.h:23
INSDivergenceAux::_grad_u_vel
const VariableGradient & _grad_u_vel
Definition: INSDivergenceAux.h:34