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 /1076/CH8/EX8.8/8_8.sce | |
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 '1076/CH8/EX8.8/8_8.sce')
-rwxr-xr-x | 1076/CH8/EX8.8/8_8.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1076/CH8/EX8.8/8_8.sce b/1076/CH8/EX8.8/8_8.sce new file mode 100755 index 000000000..fa6a510bb --- /dev/null +++ b/1076/CH8/EX8.8/8_8.sce @@ -0,0 +1,19 @@ +clear;
+clc;
+
+V=11e3;
+V=V/sqrt(3);
+f=50;
+C1=.65;
+C2=.75;
+
+Cs=C2/3;
+Cc=(C1/2)-(C2/6);
+C=Cs+(3*Cc);
+mprintf("\n(a)effective capacitance of each of the core to neutral = %.2f e-6 F",C);
+
+I=V * 2 * %pi * f * C*1e-6 ;
+mprintf("\n(b)Charging Current I= %.3f A/phase", I);
+
+Cap=(1.5*Cc) + (.5 * Cs);
+mprintf("\n(c)Capacitance between any 2 conductors = %.3f e-6 F",Cap);
|