residualsTemplates.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) 2015-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 "residuals.H"
27 #include "volFields.H"
28 #include "ListOps.H"
29 
30 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 
32 template<class Type>
34 {
36 
37  if (obr_.foundObject<fieldType>(fieldName))
38  {
39  const fieldType& field = obr_.lookupObject<fieldType>(fieldName);
40  const fvMesh& mesh = field.mesh();
41 
42  typename pTraits<Type>::labelType validComponents
43  (
44  mesh.validComponents<Type>()
45  );
46 
47  for (direction cmpt=0; cmpt<pTraits<Type>::nComponents; cmpt++)
48  {
49  if (component(validComponents, cmpt) != -1)
50  {
52  (
53  file(),
54  fieldName + word(pTraits<Type>::componentNames[cmpt])
55  );
56  }
57  }
58  }
59 }
60 
61 
62 template<class Type>
64 {
66 
67  if (obr_.foundObject<fieldType>(fieldName))
68  {
69  const fieldType& field = obr_.lookupObject<fieldType>(fieldName);
70  const fvMesh& mesh = field.mesh();
71  const Foam::dictionary& solverDict = mesh.solverPerformanceDict();
72 
73  if (solverDict.found(fieldName))
74  {
76  (
77  solverDict.lookup(fieldName)
78  );
79 
80  const Type& residual = sp.first().initialResidual();
81 
82  typename pTraits<Type>::labelType validComponents
83  (
84  mesh.validComponents<Type>()
85  );
86 
87  for (direction cmpt=0; cmpt<pTraits<Type>::nComponents; cmpt++)
88  {
89  if (component(validComponents, cmpt) != -1)
90  {
91  file() << token::TAB << component(residual, cmpt);
92  }
93  }
94  }
95  }
96 }
97 
98 
99 // ************************************************************************* //
void writeTabbed(Ostream &os, const string &str) const
Write a tabbed string to stream.
Definition: writeFile.C:152
void writeResidual(const word &fieldName)
Calculate the field min/max.
uint8_t direction
Definition: direction.H:46
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
bool foundObject(const word &name) const
Is the named Type found?
void writeFileHeader(const word &fieldName)
Output field header information.
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bound...
Definition: HashTable.H:59
Traits class for primitives.
Definition: pTraits.H:50
Generic GeometricField class.
T & first()
Return the first element of the list.
Definition: UListI.H:114
Various functions to operate on Lists.
const Type & lookupObject(const word &name) const
Lookup and return the object of the given Type.
dynamicFvMesh & mesh
A class for handling words, derived from string.
Definition: word.H:59
bool found(const word &, bool recursive=false, bool patternMatch=true) const
Search dictionary for given keyword.
Definition: dictionary.C:306
OFstream & file()
Return access to the file (if only 1)
Definition: writeFiles.C:137
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
const objectRegistry & obr_
Reference to the region objectRegistry.
void component(FieldField< Field, typename FieldField< Field, Type >::cmptType > &sf, const FieldField< Field, Type > &f, const direction d)
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.
Definition: dictionary.C:451