www.cemf.ir
boundaryNone.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 __boundaryNone_hpp__
22 #define __boundaryNone_hpp__
23 
24 
25 #include "boundaryBase.hpp"
26 
27 namespace pFlow
28 {
29 
31 :
32  public boundaryBase
33 {
34 
35 public:
36 
37  TypeInfo("boundary<none>");
38 
40  const dictionary &dict,
41  const plane &bplane,
42  internalPoints &internal,
43  boundaryList &bndrs,
44  uint32 thisIndex);
45 
46  ~boundaryNone() final= default;
47 
48  add_vCtor
49  (
53  );
54 
55  bool beforeIteration(
56  uint32 step,
57  const timeInfo& ti,
58  bool updateIter,
59  bool iterBeforeUpdate ,
60  bool& callAgain
61  )final;
62 
63  bool iterate(const timeInfo& ti) final;
64 
65  bool afterIteration(const timeInfo& ti) final;
66 
67 };
68 
69 }
70 
71 #endif
pFlow::boundaryNone::~boundaryNone
~boundaryNone() final=default
pFlow::internalPoints
Definition: internalPoints.hpp:38
pFlow::boundaryNone
Definition: boundaryNone.hpp:30
pFlow::plane
Definition: plane.hpp:30
boundaryBase.hpp
pFlow::uint32
unsigned int uint32
Definition: builtinTypes.hpp:56
pFlow::boundaryNone::afterIteration
bool afterIteration(const timeInfo &ti) final
Definition: boundaryNone.cpp:52
pFlow::boundaryList
Definition: boundaryList.hpp:35
pFlow::boundaryNone::add_vCtor
add_vCtor(boundaryBase, boundaryNone, dictionary)
pFlow::timeInfo
Definition: timeInfo.hpp:28
pFlow
Definition: demGeometry.hpp:27
pFlow::boundaryNone::TypeInfo
TypeInfo("boundary<none>")
pFlow::boundaryNone::boundaryNone
boundaryNone(const dictionary &dict, const plane &bplane, internalPoints &internal, boundaryList &bndrs, uint32 thisIndex)
Definition: boundaryNone.cpp:24
pFlow::boundaryBase
Definition: boundaryBase.hpp:42
pFlow::boundaryNone::iterate
bool iterate(const timeInfo &ti) final
Definition: boundaryNone.cpp:47
pFlow::boundaryNone::beforeIteration
bool beforeIteration(uint32 step, const timeInfo &ti, bool updateIter, bool iterBeforeUpdate, bool &callAgain) final
Definition: boundaryNone.cpp:35
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