Skip to content
Snippets Groups Projects
Commit 7949a1ff authored by patavirt's avatar patavirt
Browse files

cpr_sns: fixup

parent 0a28bb92
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ Res = collections.namedtuple("Res", ["x", "y", "J", "Jx", "Jy"])
@vectorize_parallel(returns_object=True, noarray=True)
@usadelndsoc.with_log_level(logging.WARNING)
def j(T, h, phi, n=15, eta=0.1, alpha_soc=0.1, L=10, perturbative=False):
def j(T, h, phi, n=15, eta=0.1, alpha_soc=0.1, L=10):
sol = get_solver(soc_alpha=alpha_soc, eta=eta, L=L, n=n, phi=phi, h=h)
......@@ -78,13 +78,11 @@ def j(T, h, phi, n=15, eta=0.1, alpha_soc=0.1, L=10, perturbative=False):
def main():
T = 0.1
alpha_soc = 0.1
alpha_soc = 0.3
h = np.r_[0.0, 0.25, 0.5, 1.0, 1.5]
phi = np.linspace(-pi, pi, 37)
res = j(
T, h[:, None], phi[None, :], alpha_soc=alpha_soc, perturbative=False, mem=mem
)
res = j(T, h[:, None], phi[None, :], alpha_soc=alpha_soc, L=3, mem=mem)
Jx_mean = np.asarray(
[Res(*x).Jx[1:-1].sum(axis=1).mean(axis=0) for x in res.flat]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment