diff options
Diffstat (limited to '2078/CH9/EX9.5/Example9_5.sce')
-rwxr-xr-x | 2078/CH9/EX9.5/Example9_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2078/CH9/EX9.5/Example9_5.sce b/2078/CH9/EX9.5/Example9_5.sce new file mode 100755 index 000000000..9510c06bf --- /dev/null +++ b/2078/CH9/EX9.5/Example9_5.sce @@ -0,0 +1,14 @@ +//Exa 9.5
+clc;
+clear;
+close;
+//Given data :
+Vs=17.5;//kV
+n=3;//no. of uniits
+K=1/8;//shunt to mutual capacitance ratio
+V3=Vs;//kV
+V1=V3/(1+3*K+K^2);//kV
+V2=V1*(1+K);//kV
+V=V1+V2+V3;//kV
+//Strinf_eff=V/n/V3;
+disp(V,"Maximum safe working voltage(kV)");
|