blob: 020b1b8ea9de4db64f4a6a52225a57a6774cecb8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Ex:32
clc;
clear;
close;
f=14;//frequency
A_o=-(21.45+20*log(f)/log(10));//effective area in db
y_str=-100;//flux density required to saturate the transponder in db
l_s=200;//free space losses in db
e_irp=y_str+A_o+l_s;//the earth station EIRP required for saturation in dbw
printf("the earth station EIRP required for saturation=%f dbW",e_irp);
|