پەڕگە:Speed of sound in water.svg

ناوەڕۆکی پەڕە بە زمانەکانی تر پشتگیریی لێ ناکرێت.
لە ئینسایکڵۆپیدیای ئازادی ویکیپیدیاوە

پەڕگەی سەرەکی(پەڕگەی SVG، بە ناو ٧٢٠ × ٥٤٠ پیکسەڵ، قەبارەی پەڕگە: ٣٦ کیلۆبایت)

ئەم پەڕگە لە Wikimedia Commonsەوەیە و لەوانەیە لە پڕۆژەکانی دیکەش بەکار ھاتبێت. پێناسەکەی لەسەر پەڕەی وەسفی پەڕگەکە لە خوارەوە نیشان دراوە.

کورتە

وەسف
English: Graph of the speed of sound in water vs temperature. Tabulated values (circle markers) from "The Engineering Toolbox" [1]. Smooth continuous line is a 3rd degree polynomial fit (see below) calculated on the tabulated data, accurate within 0.1%.
Español: Gráfico de la rapidez del sonido en el agua versus temperatura. Los datos tabulados (círculos) se obtuvieron de "The Egineering Toolbox" [2]. La línea continua es un ajuste polinomial de orden 3 (ver abajo) calculado a partir de los datos tabulados, la precisión es del 0.1%.

C(T) = a0 + a1T + a2T2 + a3T3 (m/s)
a0 = 1404.34
a1 = 4.579692
a2 = -0.041224
a3 = 0.000093

"""
Plot of the speed of sound versus temperature in water

The data is obtained from "The Engineering Toolbox" [1]_


References
----------
.. [1] The Engineering Toolbox. Water - Speed of Sound.
    Accesed: April 27, 2015.
    http://www.engineeringtoolbox.com/sound-speed-water-d_598.html
"""
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import rcParams
 
rcParams['font.family'] = 'serif'
rcParams['font.size'] = 16 

data = np.array([
       [    0.,  1403.],
       [    5.,  1427.],
       [   10.,  1447.],
       [   20.,  1481.],
       [   30.,  1507.],
       [   40.,  1526.],
       [   50.,  1541.],
       [   60.,  1552.],
       [   70.,  1555.],
       [   80.,  1555.],
       [   90.,  1550.],
       [  100.,  1543.]])
       
temp = data[:, 0]
vel = data[:, 1]

a3, a2, a1, a0 = np.polyfit(temp, vel, 3)
temp_fit = np.linspace(0,100)
vel_fit = a0 + a1*temp_fit + a2*temp_fit**2 + a3*temp_fit**3

plt.plot(temp, vel, 'o')
plt.plot(temp_fit, vel_fit, 'k')
plt.grid(True)
plt.xlabel(r"Temperature ($^\circ$C)")
plt.ylabel(r"Speed (m/s)")
plt.savefig("Speed_of_sound_in_water.svg")
ڕێکەوت
سەرچاوە بەرھەمی خۆم
بەرھەمھێنەر K. Krallis, SV1XV

مۆڵەتنامە

w:en:Creative Commons
دانەپاڵ
This file is licensed under the Creative Commons Attribution 1.0 Generic license.
تۆ ئازادی:
  • بۆ بڵاکردنەوە – بۆ کۆپی کردن، دابەشکردن و دەستبەدەست ناردنی
  • بۆ تێکەڵکردنەوە – بۆ سازاندنی کارەکە
بەم مەرجانەی خوارەوە:
  • دانەپاڵ – پێویستە باوەڕی گونجاو بدەیت، بەستەرێک بۆ مۆڵەتەکە دابین بکەیت و ئاماژە بەوە بکەیت کە ئایا گۆڕانکاری کراوە یان نا. دەتوانیت بە هەر شێوەیەکی گونجاو ئەوە بکەیت، بەڵام بە شێوەیەک نا کە وا دەربکەوێت کە مۆڵەتدەر پشتگیری تۆ یان بەکارهێنانەکەت بکات.

لێدوانەکان

Add a one-line explanation of what this file represents
Graph of the speed of sound in water relative to temperature

بەندەکانی لەم پەڕگەیەدا دەردەکەون

depicts ئینگلیزی

١٠ ئایاری 2014

مێژووی پەڕگە

کرتە بکە لەسەر یەکێک لە ڕێکەوت/کاتەکان بۆ بینینی پەڕگەکە بەو شێوەی لەو کاتەدا بووە.

ڕێکەوت/کاتھێمائەندازەبەکارھێنەرتێبینی
هەنووکە‏٢١:١٦، ٢٧ی نیسانی ٢٠١٥ھێما بۆ وەشانی  ‏٢١:١٦، ٢٧ی نیسانی ٢٠١٥٧٢٠ لە ٥٤٠ (٣٦ کیلۆبایت)NicoguaroSimilar formatting to other plots in the article. Added Python code (and data) for the automatic generation of the file.
‏١٥:٢٤، ٢٦ی ئابی ٢٠١٤ھێما بۆ وەشانی  ‏١٥:٢٤، ٢٦ی ئابی ٢٠١٤٧٥٧ لە ٥٩١ (٥٢ کیلۆبایت)Sv1xv{{Information |Description ={{en|1=Graph of the velocity of sound in water vs temperature. Original values and 3rd degree polynomial fit on data from "The Engineering Toolbox" [http://www.engineeringtoolbox.com/sound-speed-water-d_598.html]. Smoothe...

ئەم پەڕەیە ئەم پەڕگەیە بەکار دەھێنێت:

بەکارھێنانی سەرانسەریی پەڕگە

ئەم ویکیانەی دیکەی خوارەوەش ئەم پەڕگە بەکاردێنن:

دراوی مێتا