2022-09-04 21:26:29 +00:00
|
|
|
/*------------------------------- 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.
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------------*/
|
|
|
|
|
2022-12-09 22:02:54 +00:00
|
|
|
#ifndef __rotatingAxis_hpp__
|
|
|
|
#define __rotatingAxis_hpp__
|
2022-09-04 21:26:29 +00:00
|
|
|
|
2023-01-03 16:01:12 +00:00
|
|
|
#include "timeInterval.hpp"
|
2022-12-09 22:02:54 +00:00
|
|
|
#include "line.hpp"
|
2022-09-04 21:26:29 +00:00
|
|
|
|
|
|
|
namespace pFlow
|
|
|
|
{
|
|
|
|
|
|
|
|
class dictionary;
|
|
|
|
class rotatingAxis;
|
|
|
|
|
2022-12-09 22:02:54 +00:00
|
|
|
#include "rotatingAxisFwd.hpp"
|
2022-09-04 21:26:29 +00:00
|
|
|
|
|
|
|
class rotatingAxis
|
|
|
|
:
|
2023-01-03 16:01:12 +00:00
|
|
|
public timeInterval,
|
2022-09-04 21:26:29 +00:00
|
|
|
public line
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// rotation speed
|
|
|
|
real omega_ = 0;
|
|
|
|
|
|
|
|
bool rotating_ = false;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FUNCTION_HD
|
|
|
|
rotatingAxis(){}
|
|
|
|
|
|
|
|
FUNCTION_H
|
|
|
|
rotatingAxis(const dictionary& dict);
|
|
|
|
|
|
|
|
FUNCTION_HD
|
|
|
|
rotatingAxis(const realx3& p1, const realx3& p2, real omega = 0.0);
|
|
|
|
|
|
|
|
FUNCTION_HD
|
|
|
|
rotatingAxis(const rotatingAxis&) = default;
|
|
|
|
|
|
|
|
rotatingAxis& operator=(const rotatingAxis&) = default;
|
|
|
|
|
|
|
|
FUNCTION_HD
|
|
|
|
real setOmega(real omega);
|
|
|
|
|
|
|
|
|
|
|
|
INLINE_FUNCTION_HD
|
|
|
|
real omega()const
|
|
|
|
{
|
|
|
|
return omega_;
|
|
|
|
}
|
|
|
|
|
2023-01-08 04:36:15 +00:00
|
|
|
INLINE_FUNCTION_HD
|
|
|
|
bool isRotating()const
|
|
|
|
{
|
|
|
|
return rotating_;
|
|
|
|
}
|
|
|
|
|
2022-09-04 21:26:29 +00:00
|
|
|
INLINE_FUNCTION_HD
|
|
|
|
realx3 linTangentialVelocityPoint(const realx3 &p)const;
|
|
|
|
|
|
|
|
// - IO operation
|
|
|
|
FUNCTION_H
|
|
|
|
bool read(const dictionary& dict);
|
|
|
|
|
|
|
|
FUNCTION_H
|
|
|
|
bool write(dictionary& dict) const;
|
|
|
|
|
|
|
|
FUNCTION_H
|
|
|
|
bool read(iIstream& is);
|
|
|
|
|
|
|
|
FUNCTION_H
|
|
|
|
bool write(iOstream& os)const;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
inline iOstream& operator <<(iOstream& os, const rotatingAxis& ax)
|
|
|
|
{
|
|
|
|
if(!ax.write(os))
|
|
|
|
{
|
|
|
|
fatalExit;
|
|
|
|
}
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline iIstream& operator >>(iIstream& is, rotatingAxis& ax)
|
|
|
|
{
|
|
|
|
if( !ax.read(is) )
|
|
|
|
{
|
|
|
|
fatalExit;
|
|
|
|
}
|
|
|
|
return is;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-12-09 22:02:54 +00:00
|
|
|
#include "rotatingAxisI.hpp"
|
2022-09-04 21:26:29 +00:00
|
|
|
|
|
|
|
#endif
|