Main Content

Battery.Parameters

Define battery equivalent circuit parameters

Description

Use the Battery.Parameters object to define the battery equivalent circuit parameters. Battery.Parameters objects are contained in the Battery.PulseSequence and Battery.Pulse objects. The pulse sequence estimation sets some of the Battery.Parameters properties. You can override the properties by manually setting the properties. The number of pulses, N, in the dataset determines the length of each array.

Creation

Description

example

MATLAB® creates a paramObj = Battery.Parameters object that defines the battery equivalent circuit parameters.

Properties

expand all

A 1-by-N array of the state of charge (SOC) breakpoints.

Data Types: double

A 1-by-N array of the open circuit voltage, in V.

Data Types: double

A 1-by-N array of the minimum open circuit voltage, in V.

Data Types: double

A 1-by-N array of the maximum open circuit voltage, in V.

Data Types: double

A 1-by-N array of the terminal resistance, in Ohms.

Data Types: double

A 1-by-N array of the minimum terminal resistance, in Ohms.

Data Types: double

A 1-by-N array of the maximum terminal resistance, in Ohms.

Data Types: double

A 3-by-N array of the RC pair resistance, in Ohms.

Data Types: double

A 3-by-N array of the minimum RC pair resistance, in Ohms.

Data Types: double

A 3-by-N array of the maximum RC pair resistance, in Ohms.

Data Types: double

A 3-by-N array of the RC pair time constant, in s.

Data Types: double

A 3-by-N array of the minimum RC pair time constant, in s.

Data Types: double

A 3-by-N array of the maximum RC pair time constant, in s.

Data Types: double

Object Functions

lookupSocFromVoltageDetermine SOC from voltage
plotPlot battery parameter data

Examples

collapse all

This example shows how to create a Battery.Parameters object.

Create a Battery.Parameters object.

paramObj=Battery.Parameters;

Version History

Introduced in R2016b