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 /761/CH14/EX14.13/14_13.sce | |
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 '761/CH14/EX14.13/14_13.sce')
-rwxr-xr-x | 761/CH14/EX14.13/14_13.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/761/CH14/EX14.13/14_13.sce b/761/CH14/EX14.13/14_13.sce new file mode 100755 index 000000000..bcb329351 --- /dev/null +++ b/761/CH14/EX14.13/14_13.sce @@ -0,0 +1,15 @@ +clc;
+//page no 490
+//prob no. 14.13
+Zo=50;//line impedance in ohm
+f=100*10^6;//operating freq
+vf=0.7;//velocity factor
+L=6;//length in m
+c=3*10^8;//velo of light
+ZL=50+%i*50;//load impedance in ohm
+// we have to calculate length in degree,so for this first find wl
+wl=vf*c/f;//wavength in m
+ang=360*L/wl;
+// now from the graph input impedance is 19.36+%i5.44;
+Zi=19.36+%i*5.44;
+disp('ohm',Zi,'Input impedance is');
\ No newline at end of file |