Battery profile manager

This feature requires a Battery Toolbox License.

The battery profile manager let you browse your database of battery profiles, to compare two or more profiles, and to import and export profiles.

You find the battery profile manager in File > Battery Profile Manager.

Profile manager dialog

In the profile manager you can see the discharge curves for the battery by selecting a profile.

Battery profile manager

Compare

If you want to compare several profiles, you click on Compare and the select the profiles you want to compare:

Compare profiles

Delete

By selecting a profile you can remove it by clicking Delete and confirm the deletion.

This operation cannot be undone

Export

You can export the selected profile by clicking Export and the selecting a name and a destination.

The profile will be exported in a JSON format, and can be imported into another instance of Otii.

Import

By clicking Import you can import one or more battery profiles previously exported from Otii.

If you want to import a profile created in another tool, use the format shown below.

Battery profile format

Required fields

{
    "id": "273c2632-c7ce-4c90-accc-ea095c2f0d5e",
    "dischargetables": [{
        "id": "4a8a56cc-309a-47d9-9997-adccd0a13cb7",
        "table": [
            {
                "voltage": 3.2014355659484863,
                "resistance": 10.413976669311523,
                "capacity": 0.0041708676144480705
            },
            {
                "voltage": 3.1991329193115234,
                "resistance": 10.606740951538086,
                "capacity": 0.008341789556046328
            },
            {
                "voltage": 3.1971662044525146,
                "resistance": 10.62671947479248,
                "capacity": 0.01251272236307462
            },
        ]
    }]
}

All fields

{
    "id": "273c2632-c7ce-4c90-accc-ea095c2f0d5e",
    "battery": {
        "capacity": 240.99087185329861,
        "capacityunit": "mAh",
        "voltage": 3,
        "voltageunit": "V",
        "model": "CR2032",
        "manufacturer": "Duracell_Ace_I",
        "size": "20x3.2",
        "sizeunit": "mm"
    },
    "dischargetables": [{
        "id": "4a8a56cc-309a-47d9-9997-adccd0a13cb7",
        "temperature": 25,
        "temperatureunit": "°C",
        "table": [
            {
                "voltage": 3.2014355659484863,
                "resistance": 10.413976669311523,
                "capacity": 0.0041708676144480705
            },
            {
                "voltage": 3.1991329193115234,
                "resistance": 10.606740951538086,
                "capacity": 0.008341789556046328
            },
            {
                "voltage": 3.1971662044525146,
                "resistance": 10.62671947479248,
                "capacity": 0.01251272236307462
            },
        ]
    }]
}