后处理,气泡聚并前两个气泡的速度
-
当两个气泡聚合的时候,两个气泡在聚并前的速度可以通过openfoam或者paraFoam获取吗? 单个气泡的我看网上有用swka4foam求得, 就是不知道两个或者三个怎么求取?
-
现在用的是改进的interfoam,就是copy了一下MPPICInterFOAM的代码编译了一下。因为这边只能用openfoam7。 原先interfoam计算单个气泡的时候,
bubbleVol.value() = gSum((1-alpha1)*mesh.V()); Ur.value()=vector // Calculate frame relative bubble velocity ( gSum((1-alpha1)*U.component(vector::X)*mesh.V())/bubbleVol.value(), gSum((1-alpha1)*U.component(vector::Y)*mesh.V())/bubbleVol.value(), gSum((1-alpha1)*U.component(vector::Z)*mesh.V())/bubbleVol.value() );
-
就是全场吧, 因为1-alpha1 是对于水为0, 所以
gsum((1-alpha1) × mesh.V())
就是bubble的volume;下面的那个速度也是一样的, 但是那个速度只是一个平均速度。