|
FERS 1.0.0
The Flexible Extensible Radar Simulator
|
Represents a sinc function-based antenna gain pattern. More...
#include "antenna_factory.h"
Inheritance diagram for antenna::Sinc:
Collaboration diagram for antenna::Sinc:Public Member Functions | |
| Sinc (const std::string_view name, const RealType alpha, const RealType beta, const RealType gamma) | |
| Constructs a Sinc antenna with the given parameters. | |
| ~Sinc () override=default | |
| Sinc (const Sinc &)=delete | |
| Sinc & | operator= (const Sinc &)=delete |
| Sinc (Sinc &&)=delete | |
| Sinc & | operator= (Sinc &&)=delete |
| RealType | getAlpha () const noexcept |
| Gets the alpha parameter of the sinc function. | |
| RealType | getBeta () const noexcept |
| Gets the beta parameter of the sinc function. | |
| RealType | getGamma () const noexcept |
| Gets the gamma parameter of the sinc function. | |
| RealType | getGain (const math::SVec3 &angle, const math::SVec3 &refangle, RealType wavelength) const noexcept override |
| Computes the gain of the sinc antenna based on the input parameters. | |
| RealType | getEfficiencyFactor () const noexcept |
| Retrieves the efficiency factor of the antenna. | |
| std::string | getName () const noexcept |
| Retrieves the name 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. | |
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 sinc function-based antenna gain pattern.
This antenna has a gain pattern defined by a sinc function, with customizable parameters.
Definition at line 159 of file antenna_factory.h.
| antenna::Sinc::Sinc | ( | const std::string_view | name, |
| const RealType | alpha, | ||
| const RealType | beta, | ||
| const RealType | gamma | ||
| ) |
Constructs a Sinc antenna with the given parameters.
| name | The name of the antenna. |
| alpha | The alpha parameter. |
| beta | The beta parameter. |
| gamma | The gamma parameter. |
Definition at line 170 of file antenna_factory.h.
|
overridedefault |
|
delete |
|
delete |
|
noexcept |
Gets the alpha parameter of the sinc function.
Definition at line 186 of file antenna_factory.h.
|
staticprotectednoexceptinherited |
Computes the angle between the input and reference angles.
| angle | The input angle. |
| refangle | The reference angle. |
Definition at line 93 of file antenna_factory.cpp.
References math::SVec3::length.
|
noexcept |
Gets the beta parameter of the sinc function.
Definition at line 189 of file antenna_factory.h.
|
noexceptinherited |
Retrieves the efficiency factor of the antenna.
Definition at line 73 of file antenna_factory.h.
Referenced by antenna::Isotropic::getGain(), antenna::XmlAntenna::getGain(), antenna::H5Antenna::getGain(), and antenna::to_json().
Here is the caller graph for this function:
|
overridevirtualnoexcept |
Computes the gain of the sinc antenna based on the input parameters.
| 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 106 of file antenna_factory.cpp.
|
noexcept |
Gets the gamma parameter of the sinc function.
Definition at line 192 of file antenna_factory.h.
|
noexceptinherited |
Retrieves the name of the antenna.
Definition at line 80 of file antenna_factory.h.
Referenced by antenna::to_json(), radar::to_json(), and radar::to_json().
Here is the caller graph for this function:
|
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 89 of file antenna_factory.h.
|
noexceptinherited |
Sets the efficiency factor of the antenna.
| loss | The new efficiency factor. |
Definition at line 84 of file antenna_factory.cpp.
References LOG.