processorCyclicFvsPatchField.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-2015 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 
27 
28 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
29 
30 template<class Type>
32 (
33  const fvPatch& p,
35 )
36 :
38  procPatch_(refCast<const processorCyclicFvPatch>(p))
39 {}
40 
41 
42 template<class Type>
44 (
45  const fvPatch& p,
47  const Field<Type>& f
48 )
49 :
51  procPatch_(refCast<const processorCyclicFvPatch>(p))
52 {}
53 
54 
55 template<class Type>
57 (
58  const fvPatch& p,
60  const dictionary& dict
61 )
62 :
64  procPatch_(refCast<const processorCyclicFvPatch>(p))
65 {
66  if (!isType<processorCyclicFvPatch>(p))
67  {
69  (
70  dict
71  ) << "patch " << this->patch().index() << " not processor type. "
72  << "Patch type = " << p.type()
73  << exit(FatalIOError);
74  }
75 }
76 
77 
78 template<class Type>
80 (
82  const fvPatch& p,
84  const fvPatchFieldMapper& mapper
85 )
86 :
87  coupledFvsPatchField<Type>(ptf, p, iF, mapper),
88  procPatch_(refCast<const processorCyclicFvPatch>(p))
89 {
90  if (!isType<processorCyclicFvPatch>(this->patch()))
91  {
93  << "Field type does not correspond to patch type for patch "
94  << this->patch().index() << "." << endl
95  << "Field type: " << typeName << endl
96  << "Patch type: " << this->patch().type()
97  << exit(FatalError);
98  }
99 }
100 
101 
102 template<class Type>
104 (
106 )
107 :
109  procPatch_(refCast<const processorCyclicFvPatch>(ptf.patch()))
110 {}
111 
112 
113 template<class Type>
115 (
118 )
119 :
121  procPatch_(refCast<const processorCyclicFvPatch>(ptf.patch()))
122 {}
123 
124 
125 // * * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * //
126 
127 template<class Type>
129 {}
130 
131 
132 // ************************************************************************* //
dictionary dict
Foam::processorCyclicFvsPatchField.
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
error FatalError
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:319
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
processorCyclicFvsPatchField(const fvPatch &, const DimensionedField< Type, surfaceMesh > &)
Construct from patch and internal field.
Pre-declare SubField and related Field type.
Definition: Field.H:57
Foam::fvPatchFieldMapper.
labelList f(nPoints)
const fvPatch & patch() const
Return patch.
Foam::coupledFvsPatchField.
#define FatalIOErrorInFunction(ios)
Report an error message using Foam::FatalIOError.
Definition: error.H:331
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
volScalarField & p
IOerror FatalIOError