pointStructure with boundaries, construction tested

This commit is contained in:
Hamidreza Norouzi
2023-12-17 15:27:05 +03:30
parent 143a586730
commit f1baff5a59
53 changed files with 1957 additions and 791 deletions

View File

@ -23,10 +23,11 @@ Licence:
pFlow::empty::empty(
systemControl& control,
const dictionary& dict
)
:
positionParticles(dict),
positionParticles(control, dict),
position_
(
maxNumberOfParticles_, 0, RESERVE()

View File

@ -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;
}