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 /728/CH4/EX4.16 | |
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 '728/CH4/EX4.16')
-rwxr-xr-x | 728/CH4/EX4.16/Ex4_16.sce | 16 | ||||
-rwxr-xr-x | 728/CH4/EX4.16/Ex4_16.txt | 16 | ||||
-rwxr-xr-x | 728/CH4/EX4.16/Ex4_16_ans.txt | 4 |
3 files changed, 36 insertions, 0 deletions
diff --git a/728/CH4/EX4.16/Ex4_16.sce b/728/CH4/EX4.16/Ex4_16.sce new file mode 100755 index 000000000..f930728d2 --- /dev/null +++ b/728/CH4/EX4.16/Ex4_16.sce @@ -0,0 +1,16 @@ +//Caption:Determine the charcteristic wave impedance
+//Exa:4.16
+clc;
+clear;
+close;
+c=3*10^10;//in cm/s
+f=10*10^9;//in Hz
+a=3;//in cm
+b=2;//in cm
+n=120*%pi;
+wl_o=c/f;
+wl_c=2*a*b/sqrt(a^2+b^2);
+Z_TM=n*sqrt(1-(wl_o/wl_c)^2);
+disp(Z_TM,'Characteristic impedance (in ohms) =');
+
+//answer in book is wrongly written as 61.618 ohms
\ No newline at end of file diff --git a/728/CH4/EX4.16/Ex4_16.txt b/728/CH4/EX4.16/Ex4_16.txt new file mode 100755 index 000000000..5031bff93 --- /dev/null +++ b/728/CH4/EX4.16/Ex4_16.txt @@ -0,0 +1,16 @@ +//Caption:Determine the charcteristic wave impedance
+//Exa:4.16
+clc;
+clear;
+close;
+c=3*10^10;//in cm/s
+f=10*10^9;//in Hz
+a=3;//in cm
+b=2;//in cm
+n=120*%pi;
+wl_o=c/f;
+wl_c=2*a*b/sqrt(a^2+b^2);
+Z_TM=n*sqrt(1-(wl_o/wl_c)^2);
+disp(Z_TM,'Characteristic impedance (in ohms) =');
+
+//answer in book is wrongly written as 61.618 ohms
diff --git a/728/CH4/EX4.16/Ex4_16_ans.txt b/728/CH4/EX4.16/Ex4_16_ans.txt new file mode 100755 index 000000000..9e4469d24 --- /dev/null +++ b/728/CH4/EX4.16/Ex4_16_ans.txt @@ -0,0 +1,4 @@ + Characteristic impedance (in ohms) =
+
+ 163.24194
+
|