moltres
Loading...
Searching...
No Matches
CoupledOutflowBC.h
Go to the documentation of this file.
1#pragma once
2
3#include "IntegratedBC.h"
4
10class CoupledOutflowBC : public IntegratedBC
11{
12public:
13 CoupledOutflowBC(const InputParameters & parameters);
14
15 static InputParameters validParams();
16
17protected:
18 virtual Real computeQpResidual() override;
19 virtual Real computeQpJacobian() override;
20
21private:
22 // Velocity variables
23 const VariableValue & _vel_x;
24 const VariableValue & _vel_y;
25 const VariableValue & _vel_z;
26};
Definition CoupledOutflowBC.h:11
static InputParameters validParams()
Definition CoupledOutflowBC.C:6
virtual Real computeQpJacobian() override
Definition CoupledOutflowBC.C:40
virtual Real computeQpResidual() override
Definition CoupledOutflowBC.C:26