forked from PHengLEI/PHengLEI-TestCases
70 lines
2.0 KiB
Plaintext
70 lines
2.0 KiB
Plaintext
# nBoundaryConditions : Number of global boundary conditions.
|
|
# bcName : Boundary condition name.
|
|
# bcType(in PHengLEI): Boundary condition type.
|
|
|
|
# How to set boundary condition, for example:
|
|
# string bcName = "Wall";
|
|
# {
|
|
# int bcType = 2;
|
|
# int viscousType = 1;
|
|
# double wallTemperature = -1.0;
|
|
# double uWall = 0.0;
|
|
# double vWall = 0.0;
|
|
# double wWall = 0.0;
|
|
# }
|
|
# string bcName = "Inflow";
|
|
# {
|
|
# int bcType = 5;
|
|
# int inflowParaType = 0;
|
|
# double refMachNumber = 0.73;
|
|
# double attackd = 2.79;
|
|
# double angleSlide = 0.0;
|
|
# double refReNumber = 6.5e6;
|
|
# double refDimensionalTemperature = 288.15;
|
|
# }
|
|
|
|
# For more information, see examples/bin/boundary_condition.hypara file!!!
|
|
|
|
int nBoundaryConditions = 6;
|
|
string bcName = "BCWall";
|
|
{
|
|
string bodyName = "body";
|
|
int bcType = 2;
|
|
}
|
|
string bcName = "BCFarfield";
|
|
{
|
|
int bcType = 4;
|
|
}
|
|
string bcName = "BCInflow";
|
|
{
|
|
int bcType = 5;
|
|
}
|
|
string bcName = "BCOutflow";
|
|
{
|
|
int bcType = 6;
|
|
}
|
|
string bcName = "BCDegenerateLine";
|
|
{
|
|
int bcType = 71;
|
|
}
|
|
string bcName = "BCDegenerateLine";
|
|
{
|
|
int bcType = 73;
|
|
}
|
|
|
|
# '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
|