@jjlmoya/utils-cooking 1.35.0 → 1.37.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 (80) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +6 -0
  3. package/src/entries.ts +7 -1
  4. package/src/index.ts +3 -0
  5. package/src/tests/brix-sorbet-density-calculator.test.ts +53 -0
  6. package/src/tests/i18n-titles.test.ts +2 -2
  7. package/src/tests/locale_completeness.test.ts +2 -2
  8. package/src/tests/tool_validation.test.ts +2 -2
  9. package/src/tool/brix-sorbet-density-calculator/bibliography.astro +6 -0
  10. package/src/tool/brix-sorbet-density-calculator/bibliography.ts +10 -0
  11. package/src/tool/brix-sorbet-density-calculator/brix-sorbet-density-calculator.css +878 -0
  12. package/src/tool/brix-sorbet-density-calculator/component.astro +220 -0
  13. package/src/tool/brix-sorbet-density-calculator/entry.ts +26 -0
  14. package/src/tool/brix-sorbet-density-calculator/helpers.ts +102 -0
  15. package/src/tool/brix-sorbet-density-calculator/i18n/de.ts +295 -0
  16. package/src/tool/brix-sorbet-density-calculator/i18n/en.ts +295 -0
  17. package/src/tool/brix-sorbet-density-calculator/i18n/es.ts +295 -0
  18. package/src/tool/brix-sorbet-density-calculator/i18n/fr.ts +295 -0
  19. package/src/tool/brix-sorbet-density-calculator/i18n/id.ts +295 -0
  20. package/src/tool/brix-sorbet-density-calculator/i18n/it.ts +295 -0
  21. package/src/tool/brix-sorbet-density-calculator/i18n/ja.ts +295 -0
  22. package/src/tool/brix-sorbet-density-calculator/i18n/ko.ts +295 -0
  23. package/src/tool/brix-sorbet-density-calculator/i18n/nl.ts +295 -0
  24. package/src/tool/brix-sorbet-density-calculator/i18n/pl.ts +295 -0
  25. package/src/tool/brix-sorbet-density-calculator/i18n/pt.ts +295 -0
  26. package/src/tool/brix-sorbet-density-calculator/i18n/ru.ts +295 -0
  27. package/src/tool/brix-sorbet-density-calculator/i18n/sv.ts +295 -0
  28. package/src/tool/brix-sorbet-density-calculator/i18n/tr.ts +295 -0
  29. package/src/tool/brix-sorbet-density-calculator/i18n/zh.ts +295 -0
  30. package/src/tool/brix-sorbet-density-calculator/index.ts +11 -0
  31. package/src/tool/brix-sorbet-density-calculator/logic.ts +180 -0
  32. package/src/tool/brix-sorbet-density-calculator/script.ts +114 -0
  33. package/src/tool/brix-sorbet-density-calculator/seo.astro +15 -0
  34. package/src/tool/macaron-drying-predictor/bibliography.astro +6 -0
  35. package/src/tool/macaron-drying-predictor/bibliography.ts +14 -0
  36. package/src/tool/macaron-drying-predictor/component.astro +319 -0
  37. package/src/tool/macaron-drying-predictor/entry.ts +26 -0
  38. package/src/tool/macaron-drying-predictor/i18n/de.ts +245 -0
  39. package/src/tool/macaron-drying-predictor/i18n/en.ts +247 -0
  40. package/src/tool/macaron-drying-predictor/i18n/es.ts +245 -0
  41. package/src/tool/macaron-drying-predictor/i18n/fr.ts +245 -0
  42. package/src/tool/macaron-drying-predictor/i18n/id.ts +245 -0
  43. package/src/tool/macaron-drying-predictor/i18n/it.ts +245 -0
  44. package/src/tool/macaron-drying-predictor/i18n/ja.ts +245 -0
  45. package/src/tool/macaron-drying-predictor/i18n/ko.ts +245 -0
  46. package/src/tool/macaron-drying-predictor/i18n/nl.ts +245 -0
  47. package/src/tool/macaron-drying-predictor/i18n/pl.ts +245 -0
  48. package/src/tool/macaron-drying-predictor/i18n/pt.ts +245 -0
  49. package/src/tool/macaron-drying-predictor/i18n/ru.ts +245 -0
  50. package/src/tool/macaron-drying-predictor/i18n/sv.ts +245 -0
  51. package/src/tool/macaron-drying-predictor/i18n/tr.ts +245 -0
  52. package/src/tool/macaron-drying-predictor/i18n/zh.ts +245 -0
  53. package/src/tool/macaron-drying-predictor/index.ts +11 -0
  54. package/src/tool/macaron-drying-predictor/logic.ts +58 -0
  55. package/src/tool/macaron-drying-predictor/macaron-drying-predictor.css +551 -0
  56. package/src/tool/macaron-drying-predictor/seo.astro +15 -0
  57. package/src/tool/oil-smoke-point-tracker/bibliography.astro +6 -0
  58. package/src/tool/oil-smoke-point-tracker/bibliography.ts +10 -0
  59. package/src/tool/oil-smoke-point-tracker/component.astro +445 -0
  60. package/src/tool/oil-smoke-point-tracker/entry.ts +26 -0
  61. package/src/tool/oil-smoke-point-tracker/i18n/de.ts +285 -0
  62. package/src/tool/oil-smoke-point-tracker/i18n/en.ts +285 -0
  63. package/src/tool/oil-smoke-point-tracker/i18n/es.ts +285 -0
  64. package/src/tool/oil-smoke-point-tracker/i18n/fr.ts +285 -0
  65. package/src/tool/oil-smoke-point-tracker/i18n/id.ts +244 -0
  66. package/src/tool/oil-smoke-point-tracker/i18n/it.ts +244 -0
  67. package/src/tool/oil-smoke-point-tracker/i18n/ja.ts +244 -0
  68. package/src/tool/oil-smoke-point-tracker/i18n/ko.ts +244 -0
  69. package/src/tool/oil-smoke-point-tracker/i18n/nl.ts +244 -0
  70. package/src/tool/oil-smoke-point-tracker/i18n/pl.ts +244 -0
  71. package/src/tool/oil-smoke-point-tracker/i18n/pt.ts +244 -0
  72. package/src/tool/oil-smoke-point-tracker/i18n/ru.ts +244 -0
  73. package/src/tool/oil-smoke-point-tracker/i18n/sv.ts +244 -0
  74. package/src/tool/oil-smoke-point-tracker/i18n/tr.ts +244 -0
  75. package/src/tool/oil-smoke-point-tracker/i18n/zh.ts +244 -0
  76. package/src/tool/oil-smoke-point-tracker/index.ts +11 -0
  77. package/src/tool/oil-smoke-point-tracker/logic.ts +70 -0
  78. package/src/tool/oil-smoke-point-tracker/oil-smoke-point-tracker.css +937 -0
  79. package/src/tool/oil-smoke-point-tracker/seo.astro +15 -0
  80. package/src/tools.ts +6 -0
