summaryrefslogtreecommitdiff
path: root/3523/CH4/EX4.10.1/Ex4_1.sce
blob: dbb15ecd17e35b916be99d40f301144a0614cc62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Example 1// Ch 4
clc;
clear;
close;
// given data
I1 = 2.7*10^-8;//steady state current in Amperes
V = 10; //voltage in kV
d1 = 0.005; //spacing between the plane electrodes in meters
d2 = 0.01; // spacing incresed in meters
I2 = 2.7*10^-7;//increased steady state current in amperes
e = 1.6*10^-19;
x = 1/(d2-d1);
y = log(I2/I1);
alpha = x*y;//ionization coefficient
printf("ionization coefficient %f m^-1",alpha)
I0 = I1*exp(-alpha*d1);//photoelctric current
printf("photoelectric current %e A",I0)
n0 = I0/e;
printf("no of electrons emitted from cathode %e electrons/s",n0)