mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: Multiple changes - first clean build after latest merge - UNTESTED
This commit is contained in:
@ -1151,10 +1151,6 @@ int main(int argc, char *argv[])
|
||||
// For the first region of a multi-region case additionally
|
||||
// decompose the "uniform" directory in the time directory
|
||||
if (regionNames.size() > 1 && regioni == 0)
|
||||
|
||||
// If no fields have been decomposed the destination
|
||||
// directory will not have been created so make sure.
|
||||
mkDir(timePath);
|
||||
{
|
||||
decomposeUniform(copyUniform, mesh, processorDb);
|
||||
}
|
||||
|
||||
@ -615,7 +615,7 @@ bool Foam::domainDecomposition::writeDecomposition(const bool decomposeSets)
|
||||
|
||||
label zonei = faceToZone[curF];
|
||||
|
||||
if (zoneI >= 0)
|
||||
if (zonei >= 0)
|
||||
{
|
||||
// Single zone. Add the face
|
||||
zoneFaces[zonei].append(facei);
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
\\/ M anipulation | Copyright (C) 2016 OpenCFD Ltd.
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
@ -125,12 +125,8 @@ Foam::parFvFieldReconstructor::reconstructFvVolumeField
|
||||
|
||||
PtrList<fvPatchField<Type>> patchFields(fld.mesh().boundary().size());
|
||||
|
||||
const typename GeometricField
|
||||
<
|
||||
Type,
|
||||
fvPatchField,
|
||||
volMesh
|
||||
>::GeometricBoundaryField& bfld = fld.boundaryField();
|
||||
const typename GeometricField<Type, fvPatchField, volMesh>::Boundary&
|
||||
bfld = fld.boundaryField();
|
||||
|
||||
forAll(bfld, patchI)
|
||||
{
|
||||
@ -292,12 +288,8 @@ Foam::parFvFieldReconstructor::reconstructFvSurfaceField
|
||||
|
||||
PtrList<fvsPatchField<Type>> patchFields(fld.mesh().boundary().size());
|
||||
|
||||
const typename GeometricField
|
||||
<
|
||||
Type,
|
||||
fvsPatchField,
|
||||
surfaceMesh
|
||||
>::GeometricBoundaryField& bfld = fld.boundaryField();
|
||||
const typename GeometricField<Type, fvsPatchField, surfaceMesh>::Boundary&
|
||||
bfld = fld.boundaryField();
|
||||
|
||||
forAll(bfld, patchI)
|
||||
{
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||
\\/ M anipulation | Copyright (C) 2015 OpenCFD Ltd.
|
||||
\\/ M anipulation | Copyright (C) 2015-2016 OpenCFD Ltd.
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
@ -716,8 +716,7 @@ void correctCoupledBoundaryConditions(fvMesh& mesh)
|
||||
{
|
||||
GeoField& fld = *iter();
|
||||
|
||||
typename GeoField::GeometricBoundaryField& bfld =
|
||||
fld.boundaryField();
|
||||
typename GeoField::Boundary& bfld = fld.boundaryFieldRef();
|
||||
if
|
||||
(
|
||||
Pstream::defaultCommsType == Pstream::blocking
|
||||
@ -728,7 +727,7 @@ void correctCoupledBoundaryConditions(fvMesh& mesh)
|
||||
|
||||
forAll(bfld, patchi)
|
||||
{
|
||||
typename GeoField::PatchFieldType& pfld = bfld[patchi];
|
||||
typename GeoField::Patch& pfld = bfld[patchi];
|
||||
|
||||
//if (pfld.coupled())
|
||||
//if (isA<CoupledPatchType>(pfld))
|
||||
@ -750,7 +749,7 @@ void correctCoupledBoundaryConditions(fvMesh& mesh)
|
||||
|
||||
forAll(bfld, patchi)
|
||||
{
|
||||
typename GeoField::PatchFieldType& pfld = bfld[patchi];
|
||||
typename GeoField::Patch& pfld = bfld[patchi];
|
||||
|
||||
//if (pfld.coupled())
|
||||
//if (isA<CoupledPatchType>(pfld))
|
||||
@ -768,7 +767,7 @@ void correctCoupledBoundaryConditions(fvMesh& mesh)
|
||||
forAll(patchSchedule, patchEvali)
|
||||
{
|
||||
label patchi = patchSchedule[patchEvali].patch;
|
||||
typename GeoField::PatchFieldType& pfld = bfld[patchi];
|
||||
typename GeoField::Patch& pfld = bfld[patchi];
|
||||
|
||||
//if (pfld.coupled())
|
||||
//if (isA<CoupledPatchType>(pfld))
|
||||
|
||||
Reference in New Issue
Block a user