blob: ffa22018bffe4e8d40d748a5b4de6b7fae4b8f48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//chapter 7
printf("\n");
n=0.9;
fmuf=10*10^6;
f=10*10^6;
h=400*10^3;
Nmax=(1-n^2)*f^2/81;
printf("the Nmax value is %g /m^3",Nmax);
fcr=sqrt(81*Nmax);
printf("\n the critical frequency is %gHz",fcr);
Dskip=2*h*sqrt((fmuf/fcr)^2-1);
printf("\n the skip distance is %gm",Dskip);
|