https://mooseframework.inl.gov
AEFVBC.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
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 #include "BoundaryFluxBase.h"
14 
15 // Forward Declarations
16 
40 class AEFVBC : public IntegratedBC
41 {
42 public:
44 
46  virtual ~AEFVBC() {}
47 
48 protected:
49  virtual Real computeQpResidual();
50  virtual Real computeQpJacobian();
51 
54 
55  // "1" denotes variable value from the host element
56 
59 
62 
65 };
virtual ~AEFVBC()
Definition: AEFVBC.h:46
virtual Real computeQpJacobian()
Definition: AEFVBC.C:52
MooseEnum _component
choose an equation
Definition: AEFVBC.h:53
const VariableValue & _uc1
piecewise constant variable values in host element
Definition: AEFVBC.h:58
A base class for computing/caching fluxes at boundaries.
virtual Real computeQpResidual()
Definition: AEFVBC.C:37
A boundary condition object for the advection equation using a cell-centered finite volume method...
Definition: AEFVBC.h:40
static InputParameters validParams()
Definition: AEFVBC.C:15
OutputTools< Real >::VariableValue VariableValue
const BoundaryFluxBase & _flux
bounadry flux object
Definition: AEFVBC.h:64
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
AEFVBC(const InputParameters &parameters)
Definition: AEFVBC.C:27
const InputParameters & parameters() const
const MaterialProperty< Real > & _u1
extrapolated variable values at side center
Definition: AEFVBC.h:61