diff --git a/demo-iso15118-2-ac-plus-ocpp.sh b/demo-iso15118-2-ac-plus-ocpp.sh index 30b7a67b..6a96e158 100755 --- a/demo-iso15118-2-ac-plus-ocpp.sh +++ b/demo-iso15118-2-ac-plus-ocpp.sh @@ -4,8 +4,9 @@ DEMO_REPO="https://github.com/everest/everest-demo.git" DEMO_BRANCH="main" -CSMS_REPO="https://github.com/thoughtworks/maeve-csms.git" -CSMS_BRANCH="b990d0eddf2bf80be8d9524a7b08029fbb305c7d" # patch files are based on this commit +CSMS_REPO="https://github.com/louisg1337/maeve-csms.git" +# CSMS_BRANCH="b990d0eddf2bf80be8d9524a7b08029fbb305c7d" # patch files are based on this commit +CSMS_BRANCH="set_charging_profile" CSMS="maeve" @@ -93,7 +94,12 @@ git clone --branch "${DEMO_BRANCH}" "${DEMO_REPO}" everest-demo if [[ "$DEMO_VERSION" != v1.6j ]]; then echo "Cloning ${CSMS} CSMS from ${CSMS_REPO} into ${DEMO_DIR}/${CSMS}-csms and starting it" - git clone ${CSMS_REPO} ${CSMS}-csms + + if [[ ${CSMS} == "maeve" ]]; then + git clone --branch "${CSMS_BRANCH}" "${CSMS_REPO}" ${CSMS}-csms + else + git clone ${CSMS_REPO} ${CSMS}-csms + fi pushd ${CSMS}-csms || exit 1 @@ -176,6 +182,7 @@ if [[ "$DEMO_VERSION" != v1.6j ]]; then fi fi + docker compose build docker compose up -d echo "Waiting 5s for CSMS to start..." diff --git a/demo-scripts/maeve-set-charging-profile.sh b/demo-scripts/maeve-set-charging-profile.sh new file mode 100644 index 00000000..c0aaca53 --- /dev/null +++ b/demo-scripts/maeve-set-charging-profile.sh @@ -0,0 +1,66 @@ +#!/bin/bash + +if [ "$#" -ne 1 ]; then + echo "Usage: $0 " + exit 1 +fi + +CS=$1 + +echo "setChargingProfile called with Charging Station: ${CS}" + +curl -X POST \ + "http://localhost:9410/api/v0/cs/${CS}/setchargingprofile" \ + -H "Content-Type: application/json" \ + -d '{ + "chargingProfileKind": "Absolute", + "chargingProfilePurpose": "TxProfile", + "chargingSchedule": [ + { + "chargingRateUnit": "W", + "chargingSchedulePeriod": [ + { + "limit": 22.5, + "startPeriod": 0, + "numberPhases": 3 + }, + { + "limit": 20.0, + "startPeriod": 3600, + "numberPhases": 3 + } + ], + "id": 1, + "minChargingRate": 5.0, + "salesTariff": { + "id": 1, + "numEPriceLevels": 2, + "salesTariffDescription": "Standard Tariff", + "salesTariffEntry": [ + { + "relativeTimeInterval": { + "start": 0, + "duration": 3600 + }, + "consumptionCost": [ + { + "cost": [ + { + "amount": 15, + "costKind": "RelativePricePercentage" + } + ], + "startValue": 10.0 + } + ] + } + ] + } + } + ], + "id": 1, + "stackLevel": 0, + "transactionId": "12345", + "validFrom": "2024-06-07T10:00:00Z", + "validTo": "2024-06-07T18:00:00Z" + }'