From 0d1833a44e09d2de56f4869b6f1a97c2d1c70123 Mon Sep 17 00:00:00 2001 From: henry <Henry Weller h.weller@opencfd.co.uk> Date: Thu, 18 Feb 2010 16:16:08 +0000 Subject: [PATCH] Thermodynamics: Corrected the boundary condition for Cp. --- .../basic/psiThermo/ePsiThermo/ePsiThermo.C | 3 +-- .../basic/psiThermo/hPsiThermo/hPsiThermo.C | 3 +-- .../basic/psiThermo/hsPsiThermo/hsPsiThermo.C | 3 +-- .../basic/rhoThermo/hRhoThermo/hRhoThermo.C | 3 +-- .../basic/rhoThermo/hsRhoThermo/hsRhoThermo.C | 3 +-- 5 files changed, 5 insertions(+), 10 deletions(-) diff --git a/src/thermophysicalModels/basic/psiThermo/ePsiThermo/ePsiThermo.C b/src/thermophysicalModels/basic/psiThermo/ePsiThermo/ePsiThermo.C index 789f35bed9e..2d255977be7 100644 --- a/src/thermophysicalModels/basic/psiThermo/ePsiThermo/ePsiThermo.C +++ b/src/thermophysicalModels/basic/psiThermo/ePsiThermo/ePsiThermo.C @@ -246,8 +246,7 @@ Foam::tmp<Foam::volScalarField> Foam::ePsiThermo<MixtureType>::Cp() const IOobject::NO_WRITE ), mesh, - dimensionSet(0, 2, -2, -1, 0), - this->T_.boundaryField().types() + dimensionSet(0, 2, -2, -1, 0) ) ); diff --git a/src/thermophysicalModels/basic/psiThermo/hPsiThermo/hPsiThermo.C b/src/thermophysicalModels/basic/psiThermo/hPsiThermo/hPsiThermo.C index ab85557cf47..11f1e1b2b6c 100644 --- a/src/thermophysicalModels/basic/psiThermo/hPsiThermo/hPsiThermo.C +++ b/src/thermophysicalModels/basic/psiThermo/hPsiThermo/hPsiThermo.C @@ -244,8 +244,7 @@ Foam::tmp<Foam::volScalarField> Foam::hPsiThermo<MixtureType>::Cp() const IOobject::NO_WRITE ), mesh, - dimensionSet(0, 2, -2, -1, 0), - this->T_.boundaryField().types() + dimensionSet(0, 2, -2, -1, 0) ) ); diff --git a/src/thermophysicalModels/basic/psiThermo/hsPsiThermo/hsPsiThermo.C b/src/thermophysicalModels/basic/psiThermo/hsPsiThermo/hsPsiThermo.C index 2683e3f851c..cb33763fd68 100644 --- a/src/thermophysicalModels/basic/psiThermo/hsPsiThermo/hsPsiThermo.C +++ b/src/thermophysicalModels/basic/psiThermo/hsPsiThermo/hsPsiThermo.C @@ -244,8 +244,7 @@ Foam::tmp<Foam::volScalarField> Foam::hsPsiThermo<MixtureType>::Cp() const IOobject::NO_WRITE ), mesh, - dimensionSet(0, 2, -2, -1, 0), - this->T_.boundaryField().types() + dimensionSet(0, 2, -2, -1, 0) ) ); diff --git a/src/thermophysicalModels/basic/rhoThermo/hRhoThermo/hRhoThermo.C b/src/thermophysicalModels/basic/rhoThermo/hRhoThermo/hRhoThermo.C index ce3486fa152..3aca91c1242 100644 --- a/src/thermophysicalModels/basic/rhoThermo/hRhoThermo/hRhoThermo.C +++ b/src/thermophysicalModels/basic/rhoThermo/hRhoThermo/hRhoThermo.C @@ -243,8 +243,7 @@ Foam::tmp<Foam::volScalarField> Foam::hRhoThermo<MixtureType>::Cp() const IOobject::NO_WRITE ), mesh, - dimensionSet(0, 2, -2, -1, 0), - this->T_.boundaryField().types() + dimensionSet(0, 2, -2, -1, 0) ) ); diff --git a/src/thermophysicalModels/basic/rhoThermo/hsRhoThermo/hsRhoThermo.C b/src/thermophysicalModels/basic/rhoThermo/hsRhoThermo/hsRhoThermo.C index 1e5e1180777..fe0a4aedc44 100644 --- a/src/thermophysicalModels/basic/rhoThermo/hsRhoThermo/hsRhoThermo.C +++ b/src/thermophysicalModels/basic/rhoThermo/hsRhoThermo/hsRhoThermo.C @@ -243,8 +243,7 @@ Foam::tmp<Foam::volScalarField> Foam::hsRhoThermo<MixtureType>::Cp() const IOobject::NO_WRITE ), mesh, - dimEnergy/dimMass/dimTemperature, - this->T_.boundaryField().types() + dimEnergy/dimMass/dimTemperature ) ); -- GitLab