Package: inet.visualizer.canvas.physicallayer
RadioCanvasVisualizer
simple moduleThis module visualizes radios on a 2D canvas.
See also: RadioOsgVisualizer, RadioVisualizer, RadioVisualizerBase, IRadioVisualizer
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
| Name | Type | Description |
|---|---|---|
| RadioVisualizerBase | simple module |
This is a base module for radio visualizer simple modules. |
Parameters
| Name | Type | Default value | Description |
|---|---|---|---|
| visualizationTargetModule | string | "^" |
module path relative to the visualizer which determines where the visualization should appear in the user interface, parent module by default |
| visualizationSubjectModule | string | "^" |
module path relative to the visualizer which determines what part of the simulation model the visualizer displays in the user interface, parent module by default |
| tags | string | "" |
tag added to each visualization for disambiguation in the runtime environment |
| networkNodeVisualizerModule | string | "^.networkNodeVisualizer" |
module path to the network node visualizer module, refers to a sibling submodule by default |
| displayRadios | bool | false | |
| displayRadioMode | bool | true | |
| displayReceptionState | bool | true | |
| displayTransmissionState | bool | true | |
| displayAntennaLobes | bool | false | |
| radioFilter | string | "**" |
which radios are considered, matches all radios by default |
| radioModeImages | string | "block/process_vs block/timer_vs block/wrx_vs block/wtx_vs block/wrxtx_vs block/cogwheel_vs" | |
| receptionStateImages | string | "- - misc/receiving misc/receiving" | |
| transmissionStateImages | string | "- - misc/transmitting" | |
| width | double | 16 | |
| height | double | 16 | |
| placementHint | string | "bottomRight" |
annotation placement hint, space separated list of any, top, bottom, left, right, topLeft, topCenter, topRight, etc. |
| placementPriority | double | 0 |
determines the order of annotation positioning |
| antennaLobeNormalize | bool | false |
true means maximum gain, false means 0dB is displayed at the given antennaLobeRadius |
| antennaLobeRelativeLabels | bool | false |
determines whether gain labels are relative or absolute (if true, maximum gain label is 0dB) |
| antennaLobePlaneGlobal | bool | true |
compute antenna lobe relative to the global or antenna local coordinate systems, global by default |
| antennaLobePlane | string | "view" |
compute antenna lobe in this plane, view by default |
| antennaLobeMode | string | "logarithmic" | |
| antennaLobeLogarithmicBase | double | 10 | |
| antennaLobeLogarithmicScale | double | 100 |
distance change in pixels for 10dB |
| antennaLobeRadius | double | 100 |
distance in pixels for 0dB (1 gain) or maximum gain depending on antennaLobeNormalize parameter |
| antennaLobeStep | double | 10deg | |
| antennaLobeOpacity | double | 0.25 |
opacity of the antenna lobe |
| antennaLobeLineSmooth | bool | true | |
| antennaLobeLineColor | string | "black" |
antenna lobe line color, black by default |
| antennaLobeLineStyle | string | "solid" |
antenna lobe line style (solid, dashed, dotted) |
| antennaLobeLineWidth | double | 1 |
antenna lobe line width |
| antennaLobeFillColor | string | "white" |
antenna lobe fill color, white by default |
| zIndex | double | 10 |
determines the drawing order of figures relative to other visualizers |
Properties
| Name | Value | Description |
|---|---|---|
| class | RadioCanvasVisualizer | |
| display | i=block/app |
Source code
// // This module visualizes radios on a 2D canvas. // // @see ~RadioOsgVisualizer, ~RadioVisualizer, ~RadioVisualizerBase, ~IRadioVisualizer // simple RadioCanvasVisualizer extends RadioVisualizerBase like IRadioVisualizer { parameters: double zIndex = default(10); // determines the drawing order of figures relative to other visualizers @class(RadioCanvasVisualizer); }File: src/inet/visualizer/canvas/physicallayer/RadioCanvasVisualizer.ned