From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3369/CH12/EX12.5/Ex12_5.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 3369/CH12/EX12.5/Ex12_5.sce (limited to '3369/CH12/EX12.5') 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. -- cgit