diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3523/CH5/EX5.6.5 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3523/CH5/EX5.6.5')
-rw-r--r-- | 3523/CH5/EX5.6.5/Ex5_5.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3523/CH5/EX5.6.5/Ex5_5.sce b/3523/CH5/EX5.6.5/Ex5_5.sce new file mode 100644 index 000000000..761be0065 --- /dev/null +++ b/3523/CH5/EX5.6.5/Ex5_5.sce @@ -0,0 +1,23 @@ +//Example 5// Ch 5
+clc;
+clear;
+close;
+// given data
+d=0.001;
+a = 0.1*10^-2;//radii of concentric circle in meters
+b = 2.1*10^-2;//radii of concentric circle in meters
+p = 101.3;//gas pressure in kPa
+p1=3*p;
+p2=5*p;
+C = -2400.4;//constant value
+A = 0.027;//constant value
+As = 10^8;//avalanche size
+ri = 0.0772;//in m
+V0 = [log(10^8)-{(C*p)*(ri-a)}]*(b-a)/[A*{(1/a)-(1/ri)}];
+printf("corona onset voltage is %f kV \n",V0)
+V0pos = 13.1;//in kV
+V0neg = 13.7;//in kV
+printf("positive corona onset voltage %f kV \n",V0pos)
+printf("negative corona onset voltage %f kV \n",V0neg)
+
+//acc. to eq N2>=N1 and Neph>=1 with increase of gas pressure improves the dielectric strength of the gas since breakdown voltage increses with gas pressure
|