diff options
Diffstat (limited to '3875/CH11/EX11.18')
-rw-r--r-- | 3875/CH11/EX11.18/11_18.sce | 18 | ||||
-rw-r--r-- | 3875/CH11/EX11.18/11_18.txt | 1 |
2 files changed, 19 insertions, 0 deletions
diff --git a/3875/CH11/EX11.18/11_18.sce b/3875/CH11/EX11.18/11_18.sce new file mode 100644 index 000000000..fd7484dc9 --- /dev/null +++ b/3875/CH11/EX11.18/11_18.sce @@ -0,0 +1,18 @@ +clc;
+clear;
+h=1 //x intercept of parallel plane
+k=1 //y intercept of parallel plane
+l=1 //z intercept of parallel plane
+a=0.352 //lattice constant in nm
+tetha=28.5 //Braggs angle in degree
+K_b=1.38*10^-23 //Boltzmann constant in J/K
+H=6.63*10^-34 //Plancks constant in J-s
+m=1.67*10^-27 //mass of nuetron in kg
+
+//calculation
+
+d=(a/sqrt(h^2+k^2+l^2)) //interplanar distance in nm
+lambda=2*d*sind(28.5) //wavelength in nm
+T=(H^2)/(3*m*K_b*((lambda*10^-9)^2))
+
+mprintf("The effective temperature of neutrons is = %d K",T)
diff --git a/3875/CH11/EX11.18/11_18.txt b/3875/CH11/EX11.18/11_18.txt new file mode 100644 index 000000000..6c38a1487 --- /dev/null +++ b/3875/CH11/EX11.18/11_18.txt @@ -0,0 +1 @@ + The effective temperature of neutrons is = 169 K
\ No newline at end of file |