2021-12-31 09:04:02 +08:00
|
|
|
#########################################################################
|
|
|
|
# Grid data type #
|
|
|
|
#########################################################################
|
|
|
|
// gridtype: Grid type for generation, conversion, reconstruction, merging.
|
|
|
|
// 0 -- Unstructured grid.
|
|
|
|
// 1 -- Structured grid.
|
|
|
|
// axisup: Type of Cartisien coordinates system, used in grid conversion.
|
|
|
|
// 1 -- Y upward. (default)
|
|
|
|
// 2 -- Z upward.
|
|
|
|
// from_gtype: Type of grid data type in grid conversion process.
|
|
|
|
// -1 -- MULTI_TYPE.
|
|
|
|
// 1 -- PHengLEI, *.fts.
|
|
|
|
// 2 -- CGNS, *.cgns.
|
|
|
|
// 3 -- Plot3D type of structured grid, *.dat/*.grd.
|
|
|
|
// 4 -- Fieldview type of unstructured grid, *.dat/*.inp.
|
|
|
|
// 5 -- Fluent, *.cas/*.msh.
|
|
|
|
// 6 -- Ustar, mgrid.in.
|
|
|
|
// 7 -- Hybrid, include both of unstructured and structured grid, *.fts.
|
|
|
|
// 8 -- GMSH, *.msh.
|
|
|
|
int gridtype = 1;
|
|
|
|
int axisup = 1;
|
|
|
|
int from_gtype = 2;
|
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
# File path #
|
|
|
|
#########################################################################
|
|
|
|
// from_gfile: path of original data file for unstructure grid convert from.
|
|
|
|
// out_gfile: path of target file for grid convert to, *.fts type of file usually.
|
|
|
|
string from_gfile = "./grid/naca0012_str_26m_yup.cgns";
|
|
|
|
string out_gfile = "./grid/naca0012_str_26m_yup.fts";
|
|
|
|
|
|
|
|
// ----------------- Periodic Parameters --------------------------------
|
|
|
|
// Notice:Periodic boundary only support translation or rotation along the X axis!
|
|
|
|
// periodicType: Which symmetry plane is used in the mesh.
|
|
|
|
// 0 -- without Periodic Boundary.
|
|
|
|
// 1 -- Translational periodicity.
|
|
|
|
// 2 -- Rotational periodicity.
|
2022-06-29 14:56:35 +08:00
|
|
|
int periodicType = 1;
|
2021-12-31 09:04:02 +08:00
|
|
|
double translationLength[] = [0.0,0.0,0.5];
|
2022-06-29 14:56:35 +08:00
|
|
|
double rotationAngle = 0.0;
|