phasicFlow/src/MotionModel/entities/rotatingAxis/rotatingAxis.hpp

178 lines
3.7 KiB
C++
Raw Normal View History

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
#include "timeInterval.hpp"
2022-12-09 22:02:54 +00:00
#include "line.hpp"
2022-09-04 21:26:29 +00:00
#include "rotatingAxisFwd.hpp"
2022-09-04 21:26:29 +00:00
namespace pFlow
{
class dictionary;
2023-03-31 17:48:23 +00:00
/**
* An axis which rotates around itself at specified speed
*
* This defines an axis with two end points that rotates around
* itself at specified speed (rad/s).
*
*
\verbatim
// This creates an axis of rotation around x-axis, rotation starts at t = 1 s
// and ends at t = 5 s.
{
p1 (0 0 0);
p2 (1 0 0);
omega 1.57;
startTime 1;
endTime 5;
} \endverbatim
*
2023-04-02 16:17:16 +00:00
* | Parameter | Type | Description | Optional [default value] |
* |----| :---: | ---- | ---- |
2023-03-31 17:48:23 +00:00
* | p1 | realx3 | begin point of axis | No |
* | p2 | realx3 | end point of axis | No |
* | omega | real | rotation speed (rad/s) | No |
2023-04-02 16:17:16 +00:00
* | startTime | real | start time of rotation (s) | Yes [0] |
* | endTime | real | end time of rotation (s) | Yes [infinity] |
2023-03-31 17:48:23 +00:00
*
*/
2022-09-04 21:26:29 +00:00
class rotatingAxis
:
public timeInterval,
2022-09-04 21:26:29 +00:00
public line
{
private:
2022-09-04 21:26:29 +00:00
2023-03-31 17:48:23 +00:00
/// rotation speed
2022-09-04 21:26:29 +00:00
real omega_ = 0;
2023-03-31 17:48:23 +00:00
/// is rotating
2022-09-04 21:26:29 +00:00
bool rotating_ = false;
public:
2023-03-31 17:48:23 +00:00
// - Constructor
TypeInfoNV("rotatingAxis");
2023-03-31 17:48:23 +00:00
/// Empty constructor
2022-09-04 21:26:29 +00:00
FUNCTION_HD
rotatingAxis()=default;
2022-09-04 21:26:29 +00:00
2023-03-31 17:48:23 +00:00
/// Construct from dictionary
2022-09-04 21:26:29 +00:00
FUNCTION_H
explicit rotatingAxis(const dictionary& dict);
2022-09-04 21:26:29 +00:00
2023-03-31 17:48:23 +00:00
/// Construct from components
2022-09-04 21:26:29 +00:00
FUNCTION_HD
rotatingAxis(const realx3& p1, const realx3& p2, real omega = 0.0);
2023-03-31 17:48:23 +00:00
/// Copy constructor
2022-09-04 21:26:29 +00:00
FUNCTION_HD
rotatingAxis(const rotatingAxis&) = default;
FUNCTION_HD
rotatingAxis(rotatingAxis&&) = default;
2023-03-31 17:48:23 +00:00
/// Copy asssignment
2022-09-04 21:26:29 +00:00
rotatingAxis& operator=(const rotatingAxis&) = default;
/// Copy asssignment
rotatingAxis& operator=(rotatingAxis&&) = default;
/// destructor
~rotatingAxis()=default;
2023-03-31 17:48:23 +00:00
/// Set omega
2022-09-04 21:26:29 +00:00
FUNCTION_HD
real setOmega(real omega);
2023-03-31 17:48:23 +00:00
/// Return omega
2022-09-04 21:26:29 +00:00
INLINE_FUNCTION_HD
real omega()const
{
return omega_;
}
2023-03-31 17:48:23 +00:00
/// Is rotating
INLINE_FUNCTION_HD
bool isRotating()const
{
return rotating_;
}
2023-03-31 17:48:23 +00:00
/// Linear tangential velocity at point p
2022-09-04 21:26:29 +00:00
INLINE_FUNCTION_HD
realx3 linVelocityPoint(const realx3 &p)const;
INLINE_FUNCTION_HD
realx3 transferPoint(const realx3 p, real dt);
2022-09-04 21:26:29 +00:00
// - IO operation
2023-03-31 17:48:23 +00:00
/// Read from dictionary
2022-09-04 21:26:29 +00:00
FUNCTION_H
bool read(const dictionary& dict);
2023-03-31 17:48:23 +00:00
/// Write to dictionary
2022-09-04 21:26:29 +00:00
FUNCTION_H
bool write(dictionary& dict) const;
2023-03-31 17:48:23 +00:00
/// Read from input stream is
2022-09-04 21:26:29 +00:00
FUNCTION_H
bool read(iIstream& is);
2023-03-31 17:48:23 +00:00
/// Write to output stream os
2022-09-04 21:26:29 +00:00
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