SymmetricSquareMatrix.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 Class
25  Foam::SymmetricSquareMatrix
26 
27 Description
28  A templated 2D square symmetric matrix of objects of <T>, where the
29  n x n matrix dimension is known and used for subscript bounds checking, etc.
30 
31 SourceFiles
32  SymmetricSquareMatrixI.H
33  SymmetricSquareMatrix.C
34 
35 \*---------------------------------------------------------------------------*/
36 
37 #ifndef SymmetricSquareMatrix_H
38 #define SymmetricSquareMatrix_H
39 
40 #include "SquareMatrix.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class SymmetricSquareMatrix Declaration
49 \*---------------------------------------------------------------------------*/
50 
51 template<class Type>
53 :
54  public Matrix<SymmetricSquareMatrix<Type>, Type>
55 {
56 
57 public:
58 
59  // Constructors
60 
61  //- Null constructor.
62  inline SymmetricSquareMatrix();
63 
64  //- Construct given number of rows/columns.
65  inline SymmetricSquareMatrix(const label n);
66 
67  //- Construct with given number of rows/columns
68  inline SymmetricSquareMatrix(const label m, const label n);
69 
70  //- Construct with given number of rows/columns
71  // and value for all elements.
72  inline SymmetricSquareMatrix(const label m, const label n, const Type&);
73 
74  //- Construct from Istream.
76 
77  //- Clone
79 
80 
81  //- Return subscript-checked row of Matrix.
82  inline Type& operator()(const label r, const label c);
83 
84  //- Return subscript-checked row of constant Matrix.
85  inline const Type& operator()(const label r, const label c) const;
86 };
87 
88 
89 // Global functions
90 
91 //- Return the LU decomposed SymmetricSquareMatrix inverse
92 template<class Type>
94 
95 //- Return the SymmetricSquareMatrix inverse
96 template<class Type>
98 
99 //- Return the LU decomposed SymmetricSquareMatrix det
100 template<class Type>
102 
103 //- Return the SymmetricSquareMatrix det
104 template<class Type>
105 scalar det(const SymmetricSquareMatrix<Type>&);
106 
107 
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 
110 } // End namespace Foam
111 
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 
114 # include "SymmetricSquareMatrixI.H"
115 
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 
118 #ifdef NoRepository
119 # include "SymmetricSquareMatrix.C"
120 #endif
121 
122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 
124 #endif
125 
126 // ************************************************************************* //
A templated 2D matrix of objects of <T>, where the n x m matrix dimensions are known and used for sub...
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
scalar detDecomposed(const SquareMatrix< Type > &, const label sign)
Return the LU decomposed SquareMatrix det.
autoPtr< SymmetricSquareMatrix< Type > > clone() const
Clone.
Namespace for OpenFOAM.
Type & operator()(const label r, const label c)
Return subscript-checked row of Matrix.
SymmetricSquareMatrix< Type > invDecomposed(const SymmetricSquareMatrix< Type > &)
Return the LU decomposed SymmetricSquareMatrix inverse.
dimensionedSphericalTensor inv(const dimensionedSphericalTensor &dt)
SymmetricSquareMatrix()
Null constructor.
dimensionedScalar det(const dimensionedSphericalTensor &dt)
const dimensionedScalar c
Speed of light in a vacuum.
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