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/CH7/EX7.3 | |
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/CH7/EX7.3')
-rwxr-xr-x | 728/CH7/EX7.3/Ex7_3.sce | 11 | ||||
-rwxr-xr-x | 728/CH7/EX7.3/Ex7_3.txt | 11 | ||||
-rwxr-xr-x | 728/CH7/EX7.3/Ex7_3_ans.txt | 4 |
3 files changed, 26 insertions, 0 deletions
diff --git a/728/CH7/EX7.3/Ex7_3.sce b/728/CH7/EX7.3/Ex7_3.sce new file mode 100755 index 000000000..fd065113f --- /dev/null +++ b/728/CH7/EX7.3/Ex7_3.sce @@ -0,0 +1,11 @@ +//Caption:Calculate the SWR of the waveguide
+//Exa:7.3
+clc;
+clear;
+close;
+//Given:
+P_i=2.5;//in mW
+P_r=0.15;//in mW
+p=sqrt(P_r/P_i);
+S=(1+p)/(1-p);
+disp(S,'Voltage standing wave ratio =');
diff --git a/728/CH7/EX7.3/Ex7_3.txt b/728/CH7/EX7.3/Ex7_3.txt new file mode 100755 index 000000000..fd065113f --- /dev/null +++ b/728/CH7/EX7.3/Ex7_3.txt @@ -0,0 +1,11 @@ +//Caption:Calculate the SWR of the waveguide
+//Exa:7.3
+clc;
+clear;
+close;
+//Given:
+P_i=2.5;//in mW
+P_r=0.15;//in mW
+p=sqrt(P_r/P_i);
+S=(1+p)/(1-p);
+disp(S,'Voltage standing wave ratio =');
diff --git a/728/CH7/EX7.3/Ex7_3_ans.txt b/728/CH7/EX7.3/Ex7_3_ans.txt new file mode 100755 index 000000000..22ac0931c --- /dev/null +++ b/728/CH7/EX7.3/Ex7_3_ans.txt @@ -0,0 +1,4 @@ +Voltage standing wave ratio =
+
+ 1.6488276
+
\ No newline at end of file |