PHengLEI-TestCases/C03_ThreeD_M6_SST_Mix_64CPU/bin/partition.hypara

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-06-28 13:17:46 +08:00
// pgridtype: The grid type.
// 0 -- unstruct grid.
// 1 -- struct grid.
// maxproc: The number of partition zones that want to be divided into,
// which is equal to the number of CPU processors you want.
// Usually, 50~100 thousands structured cells per CPU-Core is suggested.
// 30~70 thousands unstructured cells per CPU-Core is suggested.
// original_grid_file: Original grid file that want to be divided(PHengLEI type, *.fts).
// partition_grid_file: Target partition grid file(PHengLEI type, *.fts).
// struct
int pgridtype = 1;
2021-06-28 13:17:46 +08:00
// unstruct
//int pgridtype = 0;
2021-06-28 13:17:46 +08:00
// default
int maxproc = 64;
2021-06-28 13:17:46 +08:00
int omit_no_bound_bc = 1;
// struct
string original_grid_file = "./grid/str.fts";
string partition_grid_file = "./grid/str__64.fts";
2021-06-28 13:17:46 +08:00
// unstruct
//string original_grid_file = "./grid/unstr.fts";
//string partition_grid_file = "./grid/unstr__64.fts";
2021-06-28 13:17:46 +08:00
// numberOfMultigrid: Number of multi-grid levels, ONLY used for structured grid.
// 1 -- single level.
// 2 -- 2 level.
// N -- N level,..., et al.
int numberOfMultigrid = 1;