chombo-discharge
Loading...
Searching...
No Matches
CD_ItoMergeParticle.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_ITOMERGEPARTICLE_H
14#define CD_ITOMERGEPARTICLE_H
15
16// Our includes
17#include <CD_ParticleSoA.H>
18#include <CD_NamespaceHeader.H>
19
43
47template <>
49{
53 static constexpr auto columns = std::make_tuple(&ItoMergeParticle::energy);
54};
55
56#include <CD_NamespaceFooter.H>
57
58#endif
Declaration of ParticleSoA, an arena-backed Struct-of-Arrays particle container.
CD_PARTICLE_REAL ParticleReal
Floating-point type a user may use for payload columns.
Definition CD_ParticleSoA.H:156
Reduced Ito particle: everything an ItoParticle carries that is not recomputed from the mesh.
Definition CD_ItoMergeParticle.H:40
ParticleReal energy
Average particle energy – the only payload this particle carries.
Definition CD_ItoMergeParticle.H:41
Traits class that a user specializes to describe the PAYLOAD columns of a particle type....
Definition CD_ParticleSoA.H:192