From 4c0db5934d7b409428b3fb4d0b3a0691a686a0ca Mon Sep 17 00:00:00 2001
From: andy <andy>
Date: Tue, 23 Jul 2013 12:47:23 +0100
Subject: [PATCH] BUG: buoyantBoussinesq[Simple|Pimple]Foam - added missing
 fvOptions to pressure equations - mantis #921

---
 .../solvers/heatTransfer/buoyantBoussinesqPimpleFoam/pEqn.H      | 1 +
 .../solvers/heatTransfer/buoyantBoussinesqSimpleFoam/pEqn.H      | 1 +
 2 files changed, 2 insertions(+)

diff --git a/applications/solvers/heatTransfer/buoyantBoussinesqPimpleFoam/pEqn.H b/applications/solvers/heatTransfer/buoyantBoussinesqPimpleFoam/pEqn.H
index 06997e52ecd..0b7ec84dfea 100644
--- a/applications/solvers/heatTransfer/buoyantBoussinesqPimpleFoam/pEqn.H
+++ b/applications/solvers/heatTransfer/buoyantBoussinesqPimpleFoam/pEqn.H
@@ -38,6 +38,7 @@
             // calculated from the relaxed pressure
             U = HbyA + rAU*fvc::reconstruct((phig - p_rghEqn.flux())/rAUf);
             U.correctBoundaryConditions();
+            fvOptions.correct(U);
         }
     }
 
diff --git a/applications/solvers/heatTransfer/buoyantBoussinesqSimpleFoam/pEqn.H b/applications/solvers/heatTransfer/buoyantBoussinesqSimpleFoam/pEqn.H
index c07a344017a..53fec2e1b64 100644
--- a/applications/solvers/heatTransfer/buoyantBoussinesqSimpleFoam/pEqn.H
+++ b/applications/solvers/heatTransfer/buoyantBoussinesqSimpleFoam/pEqn.H
@@ -41,6 +41,7 @@
             // calculated from the relaxed pressure
             U = HbyA + rAU*fvc::reconstruct((phig - p_rghEqn.flux())/rAUf);
             U.correctBoundaryConditions();
+            fvOptions.correct(U);
         }
     }
 
-- 
GitLab