blob: 3917135a7aea9b4f54ebde482ff0cc1a8ae06694 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
clear;
clc;
//Example 2.3
//Caption : Program to find the energy change in a System
//Given values
P_atm=101.3;//Atm Pressure=101.3KPa
V1=0.1;//Volume1=0.1m^3
V2=0.2;//Volume2=0.2m^3
//Solution
del_V=V2-V1;
W_by=P_atm*del_V;
W_on=-W_by;
Q=0;
del_Energy=Q+W_on;//KJ
disp('KJ',del_Energy,'Energy Change')
//End
|