diff options
Diffstat (limited to '605/CH3/EX3.13/3_13.sce')
-rwxr-xr-x | 605/CH3/EX3.13/3_13.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/605/CH3/EX3.13/3_13.sce b/605/CH3/EX3.13/3_13.sce new file mode 100755 index 000000000..f4b177645 --- /dev/null +++ b/605/CH3/EX3.13/3_13.sce @@ -0,0 +1,10 @@ +//data
+ZL=complex(73,-42.5)
+Zo=complex(50,.01)
+//formula and result
+printf("\nresult:-")
+F=(ZL-Zo)/(ZL+Zo)
+p=sqrt(real(F)^2+imag(F)^2)
+VSWR=(1+p)/(1-p)
+disp(F,"F=")
+printf("\nVSWR=%.4f",VSWR)
\ No newline at end of file |