Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dumux-repositories
dumux
Commits
f7efc3ee
Commit
f7efc3ee
authored
5 years ago
by
Timo Koch
Browse files
Options
Downloads
Patches
Plain Diff
[linear] Move scaleLinearSystem to its own header
parent
8c15f0d9
No related branches found
No related tags found
1 merge request
!1850
Restructure linearsolver parallel
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dumux/linear/CMakeLists.txt
+1
-0
1 addition, 0 deletions
dumux/linear/CMakeLists.txt
dumux/linear/amgbackend.hh
+0
-31
0 additions, 31 deletions
dumux/linear/amgbackend.hh
dumux/linear/scalelinearsystem.hh
+54
-0
54 additions, 0 deletions
dumux/linear/scalelinearsystem.hh
with
55 additions
and
31 deletions
dumux/linear/CMakeLists.txt
+
1
−
0
View file @
f7efc3ee
...
@@ -7,6 +7,7 @@ linearsolveracceptsmultitypematrix.hh
...
@@ -7,6 +7,7 @@ linearsolveracceptsmultitypematrix.hh
matrixconverter.hh
matrixconverter.hh
parallelhelpers.hh
parallelhelpers.hh
pdesolver.hh
pdesolver.hh
scalelinearsystem.hh
scotchbackend.hh
scotchbackend.hh
seqsolverbackend.hh
seqsolverbackend.hh
solver.hh
solver.hh
...
...
This diff is collapsed.
Click to expand it.
dumux/linear/amgbackend.hh
+
0
−
31
View file @
f7efc3ee
...
@@ -47,37 +47,6 @@
...
@@ -47,37 +47,6 @@
namespace
Dumux
{
namespace
Dumux
{
/*!
* \ingroup Linear
* \brief Scale the linear system by the inverse of
* its (block-)diagonal entries.
*
* \param matrix the matrix to scale
* \param rhs the right hand side vector to scale
*/
template
<
class
Matrix
,
class
Vector
>
void
scaleLinearSystem
(
Matrix
&
matrix
,
Vector
&
rhs
)
{
typename
Matrix
::
RowIterator
row
=
matrix
.
begin
();
for
(;
row
!=
matrix
.
end
();
++
row
)
{
using
size_type
=
typename
Matrix
::
size_type
;
size_type
rowIdx
=
row
.
index
();
using
MatrixBlock
=
typename
Matrix
::
block_type
;
MatrixBlock
diagonal
=
matrix
[
rowIdx
][
rowIdx
];
diagonal
.
invert
();
using
VectorBlock
=
typename
Vector
::
block_type
;
const
VectorBlock
b
=
rhs
[
rowIdx
];
diagonal
.
mv
(
b
,
rhs
[
rowIdx
]);
typename
Matrix
::
ColIterator
col
=
row
->
begin
();
for
(;
col
!=
row
->
end
();
++
col
)
col
->
leftmultiply
(
diagonal
);
}
}
/*!
/*!
* \ingroup Linear
* \ingroup Linear
* \brief A linear solver based on the ISTL AMG preconditioner
* \brief A linear solver based on the ISTL AMG preconditioner
...
...
This diff is collapsed.
Click to expand it.
dumux/linear/scalelinearsystem.hh
0 → 100644
+
54
−
0
View file @
f7efc3ee
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// vi: set et ts=4 sw=4 sts=4:
/*****************************************************************************
* See the file COPYING for full copying permissions. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*****************************************************************************/
/*!
* \file
* \ingroup Linear
* \brief Free function to scale a linear system
*/
#ifndef DUMUX_LINEAR_SCALELINEARSYSTEM_HH
#define DUMUX_LINEAR_SCALELINEARSYSTEM_HH
namespace
Dumux
{
/*!
* \ingroup Linear
* \brief Scale the linear system by the inverse of
* its (block-)diagonal entries.
*
* \param matrix the matrix to scale
* \param rhs the right hand side vector to scale
*/
template
<
class
Matrix
,
class
Vector
>
void
scaleLinearSystem
(
Matrix
&
matrix
,
Vector
&
rhs
)
{
for
(
auto
rowIt
=
matrix
.
begin
();
rowIt
!=
matrix
.
end
();
++
rowIt
)
{
auto
rowIdx
=
rowIt
.
index
();
auto
diagonal
=
matrix
[
rowIdx
][
rowIdx
];
diagonal
.
invert
();
const
auto
b
=
rhs
[
rowIdx
];
diagonal
.
mv
(
b
,
rhs
[
rowIdx
]);
for
(
auto
&
col
:
*
rowIt
)
col
.
leftmultiply
(
diagonal
);
}
}
}
// end namespace Dumux
This diff is collapsed.
Click to expand it.
Leopold Stadler
@leopold.stadler
mentioned in issue
#821 (closed)
·
5 years ago
mentioned in issue
#821 (closed)
mentioned in issue #821
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment