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/CH9/EX9.7/Example9_7.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 2078/CH9/EX9.7/Example9_7.sce (limited to '2078/CH9/EX9.7/Example9_7.sce') diff --git a/2078/CH9/EX9.7/Example9_7.sce b/2078/CH9/EX9.7/Example9_7.sce new file mode 100755 index 000000000..be97caa53 --- /dev/null +++ b/2078/CH9/EX9.7/Example9_7.sce @@ -0,0 +1,15 @@ +//Exa 9.7 +clc; +clear; +close; +//Given data : +Vs=11;//kV +n=5;//no. of uniits +K=0.1;//shunt to mutual capacitance ratio +V5=Vs;//kV +V1=V5/(1+10*K+15*K^2+7*K^3+K^4);//kV +V2=V1*(1+K);//kV +V3=V1*(1+3*K+K^2);//kV +V4=V1*(1+6*K+5*K^2+K^3);//kV +V=V1+V2+V3+V4+V5;//kV +disp(V,"Maximum safe working voltage(kV)"); -- cgit