Fix heartbeat initialization
[e-mobility-charging-stations-simulator.git] / src / assets / station-templates / virtual-simple.station-template.json
1 {
2 "authorizationFile": "./src/assets/authorization-tags.json",
3 "baseName": "CS-BASIC",
4 "chargePointModel": "Simulator simple",
5 "chargePointVendor": "Ovomaltin",
6 "power": 50000,
7 "powerUnit": "W",
8 "numberOfConnectors": 3,
9 "randomConnectors": false,
10 "Configuration": {
11 "configurationKey": [
12 {
13 "key": "NumberOfConnectors",
14 "readonly": true,
15 "value": 3
16 },
17 {
18 "key": "MeterValueSampleInterval",
19 "readonly": false,
20 "value": 30
21 },
22 {
23 "key": "SupportedFeatureProfiles",
24 "readonly": true,
25 "value": "Core,LocalAuthListManagement"
26 },
27 {
28 "key": "LocalAuthListEnabled",
29 "readonly": false,
30 "value": false
31 },
32 {
33 "key": "AuthorizeRemoteTxRequests",
34 "readonly": false,
35 "value": false
36 }
37 ]
38 },
39 "AutomaticTransactionGenerator": {
40 "enable": false,
41 "minDuration": 60,
42 "maxDuration": 80,
43 "minDelayBetweenTwoTransactions": 15,
44 "maxDelayBetweenTwoTransactions": 30,
45 "probabilityOfStart": 1,
46 "stopAfterHours": 0.3,
47 "stopOnConnectionFailure": false
48 },
49 "Connectors": {
50 "0": {},
51 "1": {
52 "bootStatus": "Available",
53 "MeterValues": [
54 {
55 "unit": "Percent",
56 "context": "Sample.Periodic",
57 "measurand": "SoC",
58 "location": "EV"
59 },
60 {
61 "unit": "Wh",
62 "context": "Sample.Periodic"
63 }
64 ]
65 },
66 "2": {
67 "bootStatus": "Preparing",
68 "MeterValues": [
69 {
70 "unit": "Percent",
71 "context": "Sample.Periodic",
72 "measurand": "SoC",
73 "location": "EV"
74 },
75 {
76 "unit": "Wh",
77 "context": "Sample.Periodic"
78 }
79 ]
80 },
81 "3": {
82 "bootStatus": "Faulted",
83 "MeterValues": [
84 {
85 "unit": "Percent",
86 "context": "Sample.Periodic",
87 "measurand": "SoC",
88 "location": "EV"
89 },
90 {
91 "unit": "Wh",
92 "context": "Sample.Periodic"
93 }
94 ]
95 }
96 }
97 }