(function() { function getParam(param) { let params = new URLSearchParams(window.location.search); return params.get(param); } function storeClickId(param, storageKey) { let value = getParam(param); if (value) { let record = { value: value, expiry: new Date().getTime() + 90 * 24 * 60 * 60 * 1000 }; localStorage.setItem(storageKey, JSON.stringify(record)); console.log(`✅ Stored ${param}:`, record); } else { console.log(`⚠ No ${param} found in URL`); } } function updateHubSpotIframe(attempt = 0) { let iframe = document.querySelector('iframe[src*="hsforms.com"]'); if (!iframe) { console.warn(`⚠ Attempt ${attempt}: HubSpot iFrame not found.`); if (attempt < 20) setTimeout(() => updateHubSpotIframe(attempt + 1), 500); return; } let gclid = JSON.parse(localStorage.getItem("gclid"))?.value || ""; let fbclid = JSON.parse(localStorage.getItem("fbclid"))?.value || ""; let li_fat_id = JSON.parse(localStorage.getItem("li_fat_id"))?.value || ""; let newSrc = iframe.src.split("?")[0] + `?google_clickid=${encodeURIComponent(gclid)}` + `&meta_clickid=${encodeURIComponent(fbclid)}` + `&linkedin_clickid=${encodeURIComponent(li_fat_id)}`; console.log("🔄 Updating HubSpot iFrame to:", newSrc); iframe.src = newSrc; } // Delay execution until page is fully loade
top of page

Battery storage project in Immenstadt – here we go!

Updated: Apr 2

This week we started with the construction site installation for our 32.6 MWh battery storage project – a significant milestone for green flexibility and the energy transition!


Even though winter is just around the corner, we used every snow-free period in the Allgäu to push ahead with the progress of the project.


Our project manager Thomas Echteler and Tobias Kohler from our partner AÜW have coordinated the next steps together with the team from Sunbit Energietechnik and construction company Rupp and are pleased about the successful start of the project.


COO Christoph Lienert is proud of the team and the implementation:

"In only 9 months, we managed to complete the project development and initiate construction work – a pace that sets new standards for us and sends a strong signal to the market. Speed is crucial in order to advance the energy transition in good time."



Comments


Commenting has been turned off.
bottom of page