diff options
Diffstat (limited to '1808/CH1/EX1.6/Chapter1_Example6.sce')
-rw-r--r-- | 1808/CH1/EX1.6/Chapter1_Example6.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1808/CH1/EX1.6/Chapter1_Example6.sce b/1808/CH1/EX1.6/Chapter1_Example6.sce new file mode 100644 index 000000000..cf9477856 --- /dev/null +++ b/1808/CH1/EX1.6/Chapter1_Example6.sce @@ -0,0 +1,15 @@ +clc
+clear
+//INPUT DATA
+p1=780;//pressure of gas in mm
+p2=760;//pressure of gas in mm
+v1=15;//volume of gas in m^3
+T1=288;//Temperature in k
+T2=273;//Temperature in k
+
+
+//CALCULATIONS
+v2=(p1*v1*(T2/T1))/p2;//volume of gas in m^3
+
+//OUTPUT
+printf('Gas consumption at NTP is %3.3f m^3 ',v2)
|