diff options
Diffstat (limited to '3369/CH4/EX4.7/Ex4_7.sce')
-rwxr-xr-x | 3369/CH4/EX4.7/Ex4_7.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3369/CH4/EX4.7/Ex4_7.sce b/3369/CH4/EX4.7/Ex4_7.sce new file mode 100755 index 000000000..b388e41e3 --- /dev/null +++ b/3369/CH4/EX4.7/Ex4_7.sce @@ -0,0 +1,17 @@ +//Chapter 4, Exmaple 7, page 142 +//Claculate secondary coefficient +clc +clear +//Using equation 3.15 +E = 9*10**3/0.002 +T = 11253.7 // m^-7*kPa^-1 +B = 273840 // V/mkPa +p = 101.3 // kPa or 1 atm +d = 0.002 // m +alpha = p*T*exp(-B*p/E) +Y = 1/(exp(alpha*d)-1) +printf("\n E = %e V/m",E) +printf("\n Alpha = %f m^-1",alpha) +printf("\n Total secondary coefficient of ionization = %f ",Y) + +//Answer may vary due to round off error |