forked from PHengLEI/PHengLEI-TestCases
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
|
# nBoundaryConditons : number of global boundary conditions.
|
||
|
# bcName : Boundary Condition Name.
|
||
|
# bcType(in PHengLEI): Boundary Condition Type.
|
||
|
|
||
|
# Account of how to set boundaryconditon.
|
||
|
# string bcName = "Farfield";
|
||
|
# {
|
||
|
# int bcType = 4;
|
||
|
# int inflowParaType = 1;
|
||
|
# double attackd = 0;
|
||
|
# double refReNumber = 6.5e6;
|
||
|
# double refMachNumber = 3.5;
|
||
|
# double angleSlide = 0;
|
||
|
# }
|
||
|
|
||
|
int nBoundaryConditions = 3;
|
||
|
string bcName = "airfoil_lower";
|
||
|
{
|
||
|
int bcType = 2;
|
||
|
}
|
||
|
string bcName = "airfoil_upper";
|
||
|
{
|
||
|
int bcType = 2;
|
||
|
}
|
||
|
|
||
|
string bcName = "farfield";
|
||
|
{
|
||
|
int bcType = 5;
|
||
|
double initU = 100;
|
||
|
double initKinetic = 0.0001460735;
|
||
|
double initEpsilon = 2025;
|
||
|
}
|
||
|
|
||
|
# 'bcType' is defined as following:
|
||
|
# 99: PERIODIC
|
||
|
# -2: WAKE
|
||
|
# -1: INTERFACE
|
||
|
# 0 : NO_BOUNDARY_CONDITION
|
||
|
# 1 : EXTRAPOLATION
|
||
|
# 2 : SOLID_SURFACE
|
||
|
# 3 : SYMMETRY
|
||
|
# 4 : FARFIELD
|
||
|
# 5 : INFLOW
|
||
|
# 6 : OUTFLOW
|
||
|
# 52: PRESSURE_INLET
|
||
|
# 62: PRESSURE_OUTLET
|
||
|
# 61: OUTFLOW_CONFINED
|
||
|
# 7 : POLE
|