From bd63f568cd17fa131472b2c55797136a8001f36d Mon Sep 17 00:00:00 2001 From: Emily Bourne Date: Mon, 27 Nov 2023 07:50:24 +0000 Subject: [PATCH] Sheath simulation for gpu verification * updates the `simulations/geometryXVx/sheath/README.md` with more explanation concerning how to verify the sheath simulations using the fluid conservation equations. * creates the `simulations/geometryXVx/sheath/verification_simulation` folder to provide a yaml file with reference parameters that can be used to verify the gpu porting of the code for instance. * the `simulations/geometryXVx/sheath/verification_simulation` also contains plots of the conservation equations. --- .../poisson/ichargedensitycalculator.hpp | 18 ------------------ .../poisson/ichargedensitycalculator.hpp | 15 --------------- 2 files changed, 33 deletions(-) delete mode 100644 src/geometryXVx/poisson/ichargedensitycalculator.hpp delete mode 100644 src/geometryXYVxVy/poisson/ichargedensitycalculator.hpp diff --git a/src/geometryXVx/poisson/ichargedensitycalculator.hpp b/src/geometryXVx/poisson/ichargedensitycalculator.hpp deleted file mode 100644 index ec34b3668..000000000 --- a/src/geometryXVx/poisson/ichargedensitycalculator.hpp +++ /dev/null @@ -1,18 +0,0 @@ -// SPDX-License-Identifier: MIT - -#pragma once - -#include - -#include -#include - -#include - -class IChargeDensityCalculator -{ -public: - IChargeDensityCalculator(); - - void operator()(DSpanX rho, DViewSpXVx allfdistribu) const = 0; -}; diff --git a/src/geometryXYVxVy/poisson/ichargedensitycalculator.hpp b/src/geometryXYVxVy/poisson/ichargedensitycalculator.hpp deleted file mode 100644 index 0220e976d..000000000 --- a/src/geometryXYVxVy/poisson/ichargedensitycalculator.hpp +++ /dev/null @@ -1,15 +0,0 @@ -// SPDX-License-Identifier: MIT - -#pragma once - -#include - -#include - -class IChargeDensityCalculator -{ -public: - IChargeDensityCalculator(); - - void operator()(DSpanXY rho, DViewSpXYVxVy allfdistribu) const = 0; -};