chombo-discharge
Loading...
Searching...
No Matches
CD_MFReflux.H
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2021-2026 SINTEF Energy Research
3 *
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
13#ifndef CD_MFREFLUX_H
14#define CD_MFREFLUX_H
15
16// Chombo includes
17#include <RefCountedPtr.H>
18
19// Our includes
20#include <CD_EBReflux.H>
21#include <CD_NamespaceHeader.H>
22
27{
28public:
33
39
44
49 void
51
58 getFluxRegPointer(const int a_phase) const;
59
66 getFluxReg(const int a_phase);
67
73 const EBReflux&
74 getFluxReg(const int a_phase) const;
75
76protected:
81};
82
83#include <CD_NamespaceFooter.H>
84
85#endif
Declaration of a class which can reflux over the coarse-fine interface.
Class which can do refluxing across a coarse-fine interface.
Definition CD_EBReflux.H:38
Class which wraps EBRefluxs in multiphase.
Definition CD_MFReflux.H:27
~MFReflux()
Destructor (does nothing)
const RefCountedPtr< EBReflux > & getFluxRegPointer(const int a_phase) const
Get flux register for specified phase.
Definition CD_MFReflux.cpp:33
MFReflux()
Weak constructor. Must subsequently call define.
void define(const Vector< RefCountedPtr< EBReflux > > &a_fluxRegs)
Define function.
Definition CD_MFReflux.cpp:27
Vector< RefCountedPtr< EBReflux > > m_fluxRegs
Flux register for each phase.
Definition CD_MFReflux.H:80
EBReflux & getFluxReg(const int a_phase)
Get flux register for specified phase.
Definition CD_MFReflux.cpp:40
Base class for a tracer particle solver. This solver can advance particles in a pre-defined velocity ...
Definition CD_TracerParticleSolver.H:38