CylindricalWall.h
Go to the documentation of this file.
1 //Copyright (c) 2013-2023, The MercuryDPM Developers Team. All rights reserved.
2 //For the list of developers, see <http://www.MercuryDPM.org/Team>.
3 //
4 //Redistribution and use in source and binary forms, with or without
5 //modification, are permitted provided that the following conditions are met:
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above copyright
9 // notice, this list of conditions and the following disclaimer in the
10 // documentation and/or other materials provided with the distribution.
11 // * Neither the name MercuryDPM nor the
12 // names of its contributors may be used to endorse or promote products
13 // derived from this software without specific prior written permission.
14 //
15 //THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16 //ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 //WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 //DISCLAIMED. IN NO EVENT SHALL THE MERCURYDPM DEVELOPERS TEAM BE LIABLE FOR ANY
19 //DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 //(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 //LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 //ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 //(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 //SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 
26 #ifndef CYLINDRICALWALL_H
27 #define CYLINDRICALWALL_H
28 
29 #include "BaseWall.h"
30 
37 class CylindricalWall : public BaseWall
38 {
39 public:
44 
49 
53  explicit CylindricalWall(double radius);
54 
58  CylindricalWall* copy() const override;
59 
63  void set(Mdouble radius);
64 
68  bool getDistanceAndNormal(const BaseParticle& P, Mdouble& distance, Vec3D& normal_return) const override;
69 
73  void read(std::istream& is) override;
74 
78  void oldRead(std::istream& is);
79 
83  void write(std::ostream& os) const override;
84 
88  std::string getName() const override;
89 
93  double getRadius() const;
94 
95 private:
97 };
98 
99 #endif
Definition: BaseParticle.h:54
Basic class for walls.
Definition: BaseWall.h:49
Definition: CylindricalWall.h:38
void write(std::ostream &os) const override
outputs wall
Definition: CylindricalWall.cc:102
CylindricalWall * copy() const override
Wall copy method. It calls the copy contrustor of this Wall, usefull for polymorfism.
Definition: CylindricalWall.cc:60
std::string getName() const override
Returns the name of the object.
Definition: CylindricalWall.cc:108
void oldRead(std::istream &is)
Definition: CylindricalWall.cc:95
Mdouble radius_
Definition: CylindricalWall.h:96
CylindricalWall()
Definition: CylindricalWall.cc:32
void set(Mdouble radius)
Defines a standard wall, given an outward normal vector s. t. normal*x=position.
Definition: CylindricalWall.cc:66
void read(std::istream &is) override
reads wall
Definition: CylindricalWall.cc:88
double getRadius() const
access function for radius
Definition: CylindricalWall.cc:114
bool getDistanceAndNormal(const BaseParticle &P, Mdouble &distance, Vec3D &normal_return) const override
Since this function should be called before calculating any Particle-Wall interactions,...
Definition: CylindricalWall.cc:72
Definition: Vector.h:51
double P
Uniform pressure.
Definition: TwenteMeshGluing.cpp:73