Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 34 additions & 2 deletions schemas/groups/electrical.json
Original file line number Diff line number Diff line change
Expand Up @@ -502,9 +502,9 @@
}
}
}
},
},
"chargers": {
"description": "Data about AC sourced battery charger",
"description": "Data about an AC/DC sourced battery charger",
"patternProperties": {
"(^[A-Za-z0-9]+$)": {
"type": "object",
Expand All @@ -520,6 +520,38 @@
}
}
},
"converters": {
"description": "Data about a voltage step up/down DC-DC converter",
"patternProperties": {
"(^[A-Za-z0-9]+$)": {
"type": "object",
"title": "Charger",
"description": "DC-DC converter",
"allOf": [{
"$ref": "#/definitions/identity"
},{
"$ref": "#/definitions/dcQualities"
}],
"properties": {
"inputVoltage": {
"description": "Voltage being supplied to the converter",
"$ref": "../definitions.json#/definitions/numberValue",
"units": "V"
},
"inputCurrent": {
"description": "Amperage being supplied to the converter",
"$ref": "../definitions.json#/definitions/numberValue",
"units": "A"
},
"inputPower": {
"description": "Power being supplied to the converter",
"$ref": "../definitions.json#/definitions/numberValue",
"units": "W"
}
}
}
}
},
"alternators": {
"description": "Data about an Alternator charging device",
"patternProperties": {
Expand Down