summaryrefslogtreecommitdiff
path: root/3768/CH6/EX6.11/Ex6_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3768/CH6/EX6.11/Ex6_11.sce')
-rw-r--r--3768/CH6/EX6.11/Ex6_11.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3768/CH6/EX6.11/Ex6_11.sce b/3768/CH6/EX6.11/Ex6_11.sce
new file mode 100644
index 000000000..9bf638306
--- /dev/null
+++ b/3768/CH6/EX6.11/Ex6_11.sce
@@ -0,0 +1,15 @@
+//Example number 6.11, Page number 121
+
+clc;clear;
+close;
+
+//Variable declaration
+Kb=1.38*10**-23; //boltzmann constant(J/k)
+m=9.1*10**-31; //mass(kg)
+tow=3*10**-14; //relaxation time(sec)
+n=8*10**28; //density of electrons(per m**3)
+T=273; //temperature(K)
+//Calculation
+sigma_T=3*n*tow*T*Kb**2/(2*m); //thermal conductivity(W/mK)
+//Result
+printf("thermal conductivity is %.3f W/mK",sigma_T)