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