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 |
Licensing
Krishnavedala, the copyright holder of this work, hereby publishes it under the following licenses:
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.
| 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. |
You may select the license of your choice.
Source code

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.
Here is a listing of the source used to create this file.
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)