Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problems of spatially varying DMI #155

Closed
yuanshh opened this issue May 7, 2021 · 7 comments
Closed

Problems of spatially varying DMI #155

yuanshh opened this issue May 7, 2021 · 7 comments

Comments

@yuanshh
Copy link

yuanshh commented May 7, 2021

Dear fidimag team:
How can I add a spatially varying DMI in atomistic simulation ? I have tried to do this with a function like this :
image
but it returns :
image

@davidcortesortuno
Copy link
Collaborator

Hi, I think you found a bug in the code. Thanks for reporting it. In the fidimag/atomistic/dmi.py function, in the section of the code (line 133) we have

        elif self.dmi_type == 'interfacial':

            clib.compute_dmi_field_interfacial(m,
                                               self.field,
                                               self.mu_s_inv,
                                               self.energy,
                                               self.D,
                                               self.neighbours,
                                               self.n,
                                               self.n_ngbs,
                                               self.n_ngbs_dmi,
                                               self.DMI_vector
                                               )

where self.D must be self._D. I'll commit the changes

@davidcortesortuno
Copy link
Collaborator

Hey, I realized DMI doesn't accept spatially varying DMI for interfacial systems, we can implement it maybe next week. Spatial only works for bulk DMI

@yuanshh
Copy link
Author

yuanshh commented May 17, 2021

Hi, @davidcortesortuno
Thanks for your reply! I have updated the 'dmi.py' file, but unfortunately it returns another error:
图片
And when I use the bulk type, it also has an error:
图片

@davidcortesortuno
Copy link
Collaborator

Hi, I just updated the documentation and DMI classes to allow spatial dependence of the interfacial DMI. Can you build Fidimag again and test if it now works for you?

@yuanshh
Copy link
Author

yuanshh commented May 19, 2021

Hi, @davidcortesortuno
I have rebuilt Fidimag and use the function I used before. And it returns:
图片
It is the same as the error in bulk type.

@davidcortesortuno
Copy link
Collaborator

Ah, the error is because your DMI function should return 6 values, which are the DMI values for every neighbour (the neighbour list depends on the mesh you use, check the documentation for the DMI function), something like

def D_pos(r):
    x, y, z = r
    if x < L/2:
        return np.zeros(6)
    else:
        return np.ones(6.) * D

However you might also set these values at the boundary. At x = L/2 - dx where dx is a lattice unit, you might need something something like [0, D, 0, 0, 0, 0] since the neighbour at +x should have a D strength DMI. Similarly at x=L/2 + dx you might need something like [D, 0, D, D, D, D].
This is currently how we have implemented spatial varying DMI but we will think if there might be a more optimal way

@yuanshh
Copy link
Author

yuanshh commented May 19, 2021

OK,it works.
Thanks a lot for your patiently reply!

@yuanshh yuanshh closed this as completed May 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants