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 /1802/CH7/EX7.5/Exa7_5.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 '1802/CH7/EX7.5/Exa7_5.sce')
-rwxr-xr-x | 1802/CH7/EX7.5/Exa7_5.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/1802/CH7/EX7.5/Exa7_5.sce b/1802/CH7/EX7.5/Exa7_5.sce new file mode 100755 index 000000000..0234d2b16 --- /dev/null +++ b/1802/CH7/EX7.5/Exa7_5.sce @@ -0,0 +1,24 @@ +//Exa 7.5
+clc;
+clear;
+close;
+//Given data :
+format('v',6);
+VA=400;//in volt
+r=0.03;//in ohm/km
+r=0.03/1000;//in ohm/m
+RAB=r*500*2;//in ohm
+RBC=r*300*2;//in ohm
+RAB=r*700*2;//in ohm
+RAB=r*500*2;//in ohm
+//VA-VB=VAC+VCD+VDE+VEF+VFB;//in volt
+IA=(17.4)/(0.09);//in Ampere
+VAB=(RAB)*IA;//in volt
+VB=VA-VAB;//in volt
+disp(VB,"Voltage at B(in volts) :");
+VBC=(RBC)*(IA-150);//in volt
+VC=VB-VBC;//in volt
+disp(VC,"Voltage at C(in volts) :");
+IBC=IA-150;//in A
+disp(IBC,"Current in section BC(in A) :");
+//Note : answer of VB is wrong in the book.
\ No newline at end of file |