diff options
Diffstat (limited to '3850/CH28/EX28.2')
-rw-r--r-- | 3850/CH28/EX28.2/Ex28_2.sce | 18 | ||||
-rw-r--r-- | 3850/CH28/EX28.2/Ex28_2.txt | 2 |
2 files changed, 20 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);
diff --git a/3850/CH28/EX28.2/Ex28_2.txt b/3850/CH28/EX28.2/Ex28_2.txt new file mode 100644 index 000000000..94928f126 --- /dev/null +++ b/3850/CH28/EX28.2/Ex28_2.txt @@ -0,0 +1,2 @@ + + The Thermal Resistance is of Aluminium Rod= 10 K/W
\ No newline at end of file |