@jjlmoya/utils-home 1.29.0 → 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/entries.ts +4 -1
- package/src/index.ts +1 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/applianceCostCalculator/appliance-cost-calculator.css +635 -0
- package/src/tool/applianceCostCalculator/bibliography.astro +14 -0
- package/src/tool/applianceCostCalculator/bibliography.ts +14 -0
- package/src/tool/applianceCostCalculator/component.astro +322 -0
- package/src/tool/applianceCostCalculator/entry.ts +29 -0
- package/src/tool/applianceCostCalculator/i18n/de.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/en.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/es.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/fr.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/id.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/it.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/ja.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/ko.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/nl.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/pl.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/pt.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/ru.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/sv.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/tr.ts +229 -0
- package/src/tool/applianceCostCalculator/i18n/zh.ts +229 -0
- package/src/tool/applianceCostCalculator/index.ts +9 -0
- package/src/tool/applianceCostCalculator/logic.ts +122 -0
- package/src/tool/applianceCostCalculator/seo.astro +15 -0
- package/src/tool/applianceCostCalculator/ui.ts +41 -0
- package/src/tools.ts +2 -0
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { ApplianceCostCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'appliance-cost-calculator';
|
|
7
|
+
const title = 'Home Appliance Water and Energy Cycle Cost Calculator';
|
|
8
|
+
const description =
|
|
9
|
+
'Calculate the true cost per load of your washing machine, dishwasher and tumble dryer. See exactly how much electricity, water and detergent each cycle costs and discover how much you can save by switching to Eco mode.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: 'How much does a washing machine cycle cost?',
|
|
14
|
+
answer:
|
|
15
|
+
'A typical Eco 40C cycle uses around 0.45 kWh of electricity and 40 litres of water. At average European prices this costs roughly 0.10 to 0.15 euros per load. An intensive 60C cycle can use over 1.2 kWh and 70 litres, pushing the cost above 0.30 euros per load.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'Is it cheaper to run the dishwasher at night?',
|
|
19
|
+
answer:
|
|
20
|
+
'If your electricity provider uses time-of-use tariffs, running the dishwasher during off peak hours can reduce the energy cost by 30 percent or more. Peak hours are typically weekday mornings and evenings. Check your contract or smart meter data to confirm your exact off peak window.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Does the dryer use a lot of electricity?',
|
|
24
|
+
answer:
|
|
25
|
+
'Yes. A tumble dryer is one of the most energy intensive domestic appliances. A single full load can consume 2.5 to 3.5 kWh, costing 0.50 to 0.80 euros per cycle. Using a heat pump dryer or line drying clothes outdoors can cut this cost by 60 to 80 percent.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: 'How much water does a dishwasher use?',
|
|
29
|
+
answer:
|
|
30
|
+
'Modern dishwashers are surprisingly efficient. A standard Eco cycle uses only 8 to 12 litres of water per load, while an intensive program may use 14 to 16 litres. This is far less than washing the same dishes by hand under a running tap, which typically consumes 40 to 60 litres.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'What is the cheapest time to use appliances?',
|
|
34
|
+
answer:
|
|
35
|
+
'Under time-of-use tariffs, the cheapest periods are usually late at night, very early morning and during weekends. These off peak slots can be 30 to 50 percent cheaper than weekday peak hours. Some providers also offer free hours on weekends.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
question: 'Does switching to Eco mode really save money?',
|
|
39
|
+
answer:
|
|
40
|
+
'Absolutely. Eco modes use lower temperatures, shorter heating phases and less water. Over a full year, switching from Normal to Eco on your washing machine and dishwasher can save 50 to 100 euros in electricity and water combined, depending on usage frequency and local prices.',
|
|
41
|
+
},
|
|
42
|
+
];
|
|
43
|
+
|
|
44
|
+
const howToData = [
|
|
45
|
+
{
|
|
46
|
+
name: 'Select your appliance',
|
|
47
|
+
text: 'Tap the washing machine, dishwasher or tumble dryer icon at the top of the calculator. Each appliance has different energy and water consumption profiles.',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
name: 'Choose a cycle type',
|
|
51
|
+
text: 'Use the Eco, Normal or Intensive slider to set the washing program. Eco uses less energy and water. Intensive uses the most.',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: 'Enter your local prices',
|
|
55
|
+
text: 'Type your electricity price per kWh and your water price per litre. You can find these on your utility bill or provider website.',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: 'Set usage frequency',
|
|
59
|
+
text: 'Enter how many cycles you run per week. This allows the calculator to estimate your annual cost and potential yearly savings.',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: 'Pick the hour of use',
|
|
63
|
+
text: 'Select the hour when you plan to run the appliance. Peak hours are highlighted in red. Off peak hours are green and cheaper if you have a time-of-use tariff.',
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
name: 'Toggle detergent costs',
|
|
67
|
+
text: 'Enable the detergent toggle if you want the receipt to include an estimate for powder, liquid or capsules per cycle.',
|
|
68
|
+
},
|
|
69
|
+
];
|
|
70
|
+
|
|
71
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
72
|
+
'@context': 'https://schema.org',
|
|
73
|
+
'@type': 'FAQPage',
|
|
74
|
+
mainEntity: faqData.map((item) => ({
|
|
75
|
+
'@type': 'Question',
|
|
76
|
+
name: item.question,
|
|
77
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
78
|
+
})),
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
const howToSchema: WithContext<HowTo> = {
|
|
82
|
+
'@context': 'https://schema.org',
|
|
83
|
+
'@type': 'HowTo',
|
|
84
|
+
name: title,
|
|
85
|
+
description,
|
|
86
|
+
step: howToData.map((step) => ({
|
|
87
|
+
'@type': 'HowToStep',
|
|
88
|
+
name: step.name,
|
|
89
|
+
text: step.text,
|
|
90
|
+
})),
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
94
|
+
'@context': 'https://schema.org',
|
|
95
|
+
'@type': 'SoftwareApplication',
|
|
96
|
+
name: title,
|
|
97
|
+
description,
|
|
98
|
+
applicationCategory: 'UtilityApplication',
|
|
99
|
+
operatingSystem: 'All',
|
|
100
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
101
|
+
inLanguage: 'en',
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
export const content: ToolLocaleContent<ApplianceCostCalculatorUI> = {
|
|
105
|
+
slug,
|
|
106
|
+
title,
|
|
107
|
+
description,
|
|
108
|
+
faq: faqData,
|
|
109
|
+
bibliography,
|
|
110
|
+
howTo: howToData,
|
|
111
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
112
|
+
seo: [
|
|
113
|
+
{
|
|
114
|
+
type: 'title',
|
|
115
|
+
text: 'The Hidden Cost of Every Load',
|
|
116
|
+
level: 2,
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'paragraph',
|
|
120
|
+
html: 'Most people have no idea how much a single washing machine cycle actually costs. They see a quarterly electricity bill and assume appliances are cheap to run. The reality is that a family doing five loads of laundry per week can spend over 200 euros per year just on washing. Add the dishwasher three times a week and a tumble dryer twice a week and the total climbs above 500 euros annually. This calculator breaks down every cent so you can optimise your habits.',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'stats',
|
|
124
|
+
items: [
|
|
125
|
+
{ value: '0.45', label: 'kWh Eco Wash', icon: 'mdi:washing-machine' },
|
|
126
|
+
{ value: '40L', label: 'Water Eco Wash', icon: 'mdi:water' },
|
|
127
|
+
{ value: '30%', label: 'Peak Surcharge', icon: 'mdi:lightning-bolt' },
|
|
128
|
+
],
|
|
129
|
+
columns: 3,
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
type: 'title',
|
|
133
|
+
text: 'Why Small Changes Multiply',
|
|
134
|
+
level: 3,
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
type: 'paragraph',
|
|
138
|
+
html: 'A single degree of temperature or a few litres of water seems trivial for one cycle. But over 250 cycles per year, those small differences compound into serious money. Dropping from 60C to 40C reduces energy use by roughly 40 percent per load. Switching from Normal to Eco on a dishwasher saves about 3 litres of water and 0.3 kWh every single time. These are not marginal gains. They are the fastest way to shrink your utility bill without buying new appliances.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
type: 'comparative',
|
|
142
|
+
items: [
|
|
143
|
+
{
|
|
144
|
+
title: 'Intensive Cycle',
|
|
145
|
+
description: 'Maximum heat and water for heavily soiled loads.',
|
|
146
|
+
icon: 'mdi:alert',
|
|
147
|
+
points: ['1.2 to 3.5 kWh per load', '70 litres for washers', 'Peak hour surcharge applies', 'Highest annual cost'],
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
title: 'Eco Cycle',
|
|
151
|
+
description: 'Lower temperature, optimised duration, minimal water.',
|
|
152
|
+
icon: 'mdi:check-circle',
|
|
153
|
+
points: ['0.45 to 1.5 kWh per load', '8 to 40 litres only', 'Off peak timing possible', 'Lowest annual cost'],
|
|
154
|
+
},
|
|
155
|
+
],
|
|
156
|
+
columns: 2,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
type: 'diagnostic',
|
|
160
|
+
variant: 'info',
|
|
161
|
+
title: 'Quick Appliance Audit',
|
|
162
|
+
icon: 'mdi:clipboard-check',
|
|
163
|
+
badge: 'Action',
|
|
164
|
+
html: '<p style="margin:0">Run your washing machine only with a full load. Use the Eco program for normal soiling. Set your dishwasher to delay start until after 22:00 if you have a time-of-use tariff. Clean the dryer lint filter after every cycle to maintain efficiency. Air dry clothes outdoors or on a rack whenever weather permits.</p>',
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'title',
|
|
168
|
+
text: 'Time of Use and Peak Pricing',
|
|
169
|
+
level: 3,
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
type: 'paragraph',
|
|
173
|
+
html: 'Many electricity providers now charge different rates depending on the hour of day. Peak periods, usually weekday mornings and evenings, can cost 30 to 50 percent more than off peak periods. A single load run at 20:00 might cost 0.18 euros while the same load at 02:00 costs only 0.12 euros. Over a year, timing your appliances correctly can save 50 to 100 euros without changing anything else. This calculator highlights peak hours in red and off peak hours in green so you can plan ahead.',
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
type: 'summary',
|
|
177
|
+
title: 'How to Cut Appliance Costs',
|
|
178
|
+
items: [
|
|
179
|
+
'Use this calculator to find the true cost per cycle for your appliances.',
|
|
180
|
+
'Switch to Eco mode whenever possible to save up to 40 percent energy.',
|
|
181
|
+
'Run full loads instead of partial loads to maximise efficiency.',
|
|
182
|
+
'Delay cycles to off peak hours if your tariff supports time-of-use pricing.',
|
|
183
|
+
'Air dry clothes instead of using the tumble dryer to eliminate its cost entirely.',
|
|
184
|
+
'Clean filters and descale regularly to keep appliances running at rated efficiency.',
|
|
185
|
+
],
|
|
186
|
+
},
|
|
187
|
+
],
|
|
188
|
+
ui: {
|
|
189
|
+
labelAppliance: 'Appliance',
|
|
190
|
+
applianceWasher: 'Washer',
|
|
191
|
+
applianceDishwasher: 'Dishwasher',
|
|
192
|
+
applianceDryer: 'Dryer',
|
|
193
|
+
labelCycle: 'Program',
|
|
194
|
+
cycleEco: 'Eco',
|
|
195
|
+
cycleNormal: 'Normal',
|
|
196
|
+
cycleIntensive: 'Intensive',
|
|
197
|
+
labelElectricityPrice: 'Electricity Price',
|
|
198
|
+
unitPriceKwh: '€/kWh',
|
|
199
|
+
labelWaterPrice: 'Water Price',
|
|
200
|
+
unitPriceLiter: '€/L',
|
|
201
|
+
labelDetergent: 'Detergent',
|
|
202
|
+
labelDetergentToggle: 'Include detergent cost',
|
|
203
|
+
labelHour: 'Planned Hour',
|
|
204
|
+
peakBadge: 'Peak rate active',
|
|
205
|
+
offPeakBadge: 'Off peak rate',
|
|
206
|
+
receiptTitle: 'Cost Breakdown',
|
|
207
|
+
receiptElectricity: 'Electricity',
|
|
208
|
+
receiptWater: 'Water',
|
|
209
|
+
receiptDetergent: 'Detergent',
|
|
210
|
+
receiptTotal: 'Total per cycle',
|
|
211
|
+
receiptPerYear: 'Estimated per year',
|
|
212
|
+
comparisonTitle: 'Smart Switch',
|
|
213
|
+
comparisonText: 'Switching from Normal to Eco saves money on every load.',
|
|
214
|
+
comparisonSavings: 'Annual savings',
|
|
215
|
+
comparisonMonths: 'months of detergent',
|
|
216
|
+
badgePeak: 'Peak',
|
|
217
|
+
badgeOffPeak: 'Off Peak',
|
|
218
|
+
unitKwh: 'kWh',
|
|
219
|
+
unitLiters: 'L',
|
|
220
|
+
unitCycles: 'year',
|
|
221
|
+
labelCyclesPerWeek: 'Cycles per week',
|
|
222
|
+
currencySign: '€',
|
|
223
|
+
labelCurrency: 'Currency',
|
|
224
|
+
btnCurrUSD: '$',
|
|
225
|
+
btnCurrEUR: '€',
|
|
226
|
+
btnCurrGBP: '£',
|
|
227
|
+
btnCurrJPY: '¥',
|
|
228
|
+
},
|
|
229
|
+
};
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { ApplianceCostCalculatorUI } from '../ui';
|
|
4
|
+
import { bibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'calculadora-coste-electrodomesticos';
|
|
7
|
+
const title = 'Calculadora de Coste por Ciclo de Agua y Energía de Electrodomésticos';
|
|
8
|
+
const description =
|
|
9
|
+
'Calcula el coste real por carga de tu lavadora, lavavajillas y secadora. Descubre exactamente cuánta electricidad, agua y detergente cuesta cada ciclo y cuánto puedes ahorrar cambiando al modo Eco.';
|
|
10
|
+
|
|
11
|
+
const faqData = [
|
|
12
|
+
{
|
|
13
|
+
question: '¿Cuánto cuesta un ciclo de lavadora?',
|
|
14
|
+
answer:
|
|
15
|
+
'Un ciclo Eco 40C típico consume unos 0,45 kWh de electricidad y 40 litros de agua. Con precios europeos medios, esto cuesta aproximadamente de 0,10 a 0,15 euros por carga. Un ciclo intensivo a 60C puede consumir más de 1,2 kWh y 70 litros, elevando el coste por encima de 0,30 euros por carga.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: '¿Es más barato poner el lavavajillas por la noche?',
|
|
19
|
+
answer:
|
|
20
|
+
'Si tu proveedor de electricidad usa tarifas por horas, poner el lavavajillas en horas valle puede reducir el coste de energía un 30 por ciento o más. Las horas punta suelen ser por las mañanas y tardes de entre semana. Consulta tu contrato o datos del contador inteligente para confirmar tu ventana exacta de horas valle.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '¿La secadora consume mucha electricidad?',
|
|
24
|
+
answer:
|
|
25
|
+
'Sí. Una secadora de ropa es uno de los electrodomésticos domésticos que más energía consume. Una carga completa puede consumir de 2,5 a 3,5 kWh, costando de 0,50 a 0,80 euros por ciclo. Usar una secadora con bomba de calor o tender la ropa al aire libre puede reducir este coste un 60 a 80 por ciento.',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
question: '¿Cuánta agua usa un lavavajillas?',
|
|
29
|
+
answer:
|
|
30
|
+
'Los lavavajillas modernos son sorprendentemente eficientes. Un ciclo Eco estándar usa solo de 8 a 12 litros de agua por carga, mientras que un programa intensivo puede usar de 14 a 16 litros. Esto es mucho menos que lavar los mismos platos a mano bajo el grifo abierto, que típicamente consume de 40 a 60 litros.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: '¿Cuál es la hora más barata para usar electrodomésticos?',
|
|
34
|
+
answer:
|
|
35
|
+
'Bajo tarifas por horas, los periodos más baratos suelen ser tarde por la noche, muy temprano por la mañana y durante los fines de semana. Estos tramos de horas valle pueden ser un 30 a 50 por ciento más baratos que las horas punta de entre semana. Algunos proveedores también ofrecen horas gratuitas los fines de semana.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
question: '¿Cambiar al modo Eco realmente ahorra dinero?',
|
|
39
|
+
answer:
|
|
40
|
+
'Absolutamente. Los modos Eco usan temperaturas más bajas, fases de calentamiento más cortas y menos agua. A lo largo de un año completo, cambiar de Normal a Eco en tu lavadora y lavavajillas puede ahorrar de 50 a 100 euros en electricidad y agua combinados, dependiendo de la frecuencia de uso y los precios locales.',
|
|
41
|
+
},
|
|
42
|
+
];
|
|
43
|
+
|
|
44
|
+
const howToData = [
|
|
45
|
+
{
|
|
46
|
+
name: 'Selecciona tu electrodoméstico',
|
|
47
|
+
text: 'Toca el icono de la lavadora, el lavavajillas o la secadora en la parte superior de la calculadora. Cada electrodoméstico tiene diferentes perfiles de consumo de energía y agua.',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
name: 'Elige un tipo de ciclo',
|
|
51
|
+
text: 'Usa el deslizador Eco, Normal o Intensivo para establecer el programa de lavado. Eco usa menos energía y agua. Intensivo usa la mayor cantidad.',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: 'Introduce tus precios locales',
|
|
55
|
+
text: 'Escribe tu precio de electricidad por kWh y tu precio de agua por litro. Puedes encontrarlos en tu factura de servicios o en la web del proveedor.',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: 'Establece la frecuencia de uso',
|
|
59
|
+
text: 'Indica cuántos ciclos haces por semana. Esto permite a la calculadora estimar tu coste anual y los ahorros potenciales por año.',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: 'Elige la hora de uso',
|
|
63
|
+
text: 'Selecciona la hora a la que planeas poner el electrodoméstico. Las horas punta se resaltan en rojo. Las horas valle son verdes y más baratas si tienes una tarifa por horas.',
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
name: 'Activa los costes de detergente',
|
|
67
|
+
text: 'Activa el interruptor de detergente si quieres que el recibo incluya una estimación de polvo, líquido o cápsulas por ciclo.',
|
|
68
|
+
},
|
|
69
|
+
];
|
|
70
|
+
|
|
71
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
72
|
+
'@context': 'https://schema.org',
|
|
73
|
+
'@type': 'FAQPage',
|
|
74
|
+
mainEntity: faqData.map((item) => ({
|
|
75
|
+
'@type': 'Question',
|
|
76
|
+
name: item.question,
|
|
77
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
78
|
+
})),
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
const howToSchema: WithContext<HowTo> = {
|
|
82
|
+
'@context': 'https://schema.org',
|
|
83
|
+
'@type': 'HowTo',
|
|
84
|
+
name: title,
|
|
85
|
+
description,
|
|
86
|
+
step: howToData.map((step) => ({
|
|
87
|
+
'@type': 'HowToStep',
|
|
88
|
+
name: step.name,
|
|
89
|
+
text: step.text,
|
|
90
|
+
})),
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
94
|
+
'@context': 'https://schema.org',
|
|
95
|
+
'@type': 'SoftwareApplication',
|
|
96
|
+
name: title,
|
|
97
|
+
description,
|
|
98
|
+
applicationCategory: 'UtilityApplication',
|
|
99
|
+
operatingSystem: 'All',
|
|
100
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
101
|
+
inLanguage: 'es',
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
export const content: ToolLocaleContent<ApplianceCostCalculatorUI> = {
|
|
105
|
+
slug,
|
|
106
|
+
title,
|
|
107
|
+
description,
|
|
108
|
+
faq: faqData,
|
|
109
|
+
bibliography,
|
|
110
|
+
howTo: howToData,
|
|
111
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
112
|
+
seo: [
|
|
113
|
+
{
|
|
114
|
+
type: 'title',
|
|
115
|
+
text: 'El Coste Oculto de Cada Carga',
|
|
116
|
+
level: 2,
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'paragraph',
|
|
120
|
+
html: 'La mayoría de la gente no tiene idea de cuánto cuesta realmente un ciclo de lavadora. Ven una factura trimestral de electricidad y asumen que los electrodomésticos son baratos de usar. La realidad es que una familia que hace cinco cargas de lavandería por semana puede gastar más de 200 euros al año solo en lavado. Añade el lavavajillas tres veces por semana y la secadora dos veces por semana y el total supera los 500 euros anuales. Esta calculadora desglosa cada céntimo para que puedas optimizar tus hábitos.',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'stats',
|
|
124
|
+
items: [
|
|
125
|
+
{ value: '0,45', label: 'kWh Lavado Eco', icon: 'mdi:washing-machine' },
|
|
126
|
+
{ value: '40L', label: 'Agua Lavado Eco', icon: 'mdi:water' },
|
|
127
|
+
{ value: '30%', label: 'Recargo Punta', icon: 'mdi:lightning-bolt' },
|
|
128
|
+
],
|
|
129
|
+
columns: 3,
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
type: 'title',
|
|
133
|
+
text: 'Por Qué los Pequeños Cambios se Multiplican',
|
|
134
|
+
level: 3,
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
type: 'paragraph',
|
|
138
|
+
html: 'Un solo grado de temperatura o unos pocos litros de agua parecen insignificantes para un ciclo. Pero a lo largo de 250 ciclos al año, esas pequeñas diferencias se acumulan en una suma importante. Bajar de 60C a 40C reduce el consumo de energía aproximadamente un 40 por ciento por carga. Cambiar de Normal a Eco en un lavavajillas ahorra unos 3 litros de agua y 0,3 kWh cada vez. Estas no son ganancias marginales. Son la forma más rápida de reducir tu factura de servicios sin comprar electrodomésticos nuevos.',
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
type: 'comparative',
|
|
142
|
+
items: [
|
|
143
|
+
{
|
|
144
|
+
title: 'Ciclo Intensivo',
|
|
145
|
+
description: 'Calor y agua máximos para cargas muy sucias.',
|
|
146
|
+
icon: 'mdi:alert',
|
|
147
|
+
points: ['1,2 a 3,5 kWh por carga', '70 litros para lavadoras', 'Aplica recargo por hora punta', 'Coste anual más alto'],
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
title: 'Ciclo Eco',
|
|
151
|
+
description: 'Temperatura más baja, duración optimizada, agua mínima.',
|
|
152
|
+
icon: 'mdi:check-circle',
|
|
153
|
+
points: ['0,45 a 1,5 kWh por carga', 'Solo 8 a 40 litros', 'Posible horario valle', 'Coste anual más bajo'],
|
|
154
|
+
},
|
|
155
|
+
],
|
|
156
|
+
columns: 2,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
type: 'diagnostic',
|
|
160
|
+
variant: 'info',
|
|
161
|
+
title: 'Auditoría Rápida de Electrodomésticos',
|
|
162
|
+
icon: 'mdi:clipboard-check',
|
|
163
|
+
badge: 'Acción',
|
|
164
|
+
html: '<p style="margin:0">Pon la lavadora solo con carga completa. Usa el programa Eco para suciedad normal. Programa el lavavajillas para que empiece después de las 22:00 si tienes una tarifa por horas. Limpia el filtro de pelusa de la secadora después de cada ciclo para mantener la eficiencia. Seca la ropa al aire libre o en un tendedero siempre que el tiempo lo permita.</p>',
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'title',
|
|
168
|
+
text: 'Horas Valle y Precios Punta',
|
|
169
|
+
level: 3,
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
type: 'paragraph',
|
|
173
|
+
html: 'Muchos proveedores de electricidad cobran tarifas diferentes según la hora del día. Los periodos punta, normalmente las mañanas y tardes de entre semana, pueden costar un 30 a 50 por ciento más que los periodos valle. Una misma carga puesta a las 20:00 puede costar 0,18 euros, mientras que la misma carga a las 02:00 cuesta solo 0,12 euros. A lo largo de un año, programar bien los electrodomésticos puede ahorrar de 50 a 100 euros sin cambiar nada más. Esta calculadora resalta las horas punta en rojo y las horas valle en verde para que puedas planificar con antelación.',
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
type: 'summary',
|
|
177
|
+
title: 'Cómo Reducir los Costes de Electrodomésticos',
|
|
178
|
+
items: [
|
|
179
|
+
'Usa esta calculadora para encontrar el coste real por ciclo de tus electrodomésticos.',
|
|
180
|
+
'Cambia al modo Eco siempre que sea posible para ahorrar hasta un 40 por ciento de energía.',
|
|
181
|
+
'Pon cargas completas en lugar de cargas parciales para maximizar la eficiencia.',
|
|
182
|
+
'Retrasa los ciclos a horas valle si tu tarifa admite precios por horas.',
|
|
183
|
+
'Seca la ropa al aire libre en lugar de usar la secadora para eliminar su coste por completo.',
|
|
184
|
+
'Limpia los filtros y desincrusta regularmente para mantener los electrodomésticos funcionando a la eficiencia indicada.',
|
|
185
|
+
],
|
|
186
|
+
},
|
|
187
|
+
],
|
|
188
|
+
ui: {
|
|
189
|
+
labelAppliance: 'Electrodoméstico',
|
|
190
|
+
applianceWasher: 'Lavadora',
|
|
191
|
+
applianceDishwasher: 'Lavavajillas',
|
|
192
|
+
applianceDryer: 'Secadora',
|
|
193
|
+
labelCycle: 'Programa',
|
|
194
|
+
cycleEco: 'Eco',
|
|
195
|
+
cycleNormal: 'Normal',
|
|
196
|
+
cycleIntensive: 'Intensivo',
|
|
197
|
+
labelElectricityPrice: 'Precio de Electricidad',
|
|
198
|
+
unitPriceKwh: '€/kWh',
|
|
199
|
+
labelWaterPrice: 'Precio del Agua',
|
|
200
|
+
unitPriceLiter: '€/L',
|
|
201
|
+
labelDetergent: 'Detergente',
|
|
202
|
+
labelDetergentToggle: 'Incluir coste de detergente',
|
|
203
|
+
labelHour: 'Hora Planificada',
|
|
204
|
+
peakBadge: 'Tarifa punta activa',
|
|
205
|
+
offPeakBadge: 'Tarifa valle',
|
|
206
|
+
receiptTitle: 'Desglose de Costes',
|
|
207
|
+
receiptElectricity: 'Electricidad',
|
|
208
|
+
receiptWater: 'Agua',
|
|
209
|
+
receiptDetergent: 'Detergente',
|
|
210
|
+
receiptTotal: 'Total por ciclo',
|
|
211
|
+
receiptPerYear: 'Estimado por año',
|
|
212
|
+
comparisonTitle: 'Cambio Inteligente',
|
|
213
|
+
comparisonText: 'Cambiar de Normal a Eco ahorra dinero en cada carga.',
|
|
214
|
+
comparisonSavings: 'Ahorro anual',
|
|
215
|
+
comparisonMonths: 'meses de detergente',
|
|
216
|
+
badgePeak: 'Punta',
|
|
217
|
+
badgeOffPeak: 'Valle',
|
|
218
|
+
unitKwh: 'kWh',
|
|
219
|
+
unitLiters: 'L',
|
|
220
|
+
unitCycles: 'año',
|
|
221
|
+
labelCyclesPerWeek: 'Ciclos por semana',
|
|
222
|
+
currencySign: '€',
|
|
223
|
+
labelCurrency: 'Moneda',
|
|
224
|
+
btnCurrUSD: '$',
|
|
225
|
+
btnCurrEUR: '€',
|
|
226
|
+
btnCurrGBP: '£',
|
|
227
|
+
btnCurrJPY: '¥',
|
|
228
|
+
},
|
|
229
|
+
};
|