diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1991/CH9/EX9.8 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1991/CH9/EX9.8')
-rwxr-xr-x | 1991/CH9/EX9.8/8.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1991/CH9/EX9.8/8.sce b/1991/CH9/EX9.8/8.sce new file mode 100755 index 000000000..8fd16591a --- /dev/null +++ b/1991/CH9/EX9.8/8.sce @@ -0,0 +1,19 @@ +clc
+clear
+//input
+c=3*10^8//speed of light
+m=9.1*10^-31//mass of electron
+tw=5.12*10^-7//threshhold wavelength
+w1=4.52*10^-8 //radiation wavelength
+h=6.6*10^-34//stephans constant
+//calculation
+f0=c/tw//threshhold frequency
+w=h*f0//work function
+a=h*c/w1//einsteins photo electric equation
+v=sqrt((2*(a-w))/m)//photoelectric energy
+emax=0.5*m*v*v
+//output
+printf("threshhold frequency is %3.3e Hz",f0)
+printf("\n the work function is %3.3e J",w)
+printf("\n the maximum photoelectric speed is %3.3e ms^-1",v)
+printf("\n the maximum photoelectric energy is %3.3e J",emax)
|