fieldToCell.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "fieldToCell.H"
27 #include "polyMesh.H"
28 #include "cellSet.H"
29 #include "Time.H"
30 #include "IFstream.H"
31 #include "fieldDictionary.H"
32 
34 
35 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
36 
37 namespace Foam
38 {
39  defineTypeNameAndDebug(fieldToCell, 0);
40  addToRunTimeSelectionTable(topoSetSource, fieldToCell, word);
41  addToRunTimeSelectionTable(topoSetSource, fieldToCell, istream);
42 }
43 
44 
45 Foam::topoSetSource::addToUsageTable Foam::fieldToCell::usage_
46 (
47  fieldToCell::typeName,
48  "\n Usage: fieldToCell field min max\n\n"
49  " Select all cells with field value >= min and <= max\n\n"
50 );
51 
52 
53 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
54 
55 void Foam::fieldToCell::applyToSet
56 (
57  const topoSetSource::setAction action,
58  const scalarField& field,
59  topoSet& set
60 ) const
61 {
62  Info<< " Field min:" << min(field)
63  << " max:" << max(field) << endl;
64 
65  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
66  {
67  Info<< " Adding all cells with value of field " << fieldName_
68  << " within range " << min_ << ".." << max_ << endl;
69 
70  forAll(field, celli)
71  {
72  if (field[celli] >= min_ && field[celli] <= max_)
73  {
74  set.insert(celli);
75  }
76  }
77  }
78  else if (action == topoSetSource::DELETE)
79  {
80  Info<< " Removing all cells with value of field " << fieldName_
81  << " within range " << min_ << ".." << max_ << endl;
82 
83  forAll(field, celli)
84  {
85  if (field[celli] >= min_ && field[celli] <= max_)
86  {
87  set.erase(celli);
88  }
89  }
90  }
91 }
92 
93 
94 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
95 
96 // Construct from components
98 (
99  const polyMesh& mesh,
100  const word& fieldName,
101  const scalar min,
102  const scalar max
103 )
104 :
105  topoSetSource(mesh),
106  fieldName_(fieldName),
107  min_(min),
108  max_(max)
109 {}
110 
111 
112 // Construct from dictionary
114 (
115  const polyMesh& mesh,
116  const dictionary& dict
117 )
118 :
119  topoSetSource(mesh),
120  fieldName_(dict.lookup("field")),
121  min_(readScalar(dict.lookup("min"))),
122  max_(readScalar(dict.lookup("max")))
123 {}
124 
125 
126 // Construct from Istream
128 (
129  const polyMesh& mesh,
130  Istream& is
131 )
132 :
133  topoSetSource(mesh),
134  fieldName_(checkIs(is)),
135  min_(readScalar(checkIs(is))),
136  max_(readScalar(checkIs(is)))
137 {}
138 
139 
140 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
141 
143 {}
144 
145 
146 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
147 
148 void Foam::fieldToCell::applyToSet
149 (
150  const topoSetSource::setAction action,
151  topoSet& set
152 ) const
153 {
154 
155 // // Construct temporary fvMesh from polyMesh
156 // fvMesh fMesh
157 // (
158 // mesh(), // IOobject
159 // mesh().points(),
160 // mesh().faces(),
161 // mesh().cells()
162 // );
163 //
164 // const polyBoundaryMesh& patches = mesh().boundaryMesh();
165 //
166 // List<polyPatch*> newPatches(patches.size());
167 // forAll(patches, patchi)
168 // {
169 // const polyPatch& pp = patches[patchi];
170 //
171 // newPatches[patchi] =
172 // patches[patchi].clone
173 // (
174 // fMesh.boundaryMesh(),
175 // patchi,
176 // pp.size(),
177 // pp.start()
178 // ).ptr();
179 // }
180 // fMesh.addFvPatches(newPatches);
181 
182  // Try to load field
184  (
185  fieldName_,
186  mesh().time().timeName(),
187  mesh(),
190  false
191  );
192 
193  if (!fieldObject.headerOk())
194  {
196  << "Cannot read field " << fieldName_
197  << " from time " << mesh().time().timeName() << endl;
198  }
199  else if (fieldObject.headerClassName() == "volScalarField")
200  {
201  IFstream str(fieldObject.filePath());
202 
203  // Read dictionary
204  fieldDictionary fieldDict(fieldObject, fieldObject.headerClassName());
205 
206  scalarField internalVals("internalField", fieldDict, mesh().nCells());
207 
208  applyToSet(action, internalVals, set);
209  }
210  else if (fieldObject.headerClassName() == "volVectorField")
211  {
212  IFstream str(fieldObject.filePath());
213 
214  // Read dictionary
215  fieldDictionary fieldDict(fieldObject, fieldObject.headerClassName());
216 
217  vectorField internalVals("internalField", fieldDict, mesh().nCells());
218 
219  applyToSet(action, mag(internalVals), set);
220  }
221  else
222  {
224  << "Cannot handle fields of type " << fieldObject.headerClassName()
225  << endl;
226  }
227 }
228 
229 
230 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:428
virtual ~fieldToCell()
Destructor.
Definition: fieldToCell.C:142
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
static word timeName(const scalar, const int precision=precision_)
Return time name of given scalar time.
Definition: Time.C:715
IOobject fieldObject(fieldNames[var2field[nVar]], runTime.timeName(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE)
const word & headerClassName() const
Return name of the class name read from header.
Definition: IOobject.H:266
Macros for easy insertion into run-time selection tables.
Base class of a source for a topoSet.
Definition: topoSetSource.H:63
dynamicFvMesh & mesh
fileName filePath() const
Return complete path + object name if the file exists.
Definition: IOobject.C:299
A class for handling words, derived from string.
Definition: word.H:59
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
setAction
Enumeration defining the valid actions.
Definition: topoSetSource.H:82
word timeName
Definition: getTimeIndex.H:3
bool readScalar(const char *buf, doubleScalar &s)
Read whole of buf as a scalar. Return true if succesful.
Definition: doubleScalar.H:63
Read field as dictionary (without mesh).
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
Input from file stream.
Definition: IFstream.H:81
dimensioned< Type > min(const dimensioned< Type > &, const dimensioned< Type > &)
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:61
#define WarningInFunction
Report a warning using Foam::Warning.
Class with constructor to add usage string to table.
messageStream Info
dimensioned< scalar > mag(const dimensioned< Type > &)
bool headerOk()
Read and check header info.
Definition: IOobject.C:400
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
fieldToCell(const polyMesh &mesh, const word &fieldName, const scalar min, const scalar max)
Construct from components.
Definition: fieldToCell.C:98
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:91
Namespace for OpenFOAM.
const Time & time() const
Return the top-level database.
Definition: fvMesh.H:243
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.
Definition: dictionary.C:451