summaryrefslogtreecommitdiff
path: root/1802/CH5/EX5.1/Exa5_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1802/CH5/EX5.1/Exa5_1.sce')
-rwxr-xr-x1802/CH5/EX5.1/Exa5_1.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/1802/CH5/EX5.1/Exa5_1.sce b/1802/CH5/EX5.1/Exa5_1.sce
new file mode 100755
index 000000000..fa6293645
--- /dev/null
+++ b/1802/CH5/EX5.1/Exa5_1.sce
@@ -0,0 +1,23 @@
+//Exa 5.1
+clc;
+clear;
+close;
+//Given Data :
+format('v',6);
+Load=100;//in MW
+V=380;//in KV
+d=100;//in km
+rho=0.045;//in ohm/cm^2/km
+w=0.01;//in kg/cm^3
+Eff=90;//in %
+IL=Load*10^6/(sqrt(3)*V*10^3);//in Ampere
+P_loss=Load*(100-Eff)/100;//in MW
+P_loss=P_loss*10^6;//in Watt
+P_loss=P_loss/3;//in watt/conductor
+R_con=P_loss/IL^2;//in ohm/conductor
+//R_con=R_con/d;//in ohm/conductor/km
+a=rho*d/R_con;//in cm^2
+vol=a*d;//in cm^3
+W_cu=vol*w;//in Kg
+disp(W_cu*100*10^3*3,"Weight of Cu for 3 onductors of 100 km length(in Kg) :");
+//Note : answer in the book is not accurate. \ No newline at end of file