Skip to content

Commit 14148d1

Browse files
committed
add inlet_usenormal
1 parent 88f21ab commit 14148d1

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Common/src/CConfig.cpp

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1383,10 +1383,13 @@ void CConfig::SetConfig_Options() {
13831383
addDoubleOption("INC_TEMPERATURE_INIT", Inc_Temperature_Init, 288.15);
13841384
/*!\brief INC_NONDIM \n DESCRIPTION: Non-dimensionalization scheme for incompressible flows. \ingroup Config*/
13851385
addEnumOption("INC_NONDIM", Ref_Inc_NonDim, NonDim_Map, INITIAL_VALUES);
1386-
/*!\brief INLET_USENORMAL \n DESCRIPTION: Use the local boundary normal for the flow direction with the (in)compressible pressure inlet. \ingroup Config*/
1387-
addBoolOption("INLET_USENORMAL", Inlet_UseNormal, false);
1386+
13881387
/*--- INC_INLET_USENORMAL is deprecated, we now have INLET_USENORMAL ---*/
1389-
addBoolOption("INC_INLET_USENORMAL", Inlet_UseNormal, false);
1388+
//addBoolOption("INC_INLET_USENORMAL", Inlet_UseNormal, false);
1389+
1390+
/*!\brief INLET_USENORMAL \n DESCRIPTION: Use the local boundary normal for the flow direction with the (in)compressible pressure inlet. \ingroup Config*/
1391+
addBoolOption("INLET_USENORMAL", Inlet_UseNormal, false);
1392+
13901393
/*!\brief INC_INLET_DAMPING \n DESCRIPTION: Damping factor applied to the iterative updates to the velocity at a pressure inlet in incompressible flow (0.1 by default). \ingroup Config*/
13911394
addDoubleOption("INC_INLET_DAMPING", Inc_Inlet_Damping, 0.1);
13921395
/*!\brief INC_OUTLET_DAMPING \n DESCRIPTION: Damping factor applied to the iterative updates to the pressure at a mass flow outlet in incompressible flow (0.1 by default). \ingroup Config*/

0 commit comments

Comments
 (0)