Data

SCPI Commands

BATTery:MODel:DATA
class DataCls[source]

Data commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class DataStruct[source]

Response structure. Fields:

  • Arg_0: List[int]: Sets the value for battery state of charge (SoC) .

  • Arg_1: List[float]: Sets the value for battery open-circuit voltage (Voc) .

  • Arg_2: List[float]: Sets the value for battery internal resistance (ESR) .

get() DataStruct[source]
# SCPI: BATTery:MODel:DATA
value: DataStruct = driver.battery.model.data.get()

Sets or queries the battery model data.

return

structure: for return value, see the help for DataStruct structure arguments.

set(arg_0: List[int], arg_1: List[float], arg_2: List[float]) None[source]
# SCPI: BATTery:MODel:DATA
driver.battery.model.data.set(arg_0 = [1, 2, 3], arg_1 = [1.1, 2.2, 3.3], arg_2 = [1.1, 2.2, 3.3])

Sets or queries the battery model data.

param arg_0

Sets the value for battery state of charge (SoC) .

param arg_1

Sets the value for battery open-circuit voltage (Voc) .

param arg_2

Sets the value for battery internal resistance (ESR) .