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.15/TL_Ex_8_15_Pg_334.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 '1574/CH8/EX8.15/TL_Ex_8_15_Pg_334.sce')
-rwxr-xr-x | 1574/CH8/EX8.15/TL_Ex_8_15_Pg_334.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1574/CH8/EX8.15/TL_Ex_8_15_Pg_334.sce b/1574/CH8/EX8.15/TL_Ex_8_15_Pg_334.sce new file mode 100755 index 000000000..73a8d8183 --- /dev/null +++ b/1574/CH8/EX8.15/TL_Ex_8_15_Pg_334.sce @@ -0,0 +1,16 @@ +clc
+//Chapter8
+//Example8.15, page no 334
+//GivenR=0.01
+x=10//line length
+Zo=100// characteristic impedance
+a=0.1// attenuation constant
+Beta=0.05// phase constant
+Is=20e-3// source current
+Gamma=a+ %i*Beta// propagation constant
+
+I=Is/cosh(Gamma*x)// received current
+
+[I_r,I_i]=polar(I)
+
+mprintf('The current received is= %f mA at phase%f',1000*I_r,I_i*180/%pi)
|