summaryrefslogtreecommitdiff
path: root/2273/CH4/EX4.18/ex4_18.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2273/CH4/EX4.18/ex4_18.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2273/CH4/EX4.18/ex4_18.sce')
-rwxr-xr-x2273/CH4/EX4.18/ex4_18.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/2273/CH4/EX4.18/ex4_18.sce b/2273/CH4/EX4.18/ex4_18.sce
new file mode 100755
index 000000000..744b0c640
--- /dev/null
+++ b/2273/CH4/EX4.18/ex4_18.sce
@@ -0,0 +1,28 @@
+//find capacitive reactance to neutral and charging current
+clear;
+clc;
+//soltion
+//given
+r=1.25*10^-2;//m//radius of the conductor
+f=50//frequency
+Vph=132*1000/sqrt(3);//phase voltage
+Eo=8.85*10^-12//permitivity of the air
+drr_=sqrt(7^2+(4+4)^2);
+dbb_=drr_;
+dyy_=9;
+Dsr=sqrt(r*drr_);
+Dsy=sqrt(r*dyy_);
+Dsb=sqrt(r*dbb_);
+Ds=(Dsr*Dsy*Dsb)^(1/3);
+dry=sqrt(4^2+(4.5-3.5)^2);
+dry_=sqrt((9-1)^2+4^2);
+Dry=sqrt(dry*dry_);
+Dyb=Dry;
+Dbr=sqrt(8*7);
+Dm=(Dyb*Dbr*Dry)^(1/3);
+C=2*%pi*Eo/(log(Dm/Ds));
+printf("Capacitance per phase= %.2f*10^-9 F/km\n",C*10^12);
+Cr=1/(2*%pi*f*C*1000);
+printf("Capacitance per phase= %.2f kΩ\n",Cr/1000);
+Ic=(2*%pi*f*C*1000)*Vph;
+printf("Charging current= %.4f A/km",Ic);