PHengLEI-TestCases/A09_ThreeD_M6_SST_Struct_MG.../bin/partition.hypara

22 lines
944 B
Plaintext
Raw Normal View History

2021-03-22 16:44:54 +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.
2021-06-26 23:44:44 +08:00
// Usually, 50~100 thousands structured cells per CPU-Core is suggested.
// 30~70 thousands unstructured cells per CPU-Core is suggested.
2021-03-22 16:44:54 +08:00
// original_grid_file: Original grid file that want to be divided(PHengLEI type, *.fts).
// partition_grid_file: Target partition grid file(PHengLEI type, *.fts).
2021-06-26 23:44:44 +08:00
int pgridtype = 1;
int maxproc = 4;
2021-03-22 16:44:54 +08:00
2021-06-26 23:44:44 +08:00
string original_grid_file = "./grid/m6_str.fts";
string partition_grid_file = "./grid/m6_str__4.fts";
2021-03-22 16:44:54 +08:00
// numberOfMultigrid: Number of multi-grid levels, ONLY used for structured grid.
// 1 -- single level.
// 2 -- 2 level.
// N -- N level,..., et al.
2021-06-26 23:44:44 +08:00
int numberOfMultigrid = 2;