diff options
Diffstat (limited to '3523/CH5/EX5.6.9/Ex5_9.sce')
-rw-r--r-- | 3523/CH5/EX5.6.9/Ex5_9.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3523/CH5/EX5.6.9/Ex5_9.sce b/3523/CH5/EX5.6.9/Ex5_9.sce new file mode 100644 index 000000000..e8f7c9910 --- /dev/null +++ b/3523/CH5/EX5.6.9/Ex5_9.sce @@ -0,0 +1,14 @@ +//Example 9// Ch 5
+clc;
+clear;
+close;
+// given data
+Deq=600;//mean geometric distance b/w conductors in cm
+delta=1;//at standard temp and pressure
+r=1;//radius of conductors in cm
+E0=30*delta*(1+(0.3/sqrt(delta*r)));//corona onset field in kVpeak/cm
+printf("corona onset field %f kVpeak/cm",E0)
+V0=E0*log(Deq);//corona onset voltage
+printf("corona onset voltage %f kVpeak",V0)
+V0rms=V0/sqrt(2);//rms onset voltage in kV
+printf("corona rms onset voltage %f kV",V0rms)
|