BUGFIX: Seg-fault in multiphaseInterFoam. Author: Henrik Rusche. Merge: Hrvoje Jasak
[foam-extend-3.2.git] / src / lduSolvers / crMatrix / crMatrix.H
blob3a443f2adedfef9a6a79da2e1edb26c4d71bb70e
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     crMatrix
27 Description
28     Sparse matrix in compressed row format
30 Author
31     Hrvoje Jasak, Wikki Ltd.  All rights reserved
33 SourceFiles
34     crMatrix.C
36 \*---------------------------------------------------------------------------*/
38 #ifndef crMatrix_H
39 #define crMatrix_H
41 #include "crAddressing.H"
42 #include "primitiveFields.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 /*---------------------------------------------------------------------------*\
50                            Class crMatrix Declaration
51 \*---------------------------------------------------------------------------*/
53 class crMatrix
55     public refCount
57     // Private data
59         //- Addressing
60         crAddressing crAddr_;
62         //- Coefficients
63         scalarField coeffs_;
66 public:
68     // Constructors
70         //- Construct from addressing
71         crMatrix(const crAddressing& addr);
73         //- Construct from row and column size and row count
74         crMatrix
75         (
76             const label nRows,
77             const label nCols,
78             const labelList& count
79         );
81         //- Construct from components of addressing
82         crMatrix
83         (
84             const label nRows,
85             const label nCols,
86             const labelList& row,
87             const labelList& col
88         );
90         //- Construct as copy
91         crMatrix(const crMatrix& m);
93         //- Construct as copy of tmp<crMatrix> deleting argument
94         crMatrix(const tmp<crMatrix>& tm);
96         //- Construct from Istream
97         crMatrix(Istream&);
100     // Destructor - default
103     // Member Functions
105         // Access
107             //- Return addressing
108             const crAddressing& crAddr() const
109             {
110                 return crAddr_;
111             }
113             //- Return coefficients
114             const scalarField& coeffs() const
115             {
116                 return coeffs_;
117             }
119             //- Return coefficients to be set
120             scalarField& coeffs()
121             {
122                 return coeffs_;
123             }
125             //- Return column array to be set
126             labelList& col()
127             {
128                 return crAddr_.col();
129             }
132         // Matrix operations
134             //- Return transpose matrix
135             tmp<crMatrix> T() const;
137         // Matrix-vector operations
139             //- Calculate b += A*x
140             void dotPlus(scalarField& b, const scalarField& x) const;
143     // Member operators
145         void operator=(const crMatrix&);
146         void operator=(const tmp<crMatrix>&);
149     // IOstream Operators
151         friend Ostream& operator<<(Ostream&, const crMatrix&);
155 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
157 } // End namespace Foam
159 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
161 #endif
163 // ************************************************************************* //