blob: 5c247d9c76929092520aed63d473e8d01d31bde6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Example 5_14_u1
clc();
clear;
//To calculate the effective temprature of neutrons
a=0.352 //units in nm
h=1
k=1
l=1
d=a/sqrt(h^2+k^2+l^2) //units in nm
theta=28.5 //units in degrees
lamda=2*d*sin(theta*(%pi/180)) //units in nm
h=6.63*10^-34 //units in m^2 kg s^-1
m=1.67*10^-27 //units in Kgs
KB=1.38*10^-23 //units in m^2 kg s^-2 K^-1
lamda=lamda*10^-9 //units in meters
T=h^2/(3*m*KB*lamda^2) //units in K
printf("The effective temprature of neutrons is T=%dK",T)
|