summaryrefslogtreecommitdiff
path: root/3831/CH18/EX18.9/Ex18_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3831/CH18/EX18.9/Ex18_9.sce')
-rw-r--r--3831/CH18/EX18.9/Ex18_9.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3831/CH18/EX18.9/Ex18_9.sce b/3831/CH18/EX18.9/Ex18_9.sce
new file mode 100644
index 000000000..161812b5e
--- /dev/null
+++ b/3831/CH18/EX18.9/Ex18_9.sce
@@ -0,0 +1,14 @@
+// Example 18_9
+clc;funcprot(0);
+// Given data
+T=20.0+273.15;// K
+
+// Calculation
+theta_v=2740;// K
+c_vbyR=(5/2)+((((theta_v/T)^2)*exp((theta_v/T)))/(exp(theta_v/T)-1)^2);
+Y=8.3143;// kJ/kg.K
+M_NO=30.01;// The molecular mass of nitrous oxide
+R_NO=Y/M_NO;// kJ/kg.K
+c_v_NO=R_NO*c_vbyR;// kJ/kg.K
+printf("\nThe value of c_v/R for nitrous oxide is %1.2f.",c_vbyR);
+