Antennas on A Glider as Platform
Create a platform from the STL file of a glider.
plat = platform('FileName', 'glider.stl', 'Units', 'm'); figure; show(plat);
Install a dipole antenna element on the above platform. Design the dipole to operate at a frequency of 1 GHz.
ant = installedAntenna; ant.Platform = plat; ant.Element = design(dipole,1e9)
ant = installedAntenna with properties: Platform: [1x1 platform] Element: [1x1 dipole] ElementPosition: [0 0 0.0750] Reference: 'feed' FeedVoltage: 1 FeedPhase: 0 Tilt: 0 TiltAxis: [1 0 0] SolverType: 'MoM-PO'
ant.ElementPosition = [-1.2 0 0.5]
ant = installedAntenna with properties: Platform: [1x1 platform] Element: [1x1 dipole] ElementPosition: [-1.2000 0 0.5000] Reference: 'feed' FeedVoltage: 1 FeedPhase: 0 Tilt: 0 TiltAxis: [1 0 0] SolverType: 'MoM-PO'
figure; show(ant);
Visualize the pattern of this installation at 1 GHz.
figure; pattern(ant,1e9)