www.cemf.ir
cylinderWall.hpp
Go to the documentation of this file.
1 /*------------------------------- phasicFlow ---------------------------------
2  O C enter of
3  O O E ngineering and
4  O O M ultiscale modeling of
5  OOOOOOO F luid flow
6 ------------------------------------------------------------------------------
7  Copyright (C): www.cemf.ir
8  email: hamid.r.norouzi AT gmail.com
9 ------------------------------------------------------------------------------
10 Licence:
11  This file is part of phasicFlow code. It is a free software for simulating
12  granular and multiphase flows. You can redistribute it and/or modify it under
13  the terms of GNU General Public License v3 or any other later versions.
14 
15  phasicFlow is distributed to help others in their research in the field of
16  granular and multiphase flows, but WITHOUT ANY WARRANTY; without even the
17  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 
19 -----------------------------------------------------------------------------*/
20 
21 
22 #ifndef __cylinderWall_hpp__
23 #define __cylinderWall_hpp__
24 
25 #include "Wall.hpp"
26 #include "zAxis.hpp"
27 
28 namespace pFlow
29 {
30 
32 :
33  public Wall
34 {
35 protected:
36 
37  bool readCylinderWall(const dictionary& dict);
38 
39  bool createCylinder(const realx3& p1, const realx3& p2, real rad1, real rad2, int32 numDiv);
40 
41 public:
42 
43  TypeInfo("cylinderWall");
44 
45  cylinderWall();
46 
47  cylinderWall(const dictionary& dict);
48 
49  add_vCtor
50  (
51  Wall,
54  );
55 
56 };
57 
58 } // pFlow
59 
60 
61 
62 
63 #endif //__cylinderWall_hpp__
pFlow::cylinderWall
Definition: cylinderWall.hpp:31
pFlow::cylinderWall::TypeInfo
TypeInfo("cylinderWall")
pFlow::real
float real
Definition: builtinTypes.hpp:45
Wall.hpp
pFlow::cylinderWall::cylinderWall
cylinderWall()
Definition: cylinderWall.cpp:106
pFlow
Definition: demGeometry.hpp:27
pFlow::int32
int int32
Definition: builtinTypes.hpp:50
pFlow::cylinderWall::readCylinderWall
bool readCylinderWall(const dictionary &dict)
Definition: cylinderWall.cpp:6
pFlow::cylinderWall::add_vCtor
add_vCtor(Wall, cylinderWall, dictionary)
pFlow::cylinderWall::createCylinder
bool createCylinder(const realx3 &p1, const realx3 &p2, real rad1, real rad2, int32 numDiv)
Definition: cylinderWall.cpp:39
pFlow::triple< real >
zAxis.hpp
pFlow::Wall
Definition: Wall.hpp:41
pFlow::dictionary
Dictionary holds a set of data entries or sub-dictionaries that are enclosed in a curely braces or ar...
Definition: dictionary.hpp:67