summaryrefslogtreecommitdiff
path: root/2300/CH23/EX23.31.1/Ex23_1.sce
blob: 6cdd8afb462f13b9c2afa51ca3844d4f5ba6e602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//scilab 5.4.1
//Windows 7 operating system
//chapter 23 Lasers,Fibre Optics,and Holography
clc
clear
y=630*10^(-9)//y=emitted wavelength in meters
c=3*10^8//c=velocity of light in free space in m/s
v=c/y//v=frequency of the emitted radiation
format("v",9)
disp("The frequency of the emitted radiation is")
disp("Hz",v,"v=")
h=6.62*10^(-34)//h=Planck's constant
P=1*10^(-3)//P=output power of gas laser(given)
n=P/(h*v)
format("v",9)
disp("s^-1",n,"The number of photons emitted per second is=")