blob: f9aeb4dbe64d67920d1b9df8f36dccb4f9e893f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
clear;
clc;
//Example 2.5
//Caption : Program To Find The degree of freedom for the various systems
//Formula To be Used F=2-#+N (Where,#(pi)-no of phases,N-number of chemical species)
//(a)-Liquid Water in equllibrium with its vapour.
N=1;
pi=2;
F=2-pi+N;
disp(F,'(a)Degree Of freedom is');
//(b)-Liquid Water in equllibrium with a mixture of vapour and nitrogen.
N=2;
pi=2;
F=2-pi+N;
disp(F,'(b)Degree Of freedom is');
//(c)-A liquid Soln of alcohol in water in equillibrium with its vapour
N=2;
pi=2;
F=2-pi+N;
disp(F,'(c)Degree Of freedom is');
//End
|