chombo-discharge
Loading...
Searching...
No Matches
CD_SpherePlane.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_SPHEREPLANE_H
14#define CD_SPHEREPLANE_H
15
16// our includes
18#include <CD_NamespaceHeader.H>
19
25{
26public:
30 SpherePlane() noexcept;
31
35 ~SpherePlane() noexcept override;
36
37 SpherePlane(const SpherePlane&) = delete;
39 operator=(const SpherePlane&) = delete;
40 SpherePlane(SpherePlane&&) = delete;
42 operator=(SpherePlane&&) = delete;
43};
44
45#include <CD_NamespaceFooter.H>
46
47#endif
Declaration of base class for defining geometries.
Abstract base class for geometries.
Definition CD_ComputationalGeometry.H:37
Sphere-plane gap geometry.
Definition CD_SpherePlane.H:25
~SpherePlane() noexcept override
Destructor.
Definition CD_SpherePlane.cpp:110
SpherePlane() noexcept
Constructor.
Definition CD_SpherePlane.cpp:22