Lesson 15 of 15
Meissner Effect
Meissner Effect
The Meissner effect is the expulsion of magnetic flux from the interior of a superconductor when it transitions below its critical temperature T_c. It distinguishes a superconductor from a perfect conductor.
London Penetration Depth
The magnetic field inside a superconductor decays exponentially from the surface:
The London penetration depth λ_L is:
where n_s is the superfluid density (superconducting electron density).
Critical Field (Type I)
A type-I superconductor loses superconductivity above the critical field:
Type II Superconductors
Type-II superconductors have two critical fields:
- Lower critical field H_c1 — flux vortices begin to penetrate
- Upper critical field H_c2 — superconductivity is destroyed:
where Φ₀ = h/(2e) = 2.068×10⁻¹⁵ Wb is the flux quantum and ξ is the coherence length.
Implement
def london_depth_m(n_s_m3):
# Returns London penetration depth in metres
...
def field_inside_superconductor_T(B0_T, x_m, lambda_L_m):
# Returns B(x) in Tesla
...
def critical_field_H_c_A_m(H_c0_A_m, T_K, T_c_K):
# Returns H_c(T) in A/m
...
def upper_critical_field_H_c2_A_m(xi_m):
# Returns H_c2 in A/m
...Python runtime loading...
Loading...
Click "Run" to execute your code.