Borrar filtros
Borrar filtros

factor directional antenna array

1 visualización (últimos 30 días)
Pomisov Andrey
Pomisov Andrey el 15 de Oct. de 2012
Hello! How does the use of Phased Array System Toolbox to calculate the ratio of the simulated directional antenna array?
  2 comentarios
Honglei Chen
Honglei Chen el 16 de Oct. de 2012
Hi Pomisov, could you clarify what you mean by ratio?
Pomisov Andrey
Pomisov Andrey el 16 de Oct. de 2012
Directive gain of the antenna array

Iniciar sesión para comentar.

Respuesta aceptada

Honglei Chen
Honglei Chen el 18 de Oct. de 2012
Editada: Honglei Chen el 22 de Oct. de 2012
Hi Pomisov,
There are two ways you can see the directivity information.
The first one is to plot the radiation pattern. For example
fc = 3e8; c = 3e8;
h = phased.ULA(4,0.5);
plotResponse(h,fc,c,'format','polar')
You can also use ArrayGain. It is the SNR gain achieved by the array compared to a single element. It is not exactly the directivity but it is related to that.
fc = 3e8; c = 3e8;
h = phased.ULA(4,0.5);
hag = phased.ArrayGain('SensorArray',h,'PropagationSpeed',c);
% calculate array gain at boresight in dB
g = step(hag,fc,[0;0])
HTH,
  1 comentario
Pomisov Andrey
Pomisov Andrey el 21 de Oct. de 2012
But how do I calculate it is numerically Directive gain of the antenna array???

Iniciar sesión para comentar.

Más respuestas (1)

Pomisov Andrey
Pomisov Andrey el 21 de Oct. de 2012
But how do I calculate it is numerically Directive gain of the antenna array???
  1 comentario
Honglei Chen
Honglei Chen el 22 de Oct. de 2012
Does the code above using ArrayGain works for you? If not, could you give me a simplified example? Thanks.

Iniciar sesión para comentar.

Categorías

Más información sobre Antennas, Microphones, and Sonar Transducers en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by