Dear collegues,
I am currently working on a project where I aim to simulate a nanoparticle consisting of both a paramagnetic and a ferromagnetic material. I was hoping to use Mumax3 for this purpose; however, I am struggling with defining the parameters for the paramagnetic material.
To simplify the problem, my initial model is as follows: I consider a 2D structure where the left side consists of a ferromagnetic material (magnetite Fe₃O₄), and the right side consists of a paramagnetic material (wüstite FeO).
To simulate this, I attempted the following approach:
----------------------------------------------------------------------------------------------------------------------------------------
Msat = 0.48e6 // Fe3O4 - saturation magnetization (A/m)
Aex = 7e-12 // - exchange stiffness (J/m)
Kc1 = -13e3 // - cubic anisotropy (J/m^3)
AnisC1 = vector(1,0,0)
AnisC2 = vector(0,1,0)
a0 := 5e-10 // unit cell 0.5 nm
ncell := 128
SetGridsize(ncell, ncell, 1)
SetCellsize(a0, a0, 2*a0)
// The paramagnetic region
DefRegion(1, Cuboid(ncell*a0, ncell*a0, 1).transl(ncell*a0/2, 0, 0))
Msat.SetRegion(1,0)
Aex.SetRegion(1,1e-12)
Kc1.SetRegion(1,0)
AnisC1.SetRegion(1, vector(0,0,0))
AnisC2.SetRegion(1, vector(0,0,0))
m = RandomMagSeed(1)
relax()
save(m)
----------------------------------------------------------------------------------------------------------------------------------------
However, the results do not seem correct, or at least I am unsure if this implementation is sufficient. Additionally, I come from a mathematical background and am still trying to understand some fundamental aspects of modeling paramagnets versus ferromagnets, particularly regarding the applicability of the Landau-Lifshitz-Gilbert (LLG) equation to paramagnetic materials.
If you have experience in this field, could you please guide me in the right direction? A reference or a link to relevant work would also be greatly appreciated, as I have not found much information on this topic.
Sincerely,
Miroslav