mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
278 lines
7.0 KiB
C
278 lines
7.0 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "patchProbes.H"
|
|
#include "volFields.H"
|
|
#include "IOmanip.H"
|
|
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::patchProbes::sampleAndWrite
|
|
(
|
|
const GeometricField<Type, fvPatchField, volMesh>& vField
|
|
)
|
|
{
|
|
Field<Type> values(sample(vField));
|
|
|
|
if (Pstream::master())
|
|
{
|
|
unsigned int w = IOstream::defaultPrecision() + 7;
|
|
OFstream& probeStream = *probeFilePtrs_[vField.name()];
|
|
|
|
probeStream
|
|
<< setw(w)
|
|
<< vField.time().timeToUserTime(vField.time().value());
|
|
|
|
forAll(values, probeI)
|
|
{
|
|
probeStream << ' ' << setw(w) << values[probeI];
|
|
}
|
|
probeStream << endl;
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::patchProbes::sampleAndWrite
|
|
(
|
|
const GeometricField<Type, fvsPatchField, surfaceMesh>& sField
|
|
)
|
|
{
|
|
Field<Type> values(sample(sField));
|
|
|
|
if (Pstream::master())
|
|
{
|
|
unsigned int w = IOstream::defaultPrecision() + 7;
|
|
OFstream& probeStream = *probeFilePtrs_[sField.name()];
|
|
|
|
probeStream
|
|
<< setw(w)
|
|
<< sField.time().timeToUserTime(sField.time().value());
|
|
|
|
forAll(values, probeI)
|
|
{
|
|
probeStream << ' ' << setw(w) << values[probeI];
|
|
}
|
|
probeStream << endl;
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::patchProbes::sampleAndWrite
|
|
(
|
|
const fieldGroup<Type>& fields
|
|
)
|
|
{
|
|
forAll(fields, fieldi)
|
|
{
|
|
if (loadFromFiles_)
|
|
{
|
|
sampleAndWrite
|
|
(
|
|
GeometricField<Type, fvPatchField, volMesh>
|
|
(
|
|
IOobject
|
|
(
|
|
fields[fieldi],
|
|
mesh_.time().timeName(),
|
|
mesh_,
|
|
IOobject::MUST_READ,
|
|
IOobject::NO_WRITE,
|
|
false
|
|
),
|
|
mesh_
|
|
)
|
|
);
|
|
}
|
|
else
|
|
{
|
|
objectRegistry::const_iterator iter = mesh_.find(fields[fieldi]);
|
|
|
|
if
|
|
(
|
|
iter != objectRegistry::end()
|
|
&& iter()->type()
|
|
== GeometricField<Type, fvPatchField, volMesh>::typeName
|
|
)
|
|
{
|
|
sampleAndWrite
|
|
(
|
|
mesh_.lookupObject
|
|
<GeometricField<Type, fvPatchField, volMesh>>
|
|
(
|
|
fields[fieldi]
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::patchProbes::sampleAndWriteSurfaceFields
|
|
(
|
|
const fieldGroup<Type>& fields
|
|
)
|
|
{
|
|
forAll(fields, fieldi)
|
|
{
|
|
if (loadFromFiles_)
|
|
{
|
|
sampleAndWrite
|
|
(
|
|
GeometricField<Type, fvsPatchField, surfaceMesh>
|
|
(
|
|
IOobject
|
|
(
|
|
fields[fieldi],
|
|
mesh_.time().timeName(),
|
|
mesh_,
|
|
IOobject::MUST_READ,
|
|
IOobject::NO_WRITE,
|
|
false
|
|
),
|
|
mesh_
|
|
)
|
|
);
|
|
}
|
|
else
|
|
{
|
|
objectRegistry::const_iterator iter = mesh_.find(fields[fieldi]);
|
|
|
|
if
|
|
(
|
|
iter != objectRegistry::end()
|
|
&& iter()->type()
|
|
== GeometricField<Type, fvsPatchField, surfaceMesh>::typeName
|
|
)
|
|
{
|
|
sampleAndWrite
|
|
(
|
|
mesh_.lookupObject
|
|
<GeometricField<Type, fvsPatchField, surfaceMesh>>
|
|
(
|
|
fields[fieldi]
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::patchProbes::sample
|
|
(
|
|
const GeometricField<Type, fvPatchField, volMesh>& vField
|
|
) const
|
|
{
|
|
const Type unsetVal(-VGREAT*pTraits<Type>::one);
|
|
|
|
tmp<Field<Type>> tValues
|
|
(
|
|
new Field<Type>(this->size(), unsetVal)
|
|
);
|
|
|
|
Field<Type>& values = tValues.ref();
|
|
|
|
const polyBoundaryMesh& patches = mesh_.boundaryMesh();
|
|
|
|
forAll(*this, probeI)
|
|
{
|
|
label facei = elementList_[probeI];
|
|
|
|
if (facei >= 0)
|
|
{
|
|
label patchi = patches.whichPatch(facei);
|
|
label localFacei = patches[patchi].whichFace(facei);
|
|
values[probeI] = vField.boundaryField()[patchi][localFacei];
|
|
}
|
|
}
|
|
|
|
Pstream::listCombineGather(values, isNotEqOp<Type>());
|
|
Pstream::listCombineScatter(values);
|
|
|
|
return tValues;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::patchProbes::sample(const word& fieldName) const
|
|
{
|
|
return sample
|
|
(
|
|
mesh_.lookupObject<GeometricField<Type, fvPatchField, volMesh>>
|
|
(
|
|
fieldName
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::patchProbes::sample
|
|
(
|
|
const GeometricField<Type, fvsPatchField, surfaceMesh>& sField
|
|
) const
|
|
{
|
|
const Type unsetVal(-VGREAT*pTraits<Type>::one);
|
|
|
|
tmp<Field<Type>> tValues
|
|
(
|
|
new Field<Type>(this->size(), unsetVal)
|
|
);
|
|
|
|
Field<Type>& values = tValues.ref();
|
|
|
|
const polyBoundaryMesh& patches = mesh_.boundaryMesh();
|
|
|
|
forAll(*this, probeI)
|
|
{
|
|
label facei = elementList_[probeI];
|
|
|
|
if (facei >= 0)
|
|
{
|
|
label patchi = patches.whichPatch(facei);
|
|
label localFacei = patches[patchi].whichFace(facei);
|
|
values[probeI] = sField.boundaryField()[patchi][localFacei];
|
|
}
|
|
}
|
|
|
|
Pstream::listCombineGather(values, isNotEqOp<Type>());
|
|
Pstream::listCombineScatter(values);
|
|
|
|
return tValues;
|
|
}
|
|
// ************************************************************************* //
|