mirror of
https://github.com/vale981/hopsflow
synced 2025-03-05 16:51:39 -05:00
correct scaling and inverse in gaussflow
This commit is contained in:
parent
172dcfbe8c
commit
601d4af5cb
1 changed files with 4 additions and 1 deletions
|
@ -266,6 +266,9 @@ class Propagator:
|
|||
.swapaxes(1, 2)
|
||||
)
|
||||
|
||||
def inv(self, t) -> np.ndarray:
|
||||
return np.linalg.inv(self.__call__(t))
|
||||
|
||||
|
||||
class Flow:
|
||||
r"""
|
||||
|
@ -306,7 +309,7 @@ class Flow:
|
|||
self.W = α.exponents
|
||||
|
||||
#: the pre-factors factors in the BCF expansion
|
||||
self.G = α.factors
|
||||
self.G = α.factors * system.η
|
||||
|
||||
#: the expectation value :math:`\langle q(0)^2\rangle`
|
||||
self.q_s_0 = 1 + 2 * n
|
||||
|
|
Loading…
Add table
Reference in a new issue