Feature: Cumulative porting fixes. Author: Hrvoje Jasak. Merge: Hrvoje Jasak.
This commit is contained in:
commit
c08017d946
2 changed files with 15 additions and 5 deletions
|
@ -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
|
||||
}
|
||||
# }}}
|
||||
|
||||
|
|
|
@ -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())
|
||||
|
|
Reference in a new issue