summaryrefslogtreecommitdiff
path: root/2144/CH2/EX2.5/exa_2_5.sce
blob: cf8ba6013bb0888a0e3aec827ac80443ba4f61cf (plain)
1
2
3
4
5
6
7
8
9
10
11
// Example 2.5
clc;
clear;
close;
// Given data
V1= 2;// in m^3
T1= 30+273;// in K
T2= 230+273;// in K
// V1/T1 = V0/T0 = V2/T2
V2= V1*T2/T1;// in m^3
disp(V2,"The final volume in m^3 is : ")