diff options
Diffstat (limited to '761/CH14/EX14.9/14_9.sce')
-rwxr-xr-x | 761/CH14/EX14.9/14_9.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/761/CH14/EX14.9/14_9.sce b/761/CH14/EX14.9/14_9.sce new file mode 100755 index 000000000..ac24ed1d4 --- /dev/null +++ b/761/CH14/EX14.9/14_9.sce @@ -0,0 +1,16 @@ +clc;
+// page no 545
+// prob no 14.9
+Zo=50;// line impedence in ohm
+ZL=100;// load impedance in ohm
+vf=0.8;//velocity factor
+l=1;//length of line
+f=30*10^6;// freq of operation
+c=3*10^8;//velo of light
+// we have to find the length of line in degree
+wl=vf*c/f//wavelength
+// Then the length of line in degree is
+ang=l/wl*360
+// calculation of impedance
+Z=Zo*(ZL+(%i*Zo*tand(ang)))/(Zo+(%i*ZL*tand(ang)));
+disp('ohm',Z,'The impedance looking toward the load');
\ No newline at end of file |