InfiniteWallWithHole.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 INFINITEWALLWITHHOLE_H
27 #define INFINITEWALLWITHHOLE_H
28 
34 #include "BaseWall.h"
35 #include "Math/Vector.h"
36 
38 {
39 public:
40 
45 
49  InfiniteWallWithHole(Vec3D normal, Mdouble position, Mdouble holeRadius);
50 
55 
59  InfiniteWallWithHole* copy() const override;
60 
64  void set(Vec3D normal, Mdouble position, Mdouble holeRadius);
65 
69  void moveTo(Mdouble position);
70 
71 // /*!
72 // * \brief Allows the wall to be moved to a new position (also orthogonal to the normal), and setting the velocity
73 // * note: I commented this function out as it does not add new functionality (instead, BaseInteractable::move(velocity*dt) can be used),
74 // * and it hides the virtual function BaseInteractable::move. If this is really needed, please add it again. \author weinhartt
75 // */
76 // void move(Vec3D velocity, Mdouble dt);
77 
81  void move_time(Mdouble dt);
82 
86  Mdouble getWallDistance(const Vec3D& position) const;
87 
91  Mdouble getHoleDistance(const Vec3D& position) const;
92 
96  bool getDistanceAndNormal(const BaseParticle& P, Mdouble& distance, Vec3D& normal_return) const override;
97 
101  void read(std::istream& is) override;
102 
106  void oldRead(std::istream& is);
107 
111  void write(std::ostream& os) const override;
112 
116  std::string getName() const override;
117 
121  Vec3D getNormal();
122 
127 
128 private:
139 
140 };
141 
142 #endif
Definition: BaseParticle.h:54
Basic class for walls.
Definition: BaseWall.h:49
Definition: InfiniteWallWithHole.h:38
Mdouble factor_
Definition: InfiniteWallWithHole.h:136
Mdouble getWallDistance(const Vec3D &position) const
Returns the distance of the wall to the particle.
Definition: InfiniteWallWithHole.cc:103
Mdouble position_
position n*x=p
Definition: InfiniteWallWithHole.h:137
void moveTo(Mdouble position)
Allows the wall to be moved to a new position.
Definition: InfiniteWallWithHole.cc:82
void oldRead(std::istream &is)
reads wall
Definition: InfiniteWallWithHole.cc:167
Mdouble getPosition()
access function for position
Definition: InfiniteWallWithHole.cc:197
Vec3D normal_
Outward normal vector, does not have to be a unit vector.
Definition: InfiniteWallWithHole.h:132
void read(std::istream &is) override
reads wall
Definition: InfiniteWallWithHole.cc:156
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: InfiniteWallWithHole.cc:114
void move_time(Mdouble dt)
Definition: InfiniteWallWithHole.cc:97
Mdouble holeRadius_
Definition: InfiniteWallWithHole.h:138
Vec3D getNormal()
access function for normal
Definition: InfiniteWallWithHole.cc:191
InfiniteWallWithHole * copy() const override
Wall copy method. It calls the copy contrustor of this Wall, usefull for polymorfism.
Definition: InfiniteWallWithHole.cc:65
std::string getName() const override
Returns the name of the object.
Definition: InfiniteWallWithHole.cc:185
Mdouble getHoleDistance(const Vec3D &position) const
Definition: InfiniteWallWithHole.cc:108
void set(Vec3D normal, Mdouble position, Mdouble holeRadius)
Defines a standard wall, given an outward normal vector s. t. normal*x=position.
Definition: InfiniteWallWithHole.cc:72
InfiniteWallWithHole()
default constructor
Definition: InfiniteWallWithHole.cc:32
void write(std::ostream &os) const override
outputs wall
Definition: InfiniteWallWithHole.cc:176
Definition: Vector.h:51
double P
Uniform pressure.
Definition: TwenteMeshGluing.cpp:73