chombo-discharge
Loading...
Searching...
No Matches
CD_NoisePlane.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_NOISEPLANE_H
14#define CD_NOISEPLANE_H
15
17#include <CD_NamespaceHeader.H>
18
23{
24public:
28 NoisePlane();
29
33 ~NoisePlane() override;
34
35 NoisePlane(const NoisePlane&) = delete;
37 operator=(const NoisePlane&) = delete;
38 NoisePlane(NoisePlane&&) = delete;
40 operator=(NoisePlane&&) = delete;
41};
42
43#include <CD_NamespaceFooter.H>
44
45#endif
Declaration of base class for defining geometries.
Abstract base class for geometries.
Definition CD_ComputationalGeometry.H:37
This is a class that a rough sphere (either electrode or dielectric)
Definition CD_NoisePlane.H:23
~NoisePlane() override
Destructor (does nothing)
Definition CD_NoisePlane.cpp:100
NoisePlane()
Constructor.
Definition CD_NoisePlane.cpp:24