Loading [MathJax]/extensions/tex2jax.js

DUNE PDELab (unstable)

field.hh
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
4// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
5#ifndef DUNE_LOCALFUNCTIONS_UTILITY_FIELD_HH
6#define DUNE_LOCALFUNCTIONS_UTILITY_FIELD_HH
7
12
13namespace Dune
14{
15
16 // Unity
17 // -----
18
29 template< class Field >
30 struct Unity
31 {
32 operator Field () const
33 {
34 return Field( 1 );
35 }
36 };
37
38 template< class Field >
39 Field operator+ ( const Unity< Field > &u, const Field &f )
40 {
41 return (Field)u + f;
42 }
43
44 template< class Field >
45 Field operator- ( const Unity< Field > &u, const Field &f )
46 {
47 return (Field)u - f;
48 }
49
50 template< class Field >
51 Field operator* ( const Unity< Field > &u, const Field &f )
52 {
53 return f;
54 }
55
56 template< class Field >
57 Field operator/ ( const Unity< Field > &u, const Field &f )
58 {
59 return (Field)u / f;
60 }
61
62
63
64 // Zero
65 // ----
66
78 template< class Field >
79 struct Zero
80 {
81 operator Field () const
82 {
83 return Field( 0 );
84 }
85 static const Field epsilon()
86 {
87 return Field(1e-12);
88 }
89 };
90
91#if HAVE_GMP
92 template< unsigned int precision >
93 struct Zero< GMPField< precision > >
94 {
95 typedef GMPField< precision > Field;
96 operator Field () const
97 {
98 return Field( 0 );
99 }
100 static const Field epsilon()
101 {
102 return Field(1e-20);
103 }
104 };
105#endif
106
107 template< class Field >
108 inline bool operator == ( const Zero< Field > &, const Field &f )
109 {
110 return ( f < Zero<Field>::epsilon() && f > -Zero<Field>::epsilon() );
111 }
112
113 template< class Field >
114 inline bool operator == ( const Field &f, const Zero< Field > &z)
115 {
116 return ( z == f );
117 }
118
119 template< class Field >
120 inline bool operator< ( const Zero< Field > &, const Field &f )
121 {
122 return f > Zero<Field>::epsilon();
123 }
124
125 template< class Field >
126 inline bool operator< ( const Field &f, const Zero< Field > & )
127 {
128 return f < -Zero<Field>::epsilon();
129 }
130
131 template< class Field >
132 inline bool operator> ( const Zero< Field > &z, const Field &f )
133 {
134 return f < z;
135 }
136
137 template< class Field >
138 inline bool operator> ( const Field &f, const Zero< Field > &z )
139 {
140 return z < f;
141 }
142
143
144 // field_cast
145 // ----------
146
159 template< class F2, class F1 >
160 inline void field_cast ( const F1 &f1, F2 &f2 )
161 {
162 f2 = f1;
163 }
164
165#if HAVE_GMP
166 template< unsigned int precision >
167 inline void field_cast ( const Dune::GMPField< precision > &f1, double &f2 )
168 {
169 f2 = f1.get_d();
170 }
171
172 template< unsigned int precision >
173 inline void field_cast ( const Dune::GMPField< precision > &f1, long double &f2 )
174 {
175 f2 = f1.get_d();
176 }
177#endif
178
179 template< class F2, class F1, int dim >
181 {
182 for( int d = 0; d < dim; ++d )
183 field_cast( f1[ d ], f2[ d ] );
184 }
185 template< class F2, class F1 >
186 inline void field_cast ( const Dune::FieldVector< F1, 1 > &f1, F2 &f2 )
187 {
188 field_cast( f1[ 0 ], f2 );
189 }
190 template< class F2, class F1 >
191 inline void field_cast ( const F1 &f1, Dune::FieldVector< F2, 1 > &f2 )
192 {
193 field_cast( f1, f2[ 0 ] );
194 }
195
196 template< class F2, class F1, int rdim, int cdim >
198 {
199 for( int r = 0; r < rdim; ++r )
200 field_cast( f1[ r ], f2[ r ] );
201 }
202 template< class F2, class F1 >
204 {
205 field_cast( f1[ 0 ][ 0 ], f2[ 0 ][ 0 ] );
206 }
207 template< class F2, class F1 >
208 inline void field_cast ( const Dune::FieldMatrix< F1, 1,1 > &f1, F2 &f2 )
209 {
210 field_cast( f1[ 0 ][ 0 ], f2 );
211 }
212 template< class F2, class F1 >
213 inline void field_cast ( const F1 &f1, Dune::FieldMatrix< F2, 1,1 > &f2 )
214 {
215 field_cast( f1, f2[ 0 ][ 0 ] );
216 }
217 template< class F2, class F1 >
219 {
220 field_cast( f1[ 0 ], f2[ 0 ][ 0 ] );
221 }
222 template< class F2, class F1 >
224 {
225 field_cast( f1[ 0 ][ 0 ], f2[ 0 ] );
226 }
227
228 template< class F2, class F1 >
230 {
231 field_cast( f1[ 0 ], f2[ 0 ] );
232 }
233
234 template< class F2,class V >
235 struct FieldCast
236 {
237 typedef F2 type;
238 };
239 template< class F2,class F1,int dim >
240 struct FieldCast< F2, Dune::FieldVector<F1,dim> >
241 {
242 typedef Dune::FieldVector<F2,dim> type;
243 };
244 template< class F2,class F1,int dim1, int dim2>
245 struct FieldCast< F2, Dune::FieldMatrix<F1,dim1,dim2> >
246 {
248 };
249 template< class F2,class V >
250 inline typename FieldCast<F2,V>::type field_cast ( const V &f1 )
251 {
252 typename FieldCast<F2,V>::type f2;
253 field_cast( f1, f2 );
254 return f2;
255 }
256
257
258 // Precision
259 // this is not a perfect solution to obtain the
260 // precision of a field - definition is not clear
261 // to be removed
262 // ---------
263
264 template <class Field>
265 struct [[deprecated("This class is deprecated and will be removed after 2.11. Use std::numeric_limits<>::digits instead")]] Precision;
266
268
269 template<>
270 struct Precision< double >
271 {
272 static const unsigned int value = 64;
273 };
274
275 template<>
276 struct Precision< long double >
277 {
278 static const unsigned int value = 80;
279 };
280
281 template<>
282 struct Precision< float >
283 {
284 static const unsigned int value = 32;
285 };
286
287#if HAVE_GMP
288 template< unsigned int precision >
289 struct Precision< GMPField< precision > >
290 {
291 static const unsigned int value = precision;
292 };
293#endif
294
296
297 // ComputeField
298 // ------------
299
300 template <class Field,unsigned int sum>
301 struct ComputeField
302 {
303 typedef Field Type;
304 };
305
306#if HAVE_GMP
307 template< unsigned int precision, unsigned int sum >
308 struct ComputeField< GMPField< precision >, sum >
309 {
310 typedef GMPField<precision+sum> Type;
311 };
312#endif
313} // namespace Dune
314
315#endif // #ifndef DUNE_LOCALFUNCTIONS_UTILITY_FIELD_HH
A dense n x m matrix.
Definition: fmatrix.hh:117
vector space out of a tensor product of fields.
Definition: fvector.hh:92
Number class for high precision floating point number using the GMP library mpf_class implementation.
Definition: gmpfield.hh:34
Definition of the DUNE_NO_DEPRECATED_* macros.
Precision
which precision to use when writing out data to vtk files
Definition: common.hh:271
Implements a matrix constructed from a given type representing a field and compile-time given number ...
Implements a vector constructed from a given type representing a field and a compile-time given size.
Wrapper for the GNU multiprecision (GMP) library.
#define DUNE_NO_DEPRECATED_END
Ignore deprecation warnings (end)
Definition: deprecated.hh:38
#define DUNE_NO_DEPRECATED_BEGIN
Ignore deprecation warnings (start)
Definition: deprecated.hh:32
constexpr EnableIfInterOperable< T1, T2, bool >::type operator>(const RandomAccessIteratorFacade< T1, V1, R1, D > &lhs, const RandomAccessIteratorFacade< T2, V2, R2, D > &rhs)
Comparison operator.
Definition: iteratorfacades.hh:684
constexpr EnableIfInterOperable< T1, T2, bool >::type operator<(const RandomAccessIteratorFacade< T1, V1, R1, D > &lhs, const RandomAccessIteratorFacade< T2, V2, R2, D > &rhs)
Comparison operator.
Definition: iteratorfacades.hh:638
constexpr EnableIfInterOperable< T1, T2, bool >::type operator==(const ForwardIteratorFacade< T1, V1, R1, D > &lhs, const ForwardIteratorFacade< T2, V2, R2, D > &rhs)
Checks for equality.
Definition: iteratorfacades.hh:238
Dune namespace.
Definition: alignedallocator.hh:13
void field_cast(const F1 &f1, F2 &f2)
a helper class to cast from one field to another
Definition: field.hh:160
STL namespace.
A class representing the unit of a given Field.
Definition: field.hh:31
A class representing the zero of a given Field.
Definition: field.hh:80
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 2, 23:03, 2025)