blob: 2cc07a9517dee30b3e05ad34eeee19a6f112ed0e (
plain)
1
2
3
4
5
6
7
8
9
|
// Scilab Code Ex2.13 Energy of a quantum of light: Pg:50 (2008)
c = 3e+08; // Speed of light, m/s
e = 1.6e-019; // Energy equivalent of 1 eV, joule/eV
h= 6.626 * 10^-34;
L = 5.3e-07; // Wavelength of incident light, m
E = h*c/L; // Energy of the incident light, J
printf("\nThe energy of incident light = %4.2f eV", E/e);
// Result
// The energy of incident light = 2.34 eV
|