summaryrefslogtreecommitdiff
path: root/3831/CH11/EX11.6/Ex11_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3831/CH11/EX11.6/Ex11_6.sce')
-rw-r--r--3831/CH11/EX11.6/Ex11_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3831/CH11/EX11.6/Ex11_6.sce b/3831/CH11/EX11.6/Ex11_6.sce
new file mode 100644
index 000000000..e3108f37c
--- /dev/null
+++ b/3831/CH11/EX11.6/Ex11_6.sce
@@ -0,0 +1,11 @@
+// Example 11_6
+clc;funcprot(0);
+// Given data
+L_0=0.0700;// m
+L=0.200;// m
+T=20.0;// °C
+K=0.150;// N/K
+
+// Solution
+Q_12=(-K*(T+273.15)*L_0*((L/L_0)-1)^3)/3;// N.m
+printf("\n(c)The required heat transfer,Q_12=%1.2f N.m",Q_12);