mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-12 16:26:23 +00:00
pointStructure with boundaries, construction tested
This commit is contained in:
@ -23,10 +23,11 @@ Licence:
|
||||
|
||||
|
||||
pFlow::empty::empty(
|
||||
systemControl& control,
|
||||
const dictionary& dict
|
||||
)
|
||||
:
|
||||
positionParticles(dict),
|
||||
positionParticles(control, dict),
|
||||
position_
|
||||
(
|
||||
maxNumberOfParticles_, 0, RESERVE()
|
||||
|
@ -44,7 +44,9 @@ public:
|
||||
// - type Info
|
||||
TypeInfo("empty");
|
||||
|
||||
empty(const dictionary& dict);
|
||||
empty(
|
||||
systemControl& control,
|
||||
const dictionary& dict);
|
||||
|
||||
// - add this class to vCtor selection table
|
||||
add_vCtor(
|
||||
@ -56,12 +58,12 @@ public:
|
||||
|
||||
//// - Methods
|
||||
|
||||
virtual label numPoints()const
|
||||
virtual uint64 numPoints()const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
virtual label size()const
|
||||
virtual uint64 size()const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user