diff options
Diffstat (limited to '3850/CH28/EX28.2/Ex28_2.sce')
-rw-r--r-- | 3850/CH28/EX28.2/Ex28_2.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3850/CH28/EX28.2/Ex28_2.sce b/3850/CH28/EX28.2/Ex28_2.sce new file mode 100644 index 000000000..c933de860 --- /dev/null +++ b/3850/CH28/EX28.2/Ex28_2.sce @@ -0,0 +1,18 @@ + +//To Calculate the Thermal Resistance of an aluminium rod
+
+//Example 28.2
+
+clear;
+
+clc;
+
+x=0.2;//Length of Aluminium Rod in metres
+
+K=200;//Thermal Conductivity of Aluminium in W/m-K
+
+A=1*10^-4;//Area of Cross Section in metre^2
+
+R=x/(K*A);//Thermal Resistance in K/W
+
+printf("The Thermal Resistance is of Aluminium Rod=% d K/W",R);
|