summaryrefslogtreecommitdiff
path: root/1109/CH3/EX3.10/3_10.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1109/CH3/EX3.10/3_10.sce
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 '1109/CH3/EX3.10/3_10.sce')
-rwxr-xr-x1109/CH3/EX3.10/3_10.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1109/CH3/EX3.10/3_10.sce b/1109/CH3/EX3.10/3_10.sce
new file mode 100755
index 000000000..06f969a8a
--- /dev/null
+++ b/1109/CH3/EX3.10/3_10.sce
@@ -0,0 +1,15 @@
+clear;
+clc;
+f=1000;l=1000;R=10.4;L=0.00367;G=0.8*(10^-6);C=0.00835*(10^-6);Es=10;
+//value of Es as taken in solution
+w=2*%pi*f;
+Z=R+round((%i*w*L));
+Y=G+(%i*w*C);
+Zo=sqrt(Z/Y);
+P=sqrt(Z*Y);
+Is=Es/Zo;
+Ir=Is*exp(-P*l);
+P=((abs(Ir))^2)*real(Zo);
+printf("-Power delivered at receiving end = %f micro-watt",P*(10^6));
+//the difference in result is due to erroneous value in textbook.
+disp("The difference in result is due to erroneous value in textbook")