Simple Module SnrEval

File: contrib/nic/phyLayer/SnrEval.ned

C++ definition: click here

(no description)

Usage diagram:

The following diagram shows usage relationships between modules, networks and channels. Unresolved module (and channel) types are missing from the diagram. Click here to see the full picture.

Used in compound modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

AlohaSnrNic

This is the easiest nic to implement "real" network behaviour. It uses the CsmaMacLayer and the SnrDecider and SnrEval modules.

NicCsma (no description)

Parameters:

Name Type Description
debug bool

debug switch

publishRSSIAlways bool

if false, the RSSI will not be published during the reception of a frame

transmitterPower numeric
headerLength numeric const
carrierFrequency numeric
thermalNoise numeric
pathLossAlpha numeric
sensitivity numeric

Gates:

Name Direction Description
uppergateIn input
radioIn input
uppergateOut output
upperControlOut output

Source code:

simple SnrEval
    parameters:
	debug : bool, // debug switch
 	// if false, the RSSI will not be published 
        // during the reception of a frame
	publishRSSIAlways : bool, 
        transmitterPower : numeric,
	headerLength: numeric const,
	carrierFrequency: numeric,
	thermalNoise: numeric,
	pathLossAlpha: numeric,
	sensitivity: numeric;
    gates: 
        in: uppergateIn, radioIn;
        out: uppergateOut, upperControlOut;
endsimple