1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
# SPDX-FileCopyrightText: Copyright © DUNE Project contributors, see file LICENSE.md in module root
# SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
import tempfile,os
import dune.common
from dune.istl import blockVector, BlockVector, bcrsMatrix, BCRSMatrix, SeqJacobi, CGSolver, BuildMode
def identity(n, buildMode=BuildMode.random):
if buildMode is BuildMode.random:
mat = bcrsMatrix((n, n), n, BuildMode.random)
for i in range(n):
mat.setRowSize(i, 1)
mat.endRowSizes()
for i in range(n):
mat.setIndices(i, [i])
mat.endIndices()
for i in range(n):
mat[i, i] = 1
return mat
elif buildMode is BuildMode.implicit:
mat = bcrsMatrix((n, n), n, 0, BuildMode.implicit)
for i in range(n):
mat[i, i] = 1
mat.compress()
return mat
else:
raise Exception("buildMode " + str(buildMode) + " not supported by identity")
def isIdentity(mat):
if mat.rows != mat.cols:
return False
for i in range(mat.rows):
if not (i, i) in mat:
return False
for j in range(mat.cols):
if (i, j) in mat and mat[i, j] != (1 if i == j else 0):
return False
return True
mat = bcrsMatrix((5, 5), 5, BuildMode.random)
if mat.shape != (5, 5) or mat.nonZeroes != 5 or mat.buildMode != BuildMode.random:
raise Exception("Matrix does not return constructor arguments correctly")
mat = bcrsMatrix((5, 5), 5, BuildMode.implicit, blockType=(2,3))
if mat.shape != (5, 5) or mat.nonZeroes != 5 or mat.buildMode != BuildMode.implicit \
or mat[0,0].rows != 2 or mat[0,0].cols != 3:
raise Exception("Matrix does not return constructor arguments correctly")
Matrix = BCRSMatrix((2,3))
mat = Matrix((5, 5), 5, Matrix.BuildMode.implicit)
if mat.shape != (5, 5) or mat.nonZeroes != 5 or mat.buildMode != BuildMode.implicit \
or mat[0,0].rows != 2 or mat[0,0].cols != 3:
raise Exception("Matrix does not return constructor arguments correctly")
# the following not working yet since the matrix market exported fails
# BMatrix = BCRSMatrix(Matrix)
# mat = BMatrix((5,5), 5, BuildMode.implicit)
# generate a temporary directory to test 'store', 'load':
with tempfile.TemporaryDirectory() as tmpDir:
# store identity matrix
mat = identity(5)
if not isIdentity(mat):
raise Exception("Identity matrix not setup correctly")
mat.store(os.path.join(tmpDir,"bcrsmatrix.mm"), "matrixmarket")
for i, row in mat.enumerate:
for j, col in row.enumerate:
if i != j:
raise Exception("Wrong sparsity pattern")
if col != 1:
raise Exception("Diagonal entry is not 1")
mat = identity(5, BuildMode.implicit)
if not isIdentity(mat):
raise Exception("Identity matrix not setup correctly")
# manipulate diagonal to 2
for i in range(mat.rows):
mat[i, i] *= 2
if isIdentity(mat):
raise Exception("Matrix not manipulated")
# reload identity matrix
mat = bcrsMatrix()
mat.load(os.path.join(tmpDir,"bcrsmatrix.mm"), "matrixmarket")
if not isIdentity(mat):
raise Exception("Matrix not loaded correctly")
# store in matlab format
mat.store(os.path.join(tmpDir,"bcrsmatrix.txt"), "matlab")
# solve trivial linear system
x = blockVector(5)
for i in range(5):
x[i] = i+1 # float(i+1) # dune.common.FieldVector([i+1])
y1, y2 = blockVector(5), blockVector(5)
mat.mv(x, y1)
mat.asLinearOperator().apply(x, y2)
if (y1 - y2).two_norm > 1e-12:
raise Exception("mat.mv != mat.asLinearOperator().apply")
S = CGSolver(mat.asLinearOperator(), SeqJacobi(mat), 1e-10)
z = blockVector(5)
_, _, converged, _, _ = S(z, y1)
if not converged:
raise Exception("CGSolver has not converged")
if (z - x).two_norm > 1e-8:
raise Exception("CGSolver unable to solve identity")
vec = dune.common.FieldVector([1])
z2 = BlockVector(vec,5)
S2=CGSolver(mat.asLinearOperator(),SeqJacobi(mat),1e-10)
_, _, converged2, _, _ = S2(z2, y2)
if not converged2:
raise Exception("CGSolver has not converged")
if (z2 - x).two_norm > 1e-8:
raise Exception("CGSolver unable to solve identity")
s = "(" + ", ".join(str(v) for v in x) + ")"
str_x = "("
for i in range(0,5):
str_x = str_x + "(" + "{0:.6f}".format(x[i][0]) + "), "
str_x = str_x[:-2]
str_x = str_x +")"
if str_x != s:
raise Exception(str(x) + " = str(x) != " + s)
q=x.copy()
q+=q
for i in range(0,5):
assert(q[i][0] == 2*x[i][0])
q-=x
for i in range(0,5):
assert(q[i][0] == x[i][0])
|