blob: 9bf6383065091e3fa918da2d17dff9a19e1d7295 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
|