summaryrefslogtreecommitdiff
path: root/965/CH3/EX3.3/3.sci
diff options
context:
space:
mode:
Diffstat (limited to '965/CH3/EX3.3/3.sci')
-rw-r--r--965/CH3/EX3.3/3.sci12
1 files changed, 12 insertions, 0 deletions
diff --git a/965/CH3/EX3.3/3.sci b/965/CH3/EX3.3/3.sci
new file mode 100644
index 000000000..f5ec0484a
--- /dev/null
+++ b/965/CH3/EX3.3/3.sci
@@ -0,0 +1,12 @@
+clc;
+clear all;
+disp("Heat loss calculation")
+r=0.6/2;//m
+L=1;//m
+H=1.8;//m
+k=0.51;// W/(m*C)
+tp=95;// degree C
+te=25;// degree C
+Sfc=2*3.1416*L/(log(2*H/r));
+Q=k*Sfc*(tp-te);
+disp("W",Q,"Heat loss from the pipe meter length, Q =")