|
FERS 1.0.0
The Flexible Extensible Radar Simulator
|
Represents an isotropic antenna with uniform gain in all directions. More...
#include "antenna_factory.h"
Inheritance diagram for antenna::Isotropic:
Collaboration diagram for antenna::Isotropic:Public Member Functions | |
| Isotropic (const std::string_view name) | |
| Constructs an Isotropic antenna with the given name. | |
| ~Isotropic () override=default | |
| Isotropic (const Isotropic &)=delete | |
| Isotropic & | operator= (const Isotropic &)=delete |
| Isotropic (Isotropic &&)=delete | |
| Isotropic & | operator= (Isotropic &&)=delete |
| RealType | getGain (const math::SVec3 &, const math::SVec3 &, RealType) const override |
| Computes the gain of the isotropic antenna. | |
| 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 an isotropic antenna with uniform gain in all directions.
This class models an ideal isotropic antenna, which has a directivity of 1 (0 dB).
Definition at line 119 of file antenna_factory.h.
|
explicit |
Constructs an Isotropic antenna with the given name.
| name | The name of the antenna. |
Definition at line 127 of file antenna_factory.h.
|
overridedefault |
|
delete |
|
delete |
|
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.
|
noexceptinherited |
Retrieves the efficiency factor of the antenna.
Definition at line 73 of file antenna_factory.h.
Referenced by getGain(), antenna::XmlAntenna::getGain(), antenna::H5Antenna::getGain(), and antenna::to_json().
Here is the caller graph for this function:
|
overridevirtual |
Computes the gain of the isotropic antenna.
Implements antenna::Antenna.
Definition at line 144 of file antenna_factory.h.
References antenna::Antenna::getEfficiencyFactor().
Here is the call graph for this function:
|
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.