summaryrefslogtreecommitdiff
path: root/2417/CH6/EX6.12/Ex6_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '2417/CH6/EX6.12/Ex6_12.sce')
-rwxr-xr-x2417/CH6/EX6.12/Ex6_12.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2417/CH6/EX6.12/Ex6_12.sce b/2417/CH6/EX6.12/Ex6_12.sce
new file mode 100755
index 000000000..076503ae1
--- /dev/null
+++ b/2417/CH6/EX6.12/Ex6_12.sce
@@ -0,0 +1,14 @@
+clear;
+clc;
+printf("\t\t\tProblem Number 6.12\n\n\n");
+// Chapter 6: The Ideal Gas
+// Problem 6.12 (page no. 255)
+// Solution
+
+//The molecular weight of oxygen is 32.Therefore,
+R=1545/32; //Unit:ft*lbf/lbm*R //constant of proportionality
+J=778; //conversion factor
+cp=0.24; //Unit:Btu/lbm*R //specific heat at constant pressure
+//cp-cv=R/J
+cv=cp-(R/J); //specific heat at constant volume //unit:Btu/lbm*R
+printf("Specific heat at constant volume is %f Btu/lbm*R\n",cv);