关于openfoam中如何实现公转加自转的运动?
-
-
-
/--------------------------------- C++ -----------------------------------
========= |
\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\ / O peration | Website: https://openfoam.org
\ / A nd | Version: 9
\/ M anipulation |
*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class volVectorField;
location "0";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
waiquan
{
type movingWallVelocity;
value uniform (0 0 0);
}
inlet
{
type movingWallVelocity;
value uniform (0 0 0);
}
neiquan
{
type movingWallVelocity;
value uniform (0 0 0);
}
outlet
{
type movingWallVelocity;
value uniform (0 0 0);
}
ball1
{
type rotatingWallVelocity;
relative yes;
origin (0 -0.01675 0);
axis (0 0 -1);
omega constant 837.76;
value uniform (0 0 0);
}
ball2
{
type rotatingWallVelocity;
relative yes;
origin (0 0.01675 0);
axis (0 0 -1);
omega constant 837.76;
value uniform (0 0 0);
}
ball3
{
type rotatingWallVelocity;
relative yes;
origin (-0.011844 -0.011844 0);
axis (0 0 -1);
omega constant 837.76;
value uniform (0 0 0);
}
ball4
{
type rotatingWallVelocity;
relative yes;
origin (-0.01675 0 0);
axis (0 0 -1);
omega constant 837.76;
value uniform (0 0 0);
}
ball5
{
type rotatingWallVelocity;
relative yes;
origin (-0.011844 0.011844 0);
axis (0 0 -1);
omega constant 837.76;
value uniform (0 0 0);
}
ball6
{
type rotatingWallVelocity;
relative yes;
origin (0.011844 0.011844 0);
axis (0 0 -1);
omega constant 837.76;
value uniform (0 0 0);
}
ball7
{
type rotatingWallVelocity;
relative yes;
origin (0.011844 -0.011844 0);
axis (0 0 -1);
omega constant 837.76;
value uniform (0 0 0);
}
ball8
{
type rotatingWallVelocity;
relative yes;
origin (0.01675 0 0);
axis (0 0 -1);
omega constant 837.76;
value uniform (0 0 0);
}
}
// ************************************************************************* // -
-
@李东岳 这么难搞,有其他方法能实现这个公转加自转的模型吗。我看似乎可以参考Fluent中的设置方法,不知道openfoam中能不能实现?FLUENT动网格系列:公转&自转
-
可以参考这里
就结果来说,能实现,但我没看懂是怎么实现的。或者说,我不太理解这些参数是怎么起作用的,不理解内圈的旋转中心是怎么实现随外圈旋转而变化的。
-
@tidedrinker 我针对这个案例Allrun后看不了结果,这两个box文件是什么意思好像要把他们合并?
-
@tidedrinker 已经能正常查看结果,它应该是对内圈定义了两个旋转运动来实现公转加自转的,所以中心会随着外圈改变。这种跟上边Fluent两套滑移网格的方法类似,我再针对我的案例再试一下。感谢!
-
打扰一下,各位老师,我也有一个类似的问题,我希望用pisoFoam跑出tutorials/incompressible/SRFPimpleFoam/rotor2D案例的效果,模型没有怎么更改,可以运行但是不旋转,由于我需要使用CFDEM所以只能用pisoFoam。这片帖子上的rotatingWallVelocity我也试着做了一下,中间有一点,并没有随时间变化。有什么效果能在pisoFoam实现旋转的效果吗?
-
我的模型就是一个搅拌,中间有扇叶,滑移网格是设置dynamicMeshDict吧,pisoFoam求解器可以用吗,我是初学还没有接触过动网格。
-
-
谢谢老师,我现在的版本计算mixer2dAMI没有效果,我后期还需要使用CFDEM,使用pisoFoam,动网格好像不太适合。
3/28