diff --git a/etc/bashrc.mingw b/etc/bashrc.mingw index 5392da9b2..d4928d906 100755 --- a/etc/bashrc.mingw +++ b/etc/bashrc.mingw @@ -26,7 +26,8 @@ # etc/bashrc.mingw # # Description -# Startup file for FOAM for use with MSYS shell for MinGW-based builds on Windows. +# Startup file for FOAM for use with MSYS shell for MinGW-based build +# on Microsoft Windows 7 and 8.1. # Calls the main etc/bashrc script. # Sourced from ~/.profile or ~/.bashrc # @@ -62,11 +63,12 @@ add_to_path() { export PATH=$SUBVERSION_HOME/bin:$PATH export PATH=$GIT_HOME/cmd:$PATH #export PATH=$PERL_HOME/bin:$PATH + export PATH=$PARAVIEW_HOME/bin:$PATH export PATH=$CMAKE_HOME/bin:$PATH - export PATH=$MPI_ROOTDIR/bin:$PATH export PATH=$PEXPORTS_HOME/bin:$PATH export PATH=$MINGW_HOME/bin:$PATH - export PATH=$PARAVIEW_HOME/bin:$PATH +# MPI comes last to enforce the path + export PATH=$MPI_ROOTDIR/bin:$PATH } # }}} diff --git a/src/foam/meshes/polyMesh/polyPatches/constraint/ggi/ggiPolyPatch.C b/src/foam/meshes/polyMesh/polyPatches/constraint/ggi/ggiPolyPatch.C index 23deecb82..99ee1b8c5 100644 --- a/src/foam/meshes/polyMesh/polyPatches/constraint/ggi/ggiPolyPatch.C +++ b/src/foam/meshes/polyMesh/polyPatches/constraint/ggi/ggiPolyPatch.C @@ -195,7 +195,8 @@ void Foam::ggiPolyPatch::calcPatchToPatch() const if (debug) { InfoIn("void ggiPolyPatch::calcPatchToPatch() const") - << "Calculating patch to patch interpolation" << endl; + << "Calculating patch to patch interpolation for patch" + << name() << endl; } // Create interpolation for zones @@ -258,6 +259,13 @@ void Foam::ggiPolyPatch::calcReconFaceCellCentres() const << abort(FatalError); } + if (debug) + { + InfoIn("void ggiPolyPatch::calcReconFaceCellCentres() const") + << "Calculating recon centres for patch" + << name() << endl; + } + // Create neighbouring face centres using interpolation if (master()) { @@ -366,7 +374,7 @@ void Foam::ggiPolyPatch::calcSendReceive() const if (debug) { Pout<< "ggiPolyPatch::calcSendReceive() const for patch " - << index() << endl; + << name() << endl; } if (!Pstream::parRun())