Mode
SCPI Command :
[SENSe]:POWer:ACHannel:MODE
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get() ReferenceMode[source]
# [SENSe]:POWer:ACHannel:MODE value: enums.ReferenceMode = driver.sense.power.achannel.mode.get()
Selects the way the FSW displays the power of adjacent channels. You need at least one adjacent channel for the command to work.
- Returns:
mode: ABSolute | RELative ABSolute Shows the absolute power of all channels RELative Shows the power of adjacent and alternate channels in relation to the transmission channel
- set(mode: ReferenceMode) None[source]
# [SENSe]:POWer:ACHannel:MODE driver.sense.power.achannel.mode.set(mode = enums.ReferenceMode.ABSolute)
Selects the way the FSW displays the power of adjacent channels. You need at least one adjacent channel for the command to work.
- Parameters:
mode – ABSolute | RELative ABSolute Shows the absolute power of all channels RELative Shows the power of adjacent and alternate channels in relation to the transmission channel