graf za kemija

186 days ago by Peter_Rupnik

c=[0.02,0.04,0.06,0.08,0.10,0.12,0.14,0.16] t20=[173.37,78.912,48.853,32.88,28.042,27.140,27.002,18.83] t30=[97.19,46.182,27.315,21.00,16.95,15.106,11.784,9.62] t40=[62.62,28.537,17.746,11.83,11.16,8.423,7.268,6.12] p1=zip(t20,c) p2=zip(t30,c) p3=zip(t40,c) t1 = text("20 C",(150,0.01),color=('red')) t2 = text("30 C",(100,0.01),color=('blue')) t3 = text("40 C",(60,0.01),color=('black')) oy = text("Koncentracija [mol/L]",(-15,0.1), rotation="vertical") ox = text("Cas [s]",(150,-0.010)) 
       
       
[0.0200000000000000, 0.0400000000000000, 0.0600000000000000,
0.0800000000000000, 0.100000000000000, 0.120000000000000,
0.140000000000000, 0.160000000000000]
[0.0200000000000000, 0.0400000000000000, 0.0600000000000000, 0.0800000000000000, 0.100000000000000, 0.120000000000000, 0.140000000000000, 0.160000000000000]
list_plot(p1,color=('red'),plotjoined=1,xmin=0,ymin=0)+list_plot(p2,color=('blue'),plotjoined=1)+list_plot(p3,color=('black'),plotjoined=1,frame=0)+oy+ox