படிமம்:Low temperature thermocouples reference functions.svg
testwiki இலிருந்து
Jump to navigation
Jump to search
Size of this PNG preview of this SVG file: 270 × 270 படப்புள்ளிகள். மற்ற பிரிதிறன்கள்: 240 × 240 படப்புள்ளிகள் | 480 × 480 படப்புள்ளிகள் | 768 × 768 படப்புள்ளிகள் | 1,024 × 1,024 படப்புள்ளிகள் | 2,048 × 2,048 படப்புள்ளிகள் .
மூலக்கோப்பு (SVG கோப்பு, பெயரளவில் 270 × 270 பிக்சல்கள், கோப்பு அளவு: 41 KB)
Wikimedia Commons இலுள்ள இக்கோப்பு வேறு திட்டங்களிலும் பயன்படுத்தப்படலாம். இதனைப் கோப்பின் விவரப்பக்கம் பற்றிய விபரம் கீழே காட்டப்படுகிறது.
சுருக்கம்
| விளக்கம்Low temperature thermocouples reference functions.svg |
English: Type E,J,K,N,T thermocouples' reference functions, using NIST ITS-90 calibration curves.
Русский: Градуировочные кривые термопар типов E, J, K, N, T по стандарту NIST ITS-90 |
| நாள் | |
| மூலம் | சொந்த முயற்சி |
| ஆசிரியர் | Nanite |
| ஒத்தக்கோப்பு |
|
| SVG genesis InfoField |
The file size of this SVG image may be abnormally large because most or all of its text has been converted to paths rather than using the more conventional
<text> element. Unless rendering the text of the SVG file produces an image with text that is incurably unreadable due to technical limitations, it is highly recommended to change the paths back to text. Doing so will ease the process of localizing this image to other languages and is likely to reduce the file size in a significant scale. Other SVGs containing path-based text can be found at Category:Path text SVG. For more information, see SVG: Fonts and Preparing images for upload: Text.беларуская (тарашкевіца) ∙ Deutsch ∙ English ∙ español ∙ français ∙ magyar ∙ italiano ∙ 日本語 ∙ македонски ∙ русский ∙ slovenščina ∙ svenska ∙ ไทย ∙ Tiếng Việt ∙ 中文 ∙ 中文(中国大陆) ∙ 中文(简体) ∙ 中文(繁體) ∙ 中文(香港) ∙ 中文(新加坡) ∙ 中文(臺灣) ∙ +/− |
Source code

This media was created with Matplotlib (comprehensive library for creating static, animated, and interactive visualizations in Python)
Here is a listing of the source used to create this file.
Here is a listing of the source used to create this file.
Python source code. Requires matplotlib and thermocouples_reference package.
from pylab import *
from thermocouples_reference import *
figtype = '.svg'
saveopts = {} #'bbox_inches':'tight'} #, 'transparent':True, 'frameon':True}
def doplot(tclist,T,endlabels=True):
fig = figure()
ax = axes([0.17,0.14,0.80,0.83])
#T = linspace(lim[0],lim[1],2001)
for letter,tc in tclist:
print(tc)
emf = tc.emf_mVC(T,out_of_range="nan")
l = plot(T, emf, label=tc.type)[0]
if endlabels:
Tmax = tc.maxT_C; emfmax = tc.emf_mVC(Tmax)
text(Tmax,emfmax,tc.type, fontsize='x-small',
color=l.get_color(),va='center')
ax.tick_params(labelsize="x-small")
xlabel("Temperature $T$ (deg C)")
ylabel("$E(T)$ (mV)")
xlim(amin(T),amax(T))
fig.set_size_inches(3,3)
fig.patch.set_alpha(0)
grid()
if __name__ == '__main__':
##### Low temperature
lowTcouples = [(k, thermocouples[k]) for k in list('EJKNT')+['AuFe 0.07']]
doplot(lowTcouples,linspace(-273.015,40.,2001),endlabels=False)
ylim(-10.5,2.1)
xticks([-270,-200,-100,0,22])
# dual legend
ul = [gca().lines[i] for i in [3,5,4]]
ll = [gca().lines[i] for i in [2,1,0]]
l1 = legend(ul, [l.get_label() for l in ul],fontsize="x-small",loc='upper left')
l2 = legend(ll, [l.get_label() for l in ll],fontsize="x-small",loc='lower right')
gca().add_artist(l1)
savefig('low_t_thermocouples'+figtype,**saveopts)
##### Medium temperature
medTcouples = [(k, thermocouples[k]) for k in
list('EJKNTPM')+[
'Au/Pt',
'Pt/Pd',
]
]
doplot(medTcouples,linspace(-110.,1790.,2001))
ylim(-6,82)
xticks([0,500,1000,1500])
gca().texts[1].set_ha('center') # type J
gca().texts[1].set_va('bottom') # type J
gca().texts[2].set_ha('center') # type K
gca().texts[2].set_va('bottom') # type K
gca().texts[5].set_va('top') # type P
gca().lines[5].set_zorder(1) # type P
gca().texts[5].set_text('Type P') # type P
gca().texts[4].set_ha('right') # type T
gca().texts[4].set_va('bottom') # type T
gca().lines[4].set_zorder(9) # type T
gca().texts[-2].set_va('bottom') # AuPt
savefig('med_t_thermocouples'+figtype,**saveopts)
##### High temperature
highTcouples = [(k, thermocouples[k]) for k in
list('CDGBRS')+[
'PtMo 5/0.1',
'PtRh 40/20',
'Pt/Pd',
'IrRh 40/0',
]
]
doplot(highTcouples,linspace(-70.,2850.,2421))
ylim(-2,49)
gca().texts[1].set_ha('center') # type D
gca().texts[1].set_va('bottom') # type D
gca().texts[0].set_va('top') # type C
savefig('high_t_thermocouples'+figtype,**saveopts)
அனுமதி
இந்த ஆக்கத்தின் காப்புரிமையாளரான நான் இதனைப் பின்வரும் உரிமத்தின் கீழ் வெளியிடுகின்றேன்:
| 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
சித்தரிப்பில் உள்ளது
some value
Creative Commons CC0 License ஆங்கிலம்
source of file ஆங்கிலம்
original creation by uploader ஆங்கிலம்
7 திசம்பர் 2013
கோப்பின் வரலாறு
குறித்த நேரத்தில் இருந்த படிமத்தைப் பார்க்க அந்நேரத்தின் மீது சொடுக்கவும்.
| நாள்/நேரம் | நகம் அளவு சிறுபடம் | அளவுகள் | பயனர் | கருத்து | |
|---|---|---|---|---|---|
| தற்போதைய | 16:12, 5 சனவரி 2014 | 270 × 270 (41 KB) | wikimediacommons>Nanite | slight tweaks |
கோப்பு பயன்பாடு
பின்வரும் பக்க இணைப்புகள் இப் படிமத்துக்கு இணைக்கபட்டுள்ளது(ளன):
"https://ta.wiki.beta.math.wmflabs.org/wiki/படிமம்:Low_temperature_thermocouples_reference_functions.svg" இலிருந்து மீள்விக்கப்பட்டது