Skip to content

Commit

Permalink
removed the name string
Browse files Browse the repository at this point in the history
  • Loading branch information
kzqureshi committed Feb 27, 2024
1 parent f00dbab commit d40247f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions micromagnetictests/calculatortests/relaxdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@


def test_relaxdriver(calculator):
name = "relaxdriver"
p1 = (0, 0, 0)
p2 = (5e-9, 5e-9, 5e-9)
n = (5, 5, 5)
Expand All @@ -15,7 +14,7 @@ def test_relaxdriver(calculator):
region = df.Region(p1=p1, p2=p2)
mesh = df.Mesh(region=region, n=n)

system = mm.System(name=name)
system = mm.System(name="relaxdriver")
system.energy = mm.Exchange(A=A) + mm.Zeeman(H=H)
system.m = df.Field(mesh, nvdim=3, value=(0, 1, 0), norm=Ms)

Expand Down

0 comments on commit d40247f

Please sign in to comment.