summaryrefslogtreecommitdiff
path: root/2510/CH5/EX5.5/Ex5_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '2510/CH5/EX5.5/Ex5_5.sce')
-rwxr-xr-x2510/CH5/EX5.5/Ex5_5.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/2510/CH5/EX5.5/Ex5_5.sce b/2510/CH5/EX5.5/Ex5_5.sce
new file mode 100755
index 000000000..edb919af8
--- /dev/null
+++ b/2510/CH5/EX5.5/Ex5_5.sce
@@ -0,0 +1,11 @@
+//Variable declaration:
+n = 1 //Molar flow rate of gas (lbmol/h)
+R = 10.73 //Universal gas constant (ft^3.psi/lbmol.°R)
+T = 60+460 //Temperature in Rankine scale (°R)
+P = 14.7 //Absolute pressure of gas (psia)
+
+//Calculation:
+V = n*R*T/P //Volume of gas (ft^3)
+
+//Result:
+printf("The volume of given ideal gas is : %.1f ft^3",V)