Fix E01E02 perodic BC parameters

This commit is contained in:
QILIN LU 2021-07-28 15:50:02 +08:00
parent c1b9d2658e
commit 94b4b4e5a7
2 changed files with 20 additions and 0 deletions

View File

@ -28,3 +28,13 @@ int from_gtype = 2;
// out_gfile: path of target file for grid convert to, *.fts type of file usually.
string from_gfile = "./grid/cylinder_270w_split120.cgns";
string out_gfile = "./grid/cylinder_270w_split120.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.
int periodicType = 1;
double translationLength[] = [0,3.14,0];
double rotationAngle = 0;

View File

@ -28,3 +28,13 @@ int from_gtype = 2;
// out_gfile: path of target file for grid convert to, *.fts type of file usually.
string from_gfile = "./grid/cylinder_les_unstr.cgns";
string out_gfile = "./grid/cylinder_les_unstr.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.
int periodicType = 1;
double translationLength[] = [0,3.14,0];
double rotationAngle = 0;