diff options
Diffstat (limited to '728/CH7/EX7.1')
-rwxr-xr-x | 728/CH7/EX7.1/Ex7_1.sce | 17 | ||||
-rwxr-xr-x | 728/CH7/EX7.1/Ex7_1.txt | 17 | ||||
-rwxr-xr-x | 728/CH7/EX7.1/Ex7_1_ans.txt | 5 |
3 files changed, 39 insertions, 0 deletions
diff --git a/728/CH7/EX7.1/Ex7_1.sce b/728/CH7/EX7.1/Ex7_1.sce new file mode 100755 index 000000000..e6da56039 --- /dev/null +++ b/728/CH7/EX7.1/Ex7_1.sce @@ -0,0 +1,17 @@ +//Caption:Calculate the SWR of the transmission line
+//Exa:7.1
+clc;
+clear;
+close;
+//Given:
+c=3*10^10;//in cm/s
+a=4;//in cm
+b=2.5;//in cm
+f=10*10^9;//in Hz
+d=0.1;//distance between 2 minimum power points(in cm)
+//For TE10 mode:
+wl_c=2*a;
+wl_o=c/f;
+wl_g=wl_o/sqrt(1-(wl_o/wl_c)^2);
+S=wl_g/(%pi*d);
+disp(S,'Voltage standing wave ratio =');
\ No newline at end of file diff --git a/728/CH7/EX7.1/Ex7_1.txt b/728/CH7/EX7.1/Ex7_1.txt new file mode 100755 index 000000000..e6da56039 --- /dev/null +++ b/728/CH7/EX7.1/Ex7_1.txt @@ -0,0 +1,17 @@ +//Caption:Calculate the SWR of the transmission line
+//Exa:7.1
+clc;
+clear;
+close;
+//Given:
+c=3*10^10;//in cm/s
+a=4;//in cm
+b=2.5;//in cm
+f=10*10^9;//in Hz
+d=0.1;//distance between 2 minimum power points(in cm)
+//For TE10 mode:
+wl_c=2*a;
+wl_o=c/f;
+wl_g=wl_o/sqrt(1-(wl_o/wl_c)^2);
+S=wl_g/(%pi*d);
+disp(S,'Voltage standing wave ratio =');
\ No newline at end of file diff --git a/728/CH7/EX7.1/Ex7_1_ans.txt b/728/CH7/EX7.1/Ex7_1_ans.txt new file mode 100755 index 000000000..14957e63e --- /dev/null +++ b/728/CH7/EX7.1/Ex7_1_ans.txt @@ -0,0 +1,5 @@ +
+ Voltage standing wave ratio =
+
+ 10.301015
+
\ No newline at end of file |