1 <!-- markdownlint-disable-file MD033 MD024 -->
4 # [e-Mobility charging stations simulator](https://github.com/sap/e-mobility-charging-stations-simulator)
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)
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.
22 - [Installation](#installation)
23 - [Prerequisites](#prerequisites)
26 - [GNU/Linux](#gnulinux)
27 - [Development prerequisites (optional)](#development-prerequisites-optional)
29 - [Windows](#windows-1)
30 - [Dependencies](#dependencies)
31 - [Initial configuration](#initial-configuration)
32 - [Start simulator](#start-simulator)
33 - [Start Web UI](#start-web-ui)
34 - [Configuration files syntax](#configuration-files-syntax)
35 - [Charging stations simulator configuration](#charging-stations-simulator-configuration)
36 - [Charging station template configuration](#charging-station-template-configuration)
37 - [Charging station configuration](#charging-station-configuration)
39 - [OCPP-J commands supported](#ocpp-j-commands-supported)
40 - [Version 1.6](#version-16)
41 - [Version 2.x.x](#version-2xx)
42 - [OCPP-J standard parameters supported](#ocpp-j-standard-parameters-supported)
43 - [Version 1.6](#version-16-1)
44 - [Version 2.x.x](#version-2xx-1)
45 - [UI Protocol](#ui-protocol)
46 - [Websocket Protocol](#websocket-protocol)
47 - [HTTP Protocol](#http-protocol)
48 - [Support, Feedback, Contributing](#support-feedback-contributing)
49 - [Code of Conduct](#code-of-conduct)
50 - [Licensing](#licensing)
56 Install the [node.js](https://nodejs.org/) current LTS or superior version runtime environment:
60 - [Chocolatey](https://chocolatey.org/):
63 choco install -y nodejs
68 - [Homebrew](https://brew.sh/):
76 - [NodeSource](https://github.com/nodesource/distributions) node.js binary distributions for all supported versions.
78 ### Development prerequisites (optional)
80 Install [volta](https://volta.sh/) for managing automatically the node.js runtime and package manager version:
85 curl https://get.volta.sh | bash
94 Setup [volta](https://volta.sh/) with [pnpm](https://github.com/pnpm/pnpm) package manager support: https://docs.volta.sh/advanced/pnpm
98 Enable corepack, if [volta](https://volta.sh/) is not installed and configured, and install latest pnpm version:
102 corepack prepare pnpm@latest --activate
105 In the repository root, run the following command:
111 ## Initial configuration
113 Copy the configuration template file [src/assets/config-template.json](./src/assets/config-template.json) to [src/assets/config.json](./src/assets/config.json).
114 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).
116 Tweak them to your needs by following the section [configuration files syntax](#configuration-files-syntax): OCPP server supervision URL(s), charging station templates, etc.
126 See Web UI [README.md](./ui/web/README.md) for more information.
128 ## Configuration files syntax
130 All configuration files are using the JSON standard syntax.
132 **Configuration files locations**:
134 - charging stations simulator configuration: [src/assets/config.json](./src/assets/config.json);
135 - charging station configuration templates: [src/assets/station-templates](./src/assets/station-templates);
136 - charging station configurations: [dist/assets/configurations](./dist/assets/configurations);
137 - charging station RFID tags lists: [src/assets](./src/assets).
139 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).
141 All charging station configuration templates are in the directory [src/assets/station-templates](./src/assets/station-templates).
143 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).
145 **Configuration files hierarchy and priority**:
147 1. charging station configuration: [dist/assets/configurations](./dist/assets/configurations);
148 2. charging station configuration template: [src/assets/station-templates](./src/assets/station-templates);
149 3. charging stations simulator configuration: [src/assets/config.json](./src/assets/config.json).
151 The charging stations simulator has an automatic configuration files reload feature at change for:
153 - charging stations simulator configuration;
154 - charging station configuration templates;
155 - charging station authorization RFID tags lists.
157 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.
159 ### Charging stations simulator configuration
161 **src/assets/config.json**:
163 | Key | Value(s) | Default Value | Value type | Description |
164 | -------------------------- | -------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
165 | supervisionUrls | | [] | string \| string[] | string or strings array containing global connection URIs to OCPP-J servers |
166 | supervisionUrlDistribution | round-robin/random/charging-station-affinity | charging-station-affinity | string | supervision urls distribution policy to simulated charging stations |
167 | 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 |
168 | 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 |
169 | 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 |
170 | 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 |
171 | stationTemplateUrls | | {}[] | {<br />file: string;<br />numberOfStations: number;<br />provisionedNumberOfStations?: number;<br />}[] | array of charging station templates URIs configuration section:<br />- _file_: charging station configuration template file relative path<br />- _numberOfStations_: template number of stations at startup<br />- _provisionedNumberOfStations_: template provisioned number of stations after startup |
173 #### Worker process model
176 Worker set executing each a fixed number (elementsPerWorker) of simulated charging stations from the total
179 Fixedly sized worker pool executing a fixed total number of simulated charging stations
181 - **dynamicPool** (experimental):
182 Dynamically sized worker pool executing a fixed total number of simulated charging stations
184 ### Charging station template configuration
186 **src/assets/station-templates/\<name\>.json**:
188 | Key | Value(s) | Default Value | Value type | Description |
189 | ---------------------------------------------------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
190 | supervisionUrls | | [] | string \| string[] | string or strings array containing connection URIs to OCPP-J servers |
191 | supervisionUser | | undefined | string | basic HTTP authentication user to OCPP-J server |
192 | supervisionPassword | | undefined | string | basic HTTP authentication password to OCPP-J server |
193 | supervisionUrlOcppConfiguration | true/false | false | boolean | enable supervision URL configuration via a vendor OCPP parameter key |
194 | supervisionUrlOcppKey | | 'ConnectionUrl' | string | the vendor string that will be used as a vendor OCPP parameter key to set the supervision URL |
195 | autoStart | true/false | true | boolean | enable automatic start of added charging station from template |
196 | ocppVersion | 1.6/2.0/2.0.1 | 1.6 | string | OCPP version |
197 | ocppProtocol | json | json | string | OCPP protocol |
198 | 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 |
199 | 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) |
200 | 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) |
201 | 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) |
202 | wsOptions | | {} | ClientOptions & ClientRequestArgs | [ws](https://github.com/websockets/ws) and node.js [http](https://nodejs.org/api/http.html) clients options intersection |
203 | idTagsFile | | undefined | string | RFID tags list file relative to [src/assets](./src/assets) path |
204 | baseName | | undefined | string | base name to build charging stations id |
205 | nameSuffix | | undefined | string | name suffix to build charging stations id |
206 | fixedName | true/false | false | boolean | use the 'baseName' as the charging stations unique name |
207 | chargePointModel | | undefined | string | charging stations model |
208 | chargePointVendor | | undefined | string | charging stations vendor |
209 | chargePointSerialNumberPrefix | | undefined | string | charge point serial number prefix |
210 | chargeBoxSerialNumberPrefix | | undefined | string | charge box serial number prefix (deprecated since OCPP 1.6) |
211 | 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 |
212 | firmwareVersion | | undefined | string | charging stations firmware version |
213 | power | | | float \| float[] | charging stations maximum power value(s) |
214 | powerSharedByConnectors | true/false | false | boolean | charging stations power shared by its connectors |
215 | powerUnit | W/kW | W | string | charging stations power unit |
216 | currentOutType | AC/DC | AC | string | charging stations current out type |
217 | voltageOut | | AC:230/DC:400 | integer | charging stations voltage out |
218 | numberOfPhases | 0/1/3 | AC:3/DC:0 | integer | charging stations number of phase(s) |
219 | numberOfConnectors | | | integer \| integer[] | charging stations number of connector(s) |
220 | useConnectorId0 | true/false | true | boolean | use connector id 0 definition from the charging station configuration template |
221 | randomConnectors | true/false | false | boolean | randomize runtime connector id affectation from the connector id definition in charging station configuration template |
222 | resetTime | | 60 | integer | seconds to wait before the charging stations come back at reset |
223 | autoRegister | true/false | false | boolean | set charging stations as registered at boot notification for testing purpose |
224 | autoReconnectMaxRetries | | -1 (unlimited) | integer | connection retries to the OCPP-J server |
225 | reconnectExponentialDelay | true/false | false | boolean | connection delay retry to the OCPP-J server |
226 | registrationMaxRetries | | -1 (unlimited) | integer | charging stations boot notification retries |
227 | 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 |
228 | amperageLimitationUnit | A/cA/dA/mA | A | string | charging stations amperage limit unit |
229 | enableStatistics | true/false | false | boolean | enable charging stations statistics |
230 | remoteAuthorization | true/false | true | boolean | enable RFID tags remote authorization |
231 | beginEndMeterValues | true/false | false | boolean | enable Transaction.{Begin,End} MeterValues |
232 | outOfOrderEndMeterValues | true/false | false | boolean | send Transaction.End MeterValues out of order. Need to relax OCPP specifications strict compliance ('ocppStrictCompliance' parameter) |
233 | meteringPerTransaction | true/false | true | boolean | enable metering history on a per transaction basis |
234 | transactionDataMeterValues | true/false | false | boolean | enable transaction data MeterValues at stop transaction |
235 | stopTransactionsOnStopped | true/false | true | boolean | enable stop transactions on charging station stop |
236 | mainVoltageMeterValues | true/false | true | boolean | include charging stations main voltage MeterValues on three phased charging stations |
237 | phaseLineToLineVoltageMeterValues | true/false | false | boolean | include charging stations line to line voltage MeterValues on three phased charging stations |
238 | customValueLimitationMeterValues | true/false | true | boolean | enable limitation on custom fluctuated value in MeterValues |
239 | 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. |
240 | 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 |
241 | messageTriggerSupport | | {} | Record<MessageTrigger, boolean> | Configuration section for OCPP commands trigger support. Empty section means all implemented OCPP trigger commands are supported |
242 | Configuration | | | ChargingStationOcppConfiguration | charging stations OCPP parameters configuration section |
243 | AutomaticTransactionGenerator | | | AutomaticTransactionGeneratorConfiguration | charging stations ATG configuration section |
244 | Connectors | | | Record<string, ConnectorStatus> | charging stations connectors configuration section |
245 | Evses | | | Record<string, EvseTemplate> | charging stations EVSEs configuration section |
247 #### Configuration section syntax example
251 "configurationKey": [
254 "key": "StandardKey",
256 "value": "StandardValue",
264 "value": "VendorValue",
273 #### AutomaticTransactionGenerator section syntax example
275 ##### Type definition:
278 type AutomaticTransactionGeneratorConfiguration = {
282 minDelayBetweenTwoTransactions: number
283 maxDelayBetweenTwoTransactions: number
284 probabilityOfStart: number
285 stopAfterHours: number
286 stopAbsoluteDuration: boolean
287 requireAuthorize?: boolean
288 idTagDistribution?: 'random' | 'round-robin' | 'connector-affinity'
295 "AutomaticTransactionGenerator": {
299 "minDelayBetweenTwoTransactions": 15,
300 "maxDelayBetweenTwoTransactions": 30,
301 "probabilityOfStart": 1,
302 "stopAfterHours": 0.3,
303 "requireAuthorize": true,
304 "idTagDistribution": "random"
308 #### Connectors section syntax example
314 "bootStatus": "Available",
319 "measurand": "Power.Active.Import",
322 "fluctuationPercent": "10"
327 "measurand": "Current.Import",
340 #### Evses section syntax example
352 "bootStatus": "Available",
357 "measurand": "Power.Active.Import",
360 "fluctuationPercent": "10"
365 "measurand": "Current.Import",
380 ### Charging station configuration
382 **dist/assets/configurations/\<hashId\>.json**:
384 The charging station configuration file is automatically generated at startup from the charging station configuration template file and is persistent.
386 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.
388 #### stationInfo section (optional)
390 The syntax is similar to charging station configuration template with some added fields like the charging station id (name) and the 'Configuration' section removed.
392 That section is overwritten on matching charging station configuration template file changes.
394 #### connectorsStatus section
396 The syntax is similar to charging station configuration template 'Connectors' section with some added fields.
398 That section is overwritten on matching charging station configuration template file changes.
400 #### evsesStatus section
402 The syntax is similar to charging station configuration template 'Evses' section with some added fields.
404 That section is overwritten on matching charging station configuration template file changes.
406 #### automaticTransactionGenerator section (optional)
408 The syntax is similar to the charging station configuration template 'AutomaticTransactionGenerator' section.
410 That section is overwritten on matching charging station configuration template file changes.
412 #### automaticTransactionGeneratorStatuses section
414 That section is not overwritten on matching charging station configuration template file changes.
416 #### configurationKey section (optional)
418 The syntax is similar to the charging station configuration template 'Configuration' section.
420 That section is not overwritten on matching charging station configuration template file changes.
424 In the [docker](./docker) folder:
430 <!-- Or with the optional git submodules:
433 make SUBMODULES_INIT=true
436 ## OCPP-J commands supported
442 - :white_check_mark: Authorize
443 - :white_check_mark: BootNotification
444 - :white_check_mark: ChangeAvailability
445 - :white_check_mark: ChangeConfiguration
446 - :white_check_mark: ClearCache
447 - :white_check_mark: DataTransfer
448 - :white_check_mark: GetConfiguration
449 - :white_check_mark: Heartbeat
450 - :white_check_mark: MeterValues
451 - :white_check_mark: RemoteStartTransaction
452 - :white_check_mark: RemoteStopTransaction
453 - :white_check_mark: Reset
454 - :white_check_mark: StartTransaction
455 - :white_check_mark: StatusNotification
456 - :white_check_mark: StopTransaction
457 - :white_check_mark: UnlockConnector
459 #### Firmware Management Profile
461 - :white_check_mark: GetDiagnostics
462 - :white_check_mark: DiagnosticsStatusNotification
463 - :white_check_mark: FirmwareStatusNotification
464 - :white_check_mark: UpdateFirmware
466 #### Local Auth List Management Profile
468 - :x: GetLocalListVersion
471 #### Reservation Profile
473 - :white_check_mark: CancelReservation
474 - :white_check_mark: ReserveNow
476 #### Smart Charging Profile
478 - :white_check_mark: ClearChargingProfile
479 - :white_check_mark: GetCompositeSchedule
480 - :white_check_mark: SetChargingProfile
482 #### Remote Trigger Profile
484 - :white_check_mark: TriggerMessage
490 - :white_check_mark: BootNotification
494 - :white_check_mark: ClearCache
498 - :white_check_mark: StatusNotification
499 - :white_check_mark: Heartbeat
501 ## OCPP-J standard parameters supported
503 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.
509 - :white_check_mark: AuthorizeRemoteTxRequests (type: boolean) (units: -)
510 - :x: ClockAlignedDataInterval (type: integer) (units: seconds)
511 - :white_check_mark: ConnectionTimeOut (type: integer) (units: seconds)
512 - :x: GetConfigurationMaxKeys (type: integer) (units: -)
513 - :white_check_mark: HeartbeatInterval (type: integer) (units: seconds)
514 - :x: LocalAuthorizeOffline (type: boolean) (units: -)
515 - :x: LocalPreAuthorize (type: boolean) (units: -)
516 - :x: MeterValuesAlignedData (type: CSL) (units: -)
517 - :white_check_mark: MeterValuesSampledData (type: CSL) (units: -)
518 - :white_check_mark: MeterValueSampleInterval (type: integer) (units: seconds)
519 - :white_check_mark: NumberOfConnectors (type: integer) (units: -)
520 - :x: ResetRetries (type: integer) (units: times)
521 - :white_check_mark: ConnectorPhaseRotation (type: CSL) (units: -)
522 - :x: StopTransactionOnEVSideDisconnect (type: boolean) (units: -)
523 - :x: StopTransactionOnInvalidId (type: boolean) (units: -)
524 - :x: StopTxnAlignedData (type: CSL) (units: -)
525 - :x: StopTxnSampledData (type: CSL) (units: -)
526 - :white_check_mark: SupportedFeatureProfiles (type: CSL) (units: -)
527 - :x: TransactionMessageAttempts (type: integer) (units: times)
528 - :x: TransactionMessageRetryInterval (type: integer) (units: seconds)
529 - :x: UnlockConnectorOnEVSideDisconnect (type: boolean) (units: -)
530 - :white_check_mark: WebSocketPingInterval (type: integer) (units: seconds)
532 #### Firmware Management Profile
536 #### Local Auth List Management Profile
538 - :white_check_mark: LocalAuthListEnabled (type: boolean) (units: -)
539 - :x: LocalAuthListMaxLength (type: integer) (units: -)
540 - :x: SendLocalListMaxLength (type: integer) (units: -)
542 #### Reservation Profile
544 - :white_check_mark: ReserveConnectorZeroSupported (type: boolean) (units: -)
546 #### Smart Charging Profile
548 - :x: ChargeProfileMaxStackLevel (type: integer) (units: -)
549 - :x: ChargingScheduleAllowedChargingRateUnit (type: CSL) (units: -)
550 - :x: ChargingScheduleMaxPeriods (type: integer) (units: -)
551 - :x: MaxChargingProfilesInstalled (type: integer) (units: -)
553 #### Remote Trigger Profile
561 Protocol to control the simulator via a Websocket or HTTP server:
565 Client->>UI Server: request
566 UI Server->>Client: response
567 Note over UI Server,Client: HTTP or Websocket
570 ### Websocket Protocol
572 SRPC protocol over Websocket. PDU stands for 'Protocol Data Unit'.
575 [`uuid`, `ProcedureName`, `PDU`]
576 `uuid`: String uniquely representing this request
577 `ProcedureName`: The procedure to run on the simulator
578 `PDU`: The parameters for said procedure
582 `uuid`: String uniquely linking the response to the request
583 `PDU`: Response parameters to requested procedure
585 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.
589 Set the Websocket header _Sec-Websocket-Protocol_ to `ui0.0.1`.
593 ###### Simulator State
596 `ProcedureName`: 'simulatorState'
601 `status`: 'success' | 'failure',
604 `configuration`: ConfigurationData,
606 `templateStatistics`: Record<string, TemplateStatistics>
610 ###### Start Simulator
613 `ProcedureName`: 'startSimulator'
618 `status`: 'success' | 'failure'
621 ###### Stop Simulator
624 `ProcedureName`: 'stopSimulator'
629 `status`: 'success' | 'failure'
632 ###### List Charging Station Templates
635 `ProcedureName`: 'listTemplates'
640 `status`: 'success' | 'failure',
641 `templates`: string[]
644 ###### Add Charging Stations
647 `ProcedureName`: 'addChargingStations'
650 `numberOfStations`: number,
652 `supervisionUrls?`: string | string[],
653 `persistentConfiguration?`: boolean,
654 `autoStart?`: boolean,
655 `autoRegister?`: boolean,
656 `enableStatistics?`: boolean,
657 `ocppStrictCompliance?`: boolean,
658 `stopTransactionsOnStopped?`: boolean
664 `status`: 'success' | 'failure',
665 `hashIdsSucceeded`: charging station unique identifier strings array (optional),
666 `hashIdsFailed`: charging station unique identifier strings array (optional)
669 ###### Delete Charging Stations
672 `ProcedureName`: 'deleteChargingStations'
674 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
675 `deleteConfiguration?`: boolean
680 `status`: 'success' | 'failure',
681 `hashIdsSucceeded`: charging station unique identifier strings array,
682 `hashIdsFailed`: charging station unique identifier strings array (optional),
683 `responsesFailed`: failed responses payload array (optional)
686 ###### Set Charging Station Supervision Url
689 `ProcedureName`: 'setSupervisionUrl'
691 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
697 `status`: 'success' | 'failure',
698 `hashIdsSucceeded`: charging station unique identifier strings array,
699 `hashIdsFailed`: charging station unique identifier strings array (optional),
700 `responsesFailed`: failed responses payload array (optional)
703 ###### Performance Statistics
706 `ProcedureName`: 'performanceStatistics'
711 `status`: 'success' | 'failure',
712 `performanceStatistics`: Statistics[]
715 ###### List Charging Stations
718 `ProcedureName`: 'listChargingStations'
723 `status`: 'success' | 'failure',
724 `chargingStations`: ChargingStationData[]
727 ###### Start Charging Station
730 `ProcedureName`: 'startChargingStation'
732 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
737 `status`: 'success' | 'failure',
738 `hashIdsSucceeded`: charging station unique identifier strings array,
739 `hashIdsFailed`: charging station unique identifier strings array (optional),
740 `responsesFailed`: failed responses payload array (optional)
743 ###### Stop Charging Station
746 `ProcedureName`: 'stopChargingStation'
748 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
753 `status`: 'success' | 'failure',
754 `hashIdsSucceeded`: charging station unique identifier strings array,
755 `hashIdsFailed`: charging station unique identifier strings array (optional),
756 `responsesFailed`: failed responses payload array (optional)
759 ###### Open Connection
762 `ProcedureName`: 'openConnection'
764 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
769 `status`: 'success' | 'failure',
770 `hashIdsSucceeded`: charging station unique identifier strings array,
771 `hashIdsFailed`: charging station unique identifier strings array (optional),
772 `responsesFailed`: failed responses payload array (optional)
775 ###### Close Connection
778 `ProcedureName`: 'closeConnection'
780 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
785 `status`: 'success' | 'failure',
786 `hashIdsSucceeded`: charging station unique identifier strings array,
787 `hashIdsFailed`: charging station unique identifier strings array (optional),
788 `responsesFailed`: failed responses payload array (optional)
791 ###### Start Automatic Transaction Generator
794 `ProcedureName`: 'startAutomaticTransactionGenerator'
796 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
797 `connectorIds`: connector id integer array (optional, default: all connectors)
802 `status`: 'success' | 'failure',
803 `hashIdsSucceeded`: charging station unique identifier strings array,
804 `hashIdsFailed`: charging station unique identifier strings array (optional),
805 `responsesFailed`: failed responses payload array (optional)
808 ###### Stop Automatic Transaction Generator
811 `ProcedureName`: 'stopAutomaticTransactionGenerator'
813 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
814 `connectorIds`: connector id integer array (optional, default: all connectors)
819 `status`: 'success' | 'failure',
820 `hashIdsSucceeded`: charging station unique identifier strings array,
821 `hashIdsFailed`: charging station unique identifier strings array (optional),
822 `responsesFailed`: failed responses payload array (optional)
825 ###### OCPP commands trigger
828 `ProcedureName`: 'commandName' (the OCPP command name in camel case)
830 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
832 } (the OCPP command payload with some optional fields added to target the simulated charging stations)
836 `status`: 'success' | 'failure',
837 `hashIdsSucceeded`: charging station unique identifier strings array,
838 `hashIdsFailed`: charging station unique identifier strings array (optional),
839 `responsesFailed`: failed responses payload array (optional)
844 - **Start Transaction**
847 `ProcedureName`: 'startTransaction'
849 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
850 `connectorId`: connector id integer,
851 `idTag`: RFID tag string
856 `status`: 'success' | 'failure',
857 `hashIdsSucceeded`: charging station unique identifier strings array,
858 `hashIdsFailed`: charging station unique identifier strings array (optional),
859 `responsesFailed`: failed responses payload array (optional)
862 - **Stop Transaction**
865 `ProcedureName`: 'stopTransaction'
867 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
868 `transactionId`: transaction id integer
873 `status`: 'success' | 'failure',
874 `hashIdsSucceeded`: charging station unique identifier strings array,
875 `hashIdsFailed`: charging station unique identifier strings array (optional),
876 `responsesFailed`: failed responses payload array (optional)
879 - **Status Notification**
882 `ProcedureName`: 'statusNotification'
884 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations),
885 `connectorId`: connector id integer,
886 `errorCode`: connector error code,
887 `status`: connector status
892 `status`: 'success' | 'failure',
893 `hashIdsSucceeded`: charging station unique identifier strings array,
894 `hashIdsFailed`: charging station unique identifier strings array (optional),
895 `responsesFailed`: failed responses payload array (optional)
901 `ProcedureName`: 'heartbeat'
903 `hashIds`: charging station unique identifier strings array (optional, default: all charging stations)
908 `status`: 'success' | 'failure',
909 `hashIdsSucceeded`: charging station unique identifier strings array,
910 `hashIdsFailed`: charging station unique identifier strings array (optional),
911 `responsesFailed`: failed responses payload array (optional)
916 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.
918 ## Support, Feedback, Contributing
920 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).
924 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.
928 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).