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 --- 2078/CH12/EX12.2/Example12_2.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 2078/CH12/EX12.2/Example12_2.sce (limited to '2078/CH12/EX12.2') diff --git a/2078/CH12/EX12.2/Example12_2.sce b/2078/CH12/EX12.2/Example12_2.sce new file mode 100755 index 000000000..98dac594a --- /dev/null +++ b/2078/CH12/EX12.2/Example12_2.sce @@ -0,0 +1,21 @@ +//Exa 12.2 +clc; +clear; +close; +format('v',5); +//Given data : +V=132*1000;//V +f=50;//Hz +r=10/1000;//m +d1=4;//m +d2=4;//m +d3=d1+d2;//m +epsilon_o=8.854*10^-12;//constant +l_tl=192*1000;//length of transmission line in m +C=2*%pi*epsilon_o/log((d1*d2*d3)^(1/3)/r)*l_tl;//in Farad +L=1/3/(2*%pi*f)^2/C;//H +disp(L,"Necessary Inductance of peterson coil in H : "); +VP=V/sqrt(3);//V +IL=VP/(2*%pi*f)/L;//A +Rating=VP*IL/1000;//kVA +disp(Rating/1000,"Rating of supressor coil in MVA :"); -- cgit