diff options
Diffstat (limited to '2273/CH4/EX4.16/ex4_16.sce')
-rwxr-xr-x | 2273/CH4/EX4.16/ex4_16.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2273/CH4/EX4.16/ex4_16.sce b/2273/CH4/EX4.16/ex4_16.sce new file mode 100755 index 000000000..1cd590897 --- /dev/null +++ b/2273/CH4/EX4.16/ex4_16.sce @@ -0,0 +1,15 @@ +//Find the capacitance of 3 phase 3 wire line
+clear;
+clc;
+//soltion
+//given
+r=0.01;//m//radius of the conductor
+d1=3.5;//m//spacing
+d2=5;//m//spacing
+d3=8;//m//spacing
+L=1000;//m//length of the line
+Eo=8.854*10^-12//permitivity of the air
+de=(d1*d2*d3)^(1/3)
+C=2*%pi*Eo*L/(log(de/r));
+C_=C*10^6;
+printf("Capacitance of line= %.4f µF",C_);
|