@jjlmoya/utils-home 1.6.0 → 1.8.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.
Files changed (103) hide show
  1. package/package.json +61 -60
  2. package/src/tests/i18n_coverage.test.ts +36 -0
  3. package/src/tests/schemas_fulfillment.test.ts +23 -0
  4. package/src/tests/slug_language_code_format.test.ts +27 -0
  5. package/src/tests/slug_uniqueness.test.ts +81 -0
  6. package/src/tests/title_quality.test.ts +55 -0
  7. package/src/tool/dewPointCalculator/i18n/de.ts +178 -0
  8. package/src/tool/dewPointCalculator/i18n/en.ts +1 -1
  9. package/src/tool/dewPointCalculator/i18n/es.ts +1 -1
  10. package/src/tool/dewPointCalculator/i18n/fr.ts +1 -1
  11. package/src/tool/dewPointCalculator/i18n/id.ts +178 -0
  12. package/src/tool/dewPointCalculator/i18n/it.ts +178 -0
  13. package/src/tool/dewPointCalculator/i18n/ja.ts +178 -0
  14. package/src/tool/dewPointCalculator/i18n/ko.ts +178 -0
  15. package/src/tool/dewPointCalculator/i18n/nl.ts +178 -0
  16. package/src/tool/dewPointCalculator/i18n/pl.ts +178 -0
  17. package/src/tool/dewPointCalculator/i18n/pt.ts +178 -0
  18. package/src/tool/dewPointCalculator/i18n/ru.ts +178 -0
  19. package/src/tool/dewPointCalculator/i18n/sv.ts +178 -0
  20. package/src/tool/dewPointCalculator/i18n/tr.ts +178 -0
  21. package/src/tool/dewPointCalculator/i18n/zh.ts +178 -0
  22. package/src/tool/dewPointCalculator/index.ts +16 -6
  23. package/src/tool/heatingComparator/i18n/de.ts +340 -0
  24. package/src/tool/heatingComparator/i18n/id.ts +324 -0
  25. package/src/tool/heatingComparator/i18n/it.ts +336 -0
  26. package/src/tool/heatingComparator/i18n/ja.ts +311 -0
  27. package/src/tool/heatingComparator/i18n/ko.ts +307 -0
  28. package/src/tool/heatingComparator/i18n/nl.ts +336 -0
  29. package/src/tool/heatingComparator/i18n/pl.ts +311 -0
  30. package/src/tool/heatingComparator/i18n/pt.ts +336 -0
  31. package/src/tool/heatingComparator/i18n/ru.ts +307 -0
  32. package/src/tool/heatingComparator/i18n/sv.ts +311 -0
  33. package/src/tool/heatingComparator/i18n/tr.ts +324 -0
  34. package/src/tool/heatingComparator/i18n/zh.ts +307 -0
  35. package/src/tool/heatingComparator/index.ts +13 -1
  36. package/src/tool/ledSavingCalculator/i18n/de.ts +208 -0
  37. package/src/tool/ledSavingCalculator/i18n/fr.ts +1 -1
  38. package/src/tool/ledSavingCalculator/i18n/id.ts +208 -0
  39. package/src/tool/ledSavingCalculator/i18n/it.ts +208 -0
  40. package/src/tool/ledSavingCalculator/i18n/ja.ts +208 -0
  41. package/src/tool/ledSavingCalculator/i18n/ko.ts +208 -0
  42. package/src/tool/ledSavingCalculator/i18n/nl.ts +208 -0
  43. package/src/tool/ledSavingCalculator/i18n/pl.ts +208 -0
  44. package/src/tool/ledSavingCalculator/i18n/pt.ts +208 -0
  45. package/src/tool/ledSavingCalculator/i18n/ru.ts +208 -0
  46. package/src/tool/ledSavingCalculator/i18n/sv.ts +208 -0
  47. package/src/tool/ledSavingCalculator/i18n/tr.ts +208 -0
  48. package/src/tool/ledSavingCalculator/i18n/zh.ts +208 -0
  49. package/src/tool/ledSavingCalculator/index.ts +16 -7
  50. package/src/tool/projectorCalculator/i18n/de.ts +180 -0
  51. package/src/tool/projectorCalculator/i18n/fr.ts +1 -1
  52. package/src/tool/projectorCalculator/i18n/id.ts +181 -0
  53. package/src/tool/projectorCalculator/i18n/it.ts +180 -0
  54. package/src/tool/projectorCalculator/i18n/ja.ts +180 -0
  55. package/src/tool/projectorCalculator/i18n/ko.ts +180 -0
  56. package/src/tool/projectorCalculator/i18n/nl.ts +180 -0
  57. package/src/tool/projectorCalculator/i18n/pl.ts +180 -0
  58. package/src/tool/projectorCalculator/i18n/pt.ts +180 -0
  59. package/src/tool/projectorCalculator/i18n/ru.ts +180 -0
  60. package/src/tool/projectorCalculator/i18n/sv.ts +180 -0
  61. package/src/tool/projectorCalculator/i18n/tr.ts +180 -0
  62. package/src/tool/projectorCalculator/i18n/zh.ts +180 -0
  63. package/src/tool/projectorCalculator/index.ts +15 -6
  64. package/src/tool/qrGenerator/i18n/de.ts +203 -0
  65. package/src/tool/qrGenerator/i18n/id.ts +151 -0
  66. package/src/tool/qrGenerator/i18n/it.ts +174 -0
  67. package/src/tool/qrGenerator/i18n/ja.ts +151 -0
  68. package/src/tool/qrGenerator/i18n/ko.ts +151 -0
  69. package/src/tool/qrGenerator/i18n/nl.ts +151 -0
  70. package/src/tool/qrGenerator/i18n/pl.ts +151 -0
  71. package/src/tool/qrGenerator/i18n/pt.ts +151 -0
  72. package/src/tool/qrGenerator/i18n/ru.ts +151 -0
  73. package/src/tool/qrGenerator/i18n/sv.ts +151 -0
  74. package/src/tool/qrGenerator/i18n/tr.ts +151 -0
  75. package/src/tool/qrGenerator/i18n/zh.ts +151 -0
  76. package/src/tool/qrGenerator/index.ts +17 -9
  77. package/src/tool/solarCalculator/i18n/de.ts +146 -0
  78. package/src/tool/solarCalculator/i18n/id.ts +126 -0
  79. package/src/tool/solarCalculator/i18n/it.ts +126 -0
  80. package/src/tool/solarCalculator/i18n/ja.ts +126 -0
  81. package/src/tool/solarCalculator/i18n/ko.ts +121 -0
  82. package/src/tool/solarCalculator/i18n/nl.ts +120 -0
  83. package/src/tool/solarCalculator/i18n/pl.ts +121 -0
  84. package/src/tool/solarCalculator/i18n/pt.ts +126 -0
  85. package/src/tool/solarCalculator/i18n/ru.ts +110 -0
  86. package/src/tool/solarCalculator/i18n/sv.ts +110 -0
  87. package/src/tool/solarCalculator/i18n/tr.ts +120 -0
  88. package/src/tool/solarCalculator/i18n/zh.ts +121 -0
  89. package/src/tool/solarCalculator/index.ts +17 -9
  90. package/src/tool/tariffComparator/i18n/de.ts +133 -0
  91. package/src/tool/tariffComparator/i18n/id.ts +133 -0
  92. package/src/tool/tariffComparator/i18n/it.ts +133 -0
  93. package/src/tool/tariffComparator/i18n/ja.ts +133 -0
  94. package/src/tool/tariffComparator/i18n/ko.ts +133 -0
  95. package/src/tool/tariffComparator/i18n/nl.ts +133 -0
  96. package/src/tool/tariffComparator/i18n/pl.ts +133 -0
  97. package/src/tool/tariffComparator/i18n/pt.ts +133 -0
  98. package/src/tool/tariffComparator/i18n/ru.ts +106 -0
  99. package/src/tool/tariffComparator/i18n/sv.ts +111 -0
  100. package/src/tool/tariffComparator/i18n/tr.ts +133 -0
  101. package/src/tool/tariffComparator/i18n/zh.ts +133 -0
  102. package/src/tool/tariffComparator/index.ts +16 -7
  103. package/src/types.ts +1 -1
