summaryrefslogtreecommitdiff
path: root/1574/CH8/EX8.2
diff options
context:
space:
mode:
Diffstat (limited to '1574/CH8/EX8.2')
-rwxr-xr-x1574/CH8/EX8.2/Result_of_Chapter_8_Ex8_2.JPGbin0 -> 138720 bytes
-rwxr-xr-x1574/CH8/EX8.2/TL_Ex_8_2.sce18
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
new file mode 100755
index 000000000..b444d29dc
--- /dev/null
+++ b/1574/CH8/EX8.2/Result_of_Chapter_8_Ex8_2.JPG
Binary files differ
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)