Archivo:Mplwp earth-magnetic-field.svg

Ver la imagen en su resolución original((Imagen SVG, nominalmente 600 × 400 pixels, tamaño de archivo: 39 kB))

Resumen

Descripción
English: Plot of the earth's magnetic field components, in the approximation of an ideal dipole field. The three plot lines show the total field strength (blue), radial (vertical) field component (magenta) and the horizontal (south to north) field component (yellow). Field strengths are given in microteslas and the geographic latitude is given in degrees. The field strength reaches up to around 60 microteslas at the poles. At the equator, the field is purely horizontal. At the poles the field is purely vertical with twice the modulus than at the equator. The absolute value of the two orthogonal components is:
Fecha
Fuente Trabajo propio
Autor Geek3
SVG desarrollo
InfoField
W3C grn 
El código fuente de esta imagen SVG es válido.
Mplwp logo 
Este gráfico vectorial fue creado con mplwp, the Matplotlib extension for Wikipedia plots
Código fuente
InfoField

mplwp source code

The plot was generated with mplwp 1.8
#!/usr/bin/python
# -*- coding: utf8 -*-

import matplotlib.pyplot as plt
import matplotlib as mpl
import numpy as np
from math import *

code_website = 'https://commons.wikimedia.org/wiki/User:Geek3/mplwp'
try:
    import mplwp
except ImportError, er:
    print 'ImportError:', er
    print 'You need to download mplwp.py from', code_website
    exit(1)


name = 'mplwp_earth-magnetic-field.svg'
fig = mplwp.fig_standard(mpl)

xlim = -90, 90; fig.gca().set_xlim(xlim)
ylim = -65, 65; fig.gca().set_ylim(ylim)
fig.gca().xaxis.set_major_locator(mpl.ticker.MultipleLocator(30))
mplwp.mark_axeszero(fig.gca())

# add degrees to xaxis labels
def flabel(x, i):
    return u'{}\u00B0'.format(int(x)).replace('-', u'\u2212')
fig.gca().xaxis.set_major_formatter(mpl.ticker.FuncFormatter(flabel))

m = 7.746e22 # earth's magnetic moment
R = 6.368e6 # earth's radius
mu0 = 4 * pi * 1e-7

def Br(lat):
    return mu0 / (4*pi) * m / R**3 * 2 * -np.sin(lat)

def Bphi(lat):
    return mu0 / (4*pi) * m / R**3 * np.cos(lat)

def Babs(lat):
    return mu0 / (4*pi) * m / R**3 * np.sqrt(1. + 3. * np.sin(lat)**2)

latitudes = np.linspace(-pi/2, pi/2, 5001)
Br_array = Br(latitudes)
Bphi_array = Bphi(latitudes)
Babs_array = Babs(latitudes)

plt.plot(np.degrees(latitudes), 1e6 * Babs_array, label=r'$\vert B\vert$', zorder=-1)
plt.plot(np.degrees(latitudes), 1e6 * Br_array, label=r'$B_r$', zorder=-2)
plt.plot(np.degrees(latitudes), 1e6 * Bphi_array, label=r'$B_\varphi$', zorder=-3)

mplwp.set_bordersize(fig, 70.5, 18.5, 18.5, 48.5)
plt.xlabel(r'$latitude$')
plt.ylabel(r'$B\ [\mathrm{\mu T}]$')
plt.legend(loc='lower left')
plt.savefig(name)
mplwp.postprocess(name)

Licencia

Yo, el titular de los derechos de autor de esta obra, la publico en los términos de la siguiente licencia:
w:es:Creative Commons
atribución compartir igual
Este archivo está disponible bajo la licencia Creative Commons Attribution-Share Alike 4.0 International.
Eres libre:
  • de compartir – de copiar, distribuir y transmitir el trabajo
  • de remezclar – de adaptar el trabajo
Bajo las siguientes condiciones:
  • atribución – Debes otorgar el crédito correspondiente, proporcionar un enlace a la licencia e indicar si realizaste algún cambio. Puedes hacerlo de cualquier manera razonable pero no de manera que sugiera que el licenciante te respalda a ti o al uso que hagas del trabajo.
  • compartir igual – En caso de mezclar, transformar o modificar este trabajo, deberás distribuir el trabajo resultante bajo la misma licencia o una compatible como el original.

Leyendas

Añade una explicación corta acerca de lo que representa este archivo
Plot of vertical and north component and absolute value of the earth's magnetic field

Elementos representados en este archivo

representa a

Historial del archivo

Haz clic sobre una fecha y hora para ver el archivo tal como apareció en ese momento.

Fecha y horaMiniaturaDimensionesUsuarioComentario
actual13:51 28 ene 2019Miniatura de la versión del 13:51 28 ene 2019600 × 400 (39 kB)Geek3User created page with UploadWizard

La siguiente página usa este archivo:

Uso global del archivo

Las wikis siguientes utilizan este archivo:

Metadatos