diff options
Diffstat (limited to '3369/CH3/EX3.19')
-rwxr-xr-x | 3369/CH3/EX3.19/Ex3_19.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3369/CH3/EX3.19/Ex3_19.sce b/3369/CH3/EX3.19/Ex3_19.sce new file mode 100755 index 000000000..06ffba79d --- /dev/null +++ b/3369/CH3/EX3.19/Ex3_19.sce @@ -0,0 +1,13 @@ +//Chapter 3, Exmaple 19, page 111 +//Determine mean free path and ionization +clc +clear +//(a)Mean free path +//Based on equation 3.14 and 3.15 +lambda = 1/(9003*0.5) +//(b)Ionization potential +Vi = 256584/9003 +printf("\n lambda = %e m ",lambda) +printf("\n Vi = %f V ",Vi) + +//answers may vary due to round off error |