vdw equation

advertisement
Force between two neutral atoms
𝑟
Force between two neutral atoms
𝑟
Force between two neutral atoms
𝑟
𝑉(𝑟)
𝑟
𝑉 → (𝑉 − 𝑏)
2
𝑈 𝑁
𝑁
∝ ⇒ 𝑈 = −𝑎′
𝑁 𝑉
𝑉
Van der Waals equation
𝑎
𝑝+ 2
𝑉
𝑉 − 𝑏 = 𝑅𝑇
Sir James Dewar FRS (1842 – 1923)
Heike Kamerlingh Onnes (1853 – 1926)
Johannes Diderik van der Waals (1837 – 1923)
Isotherms for a van der waals gas
50
clear all;
v = 19:1:200;
t=340;
b=14;
a=78435;
for i=1:20
t = t-10;
r = 8.314;
p = r*t./(v-b)-(a./v.^2);
plot(v,p)
axis([10 200 0 50]);
xlabel('v');
ylabel('p');
hold on;
end
45
40
35
25
20
15
10
5
0
20
40
60
80
100
v
120
140
160
180
200
a and b were chosen to
give a Tc of 200 K
Set a = b = 0 and you get the isotherms for an ideal gas
50
45
40
35
30
p
p
30
MATLAB code
25
20
15
10
5
0
20
40
60
80
100
v
120
140
160
180
200
At a particular temperature a vdw gas develops a point of inflexion.
The gas can be liquefied below this temperature.
50
45
40
35
p
30
25
20
15
10
5
0
20
40
60
80
100
v
120
140
160
To find the point of inflexion set:
𝜕𝑝
𝜕𝑉
=0
𝑇
and
𝜕2𝑝
𝜕𝑉 2
=0
𝑇
180
200
Which gives:
𝑝𝑐 =
𝑎
27𝑏2
𝑉𝑐 = 3𝑏
𝑇𝑐 =
8𝑎
27𝑅𝑏
Define dimensionless reduced variables
𝑝=
𝑝
𝑝𝑐
𝑉=
𝑉
𝑉𝑐
𝑇
𝑇=
𝑇𝑐
Which gives the reduced form of the vdw equation
3
𝑝+ 2
𝑉
3𝑉 − 1 = 8𝑇
Can be applied to any gas (to some extent) since its independent of a
and b (law of corresponding states)
Isotherms for the reduced form of the van der waals equation of state
MATLAB code
5
4.5
4
3.5
p
r
3
2.5
2
1.5
1
0.5
0
0.5
1
1.5
2
2.5
vr
3
3.5
4
4.5
5
clear all;
vr = 0.5:0.01:10;
tr=2;
for i=1:15
tr = tr-0.1;
pr = (8*tr./(vr.*3-1))-(3./vr.^2);
plot(vr,pr)
axis([0.1 5 0 5]);
xlabel('v_r');
ylabel('p_r');
hold on;
end
Below the critical temperature Tc, the vdw equation has a few problems
2.5
2
1.5
p
r
Negative compressibility, unphysical
1
0.5
Multivaluedness, unphysical
0
0.5
1
1.5
2
2.5
vr
3
3.5
4
4.5
5
Free energy considerations can remove these problems
𝑝+
3
𝑉2
⇒𝑝=
3𝑉 − 1 = 8𝑇
8𝑇
3𝑉 − 1
−
3
𝑉2
(1)
𝑑𝐹 = −𝑆𝑑𝑇 − 𝑝𝑑𝑉
⇒𝑝=−
(1) and (2)
𝜕𝐹
𝜕𝑉
(2)
𝑇
8
3
⇒ 𝐹 = − 𝑇 ln 3𝑉 − 1 − + 𝑓(𝑇)
3
𝑉
8
3
⇒ 𝐺 = − 𝑇 ln 3𝑉 − 1 − + 𝑝𝑉 + 𝑓(𝑇)
3
𝑉
From (1)
⇒ 𝑝𝑉 =
8𝑇 𝑉
3𝑉 − 1
−
3
𝑉
8
6
8𝑇 𝑉
⇒ 𝐺 = − 𝑇 ln 3𝑉 − 1 − +
+ 𝑓(𝑇)
3
𝑉
3𝑉 − 1
8
2
8𝑇 𝑉
⇒ 𝐺 = − 𝑇 ln 3𝑉 − 1 − +
+ 𝑓(𝑇)
9
𝑉 3 3𝑉 − 1
Plotting the gibbs function using matlab…
5
-1
4.5
-1.1
4
3.5
g-reduced
v-reduced
-1.2
3
2.5
2
-1.3
-1.4
1.5
1
-1.5
0.5
0
0.4
0.6
0.8
1
1.2
1.4
1.6
p-reduced
1.8
2
2.2
2.4
-1.6
0.4
0.6
0.8
1
1.2
1.4
1.6
p-reduced
The system will choose the minimum Gibb’s free energy
1.8
2
2.2
2.4
Maxwell construction
B2
clc; clear all; close all
Vr = linspace(0.5,3,100);
figure(1);
ylim([0 2])
xlim([0.25 3])
xlabel('V_r')
ylabel('P_r')
Tr = 0.9;
Prfunc = @(Vr) 8*Tr./(3*Vr - 1) - 3./(Vr.^2);
Pr = Prfunc(Vr);
plot(Vr,Pr)
Clear command, clears the screen; clears all objects; closes
all figures etc.
Creates values of Vr from 0.5 to 3 in steps of (3-0.5)/100
Opens a figure window
Y axis limits
X axis limits
Labels x axis
Labels y axis
Defines the van der Waals equation as a function of Tr and
Vr
Calculate Pr using the vdW equation
Plots Pr vs. Vr
if Tr < 1
Makes sure the temperature is below critical, Tr = T/Tc
Pr_b = 1.0;
Starts with a trial value for Pr at which liquid transform to gas
vdW_Pr_b = [1 -1/3*(1+8*Tr/Pr_b) 3/Pr_b -1/Pr_b];
Defines a polynomial function to calculate the values of Vr for the
trial value of Pr (Pr_b).
8𝑇𝑟
3
⇒
− 2 = 𝑃𝑟𝑏
3𝑉𝑟 − 1 𝑉𝑟
⇒
8𝑇𝑟
3
− 2 − 𝑃𝑟𝑏 = 0
3𝑉𝑟 − 1 𝑉𝑟
⇒ 8𝑇𝑟 𝑉𝑟2 − 3 3𝑉𝑟 − 1 − 𝑃𝑟𝑏 3𝑉𝑟 − 1 𝑉𝑟2 = 0
⇒ 8𝑇𝑟 𝑉𝑟2 − 9𝑉𝑟 + 3 − 3𝑃𝑟𝑏 𝑉𝑟3 + 𝑃𝑟𝑏 𝑉𝑟2 = 0
1
8𝑇𝑟 2
3
1
1+
𝑉𝑟 +
𝑉𝑟 −
=0
3
𝑃𝑟𝑏
𝑃𝑟𝑏
𝑃𝑟𝑏
The terms in the square brackets are the coefficients of the
polynomial.
⇒ 𝑉𝑟3 −
v = sort(roots(vdW_Pr_b));
Finds the roots of the polynomial and sorts them in
increasing order: v(1), v(2), and v(3)
A1 = (v(2)-v(1))*Pr_b - integral(Prfunc,v(1),v(2));
A2 = integral(Prfunc,v(2),v(3)) - (v(3)-v(2))*Pr_b;
2.5
2
1.5
1
0.5
0
0.5
1
1.5
2
2.5
3
Calculates the area enclosed by the line and the vdW
curve between v(1) and v(2) and then from v(2) and v(3).
(clearer figure later).
Z = abs(A1-A2);
while Z > 0.0001
vdW_Pr_b = [1 -1/3*(1+8*Tr/Pr_b) 3/Pr_b -1/Pr_b];
v = sort(roots(vdW_Pr_b));
Prfunc = @(Vr) 8*Tr./(3*Vr - 1) - 3./(Vr.^2);
A1 = (v(2)-v(1))*Pr_b - integral(Prfunc,v(1),v(2));
A2 = integral(Prfunc,v(2),v(3)) - (v(3)-v(2))*Pr_b;
Z = abs(A1 - A2);
Pr_b = Pr_b - 0.00001;
figure(1); hold off;
plot(Vr,Pr)
figure(1); hold on;
plot([0.5 3],[Pr_b Pr_b],'k--')
hold off;
end
Calculates the difference between the two areas
If z > 0.0001 then this loop starts
Defines the polynomial in the loop
Calculates and sorts the roots
Defines vdW equation in the loop
Calculates the areas again
Calculates the difference
Lowers the test values Pr_b by 0.00001
Chooses figure 1 window; new plot will appear, old graph is removed
Plots Pr vs. Vr
Chooses figure 1window; new plot will appear keeping the old graph
Plots the line for Pr_b vs. Vr in a black dashed line
Next time a new graph is plotted the old plots will be removed
Starts the loop again and checks if the difference between A1 and A2
(Z) > 0.0001 for the new value of Pr_b. Loop stops if Z < 0.0001 i.e
A1  A2
2.5
2
1.5
1
v(1)
v(3)
v(2)
Pr_b
0.5
0
0.5
1
(v(2)-v(1))*Pr_b
1.5
2
(v(3)-v(2))*Pr_b
2.5
3
2.5
2
1.5
1
v(1)
v(3)
v(2)
Pr_b
0.5
0
0.5
1
integral(Prfunc,v(1),v(2))
1.5
2
integral(Prfunc,v(2),v(3))
2.5
3
Calculates the area under the vdW curve from
v(1) to v(2) and from v(2) to v(3).
2.5
2
1.5
1
v(1)
v(3)
v(2)
Pr_b
0.5
0
0.5
1
1.5
2
2.5
3
Calculates the relevant area for the Maxwell
(v(2)-v(1))*Pr_b - integral(Prfunc,v(1),v(2))
constructions
integral(Prfunc,v(2),v(3)) - (v(3)-v(2))*Pr_b
end
A1
A2
Pr_b
Ends the if loop
Prints A1 and A2
Prints the value of pressure Pr_b which satisfies Maxwell’s condition.
Liquefying a gas by applying pressure
P
v
T
Liquefying a gas by applying pressure
P
v
T
Liquefying a gas by applying pressure
P
v
T
Liquefying a gas by applying pressure
P
v
T
Liquefying a gas by applying pressure
P
v
T
Liquefying a gas by applying pressure
P
v
T
Liquefying a gas by applying pressure
P
v
T
Two phase region in the vdW gas
P (bar)
http://www.youtube.com/watch?v=GEr3Nx
sPTOA
Download