mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Creation of OpenFOAM-dev repository 15/04/2008
This commit is contained in:
@ -0,0 +1,25 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.0 |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
boxToCell
|
||||
{
|
||||
type
|
||||
{
|
||||
include "../../../mesh/manipulation/cellSet/FoamX/boxToCell.cfg";
|
||||
}
|
||||
|
||||
entries
|
||||
{
|
||||
fieldValues
|
||||
{
|
||||
type fieldValues;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,57 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.0 |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
// cellSet tool definition
|
||||
|
||||
description "Initialise fields based on parameters specified in setFieldsDict";
|
||||
|
||||
setFieldsDict
|
||||
{
|
||||
type dictionary;
|
||||
description "cellSet control dictionary";
|
||||
dictionaryPath "system";
|
||||
|
||||
types
|
||||
{
|
||||
include "$FOAMX_CONFIG/entries/fieldValues/fieldValues.cfg";
|
||||
}
|
||||
|
||||
entries
|
||||
{
|
||||
arguments
|
||||
{
|
||||
type rootCaseTimeArguments;
|
||||
}
|
||||
|
||||
defaultFieldValues
|
||||
{
|
||||
type fieldValues;
|
||||
}
|
||||
|
||||
regions
|
||||
{
|
||||
type list;
|
||||
description "list of regions";
|
||||
|
||||
elementType
|
||||
{
|
||||
regionType
|
||||
{
|
||||
type selection;
|
||||
|
||||
entries
|
||||
{
|
||||
include "boxToCellFields.cfg";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,3 @@
|
||||
setFields.C
|
||||
|
||||
EXE = $(FOAM_APPBIN)/setFields
|
||||
@ -0,0 +1,7 @@
|
||||
EXE_INC = \
|
||||
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
||||
-I$(LIB_SRC)/meshTools/lnInclude
|
||||
|
||||
EXE_LIBS = \
|
||||
-lfiniteVolume \
|
||||
-lmeshTools
|
||||
256
applications/utilities/preProcessing/setFields/setFields.C
Normal file
256
applications/utilities/preProcessing/setFields/setFields.C
Normal file
@ -0,0 +1,256 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 1991-2007 OpenCFD Ltd.
|
||||
\\/ 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 2 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, write to the Free Software Foundation,
|
||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Description
|
||||
Selects a cell set through a dictionary.
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#include "argList.H"
|
||||
#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
|
||||
)
|
||||
{
|
||||
word fieldName(fieldValueStream);
|
||||
|
||||
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);
|
||||
|
||||
typename GeoField::value_type value
|
||||
(
|
||||
static_cast<const typename GeoField::value_type&>
|
||||
(
|
||||
pTraits<typename GeoField::value_type>(fieldValueStream)
|
||||
)
|
||||
);
|
||||
|
||||
if (selectedCells.size() == field.size())
|
||||
{
|
||||
field.internalField() = value;
|
||||
}
|
||||
else
|
||||
{
|
||||
forAll(selectedCells, celli)
|
||||
{
|
||||
field[selectedCells[celli]] = value;
|
||||
}
|
||||
}
|
||||
|
||||
forAll(field.boundaryField(), patchi)
|
||||
{
|
||||
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 "addTimeOptions.H"
|
||||
# include "setRootCase.H"
|
||||
|
||||
# include "createTime.H"
|
||||
|
||||
// Get times list
|
||||
instantList Times = runTime.times();
|
||||
|
||||
// set startTime and endTime depending on -time and -latestTime options
|
||||
# include "checkTimeOptions.H"
|
||||
|
||||
runTime.setTime(Times[startTime], startTime);
|
||||
|
||||
# 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"));
|
||||
|
||||
forAll(regions, regioni)
|
||||
{
|
||||
const entry& region = regions[regioni];
|
||||
|
||||
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())
|
||||
);
|
||||
}
|
||||
|
||||
Info << nl << "End" << endl;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
45
applications/utilities/preProcessing/setFields/setFieldsDict
Normal file
45
applications/utilities/preProcessing/setFields/setFieldsDict
Normal file
@ -0,0 +1,45 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.0 |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
|
||||
root "";
|
||||
case "";
|
||||
instance "system";
|
||||
local "";
|
||||
|
||||
class dictionary;
|
||||
object setFieldsDict;
|
||||
}
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
defaultFieldValues
|
||||
(
|
||||
volScalarFieldValue gamma 0
|
||||
volVectorFieldValue U (0 0 0)
|
||||
);
|
||||
|
||||
regions
|
||||
(
|
||||
boxToCell
|
||||
{
|
||||
box (0 0 -1) (0.1461 0.292 1);
|
||||
|
||||
fieldValues
|
||||
(
|
||||
volScalarFieldValue gamma 1
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user