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-2017 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  typename pTraits<Type>::labelType validComponents
40  (
41  mesh_.validComponents<Type>()
42  );
43 
44  for (direction cmpt=0; cmpt<pTraits<Type>::nComponents; cmpt++)
45  {
46  if (component(validComponents, cmpt) != -1)
47  {
49  (
50  file(),
51  fieldName + word(pTraits<Type>::componentNames[cmpt])
52  );
53  }
54  }
55  }
56 }
57 
58 
59 template<class Type>
61 {
63 
64  if (obr_.foundObject<fieldType>(fieldName))
65  {
66  const Foam::dictionary& solverDict = mesh_.solverPerformanceDict();
67 
68  if (solverDict.found(fieldName))
69  {
71  (
72  solverDict.lookup(fieldName)
73  );
74 
75  const Type& residual = sp.first().initialResidual();
76 
77  typename pTraits<Type>::labelType validComponents
78  (
79  mesh_.validComponents<Type>()
80  );
81 
82  for (direction cmpt=0; cmpt<pTraits<Type>::nComponents; cmpt++)
83  {
84  if (component(validComponents, cmpt) != -1)
85  {
86  file() << token::TAB << component(residual, cmpt);
87  }
88  }
89  }
90  else
91  {
92  file() << token::TAB << "N/A";
93  }
94  }
95 }
96 
97 
98 // ************************************************************************* //
void writeResidual(const word &fieldName)
Calculate the field min/max.
bool found(const word &, bool recursive=false, bool patternMatch=true) const
Search dictionary for given keyword.
Definition: dictionary.C:431
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
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:60
const dictionary & solverPerformanceDict() const
Return the dictionary of solver performance data.
Definition: data.C:56
uint8_t direction
Definition: direction.H:45
Traits class for primitives.
Definition: pTraits.H:50
bool foundObject(const word &name) const
Is the named Type found?
Generic GeometricField class.
T & first()
Return the first element of the list.
Definition: UListI.H:114
Various functions to operate on Lists.
A class for handling words, derived from string.
Definition: word.H:59
pTraits< Type >::labelType validComponents() const
Return a labelType of valid component indicators.
const objectRegistry & obr_
Reference to the region objectRegistry.
OFstream & file()
Return access to the file (if only 1)
Definition: logFiles.C:120
void component(FieldField< Field, typename FieldField< Field, Type >::cmptType > &sf, const FieldField< Field, Type > &f, const direction d)
const fvMesh & mesh_
Reference to the fvMesh.
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.
Definition: dictionary.C:576
void writeTabbed(Ostream &os, const string &str) const
Write a tabbed string to stream.
Definition: writeFile.C:135