|
FERS 0.1.0
The Flexible Extensible Radar Simulator
|
Represents a Gaussian-shaped antenna gain pattern. More...
#include "antenna_factory.h"
Inheritance diagram for antenna::Gaussian:
Collaboration diagram for antenna::Gaussian:Public Member Functions | |
| Gaussian (const std::string_view name, const RealType azscale, const RealType elscale, const SimId id=0) | |
| Constructs a Gaussian antenna with the given parameters. | |
| ~Gaussian () override=default | |
| Gaussian (const Gaussian &)=delete | |
| Gaussian & | operator= (const Gaussian &)=delete |
| Gaussian (Gaussian &&)=delete | |
| Gaussian & | operator= (Gaussian &&)=delete |
| RealType | getGain (const math::SVec3 &angle, const math::SVec3 &refangle, RealType wavelength) const noexcept override |
| Computes the gain of the Gaussian antenna. | |
| RealType | getAzimuthScale () const noexcept |
| Gets the azimuth scale factor. | |
| RealType | getElevationScale () const noexcept |
| Gets the elevation scale factor. | |
| void | setAzimuthScale (RealType azscale) noexcept |
| Sets the azimuth scale factor of the Gaussian function. | |
| void | setElevationScale (RealType elscale) noexcept |
| Sets the elevation scale factor of the Gaussian function. | |
| RealType | getEfficiencyFactor () const noexcept |
| Retrieves the efficiency factor of the antenna. | |
| std::string | getName () const noexcept |
| Retrieves the name of the antenna. | |
| SimId | getId () const noexcept |
| Retrieves the unique ID of the antenna. | |
| virtual RealType | getNoiseTemperature (const math::SVec3 &) const noexcept |
| Computes the noise temperature of the antenna based on the angle. | |
| void | setEfficiencyFactor (RealType loss) noexcept |
| Sets the efficiency factor of the antenna. | |
| void | setName (std::string name) noexcept |
| Sets the name of the antenna. | |
Static Protected Member Functions | |
| static RealType | getAngle (const math::SVec3 &angle, const math::SVec3 &refangle) noexcept |
| Computes the angle between the input and reference angles. | |
Represents a Gaussian-shaped antenna gain pattern.
This antenna has a gain pattern that follows a Gaussian distribution.
Definition at line 260 of file antenna_factory.h.
| antenna::Gaussian::Gaussian | ( | const std::string_view | name, |
| const RealType | azscale, | ||
| const RealType | elscale, | ||
| const SimId | id = 0 |
||
| ) |
Constructs a Gaussian antenna with the given parameters.
| name | The name of the antenna. |
| azscale | The azimuth scale factor. |
| elscale | The elevation scale factor. |
Definition at line 270 of file antenna_factory.h.
|
overridedefault |
|
delete |
|
staticprotectednoexceptinherited |
Computes the angle between the input and reference angles.
| angle | The input angle. |
| refangle | The reference angle. |
Definition at line 356 of file antenna_factory.cpp.
References math::SVec3::length.
|
noexcept |
Gets the azimuth scale factor.
Definition at line 297 of file antenna_factory.h.
|
noexceptinherited |
Retrieves the efficiency factor of the antenna.
Definition at line 80 of file antenna_factory.h.
Referenced by antenna::Isotropic::getGain(), antenna::XmlAntenna::getGain(), and antenna::H5Antenna::getGain().
Here is the caller graph for this function:
|
noexcept |
Gets the elevation scale factor.
Definition at line 300 of file antenna_factory.h.
|
overridevirtualnoexcept |
Computes the gain of the Gaussian antenna.
| angle | The angle at which the gain is to be computed. |
| refangle | The reference angle. |
| wavelength | The wavelength of the signal. |
Implements antenna::Antenna.
Definition at line 363 of file antenna_factory.cpp.
References a.
|
noexceptinherited |
Retrieves the unique ID of the antenna.
Definition at line 94 of file antenna_factory.h.
Referenced by radar::to_json().
Here is the caller graph for this function:
|
noexceptinherited |
Retrieves the name of the antenna.
Definition at line 87 of file antenna_factory.h.
|
virtualnoexceptinherited |
Computes the noise temperature of the antenna based on the angle.
| angle | The angle at which the noise temperature is to be computed. |
Definition at line 103 of file antenna_factory.h.
Sets the azimuth scale factor of the Gaussian function.
| azscale | The new azimuth scale factor. |
Definition at line 307 of file antenna_factory.h.
Sets the efficiency factor of the antenna.
| loss | The new efficiency factor. |
Definition at line 347 of file antenna_factory.cpp.
References LOG.
Sets the elevation scale factor of the Gaussian function.
| elscale | The new elevation scale factor. |
Definition at line 314 of file antenna_factory.h.
|
noexceptinherited |
Sets the name of the antenna.
| name | The new name of the antenna. |
Definition at line 117 of file antenna_factory.h.