Skip to content

Commit

Permalink
Added sample profiles
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph <367712+folkengine@users.noreply.github.com>
  • Loading branch information
folkengine committed Jun 6, 2024
1 parent 74313ff commit b8a34a1
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

noun - [ˈapn̩ˌt͡sɛl]

1. A command-line tool for driving OCPP Profiles through an OCPP 2.0 system.
1. A command-line tool for taking in a collection of OCPP version 2.0.1 Profiles and returning a resulting Composite Schedule.
2. The Swiss canton that existed 1403 to 1597 that is the location of the earliest known yodel, which happened in 1545. It is described as "the call of a cowherd from Appenzell." - [source](https://en.wikipedia.org/wiki/Yodeling#History_of_Alpine_yodeling)

## Setup
Expand Down Expand Up @@ -46,7 +46,8 @@ For example:

```bash
$> export APPENZELL_HOME="${HOME}/directory/to/US-JOET/appenzell"
$> ./run-demo.sh -i "${APPENZELL_HOME}/scenarios/case_one/" -o "${APPENZELL_HOME}/output/" -s "2024-01-17T18:01:00" -e "2024-01-18T06:00:00"
$> ./run-demo.sh -i "${APPENZELL_HOME}/scenarios/case_one/" -o "${APPENZELL_HOME}/output/" \
-s "2024-01-17T18:01:00" -e "2024-01-18T06:00:00"
...
composite_schedule: {
"chargingRateUnit": "W",
Expand Down
24 changes: 24 additions & 0 deletions scenarios/multiple_stack_levels/TXProfile_1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"id": 1,
"chargingProfileKind": "Absolute",
"chargingProfilePurpose": "TxProfile",
"chargingSchedule": [
{
"id": 0,
"chargingRateUnit": "W",
"chargingSchedulePeriod": [
{
"limit": 2000.0,
"numberPhases": 1,
"startPeriod": 0
}
],
"duration": 1080,
"minChargingRate": 0.0,
"startSchedule": "2024-01-17T18:00:00.000Z"
}
],
"recurrencyKind": "Daily",
"stackLevel": 1,
"transactionId": "f1522902-1170-416f-8e43-9e3bce28fab7"
}
34 changes: 34 additions & 0 deletions scenarios/multiple_stack_levels/TXProfile_100.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"id": 100,
"stackLevel": 0,
"chargingProfilePurpose": "TxProfile",
"chargingProfileKind": "Recurring",
"recurrencyKind": "Daily",
"chargingSchedule": [
{
"id": 1,
"chargingRateUnit": "W",
"chargingSchedulePeriod": [
{
"limit": 11000.0,
"numberPhases": 1,
"startPeriod": 0
},
{
"limit": 6000.0,
"numberPhases": 1,
"startPeriod": 28800
},
{
"limit": 12000.0,
"numberPhases": 1,
"startPeriod": 72000
}
],
"duration": 86400,
"minChargingRate": 0.0,
"startSchedule": "2023-01-17T17:00:00.000Z"
}
],
"transactionId": "f1522902-1170-416f-8e43-9e3bce28fab8"
}
24 changes: 24 additions & 0 deletions scenarios/multiple_stack_levels/TXProfile_200.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"id": 200,
"chargingProfileKind": "Absolute",
"chargingProfilePurpose": "TxProfile",
"chargingSchedule": [
{
"id": 0,
"chargingRateUnit": "W",
"chargingSchedulePeriod": [
{
"limit": 500.0,
"numberPhases": 1,
"startPeriod": 0
}
],
"duration": 3600,
"minChargingRate": 0.0,
"startSchedule": "2024-01-17T19:30:00.000Z"
}
],
"recurrencyKind": "Daily",
"stackLevel": 2,
"transactionId": "f1522902-1170-416f-8e43-9e3bce28fab7"
}

0 comments on commit b8a34a1

Please sign in to comment.