summaryrefslogtreecommitdiff
path: root/1802/CH5/EX5.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1802/CH5/EX5.6
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1802/CH5/EX5.6')
-rwxr-xr-x1802/CH5/EX5.6/Exa5_6.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1802/CH5/EX5.6/Exa5_6.sce b/1802/CH5/EX5.6/Exa5_6.sce
new file mode 100755
index 000000000..c326ced20
--- /dev/null
+++ b/1802/CH5/EX5.6/Exa5_6.sce
@@ -0,0 +1,14 @@
+//Exa 5.6
+clc;
+clear;
+close;
+//Given Data :
+format('v',6);
+P_del=10000*10^3;//in Watts
+cos_fir=0.8;//unitless
+R=0.95;//in ohm/km
+VR=132*10^3;//in volt
+IL=P_del/(sqrt(3)*VR*cos_fir);//in Ampere
+//TotalLosses=3*I^2*R and should be equal to (7.5/100)*P_del;//in watt
+l=(7.5/100)*P_del/(3*IL^2*R);//in km
+disp(l,"Distance (in km) :"); \ No newline at end of file