From 43a20100072f807a0faefe98a9b4b936e0f21b04 Mon Sep 17 00:00:00 2001
From: sergio <sergio>
Date: Mon, 14 May 2012 10:43:55 +0100
Subject: [PATCH] ENH: Finishing enthalpyJump BC

---
 .../enthalpyJump/enthalpyJumpFvPatchScalarField.C             | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/thermophysicalModels/basic/derivedFvPatchFields/enthalpyJump/enthalpyJumpFvPatchScalarField.C b/src/thermophysicalModels/basic/derivedFvPatchFields/enthalpyJump/enthalpyJumpFvPatchScalarField.C
index 78c27e6d037..4337dd2ffb9 100644
--- a/src/thermophysicalModels/basic/derivedFvPatchFields/enthalpyJump/enthalpyJumpFvPatchScalarField.C
+++ b/src/thermophysicalModels/basic/derivedFvPatchFields/enthalpyJump/enthalpyJumpFvPatchScalarField.C
@@ -126,11 +126,11 @@ void Foam::enthalpyJumpFvPatchScalarField::updateCoeffs()
 
         if (db().foundObject<volScalarField>("h"))
         {
-            jump_ = thermo.h(jumpTb, faceCells)();
+            jump_ = thermo.h(jumpTb, faceCells);
         }
         else if (db().foundObject<volScalarField>("hs"))
         {
-            jump_ = thermo.hs(jumpTb, faceCells)();
+            jump_ = thermo.hs(jumpTb, faceCells);
         }
         else
         {
-- 
GitLab