summaryrefslogtreecommitdiff
path: root/2078/CH9/EX9.7/Example9_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2078/CH9/EX9.7/Example9_7.sce')
-rwxr-xr-x2078/CH9/EX9.7/Example9_7.sce15
1 files changed, 15 insertions, 0 deletions
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)");