Skip to content

Commit 62d23a8

Browse files
author
Erik van Velzen
committedMar 25, 2025
Iron powder small changes
1 parent 67700a5 commit 62d23a8

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
export enum HeatingType {
2+
HEAT_PUMP = "HEAT_PUMP",
23
GAS_BURNER = "GAS_BURNER",
4+
/**
5+
* District heating using waste heat.
6+
*/
37
DISTRICT_HEATING = "DISTRICT_HEATING",
4-
HEAT_PUMP = "HEAT_PUMP",
5-
// This option is for step 3 only
8+
/**
9+
* District heating using iron powder as a heat source.
10+
* This option is for step 3 only.
11+
*/
612
IRON_POWDER = "IRON_POWDER",
713
}

‎frontend/components/IJzerboeren/Sankey/Sankey.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const plotlySankeyLayout: Partial<Plotly.Layout> = {
7777
// I would like to set Y size option here but it seems not possible
7878
}
7979

80-
const transitionTimeMs = 700
80+
const transitionTimeMs = 400
8181

8282
function doTransition(divId: string, oldLinks: SankeyLink[], newLinks: SankeyLink[], layout: Partial<Plotly.Layout>, startTimeMs = 0): void {
8383
requestAnimationFrame((currentTimeMs: DOMHighResTimeStamp) => {

‎frontend/components/IJzerboeren/Step2/step2-data.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export const step2RawData: Step2DataType[] = [
9898
outputs: {
9999
kpis: {
100100
gelijktijdigheid_kW: 2.2,
101-
lcoeVerwarmen_eurocentpkWh: 20,
101+
lcoeVerwarmen_eurocentpkWh: 22,
102102
co2emission_t: 105,
103103
},
104104
sankey: [

‎frontend/components/IJzerboeren/Step3/Step3.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const IronPowderSankey = dynamic(
2020

2121
export const Step3: FunctionComponent = () => {
2222
const [heatingType, previousHeatingType, setHeatingType] =
23-
useStateWithHistory<HeatingType>(HeatingType.HEAT_PUMP)
23+
useStateWithHistory<HeatingType>(HeatingType.DISTRICT_HEATING)
2424

2525
let currentOutputs: Nullable<Step2Outputs> = null
2626
if (heatingType) {
@@ -57,10 +57,10 @@ export const Step3: FunctionComponent = () => {
5757
ijzerpoederketen rekentool (IPA tool – link) ontwikkelt in het TSE project ‘Met Energie de Boer
5858
Op’. Daarbij komt de LCEO van verwarmen met ijzerpoeder uit op circa 0.17 eruo/kWh. Daar bovenop
5959
houden we ook nog rekening met 0.03 euro/kWh voor de lokale infrastructuur</p>
60-
<img src="/imgs/lcoe-ijzerpoeder.png" alt="LCOE opbouw van warmte opwekken met ijzerpoeder" />
60+
<img src="/imgs/lcoe-ijzerpoeder.png" alt="LCOE opbouw van warmte opwekken met ijzerpoeder"/>
6161
<p></p>
62-
<p>Voor de geintereseerde sturen raden we aan om de <a href="https://example.org">IPA tool</a> te verkennen. Daar kunnen verschillende
63-
systeem configuraties voor de productie van ijzerpoeder in detail verkend en geoptimilaseerd
62+
<p>Geïnteresseerden raden we aan om de <a href="https://example.org">IPA tool</a> te verkennen. Daar
63+
kunnen verschillende systeemconfiguraties voor de productie van ijzerpoeder in detail verkend en geoptimaliseerd
6464
worden.</p>
6565
</div>
6666
<div style={{

‎frontend/components/IJzerboeren/Step3/step3-data.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const ironPowderOutputs: Step3DataType = {
1111
outputs: {
1212
kpis: {
1313
gelijktijdigheid_kW: 2.2,
14-
lcoeVerwarmen_eurocentpkWh: 18,
14+
lcoeVerwarmen_eurocentpkWh: 20,
1515
co2emission_t: 105,
1616
},
1717
sankey: [

0 commit comments

Comments
 (0)