attempt to update physical configuration
This commit is contained in:
parent
802393725e
commit
b6cfc2085c
1 changed files with 12 additions and 22 deletions
|
@ -22,30 +22,20 @@ class EmaneUniversalModel(EmaneModel):
|
|||
|
||||
# universal PHY parameters
|
||||
_confmatrix_base = [
|
||||
("bandwidth", ConfigDataTypes.UINT64.value, "1M",
|
||||
"", "rf bandwidth (hz)"),
|
||||
("frequency", ConfigDataTypes.UINT64.value, "2.347G",
|
||||
"", "frequency (Hz)"),
|
||||
("frequencyofinterest", ConfigDataTypes.UINT64.value, "2.347G",
|
||||
"", "frequency of interest (Hz)"),
|
||||
("subid", ConfigDataTypes.UINT16.value, "1",
|
||||
"", "subid"),
|
||||
("systemnoisefigure", ConfigDataTypes.FLOAT.value, "4.0",
|
||||
"", "system noise figure (dB)"),
|
||||
("txpower", ConfigDataTypes.FLOAT.value, "0.0",
|
||||
"", "transmit power (dBm)"),
|
||||
("bandwidth", ConfigDataTypes.UINT64.value, "1M", "", "rf bandwidth (Hz)"),
|
||||
("frequency", ConfigDataTypes.UINT64.value, "2.347G", "", "frequency (Hz)"),
|
||||
("frequencyofinterest", ConfigDataTypes.UINT64.value, "2.347G", "", "frequency of interest (Hz)"),
|
||||
("subid", ConfigDataTypes.UINT16.value, "1", "", "subid"),
|
||||
("systemnoisefigure", ConfigDataTypes.FLOAT.value, "4.0", "", "system noise figure (dB)"),
|
||||
("txpower", ConfigDataTypes.FLOAT.value, "0.0", "", "transmit power (dBm)"),
|
||||
]
|
||||
_confmatrix_091 = [
|
||||
("fixedantennagain", ConfigDataTypes.FLOAT.value, "0.0",
|
||||
"", "antenna gain (dBi)"),
|
||||
("fixedantennagainenable", ConfigDataTypes.BOOL.value, "1",
|
||||
"On,Off", "enable fixed antenna gain"),
|
||||
("noisemode", ConfigDataTypes.STRING.value, "none",
|
||||
"none,all,outofband", "noise processing mode"),
|
||||
("noisebinsize", ConfigDataTypes.UINT64.value, "20",
|
||||
"", "noise bin size in microseconds"),
|
||||
("propagationmodel", ConfigDataTypes.STRING.value, "2ray",
|
||||
"precomputed,2ray,freespace", "path loss mode"),
|
||||
("fixedantennagain", ConfigDataTypes.FLOAT.value, "0.0", "", "antenna gain (dBi)"),
|
||||
("fixedantennagainenable", ConfigDataTypes.BOOL.value, "1", "On,Off", "enable fixed antenna gain"),
|
||||
("noisemode", ConfigDataTypes.STRING.value, "none", "none,all,outofband", "noise processing mode"),
|
||||
("noisebinsize", ConfigDataTypes.UINT64.value, "20", "", "noise bin size in microseconds"),
|
||||
("propagationmodel", ConfigDataTypes.STRING.value, "2ray", "precomputed,2ray,freespace", "path loss mode"),
|
||||
("fading.model", ConfigDataTypes.STRING.value, "none", "none,event,nakagami", "Defines fading model"),
|
||||
]
|
||||
config_matrix = _confmatrix_base + _confmatrix_091
|
||||
|
||||
|
|
Loading…
Reference in a new issue