PSCF v1.2
Tensor.cpp
1/*
2* Util Package - C++ Utilities for Scientific Computation
3*
4* Copyright 2010 - 2017, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "Tensor.h"
9#include <util/global.h>
10
11#ifdef UTIL_MPI
12#include <util/mpi/MpiStructBuilder.h>
13#endif
14
15namespace Util
16{
17
18 // Define the Zero Tensor constant
19 const Tensor Tensor::Zero = Tensor(0.0);
20
21 // Define the Identity Tensor constant
22 const Tensor Tensor::Identity = Tensor().identity();
23
28 {
29 int nCall = 0;
30 UTIL_CHECK(nCall == 0);
31 ++nCall;
32 }
33
34 // Equality operators
35
36 #define UTIL_TENSOR_EPSILON 1.0E-8
37
38 /*
39 * Return true iff tensors t1 and t2 are equal
40 */
41 bool operator==(const Tensor& t1, const Tensor& t2)
42 {
43 for (int i = 0; i < DimensionSq; ++i) {
44 if ( fabs(t1.elem_[i] - t2.elem_[i]) > UTIL_TENSOR_EPSILON) {
45 return false;
46 }
47 }
48 return true;
49 }
50
51 /*
52 * Return true iff tensor t2 and built-in 2D array a2 are equal.
53 */
54 bool operator==(const Tensor& t1, const double a2[][Dimension])
55 {
56 for (int i = 0; i < Dimension; ++i) {
57 for (int j = 0; j < Dimension; ++j) {
58 if ( fabs(t1(i, j) - a2[i][j]) > UTIL_TENSOR_EPSILON) {
59 return false;
60 }
61 }
62 }
63 return true;
64 }
65
66 /*
67 * Return true iff a built-in 2D array and a tensor are equal.
68 */
69 bool operator==(const double a1[][Dimension], const Tensor& t2)
70 { return (t2 == a1); }
71
72 #undef UTIL_TENSOR_EPSILON
73
74 // Inequality operators
75
77 bool operator!=(const Tensor& t1, const Tensor& t2)
78 { return !(t1 == t2); }
79
81 bool operator!=(const Tensor& t1, const double a2[][Dimension])
82 { return !(t1 == a2); }
83
85 bool operator!=(const double a1[][Dimension], const Tensor& t2)
86 { return !(t2 == a1); }
87
88 /*
89 * Extract a Tensor from an istream.
90 */
91 std::istream& operator>>(std::istream& in, Tensor &tensor)
92 {
93 for (int i=0; i < DimensionSq; ++i) {
94 in >> tensor.elem_[i];
95 }
96 return in;
97 }
98
99 /*
100 * Output a Tensor to an ostream, without line breaks.
101 */
102 std::ostream& operator<<(std::ostream& out, const Tensor &tensor)
103 {
104 for (int i=0; i < DimensionSq; ++i) {
105 out.setf(std::ios::scientific);
106 out.width(Tensor::Width);
107 out.precision(Tensor::Precision);
108 out << tensor.elem_[i];
109 }
110 return out;
111 }
112
113 #ifdef UTIL_MPI
114 /*
115 * Initialize MPI Datatype.
116 */
117 MPI::Datatype MpiTraits<Tensor>::type = MPI::BYTE;
118 bool MpiTraits<Tensor>::hasType = false;
119
120 /*
121 * Commit MPI Datatype.
122 */
124 {
126 MpiStructBuilder builder;
127 Tensor tensor;
128 int i, j;
129
130 builder.setBase(&tensor);
131 for (i = 0; i < Dimension; ++i) {
132 for (j = 0; j < Dimension; ++j) {
133 builder.addMember(&tensor(i, j), MPI::DOUBLE);
134 }
135 }
138 }
139 }
140 #endif
141
142}
A MpiStructBuilder objects is used to create an MPI Struct datatype.
void addMember(void *memberAddress, MPI::Datatype type, int count=1)
Add a new member variable to the type map.
void setBase(void *objectAddress)
Set address of an class instance.
void commit(MPI::Datatype &newType)
Build and commit a user-defined MPI Struct datatype.
Default MpiTraits class.
Definition MpiTraits.h:44
A Tensor represents a Cartesian tensor.
Definition Tensor.h:33
static const Tensor Zero
Constant Tensor with all zero elements.
Definition Tensor.h:297
static void initStatic()
Call to guarantee initialization of Zero and Identity tensors.
Definition Tensor.cpp:27
Tensor & identity()
Set this to the identity (unity) tensor.
Definition Tensor.h:453
static void commitMpiType()
Commit MPI datatype MpiTraits<Tensor>::type.
Definition Tensor.cpp:123
static const Tensor Identity
Constant idenity Tensor (diagonal diagonal elements all 1).
Definition Tensor.h:302
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
const int Dimension
Dimensionality of space.
Definition Dimension.h:19
const int DimensionSq
Square of Dimensionality of space.
Definition Dimension.h:26
Utility classes for scientific computation.
bool operator==(Polynomial< T > const &a, Polynomial< T > const &b)
Equality operator for polynomials.
Definition Polynomial.h:675
std::istream & operator>>(std::istream &in, Pair< Data > &pair)
Input a Pair from an istream.
Definition Pair.h:44
std::ostream & operator<<(std::ostream &out, const Pair< Data > &pair)
Output a Pair to an ostream, without line breaks.
Definition Pair.h:57
bool operator!=(Polynomial< T > const &a, Polynomial< T > const &b)
Inequality operator for polynomials.
Definition Polynomial.h:694