Thermodynamyics: rename basicThermo -> fluidThermo and veryBasicThermo -> basicThermo

This commit is contained in:
Henry
2012-08-23 14:13:13 +01:00
parent 26abc53885
commit 830c0ef382
179 changed files with 770 additions and 770 deletions

View File

@ -33,7 +33,7 @@ Description
\*---------------------------------------------------------------------------*/
#include "calc.H"
#include "basicThermo.H"
#include "fluidThermo.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -75,9 +75,9 @@ void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh)
)
{
// thermophysical Mach
autoPtr<basicThermo> thermo
autoPtr<fluidThermo> thermo
(
basicThermo::New(mesh)
fluidThermo::New(mesh)
);
volScalarField Cp(thermo->Cp());

View File

@ -7,5 +7,5 @@ EXE_LIBS = \
$(FOAM_LIBBIN)/postCalc.o \
-lfiniteVolume \
-lgenericPatchFields \
-lbasicThermophysicalModels \
-lfluidThermophysicalModels \
-lspecie

View File

@ -18,9 +18,9 @@
{
volVectorField U(Uheader, mesh);
autoPtr<basicThermo> thermo
autoPtr<fluidThermo> thermo
(
basicThermo::New(mesh)
fluidThermo::New(mesh)
);
volScalarField Cp = thermo->Cp();