summaryrefslogtreecommitdiff
path: root/2705/CH5/EX5.2/Ex5_2.sce
blob: 3e80ae4083e6e64fde41b36c246e72128987cb8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
clear;
clc;
disp('Example 5.2');

//  aim : To determine 
//  the new volume

//  Given values
P1 = 300;//  original pressure,[kN/m^2]
V1 = .14;//  original volume,[m^3]

P2 = 60;//  new pressure after expansion,[kn/m^2]

//  solution
//  since temperature is constant so using boyle's law P*V=constant
V2 = V1*P1/P2;//  [m^3]

mprintf('\n The new volume after expansion is  =  %f  m^3\n',V2);

//  End