Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add DC-DC converters #652

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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