diff --git a/applications/utilities/postProcessing/miscellaneous/engineCompRatio/Make/options b/applications/utilities/postProcessing/miscellaneous/engineCompRatio/Make/options index fc10ba7a6f..45a8385baa 100644 --- a/applications/utilities/postProcessing/miscellaneous/engineCompRatio/Make/options +++ b/applications/utilities/postProcessing/miscellaneous/engineCompRatio/Make/options @@ -1,10 +1,8 @@ EXE_INC = \ -I$(LIB_SRC)/finiteVolume/lnInclude \ - -I$(LIB_SRC)/engine/lnInclude \ -I$(LIB_SRC)/meshTools/lnInclude EXE_LIBS = \ - -lengine \ -ldynamicMesh \ -lfiniteVolume \ -lmeshTools diff --git a/applications/utilities/postProcessing/miscellaneous/engineCompRatio/engineCompRatio.C b/applications/utilities/postProcessing/miscellaneous/engineCompRatio/engineCompRatio.C index 4558587f9e..9e8761bf01 100644 --- a/applications/utilities/postProcessing/miscellaneous/engineCompRatio/engineCompRatio.C +++ b/applications/utilities/postProcessing/miscellaneous/engineCompRatio/engineCompRatio.C @@ -32,7 +32,6 @@ Description \*---------------------------------------------------------------------------*/ #include "fvCFD.H" -#include "engineMesh.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -40,7 +39,7 @@ int main(int argc, char *argv[]) { #include "setRootCase.H" #include "createTime.H" - #include "createEngineMesh.H" + #include "createMesh.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -62,7 +61,7 @@ int main(int argc, char *argv[]) runTime.setDeltaT(t0); runTime++; Info<< "CA = " << runTime.userTimeValue() << endl; - mesh.move(); + mesh.update(); } scalar Vmax = sum(mesh.V().field()); @@ -73,14 +72,14 @@ int main(int argc, char *argv[]) runTime.setDeltaT(t1); runTime++; Info<< "CA = " << runTime.userTimeValue() << endl; - mesh.move(); + mesh.update(); } scalar Vmin = sum(mesh.V().field()); Info<< "\nVmax = " << Vmax; Info<< ", Vmin = " << Vmin << endl; - Info<< "Vmax/Vmin = " << Vmax/Vmin << endl; + Info<< "Compression ratio Vmax/Vmin = " << Vmax/Vmin << endl; Info<< "\nEnd\n" << endl; return 0;