How to implement an offset parabolic reflector?

Is it possible to simulate an offset parabolic reflector in MATLAB? I see a parabolic reflector, but not an offset one. Is there a way to modify it such that it can be made offset?

 Réponse acceptée

Offset parabolic reflector can be created by modifying the existing properties of the "reflectorParabolic" object. Different type of exciters can be used for the reflector. The code below shows offset parabolic reflector with conical horn as exciter:
% create a parabolic reflector with hornconical as exciter
ant=reflectorParabolic;
ant.Exciter=design(hornConical,18e9);
ant.Tilt=30;
% Move the feed offset of the reflector
ant.FeedOffset=[0 -0.16 0.08];
% Tilt the exciter
ant.Exciter.Tilt=140;
% Visualise the object
show(ant);

Plus de réponses (0)

Catégories

En savoir plus sur Installed Antenna and Large Structures dans Centre d'aide et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by