www.cemf.ir
boundaryExit.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 #ifndef __boundaryExit_hpp__
22 #define __boundaryExit_hpp__
23 
24 
25 #include "boundaryBase.hpp"
26 
27 namespace pFlow
28 {
29 
31 :
32  public boundaryBase
33 {
34 protected:
35 
40 
44 
45 public:
46 
47  TypeInfo("boundary<exit>");
48 
50  const dictionary &dict,
51  const plane &bplane,
52  internalPoints &internal,
53  boundaryList &bndrs,
54  uint32 thisIndex);
55 
56  virtual
57  ~boundaryExit() = default;
58 
59  add_vCtor
60  (
64  );
65 
66  bool beforeIteration(
67  uint32 step,
68  const timeInfo& ti,
69  bool updateIter,
70  bool iterBeforeUpdate ,
71  bool& callAgain
72  ) final;
73 
74  bool iterate(const timeInfo& ti) final;
75 
76  bool afterIteration(const timeInfo& ti)final;
77 
78 
79 };
80 
81 }
82 
83 #endif
pFlow::internalPoints
Definition: internalPoints.hpp:38
pFlow::real
float real
Definition: builtinTypes.hpp:45
pFlow::plane
Definition: plane.hpp:30
pFlow::boundaryExit::afterIteration
bool afterIteration(const timeInfo &ti) final
Definition: boundaryExit.cpp:118
pFlow::boundaryExit::beforeIteration
bool beforeIteration(uint32 step, const timeInfo &ti, bool updateIter, bool iterBeforeUpdate, bool &callAgain) final
Definition: boundaryExit.cpp:44
boundaryBase.hpp
pFlow::uint32
unsigned int uint32
Definition: builtinTypes.hpp:56
pFlow::boundaryList
Definition: boundaryList.hpp:35
pFlow::boundaryExit::checkForExitInterval_
uint32 checkForExitInterval_
between successive check for particle exit (iteration-based).
Definition: boundaryExit.hpp:43
pFlow::boundaryExit::exitMarginLength_
real exitMarginLength_
Length of margin in the negative side of boundary to still allow points stay in the simulation.
Definition: boundaryExit.hpp:39
pFlow::boundaryExit::TypeInfo
TypeInfo("boundary<exit>")
pFlow::timeInfo
Definition: timeInfo.hpp:28
pFlow
Definition: demGeometry.hpp:27
pFlow::boundaryExit::add_vCtor
add_vCtor(boundaryBase, boundaryExit, dictionary)
pFlow::boundaryExit::iterate
bool iterate(const timeInfo &ti) final
Definition: boundaryExit.cpp:113
pFlow::boundaryBase
Definition: boundaryBase.hpp:42
pFlow::boundaryExit::~boundaryExit
virtual ~boundaryExit()=default
pFlow::boundaryExit
Definition: boundaryExit.hpp:30
pFlow::boundaryExit::boundaryExit
boundaryExit(const dictionary &dict, const plane &bplane, internalPoints &internal, boundaryList &bndrs, uint32 thisIndex)
Definition: boundaryExit.cpp:27
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