# 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 = 5; string bcName = "in_1"; { string bodyName = "body"; int bcType = 5; double initU =3.05; double initKinetic = 0.375; double initEpsilon =86.64304; } string bcName = "out_1"; { string bodyName = "body"; int bcType = 6; double initP =0; double initKinetic = 0.3756; double initEpsilon = 86.64304; } string bcName = "wall_1"; { int bcType = 2; } string bcName = "sym_1"; { int bcType = 3; } string bcName = "symf_1"; { int bcType = 3; } # 'bcType' is defined as following: # -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