diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2078/CH4/EX4.19 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2078/CH4/EX4.19')
-rwxr-xr-x | 2078/CH4/EX4.19/Example4_19.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2078/CH4/EX4.19/Example4_19.sce b/2078/CH4/EX4.19/Example4_19.sce new file mode 100755 index 000000000..39b46b9fe --- /dev/null +++ b/2078/CH4/EX4.19/Example4_19.sce @@ -0,0 +1,17 @@ +//Exa 4.19
+clc;
+clear;
+close;
+//Given data :
+f=50;//Hz
+VL=220;//KV
+r=20/2/1000;//m
+d1=3;//m
+d2=3;//m
+d3=6;//m
+epsilon_o=8.854*10^-12;//permitivity
+CN=2*%pi*epsilon_o/log((d1*d2*d3)^(1/3)/r);//F
+disp(CN,"Capacitance per phase per meter line(F)");
+Vph=VL*1000/sqrt(3);//V
+Ic=2*%pi*f*CN*Vph;//A
+disp(Ic*1000,"Charging current per phase(mA) : ");
|