File:RkkY interaction.svg

Summary

Description
English: The RKKY interaction is a long-range interaction between magnetic moments in a metal. This plot shows the energy of the interaction as a function of distance. The energy oscillates with distance, decaying as 1/r^3. The oscillations are caused by the interaction of the magnetic moments with the conduction electrons in the metal. The RKKY interaction is responsible for the magnetic properties of many metals, including ferromagnetism, antiferromagnetism, and spin glass behavior.

```python import numpy as np import matplotlib.pyplot as plt

def rkkY_interaction(r):

 return (r * np.cos(5 * r) + np.sin(5 * r)) / r**4

r = np.linspace(0.1, 10, 1000) E = rkkY_interaction(r)

plt.plot(r, E) plt.xlim(0, 10) plt.ylim(-1, 1) plt.xlabel("Distance (arbitrary units)") plt.ylabel("Energy (arbitrary units)") plt.title("RKKY Interaction") plt.savefig("rkkY_interaction.svg")

```
Date
Source Own work
Author Cosmia Nebula

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-4.0#RkkY%20interaction.svgCategory:Self-published work
Category:Media needing categories as of 6 June 2024#RkkY%20interaction.svg Category:All media needing categories as of 2024#RkkY%20interaction.svg Category:Created with Matplotlib
Category:All media needing categories as of 2024 Category:CC-BY-SA-4.0 Category:Created with Matplotlib Category:Media needing categories as of 6 June 2024 Category:Self-published work