Jump to content

File:De Almeida-Thouless line.svg

From Wikimedia Commons, the free media repository
Original file (SVG file, nominally 614 × 461 pixels, file size: 36 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary

[edit]
Description
English: Description

Matplotlib

import numpy as np
from scipy.integrate import quad
from scipy.optimize import fsolve
import matplotlib.pyplot as plt

def integrand_q(z, q, x, y):
  """Integrand for the q equation."""
  return np.exp(-0.5 * z**2) * np.tanh( (q**0.5 * z + np.exp(y)) / x )**2

def integrand_x(z, q, x, y):
  """Integrand for the x equation."""
  return np.exp(-0.5 * z**2) * 1 / np.cosh( (q**0.5 * z + np.exp(y)) / x )**4

def solve_for_y(x):
  """Solves for y given x."""

  def equations(vars):
    """Equations to be solved."""
    q, y = vars
    
    # Calculate q
    q_val, _ = quad(integrand_q, -np.inf, np.inf, args=(q, x, y))
    q_val /= np.sqrt(2 * np.pi)

    # Calculate x^2
    x2_val, _ = quad(integrand_x, -np.inf, np.inf, args=(q, x, y))
    x2_val /= np.sqrt(2 * np.pi)

    return [q - q_val, x**2 - x2_val]

  # Initial guess for q and y
  q_guess = 1.0
  log_y_guess = 0.0

  # Solve the system of equations
  sol = fsolve(equations, (q_guess, log_y_guess))
  
  return np.exp(sol[1])
xs = np.linspace(0.01, 0.95, 500)
ys = [solve_for_y(x) for x in xs]

nmin, nmax = 10, 460
plt.plot(xs[nmin:nmax], ys[nmin:nmax], color = 'black')

# plot y = sqrt(4/3 (1-x)**3)
xs_high = np.linspace(xs[nmax], 1, 200)
plt.plot(xs_high, np.sqrt(4/3 * (1-xs_high)**3), color = 'black')

# plot x = 4/(3 sqrt(2 pi)) * e^(-y^2/2)
ys_high = np.linspace(ys[nmin], 5, 200)
plt.plot(4/(3 * np.sqrt(2*np.pi)) * np.exp(-ys_high**2/2), ys_high, color = 'black')

plt.xlabel('x')
plt.ylabel('y')
plt.title('de Almeida-Thouless line')
plt.grid(True)
plt.savefig("de_Almeida_Thouless_line.svg")
plt.show()

Date
Source Own work
Author Cosmia Nebula

Licensing

[edit]
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.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current00:10, 8 June 2024Thumbnail for version as of 00:10, 8 June 2024614 × 461 (36 KB)Cosmia Nebula (talk | contribs)new xy labels
21:37, 6 June 2024Thumbnail for version as of 21:37, 6 June 2024614 × 461 (35 KB)Cosmia Nebula (talk | contribs)Uploaded while editing "Spin glass" on en.wikipedia.org

There are no pages that use this file.

File usage on other wikis

The following other wikis use this file:

Metadata