utilities added

This commit is contained in:
hamidrezanorouzi
2022-09-05 11:14:41 +04:30
parent fb3fcf5945
commit 7f3b4e0e2c
34 changed files with 3361 additions and 1 deletions

View File

@ -0,0 +1,161 @@
/*------------------------------- phasicFlow ---------------------------------
O C enter of
O O E ngineering and
O O M ultiscale modeling of
OOOOOOO F luid flow
------------------------------------------------------------------------------
Copyright (C): www.cemf.ir
email: hamid.r.norouzi AT gmail.com
------------------------------------------------------------------------------
Licence:
This file is part of phasicFlow code. It is a free software for simulating
granular and multiphase flows. You can redistribute it and/or modify it under
the terms of GNU General Public License v3 or any other later versions.
phasicFlow is distributed to help others in their research in the field of
granular and multiphase flows, but WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-----------------------------------------------------------------------------*/
#include "positionOrdered.H"
#include "error.H"
#include "streams.H"
bool pFlow::positionOrdered::findAxisIndex()
{
if( axisOrder_.size() != 3 )
{
fatalErrorInFunction <<
"axisOrder should have 3 components, but " << axisOrder_.size() <<
" has been provided. \n";
return false;
}
if( axisOrder_[0] == axisOrder_[1] ||
axisOrder_[0] == axisOrder_[2] ||
axisOrder_[1] == axisOrder_[2] )
{
fatalErrorInFunction<<
"invalid/repeated axis names in axisOrder. This is provided: " << axisOrder_ <<endl;
return false;
}
realx3 uV[3];
size_t i=0;
for(auto& ca: axisOrder_)
{
if(ca == "x")
{
uV[i] = realx3(1.0, 0.0, 0.0);
}
else if(ca == "y")
{
uV[i] = realx3(0.0, 1.0, 0.0);
}
else if(ca == "z")
{
uV[i] = realx3(0.0, 0.0, 1.0);
}
else
{
fatalErrorInFunction <<
"unknown name for axis in axisOrder: " << ca <<endl;
return false;
}
i++;
}
uVector1_ = uV[0];
uVector2_ = uV[1];
uVector3_ = uV[2];
return true;
}
bool pFlow::positionOrdered::positionPointsOrdered()
{
position_.clear();
realx3 dl(diameter_);
auto minP = static_cast<real>(0.5)*dl + box_.minPoint();
auto maxP = static_cast<real>(0.5)*dl + box_.maxPoint();
auto cntr = minP;
size_t n = 0;
while( n < numPoints_ )
{
position_.push_back(cntr);
cntr += dl*uVector1_;
if( dot(uVector1_, cntr) > dot(uVector1_, maxP) )
{
cntr = (minP*uVector1_) + ( (cntr+dl) * uVector2_) + (cntr*uVector3_);
if( dot(uVector2_, cntr) > dot(uVector2_, maxP) )
{
cntr = (cntr*uVector1_) + (minP*uVector2_) + ((cntr+dl)*uVector3_);
if( dot(uVector3_,cntr) > dot(uVector3_, maxP) )
{
fatalErrorInFunction<<
"positioned " << n << " points in the domain and it is full. \n" <<
"request to position "<< numPoints_<< " points has failed.\n";
return false;
}
}
}
n++;
}
return true;
}
pFlow::positionOrdered::positionOrdered
(
const dictionary& dict
)
:
positionParticles(dict),
poDict_
(
dict.subDict("positionOrderedInfo")
),
diameter_
(
poDict_.getVal<real>("diameter")
),
numPoints_
(
poDict_.getVal<size_t>("numPoints")
),
axisOrder_
(
poDict_.getValOrSet("axisOrder", wordList{"x", "y", "z"})
),
box_
(
poDict_.subDict("box")
),
position_
(
maxNumberOfParticles_, RESERVE()
)
{
if( !findAxisIndex() )
{
fatalExit;
}
if(!positionPointsOrdered())
{
fatalExit;
}
}

View File

@ -0,0 +1,115 @@
/*------------------------------- phasicFlow ---------------------------------
O C enter of
O O E ngineering and
O O M ultiscale modeling of
OOOOOOO F luid flow
------------------------------------------------------------------------------
Copyright (C): www.cemf.ir
email: hamid.r.norouzi AT gmail.com
------------------------------------------------------------------------------
Licence:
This file is part of phasicFlow code. It is a free software for simulating
granular and multiphase flows. You can redistribute it and/or modify it under
the terms of GNU General Public License v3 or any other later versions.
phasicFlow is distributed to help others in their research in the field of
granular and multiphase flows, but WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-----------------------------------------------------------------------------*/
#ifndef __positionOrdered_H__
#define __positionOrdered_H__
#include "positionParticles.H"
#include "box.H"
namespace pFlow
{
class positionOrdered
:
public positionParticles
{
protected:
dictionary poDict_;
real diameter_;
size_t numPoints_;
wordList axisOrder_;
box box_;
// - unit vector of the first axis
realx3 uVector1_;
// - unit vector of the second axis
realx3 uVector2_;
// - unit vector of the third axis
realx3 uVector3_;
realx3Vector position_;
bool findAxisIndex();
bool positionPointsOrdered();
public:
// - type Info
TypeName("positionOrdered");
positionOrdered(const dictionary& dict);
// - add this class to vCtor selection table
add_vCtor(
positionParticles,
positionOrdered,
dictionary);
virtual ~positionOrdered() = default;
//// - Methods
virtual label numPoints()const
{
return position_.size();
}
virtual label size()const
{
return position_.size();
}
real maxDiameter() const override
{
return diameter_;
}
// - const access to position
virtual const realx3Vector& position()const
{
return position_;
}
// - access to position
virtual realx3Vector& position()
{
return position_;
}
};
}
#endif // __positionOrdered_H__