From cbdd4077c7ca0ca4f06b45dd38297cd7409e5e18 Mon Sep 17 00:00:00 2001 From: Will Bainbridge Date: Fri, 28 Feb 2020 08:55:53 +0000 Subject: [PATCH] tutorials/.../angledDuct: Swictched to bounded schemes This change greatly reduces the transients generated at the start of the iteration sequence. --- .../RAS/angledDuct/system/fvSchemes | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSchemes b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSchemes index 3649353031..36f8033274 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSchemes +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/fvSchemes @@ -28,15 +28,15 @@ gradSchemes divSchemes { default none; - div(phi,U) Gauss upwind; - div(phid,p) Gauss upwind; - div(phiv,p) Gauss linear; - div(phi,K) Gauss linear; - div(phi,e) Gauss upwind; - div(phi,k) Gauss upwind; - div(phi,epsilon) Gauss upwind; - div(phi,R) Gauss upwind; - div(phi,omega) Gauss upwind; + div(phi,U) bounded Gauss upwind; + div(phid,p) bounded Gauss upwind; + div(phiv,p) bounded Gauss linear; + div(phi,K) bounded Gauss linear; + div(phi,e) bounded Gauss upwind; + div(phi,k) bounded Gauss upwind; + div(phi,epsilon) bounded Gauss upwind; + div(phi,R) bounded Gauss upwind; + div(phi,omega) bounded Gauss upwind; div((rho*R)) Gauss linear; div(R) Gauss linear; div(U) Gauss linear;