Linear 45 degrees polarized antenna element

1 view (last 30 days)
I am trying to use phased array toolbox to generate an antenna element that under 45 degrees. If I am correct, I can generate a Y-axis polarized antenna element using
antenna1 = phased.ShortDipoleAntennaElement( 'FrequencyRange',[1,2]*1e9,'AxisDirection','Y');
I tried to check page on polarized fields, https://www.mathworks.com/help/phased/ug/polarized-fields.html and I saw that there are linear basis functions for polarization fields, for example
[0;1]
is vertical,
[1;0]
is horizontal and
1/sqrt(2)*[1;1]
is linear 45 degrees and so on.
So I'm looking for function in phased array toolbox that would let me specify polarization plane using linear basis vectors. All responses are appreciated.

Answers (1)

Honglei Chen
Honglei Chen on 2 Jan 2019
In R2018b, there is no easy way to specify a 45-degree short dipole. The easier way to achieve that is probably combine the field from a Z direction short dipole and Y direction short dipole.
If you have access to R2019a prerelease, then you can get a short dipole with 45 degree linear polarization as
ant = phased.ShortDipoleAntennaElement
ant.AxisDirection = 'Custom'
ant.CustomAxisDirection = [0;1;1]
pattern(ant,3e8)
HTH

Community Treasure Hunt

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

Start Hunting!