@jjlmoya/utils-home 1.4.0 → 1.6.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.
@@ -0,0 +1,341 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { HeatingComparatorUI } from '../ui';
4
+
5
+ const slug = 'heating-consumption-comparator';
6
+ const title = 'Gas vs. Heat Pump vs. AC: Savings & Consumption Comparator';
7
+ const description =
8
+ 'Calculate how much you save by switching your gas boiler for an air source heat pump or AC. Real consumption and efficiency comparison for your home.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: 'Is a heat pump cheaper than natural gas?',
13
+ answer:
14
+ 'At a monthly operational level, heat pumps are significantly cheaper than natural gas. Thanks to their 400% efficiency (COP of 4), the cost per kWh of heat delivered is usually 30% to 50% lower than with gas, despite higher electricity prices.',
15
+ },
16
+ {
17
+ question: 'What is the difference between air source heat pump and regular AC?',
18
+ answer:
19
+ 'Technically both are heat pumps. The main difference is the medium they deliver heat to: air source heat pumps are usually "air-to-water", while conventional heat pumps are "air-to-air".',
20
+ },
21
+ {
22
+ question: 'Can I install a heat pump in a flat with old radiators?',
23
+ answer:
24
+ 'Yes, it is possible to install heat pumps with conventional radiators using "high temperature" equipment. However, for maximum savings, underfloor heating or low-temperature radiators are ideal.',
25
+ },
26
+ {
27
+ question: 'How long does it take to pay off a heat pump system?',
28
+ answer:
29
+ 'Depending on home consumption and available subsidies, the payback period is usually between 5 and 8 years. If combined with solar panels, this period can be drastically reduced.',
30
+ },
31
+ ];
32
+
33
+ const howToData = [
34
+ {
35
+ name: 'House Surface',
36
+ text: 'Enter the usable square meters of your home to estimate the annual thermal demand.',
37
+ },
38
+ {
39
+ name: 'Energy Prices',
40
+ text: 'Adjust Gas and Electricity prices according to your real bill for higher accuracy.',
41
+ },
42
+ {
43
+ name: 'View Results',
44
+ text: 'Compare the three systems side by side and discover the winner in efficiency and annual cost.',
45
+ },
46
+ ];
47
+
48
+ const faqSchema: WithContext<FAQPage> = {
49
+ '@context': 'https://schema.org',
50
+ '@type': 'FAQPage',
51
+ mainEntity: faqData.map((item) => ({
52
+ '@type': 'Question',
53
+ name: item.question,
54
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
55
+ })),
56
+ };
57
+
58
+ const howToSchema: WithContext<HowTo> = {
59
+ '@context': 'https://schema.org',
60
+ '@type': 'HowTo',
61
+ name: title,
62
+ description,
63
+ step: howToData.map((step) => ({
64
+ '@type': 'HowToStep',
65
+ name: step.name,
66
+ text: step.text,
67
+ })),
68
+ };
69
+
70
+ const appSchema: WithContext<SoftwareApplication> = {
71
+ '@context': 'https://schema.org',
72
+ '@type': 'SoftwareApplication',
73
+ name: title,
74
+ description,
75
+ applicationCategory: 'UtilityApplication',
76
+ operatingSystem: 'All',
77
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
78
+ inLanguage: 'en',
79
+ };
80
+
81
+ export const content: ToolLocaleContent<HeatingComparatorUI> = {
82
+ slug,
83
+ title,
84
+ description,
85
+ faqTitle: 'Frequently Asked Questions',
86
+ faq: faqData,
87
+ bibliographyTitle: 'Bibliography',
88
+ bibliography: [
89
+ {
90
+ name: 'IEA: The Future of Heat Pumps',
91
+ url: 'https://www.iea.org/reports/the-future-of-heat-pumps',
92
+ },
93
+ {
94
+ name: 'Energy Saving Trust: Air Source Heat Pumps',
95
+ url: 'https://energysavingtrust.org.uk/advice/air-source-heat-pumps/',
96
+ },
97
+ ],
98
+ howTo: howToData,
99
+ schemas: [faqSchema, howToSchema, appSchema],
100
+ seo: [
101
+ {
102
+ type: 'summary',
103
+ title: 'Keys to Choosing Your Heating',
104
+ items: [
105
+ '<strong>Air source heat pump</strong> is up to 400% more efficient than gas.',
106
+ '<strong>Insulation</strong> reduces your bill more than any boiler.',
107
+ '<strong>Payback</strong> for electric systems is around 6-8 years.',
108
+ 'Combine with <strong>solar panels</strong> for nearly free heating.',
109
+ ],
110
+ },
111
+ {
112
+ type: 'title',
113
+ text: 'Consumption Comparison: Gas vs. Air Source Heat Pump vs. AC',
114
+ level: 2,
115
+ },
116
+ {
117
+ type: 'paragraph',
118
+ html: 'Choosing the right climate system for your home is one of the most important financial and comfort decisions. In a context of volatile energy prices and growing concern for sustainability, knowing which system is most efficient—and which will save us more per month—is essential.',
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'Historically, natural gas has been the undisputed king due to its convenience and price. However, the emergence of <strong>air source heat pumps</strong> and the technological improvement of <strong>heat pumps (air-to-air)</strong> have changed the game. Our calculator helps you visualize the annual operating cost.',
123
+ },
124
+ {
125
+ type: 'stats',
126
+ items: [
127
+ {
128
+ label: 'Heat Pump Efficiency',
129
+ value: '400%',
130
+ icon: 'mdi:lightning-bolt',
131
+ trend: { value: 'best', positive: true },
132
+ },
133
+ {
134
+ label: 'Avg Annual Saving',
135
+ value: '$450',
136
+ icon: 'mdi:piggy-bank',
137
+ trend: { value: 'estimated', positive: true },
138
+ },
139
+ {
140
+ label: 'Equipment Life',
141
+ value: '20 years',
142
+ icon: 'mdi:calendar-check',
143
+ trend: { value: 'standard', positive: true },
144
+ },
145
+ ],
146
+ columns: 3,
147
+ },
148
+ {
149
+ type: 'title',
150
+ text: '1. Natural Gas Boiler: The traditional standard',
151
+ level: 3,
152
+ },
153
+ {
154
+ type: 'paragraph',
155
+ html: 'Natural gas heating uses a boiler that burns fuel to heat water, which then circulates through radiators or underfloor heating.',
156
+ },
157
+ {
158
+ type: 'list',
159
+ items: [
160
+ '<strong>Efficiency:</strong> Modern condensing boilers have an efficiency close to 100%.',
161
+ '<strong>Advantages:</strong> Widely installed, fast and homogeneous heat, and competitive kWh cost.',
162
+ '<strong>Disadvantages:</strong> Dependence on fossil fuels, fixed gas fees, and CO2 emissions.',
163
+ ],
164
+ },
165
+ {
166
+ type: 'title',
167
+ text: '2. Air Source Heat Pump: Extreme efficiency (Air-to-Water)',
168
+ level: 3,
169
+ },
170
+ {
171
+ type: 'paragraph',
172
+ html: 'Air source heat pumps extract thermal energy from outside air (even at sub-zero temperatures) and transfer it inside the home to heat water.',
173
+ },
174
+ {
175
+ type: 'list',
176
+ items: [
177
+ '<strong>Efficiency (COP):</strong> An air source heat pump system usually has an average COP of 4. This means that for every 1 kWh it eats, it gives out 4 kWh of heat.',
178
+ '<strong>Advantages:</strong> Total sustainability with solar panels, one equipment for heating and cooling, and lower operating costs.',
179
+ '<strong>Disadvantages:</strong> High initial investment (though pays off in 5-8 years) and need for outdoor space.',
180
+ ],
181
+ },
182
+ {
183
+ type: 'tip',
184
+ title: 'Saving Tip',
185
+ html: 'Air source heat pumps shine especially when combined with underfloor heating, as water only needs to heat to about 35°C.',
186
+ },
187
+ {
188
+ type: 'proscons',
189
+ title: 'Heat Pump vs Natural Gas',
190
+ proTitle: 'Why Heat Pump?',
191
+ conTitle: 'Why Gas?',
192
+ items: [
193
+ { pro: 'Unbeatable efficiency (COP 4+)', con: 'Much cheaper installation' },
194
+ { pro: 'Fossil fuel independence', con: 'High power instant heat' },
195
+ { pro: 'Heating and Cooling', con: 'Compatibility with old radiators' },
196
+ { pro: 'Ideal with solar panels', con: 'No outdoor units needed' },
197
+ ],
198
+ },
199
+ {
200
+ type: 'title',
201
+ text: '3. Air-to-Air Heat Pump (Air Conditioning Split)',
202
+ level: 3,
203
+ },
204
+ {
205
+ type: 'paragraph',
206
+ html: 'Commonly known as "split" or AC with heat mode. It uses the same thermodynamic cycle as air source heat pumps but directly heats the air, not water. It is a very common solution in mild climates. Its efficiency (SCOP) is usually between 3 and 3.5.',
207
+ },
208
+ {
209
+ type: 'title',
210
+ text: 'Understanding the calculation formula',
211
+ level: 2,
212
+ },
213
+ {
214
+ type: 'paragraph',
215
+ html: 'To compare these systems fairly, we must convert all consumptions to a common unit: the cost per delivered useful kWh. Our formula is:',
216
+ },
217
+ {
218
+ type: 'code',
219
+ code: 'Annual Cost = (Home Thermal Demand / System Efficiency) × Energy Price',
220
+ ariaLabel: 'Annual cost calculation formula',
221
+ },
222
+ {
223
+ type: 'paragraph',
224
+ html: 'Where:',
225
+ },
226
+ {
227
+ type: 'list',
228
+ items: [
229
+ '<strong>Thermal Demand:</strong> The heat kWh your house needs per year (depends on insulation and m2).',
230
+ '<strong>Efficiency:</strong> 0.95 for Gas, 4.0 for Heat Pump, and 3.2 for Air.',
231
+ '<strong>Energy Price:</strong> The cost per kWh including taxes and fees.',
232
+ ],
233
+ },
234
+ {
235
+ type: 'card',
236
+ title: 'Real Example: 100m² Home',
237
+ icon: 'mdi:home-analytics',
238
+ html: '<p>Imagine a house that needs 7,000 kWh of heating per year:</p><ul><li><strong>Gas ($0.08/kWh):</strong> $589/year</li><li><strong>Heat Pump ($0.18/kWh):</strong> $315/year (You save 46%)</li><li><strong>Air ($0.18/kWh):</strong> $393/year</li></ul>',
239
+ },
240
+ {
241
+ type: 'title',
242
+ text: 'When does each system pay off?',
243
+ level: 2,
244
+ },
245
+ {
246
+ type: 'paragraph',
247
+ html: 'There is no single answer, as it depends on your location and house type:',
248
+ },
249
+ {
250
+ type: 'paragraph',
251
+ html: '<strong>Single-Family Houses / New Build:</strong> Heat pump is almost mandatory for sustainability and long-term savings.',
252
+ },
253
+ {
254
+ type: 'paragraph',
255
+ html: '<strong>Small Apartments in Mild Zones:</strong> Air-to-air split is unbeatable due to low installation costs.',
256
+ },
257
+ {
258
+ type: 'paragraph',
259
+ html: '<strong>Gas Flats Renovations:</strong> If gas connection exists, switching to condensing is cheapest initially. However, full renovations should consider switching to electricity.',
260
+ },
261
+ {
262
+ type: 'title',
263
+ text: 'The impact of insulation',
264
+ level: 3,
265
+ },
266
+ {
267
+ type: 'paragraph',
268
+ html: 'No heating system is efficient in a leaky house. Good insulation can halve your thermal demand, making your heating system smaller and cheaper.',
269
+ },
270
+ {
271
+ type: 'title',
272
+ text: 'Heat Pump Myths and Consumption',
273
+ level: 2,
274
+ },
275
+ {
276
+ type: 'paragraph',
277
+ html: 'There are many doubts about these modern systems. Let\'s debunk some:',
278
+ },
279
+ {
280
+ type: 'list',
281
+ items: [
282
+ '<strong>"Doesn\'t work in deep cold":</strong> False. Modern units work down to -20°C.',
283
+ '<strong>"Dries the air":</strong> Only if it\'s air-to-air. Solar underfloor heating doesn\'t.',
284
+ '<strong>"Electricity is too expensive":</strong> 400% efficiency more than compensates.',
285
+ ],
286
+ },
287
+ {
288
+ type: 'diagnostic',
289
+ variant: 'info',
290
+ title: 'Did you know?',
291
+ icon: 'mdi:lightbulb-on',
292
+ badge: 'Fact',
293
+ html: '<p>The COP (Coefficient of Performance) varies with outdoor temperature. In extreme cold, efficiency drops slightly but remains far superior to electric heaters or gas boilers.</p>',
294
+ },
295
+ {
296
+ type: 'title',
297
+ text: 'Conclusion: The future is electric',
298
+ level: 2,
299
+ },
300
+ {
301
+ type: 'paragraph',
302
+ html: 'The trend in Europe is clear: home decarbonization. Natural gas prices will likely rise due to carbon taxes. Combining solar panels with heat pumps is the perfect circle.',
303
+ },
304
+ {
305
+ type: 'paragraph',
306
+ html: 'Use our calculator to compare your current bills with what you could be paying. Sometimes the biggest "money leak" is an obsolete heating system.',
307
+ },
308
+ ],
309
+ ui: {
310
+ titleVivienda: '1. Home Data',
311
+ helperVivienda: 'Configure your home characteristics',
312
+ labelM2: 'Total Surface',
313
+ helperM2: 'Square meters of your home.',
314
+ labelAislamiento: 'Insulation Level',
315
+ helperAislamiento: 'How well does your house retain heat?',
316
+ optExcelent: 'Excellent (New build / Passivhaus)',
317
+ optMedium: 'Medium (Double glazing / Standard insulation)',
318
+ optPoor: 'Poor (Old / No wall insulation)',
319
+ titleCoste: '2. Energy Cost',
320
+ descCoste: 'Look for the "Energy Term Price" or "kWh Cost" in your last bill.',
321
+ labelGasPrice: 'Gas Cost',
322
+ helperGasPrice: 'Price for each kWh of gas consumed.',
323
+ labelElecPrice: 'Electricity Cost',
324
+ helperElecPrice: 'Price for each kWh of light consumed.',
325
+ titleComparison: '3. Annual Consumption Comparison',
326
+ descComparison: 'Estimation based on the technical performance of each equipment.',
327
+ systemGas: 'Gas Boiler',
328
+ systemAero: 'Air Source Heat Pump',
329
+ systemAir: 'Heat Pump (Split)',
330
+ labelAnnualCost: 'Heating Expense',
331
+ labelEfficiency: 'Efficiency',
332
+ labelSource: 'Source',
333
+ labelEnergy: 'Energy',
334
+ labelInstallation: 'Installation',
335
+ valGasSource: 'Natural Gas',
336
+ valAeroEnergy: 'Renewable + Light',
337
+ valAirInstall: 'Air-to-Air',
338
+ winnerBadge: 'Most Efficient',
339
+ unitCurrency: '$',
340
+ },
341
+ };
@@ -0,0 +1,345 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+ import type { HeatingComparatorUI } from '../ui';
4
+
5
+ const slug = 'comparador-consumo-gas-aerotermia-aire';
6
+ const title = 'Comparador Gas vs. Aerotermia vs. Aire: Ahorro y Consumo';
7
+ const description =
8
+ 'Calcula cuánto ahorras al cambiar tu caldera de gas por aerotermia o bomba de calor. Comparativa real de consumo energético y eficiencia para el hogar.';
9
+
10
+ const faqData = [
11
+ {
12
+ question: '¿Qué es más barato, la aerotermia o el gas natural?',
13
+ answer:
14
+ 'A nivel operativo mensual, la aerotermia es significativamente más barata que el gas natural. Gracias a su eficiencia del 400% (COP de 4), el coste por kWh de calor entregado suele ser entre un 30% y un 50% menor que con gas, a pesar de que el precio del kWh eléctrico sea más alto.',
15
+ },
16
+ {
17
+ question: '¿Qué diferencia hay entre aerotermia y una bomba de calor normal?',
18
+ answer:
19
+ 'Técnicamente ambas son bombas de calor. La diferencia principal es el medio al que entregan el calor: la aerotermia suele ser "aire-agua" (calienta el agua de los radiadores o suelo radiante), mientras que la bomba de calor convencional es "aire-aire" (calienta directamente el aire mediante splits).',
20
+ },
21
+ {
22
+ question: '¿Se puede instalar aerotermia en un piso con radiadores antiguos?',
23
+ answer:
24
+ 'Sí, es posible instalar aerotermia con radiadores convencionales usando equipos de "alta temperatura". Sin embargo, para obtener el máximo ahorro posible, lo ideal es combinarla con suelo radiante o radiadores de baja temperatura.',
25
+ },
26
+ {
27
+ question: '¿Cuántos años se tarda en amortizar un equipo de aerotermia?',
28
+ answer:
29
+ 'Dependiendo del consumo de la vivienda y de si existen subvenciones, el tiempo de amortización suele situarse entre los 5 y 8 años. Si se cuenta con placas solares fotovoltaicas, este periodo puede reducirse drásticamente.',
30
+ },
31
+ ];
32
+
33
+ const howToData = [
34
+ {
35
+ name: 'Superficie de la casa',
36
+ text: 'Introduce los metros cuadrados útiles de tu vivienda para estimar la demanda térmica anual.',
37
+ },
38
+ {
39
+ name: 'Precios de energía',
40
+ text: 'Ajuste los precios de Gas y Electricidad según su factura real para mayor precisión.',
41
+ },
42
+ {
43
+ name: 'Ver resultados',
44
+ text: 'Compare los tres sistemas lado a lado y descubra el ganador en eficiencia y coste anual.',
45
+ },
46
+ ];
47
+
48
+ const faqSchema: WithContext<FAQPage> = {
49
+ '@context': 'https://schema.org',
50
+ '@type': 'FAQPage',
51
+ mainEntity: faqData.map((item) => ({
52
+ '@type': 'Question',
53
+ name: item.question,
54
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
55
+ })),
56
+ };
57
+
58
+ const howToSchema: WithContext<HowTo> = {
59
+ '@context': 'https://schema.org',
60
+ '@type': 'HowTo',
61
+ name: title,
62
+ description,
63
+ step: howToData.map((step) => ({
64
+ '@type': 'HowToStep',
65
+ name: step.name,
66
+ text: step.text,
67
+ })),
68
+ };
69
+
70
+ const appSchema: WithContext<SoftwareApplication> = {
71
+ '@context': 'https://schema.org',
72
+ '@type': 'SoftwareApplication',
73
+ name: title,
74
+ description,
75
+ applicationCategory: 'UtilityApplication',
76
+ operatingSystem: 'All',
77
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
78
+ inLanguage: 'es',
79
+ };
80
+
81
+ export const content: ToolLocaleContent<HeatingComparatorUI> = {
82
+ slug,
83
+ title,
84
+ description,
85
+ faqTitle: 'Preguntas Frecuentes',
86
+ faq: faqData,
87
+ bibliographyTitle: 'Bibliografía',
88
+ bibliography: [
89
+ {
90
+ name: 'IDAE: Guía de Bombas de Calor y Aerotermia',
91
+ url: 'https://www.idae.es/sites/default/files/documentos/publicaciones_idae/Guias_IDAE_La_Bomba_de_calor_2023_V11.pdf',
92
+ },
93
+ {
94
+ name: 'Portal del Consumidor: Precios de la Energía (CNMC)',
95
+ url: 'https://comparador.cnmc.gob.es/',
96
+ },
97
+ {
98
+ name: 'UNE: Eficiencia Energética en Edificios',
99
+ url: 'https://www.une.org/encuentra-tu-norma/busca-tu-norma/norma?c=N0060747',
100
+ },
101
+ ],
102
+ howTo: howToData,
103
+ schemas: [faqSchema, howToSchema, appSchema],
104
+ seo: [
105
+ {
106
+ type: 'summary',
107
+ title: 'Claves para elegir tu calefacción',
108
+ items: [
109
+ 'La <strong>aerotermia</strong> es hasta un 400% más eficiente que el gas.',
110
+ 'El <strong>aislamiento</strong> reduce tu factura más que cualquier caldera.',
111
+ 'La <strong>amortización</strong> de sistemas eléctricos ronda los 6-8 años.',
112
+ 'Combina <strong>placas solares</strong> para calefacción casi gratuita.',
113
+ ],
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'Comparativa de Consumo: Gas vs. Aerotermia vs. Aire Acondicionado',
118
+ level: 2,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'Elegir el sistema de climatización adecuado para el hogar es una de las decisiones financieras y de confort más importantes que podemos tomar. En un contexto de precios energéticos volátiles y una creciente preocupación por la sostenibilidad, saber qué sistema es más eficiente —y cuál nos hará ahorrar más al mes— es fundamental.',
123
+ },
124
+ {
125
+ type: 'paragraph',
126
+ html: 'Históricamente, el gas natural ha sido el rey indiscutible en España por su comodidad y precio. Sin embargo, la irrupción de la <strong>aerotermia</strong> y la mejora tecnológica de las <strong>bombas de calor (aire-aire)</strong> han cambiado las reglas del juego. Nuestra calculadora te ayuda a visualizar el coste operativo anual para que decidas con datos reales en la mano.',
127
+ },
128
+ {
129
+ type: 'stats',
130
+ items: [
131
+ {
132
+ label: 'Eficiencia Aerotermia',
133
+ value: '400%',
134
+ icon: 'mdi:lightning-bolt',
135
+ trend: { value: 'mejor', positive: true },
136
+ },
137
+ {
138
+ label: 'Ahorro Anual Medio',
139
+ value: '450€',
140
+ icon: 'mdi:piggy-bank',
141
+ trend: { value: 'estimado', positive: true },
142
+ },
143
+ {
144
+ label: 'Vida Útil Equipos',
145
+ value: '20 años',
146
+ icon: 'mdi:calendar-check',
147
+ trend: { value: 'estándar', positive: true },
148
+ },
149
+ ],
150
+ columns: 3,
151
+ },
152
+ {
153
+ type: 'title',
154
+ text: '1. La Caldera de Gas Natural: El estándar tradicional',
155
+ level: 3,
156
+ },
157
+ {
158
+ type: 'paragraph',
159
+ html: 'La calefacción por gas natural utiliza una caldera que quema combustible para calentar agua, que luego circula por radiadores o suelo radiante.',
160
+ },
161
+ {
162
+ type: 'list',
163
+ items: [
164
+ '<strong>Rendimiento:</strong> Las calderas de condensación modernas tienen un rendimiento cercano al 100% (o incluso ligeramente superior si aprovechan el calor latente).',
165
+ '<strong>Ventajas:</strong> Instalación muy extendida, calor rápido y homogéneo, y un coste por kWh que suele ser muy competitivo.',
166
+ '<strong>Desventajas:</strong> Dependencia de combustibles fósiles, cuotas fijas de gas (término de potencia) y emisiones de CO2 a la atmósfera.',
167
+ ],
168
+ },
169
+ {
170
+ type: 'title',
171
+ text: '2. Aerotermia: La eficiencia extrema (Aire-Agua)',
172
+ level: 3,
173
+ },
174
+ {
175
+ type: 'paragraph',
176
+ html: 'La aerotermia es una tecnología que extrae la energía térmica del aire exterior (incluso a temperaturas bajo cero) y la traslada al interior de la vivienda para calentar agua (suelo radiante, radiadores de baja temperatura o ACS).',
177
+ },
178
+ {
179
+ type: 'list',
180
+ items: [
181
+ '<strong>Eficiencia (COP):</strong> Un sistema de aerotermia suele tener un COP medio de 4. Esto significa que por cada 1 kWh de electricidad que consume, entrega 4 kWh de calor a la casa.',
182
+ '<strong>Ventajas:</strong> Sostenibilidad total si se combina con placas solares, un solo equipo para calefacción, refrigeración y agua caliente, y el menor coste operativo del mercado.',
183
+ '<strong>Desventajas:</strong> Inversión inicial elevada (aunque suele amortizarse en 5-8 años) y necesidad de espacio para la unidad exterior e interior (depósito).',
184
+ ],
185
+ },
186
+ {
187
+ type: 'tip',
188
+ title: 'Consejo de Ahorro',
189
+ html: 'La aerotermia brilla especialmente cuando se combina con suelo radiante, ya que el agua solo necesita calentarse a unos 35°C, a diferencia de los 60-70°C de los radiadores convencionales.',
190
+ },
191
+ {
192
+ type: 'proscons',
193
+ title: 'Aerotermia vs Gas Natural',
194
+ proTitle: '¿Por qué Aerotermia?',
195
+ conTitle: '¿Por qué Gas?',
196
+ items: [
197
+ { pro: 'Eficiencia imbatible (COP 4+)', con: 'Instalación mucho más económica' },
198
+ { pro: 'Independencia de fósiles', con: 'Calor instantáneo de alta potencia' },
199
+ { pro: 'Calefacción y Refrigeración', con: 'Compatibilidad con radiadores viejos' },
200
+ { pro: 'Ideal con placas solares', con: 'Sin necesidad de unidades exteriores' },
201
+ ],
202
+ },
203
+ {
204
+ type: 'title',
205
+ text: '3. Bomba de Calor Aire-Aire (Aire Acondicionado)',
206
+ level: 3,
207
+ },
208
+ {
209
+ type: 'paragraph',
210
+ html: 'Es el sistema que comúnmente conocemos como "split" o aire acondicionado con modo calor. Utiliza el mismo ciclo termodinámico que la aerotermia pero calienta directamente el aire, no el agua. Es una solución muy común en zonas con climas suaves o como apoyo en segundas residencias. Su eficiencia (SCOP) suele situarse entre 3 y 3.5, lo que la sitúa en un punto intermedio muy interesante.',
211
+ },
212
+ {
213
+ type: 'title',
214
+ text: 'Entendiendo la fórmula de cálculo',
215
+ level: 2,
216
+ },
217
+ {
218
+ type: 'paragraph',
219
+ html: 'Para comparar estos sistemas de forma justa, debemos convertir todos los consumos a una unidad común: el coste por kWh útil entregado. La fórmula que utiliza nuestra herramienta es:',
220
+ },
221
+ {
222
+ type: 'code',
223
+ code: 'Coste Anual = (Demanda Térmica Vivienda / Eficiencia del Sistema) × Precio Energía',
224
+ ariaLabel: 'Fórmula de cálculo de coste anual',
225
+ },
226
+ {
227
+ type: 'paragraph',
228
+ html: 'Donde:',
229
+ },
230
+ {
231
+ type: 'list',
232
+ items: [
233
+ '<strong>Demanda Térmica:</strong> Los kWh de calor que necesita tu casa al año (depende del aislamiento y m2).',
234
+ '<strong>Eficiencia:</strong> 0.95 para Gas, 4.0 para Aerotermia y 3.2 para Aire.',
235
+ '<strong>Precio Energía:</strong> El coste por kWh sumando impuestos y peajes.',
236
+ ],
237
+ },
238
+ {
239
+ type: 'card',
240
+ title: 'Ejemplo Real: Vivienda de 100m²',
241
+ icon: 'mdi:home-analytics',
242
+ html: '<p>Imaginemos una casa que necesita 7.000 kWh de calefacción al año:</p><ul><li><strong>Gas (0.08 €/kWh):</strong> (7.000 / 0.95) * 0.08 = 589 €/año</li><li><strong>Aerotermia (0.18 €/kWh):</strong> (7.000 / 4) * 0.18 = 315 €/año (Ahorras un 46%)</li><li><strong>Aire (0.18 €/kWh):</strong> (7.000 / 3.2) * 0.18 = 393 €/año</li></ul>',
243
+ },
244
+ {
245
+ type: 'title',
246
+ text: '¿Cuándo compensa cada sistema?',
247
+ level: 2,
248
+ },
249
+ {
250
+ type: 'paragraph',
251
+ html: 'No hay una respuesta única, ya que depende de tu ubicación geográfica y el tipo de vivienda:',
252
+ },
253
+ {
254
+ type: 'paragraph',
255
+ html: '<strong>Casas Unifamiliares / Obra Nueva:</strong> La aerotermia es casi obligatoria. La normativa actual (CTE) exige un alto porcentaje de energía renovable, y la aerotermia es la forma más sencilla de cumplirlo y ahorrar desde el primer día.',
256
+ },
257
+ {
258
+ type: 'paragraph',
259
+ html: '<strong>Pisos Pequeños en Zonas Cálidas:</strong> La bomba de calor aire-aire (split) es imbatible por su bajo coste de instalación. Si el invierno es corto, la diferencia de ahorro operativa no justifica la inversión en aerotermia.',
260
+ },
261
+ {
262
+ type: 'paragraph',
263
+ html: '<strong>Reformas de Pisos con Gas:</strong> Si el edificio ya tiene conexión de gas y radiadores antiguos, cambiar a una caldera de condensación es lo más barato inicialmente. Sin embargo, si vas a reformar suelo o ventanas, plantear el salto a la electricidad es una inversión de futuro para independizarte del gas y sus costes fijos.',
264
+ },
265
+ {
266
+ type: 'title',
267
+ text: 'El impacto del aislamiento',
268
+ level: 3,
269
+ },
270
+ {
271
+ type: 'paragraph',
272
+ html: 'Ningún sistema de calefacción es eficiente si tu casa tiene fugas. Antes de invertir 10.000 € en un sistema de aerotermia, revisa tus ventanas y el aislamiento de tus paredes. Un buen aislamiento puede reducir tu demanda térmica a la mitad, haciendo que el sistema de calefacción sea mucho más pequeño, barato y eficiente.',
273
+ },
274
+ {
275
+ type: 'title',
276
+ text: 'Mitos sobre la Aerotermia y el Consumo',
277
+ level: 2,
278
+ },
279
+ {
280
+ type: 'paragraph',
281
+ html: 'Existen muchas dudas sobre estos sistemas modernos. Vamos a desmentir algunas:',
282
+ },
283
+ {
284
+ type: 'list',
285
+ items: [
286
+ '<strong>"La aerotermia no funciona con mucho frío":</strong> Falso. Los equipos actuales mantienen buenos rendimientos hasta los -15°C o -20°C.',
287
+ '<strong>"La bomba de calor reseca el ambiente":</strong> Solo si es aire-aire. La aerotermia por suelo radiante funciona igual que la calefacción central pero con agua a menos temperatura.',
288
+ '<strong>"La luz es muy cara y no compensa":</strong> Aunque la luz sea más cara que el gas (kWh a kWh), la eficiencia del 400% compensa esa diferencia con creces.',
289
+ ],
290
+ },
291
+ {
292
+ type: 'diagnostic',
293
+ variant: 'info',
294
+ title: '¿Sabías qué?',
295
+ icon: 'mdi:lightbulb-on',
296
+ badge: 'Dato',
297
+ html: '<p>El COP (Coefficient of Performance) varía según la temperatura exterior. Por eso, en climas extremadamente fríos, el rendimiento de la aerotermia baja ligeramente, aunque sigue siendo muy superior a cualquier radiador eléctrico directo o caldera de gas.</p>',
298
+ },
299
+ {
300
+ type: 'title',
301
+ text: 'Conclusión: El futuro es eléctrico',
302
+ level: 2,
303
+ },
304
+ {
305
+ type: 'paragraph',
306
+ html: 'La tendencia en Europa es clara: la <strong>descarbonización del hogar</strong>. El gas natural tiene fecha de caducidad y los impuestos al carbono harán que su precio suba a largo plazo. La combinación de placas solares fotovoltaicas y aerotermia es, a día de hoy, la cuadratura del círculo: energía gratis del sol convertida en confort para tu casa con una eficiencia inigualable.',
307
+ },
308
+ {
309
+ type: 'paragraph',
310
+ html: 'Usa nuestra calculadora para comparar tus facturas actuales con lo que podrías estar pagando. A veces, la mayor "fuga de dinero" no está en una ventana mal cerrada, sino en un sistema de calefacción obsoleto.',
311
+ },
312
+ ],
313
+ ui: {
314
+ titleVivienda: '1. Datos de tu vivienda',
315
+ helperVivienda: 'Configura las características de tu hogar',
316
+ labelM2: 'Superficie Total',
317
+ helperM2: 'Metros cuadrados de tu vivienda.',
318
+ labelAislamiento: 'Nivel de Aislamiento',
319
+ helperAislamiento: '¿Cómo de bien retiene el calor tu casa?',
320
+ optExcelent: 'Excelente (Obra nueva / Passivhaus)',
321
+ optMedium: 'Medio (Doble cristal / Aislamiento normal)',
322
+ optPoor: 'Pobre (Antigua / Sin aislamiento en paredes)',
323
+ titleCoste: '2. Coste de la energía',
324
+ descCoste: 'Busca en tu última factura el "Precio Término de Energía" o "Coste kWh".',
325
+ labelGasPrice: 'Coste del Gas',
326
+ helperGasPrice: 'Precio por cada kWh de gas consumido.',
327
+ labelElecPrice: 'Coste de la Electricidad',
328
+ helperElecPrice: 'Precio por cada kWh de luz consumido.',
329
+ titleComparison: '3. Comparativa de Consumo Anual',
330
+ descComparison: 'Estimación basada en el rendimiento técnico de cada equipo.',
331
+ systemGas: 'Caldera de Gas',
332
+ systemAero: 'Aerotermia',
333
+ systemAir: 'Bomba de Calor (Split)',
334
+ labelAnnualCost: 'Gasto en Calefacción',
335
+ labelEfficiency: 'Efficienza',
336
+ labelSource: 'Fuente',
337
+ labelEnergy: 'Energía',
338
+ labelInstallation: 'Instalación',
339
+ valGasSource: 'Gas Natural',
340
+ valAeroEnergy: 'Renovable + Luz',
341
+ valAirInstall: 'Aire-Aire',
342
+ winnerBadge: 'Más Eficiente',
343
+ unitCurrency: '€',
344
+ },
345
+ };