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
1fb53654
Commit
1fb53654
authored
2 years ago
by
patavirt
Browse files
Options
Downloads
Patches
Plain Diff
solver: set omega when evaluating currents in Result
parent
54803885
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
usadelndsoc/solver.py
+29
-9
29 additions, 9 deletions
usadelndsoc/solver.py
with
29 additions
and
9 deletions
usadelndsoc/solver.py
+
29
−
9
View file @
1fb53654
...
...
@@ -498,8 +498,8 @@ class Solver:
_log_solve
.
info
(
f
"
omega =
{
omega
}
"
)
nx
,
ny
=
self
.
shape
Phi00
=
np
.
zeros_like
(
self
.
_Phi
)
self
.
_core
.
fix_terminals
(
Phi00
)
self
.
_core
.
omega
=
omega
self
.
_core
.
fix_terminals
(
Phi00
)
self
.
_Phi
=
self
.
_solve
(
self
.
_eval_rhs
,
self
.
_eval_jac_mul
,
...
...
@@ -651,15 +651,39 @@ class Result:
G
=
self
.
G
return
s
*
np
.
linalg
.
solve
(
I
+
gt
@
g
,
I
-
gt
@
g
)
def
_get_J
(
self
,
Phi
):
return
self
.
_core
.
grad_A
(
Phi
).
transpose
(
0
,
1
,
2
,
4
,
3
)
*
(
1
/
16
)
def
_get_J
(
self
,
omega
,
Phi
):
old_omega
=
self
.
_core
.
omega
self
.
_core
.
omega
=
omega
try
:
return
self
.
_core
.
grad_A
(
Phi
).
transpose
(
0
,
1
,
2
,
4
,
3
)
*
(
1
/
16
)
finally
:
self
.
_core
.
omega
=
old_omega
def
_get_S
(
self
,
omega
,
Phi
):
old_omega
=
self
.
_core
.
omega
self
.
_core
.
omega
=
omega
try
:
return
self
.
_core
.
grad_Omega
(
Phi
).
transpose
(
0
,
1
,
3
,
2
)
finally
:
self
.
_core
.
omega
=
old_omega
@property
def
S
(
self
):
if
np
.
asarray
(
self
.
omega
).
ndim
==
0
:
return
self
.
_get_J
(
self
.
omega
,
self
.
Phi
)
else
:
return
np
.
array
(
[
self
.
_get_S
(
w
,
P
)
for
w
,
P
in
zip
(
self
.
omega
,
self
.
Phi
)],
dtype
=
complex
)
@property
def
J
(
self
):
if
np
.
asarray
(
self
.
omega
).
ndim
==
0
:
return
self
.
_get_J
(
self
.
Phi
)
return
self
.
_get_J
(
self
.
omega
,
self
.
Phi
)
else
:
return
np
.
array
([
self
.
_get_J
(
P
)
for
P
in
self
.
Phi
])
return
np
.
array
(
[
self
.
_get_J
(
w
,
P
)
for
w
,
P
in
zip
(
self
.
omega
,
self
.
Phi
)],
dtype
=
complex
)
@property
def
J_c
(
self
):
...
...
@@ -673,10 +697,6 @@ class Result:
jz
=
tr
(
self
.
J
@
np
.
kron
(
s0
,
sz
))
return
np
.
array
([
jx
,
jy
,
jz
]).
transpose
(
1
,
2
,
3
,
0
)
@property
def
S
(
self
):
return
self
.
_core
.
grad_Omega
(
self
.
Phi
).
transpose
(
0
,
1
,
3
,
2
)
class
UmfpackILU
(
LinearOperator
):
def
__init__
(
self
,
M
,
drop_tol
=
1e-4
):
...
...
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