mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Corrected the filtering of the processor patches.
See http://openfoam.cfd-online.com/cgi-bin/forum/show.cgi?126/11559
This commit is contained in:
@ -27,7 +27,7 @@ License
|
||||
#include "adjustPhi.H"
|
||||
#include "volFields.H"
|
||||
#include "surfaceFields.H"
|
||||
#include "processorFvPatchFields.H"
|
||||
#include "processorFvsPatchFields.H"
|
||||
#include "inletOutletFvPatchFields.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * Global Functions * * * * * * * * * * * * * //
|
||||
@ -52,7 +52,7 @@ bool Foam::adjustPhi
|
||||
const fvPatchVectorField& Up = U.boundaryField()[patchi];
|
||||
const fvsPatchScalarField& phip = phi.boundaryField()[patchi];
|
||||
|
||||
if (!isType<processorFvPatchScalarField>(phip))
|
||||
if (!isType<processorFvsPatchScalarField>(phip))
|
||||
{
|
||||
if
|
||||
(
|
||||
@ -128,7 +128,7 @@ bool Foam::adjustPhi
|
||||
const fvPatchVectorField& Up = U.boundaryField()[patchi];
|
||||
fvsPatchScalarField& phip = phi.boundaryField()[patchi];
|
||||
|
||||
if (!isType<processorFvPatchScalarField>(phip))
|
||||
if (!isType<processorFvsPatchScalarField>(phip))
|
||||
{
|
||||
if
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user