build(deps-dev): update overrides got version
[e-mobility-charging-stations-simulator.git] / README.md
... / ...
CommitLineData
1<!-- markdownlint-disable-file MD033 MD024 -->
2
3# [e-mobility charging stations simulator](https://github.com/sap/e-mobility-charging-stations-simulator)
4
5[![CI worklow](https://github.com/SAP/e-mobility-charging-stations-simulator/actions/workflows/ci.yml/badge.svg)](https://github.com/SAP/e-mobility-charging-stations-simulator/actions/workflows/ci.yml)
6[![REUSE status](https://api.reuse.software/badge/github.com/SAP/e-mobility-charging-stations-simulator)](https://api.reuse.software/info/github.com/SAP/e-mobility-charging-stations-simulator)
7
8## Summary
9
10Simple [node.js](https://nodejs.org/) software to simulate and scale a set of charging stations based on the OCPP-J 1.6 protocol as part of SAP e-Mobility solution.
11
12## Prerequisites
13
14Install the [node.js](https://nodejs.org/) current LTS or superior version runtime environment:
15
16### Windows
17
18- [Chocolatey](https://chocolatey.org/):
19
20```powershell
21choco install -y nodejs
22```
23
24### MacOSX
25
26- [Homebrew](https://brew.sh/):
27
28```shell
29brew install node
30```
31
32### GNU/Linux
33
34- [NodeSource](https://github.com/nodesource/distributions) Node.js Binary Distributions for version >= 16.X
35
36## Installation
37
38Enable corepack if not already done and install latest pnpm version:
39
40```shell
41corepack enable
42corepack prepare pnpm@latest --activate
43```
44
45In the repository root, run the following command:
46
47```shell
48pnpm install
49```
50
51## Initial configuration
52
53Copy the configuration template file [src/assets/config-template.json](src/assets/config-template.json) to [src/assets/config.json](src/assets/config.json).
54Copy the RFID tags template file [src/assets/idtags-template.json](src/assets/idtags-template.json) to [src/assets/idtags.json](src/assets/idtags.json).
55
56Tweak them to your needs by following the section [configuration files syntax](README.md#configuration-files-syntax).
57
58## Start
59
60To start the program, run: `pnpm start`.
61
62## Start Web UI
63
64See Web UI [README.md](ui/web/README.md) for more information.
65
66## Configuration files syntax
67
68All configuration files are in the JSON standard format.
69
70**Configuration files locations**:
71
72- charging stations simulator configuration: [src/assets/config.json](src/assets/config.json);
73- charging station configuration templates: [src/assets/station-templates](src/assets/station-templates);
74- charging station configurations: [dist/assets/configurations](dist/assets/configurations);
75- charging station RFID tags lists: [src/assets](src/assets).
76
77The charging stations simulator's configuration parameters must be within the `src/assets/config.json` file. A charging station simulator configuration template file is available at [src/assets/config-template.json](src/assets/config-template.json).
78
79All charging station configuration templates are in the directory [src/assets/station-templates](src/assets/station-templates).
80
81A list of RFID tags must be defined for the automatic transaction generator in a file with a default location and name: `src/assets/idtags.json`. A template file is available at [src/assets/idtags-template.json](src/assets/idtags-template.json).
82
83**Configuration files hierarchy and priority**:
84
851. charging station configuration: [dist/assets/configurations](dist/assets/configurations);
862. charging station configuration template: [src/assets/station-templates](src/assets/station-templates);
873. charging stations simulator configuration: [src/assets/config.json](src/assets/config.json).
88
89The charging stations simulator have an automatic configuration files reload feature at change for:
90
91- charging stations simulator configuration;
92- charging station configuration templates;
93- charging station authorization RFID tags lists.
94
95But the modifications to test have to be done to the files in the build target directory [dist/assets](dist/assets). Once the modifications are finished, they have to be reported or copied to the matching files in the build source directory [src/assets](src/assets) to ensure they will be taken into account at next build.
96
97### Charging stations simulator configuration
98
99**src/assets/config.json**:
100
101| Key | Value(s) | Default Value | Value type | Description |
102| -------------------------- | ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
103| supervisionUrls | | [] | string \| string[] | string or array of global connection URIs to OCPP-J servers |
104| supervisionUrlDistribution | round-robin/random/charging-station-affinity | charging-station-affinity | boolean | supervision urls distribution policy to simulated charging stations |
105| logStatisticsInterval | | 60 | integer | seconds between charging stations statistics output in the logs |
106| logConsole | true/false | false | boolean | output logs on the console |
107| logFormat | | simple | string | [winston](https://github.com/winstonjs/winston) log format |
108| logRotate | true/false | true | boolean | enable daily log files rotation |
109| logMaxFiles | x/"xd" where x is an integer | undefined | integer \| string | maximum number of log files: https://github.com/winstonjs/winston-daily-rotate-file#options |
110| logMaxSize | x/"xk"/"xm"/"xg" where x is a number | undefined | number \| string | maximum size of log files in bytes, or units of kb, mb, and gb: https://github.com/winstonjs/winston-daily-rotate-file#options |
111| logLevel | emerg/alert/crit/error/warning/notice/info/debug | info | string | [winston](https://github.com/winstonjs/winston) logging level |
112| logFile | | combined.log | string | log file relative path |
113| logErrorFile | | error.log | string | error log file relative path |
114| worker | | {<br />"processType": "workerSet",<br />"startDelay": 500,<br />"elementStartDelay": 0,<br />"elementsPerWorker": 1,<br />"poolMinSize": 4,<br />"poolMaxSize": 16,<br />"poolStrategy": "ROUND_ROBIN"<br />} | {<br />processType: WorkerProcessType;<br />startDelay: number;<br />elementStartDelay: number;<br />elementsPerWorker: number;<br />poolMinSize: number;<br />poolMaxSize: number;<br />poolStrategy: WorkerChoiceStrategy;<br />} | Worker configuration section:<br />- processType: worker threads process type (workerSet/staticPool/dynamicPool)<br />- startDelay: milliseconds to wait at worker threads startup (only for workerSet threads process type)<br />- elementStartDelay: milliseconds to wait at charging station startup<br />- elementsPerWorker: number of charging stations per worker threads for the `workerSet` process type<br />- poolMinSize: worker threads pool minimum number of threads</br >- poolMaxSize: worker threads pool maximum number of threads<br />- poolStrategy: worker threads pool [poolifier](https://github.com/poolifier/poolifier) worker choice strategy |
115| uiServer | | {<br />"enabled": false,<br />"type": "ws",<br />"options": {<br />"host": "localhost",<br />"port": 8080<br />}<br />} | {<br />enabled: boolean;<br />type: ApplicationProtocol;<br />options: ServerOptions;<br />authentication: {<br />enabled: boolean;<br />type: AuthenticationType;<br />username: string;<br />password: string;<br />}<br />} | UI server configuration section |
116| performanceStorage | | {<br />"enabled": false,<br />"type": "jsonfile",<br />"file:///performanceRecords.json"<br />} | {<br />enabled: boolean;<br />type: string;<br />URI: string;<br />}<br />where type can be 'jsonfile' or 'mongodb' | performance storage configuration section |
117| stationTemplateUrls | | {}[] | {<br />file: string;<br />numberOfStations: number;<br />}[] | array of charging station configuration templates URIs configuration section (charging station configuration template file name and number of stations) |
118
119#### Worker process model
120
121- **workerSet**:
122 Worker set executing each a static number (elementsPerWorker) of simulated charging stations from the total
123
124- **staticPool**:
125 Statically sized worker pool executing a static total number of simulated charging stations
126
127- **dynamicPool**:
128 Dynamically sized worker pool executing a static total number of simulated charging stations
129
130### Charging station configuration template
131
132**src/assets/station-templates/\<name\>.json**:
133
134| Key | Value(s) | Default Value | Value type | Description |
135| ---------------------------------- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
136| supervisionUrls | | [] | string \| string[] | string or array of connection URIs to OCPP-J servers |
137| supervisionUser | | undefined | string | basic HTTP authentication user to OCPP-J server |
138| supervisionPassword | | undefined | string | basic HTTP authentication password to OCPP-J server |
139| supervisionUrlOcppConfiguration | true/false | false | boolean | allow supervision URL configuration via a vendor OCPP parameter key |
140| supervisionUrlOcppKey | | 'ConnectionUrl' | string | the vendor string that will be used as a vendor OCPP parameter key to set the supervision URL |
141| ocppVersion | 1.6/2.0/2.0.1 | 1.6 | string | OCPP version |
142| ocppProtocol | json | json | string | OCPP protocol |
143| ocppStrictCompliance | true/false | false | boolean | strict adherence to the OCPP version and protocol specifications |
144| ocppPersistentConfiguration | true/false | true | boolean | enable persistent OCPP parameters storage by charging stations 'hashId'. The persistency is ensured by the charging stations configuration files in [dist/assets/configurations](dist/assets/configurations) |
145| stationInfoPersistentConfiguration | true/false | true | boolean | enable persistent station information and specifications storage by charging stations 'hashId'. The persistency is ensured by the charging stations configuration files in [dist/assets/configurations](dist/assets/configurations) |
146| wsOptions | | {} | ClientOptions & ClientRequestArgs | [ws](https://github.com/websockets/ws) and node.js [http](https://nodejs.org/api/http.html) clients options intersection |
147| idTagsFile | | undefined | string | RFID tags list file relative to src/assets path |
148| baseName | | undefined | string | base name to build charging stations id |
149| nameSuffix | | undefined | string | name suffix to build charging stations id |
150| fixedName | true/false | false | boolean | use the baseName as the charging stations unique name |
151| chargePointModel | | undefined | string | charging stations model |
152| chargePointVendor | | undefined | string | charging stations vendor |
153| chargePointSerialNumberPrefix | | undefined | string | charge point serial number prefix |
154| chargeBoxSerialNumberPrefix | | undefined | string | charge box serial number prefix (deprecated in OCPP 1.6) |
155| firmwareVersionPattern | | Semantic versionning regular expression: https://semver.org/#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string | string | charging stations firmware version pattern |
156| firmwareVersion | | undefined | string | charging stations firmware version |
157| power | | | float \| float[] | charging stations maximum power value(s) |
158| powerSharedByConnectors | true/false | false | boolean | charging stations power shared by its connectors |
159| powerUnit | W/kW | W | string | charging stations power unit |
160| currentOutType | AC/DC | AC | string | charging stations current out type |
161| voltageOut | | AC:230/DC:400 | integer | charging stations voltage out |
162| numberOfPhases | 0/1/3 | AC:3/DC:0 | integer | charging stations number of phase(s) |
163| numberOfConnectors | | | integer \| integer[] | charging stations number of connector(s) |
164| useConnectorId0 | true/false | true | boolean | use connector id 0 definition from the charging station configuration template |
165| randomConnectors | true/false | false | boolean | randomize runtime connector id affectation from the connector id definition in charging station configuration template |
166| resetTime | | 60 | integer | seconds to wait before the charging stations come back at reset |
167| autoRegister | true/false | false | boolean | set charging stations as registered at boot notification for testing purpose |
168| autoReconnectMaxRetries | | -1 (unlimited) | integer | connection retries to the OCPP-J server |
169| reconnectExponentialDelay | true/false | false | boolean | connection delay retry to the OCPP-J server |
170| registrationMaxRetries | | -1 (unlimited) | integer | charging stations boot notification retries |
171| amperageLimitationOcppKey | | undefined | string | charging stations OCPP parameter key used to set the amperage limit, per phase for each connector on AC and global for DC |
172| amperageLimitationUnit | A/cA/dA/mA | A | string | charging stations amperage limit unit |
173| enableStatistics | true/false | false | boolean | enable charging stations statistics |
174| mustAuthorizeAtRemoteStart | true/false | true | boolean | always send authorize at remote start transaction when AuthorizeRemoteTxRequests is enabled |
175| payloadSchemaValidation | true/false | true | boolean | validate OCPP commands PDU against [OCA](https://www.openchargealliance.org/) JSON schemas |
176| beginEndMeterValues | true/false | false | boolean | enable Transaction.{Begin,End} MeterValues |
177| outOfOrderEndMeterValues | true/false | false | boolean | send Transaction.End MeterValues out of order. Need to relax OCPP specifications strict compliance ('ocppStrictCompliance' parameter) |
178| meteringPerTransaction | true/false | true | boolean | enable metering history on a per transaction basis |
179| transactionDataMeterValues | true/false | false | boolean | enable transaction data MeterValues at stop transaction |
180| mainVoltageMeterValues | true/false | true | boolean | include charging stations main voltage MeterValues on three phased charging stations |
181| phaseLineToLineVoltageMeterValues | true/false | false | boolean | include charging stations line to line voltage MeterValues on three phased charging stations |
182| customValueLimitationMeterValues | true/false | true | boolean | enable limitation on custom fluctuated value in MeterValues |
183| firmwareUpgrade | | {<br />"versionUpgrade": {<br />"step": 1<br />},<br />"reset": true<br />} | {<br />versionUpgrade: {<br />patternGroup: number;<br />step: number;<br />};<br />reset: boolean;<br />failureStatus: 'DownloadFailed' \| 'InstallationFailed';<br />} | Configuration section for simulating firmware upgrade support. |
184| commandsSupport | | {<br />"incomingCommands": {},<br />"outgoingCommands": {}<br />} | {<br /> incomingCommands: Record<IncomingRequestCommand, boolean>;<br />outgoingCommands?: Record<RequestCommand, boolean>;<br />} | Configuration section for OCPP commands support. Empty section or subsections means all implemented OCPP commands are supported |
185| messageTriggerSupport | | {} | Record<MessageTrigger, boolean> | Configuration section for OCPP commands trigger support. Empty section means all implemented OCPP trigger commands are supported |
186| Configuration | | | ChargingStationOcppConfiguration | charging stations OCPP parameters configuration section |
187| AutomaticTransactionGenerator | | | AutomaticTransactionGeneratorConfiguration | charging stations ATG configuration section |
188| Connectors | | | Record<string, ConnectorStatus> | charging stations connectors configuration section |
189| Evses | | | Record<string, EvseTemplate> | charging stations EVSEs configuration section |
190
191#### Configuration section syntax example
192
193```json
194 "Configuration": {
195 "configurationKey": [
196 ...
197 {
198 "key": "StandardKey",
199 "readonly": false,
200 "value": "StandardValue",
201 "visible": true,
202 "reboot": false
203 },
204 ...
205 {
206 "key": "VendorKey",
207 "readonly": false,
208 "value": "VendorValue",
209 "visible": false,
210 "reboot": true
211 },
212 ...
213 ]
214 }
215```
216
217#### AutomaticTransactionGenerator section syntax example
218
219##### Type definition:
220
221```ts
222type AutomaticTransactionGeneratorConfiguration = {
223 enable: boolean;
224 minDuration: number;
225 maxDuration: number;
226 minDelayBetweenTwoTransactions: number;
227 maxDelayBetweenTwoTransactions: number;
228 probabilityOfStart: number;
229 stopAfterHours: number;
230 stopOnConnectionFailure: boolean;
231 requireAuthorize?: boolean;
232 idTagDistribution?: 'random' | 'round-robin' | 'connector-affinity';
233};
234```
235
236##### Example:
237
238```json
239 "AutomaticTransactionGenerator": {
240 "enable": false,
241 "minDuration": 60,
242 "maxDuration": 80,
243 "minDelayBetweenTwoTransactions": 15,
244 "maxDelayBetweenTwoTransactions": 30,
245 "probabilityOfStart": 1,
246 "stopAfterHours": 0.3,
247 "stopOnConnectionFailure": true,
248 "requireAuthorize": true,
249 "idTagDistribution": "random"
250 }
251```
252
253#### Connectors section syntax example
254
255```json
256 "Connectors": {
257 "0": {},
258 "1": {
259 "bootStatus": "Available",
260 "MeterValues": [
261 ...
262 {
263 "unit": "W",
264 "measurand": "Power.Active.Import",
265 "phase": "L1-N",
266 "value": "5000",
267 "fluctuationPercent": "10"
268 },
269 ...
270 {
271 "unit": "A",
272 "measurand": "Current.Import",
273 "minimum": "0.5"
274 },
275 ...
276 {
277 "unit": "Wh"
278 },
279 ...
280 ]
281 }
282 },
283```
284
285#### Evses section syntax example
286
287```json
288 "Evses": {
289 "0": {
290 "Connectors": {
291 "0": {}
292 }
293 },
294 "1": {
295 "Connectors": {
296 "1": {
297 "bootStatus": "Available",
298 "MeterValues": [
299 ...
300 {
301 "unit": "W",
302 "measurand": "Power.Active.Import",
303 "phase": "L1-N",
304 "value": "5000",
305 "fluctuationPercent": "10"
306 },
307 ...
308 {
309 "unit": "A",
310 "measurand": "Current.Import",
311 "minimum": "0.5"
312 },
313 ...
314 {
315 "unit": "Wh"
316 },
317 ...
318 ]
319 }
320 }
321 }
322 },
323```
324
325### Charging station configuration
326
327**dist/assets/configurations/\<hashId\>.json**:
328
329The charging station configuration file is automatically generated at startup from the charging station configuration template file and is persistent.
330
331The charging station configuration file content can be regenerated partially on matching charging station configuration template file changes. The charging station serial number is kept unchanged.
332
333#### stationInfo section
334
335The syntax is similar to charging station configuration template with some added fields like the charging station id (name) and the 'Configuration' section removed.
336
337#### configurationKey section
338
339The syntax is similar to the charging station configuration template 'Configuration' section.
340
341## Docker
342
343In the [docker](./docker) folder:
344
345```bash
346make
347```
348
349Or with the optional git submodules:
350
351```bash
352make SUBMODULES_INIT=true
353```
354
355## OCPP-J commands supported
356
357### Version 1.6
358
359#### Core Profile
360
361- :white_check_mark: Authorize
362- :white_check_mark: BootNotification
363- :white_check_mark: ChangeAvailability
364- :white_check_mark: ChangeConfiguration
365- :white_check_mark: ClearCache
366- :white_check_mark: DataTransfer
367- :white_check_mark: GetConfiguration
368- :white_check_mark: Heartbeat
369- :white_check_mark: MeterValues
370- :white_check_mark: RemoteStartTransaction
371- :white_check_mark: RemoteStopTransaction
372- :white_check_mark: Reset
373- :white_check_mark: StartTransaction
374- :white_check_mark: StatusNotification
375- :white_check_mark: StopTransaction
376- :white_check_mark: UnlockConnector
377
378#### Firmware Management Profile
379
380- :white_check_mark: GetDiagnostics
381- :white_check_mark: DiagnosticsStatusNotification
382- :white_check_mark: FirmwareStatusNotification
383- :white_check_mark: UpdateFirmware
384
385#### Local Auth List Management Profile
386
387- :x: GetLocalListVersion
388- :x: SendLocalList
389
390#### Reservation Profile
391
392- :x: CancelReservation
393- :x: ReserveNow
394
395#### Smart Charging Profile
396
397- :white_check_mark: ClearChargingProfile
398- :x: GetCompositeSchedule
399- :white_check_mark: SetChargingProfile
400
401#### Remote Trigger Profile
402
403- :white_check_mark: TriggerMessage
404
405## OCPP-J standard parameters supported
406
407All kind of OCPP parameters are supported in a charging station configuration or a charging station configuration template file. The list here mention the standard ones also handled automatically in the simulator.
408
409### Version 1.6
410
411#### Core Profile
412
413- :white_check_mark: AuthorizeRemoteTxRequests (type: boolean) (units: -)
414- :x: ClockAlignedDataInterval (type: integer) (units: seconds)
415- :white_check_mark: ConnectionTimeOut (type: integer) (units: seconds)
416- :x: GetConfigurationMaxKeys (type: integer) (units: -)
417- :white_check_mark: HeartbeatInterval (type: integer) (units: seconds)
418- :x: LocalAuthorizeOffline (type: boolean) (units: -)
419- :x: LocalPreAuthorize (type: boolean) (units: -)
420- :x: MeterValuesAlignedData (type: CSL) (units: -)
421- :white_check_mark: MeterValuesSampledData (type: CSL) (units: -)
422- :white_check_mark: MeterValueSampleInterval (type: integer) (units: seconds)
423- :white_check_mark: NumberOfConnectors (type: integer) (units: -)
424- :x: ResetRetries (type: integer) (units: times)
425- :white_check_mark: ConnectorPhaseRotation (type: CSL) (units: -)
426- :x: StopTransactionOnEVSideDisconnect (type: boolean) (units: -)
427- :x: StopTransactionOnInvalidId (type: boolean) (units: -)
428- :x: StopTxnAlignedData (type: CSL) (units: -)
429- :x: StopTxnSampledData (type: CSL) (units: -)
430- :white_check_mark: SupportedFeatureProfiles (type: CSL) (units: -)
431- :x: TransactionMessageAttempts (type: integer) (units: times)
432- :x: TransactionMessageRetryInterval (type: integer) (units: seconds)
433- :x: UnlockConnectorOnEVSideDisconnect (type: boolean) (units: -)
434- :white_check_mark: WebSocketPingInterval (type: integer) (units: seconds)
435
436#### Firmware Management Profile
437
438- _none_
439
440#### Local Auth List Management Profile
441
442- :white_check_mark: LocalAuthListEnabled (type: boolean) (units: -)
443- :x: LocalAuthListMaxLength (type: integer) (units: -)
444- :x: SendLocalListMaxLength (type: integer) (units: -)
445
446#### Reservation Profile
447
448- _none_
449
450#### Smart Charging Profile
451
452- :x: ChargeProfileMaxStackLevel (type: integer) (units: -)
453- :x: ChargingScheduleAllowedChargingRateUnit (type: CSL) (units: -)
454- :x: ChargingScheduleMaxPeriods (type: integer) (units: -)
455- :x: MaxChargingProfilesInstalled (type: integer) (units: -)
456
457#### Remote Trigger Profile
458
459- _none_
460
461## UI protocol
462
463Protocol to control the simulator via a Websocket or HTTP server.
464
465### HTTP Protocol
466
467To learn how to use the HTTP protocol to pilot the simulator, an [Insomnia](https://insomnia.rest/) HTTP requests collection is available in [src/assets/ui-protocol](./src/assets/ui-protocol) directory.
468
469### Websocket Protocol
470
471SRPC protocol over Websocket. PDU stands for 'Protocol Data Unit'.
472
473- Request:
474 [`uuid`, `ProcedureName`, `PDU`]
475 `uuid`: String uniquely representing this request
476 `ProcedureName`: The procedure to run on the simulator
477 `PDU`: The parameters for said procedure
478
479- Response:
480 [`uuid`, `PDU`]
481 `uuid`: String uniquely linking the response to the request
482 `PDU`: Response parameters to requested procedure
483
484An [Insomnia](https://insomnia.rest/) WebSocket requests collection is available in [src/assets/ui-protocol](./src/assets/ui-protocol) directory.
485
486#### Version 0.0.1
487
488Set the Websocket header _Sec-Websocket-Protocol_ to `ui0.0.1`.
489
490##### Procedures
491
492###### Start Simulator
493
494- Request:
495 `ProcedureName`: 'startSimulator'
496 `PDU`: {}
497
498- Response:
499 `PDU`: {
500 `status`: 'success' | 'failure'
501 }
502
503###### Stop Simulator
504
505- Request:
506 `ProcedureName`: 'stopSimulator'
507 `PDU`: {}
508
509- Response:
510 `PDU`: {
511 `status`: 'success' | 'failure'
512 }
513
514###### List Charging Stations
515
516- Request:
517 `ProcedureName`: 'listChargingStations'
518 `PDU`: {}
519
520- Response:
521 `PDU`: {
522 `status`: 'success' | 'failure',
523 `chargingStations`: ChargingStationData[]
524 }
525
526###### Start Charging Station
527
528- Request:
529 `ProcedureName`: 'startChargingStation'
530 `PDU`: {
531 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
532 }
533
534- Response:
535 `PDU`: {
536 `status`: 'success' | 'failure',
537 `hashIdsSucceeded`: charging station unique identifier strings array,
538 `hashIdsFailed`: charging station unique identifier strings array (optional)
539 `responsesFailed`: failed responses payload array (optional)
540 }
541
542###### Stop Charging Station
543
544- Request:
545 `ProcedureName`: 'stopChargingStation'
546 `PDU`: {
547 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
548 }
549
550- Response:
551 `PDU`: {
552 `status`: 'success' | 'failure',
553 `hashIdsSucceeded`: charging station unique identifier strings array,
554 `hashIdsFailed`: charging station unique identifier strings array (optional),
555 `responsesFailed`: failed responses payload array (optional)
556 }
557
558###### Open Connection
559
560- Request:
561 `ProcedureName`: 'openConnection'
562 `PDU`: {
563 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
564 }
565
566- Response:
567 `PDU`: {
568 `status`: 'success' | 'failure',
569 `hashIdsSucceeded`: charging station unique identifier strings array,
570 `hashIdsFailed`: charging station unique identifier strings array (optional),
571 `responsesFailed`: failed responses payload array (optional)
572 }
573
574###### Close Connection
575
576- Request:
577 `ProcedureName`: 'closeConnection'
578 `PDU`: {
579 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
580 }
581
582- Response:
583 `PDU`: {
584 `status`: 'success' | 'failure',
585 `hashIdsSucceeded`: charging station unique identifier strings array,
586 `hashIdsFailed`: charging station unique identifier strings array (optional),
587 `responsesFailed`: failed responses payload array (optional)
588 }
589
590###### Start Automatic Transaction Generator
591
592- Request:
593 `ProcedureName`: 'startAutomaticTransactionGenerator'
594 `PDU`: {
595 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
596 `connectorIds`: connector id integer array (optional, default: all connectors)
597 }
598
599- Response:
600 `PDU`: {
601 `status`: 'success' | 'failure',
602 `hashIdsSucceeded`: charging station unique identifier strings array,
603 `hashIdsFailed`: charging station unique identifier strings array (optional),
604 `responsesFailed`: failed responses payload array (optional)
605 }
606
607###### Stop Automatic Transaction Generator
608
609- Request:
610 `ProcedureName`: 'stopAutomaticTransactionGenerator'
611 `PDU`: {
612 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
613 `connectorIds`: connector id integer array (optional, default: all connectors)
614 }
615
616- Response:
617 `PDU`: {
618 `status`: 'success' | 'failure',
619 `hashIdsSucceeded`: charging station unique identifier strings array,
620 `hashIdsFailed`: charging station unique identifier strings array (optional),
621 `responsesFailed`: failed responses payload array (optional)
622 }
623
624###### OCPP commands trigger
625
626- Request:
627 `ProcedureName`: 'commandName' (the OCPP command name in camel case)
628 `PDU`: {
629 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
630 ...`commandPayload`
631 } (the OCPP command payload with some optional fields added to target the simulated charging stations)
632
633- Response:
634 `PDU`: {
635 `status`: 'success' | 'failure',
636 `hashIdsSucceeded`: charging station unique identifier strings array,
637 `hashIdsFailed`: charging station unique identifier strings array (optional),
638 `responsesFailed`: failed responses payload array (optional)
639 }
640
641Examples:
642
643- **Start Transaction**
644
645 - Request:
646 `ProcedureName`: 'startTransaction'
647 `PDU`: {
648 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
649 `connectorId`: connector id integer,
650 `idTag`: RFID tag string
651 }
652
653 - Response:
654 `PDU`: {
655 `status`: 'success' | 'failure',
656 `hashIdsSucceeded`: charging station unique identifier strings array,
657 `hashIdsFailed`: charging station unique identifier strings array (optional),
658 `responsesFailed`: failed responses payload array (optional)
659 }
660
661- **Stop Transaction**
662
663 - Request:
664 `ProcedureName`: 'stopTransaction'
665 `PDU`: {
666 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
667 `transactionId`: transaction id integer
668 }
669
670 - Response:
671 `PDU`: {
672 `status`: 'success' | 'failure',
673 `hashIdsSucceeded`: charging station unique identifier strings array,
674 `hashIdsFailed`: charging station unique identifier strings array (optional),
675 `responsesFailed`: failed responses payload array (optional)
676 }
677
678- **Status Notification**
679
680 - Request:
681 `ProcedureName`: 'statusNotification'
682 `PDU`: {
683 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
684 `connectorId`: connector id integer,
685 `errorCode`: connector error code,
686 `status`: connector status
687 }
688
689 - Response:
690 `PDU`: {
691 `status`: 'success' | 'failure',
692 `hashIdsSucceeded`: charging station unique identifier strings array,
693 `hashIdsFailed`: charging station unique identifier strings array (optional),
694 `responsesFailed`: failed responses payload array (optional)
695 }
696
697- **Heartbeat**
698
699 - Request:
700 `ProcedureName`: 'heartbeat'
701 `PDU`: {
702 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
703 }
704
705 - Response:
706 `PDU`: {
707 `status`: 'success' | 'failure',
708 `hashIdsSucceeded`: charging station unique identifier strings array,
709 `hashIdsFailed`: charging station unique identifier strings array (optional),
710 `responsesFailed`: failed responses payload array (optional)
711 }
712
713## Support, Feedback, Contributing
714
715This project is open to feature requests/suggestions, bug reports etc. via [GitHub issues](https://github.com/SAP/e-mobility-charging-stations-simulator/issues). Contribution and feedback are encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our [Contribution Guidelines](CONTRIBUTING.md).
716
717## Code of Conduct
718
719We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone. By participating in this project, you agree to abide by its [Code of Conduct](CODE_OF_CONDUCT.md) at all times.
720
721## Licensing
722
723Copyright 2020-2023 SAP SE or an SAP affiliate company and e-mobility-charging-stations-simulator contributors. Please see our [LICENSE](LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/SAP/e-mobility-charging-stations-simulator).