summaryrefslogtreecommitdiff
path: root/527/CH3/EX3.12/3_12exam.sce
diff options
context:
space:
mode:
Diffstat (limited to '527/CH3/EX3.12/3_12exam.sce')
-rwxr-xr-x527/CH3/EX3.12/3_12exam.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/527/CH3/EX3.12/3_12exam.sce b/527/CH3/EX3.12/3_12exam.sce
new file mode 100755
index 000000000..820df2c91
--- /dev/null
+++ b/527/CH3/EX3.12/3_12exam.sce
@@ -0,0 +1,16 @@
+//Engineering and Chemical Thermodynamics
+// Example 3.12
+//Page no:136
+
+clear ; clc ;
+//Given
+n_dot = 250 ; // [mol/s]
+P_1 = 125 * 10^5 ; // [N/m^2]
+V_cap_1 = 5 * 10^-4 ; // [m^3/mol]
+P_2 = 8 * 10^5 ; // [N/m^2]
+
+X = 3 * P_1^0.6667 * V_cap_1 * ( P_2^(1/3) - P_1^(1/3)) ;
+W_dot_s = n_dot * X * 10^-6 ;
+
+disp(" Example: 3.12 Page no : 136") ;
+printf('\n Power generated = %.1f MW',W_dot_s) ;