blob: d5ff30bab276258b3bdac0efb5aa11d7cb0db2e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//Chapter8
//Example8.18, page no350
//Given
Zo=50// characteristic impedance
P=500e-3//Supplied power
S=1.4//VSWR on the line
Emax=sqrt(Zo*S*P)//Max vtg
Emin=sqrt(Zo*P/S)// Min vtg
mprintf('The max voltage on line is %f V\n The min voltage on line is %f V',Emax,Emin)
|