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).
代码中对网格进行了遍历,如何指导某个网格是否是壁面处的网格呢?或者如何遍历壁面附近的网格呢?
forAll(pCells, cellI) { ... }
@zx
对patch做遍历
forAll(patches, patchi) { forAll(patches[patchi], facei) { label faceCelli = patches[patchi].faceCells()[facei]; T[faceCelli] = xxx; } }
@李东岳 明白了,感谢李老师!