mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-28 03:27:05 +00:00
timeInfo and timeValue
- timeInfo updated - timeValue type is added = double - AB2 bug fixed - updateInterval for broadSearch is activated
This commit is contained in:
@ -11,7 +11,7 @@ pFlow::wallBoundaryContactSearch::wallBoundaryContactSearch
|
||||
const ViewType1D<realx3, memory_space> &normals
|
||||
)
|
||||
:
|
||||
cellExtent_( max(cellExtent, 0.5 ) ),
|
||||
cellExtent_( max(cellExtent, half ) ),
|
||||
numElements_(numElements),
|
||||
numPoints_(numPoints),
|
||||
vertices_(vertices),
|
||||
|
@ -31,6 +31,7 @@ pFlow::contactSearch::contactSearch(
|
||||
Timers& timers)
|
||||
:
|
||||
extendedDomainBox_(extDomain),
|
||||
updateInterval_(dict.getValMax<uint32>("updateInterval", 1u)),
|
||||
particles_(prtcl),
|
||||
geometry_(geom),
|
||||
bTimer_("Boundary particles contact search", &timers),
|
||||
|
@ -44,8 +44,8 @@ pFlow::NBS::NBS
|
||||
position,
|
||||
flags,
|
||||
diam),
|
||||
sizeRatio_(max(dict.getVal<real>("sizeRatio"), 1.0)),
|
||||
cellExtent_(max(dict.getVal<real>("cellExtent"), 0.5)),
|
||||
sizeRatio_(max(dict.getVal<real>("sizeRatio"), one)),
|
||||
cellExtent_(max(dict.getVal<real>("cellExtent"), half)),
|
||||
adjustableBox_(dict.getVal<Logical>("adjustableBox")),
|
||||
NBSLevel0_
|
||||
(
|
||||
|
@ -31,7 +31,7 @@ pFlow::cellsWallLevel0::cellsWallLevel0
|
||||
const ViewType1D<realx3, memory_space>& normals
|
||||
)
|
||||
:
|
||||
cellExtent_( max(cellExtent, 0.5 ) ),
|
||||
cellExtent_( max(cellExtent, half ) ),
|
||||
numElements_(numElements),
|
||||
numPoints_(numPoints),
|
||||
vertices_(vertices),
|
||||
|
Reference in New Issue
Block a user