diff options
Diffstat (limited to '3369/CH4/EX4.11')
-rwxr-xr-x | 3369/CH4/EX4.11/Ex4_11.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3369/CH4/EX4.11/Ex4_11.sce b/3369/CH4/EX4.11/Ex4_11.sce new file mode 100755 index 000000000..8efd2abd0 --- /dev/null +++ b/3369/CH4/EX4.11/Ex4_11.sce @@ -0,0 +1,13 @@ +//Chapter 4, Exmaple 11, page 146 +//Claculate the first Townsend's ionization coefficient +clc +clear +t = 0.2*10**-6 // transit time of electrons in seconds +d = 0.05 // m +ve = d/t +TC = 35*10**-9 // Time constant +a = 1/(ve*TC) +printf("\n Electron drift velocity = %e m/s",ve) +printf("\n alpha = %e m^-1",a) + +// Answers may vary due to round of error |