File:Ideal gas isotherms.svg
From formulasearchengine
Jump to navigation
Jump to search
Original file (SVG file, nominally 779 × 786 pixels, file size: 2 KB)
This file is from Wikimedia Commons and may be used by other projects. The description on its file description page there is shown below.
The factual accuracy of this diagram or the file name is disputed.
Reason: see talk For usage see: {{disputed diagram|why}} |
Summary
| DescriptionIdeal gas isotherms.svg |
English: Ideal gas isotherms for one mole of the gas and at temperatures [1, 2, 4, 6, 8, 10]K using the equation . Created using python. |
| Date | |
| Source | Own work |
| Author | Krishnavedala |
| Other versions | File:Ideal gas isotherms.png |
| SVG development InfoField | |
| Source code InfoField | SVG codefrom numpy import linspace, append
from matplotlib.pyplot import *
from mpl_toolkits.axes_grid.axislines import SubplotZero
fig = figure(figsize=(4,4))
ax = SubplotZero(fig,111)
fig.add_subplot(ax)
ax.grid(True)
ax.set_ylim(-1,15)
ax.set_xlim(-1,15)
ax.set_yticklabels([])
ax.set_xticklabels([])
for direction in ["xzero","yzero"]:
ax.axis[direction].set_axisline_style("-|>")
ax.axis[direction].set_visible(True)
for direction in ["left","right","bottom","top"]:
ax.axis[direction].set_visible(False)
N, k, steps = 6.023e23, 1.38e-23, 100 # Avogadro number and Boltzmann const.
def gas_law(t):
return N*k*t
V = linspace(1./steps,15,steps)
for T in [1, 2, 4, 6, 8, 10]:
P = []
for x in V:
P = append(P,gas_law(T)/x)
ax.plot(V,P,'b')
ax.text(15,-1,r"V")
ax.text(-1,15,r"P")
fig.savefig("Ideal_gas_isotherms.svg",bbox_inches="tight",\
pad_inches=.15)
|
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
| This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication. | |
| The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.
http://creativecommons.org/publicdomain/zero/1.0/deed.enCC0Creative Commons Zero, Public Domain Dedicationfalsefalse |
Captions
Add a one-line explanation of what this file represents
Items portrayed in this file
depicts
some value
4 June 2011
31,539 byte
314 pixel
305 pixel
image/svg+xml
4fd71a753208688831d9b925a920536d3b2ff6e8
File history
Click on a date/time to view the file as it appeared at that time.
| Date/Time | Thumbnail | Dimensions | User | Comment | |
|---|---|---|---|---|---|
| current | 17:16, 26 April 2026 | 779 × 786 (2 KB) | wikimediacommons>Д.Ильин | Optimization, style |
File usage
There are no pages that use this file.
Retrieved from "https://en.formulasearchengine.com/wiki/File:Ideal_gas_isotherms.svg"