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 /3369/CH12/EX12.5 | |
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 '3369/CH12/EX12.5')
-rwxr-xr-x | 3369/CH12/EX12.5/Ex12_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3369/CH12/EX12.5/Ex12_5.sce b/3369/CH12/EX12.5/Ex12_5.sce new file mode 100755 index 000000000..bb084db23 --- /dev/null +++ b/3369/CH12/EX12.5/Ex12_5.sce @@ -0,0 +1,18 @@ +//Chapter 12,Example 5, page 408 +//Calculate capasitance and kVAr +clear +clc +//(a) Using the notations used in FiVgs. 12.15 and 12.16 +C2 = 0.75/3 // microF/km +C3 = (0.6*3-2*C2)/2 // microF/km +C4 = (C2+C3)/2 // microF/km +printf("\n C2 = %f mircoF/Km ",C2) +printf("\n C3 = %f mircoF/Km ",C3) +printf("\n C4 = %f mircoF/Km ",C4) +//(b)Capacitance of 10 km between 2 cores +V = 33*10**3 +w = 2*%pi*50 +C = 2*V^2*w*C4*10*10**-9 +printf("\n Carging = %f kVAr ",C) + +// Answers may vary due to round of errors. |