diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2078/CH3/EX3.2/Example3_2.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2078/CH3/EX3.2/Example3_2.sce')
-rwxr-xr-x | 2078/CH3/EX3.2/Example3_2.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2078/CH3/EX3.2/Example3_2.sce b/2078/CH3/EX3.2/Example3_2.sce new file mode 100755 index 000000000..aa04d8055 --- /dev/null +++ b/2078/CH3/EX3.2/Example3_2.sce @@ -0,0 +1,23 @@ +//Exa 3.2
+clc;
+clear;
+close;
+//Given data :
+a=poly(0,'a');
+cost=90*a+20;//Rs./m
+i=10;//%(interest and depreciation)
+l=2;//km
+cost_E=4;//paise/unit
+Im=250;//A
+a=1;//cm^2
+rho_c=0.173;//ohm/km/cm^2
+l2=1*1000;//km
+R=rho_c*l/a;//ohm
+W=2*Im^2*R;//W
+Eloss=W/1000*365*24/2;//per annum(kWh)
+P3BYa=cost_E/100*Eloss;//Rs
+Cc=90*a*l*1000;//Rs(capital cost of feeder cable)
+P2a=Cc*i/100;//Rs
+//P2a=P3BYa;//For most economical cross section
+a=sqrt(P3BYa*a/(P2a/a));//cm^2
+disp(a,"Most economical cross sectional area in cm^2 : ");
|