www.mooseframework.org
NSEnergyInviscidFlux.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 "NSKernel.h"
13 
14 // Forward Declarations
16 
17 template <>
18 InputParameters validParams<NSEnergyInviscidFlux>();
19 
21 {
22 public:
23  NSEnergyInviscidFlux(const InputParameters & parameters);
24 
25 protected:
26  virtual Real computeQpResidual();
27  virtual Real computeQpJacobian();
28  virtual Real computeQpOffDiagJacobian(unsigned int jvar);
29 
30  // Coupled variables
31  const VariableValue & _enthalpy;
32 };
33 
NSEnergyInviscidFlux::computeQpJacobian
virtual Real computeQpJacobian()
Definition: NSEnergyInviscidFlux.C:55
NSEnergyInviscidFlux::_enthalpy
const VariableValue & _enthalpy
Definition: NSEnergyInviscidFlux.h:31
validParams< NSEnergyInviscidFlux >
InputParameters validParams< NSEnergyInviscidFlux >()
Definition: NSEnergyInviscidFlux.C:21
NSEnergyInviscidFlux::NSEnergyInviscidFlux
NSEnergyInviscidFlux(const InputParameters &parameters)
Definition: NSEnergyInviscidFlux.C:29
NSEnergyInviscidFlux
Definition: NSEnergyInviscidFlux.h:20
NSEnergyInviscidFlux::computeQpOffDiagJacobian
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
Definition: NSEnergyInviscidFlux.C:68
NSKernel
This class couples together all the variables for the compressible Navier-Stokes equations to allow t...
Definition: NSKernel.h:29
NSEnergyInviscidFlux::computeQpResidual
virtual Real computeQpResidual()
Definition: NSEnergyInviscidFlux.C:35
NSKernel.h