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.26 | |
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.26')
-rwxr-xr-x | 2078/CH4/EX4.26/Example4_26.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2078/CH4/EX4.26/Example4_26.sce b/2078/CH4/EX4.26/Example4_26.sce new file mode 100755 index 000000000..cd04b63b3 --- /dev/null +++ b/2078/CH4/EX4.26/Example4_26.sce @@ -0,0 +1,21 @@ +//Exa 4.26
+clc;
+clear;
+close;
+//Given data :
+r=2/100;//m
+d1=4;//m
+d2=4;//m
+d3=8;//m
+epsilon_o=8.854*10^-12;//permitivity
+CN=2*%pi*epsilon_o/log((d1*d2*d3)^(1/3)/r);//F
+disp(CN,"Part(i) Capacitance per phase per meter length(F) : ");
+h1=20;//m
+h2=20;//m
+h3=20;//m
+h12=sqrt(20^2+4^2);//m
+h23=sqrt(20^2+4^2);//m
+h31=sqrt(20^2+8^2);//m
+Deq=(d1*d2*d3)^(1/3);//m
+CN=2*%pi*epsilon_o/(log(Deq/r)-log((h12*h23*h31/h1/h2/h3)^(1/3)) );//F
+disp(CN,"Part(ii) Capacitance per phase per meter length(F) : ");
|