diff options
Diffstat (limited to '2414/CH14/EX14.10/Ex14_10.sce')
-rwxr-xr-x | 2414/CH14/EX14.10/Ex14_10.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2414/CH14/EX14.10/Ex14_10.sce b/2414/CH14/EX14.10/Ex14_10.sce new file mode 100755 index 000000000..94343a9cf --- /dev/null +++ b/2414/CH14/EX14.10/Ex14_10.sce @@ -0,0 +1,14 @@ +clc;
+close();
+clear();
+//page no 484
+//prob no. 14.10
+ZL=100; //ohm
+RL=ZL;
+R0=300; //ohm
+TauL=(RL-R0)/(RL+R0);
+
+mprintf('(a)The reflection coefficient at load is= %0.2f,',TauL);
+
+S=R0/RL;
+mprintf('\n (b) The standing wave ratio is, S = %.0f \n',S);
|