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

tests: check also grad in gauge-invariance test

parent 219ed24e
No related branches found
No related tags found
No related merge requests found
...@@ -201,3 +201,12 @@ def test_gauge_invariance(omega, use_numdifftools): ...@@ -201,3 +201,12 @@ def test_gauge_invariance(omega, use_numdifftools):
D = numdifftools.Derivative(S_s) D = numdifftools.Derivative(S_s)
dS_ds = D(0.0) / 16 dS_ds = D(0.0) / 16
assert_allclose(div_J, dS_ds, rtol=1e-12) assert_allclose(div_J, dS_ds, rtol=1e-12)
# The derivative must also match the gradient
dS_dPhi = s._core.grad(Phi).reshape(Phi.shape)
dPhi = 0 * Phi
dPhi[i, j, 0] = 2 * Phi[i, j, 0]
dPhi[i, j, 1] = -2 * Phi[i, j, 1]
dS_ds2 = (dS_dPhi * dPhi).sum() / 16
assert_allclose(div_J, dS_ds2, rtol=1e-12)
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