MPS-Basic
Loading...
Searching...
No Matches
interface.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "../../particles.hpp"
5
6#include <vector>
7
9
15class Interface {
16public:
23 virtual ~Interface(){};
24};
25
26} // namespace PressureCalculator::DirichletBoundaryConditionGenerator
A collection of particles.
Definition particles.hpp:10
Interface for Dirichlet boundary condition generator.
Definition interface.hpp:15
virtual DirichletBoundaryCondition generate(Particles &particles)=0
Generate Dirichlet boundary condition.