COMP: solidFoam: extraneous includes. See 1956.

This commit is contained in:
mattijs
2020-12-14 08:44:45 +00:00
parent 4fdeb3be83
commit 696704a0dd
2 changed files with 5 additions and 6 deletions

View File

@ -1,5 +1,4 @@
EXE_INC = \
-DFULLDEBUG -g -O0 \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(LIB_SRC)/meshTools/lnInclude \
-I$(LIB_SRC)/dynamicMesh/lnInclude \

View File

@ -5,11 +5,11 @@ solidThermo& thermo = pThermo();
tmp<volScalarField> trho = thermo.rho();
const volScalarField& rho = trho();
tmp<volScalarField> tcp = thermo.Cp();
const volScalarField& cp = tcp();
volScalarField& p = thermo.p();
//
//tmp<volScalarField> tcp = thermo.Cp();
//const volScalarField& cp = tcp();
//
//volScalarField& p = thermo.p();
volScalarField& h = thermo.he();
autoPtr<coordinateSystem> coordinatesPtr;