summaryrefslogtreecommitdiff
path: root/3648/CH25/EX25.7/Ex25_7.sce
blob: 7eafa9237e6e0fa3699af0401473764469da22dd (plain)
1
2
3
4
5
6
7
8
9
10
//Example 25_7
clc();
clear;
//To find the energy of the photon in a beam
h=6.626*10^-34     //units in J
c=3*10^8    //units in meters/sec
lamda=1240*10^-9    //units in meters
e=(h*c)/lamda     //units in J
e=e/(1.6*10^-19)       //Units in eV
printf("The energy of photon is E=%d eV",e)