Simulator

SCPI Commands

BATTery:SIMulator:ENABle
BATTery:SIMulator:SOC
BATTery:SIMulator:RESistance
BATTery:SIMulator:TVOLtage
class SimulatorCls[source]

Simulator commands group definition. 14 total commands, 3 Subgroups, 4 group commands

get_enable() bool[source]
# SCPI: BATTery:SIMulator[:ENABle]
value: bool = driver.battery.simulator.get_enable()

Sets or queries the battery simulator state.

return

arg_0: 1 Enables the battery simulator state. 0 Disables the battery simulator state.

get_resistance() float[source]
# SCPI: BATTery:SIMulator:RESistance
value: float = driver.battery.simulator.get_resistance()

Queries the battery simulator internal resistance (ESR) .

return

result: No help available

get_soc() float[source]
# SCPI: BATTery:SIMulator:SOC
value: float = driver.battery.simulator.get_soc()

Sets or queries the state of charge (SoC) of the battery simulator.

return

arg_0: Sets SoC values.

get_tvoltage() float[source]
# SCPI: BATTery:SIMulator:TVOLtage
value: float = driver.battery.simulator.get_tvoltage()

Queries the terminal voltage (Vt) .

return

result: No help available

set_enable(arg_0: bool) None[source]
# SCPI: BATTery:SIMulator[:ENABle]
driver.battery.simulator.set_enable(arg_0 = False)

Sets or queries the battery simulator state.

param arg_0

1 Enables the battery simulator state. 0 Disables the battery simulator state.

set_soc(arg_0: float) None[source]
# SCPI: BATTery:SIMulator:SOC
driver.battery.simulator.set_soc(arg_0 = 1.0)

Sets or queries the state of charge (SoC) of the battery simulator.

param arg_0

Sets SoC values.

Subgroups