correction to d4edb38234db8268907f04836d49bb93461b8a88
[OpenFOAM-1.5.x.git] / src / OpenFOAM / matrices / simpleMatrix / simpleMatrix.H
blobd1c411452b887d126fafdcad26b3f7f36600f3db
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
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.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::simpleMatrix
28 Description
29     Foam::simpleMatrix
31 SourceFiles
32     simpleMatrix.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef simpleMatrix_H
37 #define simpleMatrix_H
39 #include "scalarMatrix.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 // Forward declaration of friend functions and operators
48 template<class T>
49 class simpleMatrix;
51 template<class T>
52 simpleMatrix<T> operator+
54     const simpleMatrix<T>&,
55     const simpleMatrix<T>&
58 template<class T>
59 simpleMatrix<T> operator-
61     const simpleMatrix<T>&,
62     const simpleMatrix<T>&
65 template<class T>
66 simpleMatrix<T> operator*
68     const scalar,
69     const simpleMatrix<T>&
72 template<class T>
73 Ostream& operator<<
75     Ostream&,
76     const simpleMatrix<T>&
80 /*---------------------------------------------------------------------------*\
81                            Class simpleMatrix Declaration
82 \*---------------------------------------------------------------------------*/
84 template<class T>
85 class simpleMatrix
87     public scalarMatrix
89     // Private data
91         Field<T> source_;
94 public:
96     // Constructors
98         //- Construct given size
99         simpleMatrix(const label);
101         //- Construct from components
102         simpleMatrix(const scalarMatrix&, const Field<T>&);
104         //- Construct from Istream
105         simpleMatrix(Istream&);
107         //- Construct as copy
108         simpleMatrix(const simpleMatrix<T>&);
111     // Member Functions
113         // Access
115             Field<T>& source()
116             {
117                 return source_;
118             }
120             const Field<T>& source() const
121             {
122                 return source_;
123             }
126         //- Solve the matrix using Gaussian elimination with pivoting
127         //  and return the solution
128         Field<T> solve() const;
130         //- Solve the matrix using LU decomposition with pivoting
131         //  and return the solution
132         Field<T> LUsolve() const;
135     // Member Operators
137         void operator=(const simpleMatrix<T>&);
140     // Friend Operators
142         friend simpleMatrix<T> operator+ <T>
143         (
144             const simpleMatrix<T>&,
145             const simpleMatrix<T>&
146         );
148         friend simpleMatrix<T> operator- <T>
149         (
150             const simpleMatrix<T>&,
151             const simpleMatrix<T>&
152         );
154         friend simpleMatrix<T> operator* <T>
155         (
156             const scalar,
157             const simpleMatrix<T>&
158         );
161     // Ostream Operator
163         friend Ostream& operator<< <T>
164         (
165             Ostream&,
166             const simpleMatrix<T>&
167         );
171 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
173 } // End namespace Foam
175 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
177 #ifdef NoRepository
178 #   include "simpleMatrix.C"
179 #endif
181 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
183 #endif
185 // ************************************************************************* //