build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / README.md
1 <!-- markdownlint-disable-file MD033 MD024 -->
2 <div align="center">
3
4 # [e-Mobility charging stations simulator](https://github.com/sap/e-mobility-charging-stations-simulator)
5
6 </div>
7
8 <div align="center">
9
10 [![GitHub Clones](https://img.shields.io/badge/dynamic/json?color=brightgreen&label=Clone&query=count&url=https://gist.githubusercontent.com/jerome-benoit/c7c669b881d5b27dc0b44a639504ff93/raw/clone.json&logo=github)](https://github.com/SAP/e-mobility-charging-stations-simulator/graphs/traffic)
11 [![GitHub commit activity (main)](https://img.shields.io/github/commit-activity/m/SAP/e-mobility-charging-stations-simulator/main?color=brightgreen&logo=github)](https://github.com/SAP/e-mobility-charging-stations-simulator/graphs/commit-activity)
12 [![CI workflow](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)
13 [![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)
14 [![Javascript Standard Style Guide](<https://badgen.net/static/code style/standard/green>)](https://standardjs.com)
15
16 </div>
17
18 Simple [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.
19
20 ## Table of contents
21
22 - [Installation](#installation)
23 - [Prerequisites](#prerequisites)
24 - [Windows](#windows)
25 - [MacOSX](#macosx)
26 - [GNU/Linux](#gnulinux)
27 - [Dependencies](#dependencies)
28 - [Initial configuration](#initial-configuration)
29 - [Start simulator](#start-simulator)
30 - [Start Web UI](#start-web-ui)
31 - [Configuration files syntax](#configuration-files-syntax)
32 - [Charging stations simulator configuration](#charging-stations-simulator-configuration)
33 - [Charging station configuration template](#charging-station-configuration-template)
34 - [Charging station configuration](#charging-station-configuration)
35 - [Docker](#docker)
36 - [OCPP-J commands supported](#ocpp-j-commands-supported)
37 - [Version 1.6](#version-16)
38 - [Version 2.x.x](#version-2xx)
39 - [OCPP-J standard parameters supported](#ocpp-j-standard-parameters-supported)
40 - [Version 1.6](#version-16-1)
41 - [Version 2.x.x](#version-2xx-1)
42 - [UI Protocol](#ui-protocol)
43 - [Websocket Protocol](#websocket-protocol)
44 - [HTTP Protocol](#http-protocol)
45 - [Support, Feedback, Contributing](#support-feedback-contributing)
46 - [Code of Conduct](#code-of-conduct)
47 - [Licensing](#licensing)
48
49 ## Installation
50
51 ### Prerequisites
52
53 Install the [node.js](https://nodejs.org/) current LTS or superior version runtime environment:
54
55 #### Windows
56
57 - [Chocolatey](https://chocolatey.org/):
58
59 ```powershell
60 choco install -y nodejs
61 ```
62
63 #### MacOSX
64
65 - [Homebrew](https://brew.sh/):
66
67 ```shell
68 brew install node
69 ```
70
71 #### GNU/Linux
72
73 - [NodeSource](https://github.com/nodesource/distributions) Node.js Binary Distributions for all supported versions.
74
75 #### Dependencies
76
77 Enable corepack if not already done and install latest pnpm version:
78
79 ```shell
80 corepack enable
81 corepack prepare pnpm@latest --activate
82 ```
83
84 In the repository root, run the following command:
85
86 ```shell
87 pnpm install
88 ```
89
90 ## Initial configuration
91
92 Copy the configuration template file [src/assets/config-template.json](./src/assets/config-template.json) to [src/assets/config.json](./src/assets/config.json).
93 Copy the RFID tags template file [src/assets/idtags-template.json](./src/assets/idtags-template.json) to [src/assets/idtags.json](./src/assets/idtags.json).
94
95 Tweak them to your needs by following the section [configuration files syntax](#configuration-files-syntax): OCPP server supervision URL(s), charging station templates, etc.
96
97 ## Start simulator
98
99 Run: `pnpm start`.
100
101 ## Start Web UI
102
103 See Web UI [README.md](./ui/web/README.md) for more information.
104
105 ## Configuration files syntax
106
107 All configuration files are using the JSON standard syntax.
108
109 **Configuration files locations**:
110
111 - charging stations simulator configuration: [src/assets/config.json](./src/assets/config.json);
112 - charging station configuration templates: [src/assets/station-templates](./src/assets/station-templates);
113 - charging station configurations: [dist/assets/configurations](./dist/assets/configurations);
114 - charging station RFID tags lists: [src/assets](./src/assets).
115
116 The 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).
117
118 All charging station configuration templates are in the directory [src/assets/station-templates](./src/assets/station-templates).
119
120 A 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).
121
122 **Configuration files hierarchy and priority**:
123
124 1. charging station configuration: [dist/assets/configurations](./dist/assets/configurations);
125 2. charging station configuration template: [src/assets/station-templates](./src/assets/station-templates);
126 3. charging stations simulator configuration: [src/assets/config.json](./src/assets/config.json).
127
128 The charging stations simulator has an automatic configuration files reload feature at change for:
129
130 - charging stations simulator configuration;
131 - charging station configuration templates;
132 - charging station authorization RFID tags lists.
133
134 But 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.
135
136 ### Charging stations simulator configuration
137
138 **src/assets/config.json**:
139
140 | Key | Value(s) | Default Value | Value type | Description |
141 | -------------------------- | -------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
142 | supervisionUrls | | [] | string \| string[] | string or strings array containing global connection URIs to OCPP-J servers |
143 | supervisionUrlDistribution | round-robin/random/charging-station-affinity | charging-station-affinity | string | supervision urls distribution policy to simulated charging stations |
144 | log | | {<br />"enabled": true,<br />"file": "logs/combined.log",<br />"errorFile": "logs/error.log",<br />"statisticsInterval": 60,<br />"level": "info",<br />"console": false,<br />"format": "simple",<br />"rotate": true<br />} | {<br />enabled?: boolean;<br />file?: string;<br />errorFile?: string;<br />statisticsInterval?: number;<br />level?: string;<br />console?: boolean;<br />format?: string;<br />rotate?: boolean;<br />maxFiles?: string \| number;<br />maxSize?: string \| number;<br />} | Log configuration section:<br />- _enabled_: enable logging<br />- _file_: log file relative path<br />- _errorFile_: error log file relative path<br />- _statisticsInterval_: seconds between charging stations statistics output in the logs<br />- _level_: emerg/alert/crit/error/warning/notice/info/debug [winston](https://github.com/winstonjs/winston) logging level</br >- _console_: output logs on the console<br />- _format_: [winston](https://github.com/winstonjs/winston) log format<br />- _rotate_: enable daily log files rotation<br />- _maxFiles_: maximum number of log files: https://github.com/winstonjs/winston-daily-rotate-file#options<br />- _maxSize_: maximum size of log files in bytes, or units of kb, mb, and gb: https://github.com/winstonjs/winston-daily-rotate-file#options |
145 | worker | | {<br />"processType": "workerSet",<br />"startDelay": 500,<br />"elementAddDelay": 0,<br />"elementsPerWorker": 'auto',<br />"poolMinSize": 4,<br />"poolMaxSize": 16<br />} | {<br />processType?: WorkerProcessType;<br />startDelay?: number;<br />elementAddDelay?: number;<br />elementsPerWorker?: number \| 'auto' \| 'all';<br />poolMinSize?: number;<br />poolMaxSize?: number;<br />resourceLimits?: ResourceLimits;<br />} | Worker configuration section:<br />- _processType_: worker threads process type (`workerSet`/`fixedPool`/`dynamicPool`)<br />- _startDelay_: milliseconds to wait at worker threads startup (only for `workerSet` worker threads process type)<br />- _elementAddDelay_: milliseconds to wait between charging station add<br />- _elementsPerWorker_: number of charging stations per worker threads for the `workerSet` process type (`auto` means (number of stations) / (number of CPUs) \* 1.5 if (number of stations) > (number of CPUs), otherwise 1; `all` means a unique worker will run all charging stations)<br />- _poolMinSize_: worker threads pool minimum number of threads</br >- _poolMaxSize_: worker threads pool maximum number of threads<br />- _resourceLimits_: worker threads [resource limits](https://nodejs.org/api/worker_threads.html#new-workerfilename-options) object option |
146 | uiServer | | {<br />"enabled": false,<br />"type": "ws",<br />"version": "1.1",<br />"options": {<br />"host": "localhost",<br />"port": 8080<br />}<br />} | {<br />enabled?: boolean;<br />type?: ApplicationProtocol;<br />version?: ApplicationProtocolVersion;<br />options?: ServerOptions;<br />authentication?: {<br />enabled: boolean;<br />type: AuthenticationType;<br />username?: string;<br />password?: string;<br />}<br />} | UI server configuration section:<br />- _enabled_: enable UI server<br />- _type_: 'http' or 'ws'<br />- _version_: HTTP version '1.1' or '2.0'<br />- _options_: node.js net module [listen options](https://nodejs.org/api/net.html#serverlistenoptions-callback)<br />- _authentication_: authentication type configuration section |
147 | performanceStorage | | {<br />"enabled": true,<br />"type": "none",<br />} | {<br />enabled?: boolean;<br />type?: string;<br />uri?: string;<br />} | Performance storage configuration section:<br />- _enabled_: enable performance storage<br />- _type_: 'jsonfile', 'mongodb' or 'none'<br />- _uri_: storage URI |
148 | 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) |
149
150 #### Worker process model
151
152 - **workerSet**:
153 Worker set executing each a fixed number (elementsPerWorker) of simulated charging stations from the total
154
155 - **fixedPool**:
156 Fixedly sized worker pool executing a fixed total number of simulated charging stations
157
158 - **dynamicPool** (experimental):
159 Dynamically sized worker pool executing a fixed total number of simulated charging stations
160
161 ### Charging station configuration template
162
163 **src/assets/station-templates/\<name\>.json**:
164
165 | Key | Value(s) | Default Value | Value type | Description |
166 | ---------------------------------------------------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
167 | supervisionUrls | | [] | string \| string[] | string or strings array containing connection URIs to OCPP-J servers |
168 | supervisionUser | | undefined | string | basic HTTP authentication user to OCPP-J server |
169 | supervisionPassword | | undefined | string | basic HTTP authentication password to OCPP-J server |
170 | supervisionUrlOcppConfiguration | true/false | false | boolean | enable supervision URL configuration via a vendor OCPP parameter key |
171 | supervisionUrlOcppKey | | 'ConnectionUrl' | string | the vendor string that will be used as a vendor OCPP parameter key to set the supervision URL |
172 | autoStart | true/false | true | boolean | enable automatic start of added charging station from template |
173 | ocppVersion | 1.6/2.0/2.0.1 | 1.6 | string | OCPP version |
174 | ocppProtocol | json | json | string | OCPP protocol |
175 | ocppStrictCompliance | true/false | true | boolean | enable strict adherence to the OCPP version and protocol specifications with OCPP commands PDU validation against [OCA](https://www.openchargealliance.org/) JSON schemas |
176 | 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) |
177 | 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) |
178 | 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) |
179 | wsOptions | | {} | ClientOptions & ClientRequestArgs | [ws](https://github.com/websockets/ws) and node.js [http](https://nodejs.org/api/http.html) clients options intersection |
180 | idTagsFile | | undefined | string | RFID tags list file relative to [src/assets](./src/assets) path |
181 | baseName | | undefined | string | base name to build charging stations id |
182 | nameSuffix | | undefined | string | name suffix to build charging stations id |
183 | fixedName | true/false | false | boolean | use the 'baseName' as the charging stations unique name |
184 | chargePointModel | | undefined | string | charging stations model |
185 | chargePointVendor | | undefined | string | charging stations vendor |
186 | chargePointSerialNumberPrefix | | undefined | string | charge point serial number prefix |
187 | chargeBoxSerialNumberPrefix | | undefined | string | charge box serial number prefix (deprecated since OCPP 1.6) |
188 | firmwareVersionPattern | | Semantic versioning regular expression: https://semver.org/#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string | string | charging stations firmware version pattern |
189 | firmwareVersion | | undefined | string | charging stations firmware version |
190 | power | | | float \| float[] | charging stations maximum power value(s) |
191 | powerSharedByConnectors | true/false | false | boolean | charging stations power shared by its connectors |
192 | powerUnit | W/kW | W | string | charging stations power unit |
193 | currentOutType | AC/DC | AC | string | charging stations current out type |
194 | voltageOut | | AC:230/DC:400 | integer | charging stations voltage out |
195 | numberOfPhases | 0/1/3 | AC:3/DC:0 | integer | charging stations number of phase(s) |
196 | numberOfConnectors | | | integer \| integer[] | charging stations number of connector(s) |
197 | useConnectorId0 | true/false | true | boolean | use connector id 0 definition from the charging station configuration template |
198 | randomConnectors | true/false | false | boolean | randomize runtime connector id affectation from the connector id definition in charging station configuration template |
199 | resetTime | | 60 | integer | seconds to wait before the charging stations come back at reset |
200 | autoRegister | true/false | false | boolean | set charging stations as registered at boot notification for testing purpose |
201 | autoReconnectMaxRetries | | -1 (unlimited) | integer | connection retries to the OCPP-J server |
202 | reconnectExponentialDelay | true/false | false | boolean | connection delay retry to the OCPP-J server |
203 | registrationMaxRetries | | -1 (unlimited) | integer | charging stations boot notification retries |
204 | 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 |
205 | amperageLimitationUnit | A/cA/dA/mA | A | string | charging stations amperage limit unit |
206 | enableStatistics | true/false | false | boolean | enable charging stations statistics |
207 | remoteAuthorization | true/false | true | boolean | enable RFID tags remote authorization |
208 | beginEndMeterValues | true/false | false | boolean | enable Transaction.{Begin,End} MeterValues |
209 | outOfOrderEndMeterValues | true/false | false | boolean | send Transaction.End MeterValues out of order. Need to relax OCPP specifications strict compliance ('ocppStrictCompliance' parameter) |
210 | meteringPerTransaction | true/false | true | boolean | enable metering history on a per transaction basis |
211 | transactionDataMeterValues | true/false | false | boolean | enable transaction data MeterValues at stop transaction |
212 | stopTransactionsOnStopped | true/false | true | boolean | enable stop transactions on charging station stop |
213 | mainVoltageMeterValues | true/false | true | boolean | include charging stations main voltage MeterValues on three phased charging stations |
214 | phaseLineToLineVoltageMeterValues | true/false | false | boolean | include charging stations line to line voltage MeterValues on three phased charging stations |
215 | customValueLimitationMeterValues | true/false | true | boolean | enable limitation on custom fluctuated value in MeterValues |
216 | 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. |
217 | 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 |
218 | messageTriggerSupport | | {} | Record<MessageTrigger, boolean> | Configuration section for OCPP commands trigger support. Empty section means all implemented OCPP trigger commands are supported |
219 | Configuration | | | ChargingStationOcppConfiguration | charging stations OCPP parameters configuration section |
220 | AutomaticTransactionGenerator | | | AutomaticTransactionGeneratorConfiguration | charging stations ATG configuration section |
221 | Connectors | | | Record<string, ConnectorStatus> | charging stations connectors configuration section |
222 | Evses | | | Record<string, EvseTemplate> | charging stations EVSEs configuration section |
223
224 #### Configuration section syntax example
225
226 ```json
227 "Configuration": {
228 "configurationKey": [
229 ...
230 {
231 "key": "StandardKey",
232 "readonly": false,
233 "value": "StandardValue",
234 "visible": true,
235 "reboot": false
236 },
237 ...
238 {
239 "key": "VendorKey",
240 "readonly": false,
241 "value": "VendorValue",
242 "visible": false,
243 "reboot": true
244 },
245 ...
246 ]
247 }
248 ```
249
250 #### AutomaticTransactionGenerator section syntax example
251
252 ##### Type definition:
253
254 ```ts
255 type AutomaticTransactionGeneratorConfiguration = {
256 enable: boolean
257 minDuration: number
258 maxDuration: number
259 minDelayBetweenTwoTransactions: number
260 maxDelayBetweenTwoTransactions: number
261 probabilityOfStart: number
262 stopAfterHours: number
263 stopAbsoluteDuration: boolean
264 requireAuthorize?: boolean
265 idTagDistribution?: 'random' | 'round-robin' | 'connector-affinity'
266 }
267 ```
268
269 ##### Example:
270
271 ```json
272 "AutomaticTransactionGenerator": {
273 "enable": false,
274 "minDuration": 60,
275 "maxDuration": 80,
276 "minDelayBetweenTwoTransactions": 15,
277 "maxDelayBetweenTwoTransactions": 30,
278 "probabilityOfStart": 1,
279 "stopAfterHours": 0.3,
280 "requireAuthorize": true,
281 "idTagDistribution": "random"
282 }
283 ```
284
285 #### Connectors section syntax example
286
287 ```json
288 "Connectors": {
289 "0": {},
290 "1": {
291 "bootStatus": "Available",
292 "MeterValues": [
293 ...
294 {
295 "unit": "W",
296 "measurand": "Power.Active.Import",
297 "phase": "L1-N",
298 "value": "5000",
299 "fluctuationPercent": "10"
300 },
301 ...
302 {
303 "unit": "A",
304 "measurand": "Current.Import",
305 "minimum": "0.5"
306 },
307 ...
308 {
309 "unit": "Wh"
310 },
311 ...
312 ]
313 }
314 },
315 ```
316
317 #### Evses section syntax example
318
319 ```json
320 "Evses": {
321 "0": {
322 "Connectors": {
323 "0": {}
324 }
325 },
326 "1": {
327 "Connectors": {
328 "1": {
329 "bootStatus": "Available",
330 "MeterValues": [
331 ...
332 {
333 "unit": "W",
334 "measurand": "Power.Active.Import",
335 "phase": "L1-N",
336 "value": "5000",
337 "fluctuationPercent": "10"
338 },
339 ...
340 {
341 "unit": "A",
342 "measurand": "Current.Import",
343 "minimum": "0.5"
344 },
345 ...
346 {
347 "unit": "Wh"
348 },
349 ...
350 ]
351 }
352 }
353 }
354 },
355 ```
356
357 ### Charging station configuration
358
359 **dist/assets/configurations/\<hashId\>.json**:
360
361 The charging station configuration file is automatically generated at startup from the charging station configuration template file and is persistent.
362
363 The 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.
364
365 #### stationInfo section (optional)
366
367 The syntax is similar to charging station configuration template with some added fields like the charging station id (name) and the 'Configuration' section removed.
368
369 That section is overwritten on matching charging station configuration template file changes.
370
371 #### connectorsStatus section
372
373 The syntax is similar to charging station configuration template 'Connectors' section with some added fields.
374
375 That section is overwritten on matching charging station configuration template file changes.
376
377 #### evsesStatus section
378
379 The syntax is similar to charging station configuration template 'Evses' section with some added fields.
380
381 That section is overwritten on matching charging station configuration template file changes.
382
383 #### automaticTransactionGenerator section (optional)
384
385 The syntax is similar to the charging station configuration template 'AutomaticTransactionGenerator' section.
386
387 That section is overwritten on matching charging station configuration template file changes.
388
389 #### automaticTransactionGeneratorStatuses section
390
391 That section is not overwritten on matching charging station configuration template file changes.
392
393 #### configurationKey section (optional)
394
395 The syntax is similar to the charging station configuration template 'Configuration' section.
396
397 That section is not overwritten on matching charging station configuration template file changes.
398
399 ## Docker
400
401 In the [docker](./docker) folder:
402
403 ```shell
404 make
405 ```
406
407 <!-- Or with the optional git submodules:
408
409 ```shell
410 make SUBMODULES_INIT=true
411 ``` -->
412
413 ## OCPP-J commands supported
414
415 ### Version 1.6
416
417 #### Core Profile
418
419 - :white_check_mark: Authorize
420 - :white_check_mark: BootNotification
421 - :white_check_mark: ChangeAvailability
422 - :white_check_mark: ChangeConfiguration
423 - :white_check_mark: ClearCache
424 - :white_check_mark: DataTransfer
425 - :white_check_mark: GetConfiguration
426 - :white_check_mark: Heartbeat
427 - :white_check_mark: MeterValues
428 - :white_check_mark: RemoteStartTransaction
429 - :white_check_mark: RemoteStopTransaction
430 - :white_check_mark: Reset
431 - :white_check_mark: StartTransaction
432 - :white_check_mark: StatusNotification
433 - :white_check_mark: StopTransaction
434 - :white_check_mark: UnlockConnector
435
436 #### Firmware Management Profile
437
438 - :white_check_mark: GetDiagnostics
439 - :white_check_mark: DiagnosticsStatusNotification
440 - :white_check_mark: FirmwareStatusNotification
441 - :white_check_mark: UpdateFirmware
442
443 #### Local Auth List Management Profile
444
445 - :x: GetLocalListVersion
446 - :x: SendLocalList
447
448 #### Reservation Profile
449
450 - :white_check_mark: CancelReservation
451 - :white_check_mark: ReserveNow
452
453 #### Smart Charging Profile
454
455 - :white_check_mark: ClearChargingProfile
456 - :white_check_mark: GetCompositeSchedule
457 - :white_check_mark: SetChargingProfile
458
459 #### Remote Trigger Profile
460
461 - :white_check_mark: TriggerMessage
462
463 ### Version 2.x.x
464
465 #### Provisioning
466
467 - :white_check_mark: BootNotification
468
469 #### Authorization
470
471 - :white_check_mark: ClearCache
472
473 #### Availability
474
475 - :white_check_mark: StatusNotification
476 - :white_check_mark: Heartbeat
477
478 ## OCPP-J standard parameters supported
479
480 All 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.
481
482 ### Version 1.6
483
484 #### Core Profile
485
486 - :white_check_mark: AuthorizeRemoteTxRequests (type: boolean) (units: -)
487 - :x: ClockAlignedDataInterval (type: integer) (units: seconds)
488 - :white_check_mark: ConnectionTimeOut (type: integer) (units: seconds)
489 - :x: GetConfigurationMaxKeys (type: integer) (units: -)
490 - :white_check_mark: HeartbeatInterval (type: integer) (units: seconds)
491 - :x: LocalAuthorizeOffline (type: boolean) (units: -)
492 - :x: LocalPreAuthorize (type: boolean) (units: -)
493 - :x: MeterValuesAlignedData (type: CSL) (units: -)
494 - :white_check_mark: MeterValuesSampledData (type: CSL) (units: -)
495 - :white_check_mark: MeterValueSampleInterval (type: integer) (units: seconds)
496 - :white_check_mark: NumberOfConnectors (type: integer) (units: -)
497 - :x: ResetRetries (type: integer) (units: times)
498 - :white_check_mark: ConnectorPhaseRotation (type: CSL) (units: -)
499 - :x: StopTransactionOnEVSideDisconnect (type: boolean) (units: -)
500 - :x: StopTransactionOnInvalidId (type: boolean) (units: -)
501 - :x: StopTxnAlignedData (type: CSL) (units: -)
502 - :x: StopTxnSampledData (type: CSL) (units: -)
503 - :white_check_mark: SupportedFeatureProfiles (type: CSL) (units: -)
504 - :x: TransactionMessageAttempts (type: integer) (units: times)
505 - :x: TransactionMessageRetryInterval (type: integer) (units: seconds)
506 - :x: UnlockConnectorOnEVSideDisconnect (type: boolean) (units: -)
507 - :white_check_mark: WebSocketPingInterval (type: integer) (units: seconds)
508
509 #### Firmware Management Profile
510
511 - _none_
512
513 #### Local Auth List Management Profile
514
515 - :white_check_mark: LocalAuthListEnabled (type: boolean) (units: -)
516 - :x: LocalAuthListMaxLength (type: integer) (units: -)
517 - :x: SendLocalListMaxLength (type: integer) (units: -)
518
519 #### Reservation Profile
520
521 - :white_check_mark: ReserveConnectorZeroSupported (type: boolean) (units: -)
522
523 #### Smart Charging Profile
524
525 - :x: ChargeProfileMaxStackLevel (type: integer) (units: -)
526 - :x: ChargingScheduleAllowedChargingRateUnit (type: CSL) (units: -)
527 - :x: ChargingScheduleMaxPeriods (type: integer) (units: -)
528 - :x: MaxChargingProfilesInstalled (type: integer) (units: -)
529
530 #### Remote Trigger Profile
531
532 - _none_
533
534 ### Version 2.x.x
535
536 ## UI Protocol
537
538 Protocol to control the simulator via a Websocket or HTTP server:
539
540 ```mermaid
541 sequenceDiagram
542 Client->>UI Server: request
543 UI Server->>Client: response
544 Note over UI Server,Client: HTTP or Websocket
545 ```
546
547 ### Websocket Protocol
548
549 SRPC protocol over Websocket. PDU stands for 'Protocol Data Unit'.
550
551 - Request:
552 [`uuid`, `ProcedureName`, `PDU`]
553 `uuid`: String uniquely representing this request
554 `ProcedureName`: The procedure to run on the simulator
555 `PDU`: The parameters for said procedure
556
557 - Response:
558 [`uuid`, `PDU`]
559 `uuid`: String uniquely linking the response to the request
560 `PDU`: Response parameters to requested procedure
561
562 To learn how to use the Websocket protocol to pilot the simulator, an [Insomnia](https://insomnia.rest/) Websocket requests collection is available in [src/assets/ui-protocol](./src/assets/ui-protocol) directory.
563
564 #### Version 0.0.1
565
566 Set the Websocket header _Sec-Websocket-Protocol_ to `ui0.0.1`.
567
568 ##### Procedures
569
570 ###### Simulator State
571
572 - Request:
573 `ProcedureName`: 'simulatorState'
574 `PDU`: {}
575
576 - Response:
577 `PDU`: {
578 `status`: 'success' | 'failure',
579 `state`: {
580 `version`: string,
581 `started`: boolean,
582 `templateStatistics`: Record<string, TemplateStatistics>
583 }
584 }
585
586 ###### Start Simulator
587
588 - Request:
589 `ProcedureName`: 'startSimulator'
590 `PDU`: {}
591
592 - Response:
593 `PDU`: {
594 `status`: 'success' | 'failure'
595 }
596
597 ###### Stop Simulator
598
599 - Request:
600 `ProcedureName`: 'stopSimulator'
601 `PDU`: {}
602
603 - Response:
604 `PDU`: {
605 `status`: 'success' | 'failure'
606 }
607
608 ###### List Charging Station Templates
609
610 - Request:
611 `ProcedureName`: 'listTemplates'
612 `PDU`: {}
613
614 - Response:
615 `PDU`: {
616 `status`: 'success' | 'failure',
617 `templates`: string[]
618 }
619
620 ###### Add Charging Stations
621
622 - Request:
623 `ProcedureName`: 'addChargingStations'
624 `PDU`: {
625 `template`: string,
626 `numberOfStations`: number,
627 `options?`: {
628 `supervisionUrls?`: string | string[],
629 `persistentConfiguration?`: boolean,
630 `autoStart?`: boolean,
631 `autoRegister?`: boolean,
632 `enableStatistics?`: boolean,
633 `ocppStrictCompliance?`: boolean,
634 `stopTransactionsOnStopped?`: boolean
635 }
636 }
637
638 - Response:
639 `PDU`: {
640 `status`: 'success' | 'failure'
641 }
642
643 ###### Delete Charging Stations
644
645 - Request:
646 `ProcedureName`: 'deleteChargingStations'
647 `PDU`: {
648 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
649 `deleteConfiguration?`: boolean
650 }
651
652 - Response:
653 `PDU`: {
654 `status`: 'success' | 'failure',
655 `hashIdsSucceeded`: charging station unique identifier strings array,
656 `hashIdsFailed`: charging station unique identifier strings array (optional),
657 `responsesFailed`: failed responses payload array (optional)
658 }
659
660 ###### Set Charging Station Supervision Url
661
662 - Request:
663 `ProcedureName`: 'setSupervisionUrl'
664 `PDU`: {
665 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
666 `url`: string
667 }
668
669 - Response:
670 `PDU`: {
671 `status`: 'success' | 'failure',
672 `hashIdsSucceeded`: charging station unique identifier strings array,
673 `hashIdsFailed`: charging station unique identifier strings array (optional),
674 `responsesFailed`: failed responses payload array (optional)
675 }
676
677 ###### Performance Statistics
678
679 - Request:
680 `ProcedureName`: 'performanceStatistics'
681 `PDU`: {}
682
683 - Response:
684 `PDU`: {
685 `status`: 'success' | 'failure',
686 `performanceStatistics`: Statistics[]
687 }
688
689 ###### List Charging Stations
690
691 - Request:
692 `ProcedureName`: 'listChargingStations'
693 `PDU`: {}
694
695 - Response:
696 `PDU`: {
697 `status`: 'success' | 'failure',
698 `chargingStations`: ChargingStationData[]
699 }
700
701 ###### Start Charging Station
702
703 - Request:
704 `ProcedureName`: 'startChargingStation'
705 `PDU`: {
706 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
707 }
708
709 - Response:
710 `PDU`: {
711 `status`: 'success' | 'failure',
712 `hashIdsSucceeded`: charging station unique identifier strings array,
713 `hashIdsFailed`: charging station unique identifier strings array (optional),
714 `responsesFailed`: failed responses payload array (optional)
715 }
716
717 ###### Stop Charging Station
718
719 - Request:
720 `ProcedureName`: 'stopChargingStation'
721 `PDU`: {
722 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
723 }
724
725 - Response:
726 `PDU`: {
727 `status`: 'success' | 'failure',
728 `hashIdsSucceeded`: charging station unique identifier strings array,
729 `hashIdsFailed`: charging station unique identifier strings array (optional),
730 `responsesFailed`: failed responses payload array (optional)
731 }
732
733 ###### Open Connection
734
735 - Request:
736 `ProcedureName`: 'openConnection'
737 `PDU`: {
738 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
739 }
740
741 - Response:
742 `PDU`: {
743 `status`: 'success' | 'failure',
744 `hashIdsSucceeded`: charging station unique identifier strings array,
745 `hashIdsFailed`: charging station unique identifier strings array (optional),
746 `responsesFailed`: failed responses payload array (optional)
747 }
748
749 ###### Close Connection
750
751 - Request:
752 `ProcedureName`: 'closeConnection'
753 `PDU`: {
754 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
755 }
756
757 - Response:
758 `PDU`: {
759 `status`: 'success' | 'failure',
760 `hashIdsSucceeded`: charging station unique identifier strings array,
761 `hashIdsFailed`: charging station unique identifier strings array (optional),
762 `responsesFailed`: failed responses payload array (optional)
763 }
764
765 ###### Start Automatic Transaction Generator
766
767 - Request:
768 `ProcedureName`: 'startAutomaticTransactionGenerator'
769 `PDU`: {
770 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
771 `connectorIds`: connector id integer array (optional, default: all connectors)
772 }
773
774 - Response:
775 `PDU`: {
776 `status`: 'success' | 'failure',
777 `hashIdsSucceeded`: charging station unique identifier strings array,
778 `hashIdsFailed`: charging station unique identifier strings array (optional),
779 `responsesFailed`: failed responses payload array (optional)
780 }
781
782 ###### Stop Automatic Transaction Generator
783
784 - Request:
785 `ProcedureName`: 'stopAutomaticTransactionGenerator'
786 `PDU`: {
787 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
788 `connectorIds`: connector id integer array (optional, default: all connectors)
789 }
790
791 - Response:
792 `PDU`: {
793 `status`: 'success' | 'failure',
794 `hashIdsSucceeded`: charging station unique identifier strings array,
795 `hashIdsFailed`: charging station unique identifier strings array (optional),
796 `responsesFailed`: failed responses payload array (optional)
797 }
798
799 ###### OCPP commands trigger
800
801 - Request:
802 `ProcedureName`: 'commandName' (the OCPP command name in camel case)
803 `PDU`: {
804 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
805 ...`commandPayload`
806 } (the OCPP command payload with some optional fields added to target the simulated charging stations)
807
808 - Response:
809 `PDU`: {
810 `status`: 'success' | 'failure',
811 `hashIdsSucceeded`: charging station unique identifier strings array,
812 `hashIdsFailed`: charging station unique identifier strings array (optional),
813 `responsesFailed`: failed responses payload array (optional)
814 }
815
816 Examples:
817
818 - **Start Transaction**
819
820 - Request:
821 `ProcedureName`: 'startTransaction'
822 `PDU`: {
823 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
824 `connectorId`: connector id integer,
825 `idTag`: RFID tag string
826 }
827
828 - Response:
829 `PDU`: {
830 `status`: 'success' | 'failure',
831 `hashIdsSucceeded`: charging station unique identifier strings array,
832 `hashIdsFailed`: charging station unique identifier strings array (optional),
833 `responsesFailed`: failed responses payload array (optional)
834 }
835
836 - **Stop Transaction**
837
838 - Request:
839 `ProcedureName`: 'stopTransaction'
840 `PDU`: {
841 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
842 `transactionId`: transaction id integer
843 }
844
845 - Response:
846 `PDU`: {
847 `status`: 'success' | 'failure',
848 `hashIdsSucceeded`: charging station unique identifier strings array,
849 `hashIdsFailed`: charging station unique identifier strings array (optional),
850 `responsesFailed`: failed responses payload array (optional)
851 }
852
853 - **Status Notification**
854
855 - Request:
856 `ProcedureName`: 'statusNotification'
857 `PDU`: {
858 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
859 `connectorId`: connector id integer,
860 `errorCode`: connector error code,
861 `status`: connector status
862 }
863
864 - Response:
865 `PDU`: {
866 `status`: 'success' | 'failure',
867 `hashIdsSucceeded`: charging station unique identifier strings array,
868 `hashIdsFailed`: charging station unique identifier strings array (optional),
869 `responsesFailed`: failed responses payload array (optional)
870 }
871
872 - **Heartbeat**
873
874 - Request:
875 `ProcedureName`: 'heartbeat'
876 `PDU`: {
877 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
878 }
879
880 - Response:
881 `PDU`: {
882 `status`: 'success' | 'failure',
883 `hashIdsSucceeded`: charging station unique identifier strings array,
884 `hashIdsFailed`: charging station unique identifier strings array (optional),
885 `responsesFailed`: failed responses payload array (optional)
886 }
887
888 ### HTTP Protocol
889
890 To 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.
891
892 ## Support, Feedback, Contributing
893
894 This 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).
895
896 ## Code of Conduct
897
898 We 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.
899
900 ## Licensing
901
902 Copyright 2020-2024 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).