The goal of this tutorial is for all participants to familiarise themselves with running JOOMMF simulations in Jupyter notebook. The only thing you need to know for this tutorial is how to execute individual cells: this is done by pressing Shift
+ Return
.
In [1]:
import oommfc as oc
import discretisedfield as df
%matplotlib inline
We create a system object and provide:
In [2]:
system = oc.System(name="first_notebook")
Our Hamiltonian should only contain exchange, demagnetisation, and Zeeman energy terms. We will apply the external magnetic field in the $x$ direction for the purpose of this demonstration:
In [3]:
A = 1e-12 # exchange energy constant (J/m)
H = (5e6, 0, 0) # external magnetic field in x-direction (A/m)
system.hamiltonian = oc.Exchange(A=A) + oc.Demag() + oc.Zeeman(H=H)
The dynamics of the system is governed by the LLG equation containing precession and damping terms:
In [4]:
gamma = 2.211e5 # gamma parameter (m/As)
alpha = 0.2 # Gilbert damping
system.dynamics = oc.Precession(gamma=gamma) + oc.Damping(alpha=alpha)
We initialise the system in positive $y$ direction, i.e. (0, 1, 0), which is different from the equlibrium state we expect for the external Zeeman field applied in $x$ direction:
In [5]:
L = 100e-9 # cubic sample edge length (m)
d = 5e-9 # discretisation cell size (m)
mesh = oc.Mesh(p1=(0, 0, 0), p2=(L, L, L), cell=(d, d, d))
Ms = 8e6 # saturation magnetisation (A/m)
system.m = df.Field(mesh, value=(0, 1, 0), norm=Ms)
We can check the characteristics of the system we defined by asking objects to represent themselves:
In [6]:
mesh
In [7]:
system.hamiltonian
Out[7]:
In [8]:
system.dynamics
Out[8]:
We can also visualise the current magnetisation field:
In [9]:
system.m.plot_slice("z", 50e-9, xsize=6);
After the system object is created, we can minimise its energy (relax it) using the Minimisation Driver (MinDriver
).
In [10]:
md = oc.MinDriver()
md.drive(system)
The system is now relaxed, and we can plot its slice and compute its average magnetisation.
In [11]:
system.m.plot_slice("z", 50e-9, xsize=6);
In [12]:
system.m.average
Out[12]:
We can see that the magnetisation is aligned along the $x$ direction, as expected having in mind we applied the external magnetic field in that direction.