diff options
Diffstat (limited to '3554/CH20/EX20.3/Ex20_3.sce')
-rw-r--r-- | 3554/CH20/EX20.3/Ex20_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3554/CH20/EX20.3/Ex20_3.sce b/3554/CH20/EX20.3/Ex20_3.sce new file mode 100644 index 000000000..cd3a49072 --- /dev/null +++ b/3554/CH20/EX20.3/Ex20_3.sce @@ -0,0 +1,13 @@ +// Exa 20.3
+
+clc;
+clear all;
+
+// Given data
+
+Vmax=8;//Maximum value of voltage
+Vmin=2;//minimum value of voltage
+
+//Solution
+SWR=(Vmax+Vmin)/(Vmax-Vmin);//Standing wave ratio
+printf('Standing Wave Ratio = %.2f \n ',SWR);
|