https://mooseframework.inl.gov
Loading...
Searching...
No Matches
VolumeJunctionCoupledFlux1PhaseKernel.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 "ADKernel.h"
13
17
22{
23public:
25
27
28protected:
29 virtual ADReal computeQpResidual() override;
30
32 const unsigned int _equation_index;
33
38
40 const Real _A_coupled;
41
43 const RealVectorValue & _normal_from_junction;
45 const RealVectorValue _normal_to_junction;
46
49
52
55};
DualNumber< Real, DNDerivativeType, true > ADReal
Real PostprocessorValue
Base class for computing numerical fluxes for FlowModelSinglePhase.
Computes and caches flux and residual vectors for a 1-phase volume junction.
Common class for single phase fluid properties.
Applies a flux to the volume junction for VolumeJunctionCoupledFlux1Phase.
const RealVectorValue & _normal_from_junction
Normal vector from the junction to the other application.
const RealVectorValue _normal_to_junction
Normal vector to the junction from the other application.
const unsigned int _equation_index
Index within local system of the equation upon which this object acts.
const ADVolumeJunction1PhaseUserObject & _volume_junction_uo
Volume junction user object.
const ADNumericalFlux3EqnBase & _numerical_flux_uo
Numerical flux user object.
const Real _A_coupled
Coupled area between junction and other application.
const SinglePhaseFluidProperties & _fp
Fluid properties.