Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
应用场景如下:一个房间,它有一面强度很低的墙,房间里面有流动着高温高压气体的工艺管道。如果该管道发生断裂,房间里的压力会骤升,此墙可以碎掉并让房间直通大气,实现泄爆。 我用rhoPimpleFoam模拟该场景,则出口边界条件应该是:“压力>阈值时,fixedValue 0,压力<=阈值时,fixedFluxPressure”,这个边界条件怎么设置呢
“压力>阈值时,fixedValue 0,压力<=阈值时,fixedFluxPressure”,
如果要是实现这个,如果会OpenFOAM编程的话,很简单。去fixedFluxPressure边界条件下添加个类似if p > 9000之类的判断语句。这个问题难点不在于实现这个边界条件,难点在于如果不会OpenFOAM编程,这个基本要学习一段时间..
fixedFluxPressure
if p > 9000
@东岳 谢谢李老师!