Skip to content

Commit 2a11055

Browse files
committed
change default values 0.1 ->back
1 parent 6797c42 commit 2a11055

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Common/src/CConfig.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1384,9 +1384,9 @@ void CConfig::SetConfig_Options() {
13841384
/*!\brief INC_INLET_USENORMAL \n DESCRIPTION: Use the local boundary normal for the flow direction with the incompressible pressure inlet. \ingroup Config*/
13851385
addBoolOption("INC_INLET_USENORMAL", Inc_Inlet_UseNormal, false);
13861386
/*!\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*/
1387-
addDoubleOption("INC_INLET_DAMPING", Inc_Inlet_Damping, 0.01);
1387+
addDoubleOption("INC_INLET_DAMPING", Inc_Inlet_Damping, 0.1);
13881388
/*!\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*/
1389-
addDoubleOption("INC_OUTLET_DAMPING", Inc_Outlet_Damping, 0.01);
1389+
addDoubleOption("INC_OUTLET_DAMPING", Inc_Outlet_Damping, 0.1);
13901390

13911391
/*--- Options related to the species solver. ---*/
13921392

config_template.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ INC_TEMPERATURE_REF = 1.0
277277
INC_INLET_TYPE= VELOCITY_INLET
278278
%
279279
% Damping coefficient for iterative updates at pressure inlets. (0.1 by default)
280-
INC_INLET_DAMPING= 0.01
280+
INC_INLET_DAMPING= 0.1
281281
%
282282
% Impose inlet velocity magnitude in the direction of the normal of the inlet face
283283
INC_INLET_USENORMAL= NO
@@ -287,7 +287,7 @@ INC_INLET_USENORMAL= NO
287287
INC_OUTLET_TYPE= PRESSURE_OUTLET
288288
%
289289
% Damping coefficient for iterative updates at mass flow outlets. (0.1 by default)
290-
INC_OUTLET_DAMPING= 0.01
290+
INC_OUTLET_DAMPING= 0.1
291291
%
292292
% Bulk Modulus for computing the Mach number
293293
BULK_MODULUS= 1.42E5

0 commit comments

Comments
 (0)