buoyantPimpleFoam相关问题
-
@李东岳 东子老师,新年好呀。我带着新问题来向您请教了。我用v2206版本下的heatTransfer-buoyantBoussinesqPimpleFoam-hotRoom作为模板来模拟储热池的放热过程,我把floor设置成低温水进口,把ceiling设置成高温水出口,采用层流,介质为水,算出来的结果温度场很奇怪,中间的斜温层很厚。
我查阅文献,并且用fluent算出来的斜温层应该非常薄才对。
此外,我把所有物性参数扩大和缩小1000倍,温度场没变化。
具体设置如下:- alphat
FoamFile { version 2.0; format ascii; class volScalarField; object alphat; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; boundaryField { floor { type alphatJayatillekeWallFunction; Prt 0.1; value uniform 0; } ceiling { type alphatJayatillekeWallFunction; Prt 0.1; value uniform 0; } fixedWalls { type alphatJayatillekeWallFunction; Prt 0.1; value uniform 0; } }
- nut
FoamFile { version 2.0; format ascii; class volScalarField; object nut; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; boundaryField { floor { type nutkWallFunction; value uniform 0; } ceiling { type nutkWallFunction; value uniform 0; } fixedWalls { type nutkWallFunction; value uniform 0; } }
- p
FoamFile { version 2.0; format ascii; class volScalarField; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField uniform 1e5; boundaryField { floor { type zeroGradient; } ceiling { type zeroGradient; } fixedWalls { type zeroGradient; } }
- p_rgh
FoamFile { version 2.0; format ascii; class volScalarField; object p_rgh; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField uniform 1e5; boundaryField { floor { type zeroGradient; rho rhok; } ceiling { type zeroGradient; rho rhok; } fixedWalls { type zeroGradient; rho rhok; } }
- T
FoamFile { version 2.0; format ascii; class volScalarField; object T; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 1 0 0 0]; internalField uniform 363; boundaryField { floor { type fixedValue; value uniform 283; } ceiling { type zeroGradient; } fixedWalls { type zeroGradient; } }
- U
FoamFile { version 2.0; format ascii; class volVectorField; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField uniform (0 0 0); boundaryField { floor { type fixedValue; value uniform (0 0.1 0); } ceiling { type fixedValue; value uniform (0 0.1 0); } fixedWalls { type noSlip; } }
- transportProperties
FoamFile { version 2.0; format ascii; class dictionary; object transportProperties; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // transportModel Newtonian; // Laminar viscosity nu 1e-06; // Thermal expansion coefficient beta 3e-04; // Reference temperature TRef 273; // Laminar Prandtl number Pr 7; // Turbulent Prandtl number Prt 0.1;
- turbulenceProperties
FoamFile { version 2.0; format ascii; class dictionary; object turbulenceProperties; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // simulationType laminar; /* RAS { RASModel kEpsilon; turbulence on; printCoeffs on; } */
麻烦您抽空看看,谢谢您!