www.mooseframework.org
EnergyFreeBC.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 "IntegratedBC.h"
13 
14 class EnergyFreeBC;
15 
16 template <>
17 InputParameters validParams<EnergyFreeBC>();
18 
22 class EnergyFreeBC : public IntegratedBC
23 {
24 public:
25  EnergyFreeBC(const InputParameters & parameters);
26 
27 protected:
28  virtual Real computeQpResidual();
29 
30  const VariableValue & _enthalpy;
31  const VariableValue & _rho_u;
32  const VariableValue & _rho_v;
33  const VariableValue & _rho_w;
34 };
35 
validParams< EnergyFreeBC >
InputParameters validParams< EnergyFreeBC >()
Definition: EnergyFreeBC.C:16
EnergyFreeBC::EnergyFreeBC
EnergyFreeBC(const InputParameters &parameters)
Definition: EnergyFreeBC.C:27
EnergyFreeBC::computeQpResidual
virtual Real computeQpResidual()
Definition: EnergyFreeBC.C:37
EnergyFreeBC::_rho_u
const VariableValue & _rho_u
Definition: EnergyFreeBC.h:31
EnergyFreeBC::_rho_w
const VariableValue & _rho_w
Definition: EnergyFreeBC.h:33
EnergyFreeBC::_rho_v
const VariableValue & _rho_v
Definition: EnergyFreeBC.h:32
EnergyFreeBC::_enthalpy
const VariableValue & _enthalpy
Definition: EnergyFreeBC.h:30
EnergyFreeBC
Definition: EnergyFreeBC.h:22