mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
Motion models integrated into geometryMotion, stationaryWall is added
This commit is contained in:
@ -14,6 +14,22 @@ pFlow::vibratingMotion::vibratingMotion
|
||||
}
|
||||
}
|
||||
|
||||
pFlow::vibratingMotion::vibratingMotion
|
||||
(
|
||||
const objectFile &objf,
|
||||
const dictionary &dict,
|
||||
repository *owner
|
||||
)
|
||||
:
|
||||
fileDictionary(objf,dict,owner)
|
||||
{
|
||||
if(! getModel().impl_readDictionary(*this) )
|
||||
{
|
||||
fatalErrorInFunction;
|
||||
fatalExit;
|
||||
}
|
||||
}
|
||||
|
||||
bool pFlow::vibratingMotion::write(iOstream &os, const IOPattern &iop) const
|
||||
{
|
||||
// a global dictionary
|
||||
|
@ -81,6 +81,11 @@ public:
|
||||
|
||||
vibratingMotion(const objectFile& objf, repository* owner);
|
||||
|
||||
vibratingMotion(
|
||||
const objectFile& objf,
|
||||
const dictionary& dict,
|
||||
repository* owner);
|
||||
|
||||
/// Destructor
|
||||
~vibratingMotion()override = default;
|
||||
|
||||
|
Reference in New Issue
Block a user