3.1 격자 구성 파일 (Mesh Configuration File)
해당 섹션은 메시 프로세서 파일 "Flow360Mesh.json"의 입력을 정의합니다. 메시에 노-슬립 벽 또는 슬라이딩 인터페이스가 없는 경우 파일에는 빈 목록이 포함됩니다.
Type | Options | Default | Description |
---|---|---|---|
boundaries | noSlipWalls | [] | boundary patches의 이름 목록입니다. 예시로는 [.ugrid]의 경우 ["2", "3", "7"], [.cgns]의 경우 ["vol-1/wall1", "vol-2/wall2"]와 같습니다. |
slidinInterfaces | [] | 슬라이딩 인터페이스의 쌍 목록입니다. | |
stationaryPatches | [] | 고정된 경계 패치의 이름 목록입니다. | |
rotatingPatches | [] | 회전 경계 패치의 이름 목록입니다. | |
axisOfRotation | [] | 회전축 | |
centerOfRotation | [] | 회전 중심점 |
[!Note]
"slidingInterfaces"는 여러 개의 Volume 영역이 필요합니다.
Example
1"boundaries": {
2 "noSlipWalls": ["rotatingField/blades"]
3},
4"slidingInterfaces": [
5 {
6 "stationaryPatches": ["stationaryField/rotationInterface"],
7 "rotatingPatches": ["rotatingField/rotationInterface"],
8 "axisOfRotation": [0.0, 0.0, -1.0],
9 "centerOfRotation": [0.0, 0.0, 0.0]
10 }
11]