www.cemf.ir
boundaryNone.cpp
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 #include "boundaryNone.hpp"
22 
24 (
25  const dictionary &dict,
26  const plane &bplane,
27  internalPoints &internal,
28  boundaryList &bndrs,
29  uint32 thisIndex
30 )
31 :
32  boundaryBase(dict, bplane, internal, bndrs, thisIndex)
33 {}
34 
36  uint32 step,
37  const timeInfo &ti,
38  bool updateIter,
39  bool iterBeforeUpdate,
40  bool &callAgain)
41 {
42  boundaryBase::beforeIteration(step, ti, updateIter, iterBeforeUpdate, callAgain);
43  callAgain = false;
44  return true;
45 }
46 
48 {
49  return true;
50 }
51 
53 {
54  return true;
55 }
pFlow::internalPoints
Definition: internalPoints.hpp:38
pFlow::plane
Definition: plane.hpp:30
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::boundaryBase::beforeIteration
virtual bool beforeIteration(uint32 step, const timeInfo &ti, bool updateIter, bool iterBeforeUpdate, bool &callAgain)
Definition: boundaryBase.hpp:359
pFlow::timeInfo
Definition: timeInfo.hpp:28
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
boundaryNone.hpp
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