diff options
Diffstat (limited to '3523/CH4/EX4.10.10/Ex4_10.sce')
-rw-r--r-- | 3523/CH4/EX4.10.10/Ex4_10.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3523/CH4/EX4.10.10/Ex4_10.sce b/3523/CH4/EX4.10.10/Ex4_10.sce new file mode 100644 index 000000000..9b777c450 --- /dev/null +++ b/3523/CH4/EX4.10.10/Ex4_10.sce @@ -0,0 +1,19 @@ +//Example 10// Ch 4
+clc;
+clear;
+close;
+// given data
+d = 0.001; //in meters
+p = 101.3; //in kPa
+alpha = (17.7 + log(d))/d;//ionization coefficient in m^-1
+x = alpha/p; //in m^-1kPa^-1
+s = 11253.7; //constant in m-1kPa-1
+B = 273840; //constant in V/m kPa
+E1 = p/((-1/B)*log(x/s));// in V/m
+Vs1 = E1*d; //break down voltage in V
+printf("ionization coefficient %f m^-1 \n",alpha)
+printf("electric field %e V/m \n",E1)
+printf("breakdown voltage %f kV \n",Vs1*10^-3)
+E2 = 468*10^4;// in V/m
+Vs2 = E2*d;//breakdown voltage by meel and loeb's eq
+printf("breakdown voltage %f kV \n",Vs2*10^-3)
|