blob: 2d8b500bd9b1d57f580a1e86eb4c32013acbe5ff (
plain)
1
2
3
4
5
|
//To calculate the wavelength
V = 15; //potential, kV
V = V*10^3; //potential, V
lamda = 12.26/sqrt(V); //de Broglie wavelength, armstrong
printf("wavelength of electron waves is %5.1f armstrong",lamda);
|