diff options
Diffstat (limited to '2144/CH2/EX2.5/exa_2_5.sce')
-rwxr-xr-x | 2144/CH2/EX2.5/exa_2_5.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2144/CH2/EX2.5/exa_2_5.sce b/2144/CH2/EX2.5/exa_2_5.sce new file mode 100755 index 000000000..cf8ba6013 --- /dev/null +++ b/2144/CH2/EX2.5/exa_2_5.sce @@ -0,0 +1,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 : ")
|