X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=9e514fed2af1ec08c821528ebdd85b977be83c3c;hb=3e1dfe427e0e0996471660f473ca2164382beddb;hp=49f799b9eede1da60c67d14fb2c2b1bc918ed696;hpb=a6609c86ed6ac21d51f1b1657d3c17dcdd55af85;p=e-mobility-charging-stations-simulator.git diff --git a/README.md b/README.md index 49f799b9..9e514fed 100644 --- a/README.md +++ b/README.md @@ -34,10 +34,11 @@ brew install node ## Installation -Enable corepack if not already done: +Enable corepack if not already done and install latest pnpm version: ```shell corepack enable +corepack prepare pnpm@latest --activate ``` In the repository root, run the following command: @@ -181,11 +182,13 @@ But the modifications to test have to be done to the files in the build target d | firmwareUpgrade | | {
"versionUpgrade": {
"step": 1
},
"reset": true
} | {
versionUpgrade: {
patternGroup: number;
step: number;
};
reset: boolean;
failureStatus: 'DownloadFailed' \| 'InstallationFailed';
} | Configuration section for simulating firmware upgrade support. | | commandsSupport | | {
"incomingCommands": {},
"outgoingCommands": {}
} | {
incomingCommands: Record;
outgoingCommands?: Record;
} | Configuration section for OCPP commands support. Empty section or subsections means all implemented OCPP commands are supported | | messageTriggerSupport | | {} | Record | Configuration section for OCPP commands trigger support. Empty section means all implemented OCPP trigger commands are supported | -| Configuration | | | ChargingStationConfiguration | charging stations OCPP parameters configuration section | -| AutomaticTransactionGenerator | | | AutomaticTransactionGenerator | charging stations ATG configuration section | -| Connectors | | | Connectors | charging stations connectors configuration section | +| Configuration | | | ChargingStationOcppConfiguration | charging stations OCPP parameters configuration section | +| AutomaticTransactionGenerator | | | AutomaticTransactionGeneratorConfiguration | charging stations ATG configuration section | +| Connectors | | | Record | charging stations connectors configuration section | +| Evses | | | Record | charging stations EVSEs configuration section | +| | -#### Configuration section +#### Configuration section syntax example ```json "Configuration": { @@ -211,7 +214,7 @@ But the modifications to test have to be done to the files in the build target d } ``` -#### AutomaticTransactionGenerator section +#### AutomaticTransactionGenerator section syntax example Section type definition: @@ -247,7 +250,7 @@ Section example: } ``` -#### Connectors section +#### Connectors section syntax example ```json "Connectors": { @@ -266,7 +269,8 @@ Section example: ... { "unit": "A", - "measurand": "Current.Import" + "measurand": "Current.Import", + "minimum": "0.5" }, ... { @@ -278,6 +282,46 @@ Section example: }, ``` +#### Evses section syntax example + +```json + "Evses": { + "0": { + "Connectors": { + "0": {} + } + }, + "1": { + "Connectors": { + "1": { + "bootStatus": "Available", + "MeterValues": [ + ... + { + "unit": "W", + "measurand": "Power.Active.Import", + "phase": "L1-N", + "value": "5000", + "fluctuationPercent": "10" + }, + ... + { + "unit": "A", + "measurand": "Current.Import", + "minimum": "0.5" + }, + ... + { + "unit": "Wh" + }, + ... + ] + } + } + } + }, +``` + ### Charging station configuration **dist/assets/configurations/\.json**: