mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-12 16:26:23 +00:00
170 lines
3.5 KiB
C
170 lines
3.5 KiB
C
/*------------------------------- 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 "rotatingAxisMotion.H"
|
|
#include "dictionary.H"
|
|
#include "vocabs.H"
|
|
|
|
|
|
bool pFlow::rotatingAxisMotion::readDictionary
|
|
(
|
|
const dictionary& dict
|
|
)
|
|
{
|
|
|
|
auto motionModel = dict.getVal<word>("motionModel");
|
|
|
|
if(motionModel != "rotatingAxisMotion")
|
|
{
|
|
fatalErrorInFunction<<
|
|
" motionModel should be rotatingAxisMotion, but found "
|
|
<< motionModel <<endl;
|
|
return false;
|
|
}
|
|
|
|
auto& motionInfo = dict.subDict("rotatingAxisMotionInfo");
|
|
auto axisNames = motionInfo.dictionaryKeywords();
|
|
|
|
axis_.reserve(axisNames.size()+1);
|
|
|
|
|
|
axis_.clear();
|
|
axisName_.clear();
|
|
|
|
|
|
for(auto& aName: axisNames)
|
|
{
|
|
auto& axDict = motionInfo.subDict(aName);
|
|
|
|
if(auto axPtr = makeUnique<rotatingAxis>(axDict); axPtr)
|
|
{
|
|
axis_.push_back(axPtr());
|
|
axisName_.push_back(aName);
|
|
}
|
|
else
|
|
{
|
|
fatalErrorInFunction<<
|
|
"could not read rotating axis from "<< axDict.globalName()<<endl;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
if( !axisName_.search("none") )
|
|
{
|
|
axis_.push_back
|
|
(
|
|
rotatingAxis(
|
|
realx3(0.0,0.0,0.0),
|
|
realx3(1.0,0.0,0.0),
|
|
0.0
|
|
)
|
|
);
|
|
axisName_.push_back("none");
|
|
}
|
|
|
|
axis_.syncViews();
|
|
numAxis_ = axis_.size();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool pFlow::rotatingAxisMotion::writeDictionary
|
|
(
|
|
dictionary& dict
|
|
)const
|
|
{
|
|
dict.add("motionModel", "rotatingAxisMotion");
|
|
|
|
auto& motionInfo = dict.subDictOrCreate("rotatingAxisMotionInfo");
|
|
|
|
forAll(i, axis_)
|
|
{
|
|
|
|
auto& axDict = motionInfo.subDictOrCreate(axisName_[i]);
|
|
if( !axis_.hostVectorAll()[i].write(axDict))
|
|
{
|
|
fatalErrorInFunction<<
|
|
" error in writing axis "<< axisName_[i] << " to dicrionary "
|
|
<< motionInfo.globalName()<<endl;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
pFlow::rotatingAxisMotion::rotatingAxisMotion()
|
|
{}
|
|
|
|
pFlow::rotatingAxisMotion::rotatingAxisMotion
|
|
(
|
|
const dictionary& dict
|
|
)
|
|
{
|
|
if(! readDictionary(dict) )
|
|
{
|
|
fatalExit;
|
|
}
|
|
}
|
|
|
|
bool pFlow::rotatingAxisMotion::read
|
|
(
|
|
iIstream& is
|
|
)
|
|
{
|
|
// create an empty file dictionary
|
|
dictionary motionInfo(motionModelFile__, true);
|
|
|
|
// read dictionary from stream
|
|
if( !motionInfo.read(is) )
|
|
{
|
|
ioErrorInFile(is.name(), is.lineNumber()) <<
|
|
" error in reading dictionray " << motionModelFile__ <<" from file. \n";
|
|
return false;
|
|
}
|
|
|
|
if( !readDictionary(motionInfo) ) return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool pFlow::rotatingAxisMotion::write
|
|
(
|
|
iOstream& os
|
|
)const
|
|
{
|
|
// create an empty file dictionary
|
|
dictionary motionInfo(motionModelFile__, true);
|
|
|
|
if( !writeDictionary(motionInfo))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if( !motionInfo.write(os) )
|
|
{
|
|
ioErrorInFile( os.name(), os.lineNumber() )<<
|
|
" error in writing dictionray to file. \n";
|
|
return false;
|
|
}
|
|
return true;
|
|
} |