2010-05-12 13:27:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / F ield | foam-extend: Open Source CFD
|
2010-05-12 13:27:55 +00:00
|
|
|
\\ / O peration |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / A nd | For copyright notice see file Copyright
|
2010-05-12 13:27:55 +00:00
|
|
|
\\/ M anipulation |
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
License
|
2013-12-11 16:09:41 +00:00
|
|
|
This file is part of foam-extend.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend is free software: you can redistribute it and/or modify it
|
2010-05-12 13:27:55 +00:00
|
|
|
under the terms of the GNU General Public License as published by the
|
2013-12-11 16:09:41 +00:00
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
2010-05-12 13:27:55 +00:00
|
|
|
option) any later version.
|
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend 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.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2013-12-11 16:09:41 +00:00
|
|
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
Description
|
|
|
|
Selects a cell set through a dictionary.
|
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "argList.H"
|
2010-08-25 21:42:57 +00:00
|
|
|
#include "timeSelector.H"
|
2013-11-03 20:28:05 +00:00
|
|
|
#include "objectRegistry.H"
|
2010-05-12 13:27:55 +00:00
|
|
|
#include "Time.H"
|
|
|
|
#include "fvMesh.H"
|
|
|
|
#include "topoSetSource.H"
|
|
|
|
#include "cellSet.H"
|
|
|
|
#include "volFields.H"
|
|
|
|
|
|
|
|
using namespace Foam;
|
|
|
|
|
|
|
|
template<class GeoField>
|
|
|
|
void setFieldType
|
|
|
|
(
|
|
|
|
const fvMesh& mesh,
|
|
|
|
const labelList& selectedCells,
|
|
|
|
Istream& fieldValueStream
|
|
|
|
)
|
|
|
|
{
|
2011-08-03 11:00:26 +00:00
|
|
|
// Read field and value together; otherwise there will be an input error
|
|
|
|
// when a field is not found. HJ, 3/Aug/2011
|
2010-05-12 13:27:55 +00:00
|
|
|
word fieldName(fieldValueStream);
|
|
|
|
|
2011-08-03 11:00:26 +00:00
|
|
|
typename GeoField::value_type value
|
|
|
|
(
|
|
|
|
static_cast<const typename GeoField::value_type&>
|
|
|
|
(
|
|
|
|
pTraits<typename GeoField::value_type>(fieldValueStream)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
IOobject fieldHeader
|
|
|
|
(
|
|
|
|
fieldName,
|
|
|
|
mesh.time().timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::MUST_READ
|
|
|
|
);
|
|
|
|
|
|
|
|
// Check field exists
|
|
|
|
if (fieldHeader.headerOk())
|
|
|
|
{
|
|
|
|
Info<< " Setting " << fieldHeader.headerClassName()
|
|
|
|
<< " " << fieldName << endl;
|
|
|
|
|
|
|
|
GeoField field(fieldHeader, mesh);
|
|
|
|
|
|
|
|
if (selectedCells.size() == field.size())
|
|
|
|
{
|
|
|
|
field.internalField() = value;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-08-03 11:00:26 +00:00
|
|
|
forAll (selectedCells, celli)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
field[selectedCells[celli]] = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-03 11:00:26 +00:00
|
|
|
forAll (field.boundaryField(), patchi)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-25 21:42:57 +00:00
|
|
|
// Forced patch assignment. HJ, 1/Aug/2010
|
2010-05-12 13:27:55 +00:00
|
|
|
field.boundaryField()[patchi] ==
|
|
|
|
field.boundaryField()[patchi].patchInternalField();
|
|
|
|
}
|
|
|
|
|
|
|
|
field.write();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WarningIn
|
|
|
|
(
|
|
|
|
"void setFieldType"
|
|
|
|
"(const fvMesh& mesh, const labelList& selectedCells,"
|
|
|
|
"Istream& fieldValueStream)"
|
|
|
|
) << "Field " << fieldName << " not found" << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class setField
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
setField()
|
|
|
|
{}
|
|
|
|
|
|
|
|
autoPtr<setField> clone() const
|
|
|
|
{
|
|
|
|
return autoPtr<setField>(new setField());
|
|
|
|
}
|
|
|
|
|
|
|
|
class iNew
|
|
|
|
{
|
|
|
|
const fvMesh& mesh_;
|
|
|
|
const labelList& selectedCells_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
iNew(const fvMesh& mesh, const labelList& selectedCells)
|
|
|
|
:
|
|
|
|
mesh_(mesh),
|
|
|
|
selectedCells_(selectedCells)
|
|
|
|
{}
|
|
|
|
|
|
|
|
autoPtr<setField> operator()(Istream& fieldValues) const
|
|
|
|
{
|
|
|
|
word fieldType(fieldValues);
|
|
|
|
|
|
|
|
if (fieldType == "volScalarFieldValue")
|
|
|
|
{
|
|
|
|
setFieldType<volScalarField>
|
|
|
|
(mesh_, selectedCells_, fieldValues);
|
|
|
|
}
|
|
|
|
else if (fieldType == "volVectorFieldValue")
|
|
|
|
{
|
|
|
|
setFieldType<volVectorField>
|
|
|
|
(mesh_, selectedCells_, fieldValues);
|
|
|
|
}
|
|
|
|
else if (fieldType == "volSphericalTensorFieldValue")
|
|
|
|
{
|
|
|
|
setFieldType<volSphericalTensorField>
|
|
|
|
(mesh_, selectedCells_, fieldValues);
|
|
|
|
}
|
|
|
|
else if (fieldType == "volSymmTensorFieldValue")
|
|
|
|
{
|
|
|
|
setFieldType<volSymmTensorField>
|
|
|
|
(mesh_, selectedCells_, fieldValues);
|
|
|
|
}
|
|
|
|
else if (fieldType == "volTensorFieldValue")
|
|
|
|
{
|
|
|
|
setFieldType<volTensorField>
|
|
|
|
(mesh_, selectedCells_, fieldValues);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WarningIn("setField::iNew::operator()(Istream& is)")
|
|
|
|
<< "field type " << fieldType << " not currently supported"
|
|
|
|
<< endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return autoPtr<setField>(new setField());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
# include "setRootCase.H"
|
|
|
|
# include "createTime.H"
|
|
|
|
|
2011-03-22 12:29:57 +00:00
|
|
|
Info<< "Time = " << runTime.timeName() << endl;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
# include "createMesh.H"
|
|
|
|
|
|
|
|
Info<< "Reading setFieldsDict\n" << endl;
|
|
|
|
|
|
|
|
IOdictionary setFieldsDict
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"setFieldsDict",
|
|
|
|
runTime.system(),
|
|
|
|
mesh,
|
|
|
|
IOobject::MUST_READ,
|
|
|
|
IOobject::NO_WRITE
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
if (setFieldsDict.found("defaultFieldValues"))
|
|
|
|
{
|
|
|
|
Info<< "Setting field default values" << endl;
|
|
|
|
PtrList<setField> defaultFieldValues
|
|
|
|
(
|
|
|
|
setFieldsDict.lookup("defaultFieldValues"),
|
|
|
|
setField::iNew(mesh, labelList(mesh.nCells()))
|
|
|
|
);
|
|
|
|
Info<< endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Info<< "Setting field region values" << endl;
|
|
|
|
|
|
|
|
PtrList<entry> regions(setFieldsDict.lookup("regions"));
|
|
|
|
|
2011-08-03 11:00:26 +00:00
|
|
|
forAll (regions, regionI)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-08-25 21:42:57 +00:00
|
|
|
const entry& region = regions[regionI];
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
autoPtr<topoSetSource> cellSelector =
|
|
|
|
topoSetSource::New(region.keyword(), mesh, region.dict());
|
|
|
|
|
|
|
|
cellSet selectedCellSet
|
|
|
|
(
|
|
|
|
mesh,
|
|
|
|
"cellSet",
|
|
|
|
mesh.nCells()/10+1 // Reasonable size estimate.
|
|
|
|
);
|
|
|
|
|
|
|
|
cellSelector->applyToSet
|
|
|
|
(
|
|
|
|
topoSetSource::NEW,
|
|
|
|
selectedCellSet
|
|
|
|
);
|
|
|
|
|
|
|
|
PtrList<setField> fieldValues
|
|
|
|
(
|
|
|
|
region.dict().lookup("fieldValues"),
|
|
|
|
setField::iNew(mesh, selectedCellSet.toc())
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-08-25 21:42:57 +00:00
|
|
|
Info<< "\nEnd" << endl;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ************************************************************************* //
|