Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
usadelndsoc
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JYU Condensed Matter Theory
usadelndsoc
Commits
acae1d0d
Commit
acae1d0d
authored
2 years ago
by
patavirt
Browse files
Options
Downloads
Patches
Plain Diff
tests: higher accuracy gauge invariance test
parent
2fcc2ade
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pyproject.toml
+2
-1
2 additions, 1 deletion
pyproject.toml
tests/test_basic.py
+22
-9
22 additions, 9 deletions
tests/test_basic.py
with
24 additions
and
10 deletions
pyproject.toml
+
2
−
1
View file @
acae1d0d
...
@@ -29,7 +29,8 @@ dependencies = [
...
@@ -29,7 +29,8 @@ dependencies = [
[project.optional-dependencies]
[project.optional-dependencies]
test
=
[
test
=
[
'pytest >= 6'
'pytest >= 6'
,
'numdifftools >= 0.9'
,
]
]
[tool.pytest.ini_options]
[tool.pytest.ini_options]
...
...
This diff is collapsed.
Click to expand it.
tests/test_basic.py
+
22
−
9
View file @
acae1d0d
...
@@ -5,6 +5,11 @@ import numpy as np
...
@@ -5,6 +5,11 @@ import numpy as np
from
numpy.testing
import
assert_allclose
from
numpy.testing
import
assert_allclose
from
scipy.linalg
import
expm
from
scipy.linalg
import
expm
try
:
import
numdifftools
except
ImportError
:
numdifftools
=
None
import
usadelndsoc
import
usadelndsoc
import
usadelndsoc.solver
import
usadelndsoc.solver
...
@@ -157,18 +162,26 @@ def test_gauge_invariance():
...
@@ -157,18 +162,26 @@ def test_gauge_invariance():
div_J_y
=
J
[
1
]
-
J
[
3
]
div_J_y
=
J
[
1
]
-
J
[
3
]
div_J
=
div_J_x
+
div_J_y
div_J
=
div_J_x
+
div_J_y
print
(
"
->
"
,
div_J
)
# Compute source term (numdiff)
# Compute source term (numdiff)
Sa
=
s
.
_core
.
eval
(
Phi
)
def
S_s
(
ds
):
Phi2
=
Phi
.
copy
()
dW
=
expm
(
ds
*
t3
)
idW
=
np
.
linalg
.
inv
(
dW
)
Phi2
[
i
,
j
,
0
]
=
dW
[:
2
,
:
2
]
@
Phi
[
i
,
j
,
0
]
@
idW
[
2
:,
2
:]
Phi2
[
i
,
j
,
1
]
=
dW
[
2
:,
2
:]
@
Phi
[
i
,
j
,
1
]
@
idW
[:
2
,
:
2
]
return
s
.
_core
.
eval
(
Phi2
)
Phi2
=
Phi
.
copy
()
ds
=
1e-7
ds
=
1e-7
dW
=
expm
(
ds
*
t3
)
dS_ds
=
(
S_s
(
ds
)
-
S_s
(
0
))
/
ds
/
16
idW
=
np
.
linalg
.
inv
(
dW
)
Phi2
[
i
,
j
,
0
]
=
dW
[:
2
,
:
2
]
@
Phi
[
i
,
j
,
0
]
@
idW
[
2
:,
2
:]
Phi2
[
i
,
j
,
1
]
=
dW
[
2
:,
2
:]
@
Phi
[
i
,
j
,
1
]
@
idW
[:
2
,
:
2
]
Sb
=
s
.
_core
.
eval
(
Phi2
)
dS_ds
=
(
Sb
-
Sa
)
/
ds
/
16
# They must match
# They must match
assert_allclose
(
div_J
,
dS_ds
,
rtol
=
1e-6
)
assert_allclose
(
div_J
,
dS_ds
,
rtol
=
1e-6
)
if
numdifftools
is
not
None
:
# More accurate numdiff: the equality should hold to high
# numerical accuracy
D
=
numdifftools
.
Derivative
(
S_s
)
dS_ds
=
D
(
0.0
)
/
16
assert_allclose
(
div_J
,
dS_ds
,
rtol
=
1e-12
)
This diff is collapsed.
Click to expand it.
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