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 --- 3035/CH6/EX6.1/Ex6_1.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 3035/CH6/EX6.1/Ex6_1.sce (limited to '3035/CH6/EX6.1/Ex6_1.sce') diff --git a/3035/CH6/EX6.1/Ex6_1.sce b/3035/CH6/EX6.1/Ex6_1.sce new file mode 100755 index 000000000..a3c748f3c --- /dev/null +++ b/3035/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,14 @@ +// Variable Declaration +C_m = 0.28 //Capacitance b/w ant 2 cores(micro-F/km) +f = 50.0 //Frequency(Hz) +V_L = 11.0 //Line voltage(kV) + +// Calculation Section +C = 2*C_m //Capacitance b/w any conductor & shield(micro-F/km) +w = 2*%pi*f //Angular frequency +I_c = V_L*10**3*w*C*10**-6/3**0.5 //Charging current/phase/km(A) +Total = 3**0.5*I_c*V_L //Total charging kVAR/km + +// Result Section +printf('Charging current/phase/km , I_c = %.3f A' ,I_c) +printf('Total charging kVAR/km = %.2f ' ,Total) -- cgit