File:FD e mu.svg

Summary

Description
English: Fermi-Dirac distribution for 4 different temperatures. Created using python
Deutsch: Fermi-Dirac-Verteilung für vier verschiedene Temperaturen.
Polski: Rozkład Fermiego-Diraca dla 4 różnych temperatur. Oś pozioma: Oś pionowa: Dla zachodzi
Date
Source Own work
Author Krishnavedala
Other versions
SVG development
InfoField

Licensing

Krishnavedala, the copyright holder of this work, hereby publishes it under the following licenses:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
Attribution:
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-3.0#FD%20e%20mu.svg
GNU head Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.
Category:License migration redundant#FD%20e%20mu.svgCategory:GFDL#FD%20e%20mu.svg
You may select the license of your choice.
Category:Self-published work

Source code

The logo of Python – general-purpose programming language
The logo of Python – general-purpose programming language
This media was created with Python (general-purpose programming language)Category:Images with Python source code
Here is a listing of the source used to create this file.

Deutsch  English  +/−

from matplotlib.pyplot import *
from numpy import *
from mpl_toolkits.axisartist import *

kT = lambda t: 1./t
ni = lambda x, t: 1. / ( exp((x-1.)/kT(t)) + 1. )
x = linspace(0,5,100)

fig = figure(figsize=(4,4))
ax = Subplot(fig,"111",axisbg='none')
fig.add_subplot(ax)
ax.axis["right"].set_visible(False)
ax.axis["top"].set_visible(False)
ax.plot(x,ni(x,100),'c',label=r'$kT=\mu/100$',lw=2)
ax.plot(x,ni(x,10),'b',label=r'$kT=\mu/10$',lw=2)
ax.plot(x,ni(x,2),'r',label=r'$kT=\mu/2$',lw=2)
ax.plot(x,ni(x,1),'y',label=r'$kT=\mu$',lw=2)

ax.set_ylabel(r'$\bar{n}$',fontsize=15)
ax.set_xlabel(r'$\epsilon/\mu$',fontsize=12)
ax.set_yticks(arange(0,1.2,.2))
ax.grid(True)
ax.minorticks_on()
ax.set_xlim(0,5)
ax.set_ylim(-.1,1.1)
ax.legend(frameon=False, handletextpad=0,loc='upper right',\
	labelspacing=.05)
setp(ax.get_legend().get_texts(),fontsize=12)
fig.savefig("FD_e_mu.svg",bbox_inches="tight",\
	pad_inches=.15)
Category:Fermi-Dirac distribution Category:Images with Python source code Category:SVG created with Matplotlib
Category:CC-BY-SA-3.0 Category:Fermi-Dirac distribution Category:GFDL Category:Images with Python source code Category:License migration redundant Category:SVG created with Matplotlib Category:Self-published work Category:Valid SVG created with Matplotlib