decomposePar 的手动分块/手动指定计算区域分块
-
再update一下python的代码,不知道哪个为啥错,但是重新写了下执行对了。但是响了下应该是可以写个script执行的,如果电脑上没python。。。
#read file f1 = open("0/cellDist", "r") lines = f1.readlines() f1.close() #replace and delete unwanted lines lines[11] = lines[11].replace("volScalarField", "labelList") lines[12] = lines[12].replace("0", "constant") del lines[17:21] bfline = 0 for i, line in enumerate(lines): if (line.find("boundaryField") != -1): bfline = i break del lines[i:] #write file f2 = open("constant/cellDist", "w") for line in lines: f2.write(line) f2.close();
-
@hurricane007 比block还简单粗暴,横着分两份,竖着分两份。第三个维度没有。
-
@hurricane007 我的实际操作经验还是挺少的。没见有可以把block和分区结合一起的方法,毕竟这两个分的依据都不太一样。有个方式是manual,看起来很适合你的样子。直接指定哪个网格属于哪个分区。但没见过相关例子。
-
@hurricane007 那这种方法挺好的
如果手动加工去关联block和分区。可以用写脚本,bash、python都行。读constant/polymesh里的数据,计算生成celllist。
这个工作量并不是很大,就是逻辑理着麻烦。
linux一切皆文本的好处,什么信息都可读,操作方法通用,容易嫁接。 -
@hurricane007 这个思路挺不不错。我没见过手动分区的例子,不懂了 加油。