FlightGear next
antenna.hxx
Go to the documentation of this file.
1// antenna.hxx -- FGRadioAntenna: class to represent antenna properties
2//
3// Written by Adrian Musceac YO8RZZ, started December 2011.
4//
5// This program is free software; you can redistribute it and/or
6// modify it under the terms of the GNU General Public License as
7// published by the Free Software Foundation; either version 2 of the
8// License, or (at your option) any later version.
9//
10// This program is distributed in the hope that it will be useful, but
11// WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13// General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with this program; if not, write to the Free Software
17// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
19#pragma once
20
21#ifndef __cplusplus
22# error This library requires C++
23#endif
24
25#include <simgear/compiler.h>
26#include <simgear/structure/subsystem_mgr.hxx>
27#include <Main/fg_props.hxx>
28
29#include <simgear/math/sg_geodesy.hxx>
30#include <simgear/debug/logstream.hxx>
31
32
34{
35private:
36
37/*** load external plot file generated by NEC2. needs to have a txt extension
38* when naming plots, use the following scheme: type_frequencyMHz.txt
39* eg: yagi_110.txt or LPDA_333.txt
40* @param: name of file
41* @return: none
42***/
43 void load_NEC_antenna_pattern(std::string type);
44
45 int _mirror_y;
46 int _mirror_z;
47 int _invert_ground;
48 double _heading_deg;
49 double _elevation_angle_deg;
50 struct AntennaGain {
51 double azimuth;
52 double elevation;
53 double gain;
54 };
55 SGPath _pattern_file;
56 typedef std::vector<AntennaGain*> AntennaPattern;
57 AntennaPattern _pattern;
58
59public:
60
61 FGRadioAntenna(std::string type);
63
64/*** calculate far-field antenna gain on a 3D volume around it
65* @param: bearing to the other station, vertical angle (some call it theta)
66* @return: gain relative to maximum normalized gain. will be negative in all cases
67***/
68 double calculate_gain(double bearing, double angle);
69
71 inline void set_heading(double heading_deg) {_heading_deg = heading_deg ;};
72 inline void set_elevation_angle(double elevation_angle_deg) {_elevation_angle_deg = elevation_angle_deg ;};
73};
void set_elevation_angle(double elevation_angle_deg)
Definition antenna.hxx:72
FGRadioAntenna(std::string type)
Definition antenna.cxx:35
void set_heading(double heading_deg)
some convenience setters and getters (unused for now)
Definition antenna.hxx:71
double calculate_gain(double bearing, double angle)
Definition antenna.cxx:52