SymmetricSquareMatrixI.H
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-2013 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 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
27 
28 template<class Type>
30 :
31  Matrix<SymmetricSquareMatrix<Type>, Type>()
32 {}
33 
34 
35 template<class Type>
37 :
38  Matrix<SymmetricSquareMatrix<Type>, Type>(n, n)
39 {}
40 
41 
42 template<class Type>
44 (
45  const label m,
46  const label n
47 )
48 :
50 {
51  if (m != n)
52  {
54  (
55  "SymmetricSquareMatrix<Type>::SymmetricSquareMatrix"
56  "(const label m, const label n)"
57  ) << "m != n for constructing a symmetric square matrix"
58  << exit(FatalError);
59  }
60 }
61 
62 
63 template<class Type>
65 (
66  const label m,
67  const label n,
68  const Type& t
69 )
70 :
72 {
73  if (m != n)
74  {
76  (
77  "SymmetricSquareMatrix<Type>::SymmetricSquareMatrix"
78  "(const label m, const label n, const Type&)"
79  ) << "m != n for constructing a symmetric square matrix"
80  << exit(FatalError);
81  }
82 }
83 
84 
85 template<class Type>
87 :
88  Matrix<SymmetricSquareMatrix<Type>, Type>(is)
89 {}
90 
91 
92 template<class Type>
95 {
97  (
99  );
100 }
101 
102 
103 template<class Type>
105 (
106  const label r,
107  const label c
108 )
109 {
110  if (r > c)
111  {
112  return this->operator[](r)[c];
113  }
114  else
115  {
116  return this->operator[](c)[r];
117  }
118 }
119 
120 
121 template<class Type>
123 (
124  const label r,
125  const label c
126 ) const
127 {
128  if (r > c)
129  {
130  return this->operator[](r)[c];
131  }
132  else
133  {
134  return this->operator[](c)[r];
135  }
136 }
137 
138 
139 // ************************************************************************* //
A templated 2D matrix of objects of <T>, where the n x m matrix dimensions are known and used for sub...
Type * operator[](const label)
Return subscript-checked row of Matrix.
label n() const
Return the number of rows.
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
A templated 2D square symmetric matrix of objects of <T>, where the n x n matrix dimension is known a...
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
autoPtr< SymmetricSquareMatrix< Type > > clone() const
Clone.
SymmetricSquareMatrix()
Null constructor.
#define FatalErrorIn(functionName)
Report an error message using Foam::FatalError.
Definition: error.H:314
error FatalError
const dimensionedScalar c
Speed of light in a vacuum.
friend Ostream & operator(Ostream &, const Matrix< SymmetricSquareMatrix< Type >, Type > &)
label m() const
Return the number of columns.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:117