From 696704a0ddbe876e7436542aaaba0b70369916b4 Mon Sep 17 00:00:00 2001 From: mattijs Date: Mon, 14 Dec 2020 08:44:45 +0000 Subject: [PATCH] COMP: solidFoam: extraneous includes. See 1956. --- .../solvers/heatTransfer/solidFoam/Make/options | 1 - .../solvers/heatTransfer/solidFoam/createFields.H | 10 +++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/applications/solvers/heatTransfer/solidFoam/Make/options b/applications/solvers/heatTransfer/solidFoam/Make/options index 764ab34010..5f1bd4e176 100644 --- a/applications/solvers/heatTransfer/solidFoam/Make/options +++ b/applications/solvers/heatTransfer/solidFoam/Make/options @@ -1,5 +1,4 @@ EXE_INC = \ - -DFULLDEBUG -g -O0 \ -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/meshTools/lnInclude \ -I$(LIB_SRC)/dynamicMesh/lnInclude \ diff --git a/applications/solvers/heatTransfer/solidFoam/createFields.H b/applications/solvers/heatTransfer/solidFoam/createFields.H index 1c6a939db7..afa16a09ba 100644 --- a/applications/solvers/heatTransfer/solidFoam/createFields.H +++ b/applications/solvers/heatTransfer/solidFoam/createFields.H @@ -5,11 +5,11 @@ solidThermo& thermo = pThermo(); tmp trho = thermo.rho(); const volScalarField& rho = trho(); - -tmp tcp = thermo.Cp(); -const volScalarField& cp = tcp(); - -volScalarField& p = thermo.p(); +// +//tmp tcp = thermo.Cp(); +//const volScalarField& cp = tcp(); +// +//volScalarField& p = thermo.p(); volScalarField& h = thermo.he(); autoPtr coordinatesPtr;