chombo-discharge
Loading...
Searching...
No Matches
CD_RtSpecies.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_RTSPECIES_H
14#define CD_RTSPECIES_H
15
16// Std includes
17#include <functional>
18
19// Chombo includes
20#include <RealVect.H>
21
22// Our includes
23#include <CD_NamespaceHeader.H>
24
31{
32public:
36 RtSpecies();
37
41 virtual ~RtSpecies();
42
48 getName() const;
49
55 virtual Real
57
64 virtual Real
66
67protected:
72};
73
74#include <CD_NamespaceFooter.H>
75
76#endif
Declaration of a class that defines an interface to radiative transfer solvers, i....
Definition CD_RtSpecies.H:31
std::string getName() const
Get species name.
Definition CD_RtSpecies.cpp:25
virtual Real getScatteringCoefficient(const RealVect &a_pos) const
Get scattering coefficient (i.e. the inverse scattering length) at physical coordinates.
Definition CD_RtSpecies.cpp:31
std::string m_name
Group name.
Definition CD_RtSpecies.H:71
RtSpecies()
Weak constructor. Sets absorption length and scattering coefficients to one.
Definition CD_RtSpecies.cpp:17
virtual Real getAbsorptionCoefficient(const RealVect &a_pos) const =0
Get kappa (i.e. the inverse absorption length) at physical coordinates.
virtual ~RtSpecies()
Weak constructor. Sets absorption length and scattering coefficients to one.
Base class for a tracer particle solver. This solver can advance particles in a pre-defined velocity ...
Definition CD_TracerParticleSolver.H:38
TracerParticleSolver()
Default constructor.
Definition CD_TracerParticleSolverImplem.H:26