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
c5963429
Commit
c5963429
authored
2 years ago
by
patavirt
Browse files
Options
Downloads
Patches
Plain Diff
tests: fix gauge invariance test
parent
59180595
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_basic.py
+19
-7
19 additions, 7 deletions
tests/test_basic.py
with
19 additions
and
7 deletions
tests/test_basic.py
+
19
−
7
View file @
c5963429
...
@@ -102,7 +102,7 @@ def test_gauge_invariance():
...
@@ -102,7 +102,7 @@ def test_gauge_invariance():
nx
,
ny
,
2
,
2
nx
,
ny
,
2
,
2
)
)
s
.
omega
=
0.987
s
.
omega
=
0.987
s
.
eta
=
0.789
*
0
s
.
eta
=
0.789
s
.
D
=
1.0
s
.
D
=
1.0
s
.
Lx
=
10
s
.
Lx
=
10
s
.
Ly
=
10
s
.
Ly
=
10
...
@@ -143,20 +143,32 @@ def test_gauge_invariance():
...
@@ -143,20 +143,32 @@ def test_gauge_invariance():
# Should be invariant to numerical accuracy
# Should be invariant to numerical accuracy
assert_allclose
(
S1
,
S0
,
atol
=
1e-9
)
assert_allclose
(
S1
,
S0
,
atol
=
1e-9
)
# Current should be con
served
to numerical accuracy
# Current should
o
be
y a
con
tinuity law
to numerical accuracy
# due to the gauge symmetry
# due to the gauge symmetry
from
usadelndsoc.solver
import
Result
,
tr
from
usadelndsoc.solver
import
Result
,
tr
res
=
Result
(
s
,
s
.
omega
,
Phi2
)
# Compute current divergence
res
=
Result
(
s
,
s
.
omega
,
Phi
)
t3
=
np
.
diag
([
1
,
1
,
-
1
,
-
1
])
t3
=
np
.
diag
([
1
,
1
,
-
1
,
-
1
])
J
=
tr
(
res
.
J
[
i
,
j
]
@
t3
)
J
=
tr
(
res
.
J
[
i
,
j
]
@
t3
)
print
(
np
.
where
(
res
.
J
))
div_J_x
=
J
[
0
]
-
J
[
2
]
div_J_x
=
J
[
0
]
-
J
[
2
]
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
(
J
.
tolist
())
# Compute source term (numdiff)
assert_allclose
(
div_J
,
0
,
atol
=
1e-9
)
Sa
=
s
.
_core
.
eval
(
Phi
)
Phi2
=
Phi
.
copy
()
ds
=
1e-7
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
]
Sb
=
s
.
_core
.
eval
(
Phi2
)
dS_ds
=
(
Sb
-
Sa
)
/
ds
/
16
# They must match
assert_allclose
(
div_J
,
dS_ds
,
rtol
=
1e-6
)
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