@@ -0,0 +1,324 @@
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 = 'isitma-karsilastirma-dogalgaz-isi-pompasi-klima';
6
+ const title = 'Doğalgaz vs. Isı Pompası vs. Klima Karşılaştırması';
7
+ const description = 'Doğalgaz kombisini ısı pompası veya klima ile değiştirmenin tasarruf miktarını hesaplayın. Eviniz için gerçek enerji tüketimi ve verimlilik karşılaştırması.';
8
+
9
+ const faqData = [
10
+ {
11
+ question: 'Hangisi daha ucuz: Isı pompası mı, doğalgaz mı?',
12
+ answer: 'Aylık işletme maliyetleri açısından ısı pompası, doğalgazdan önemli ölçüde daha ucuzdur. %400 verimlilik (COP 4) sayesinde, elektrik birim fiyatı yüksek olsa bile, sağlanan kWh ısı başına maliyet genellikle doğalgaza göre %30 ile %50 daha düşüktür.',
13
+ },
14
+ {
15
+ question: 'Isı pompası ile normal bir klima arasındaki fark nedir?',
16
+ answer: 'Teknik olarak her ikisi de ısı pompasıdır. Temel fark, ısıyı aktardıkları ortamdır: Isı pompası genellikle "havadan suya" sistemdir (radyatörlerdeki veya yerden ısıtmadaki suyu ısıtır), klima ise "havadan havaya" sistemdir (havayı doğrudan iç üniteler aracılığıyla ısıtır).',
17
+ },
18
+ {
19
+ question: 'Eski radyatörlü bir eve ısı pompası kurulabilir mi?',
20
+ answer: 'Evet, "yüksek sıcaklık" üniteleri kullanılarak geleneksel radyatörlü evlere ısı pompası kurulabilir. Ancak maksimum tasarruf için yerden ısıtma veya düşük sıcaklıklı radyatörlerle kombinasyon idealdir.',
21
+ },
22
+ {
23
+ question: 'Isı pompası kendini kaç yılda amorti eder?',
24
+ answer: 'Evin tüketimine ve mevcut teşviklere bağlı olarak amortisman süresi genellikle 5 ile 8 yıl arasındadır. Güneş panelleri ile bu süre çok daha kısa olabilir.',
25
+ },
26
+ ];
27
+
28
+ const howToData = [
29
+ {
30
+ name: 'Ev Yüzölçümü',
31
+ text: 'Yıllık ısı ihtiyacını tahmin etmek için evinizin net metrekaresini girin.',
32
+ },
33
+ {
34
+ name: 'Enerji Fiyatları',
35
+ text: 'Daha doğru sonuçlar için doğalgaz ve elektrik fiyatlarını güncel faturanıza göre ayarlayın.',
36
+ },
37
+ {
38
+ name: 'Sonuçları Karşılaştır',
39
+ text: 'Üç sistemi yan yana karşılaştırın, verimlilik ve yıllık maliyet açısından kazananı görün.',
40
+ },
41
+ ];
42
+
43
+ const faqSchema: WithContext<FAQPage> = {
44
+ '@context': 'https://schema.org',
45
+ '@type': 'FAQPage',
46
+ mainEntity: faqData.map((item) => ({
47
+ '@type': 'Question',
48
+ name: item.question,
49
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
50
+ })),
51
+ };
52
+
53
+ const howToSchema: WithContext<HowTo> = {
54
+ '@context': 'https://schema.org',
55
+ '@type': 'HowTo',
56
+ name: title,
57
+ description,
58
+ step: howToData.map((step) => ({
59
+ '@type': 'HowToStep',
60
+ name: step.name,
61
+ text: step.text,
62
+ })),
63
+ };
64
+
65
+ const appSchema: WithContext<SoftwareApplication> = {
66
+ '@context': 'https://schema.org',
67
+ '@type': 'SoftwareApplication',
68
+ name: title,
69
+ description,
70
+ applicationCategory: 'UtilityApplication',
71
+ operatingSystem: 'All',
72
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'TRY' },
73
+ inLanguage: 'tr',
74
+ };
75
+
76
+ export const content: ToolLocaleContent<HeatingComparatorUI> = {
77
+ slug,
78
+ title,
79
+ description,
80
+ faqTitle: 'Sıkça Sorulan Sorular',
81
+ faq: faqData,
82
+ bibliographyTitle: 'Kaynakça ve Kaynaklar',
83
+ bibliography: [
84
+ {
85
+ name: 'Enerji Verimliliği ve Çevre Dairesi Başkanlığı',
86
+ url: 'https://enerji.gov.tr/',
87
+ },
88
+ {
89
+ name: 'Isı Pompası Sistemleri Genel Rehberi',
90
+ url: 'https://www.iskid.org.tr/',
91
+ },
92
+ {
93
+ name: 'TMMOB Makina Mühendisleri Odası',
94
+ url: 'https://www.mmo.org.tr/',
95
+ },
96
+ ],
97
+ howTo: howToData,
98
+ schemas: [faqSchema, howToSchema, appSchema],
99
+ seo: [
100
+ {
101
+ type: 'summary',
102
+ title: 'Isıtma sistemi seçimi için ipuçları',
103
+ items: [
104
+ '<strong>Isı pompası</strong> doğalgazdan %400\'e kadar daha verimlidir.',
105
+ '<strong>Yalıtım</strong>, faturanızı her türlü kombiden daha çok düşürür.',
106
+ 'Elektrikli sistemlerin <strong>amortismanı</strong> yaklaşık 6-8 yıldır.',
107
+ 'Neredeyse bedava ısınma için <strong>güneş panelleriyle</strong> birleştirin.',
108
+ ],
109
+ },
110
+ {
111
+ type: 'title',
112
+ text: 'Tüketim Karşılaştırması: Doğalgaz vs. Isı Pompası vs. Klima',
113
+ level: 2,
114
+ },
115
+ {
116
+ type: 'paragraph',
117
+ html: 'Eviniz için doğru iklimlendirme sistemini seçmek, en önemli finansal ve konfor kararlarından biridir. Enerji fiyatlarının değişken olduğu bir dönemde, hangi sistemin daha verimli olduğunu ve hangisinin aylık daha fazla tasarruf sağlayacağını bilmek kritiktir.',
118
+ },
119
+ {
120
+ type: 'paragraph',
121
+ html: 'Yıllardır Türkiye\'de doğalgaz kombileri tartışmasız liderdi. Ancak <strong>ısı pompalarının (havadan suya)</strong> yaygınlaşması ve <strong>klimaların (havadan havaya)</strong> teknolojik gelişimi oyunun kurallarını değiştirdi. Hesaplayıcımız, gerçek verilerle yıllık işletme maliyetlerini görmenize yardımcı olur.',
122
+ },
123
+ {
124
+ type: 'stats',
125
+ items: [
126
+ {
127
+ label: 'Isı Pompası Verimi',
128
+ value: '%400',
129
+ icon: 'mdi:lightning-bolt',
130
+ trend: { value: 'en iyi', positive: true },
131
+ },
132
+ {
133
+ label: 'Yıllık Ort. Tasarruf',
134
+ value: '15.000₺',
135
+ icon: 'mdi:piggy-bank',
136
+ trend: { value: 'tahmini', positive: true },
137
+ },
138
+ {
139
+ label: 'Ekipman Ömrü',
140
+ value: '20 Yıl',
141
+ icon: 'mdi:calendar-check',
142
+ trend: { value: 'standart', positive: true },
143
+ },
144
+ ],
145
+ columns: 3,
146
+ },
147
+ {
148
+ type: 'title',
149
+ text: '1. Doğalgazlı Kombi: Geleneksel Standart',
150
+ level: 3,
151
+ },
152
+ {
153
+ type: 'paragraph',
154
+ html: 'Doğalgazlı ısıtma, suyu ısıtmak için yakıt yakan bir kombi kullanır; bu su radyatörlerde veya yerden ısıtmada dolaşır.',
155
+ },
156
+ {
157
+ type: 'list',
158
+ items: [
159
+ '<strong>Performans:</strong> Modern yoğuşmalı kombiler %100\'e yakın verimliliğe sahiptir.',
160
+ '<strong>Avantajlar:</strong> Yaygın tesisat, hızlı ısınma ve düşük ilk kurulum maliyeti.',
161
+ '<strong>Dezavantajlar:</strong> Fosil yakıt bağımlılığı, faturalardaki sabit ücretler ve CO2 emisyonu.',
162
+ ],
163
+ },
164
+ {
165
+ type: 'title',
166
+ text: '2. Isı Pompası: Uç Verimlilik (Havadan Suya)',
167
+ level: 3,
168
+ },
169
+ {
170
+ type: 'paragraph',
171
+ html: 'Isı pompası, dış havadaki termal enerjiyi çekerek (sıfırın altındaki sıcaklıklarda bile) ev içindeki suyun ısıtılmasında kullanır.',
172
+ },
173
+ {
174
+ type: 'list',
175
+ items: [
176
+ '<strong>Verimlilik (COP):</strong> Modern bir ısı pompası genellikle 4 COP değerine sahiptir. Yani tükettiği her 1 kWh elektrik için eve 4 kWh ısı verir.',
177
+ '<strong>Avantajlar:</strong> Güneş panelleriyle tam sürdürülebilirlik, tek cihazla ısıtma ve soğutma, en düşük işletme maliyeti.',
178
+ '<strong>Dezavantajlar:</strong> Yüksek ilk yatırım maliyeti (5-8 yılda amorti edilir) ve dış ünite için yer ihtiyacı.',
179
+ ],
180
+ },
181
+ {
182
+ type: 'tip',
183
+ title: 'Tasarruf Önerisi',
184
+ html: 'Isı pompası en iyi sonucu yerden ısıtma ile verir; çünkü suyun sadece 35°C\'ye ısıtılması yeterlidir (radyatörlerde bu 60-70°C\'dir).',
185
+ },
186
+ {
187
+ type: 'proscons',
188
+ title: 'Isı Pompası vs. Doğalgaz Kombi',
189
+ proTitle: 'Neden Isı Pompası?',
190
+ conTitle: 'Neden Doğalgaz?',
191
+ items: [
192
+ { pro: 'Rakipsiz verim (COP 4+)', con: 'Daha ekonomik kurulum' },
193
+ { pro: 'Fosil yakıt bağımsızlığı', con: 'Hızlı ve yüksek ısı gücü' },
194
+ { pro: 'Isıtma ve Soğutma bir arada', con: 'Eski radyatörlerle tam uyum' },
195
+ { pro: 'Güneş paneliyle harika uyum', con: 'Dış ünite gerektirmez' },
196
+ ],
197
+ },
198
+ {
199
+ type: 'title',
200
+ text: '3. Klima (Havadan Havaya Isı Pompası)',
201
+ level: 3,
202
+ },
203
+ {
204
+ type: 'paragraph',
205
+ html: 'Halk arasında "split klima" olarak bilinen sistemdir. Isı pompası ile aynı prensibi kullanır ancak suyu değil, havayı doğrudan ısıtır. Ilıman iklimler veya destekleyici ısıtma için mükemmel bir çözümdür. Verimliliği (SCOP) genelde 3 ile 3.5 arasındadır.',
206
+ },
207
+ {
208
+ type: 'title',
209
+ text: 'Hesaplama Formülü',
210
+ level: 2,
211
+ },
212
+ {
213
+ type: 'paragraph',
214
+ html: 'Sistemleri adil şekilde karşılaştırmak için tüm tüketimi sağlanan her net kWh ısı maliyetine dönüştürüyoruz:',
215
+ },
216
+ {
217
+ type: 'code',
218
+ code: 'Yıllık Maliyet = (Evin Isı İhtiyacı / Sistem Verimi) × Enerji Fiyatı',
219
+ ariaLabel: 'Yıllık maliyet hesaplama formülü',
220
+ },
221
+ {
222
+ type: 'paragraph',
223
+ html: 'Burada:',
224
+ },
225
+ {
226
+ type: 'list',
227
+ items: [
228
+ '<strong>Isı İhtiyacı:</strong> Evinizin yıllık ihtiyaç duyduğu kWh cinsinden ısı (yalıtım ve m2\'ye bağlıdır).',
229
+ '<strong>Verimlilik:</strong> Doğalgaz için 0.95, Isı Pompası için 4.0 ve Klima için 3.2.',
230
+ '<strong>Enerji Fiyatı:</strong> Vergiler dahil kWh başına maliyet.',
231
+ ],
232
+ },
233
+ {
234
+ type: 'card',
235
+ title: 'Gerçek Örnek: 100m² Ev',
236
+ icon: 'mdi:home-analytics',
237
+ html: '<p>Yıllık 7.000 kWh ısı ihtiyacı olan bir evi hayal edelim:</p><ul><li><strong>Doğalgaz:</strong> (7.000 / 0.95) * Fiyat = Hesaplanan tutar</li><li><strong>Isı Pompası:</strong> (7.000 / 4) * Fiyat = %46\'ya varan tasarruf</li><li><strong>Klima:</strong> (7.000 / 3.2) * Fiyat = Ara çözüm</li></ul>',
238
+ },
239
+ {
240
+ type: 'title',
241
+ text: 'Hangi sistem ne zaman mantıklı?',
242
+ level: 2,
243
+ },
244
+ {
245
+ type: 'paragraph',
246
+ html: 'Tek bir doğru cevap yoktur; coğrafi konumunuza ve bina tipine göre değişir.',
247
+ },
248
+ {
249
+ type: 'title',
250
+ text: 'Yalıtımın Etkisi',
251
+ level: 3,
252
+ },
253
+ {
254
+ type: 'paragraph',
255
+ html: 'Evinizde ısı kaçakları varsa hiçbir sistem verimli değildir. Yeni bir sisteme büyük paralar harcamadan önce pencerelerinizi ve duvar yalıtımınızı kontrol edin. İyi bir yalıtım ısı ihtiyacınızı yarıya indirebilir.',
256
+ },
257
+ {
258
+ type: 'title',
259
+ text: 'Isı Pompası Hakkında Şehir Efsaneleri',
260
+ level: 2,
261
+ },
262
+ {
263
+ type: 'list',
264
+ items: [
265
+ '<strong>"Çok soğukta çalışmaz":</strong> Yanlış. Modern cihazlar -15°C hatta -20°C\'ye kadar verimlidir.',
266
+ '<strong>"Havanın nemini kurutur":</strong> Sadece klima (havadan havaya) sistemlerinde geçerlidir. Sulu sistemler konforludur.',
267
+ '<strong>"Elektrik çok pahalı, değmez":</strong> Elektrik birim fiyatı yüksek görünse de, %400 verim bu farkı fazlasıyla kapatır.',
268
+ ],
269
+ },
270
+ {
271
+ type: 'diagnostic',
272
+ variant: 'info',
273
+ title: 'Biliyor muydunuz?',
274
+ icon: 'mdi:lightbulb-on',
275
+ badge: 'Bilgi',
276
+ html: '<p>COP (Verimlilik katsayısı) dış sıcaklığa göre değişir. Bu nedenle aşırı soğuklarda verim bir miktar düşse de, hala herhangi bir elektrikli ısıtıcı veya kombiden çok daha üstündür.</p>',
277
+ },
278
+ {
279
+ type: 'title',
280
+ text: 'Sonuç: Gelecek Elektrikte',
281
+ level: 2,
282
+ },
283
+ {
284
+ type: 'paragraph',
285
+ html: 'Avrupa ve dünyadaki eğilim nettir: <strong>karbonsuzlaşma</strong>. Fosil yakıtların yerini yenilenebilir enerji alıyor. Güneş panelleri ve ısı pompası kombinasyonu, günümüzde benzersiz bir konfor ve tasarruf sunar.',
286
+ },
287
+ {
288
+ type: 'paragraph',
289
+ html: 'Faturanızı modern alternatiflerle karşılaştırmak için aracımızı kullanın. Bazen en büyük "para sızıntısı" açık pencere değil, eski bir ısıtma sistemidir.',
290
+ },
291
+ ],
292
+ ui: {
293
+ titleVivienda: '1. Ev Verileri',
294
+ helperVivienda: 'Evinizin özelliklerini yapılandırın',
295
+ labelM2: 'Toplam Alan',
296
+ helperM2: 'Evinizin metrekare cinsinden alanı.',
297
+ labelAislamiento: 'Yalıtım Seviyesi',
298
+ helperAislamiento: 'Eviniz ısıyı ne kadar iyi tutuyor?',
299
+ optExcelent: 'Mükemmel (Yeni bina / Yalıtımlı)',
300
+ optMedium: 'Orta (Çift cam / Standart yalıtım)',
301
+ optPoor: 'Zayıf (Eski / Yalıtımsız)',
302
+ titleCoste: '2. Enerji Maliyeti',
303
+ descCoste: 'Son faturanızdan kWh başına birim fiyatı kontrol edin.',
304
+ labelGasPrice: 'Gaz Maliyeti',
305
+ helperGasPrice: 'Tüketilen her kWh (veya m3) gazın fiyatı.',
306
+ labelElecPrice: 'Elektrik Maliyeti',
307
+ helperElecPrice: 'Tüketilen her kWh elektriğin fiyatı.',
308
+ titleComparison: '3. Yıllık Tüketim Karşılaştırması',
309
+ descComparison: 'Ekipmanların teknik verimine dayalı tahmindir.',
310
+ systemGas: 'Doğalgaz Kombi',
311
+ systemAero: 'Isı Pompası',
312
+ systemAir: 'Klima (Split)',
313
+ labelAnnualCost: 'Isıtma Gideri',
314
+ labelEfficiency: 'Verimlilik',
315
+ labelSource: 'Kaynak',
316
+ labelEnergy: 'Enerji',
317
+ labelInstallation: 'Kurulum',
318
+ valGasSource: 'Doğalgaz',
319
+ valAeroEnergy: 'Yenilenebilir + Elektr.',
320
+ valAirInstall: 'Havadan Havaya',
321
+ winnerBadge: 'En Verimli',
322
+ unitCurrency: '₺',
323
+ },
324
+ };
@@ -0,0 +1,307 @@
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 = '暖房方式对比:天然气 vs 空气源热泵 vs 空调';
7
+ const description = '计算将燃气锅炉更换为空气源热泵或空调后的省钱金额。为您提供家庭能源消耗与效率的真实对比。';
8
+
9
+ const faqData = [
10
+ {
11
+ question: '热泵和天然气哪个更便宜?',
12
+ answer: '从每月运行成本来看,热泵明显比天然气便宜。得益于其 400% 的效率(COP 为 4),尽管每度电的价格高于燃气,但每提供 1 kWh 热量的成本通常比燃气低 30% 到 50%。',
13
+ },
14
+ {
15
+ question: '空气源热泵和普通空调有什么区别?',
16
+ answer: '从技术上讲,两者都是热泵。主要区别在于传递热量的媒介:空气源热泵通常是“空气对水”系统(加热暖气片或地暖中的水),而传统空调是“空气对空气”系统(通过内机直接加热空气)。',
17
+ },
18
+ {
19
+ question: '旧暖气片住宅可以安装热泵吗?',
20
+ answer: '可以。通过使用“高温”机型,可以在传统暖气片住宅中安装热泵。但是,为了实现最大程度的节能,结合地暖或低温暖气片是理想的选择。',
21
+ },
22
+ {
23
+ question: '热泵系统需要多少年才能回本?',
24
+ answer: '根据房屋消耗量和补贴政策,投资回收期通常在 5 到 8 年之间。如果结合太阳能光伏板,这个周期可以大幅缩短。',
25
+ },
26
+ ];
27
+
28
+ const howToData = [
29
+ {
30
+ name: '房屋面积',
31
+ text: '输入房屋的使用面积(平方米),以估算每年的热量需求。',
32
+ },
33
+ {
34
+ name: '能源价格',
35
+ text: '根据您最近的账单调整天然气和电力的单价,以获得更准确的结果。',
36
+ },
37
+ {
38
+ name: '查看结果',
39
+ text: '并排对比三种系统,找出在效率和年运行成本方面的获胜者。',
40
+ },
41
+ ];
42
+
43
+ const faqSchema: WithContext<FAQPage> = {
44
+ '@context': 'https://schema.org',
45
+ '@type': 'FAQPage',
46
+ mainEntity: faqData.map((item) => ({
47
+ '@type': 'Question',
48
+ name: item.question,
49
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
50
+ })),
51
+ };
52
+
53
+ const howToSchema: WithContext<HowTo> = {
54
+ '@context': 'https://schema.org',
55
+ '@type': 'HowTo',
56
+ name: title,
57
+ description,
58
+ step: howToData.map((step) => ({
59
+ '@type': 'HowToStep',
60
+ name: step.name,
61
+ text: step.text,
62
+ })),
63
+ };
64
+
65
+ const appSchema: WithContext<SoftwareApplication> = {
66
+ '@context': 'https://schema.org',
67
+ '@type': 'SoftwareApplication',
68
+ name: title,
69
+ description,
70
+ applicationCategory: 'UtilityApplication',
71
+ operatingSystem: 'All',
72
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'CNY' },
73
+ inLanguage: 'zh',
74
+ };
75
+
76
+ export const content: ToolLocaleContent<HeatingComparatorUI> = {
77
+ slug,
78
+ title,
79
+ description,
80
+ faqTitle: '常见问题',
81
+ faq: faqData,
82
+ bibliographyTitle: '参考资料与来源',
83
+ bibliography: [
84
+ {
85
+ name: '国际能源署 (IEA):热泵的未来',
86
+ url: 'https://www.iea.org/reports/the-future-of-heat-pumps',
87
+ },
88
+ {
89
+ name: '能源效率指南',
90
+ url: 'https://energysavingtrust.org.uk/advice/air-source-heat-pumps/',
91
+ },
92
+ ],
93
+ howTo: howToData,
94
+ schemas: [faqSchema, howToSchema, appSchema],
95
+ seo: [
96
+ {
97
+ type: 'summary',
98
+ title: '选择暖房系统的关键点',
99
+ items: [
100
+ '<strong>空气源热泵</strong>的效率比燃气锅炉高出 400%。',
101
+ '良好的<strong>房屋保温</strong>比更换任何锅炉都更能降低账单。',
102
+ '电力系统的<strong>回收成本</strong>周期大约为 6-8 年。',
103
+ '结合<strong>太阳能板</strong>可实现近乎免费的供暖。',
104
+ ],
105
+ },
106
+ {
107
+ type: 'title',
108
+ text: '能耗对比:天然气 vs 空气源热泵 vs 空调',
109
+ level: 2,
110
+ },
111
+ {
112
+ type: 'paragraph',
113
+ html: '为您的家庭选择合适的供暖系统是一项重要的财务和舒适度决策。在能源价格波动和可持续发展备受关注的背景下,了解哪种系统最有效、每月能省多少钱至关重要。',
114
+ },
115
+ {
116
+ type: 'paragraph',
117
+ html: '历史上,天然气因其便利和价格一直是首选。然而,<strong>空气源热泵 (空气对水)</strong> 的出现和 <strong>空调 (空气对空气热泵)</strong> 技术的提升改变了游戏规则。我们的计算器帮助您基于真实数据实现年运行成本的可视化。',
118
+ },
119
+ {
120
+ type: 'stats',
121
+ items: [
122
+ {
123
+ label: '热泵效率',
124
+ value: '400%',
125
+ icon: 'mdi:lightning-bolt',
126
+ trend: { value: '最佳', positive: true },
127
+ },
128
+ {
129
+ label: '年均大概节省',
130
+ value: '¥3,500',
131
+ icon: 'mdi:piggy-bank',
132
+ trend: { value: '预估', positive: true },
133
+ },
134
+ {
135
+ label: '设备使用寿命',
136
+ value: '20年',
137
+ icon: 'mdi:calendar-check',
138
+ trend: { value: '标准', positive: true },
139
+ },
140
+ ],
141
+ columns: 3,
142
+ },
143
+ {
144
+ type: 'title',
145
+ text: '1. 天然气锅炉:传统标准',
146
+ level: 3,
147
+ },
148
+ {
149
+ type: 'paragraph',
150
+ html: '天然气供暖使用锅炉燃烧燃料来加热水,水随后循环经过暖气片或地暖系统。',
151
+ },
152
+ {
153
+ type: 'list',
154
+ items: [
155
+ '<strong>效率:</strong> 现代冷凝锅炉的效率接近 100%。',
156
+ '<strong>优势:</strong> 安装广泛、升温快且均匀,单位热量成本通常具有竞争力。',
157
+ '<strong>劣势:</strong> 依赖化石燃料、存在燃气月费及 CO2 排放。',
158
+ ],
159
+ },
160
+ {
161
+ type: 'title',
162
+ text: '2. 空气源热泵:极致效率 (空气对水)',
163
+ level: 3,
164
+ },
165
+ {
166
+ type: 'paragraph',
167
+ html: '热泵是一种从室外空气中提取热能(即使在零下温度)并将其转移到室内用于加热水或空气的技术。',
168
+ },
169
+ {
170
+ type: 'list',
171
+ items: [
172
+ '<strong>效率 (COP):</strong> 热泵系统平均 COP 为 4。这意味着每消耗 1 kWh 的电力,可向房屋提供 4 kWh 的热量。',
173
+ '<strong>优势:</strong> 结合太阳能则是完全的可持续能源,一套设备兼顾冷暖,运行成本市场最低。',
174
+ '<strong>劣势:</strong> 初始投资高(尽管在 5-8 年内回本),且需要室外机安装空间。',
175
+ ],
176
+ },
177
+ {
178
+ type: 'tip',
179
+ title: '省钱小贴士',
180
+ html: '空气源热泵在结合地暖时表现最出色,因为水温只需加热到 35°C 左右,而传统暖气片需要 60-70°C。',
181
+ },
182
+ {
183
+ type: 'proscons',
184
+ title: '热泵 vs 天然气锅炉',
185
+ proTitle: '为何选择热泵?',
186
+ conTitle: '为何选择燃气?',
187
+ items: [
188
+ { pro: '无敌的效率 (COP 4+)', con: '安装成本更低' },
189
+ { pro: '摆脱化石燃料', con: '大功率瞬时供热' },
190
+ { pro: '兼顾制冷与采暖', con: '兼容旧款暖气片' },
191
+ { pro: '结合太阳能的理想之选', con: '无需室外机组' },
192
+ ],
193
+ },
194
+ {
195
+ type: 'title',
196
+ text: '3. 空调 (空气对空气热泵)',
197
+ level: 3,
198
+ },
199
+ {
200
+ type: 'paragraph',
201
+ html: '即我们常说的“分体空调”。它使用与热泵相同的热力学循环,但直接加热空气而不是水。是温和气候地区或辅助供暖的常见方案。其效率 (SCOP) 通常在 3 到 3.5 之间。',
202
+ },
203
+ {
204
+ type: 'title',
205
+ text: '理解计算公式',
206
+ level: 2,
207
+ },
208
+ {
209
+ type: 'paragraph',
210
+ html: '为了公平对比,我们将所有消耗转化为单位有效热量成本:',
211
+ },
212
+ {
213
+ type: 'code',
214
+ code: '年度成本 = (房屋热需求 / 系统效率) × 能源价格',
215
+ ariaLabel: '年运行成本计算公式',
216
+ },
217
+ {
218
+ type: 'paragraph',
219
+ html: '其中:',
220
+ },
221
+ {
222
+ type: 'list',
223
+ items: [
224
+ '<strong>热需求:</strong> 房屋每年需要的热量 (取决于保温和面积)。',
225
+ '<strong>效率:</strong> 燃气为 0.95,热泵为 4.0,空调为 3.2。',
226
+ '<strong>能源价格:</strong> 含税单价。',
227
+ ],
228
+ },
229
+ {
230
+ type: 'card',
231
+ title: '真实案例:100m² 房屋',
232
+ icon: 'mdi:home-analytics',
233
+ html: '<p>假设一个房屋每年需要 7,000 kWh 的热量:</p><ul><li><strong>天然气:</strong> 约 ¥5,300/年</li><li><strong>热泵:</strong> 约 ¥2,800/年 (节省约 46%)</li><li><strong>空调:</strong> 约 ¥3,500/年</li></ul>',
234
+ },
235
+ {
236
+ type: 'title',
237
+ text: '保温的重要性',
238
+ level: 3,
239
+ },
240
+ {
241
+ type: 'paragraph',
242
+ html: '如果房屋漏风,任何供暖系统都不会高效。在投入重金购买新系统前,请检查您的窗户和墙体保温。良好的保温可以将热需求减半。',
243
+ },
244
+ {
245
+ type: 'title',
246
+ text: '关于热泵的误区',
247
+ level: 2,
248
+ },
249
+ {
250
+ type: 'list',
251
+ items: [
252
+ '<strong>“严寒环境下不工作”:</strong> 错误。现代机组在 -15°C 甚至 -20°C 仍能保持良好运行。',
253
+ '<strong>“会让空气干燥”:</strong> 仅限空调。地暖系统非常舒适。',
254
+ '<strong>“电费太贵不划算”:</strong> 虽然电单价比燃气贵,但 400% 的效率完全抵消了单价差。',
255
+ ],
256
+ },
257
+ {
258
+ type: 'diagnostic',
259
+ variant: 'info',
260
+ title: '您知道吗?',
261
+ icon: 'mdi:lightbulb-on',
262
+ badge: '科普',
263
+ html: '<p>COP 会随室外温度变化。严寒时效率会略降,但仍远高于任何电加热或燃气锅炉。</p>',
264
+ },
265
+ {
266
+ type: 'title',
267
+ text: '结论:未来是电能的时代',
268
+ level: 2,
269
+ },
270
+ {
271
+ type: 'paragraph',
272
+ html: '欧洲及全球趋势很明确:家庭脱碳。天然气价格长期看涨。太阳能光伏与热泵的结合是目前最完美的家庭能源解决方案。',
273
+ },
274
+ ],
275
+ ui: {
276
+ titleVivienda: '1. 房屋数据',
277
+ helperVivienda: '配置您的房屋特征',
278
+ labelM2: '总面积',
279
+ helperM2: '房屋的使用面积(平方米)。',
280
+ labelAislamiento: '保温等级',
281
+ helperAislamiento: '房屋的保温性能如何?',
282
+ optExcelent: '优秀 (新房 / 被动房标准)',
283
+ optMedium: '中等 (双层玻璃 / 标准保温)',
284
+ optPoor: '较差 (旧房 / 无墙体保温)',
285
+ titleCoste: '2. 能源成本',
286
+ descCoste: '请查看您最近账单上的单价。',
287
+ labelGasPrice: '燃气单价',
288
+ helperGasPrice: '每立方米或每度燃气的价格。',
289
+ labelElecPrice: '电力单价',
290
+ helperElecPrice: '每度电的价格。',
291
+ titleComparison: '3. 年度运行成本对比',
292
+ descComparison: '基于各设备技术效率的估算值。',
293
+ systemGas: '燃气锅炉',
294
+ systemAero: '空气源热泵',
295
+ systemAir: '空调/分体热泵',
296
+ labelAnnualCost: '采暖支出',
297
+ labelEfficiency: '能效',
298
+ labelSource: '热源',
299
+ labelEnergy: '能源类型',
300
+ labelInstallation: '安装方式',
301
+ valGasSource: '管道天然气',
302
+ valAeroEnergy: '可再生能源 + 电能',
303
+ valAirInstall: '空气对空气',
304
+ winnerBadge: '效能冠军',
305
+ unitCurrency: '¥',
306
+ },
307
+ };
@@ -14,9 +14,21 @@ export const heatingComparator: HomeToolEntry<HeatingComparatorUI> = {
14
14
  fg: 'mdi:heating-coil',
15
15
  },
16
16
  i18n: {
17
- es: async () => (await import('./i18n/es')).content,
17
+ de: async () => (await import('./i18n/de')).content,
18
18
  en: async () => (await import('./i18n/en')).content,
19
+ es: async () => (await import('./i18n/es')).content,
19
20
  fr: async () => (await import('./i18n/fr')).content,
21
+ id: async () => (await import('./i18n/id')).content,
22
+ it: async () => (await import('./i18n/it')).content,
23
+ ja: async () => (await import('./i18n/ja')).content,
24
+ ko: async () => (await import('./i18n/ko')).content,
25
+ nl: async () => (await import('./i18n/nl')).content,
26
+ pl: async () => (await import('./i18n/pl')).content,
27
+ pt: async () => (await import('./i18n/pt')).content,
28
+ ru: async () => (await import('./i18n/ru')).content,
29
+ sv: async () => (await import('./i18n/sv')).content,
30
+ tr: async () => (await import('./i18n/tr')).content,
31
+ zh: async () => (await import('./i18n/zh')).content,
20
32
  },
21
33
  };
22
34