@@ -0,0 +1,26 @@
1
+ import type { CookingToolEntry } from '../../types';
2
+
3
+ export const macaronDrying: CookingToolEntry = {
4
+ id: 'macaron-drying-predictor',
5
+ icons: {
6
+ bg: 'mdi:circle-slice-8',
7
+ fg: 'mdi:weather-windy',
8
+ },
9
+ i18n: {
10
+ de: () => import('./i18n/de').then((m) => m.content),
11
+ en: () => import('./i18n/en').then((m) => m.content),
12
+ es: () => import('./i18n/es').then((m) => m.content),
13
+ fr: () => import('./i18n/fr').then((m) => m.content),
14
+ id: () => import('./i18n/id').then((m) => m.content),
15
+ it: () => import('./i18n/it').then((m) => m.content),
16
+ ja: () => import('./i18n/ja').then((m) => m.content),
17
+ ko: () => import('./i18n/ko').then((m) => m.content),
18
+ nl: () => import('./i18n/nl').then((m) => m.content),
19
+ pl: () => import('./i18n/pl').then((m) => m.content),
20
+ pt: () => import('./i18n/pt').then((m) => m.content),
21
+ ru: () => import('./i18n/ru').then((m) => m.content),
22
+ sv: () => import('./i18n/sv').then((m) => m.content),
23
+ tr: () => import('./i18n/tr').then((m) => m.content),
24
+ zh: () => import('./i18n/zh').then((m) => m.content),
25
+ },
26
+ };
@@ -0,0 +1,245 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
3
+
4
+ const title = 'Makronen Trocknungsrechner: Trocknungszeit je nach Luftfeuchtigkeit und Temperatur';
5
+ const description = 'Berechnen Sie exakt, wie lange Makronenschalen je nach Luftfeuchtigkeit, Temperatur und Schalengrosse trocknen mussen. Vermeiden Sie Risse und erzielen Sie jedes Mal perfekte Fusschen.';
6
+
7
+ const faq = [
8
+ {
9
+ question: 'Warum mussen Makronenschalen vor dem Backen trocknen?',
10
+ answer: 'Durch das Trocknen bildet sich eine dunne Haut auf der Oberflache der Makronenschale. Diese Haut ist entscheidend, weil sie den Dampf beim Backen einschliesst und ihn zwingt, nach unten durch die Fusschen zu entweichen, anstatt die Oberseite aufreissen zu lassen. Ohne ausreichende Trocknung reissen Makronen auf, bekommen keine Fusschen oder backen ungleichmassig.',
11
+ },
12
+ {
13
+ question: 'Wie beeinflusst die Luftfeuchtigkeit die Trocknungszeit von Makronen?',
14
+ answer: 'Die Luftfeuchtigkeit ist der wichtigste Faktor. Bei hoher Luftfeuchtigkeit (uber 60%) ist die Luft bereits mit Feuchtigkeit gesattigt, was die Verdunstung an der Schalenoberflache drastisch verlangsamt. Die Trocknungszeit kann sich im Vergleich zu einem trockenen Tag verdoppeln oder verdreifachen. Bei sehr trockener Luft (unter 30%) konnen die Schalen ubertrocknen und eine zu dicke Haut entwickeln, die das Aufgehen behindert.',
15
+ },
16
+ {
17
+ question: 'Was ist die ideale Temperatur zum Trocknen von Makronenschalen?',
18
+ answer: 'Eine Raumtemperatur zwischen 20°C und 25°C ist ideal. Warmere Luft nimmt mehr Feuchtigkeit auf und beschleunigt die Trocknung, aber zu grosse Hitze (uber 30°C) fuhrt zu ungleichmassiger Trocknung mit krustiger Aussenseite und feuchtem Inneren. Kuhle Temperaturen unter 18°C verlangsamen die Trocknung erheblich.',
19
+ },
20
+ {
21
+ question: 'Wie wirkt sich die Schalengrosse auf die Trocknungszeit aus?',
22
+ answer: 'Grossere Schalen haben mehr Oberflache und Volumen und benotigen daher proportional mehr Trocknungszeit. Eine Mini-Makrone mit 2cm kann in 15 Minuten trocknen, wahrend eine grosse Makrone mit 5cm uber eine Stunde brauchen kann. Der Zusammenhang ist nicht linear: Eine Verdopplung des Durchmessers verdreifacht die Trocknungszeit in etwa, bedingt durch das Quadrat-Kubik-Verhaltnis von Oberflache zu Volumen.',
23
+ },
24
+ ];
25
+
26
+ const howTo = [
27
+ {
28
+ name: 'Makronenschalen dressieren',
29
+ text: 'Dressieren Sie gleichmassig grosse Tupfen auf Backpapier oder eine Silikonmatte. Verwenden Sie eine Schablone fur einheitliche Grossen.',
30
+ },
31
+ {
32
+ name: 'Messen Sie Ihre Umgebungsbedingungen',
33
+ text: 'Ermitteln Sie die Luftfeuchtigkeit und Temperatur Ihrer Kuche mit einem Hygrometer und Thermometer.',
34
+ },
35
+ {
36
+ name: 'Geben Sie die Werte in den Rechner ein',
37
+ text: 'Tragen Sie Luftfeuchtigkeit, Temperatur und Schalendurchmesser ein, um die geschatzte Trocknungszeit zu erhalten.',
38
+ },
39
+ {
40
+ name: 'Testen Sie die Haut',
41
+ text: 'Beruhren Sie nach Ablauf der berechneten Zeit vorsichtig die Oberflache einer Schale. Sie sollte sich trocken und matt anfuhlen, nicht klebrig. Bleibt sie am Finger kleben, braucht sie mehr Zeit.',
42
+ },
43
+ {
44
+ name: 'Backen, sobald sie bereit sind',
45
+ text: 'Sobald sich die Haut gebildet hat, sofort backen. Lassen Sie die Schalen nach dem Trocknen nicht zu lange stehen, sonst ubertrocknen sie und reissen.',
46
+ },
47
+ ];
48
+
49
+ const faqSchema = {
50
+ '@context': 'https://schema.org' as const,
51
+ '@type': 'FAQPage' as const,
52
+ mainEntity: faq.map((item) => ({
53
+ '@type': 'Question' as const,
54
+ name: item.question,
55
+ acceptedAnswer: { '@type': 'Answer' as const, text: item.answer },
56
+ })),
57
+ };
58
+
59
+ const howToSchema = {
60
+ '@context': 'https://schema.org' as const,
61
+ '@type': 'HowTo' as const,
62
+ name: title,
63
+ description,
64
+ step: howTo.map((step) => ({
65
+ '@type': 'HowToStep' as const,
66
+ name: step.name,
67
+ text: step.text,
68
+ })),
69
+ };
70
+
71
+ const appSchema = {
72
+ '@context': 'https://schema.org' as const,
73
+ '@type': 'SoftwareApplication' as const,
74
+ name: title,
75
+ description,
76
+ applicationCategory: 'UtilitiesApplication',
77
+ operatingSystem: 'Web',
78
+ offers: { '@type': 'Offer' as const, price: '0', priceCurrency: 'EUR' },
79
+ };
80
+
81
+ export const content: ToolLocaleContent = {
82
+ slug: 'makronen-trocknungsrechner',
83
+ title: 'Makronen Trocknungsrechner',
84
+ description: 'Berechnen Sie exakt, wie lange Makronenschalen je nach Luftfeuchtigkeit, Temperatur und Schalengrosse trocknen mussen. Vermeiden Sie Risse und erzielen Sie jedes Mal perfekte Fusschen.',
85
+ faqTitle: 'Haufig Gestellte Fragen',
86
+ ui: {
87
+ humidityLabel: 'Luftfeuchtigkeit',
88
+ humidityUnit: '%',
89
+ tempLabel: 'Raumtemperatur',
90
+ tempUnit: '°C',
91
+ sizeLabel: 'Schalendurchmesser',
92
+ sizeUnit: 'cm',
93
+ dryingTimeLabel: 'Geschatzte Trocknungszeit',
94
+ minutesUnit: 'min',
95
+ readinessLabel: 'Oberflachenzustand',
96
+ skinStatusReady: 'Backfertig',
97
+ skinStatusForming: 'Haut bildet sich',
98
+ skinStatusSticky: 'Noch klebrig',
99
+ skinStatusOverDry: 'Ubertrocknet',
100
+ humidityTagHigh: 'Hohe Luftfeuchtigkeit',
101
+ humidityTagNormal: 'Normale Luftfeuchtigkeit',
102
+ humidityTagLow: 'Niedrige Luftfeuchtigkeit',
103
+ humidityDescHigh: 'Sehr feuchter Tag. Die Trocknung dauert deutlich langer. Nutzen Sie wenn moglich einen Luftentfeuchter oder einen klimatisierten Raum.',
104
+ humidityDescNormal: 'Massige Luftfeuchtigkeit. Die Trocknung sollte in normalem Tempo mit guter Hautbildung verlaufen.',
105
+ humidityDescLow: 'Sehr trockene Luft. Die Schalen konnen zu schnell trocknen und ubertrocknen. Gut uberwachen und Trocknungszeit verkurzen.',
106
+ tempTagHot: 'Warmer Raum',
107
+ tempTagIdeal: 'Ideale Raumtemperatur',
108
+ tempTagCool: 'Kuhler Raum',
109
+ sizeTagMini: 'Mini',
110
+ sizeTagStandard: 'Standard',
111
+ sizeTagLarge: 'Gross',
112
+ },
113
+ faq,
114
+ howTo,
115
+ seo: [
116
+ {
117
+ type: 'title',
118
+ text: 'Die Wissenschaft der Makronentrocknung: Warum die Hautbildung uber Erfolg entscheidet',
119
+ level: 2,
120
+ },
121
+ {
122
+ type: 'paragraph',
123
+ html: 'Die Makrone gehort zu den anspruchsvollsten Gebacken der franzosischen Patisserie. Ihre markante glatte Kuppel und der krause Fuss, bekannt als "Fusschen" oder "pied", hangen vollstandig von einem entscheidenden Schritt ab: dem Trocknen der dressierten Schalen vor dem Backen. Wahrend dieser Ruhezeit bildet sich ein dunner Proteinfilm auf der Oberflache jeder Schale. Beim Backen halt diese Haut den sich ausdehnenden Dampf in der Schale zuruck und zwingt ihn, nach unten durch den Boden zu entweichen, wodurch die Schale angehoben wird und der begehrte Fuss entsteht. Ohne ausreichende Trocknung bricht der Dampf durch die Oberseite und verursacht Risse. Bei ubermassiger Trocknung wird die Haut zu starr und die Schalen konnen nicht richtig aufgehen.',
124
+ },
125
+ {
126
+ type: 'title',
127
+ text: 'Luftfeuchtigkeit und ihre dominierende Rolle in der Trocknungskinetik',
128
+ level: 3,
129
+ },
130
+ {
131
+ type: 'paragraph',
132
+ html: 'Die relative Luftfeuchtigkeit ist die einflussreichste Variable bei der Makronentrocknung. Bei 50% relativer Luftfeuchtigkeit benotigt eine handelsubliche 3-cm-Schale in der Regel 30-40 Minuten, um eine ausreichende Haut zu entwickeln. Bei 70% Feuchtigkeit kann sich dies auf 60-90 Minuten verlangern. Bei 30% Feuchtigkeit kann die Trocknung bereits nach 15-20 Minuten abgeschlossen sein. Die zugrunde liegende Physik ist einfach: Die Verdunstungsrate ist proportional zum Dampfdruckdefizit zwischen Schalenoberflache und Umgebungsluft. Feuchte Luft hat ein geringeres Defizit, was die Verdunstung verlangsamt. Professionelle Patisserien kontrollieren die Luftfeuchtigkeit daher mit grosser Sorgfalt und unterhalten oft eigene Makronenraume mit 40-50% relativer Luftfeuchtigkeit.',
133
+ },
134
+ {
135
+ type: 'title',
136
+ text: 'Referenztabelle Trocknungszeiten nach Luftfeuchtigkeit und Schalengrosse',
137
+ level: 3,
138
+ },
139
+ {
140
+ type: 'table',
141
+ headers: ['Luftfeuchtigkeit', '2cm Mini', '3cm Standard', '4cm Gross', '5cm Extragross'],
142
+ rows: [
143
+ ['30% (Sehr trocken)', '10-15 min', '15-20 min', '25-30 min', '35-45 min'],
144
+ ['40% (Trocken)', '15-20 min', '20-30 min', '30-40 min', '45-60 min'],
145
+ ['50% (Massig)', '20-25 min', '30-40 min', '40-55 min', '55-75 min'],
146
+ ['60% (Feucht)', '25-35 min', '40-55 min', '55-75 min', '75-100 min'],
147
+ ['70% (Sehr feucht)', '35-50 min', '55-75 min', '75-100 min', '100-130 min'],
148
+ ['80% (Extrem feucht)', '50-70 min', '75-100 min', '100-140 min', '130-180 min'],
149
+ ],
150
+ },
151
+ {
152
+ type: 'title',
153
+ text: 'Die Rolle der Temperatur bei der Verdunstungsrate',
154
+ level: 3,
155
+ },
156
+ {
157
+ type: 'paragraph',
158
+ html: 'Die Temperatur beeinflusst die Trocknung uber zwei Mechanismen. Erstens kann warmere Luft mehr Wasserdampf aufnehmen, was die potenzielle Verdunstungsrate von der Schalenoberflache erhoht. Zweitens steigt die molekulare kinetische Energie mit der Temperatur, wodurch Wassermolekule schneller aus der flussigen Phase entweichen. Allerdings beeinflusst die Temperatur auch die Stabilitat der Baisermasse. Oberhalb von 28°C konnen die Eiklarproteine im Baiser beginnen sich zu destabilisieren, was zu einer geschwachten Struktur fuhrt. Der ideale Bereich fur die Makronentrocknung liegt bei 20-25°C. Unter 18°C verlangsamt sich die Verdunstung so stark, dass die Trocknung fur handelsubliche Schalengrossen unpraktikabel wird.',
159
+ },
160
+ {
161
+ type: 'title',
162
+ text: 'Schalengrosse und das Quadrat-Kubik-Gesetz der Trocknung',
163
+ level: 3,
164
+ },
165
+ {
166
+ type: 'paragraph',
167
+ html: 'Der Schalendurchmesser wirkt sich aufgrund des Quadrat-Kubik-Verhaltnisses zwischen Oberflache und Volumen nichtlinear auf die Trocknungszeit aus. Eine 2-cm-Mini-Makrone hat etwa 3,1 cm² Oberflache bei 0,5 cm³ Volumen, was ein gunstiges Oberflachen-Volumen-Verhaltnis von 6:1 ergibt. Eine grosse 5-cm-Makrone hat etwa 19,6 cm² Oberflache bei 8,2 cm³ Volumen, ein Verhaltnis von nur 2,4:1. Das bedeutet: Grossere Schalen haben proportional weniger Oberflache, uber die Feuchtigkeit entweichen kann, was die Trocknungszeit drastisch erhoht. Der Rechner modelliert dies mit einer Potenzfunktion, die anhand empirischer Daten aus professionellen Patisseriekuchen kalibriert wurde.',
168
+ },
169
+ {
170
+ type: 'title',
171
+ text: 'Fehlerbehebung bei haufigen Trocknungsproblemen',
172
+ level: 3,
173
+ },
174
+ {
175
+ type: 'diagnostic',
176
+ variant: 'warning',
177
+ title: 'Aufgerissene Schalen ohne Fusschen',
178
+ html: 'Das haufigste Makronenproblem. Dies weist fast immer darauf hin, dass die Schalen vor dem Backen nicht lange genug getrocknet wurden. Die Oberflachenhaut war zu schwach, um den sich ausdehnenden Dampf zu halten, der durch die Oberseite ausbrach. <strong>Losung: Trocknungszeit um 10-15 Minuten verlangern und die Oberflache vor dem Backen mit einer leichten Fingerberuhrung testen.</strong>',
179
+ },
180
+ {
181
+ type: 'diagnostic',
182
+ variant: 'error',
183
+ title: 'Schiefe oder einseitige Fusschen',
184
+ html: 'Ungleichmassige Trocknung ist die Ursache. Wenn eine Seite des Blechs schneller trocknet als die andere, steigen die Fusschen ungleichmassig. Dies passiert oft, wenn Bleche in der Nahe eines Fensters, Ventilators oder einer Warmequelle stehen. <strong>Losung: Bleche wahrend des Trocknens drehen und fur gleichmassige Luftzirkulation um alle Schalen sorgen.</strong>',
185
+ },
186
+ {
187
+ type: 'diagnostic',
188
+ variant: 'info',
189
+ title: 'Hohle Schalen nach dem Backen',
190
+ html: 'Hohle Schalen konnen durch Ubertrocknung entstehen, die eine zu dicke und starre Haut erzeugt. Die Schale kann sich beim Backen nicht richtig ausdehnen, wodurch innen ein Hohlraum entsteht. <strong>Losung: Trocknungszeit verkurzen und fruher auf Hautbildung prufen. Die Oberflache sollte sich trocken anfuhlen, bei sanftem Druck aber noch leicht nachgeben.</strong>',
191
+ },
192
+ {
193
+ type: 'title',
194
+ text: 'Professionelle Tipps von Patisserie-Chefs',
195
+ level: 3,
196
+ },
197
+ {
198
+ type: 'tip',
199
+ title: 'Die Ofentur Technik fur feuchte Tage',
200
+ html: 'An extrem feuchten Tagen verwenden Profikoche die sogenannte "Ofentrocknung". Heizen Sie den Ofen auf die niedrigste Stufe vor (in der Regel 50°C), schalten Sie ihn aus und stellen Sie die dressierten Makronen fur 5-10 Minuten bei leicht geoffneter Tur hinein. So entsteht ein warmes, trockenes Mikroklima, das die Hautbildung beschleunigt, ohne die Schalen zu backen.',
201
+ },
202
+ {
203
+ type: 'tip',
204
+ title: 'Der Finger Test fur die perfekte Haut',
205
+ html: 'Der sicherste Test fur die Makronenbereitschaft: Beruhren Sie leicht die Oberflache einer Schale mit einer sauberen, trockenen Fingerspitze. Bleibt Teig am Finger haften, braucht sie mehr Zeit. Fuhlt sich die Oberflache trocken und matt an und klebt nicht, hat sich die Haut gebildet. Fuhlt sich die Oberflache hart und krustig an und gibt nicht nach, sind die Schalen ubertrocknet.',
206
+ },
207
+ {
208
+ type: 'tip',
209
+ title: 'Feuchtigkeitskontrolle ohne spezielle Gerate',
210
+ html: 'Wenn Sie keinen Luftentfeuchter haben, stellen Sie eine Schale mit rohem Reis oder Silicagel-Packchen neben die trocknenden Makronen. Diese Trockenmittel absorbieren die Umgebungsfeuchtigkeit und schaffen ein trockeneres Mikroklima um das Blech. In Profikuchen ohne Klimatisierung kann dieser einfache Trick die Trocknungszeit an feuchten Tagen um 30-40% verkurzen.',
211
+ },
212
+ {
213
+ type: 'title',
214
+ text: 'Der Einfluss gereifter Eiklar',
215
+ level: 3,
216
+ },
217
+ {
218
+ type: 'paragraph',
219
+ html: 'Gereiftes Eiklar ergibt stabilere Baisermassen, die berechenbarer trocknen. Frisches Eiklar enthalt mehr Wasser und eine weniger elastische Proteinstruktur, was zu schwacheren Baisermassen fuhrt, die langer fur eine ordentliche Haut benotigen. Professionelle Rezepte setzen auf 24-72 Stunden bei Raumtemperatur bzw. 3-5 Tage im Kuhlschrank gereiftes Eiklar. Gereiftes Eiklar verliert durch Verdunstung etwa 10-15% seines Wassergehalts, wodurch die Proteine konzentriert und die Baiserfestigkeit verbessert werden.',
220
+ },
221
+ {
222
+ type: 'title',
223
+ text: 'Kurzreferenz: Trocknungszeiten fur typische Bedingungen',
224
+ level: 3,
225
+ },
226
+ {
227
+ type: 'summary',
228
+ title: 'Typische Trocknungszeiten fur Standard Makronenschalen mit 3cm',
229
+ items: [
230
+ 'Klimatisierte Kuche (22°C, 45% Feuchte): 25-30 Minuten',
231
+ 'Fruhlingstag, Fenster offen (20°C, 55% Feuchte): 35-45 Minuten',
232
+ 'Sommertag, keine Klimaanlage (28°C, 70% Feuchte): 60-90 Minuten - Ofentrocknungstechnik verwenden',
233
+ 'Beheizte Wohnung im Winter (21°C, 30% Feuchte): 15-20 Minuten - auf Ubertrocknung achten',
234
+ 'Regentag (18°C, 80% Feuchte): 75-100 Minuten - Luftentfeuchter dringend empfohlen',
235
+ 'Professionelle Patisserieküche (22°C, 45% Feuchte, Umluft): 20-25 Minuten',
236
+ ],
237
+ },
238
+ {
239
+ type: 'paragraph',
240
+ html: 'Jede Kuchenumgebung ist einzigartig. Dieser Rechner berucksichtigt die drei entscheidenden Variablen - Luftfeuchtigkeit, Temperatur und Schalengrosse - um Ihnen eine personliche Prognose der Trocknungszeit zu liefern. Geben Sie Ihre Bedingungen ein und dressieren Sie mit Vertrauen.',
241
+ },
242
+ ],
243
+ bibliography,
244
+ schemas: [faqSchema, howToSchema, appSchema],
245
+ };
@@ -0,0 +1,247 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import { bibliography } from '../bibliography';
3
+
4
+ const title = 'Macaron Shell Drying Predictor: Humidity & Temperature Drying Time Calculator';
5
+ const description = 'Calculate exactly how long macaron shells need to dry based on humidity, temperature, and shell size. Avoid cracked shells and ensure perfect feet every time.';
6
+
7
+ const faq = [
8
+ {
9
+ question: 'Why do macaron shells need to dry before baking?',
10
+ answer: 'Drying forms a thin skin on the surface of the macaron shell. This skin is essential because it traps steam during baking, forcing it to escape downward through the feet rather than cracking the top. Without proper drying, macarons crack, have no feet, or bake unevenly.',
11
+ },
12
+ {
13
+ question: 'How does humidity affect macaron drying time?',
14
+ answer: 'Humidity is the most critical factor. In high humidity (above 60%), the air is already saturated with moisture, dramatically slowing evaporation from the shell surface. Drying time can double or triple compared to a dry day. In very dry conditions (below 30%), shells can over-dry and develop a thick skin that prevents proper rise.',
15
+ },
16
+ {
17
+ question: 'What is the ideal temperature for drying macaron shells?',
18
+ answer: 'Room temperature between 20°C and 25°C is ideal. Warmer air holds more moisture and accelerates drying, but too hot (above 30°C) can cause the shells to dry unevenly with a crusty exterior and wet interior. Cool temperatures below 18°C slow drying significantly.',
19
+ },
20
+ {
21
+ question: 'How does shell size affect drying time?',
22
+ answer: 'Larger shells have more surface area and volume, requiring proportionally longer drying. A 2cm mini macaron may dry in 15 minutes, while a 5cm large macaron can take over an hour. The relationship is not linear: doubling the diameter roughly triples the drying time due to the square-cube relationship of surface area to volume.',
23
+ },
24
+ ];
25
+
26
+ const howTo = [
27
+ {
28
+ name: 'Pipe your macaron shells',
29
+ text: 'Pipe evenly sized rounds onto parchment paper or a silicone mat. Use a template for consistent sizing.',
30
+ },
31
+ {
32
+ name: 'Measure your environment',
33
+ text: 'Check the ambient humidity and temperature of your kitchen using a hygrometer and thermometer.',
34
+ },
35
+ {
36
+ name: 'Enter values into the calculator',
37
+ text: 'Input the humidity, temperature, and your shell diameter to get the estimated drying time.',
38
+ },
39
+ {
40
+ name: 'Test the skin',
41
+ text: 'After the predicted time, lightly touch the surface of a shell. It should feel dry and matte, not sticky. If it sticks to your finger, give it more time.',
42
+ },
43
+ {
44
+ name: 'Bake when ready',
45
+ text: 'Once the skin is formed, bake immediately. Do not let shells sit too long after drying or they may over-dry and crack.',
46
+ },
47
+ ];
48
+
49
+ const faqSchema = {
50
+ '@context': 'https://schema.org' as const,
51
+ '@type': 'FAQPage' as const,
52
+ mainEntity: faq.map((item) => ({
53
+ '@type': 'Question' as const,
54
+ name: item.question,
55
+ acceptedAnswer: { '@type': 'Answer' as const, text: item.answer },
56
+ })),
57
+ };
58
+
59
+ const howToSchema = {
60
+ '@context': 'https://schema.org' as const,
61
+ '@type': 'HowTo' as const,
62
+ name: title,
63
+ description,
64
+ step: howTo.map((step) => ({
65
+ '@type': 'HowToStep' as const,
66
+ name: step.name,
67
+ text: step.text,
68
+ })),
69
+ };
70
+
71
+ const appSchema = {
72
+ '@context': 'https://schema.org' as const,
73
+ '@type': 'SoftwareApplication' as const,
74
+ name: title,
75
+ description,
76
+ applicationCategory: 'UtilitiesApplication',
77
+ operatingSystem: 'Web',
78
+ offers: { '@type': 'Offer' as const, price: '0', priceCurrency: 'EUR' },
79
+ };
80
+
81
+ export const content: ToolLocaleContent = {
82
+ slug: 'macaron-drying-predictor',
83
+ title: 'Macaron Shell Drying Predictor',
84
+ description: 'Calculate exactly how long macaron shells need to dry based on humidity, temperature, and shell size. Avoid cracked shells and ensure perfect feet every time.',
85
+ faqTitle: 'Frequently Asked Questions',
86
+ ui: {
87
+ humidityLabel: 'Ambient Humidity',
88
+ humidityUnit: '%',
89
+ tempLabel: 'Room Temperature',
90
+ tempUnit: '°C',
91
+ tempUnitF: '°F',
92
+ sizeLabel: 'Shell Diameter',
93
+ sizeUnit: 'cm',
94
+ sizeUnitIn: 'in',
95
+ dryingTimeLabel: 'Estimated Drying Time',
96
+ minutesUnit: 'min',
97
+ readinessLabel: 'Surface Readiness',
98
+ skinStatusReady: 'Ready to Bake',
99
+ skinStatusForming: 'Forming Skin',
100
+ skinStatusSticky: 'Still Sticky',
101
+ skinStatusOverDry: 'Over-Dried',
102
+ humidityTagHigh: 'High humidity',
103
+ humidityTagNormal: 'Normal humidity',
104
+ humidityTagLow: 'Low humidity',
105
+ humidityDescHigh: 'Very humid day. Drying will take significantly longer. Use a dehumidifier or air-conditioned room if possible.',
106
+ humidityDescNormal: 'Moderate humidity. Drying should proceed at a normal pace with good skin formation.',
107
+ humidityDescLow: 'Very dry air. Shells may dry too quickly and risk over-drying. Monitor closely and reduce drying time.',
108
+ tempTagHot: 'Warm room',
109
+ tempTagIdeal: 'Ideal room temp',
110
+ tempTagCool: 'Cool room',
111
+ sizeTagMini: 'Mini',
112
+ sizeTagStandard: 'Standard',
113
+ sizeTagLarge: 'Large',
114
+ },
115
+ faq,
116
+ howTo,
117
+ seo: [
118
+ {
119
+ type: 'title',
120
+ text: 'The Science of Macaron Shell Drying: Why Skin Formation Determines Success',
121
+ level: 2,
122
+ },
123
+ {
124
+ type: 'paragraph',
125
+ html: 'The macaron is one of the most technically demanding pastries in French patisserie. Its signature smooth dome and ruffled base, known as the "foot" or "pied", depend entirely on a critical step: drying the piped shells before baking. This resting period allows a thin protein film to form on the surface of each shell. During baking, this skin traps expanding steam inside the shell, forcing it downward to escape through the base, which lifts the shell and creates the coveted foot. Without adequate drying, steam bursts through the top, causing cracks. With excessive drying, the skin becomes too rigid and the shells cannot rise properly.',
126
+ },
127
+ {
128
+ type: 'title',
129
+ text: 'Humidity and Its Dominant Role in Drying Kinetics',
130
+ level: 3,
131
+ },
132
+ {
133
+ type: 'paragraph',
134
+ html: 'Relative humidity is the single most influential variable in macaron shell drying. At 50% relative humidity, a standard 3cm shell typically requires 30-40 minutes to develop an adequate skin. At 70% humidity, this can extend to 60-90 minutes. At 30% humidity, drying may complete in as little as 15-20 minutes. The physics behind this is straightforward: evaporation rate is proportional to the vapor pressure deficit between the shell surface and the surrounding air. Humid air has a smaller deficit, slowing evaporation. Professional patisseries control humidity meticulously, often maintaining dedicated macaron rooms at 40-50% relative humidity.',
135
+ },
136
+ {
137
+ type: 'title',
138
+ text: 'Drying Time Reference Table by Humidity and Shell Size',
139
+ level: 3,
140
+ },
141
+ {
142
+ type: 'table',
143
+ headers: ['Humidity', '2cm Mini', '3cm Standard', '4cm Large', '5cm Extra Large'],
144
+ rows: [
145
+ ['30% (Very Dry)', '10-15 min', '15-20 min', '25-30 min', '35-45 min'],
146
+ ['40% (Dry)', '15-20 min', '20-30 min', '30-40 min', '45-60 min'],
147
+ ['50% (Moderate)', '20-25 min', '30-40 min', '40-55 min', '55-75 min'],
148
+ ['60% (Humid)', '25-35 min', '40-55 min', '55-75 min', '75-100 min'],
149
+ ['70% (Very Humid)', '35-50 min', '55-75 min', '75-100 min', '100-130 min'],
150
+ ['80% (Extremely Humid)', '50-70 min', '75-100 min', '100-140 min', '130-180 min'],
151
+ ],
152
+ },
153
+ {
154
+ type: 'title',
155
+ text: 'The Role of Temperature in Evaporation Rate',
156
+ level: 3,
157
+ },
158
+ {
159
+ type: 'paragraph',
160
+ html: 'Temperature affects drying through two mechanisms. First, warmer air can hold more water vapor, increasing the potential evaporation rate from the shell surface. Second, molecular kinetic energy increases with temperature, accelerating the rate at which water molecules escape the liquid phase. However, temperature also affects the meringue stability. Above 28°C, the egg white proteins in the meringue may begin to destabilize, leading to a weakened structure. The ideal range for macaron drying is 20-25°C. Below 18°C, the evaporation rate slows to the point where drying becomes impractical for standard-sized shells.',
161
+ },
162
+ {
163
+ type: 'title',
164
+ text: 'Shell Size and the Square-Cube Law of Drying',
165
+ level: 3,
166
+ },
167
+ {
168
+ type: 'paragraph',
169
+ html: 'Shell diameter has a non-linear effect on drying time due to the square-cube relationship between surface area and volume. A 2cm mini macaron has approximately 3.1 cm² of surface area for 0.5 cm³ of volume, giving a favorable surface-to-volume ratio of about 6:1. A 5cm large macaron has about 19.6 cm² of surface for 8.2 cm³ of volume, a ratio of only 2.4:1. This means larger shells have proportionally less surface area through which moisture can escape, dramatically increasing drying time. The calculator models this using a power-law relationship calibrated to empirical data from professional pastry kitchens.',
170
+ },
171
+ {
172
+ type: 'title',
173
+ text: 'Troubleshooting Common Macaron Drying Failures',
174
+ level: 3,
175
+ },
176
+ {
177
+ type: 'diagnostic',
178
+ variant: 'warning',
179
+ title: 'Cracked shells with no feet',
180
+ html: 'The most common macaron failure. This almost always indicates the shells were not dried long enough before baking. The surface skin was too weak to contain the expanding steam, which burst through the top. <strong>Solution: Increase drying time by 10-15 minutes and test the surface with a light fingertip touch before baking.</strong>',
181
+ },
182
+ {
183
+ type: 'diagnostic',
184
+ variant: 'error',
185
+ title: 'Lopsided or slanted feet',
186
+ html: 'Uneven drying is the culprit. If one side of the tray dries faster than the other, the feet will rise unevenly. This often happens when trays are placed near a window, fan, or heat source. <strong>Solution: Rotate trays during drying and ensure even air circulation around all shells.</strong>',
187
+ },
188
+ {
189
+ type: 'diagnostic',
190
+ variant: 'info',
191
+ title: 'Hollow shells after baking',
192
+ html: 'Hollow shells can result from over-drying, which creates a skin that is too thick and rigid. The shell cannot expand properly during baking, leaving an air gap inside. <strong>Solution: Reduce drying time and check for skin formation earlier. The surface should feel dry but still have a slight give when pressed gently.</strong>',
193
+ },
194
+ {
195
+ type: 'title',
196
+ text: 'Pro Tips from Professional Patisserie Chefs',
197
+ level: 3,
198
+ },
199
+ {
200
+ type: 'tip',
201
+ title: 'The Oven Door Technique for Humid Days',
202
+ html: 'On extremely humid days, professional chefs use a technique called "oven drying". Preheat the oven to the lowest possible setting (typically 50°C), turn it off, then place the piped macarons inside with the door slightly ajar for 5-10 minutes. This creates a warm, low-humidity microclimate that accelerates skin formation without beginning to bake the shells.',
203
+ },
204
+ {
205
+ type: 'tip',
206
+ title: 'The Touch Test for Perfect Skin',
207
+ html: 'The definitive test for macaron readiness: lightly touch the surface of one shell with a clean, dry fingertip. If the batter sticks to your finger, it needs more time. If the surface feels dry and matte and does not stick, the skin has formed. If the surface feels hard and crusty with no give, the shells are over-dried.',
208
+ },
209
+ {
210
+ type: 'tip',
211
+ title: 'Humidity Control Without Equipment',
212
+ html: 'If you do not have a dehumidifier, place a bowl of uncooked rice or silica gel packets near the drying macarons. These desiccants absorb ambient moisture, creating a drier microclimate around the tray. In professional kitchens without climate control, this simple trick can cut drying time by 30-40% on humid days.',
213
+ },
214
+ {
215
+ type: 'title',
216
+ text: 'The Egg White Aging Factor',
217
+ level: 3,
218
+ },
219
+ {
220
+ type: 'paragraph',
221
+ html: 'Aged egg whites produce more stable meringues that dry more predictably. Fresh egg whites contain more water and less elastic protein structure, leading to weaker meringues that take longer to form a proper skin. Professional recipes call for egg whites aged 24-72 hours at room temperature or 3-5 days in the refrigerator. Aged whites lose approximately 10-15% of their water content through evaporation, concentrating the proteins and improving meringue strength.',
222
+ },
223
+ {
224
+ type: 'title',
225
+ text: 'Quick Reference: Drying Times for Common Conditions',
226
+ level: 3,
227
+ },
228
+ {
229
+ type: 'summary',
230
+ title: 'Typical drying times for 3cm standard macaron shells',
231
+ items: [
232
+ 'Air-conditioned kitchen (22°C, 45% humidity): 25-30 minutes',
233
+ 'Spring day, windows open (20°C, 55% humidity): 35-45 minutes',
234
+ 'Summer day, no AC (28°C, 70% humidity): 60-90 minutes - use oven drying technique',
235
+ 'Winter heated home (21°C, 30% humidity): 15-20 minutes - watch for over-drying',
236
+ 'Rainy day (18°C, 80% humidity): 75-100 minutes - strongly consider dehumidifier',
237
+ 'Professional pastry kitchen (22°C, 45% humidity, convection): 20-25 minutes',
238
+ ],
239
+ },
240
+ {
241
+ type: 'paragraph',
242
+ html: 'Every kitchen environment is unique. This calculator accounts for the three critical variables - humidity, temperature, and shell size - to give you a personalized drying time prediction. Enter your conditions and pipe with confidence.',
243
+ },
244
+ ],
245
+ bibliography,
246
+ schemas: [faqSchema, howToSchema, appSchema],
247
+ };