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.2 | |
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.2')
-rwxr-xr-x | 1574/CH8/EX8.2/Result_of_Chapter_8_Ex8_2.JPG | bin | 0 -> 138720 bytes | |||
-rwxr-xr-x | 1574/CH8/EX8.2/TL_Ex_8_2.sce | 18 |
2 files changed, 18 insertions, 0 deletions
diff --git a/1574/CH8/EX8.2/Result_of_Chapter_8_Ex8_2.JPG b/1574/CH8/EX8.2/Result_of_Chapter_8_Ex8_2.JPG Binary files differnew file mode 100755 index 000000000..b444d29dc --- /dev/null +++ b/1574/CH8/EX8.2/Result_of_Chapter_8_Ex8_2.JPG diff --git a/1574/CH8/EX8.2/TL_Ex_8_2.sce b/1574/CH8/EX8.2/TL_Ex_8_2.sce new file mode 100755 index 000000000..e8a08a17e --- /dev/null +++ b/1574/CH8/EX8.2/TL_Ex_8_2.sce @@ -0,0 +1,18 @@ +clc
+//Chapter8
+//Example8.2, page no 314
+//Given
+v=3e8// velocty of light
+f=1.2e6// Operating Freq
+lambda=v/f
+//disp(lambda)
+l=100// length of the Tx-Line
+phi=2*(%pi*l)/(lambda)// Phase shift in degrees
+Zo=500// Characteristic impedance
+//a Open circuited Line
+
+Zin=-%i*Zo*(cos(phi)/sin(phi))
+
+//b Short circuited Line
+Z1in=%i*Zo*tan(phi)
+mprintf('The phase shift is: %d degrees\n Open Circuited line impedance: -j%f ohms\n Short Circuited line impedance -j%f ohms',phi*180/%pi,-Zin*%i,Z1in*%i)
|