mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
boundaryField() -> boundaryFieldRef()
This commit is contained in:
@ -55,9 +55,9 @@ void processField
|
||||
const typename fieldType::GeometricBoundaryField& bf =
|
||||
vtf.boundaryField();
|
||||
|
||||
forAll(bf, patchI)
|
||||
forAll(bf, patchi)
|
||||
{
|
||||
if (isA<externalCoupledMixedFvPatchField<Type>>(bf[patchI]))
|
||||
if (isA<externalCoupledMixedFvPatchField<Type>>(bf[patchi]))
|
||||
{
|
||||
Info<< "Generating external coupled geometry for field "
|
||||
<< fieldName << endl;
|
||||
@ -65,7 +65,7 @@ void processField
|
||||
const externalCoupledMixedFvPatchField<Type>& pf =
|
||||
refCast<const externalCoupledMixedFvPatchField<Type>>
|
||||
(
|
||||
bf[patchI]
|
||||
bf[patchi]
|
||||
);
|
||||
|
||||
pf.writeGeometry();
|
||||
|
||||
Reference in New Issue
Block a user