blob: 44ea7f054c89cfaa993448695925066eb52eb3f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//chapter 2
//may june 2013
//Aem=Gdmax*lamda^2/4*pi;
printf("\n");
Gdmax=1.5;//for half wave dipole
f=10^9;
c=3*10^8;
lamda=c/f;
Aem=(Gdmax*(lamda)^2)/(4*(%pi));
printf("the effective aperture is %gm^2",Aem);
|