blob: 5c13cea55734a7e5ecd585efbf64a19b572c088c (
plain)
1
2
3
4
5
6
7
8
9
|
clc
//Given that
k = 8.6e-5 // Boltzmann constant
t = 27 // Temperature in degree Celsius
h = 6.62e-34 // Plank constant
m = 6.7e-27 // Mass of helium atom
printf("Example 1.22")
lambda = h/sqrt(3*m*(k*1.6e-19)*(t+273))// Calculation of wavelength
printf("\n Wavelength of helium at %d degree Celsius is %f angstrom.\n\n\n",t,lambda*1e10)
|