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).
内热源按照一定的速度经过求解区域,直到移出求解区域。
目前主要是不知道用什么工具或方法处理这个问题,恳请大家提出解决问题的思路或建议,谢谢!
这个图我给100分:cheeky: ,你求解的是固体导热还是对流导热?
@cfd-china 是固体导热,内热源按照一定速度移动,求解不同时刻下固体温度。
@piteqiu 使用laplacianFoam,添加#include "fvOptions.H",方程中添加源项(参考scalarTransportFoam),在fvOptions中定义codedSource。
laplacianFoam
#include "fvOptions.H"
scalarTransportFoam
fvOptions
codedSource
src/fvOptions/sources/general/codedSource/CodedSource.H
你需要依据时间确定你的区域添加源项就可以了。可能需要一些网格的东西:mesh.C()返回网格位置,mesh().time()返回当前时间。
mesh.C()
mesh().time()