diff options
Diffstat (limited to '1952/CH6/EX6.7/Ex6_7.sce')
-rwxr-xr-x | 1952/CH6/EX6.7/Ex6_7.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1952/CH6/EX6.7/Ex6_7.sce b/1952/CH6/EX6.7/Ex6_7.sce new file mode 100755 index 000000000..8a48f0172 --- /dev/null +++ b/1952/CH6/EX6.7/Ex6_7.sce @@ -0,0 +1,9 @@ +// chapter 6 , Example6 6 , pg 174
+L= 2.26*10^-8 //Lorentz number (in W*m /K^2)
+T=27+273 //temperature (in K) (converting celsius into kelvin)
+rho=1.72*10^-8 //electrical resistivity (in ohm *m)
+
+//according to Wiedemann-Franz law
+K=(L*T)/rho //thermal conductivity
+printf("Thermal conductivity =")
+printf("K=%.0f W/(m*K)",K)
|