summaryrefslogtreecommitdiff
path: root/1309/CH1/EX1.2/ch1_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '1309/CH1/EX1.2/ch1_2.sce')
-rwxr-xr-x1309/CH1/EX1.2/ch1_2.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1309/CH1/EX1.2/ch1_2.sce b/1309/CH1/EX1.2/ch1_2.sce
new file mode 100755
index 000000000..83cb01171
--- /dev/null
+++ b/1309/CH1/EX1.2/ch1_2.sce
@@ -0,0 +1,12 @@
+clear;
+clc;
+printf("\t\t\tchapter1_example2\n\n\n");
+// determination of thermal conductivity of aluminium
+k_ss=14.4; // thermal conductivity of stainless steel in [W/m.K]
+printf("\nThe thermal conductivity of stainless steel is %.1f W/m.K",k_ss);
+dt_ss=40; // [K]
+dt_al=8.65; // [K]
+dz_ss=1; // [cm]
+dz_al=3; // [cm]
+k_al=k_ss*dt_ss*dz_al/(dt_al*dz_ss);// thermal conductivity of Al in [W/m.K]
+printf("\nThe thermal conductivity of aluminium is %d W/m.K",k_al);