summaryrefslogtreecommitdiff
path: root/2465/CH4/EX4.17/Example_17.sce
blob: 483dd3afd73a3145ae8ba2536c6a2fc6707a44b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Chapter-4,Example 17,Page 97
clc();
close();

q= 300   //heat energy

P= 2   // pressure in atm

V1= 10   // volume in litre

V2= 20   //volume in litre

//since 1 lit.atm = 24.25 cal

W=P*(V2-V1)*24.25     //work done 

delta_E= q-W   //from the 1st law of thermodynamics

printf('the change in internal energy is %.f cal',delta_E)