As a beginner to the mumax i wanted to reproduce a paper, which is related to simulation of Barium Ferrite hysteresis loop for single domain structure, and they have done this simulation on oommf.
When i tried to reproduce the same results using Mumax i got results which are completely different from paper.
*********************************************************************************
SetCellsize(2.5e-9, 2.5e-9, 5e-9)
SetGeom(cylinder(50e-9, 5e-9)) // similar results for cylindrical and hexagonal geometry, according to their earlier study(ref.17 of paper attached)
Msat = 275e3
Aex = 2e-11
alpha = 0.1
anisU = vector(0,0,1)
Ku1 = 96e3
m = RandomMag()
relax()
Bmax := 1000e-3
Bstep := 10e-3
MinimizerStop = 1e-6
TableAdd(B_ext)
for B:=Bmax;B>=-Bmax;B-=Bstep{B_ext=vector(0,0,B);minimize();tablesave()}
for B:=-Bmax;B<=Bmax;B+=Bstep{B_ext=vector(0,0,B);minimize();tablesave()}
*********************************************************************************************
I was hoping for a rectangular hysteresis curve, since Barium Farrite have a perpendicular uni-axial anisotropy.
Attached below is the paper that i am following and screenshot of main part that i want to simulate.