Received Power Vs Distance

조회 수: 2 (최근 30일)
A.J.M
A.J.M 2020년 9월 2일
댓글: A.J.M 2020년 9월 3일
Hi Everyone;
My MATLAB code result in the received power increases with distance as shown in the figure in spite I use Friis formula. Where is my mistake.
Pr=Pt*Gt*Gr*lambda^2./16*pi^2.*(Z).^2; %Friis Formula

채택된 답변

Alan Stevens
Alan Stevens 2020년 9월 3일
If Z is distance then you should probably have
Pr=Pt*Gt*Gr*lambda^2./(16*pi^2.*Z.^2);
Note the position of the parentheses. In your version Z is on the numerator.
  댓글 수: 3
Alan Stevens
Alan Stevens 2020년 9월 3일
Yes, the problem was the positioning of the parentheses.
I've no idea if the formula is correct in total, but power almost certainly decreases with distance away from the source.
A.J.M
A.J.M 2020년 9월 3일
Thanks a lot Mr.Alan Stevens.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by