summaryrefslogtreecommitdiff
path: root/3831/CH8/EX8.15/Ex8_15.sce
diff options
context:
space:
mode:
Diffstat (limited to '3831/CH8/EX8.15/Ex8_15.sce')
-rw-r--r--3831/CH8/EX8.15/Ex8_15.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3831/CH8/EX8.15/Ex8_15.sce b/3831/CH8/EX8.15/Ex8_15.sce
new file mode 100644
index 000000000..306df8d1f
--- /dev/null
+++ b/3831/CH8/EX8.15/Ex8_15.sce
@@ -0,0 +1,14 @@
+// Example 8_15
+clc;funcprot(0);
+// Given data
+m_a=3.00;// g
+T_a=10.0;// °C
+m_b=200;// g
+T_b=80.0;// °C
+c=4186;// J/kg.K
+
+// Solution
+// Let a=cream,b=coffee
+r=m_a/(m_a+m_b);// The mass ratio
+S_p12=((m_a+m_b)/1000)*c*log([1+((r*(((T_a+273.15)/(T_b+273.15))-1)))]*((T_b+273.15)/(T_a+273.15))^(r));// J/K
+printf("\nThe entropy produced,1(S_P)2=%0.3f J/K",S_p12);