反应速率和速率常数的测定
浓度对速率影响
| Index | \(\lg \bar{v}\) | \(\lg[S_2O_8^{2-}]\) | \(\lg[I^-]\) |
|---|---|---|---|
| 1 | -4.62 | -1.10 | -1.10 |
| 2 | -4.94 | -1.39 | -1.10 |
| 3 | -5.20 | -1.69 | -1.10 |
| 4 | -4.90 | -1.10 | -1.39 |
| 5 | -5.08 | -1.10 | -1.69 |
\(m\) 计算
| Index | \(\lg \bar{v}\) | \(lg[S_2O_8^{2-}]\) |
|---|---|---|
| 1 | -4.62 | -1.10 |
| 2 | -4.94 | -1.39 |
| 3 | -5.20 | -1.69 |
f(x)=a*x+b
fit f(x) m using 3:2 via a,b
func=sprintf("y=%.2f*x+%.2f",a,b)
set terminal svg background "white"
set key left top
plot f(x) title func with lines, m using 3:2 title 'points' with points
\(n\) 计算
| Index | \(\lg \bar{v}\) | \(lg[I^-]\) |
|---|---|---|
| 1 | -4.62 | -1.10 |
| 4 | -4.90 | -1.39 |
| 5 | -5.08 | -1.69 |
g(x)=a*x+b
fit g(x) n using 3:2 via a,b
func=sprintf("y=%.2f*x+%.2f",a,b)
set terminal svg background "white"
set key left top
plot g(x) title func, n using 3:2 title 'points'
温度对速率影响
| Index | T/K | 1/T | t/s | lgk |
|---|---|---|---|---|
| 4 | 297 | 3.37e-3 | 62.97 | -2.40 |
| 6 | 304 | 3.29e-3 | 36.35 | -2.16 |
| 7 | 279 | 3.58e-3 | 206.22 | -2.92 |
| 8 | 289 | 3.46e-3 | 117.19 | -2.67 |
f(x)=a*x+b
fit f(x) Ea using 3:5 via a,b
func=sprintf("y=%.2f*x+%.2f",a,b)
set terminal svg background "white"
set key left top
plot [x=0.00325:0.0036] f(x) title func, Ea using 3:5 title 'points'