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 /1574/CH8/EX8.5 | |
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 '1574/CH8/EX8.5')
-rwxr-xr-x | 1574/CH8/EX8.5/Result_of_Chapter_8_Ex8_5.JPG | bin | 0 -> 130840 bytes | |||
-rwxr-xr-x | 1574/CH8/EX8.5/TL_Ex_8_5.sce | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/1574/CH8/EX8.5/Result_of_Chapter_8_Ex8_5.JPG b/1574/CH8/EX8.5/Result_of_Chapter_8_Ex8_5.JPG Binary files differnew file mode 100755 index 000000000..a01b7620c --- /dev/null +++ b/1574/CH8/EX8.5/Result_of_Chapter_8_Ex8_5.JPG diff --git a/1574/CH8/EX8.5/TL_Ex_8_5.sce b/1574/CH8/EX8.5/TL_Ex_8_5.sce new file mode 100755 index 000000000..5f66a438f --- /dev/null +++ b/1574/CH8/EX8.5/TL_Ex_8_5.sce @@ -0,0 +1,16 @@ +clc
+//Chapter8
+//Example8.5, page no 317
+//Given
+a=0.7//attenuation constant
+b=0.3//phase constant
+Gamma=a+(%i*b)//propagation constant
+l=0.5// half length of line( for midpoint)
+Vs=10// Excitation voltage
+V_mod=Vs*(%e^(-a*l))//Magnitude of the Vs
+
+phi=b*l*180/%pi//phase shift
+V=V_mod*(%e^(-%i*(phi*%pi/180)))//voltage at the mid point
+mprintf('the voltage at the mid point of the line is \n%f /_-%fdegrees Volts',V,phi)
+
+// Note : There are some calculation errors in the solution presented in the book
|