diff options
Diffstat (limited to '2273/CH8/EX8.2/ex8_2.sce')
-rwxr-xr-x | 2273/CH8/EX8.2/ex8_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2273/CH8/EX8.2/ex8_2.sce b/2273/CH8/EX8.2/ex8_2.sce new file mode 100755 index 000000000..f83dbe397 --- /dev/null +++ b/2273/CH8/EX8.2/ex8_2.sce @@ -0,0 +1,13 @@ +//find max safe working voltage and string efficiency
+clear;
+clc;
+//soltion
+//given
+k=0.08;//ratio
+V3=15;
+V1=V3/(1+3*k+k*k);
+V2=V1*(1+k);
+V=V1+V2+V3;
+printf("Max and safe working voltage= %.2f kV\n",V);
+Se=V*100/(3*V3);
+printf("String efficiency %.2f percent",Se);
|