@jjlmoya/utils-alcohol 1.7.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-alcohol",
3
- "version": "1.7.0",
3
+ "version": "1.9.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -2,8 +2,8 @@ import type { WithContext, SoftwareApplication } from 'schema-dts';
2
2
  import type { AlcoholClearanceUI, AlcoholClearanceLocaleContent } from '../index';
3
3
 
4
4
  const slug = 'alcohol-clearance-calculator';
5
- const title = 'BAC & Alcohol Metabolism Calculator';
6
- const description = 'Estimate your Blood Alcohol Content (BAC) and the time needed for your body to eliminate alcohol based on Widmark\'s formula.';
5
+ const title = 'Hangover & BAC Calculator: Recovery Predictor';
6
+ const description = 'Calculate your Blood Alcohol Content (BAC) and time to reach 0.0 using Widmark\'s formula. Plan your pre-sleep hydration and know when you\'ll be fully recovered.';
7
7
 
8
8
  const ui: AlcoholClearanceUI = {
9
9
  biologicalSexLabel: 'Biological Sex',
@@ -35,23 +35,35 @@ const bibliographyTitle = 'Bibliography & Sources';
35
35
 
36
36
  const faq: AlcoholClearanceLocaleContent['faq'] = [
37
37
  {
38
- question: "What is Widmark's formula?",
39
- answer: "It is the standard pharmacokinetics model that relates the amount of alcohol ingested with body weight and a distribution factor based on biological sex.",
38
+ question: "What is a Standard Drink Unit and how much is in each drink?",
39
+ answer: "A Standard Drink Unit contains approximately 10 grams of pure alcohol (UK/EU definition; 14g in the US). A regular beer (330ml at 5%) contains ~1.3 units, a glass of wine (150ml at 12%) ~1.4 units, and a shot (40ml at 40%) ~1.3 units. Knowing the units in what you drink is essential for interpreting the calculator's results correctly.",
40
40
  },
41
41
  {
42
- question: "Can coffee speed up alcohol elimination?",
43
- answer: "No. The liver eliminates alcohol at a constant rate (approx. 0.15 g/L per hour). Coffee may make you feel more alert, but it doesn't reduce blood alcohol levels.",
42
+ question: "Why does biological sex affect BAC calculations?",
43
+ answer: "Biological sex influences the Widmark factor 'r', which represents total body water as a fraction of weight. Men average r=0.68 because they have proportionally more body water. Women average r=0.55 due to a higher percentage of body fat, which retains less alcohol. This means that for the same drinks and body weight, women will reach a higher BAC.",
44
44
  },
45
45
  {
46
- question: "Why does biological sex affect BAC calculations?",
47
- answer: "Biological sex influences the Widmark factor 'r', which represents total body water as a fraction of weight. Men average r=0.68 because they have proportionally more body water. Women average r=0.55 due to higher body fat percentages, which holds less alcohol. This means for the same drinks and weight, women will have a higher BAC.",
46
+ question: "Can coffee, water or exercise speed up alcohol elimination?",
47
+ answer: "No. The liver eliminates alcohol at a constant rate of approximately 0.15 g/L per hour (zero-order kinetics). Coffee can mask tiredness, water helps with dehydration, and exercise improves general wellbeing but none of them reduce your actual BAC. Only time eliminates alcohol from the blood.",
48
+ },
49
+ {
50
+ question: "Does eating after drinking help lower BAC?",
51
+ answer: "Eating after drinking does not reduce the alcohol already in your bloodstream. Where food makes a huge difference is before or during drinking: food in the stomach — especially proteins and fats — slows gastric absorption and can reduce your peak BAC by up to 50%. Once alcohol is absorbed, only hepatic metabolism can eliminate it.",
52
+ },
53
+ {
54
+ question: "How long does it take to reach 0.0 BAC?",
55
+ answer: "It depends on your starting BAC. Divide your estimated BAC (in g/L) by 0.15 to get the approximate hours. For example, a BAC of 1.5 g/L takes around 10 hours. The liver never stops: it processes alcohol even while you sleep. But be aware — alcohol can still be present in your blood even when you feel completely recovered.",
56
+ },
57
+ {
58
+ question: "Is this calculator 100% reliable for deciding whether to drive?",
59
+ answer: "No. This tool is a theoretical estimate based on Widmark's formula. Factors such as food intake, medications, fatigue, genetic ADH enzyme variants, and stress can shift your actual BAC by 20–30% in either direction. Never use this calculator to decide whether to drive. If you have been drinking, do not drive — that is the only rule with zero margin for error.",
48
60
  },
49
61
  ];
50
62
 
51
63
  const bibliography: AlcoholClearanceLocaleContent['bibliography'] = [
52
64
  {
53
- name: "Widmark's Formula for BAC Calculation - Forensic Science Lab",
54
- url: "https://www.forensic-science.com/widmark-formula",
65
+ name: "Alcohol calculations and their uncertainty - PMC",
66
+ url: "https://pmc.ncbi.nlm.nih.gov/articles/PMC4361698/",
55
67
  },
56
68
  {
57
69
  name: "Alcohol Metabolism: How the body processes alcohol - NIH",
@@ -1,9 +1,9 @@
1
1
  import type { WithContext, SoftwareApplication } from 'schema-dts';
2
2
  import type { AlcoholClearanceUI, AlcoholClearanceLocaleContent } from '../index';
3
3
 
4
- const slug = 'calculadora-eliminacion-alcohol';
5
- const title = 'Calculadora de Alcoholemia y Metabolismo';
6
- const description = 'Estima tu tasa de alcoholemia (BAC) y el tiempo necesario para eliminar el alcohol de tu organismo basándote en la fórmula de Widmark.';
4
+ const slug = 'calculadora-alcohol-resaca';
5
+ const title = 'Calculadora de Resaca y Alcoholemia: Predictor de Recuperación';
6
+ const description = 'Calcula tu alcoholemia (BAC) y el tiempo hasta 0.0 según la fórmula de Widmark. Planifica tu hidratación pre-sueño y sabe cuándo estarás recuperado.';
7
7
 
8
8
  const ui: AlcoholClearanceUI = {
9
9
  biologicalSexLabel: 'Sexo Biológico',
@@ -35,17 +35,29 @@ const bibliographyTitle = 'Bibliografía y Fuentes';
35
35
 
36
36
  const faq: AlcoholClearanceLocaleContent['faq'] = [
37
37
  {
38
- question: "¿Qué es la fórmula de Widmark?",
39
- answer: "Es el modelo estándar de farmacocinética que relaciona la cantidad de alcohol ingerido con el peso corporal y un factor de distribución según el sexo biológico.",
40
- },
41
- {
42
- question: "¿Se puede acelerar la eliminación con café?",
43
- answer: "No. El hígado elimina el alcohol a una tasa constante (aprox. 0.15 g/L por hora). El café puede espabilarte, pero no reduce el alcohol en sangre.",
38
+ question: "¿Qué es una UBE y cuántas lleva cada bebida?",
39
+ answer: "Una UBE (Unidad de Bebida Estándar) equivale a 10 gramos de alcohol puro en España. Una caña (330ml al 5%) aporta ~1.3 UBE, una copa de vino (150ml al 12%) ~1.4 UBE y un chupito (40ml al 40%) ~1.3 UBE. Conocer las UBE de lo que bebes es clave para interpretar correctamente el resultado de la calculadora.",
44
40
  },
45
41
  {
46
42
  question: "¿Por qué el sexo biológico afecta al cálculo de la alcoholemia?",
47
43
  answer: "El sexo biológico influye en el factor de Widmark 'r', que representa el agua corporal total como fracción del peso. Los hombres tienen de media r=0.68 porque tienen proporcionalmente más agua corporal. Las mujeres tienen de media r=0.55 debido a un mayor porcentaje de grasa corporal, que retiene menos el alcohol. Esto significa que, con las mismas bebidas y peso, las mujeres tendrán una tasa de alcoholemia más alta.",
48
44
  },
45
+ {
46
+ question: "¿Se puede acelerar la eliminación con café, agua o ejercicio?",
47
+ answer: "No. El hígado elimina el alcohol a una tasa constante de aproximadamente 0.15 g/L por hora (cinética de orden cero). El café puede disimular el cansancio, el agua ayuda con la deshidratación y el ejercicio mejora el bienestar general, pero ninguno reduce el BAC real. Solo el tiempo elimina el alcohol de la sangre.",
48
+ },
49
+ {
50
+ question: "¿Comer después de beber ayuda a bajar el BAC?",
51
+ answer: "Comer después de beber no reduce el alcohol que ya está en sangre. Donde sí marca una diferencia enorme es antes o durante: la comida en el estómago, especialmente proteínas y grasas, ralentiza la absorción gástrica y puede reducir el BAC máximo alcanzado hasta un 50%. Una vez el alcohol está absorbido, solo el metabolismo hepático puede eliminarlo.",
52
+ },
53
+ {
54
+ question: "¿Cuánto tiempo tardo en dar 0.0?",
55
+ answer: "Depende de tu BAC inicial. Dividiendo tu alcoholemia estimada (en g/L) entre 0.15 obtienes las horas aproximadas. Por ejemplo, un BAC de 1.5 g/L requiere unas 10 horas. El hígado no descansa: procesa alcohol incluso mientras duermes. Pero atención: todavía puede haber alcohol en sangre aunque te sientas completamente recuperado.",
56
+ },
57
+ {
58
+ question: "¿Es esta calculadora 100% fiable para decidir si puedo conducir?",
59
+ answer: "No. Esta herramienta es una estimación teórica basada en la fórmula de Widmark. Factores como la comida, medicamentos, fatiga, genética de la enzima ADH o el estrés pueden desviarte un 20-30% del valor calculado. Nunca uses esta calculadora para decidir si conduces. Si has bebido, no conduzcas — es la única regla sin margen de error.",
60
+ },
49
61
  ];
50
62
 
51
63
  const howTo: AlcoholClearanceLocaleContent['howTo'] = [
@@ -65,8 +77,8 @@ const howTo: AlcoholClearanceLocaleContent['howTo'] = [
65
77
 
66
78
  const bibliography: AlcoholClearanceLocaleContent['bibliography'] = [
67
79
  {
68
- name: "Widmark's Formula for BAC Calculation - Forensic Science Lab",
69
- url: "https://www.forensic-science.com/widmark-formula",
80
+ name: "Alcohol calculations and their uncertainty - PMC",
81
+ url: "https://pmc.ncbi.nlm.nih.gov/articles/PMC4361698/",
70
82
  },
71
83
  {
72
84
  name: "Alcohol Metabolism: How the body processes alcohol - NIH",
@@ -2,8 +2,8 @@ import type { WithContext, SoftwareApplication } from 'schema-dts';
2
2
  import type { AlcoholClearanceUI, AlcoholClearanceLocaleContent } from '../index';
3
3
 
4
4
  const slug = 'calculateur-elimination-alcohol';
5
- const title = 'Calculateur d\'Alcooolémie et Métabolisme';
6
- const description = 'Estimez votre taux d\'alcoolémie (BAC) et le temps nécessaire à votre corps pour éliminer l\'alcool selon la formule de Widmark.';
5
+ const title = 'Calculateur de Gueule de Bois et Alcoolémie : Prédicteur de Récupération';
6
+ const description = 'Calculez votre alcoolémie (BAC) et le temps jusqu\'à 0,0 selon la formule de Widmark. Planifiez votre hydratation pré-sommeil et sachez quand vous serez complètement rétabli.';
7
7
 
8
8
  const ui: AlcoholClearanceUI = {
9
9
  biologicalSexLabel: 'Sexe Biologique',
@@ -35,23 +35,35 @@ const bibliographyTitle = 'Bibliographie & Sources';
35
35
 
36
36
  const faq: AlcoholClearanceLocaleContent['faq'] = [
37
37
  {
38
- question: "Qu'est-ce que la formule de Widmark ?",
39
- answer: "C'est le modèle standard de pharmacocinétique qui relie la quantité d'alcool ingérée au poids corporel et à un facteur de distribution selon le sexe biologique.",
40
- },
41
- {
42
- question: "Le café peut-il accélérer l'élimination de l'alcool ?",
43
- answer: "Non. Le foie élimine l'alcool à un taux constant (environ 0,15 g/L par heure). Le café peut vous réveiller, mais ne réduit pas le taux d'alcool dans le sang.",
38
+ question: "Qu'est-ce qu'une Unité Standard de Boisson et combien chaque verre en contient-il ?",
39
+ answer: "Une Unité Standard de Boisson contient environ 10 grammes d'alcool pur (définition européenne). Une bière ordinaire (330ml à 5%) représente ~1,3 unité, un verre de vin (150ml à 12%) ~1,4 unité et un shot (40ml à 40%) ~1,3 unité. Connaître les unités de ce que vous buvez est essentiel pour interpréter correctement les résultats du calculateur.",
44
40
  },
45
41
  {
46
42
  question: "Pourquoi le sexe biologique affecte-t-il le calcul de l'alcoolémie ?",
47
43
  answer: "Le sexe biologique influence le facteur de Widmark 'r', qui représente l'eau corporelle totale en fraction du poids. Les hommes ont en moyenne r=0,68 car ils ont proportionnellement plus d'eau corporelle. Les femmes ont en moyenne r=0,55 en raison d'un pourcentage plus élevé de graisses corporelles, qui retiennent moins l'alcool. Ainsi, à boissons et poids égaux, les femmes auront un BAC plus élevé.",
48
44
  },
45
+ {
46
+ question: "Le café, l'eau ou le sport peuvent-ils accélérer l'élimination de l'alcool ?",
47
+ answer: "Non. Le foie élimine l'alcool à un taux constant d'environ 0,15 g/L par heure (cinétique d'ordre zéro). Le café peut masquer la fatigue, l'eau aide contre la déshydratation et le sport améliore le bien-être général — mais aucun ne réduit votre alcoolémie réelle. Seul le temps élimine l'alcool du sang.",
48
+ },
49
+ {
50
+ question: "Manger après avoir bu aide-t-il à faire baisser l'alcoolémie ?",
51
+ answer: "Manger après avoir bu ne réduit pas l'alcool déjà présent dans le sang. Là où la nourriture fait une énorme différence, c'est avant ou pendant la consommation : les aliments dans l'estomac — notamment les protéines et les graisses — ralentissent l'absorption gastrique et peuvent réduire le BAC maximum atteint jusqu'à 50 %. Une fois l'alcool absorbé, seul le métabolisme hépatique peut l'éliminer.",
52
+ },
53
+ {
54
+ question: "Combien de temps faut-il pour atteindre 0,0 ?",
55
+ answer: "Cela dépend de votre BAC initial. Divisez votre alcoolémie estimée (en g/L) par 0,15 pour obtenir le nombre d'heures approximatif. Par exemple, un BAC de 1,5 g/L nécessite environ 10 heures. Le foie ne s'arrête jamais : il traite l'alcool même pendant le sommeil. Attention : il peut encore y avoir de l'alcool dans le sang même si vous vous sentez complètement rétabli.",
56
+ },
57
+ {
58
+ question: "Ce calculateur est-il fiable à 100 % pour décider si je peux conduire ?",
59
+ answer: "Non. Cet outil est une estimation théorique basée sur la formule de Widmark. Des facteurs comme l'alimentation, les médicaments, la fatigue, les variants génétiques de l'enzyme ADH et le stress peuvent faire dévier votre alcoolémie réelle de 20 à 30 % dans les deux sens. N'utilisez jamais ce calculateur pour décider de conduire. Si vous avez bu, ne conduisez pas — c'est la seule règle sans marge d'erreur.",
60
+ },
49
61
  ];
50
62
 
51
63
  const bibliography: AlcoholClearanceLocaleContent['bibliography'] = [
52
64
  {
53
- name: "Widmark's Formula for BAC Calculation - Forensic Science Lab",
54
- url: "https://www.forensic-science.com/widmark-formula",
65
+ name: "Alcohol calculations and their uncertainty - PMC",
66
+ url: "https://pmc.ncbi.nlm.nih.gov/articles/PMC4361698/",
55
67
  },
56
68
  {
57
69
  name: "Alcohol Metabolism: How the body processes alcohol - NIH",
@@ -2,8 +2,8 @@ import type { WithContext, SoftwareApplication } from 'schema-dts';
2
2
  import type { BeerCoolerUI, BeerCoolerLocaleContent } from '../index';
3
3
 
4
4
  const slug = 'beer-cooler';
5
- const title = 'Beer Cooling Calculator';
6
- const description = 'Calculate how long it takes for your beer to cool down in the fridge or freezer based on its container.';
5
+ const title = "Beer Cooling Calculator with Newton's Law";
6
+ const description = "Calculate with real thermodynamics Newton's Law of Cooling — exactly how long your beer needs to reach the perfect serving temperature in the fridge or freezer.";
7
7
 
8
8
  const ui: BeerCoolerUI = {
9
9
  step1Title: 'What are you cooling?',
@@ -34,16 +34,24 @@ const bibliographyTitle = 'Bibliography & Sources';
34
34
 
35
35
  const faq: BeerCoolerLocaleContent['faq'] = [
36
36
  {
37
- question: "Does beer 'burn' if cooled too fast?",
38
- answer: "No. The myth of beer 'burning' from heat shock is false. What can affect it is repeated freezing and thawing, which breaks proteins and clouds the liquid, or leaving it in the sun (UV rays).",
37
+ question: "How does this tool calculate cooling time?",
38
+ answer: "It applies Newton's Law of Cooling: T(t) = T_env + (T₀ - T_env) × e^(-kt). The constant k varies by container material and cooling medium. An aluminum can in a fridge has a very different k than a glass bottle in a freezer. The values used here are calibrated against real-world experiments for each combination.",
39
39
  },
40
40
  {
41
- question: "Why does foam spray out if the beer is warm?",
42
- answer: "Henry's Law. The solubility of CO2 decreases as temperature increases. In a warm beer, the gas is 'desperate' to escape. When opened, the pressure drops and the gas expands violently.",
41
+ question: "Does the wet paper towel trick with salt actually work?",
42
+ answer: "Yes, and quite noticeably. Wrapping the container in a damp paper towel with salt speeds cooling for two reasons: water evaporation draws out additional heat (evaporative cooling), and salt lowers the water's freezing point, keeping the moist contact active longer. You can gain an extra 2–4°C drop in the first few minutes compared to placing a dry can in the freezer.",
43
43
  },
44
44
  {
45
45
  question: "What is the ideal serving temperature for different beer styles?",
46
- answer: "It depends on the style. Lagers and Pilsners are best served between 3°C and 7°C. IPAs and Pale Ales shine at 7°C to 10°C. Stouts, Porters and complex ales should be served warmer, around 10°C to 13°C, so their aromatic compounds can fully open up.",
46
+ answer: "It depends on the style. Lagers and Pilsners are best served between 3°C and 7°C. IPAs and Pale Ales shine at 7°C to 10°C. Stouts, Porters and complex ales should be served warmer, between 12°C and 14°C, so their aromatic compounds — coffee, chocolate, nuts — can express themselves fully.",
47
+ },
48
+ {
49
+ question: "Can my beer explode if I leave it in the freezer?",
50
+ answer: "Yes. Alcohol and dissolved sugars lower beer's freezing point below that of pure water: a standard 5% lager freezes around -3°C. As the water crystallizes, the volume increases and dissolved CO2 raises internal pressure until the container gives way. More than 60 minutes in the freezer — especially glass bottles — is a real danger zone. Use this calculator to avoid it.",
51
+ },
52
+ {
53
+ question: "Does beer 'burn' if cooled too quickly?",
54
+ answer: "No. The 'heat shock' myth that ruins beer is false. What can genuinely affect it is repeated freezing and thawing — which breaks proteins and clouds the liquid — or direct UV light exposure. A quick chill in the freezer or ice water does not harm the flavour.",
47
55
  },
48
56
  ];
49
57
 
@@ -64,12 +72,12 @@ const howTo: BeerCoolerLocaleContent['howTo'] = [
64
72
 
65
73
  const bibliography: BeerCoolerLocaleContent['bibliography'] = [
66
74
  {
67
- name: "Newton's Law of Cooling - Physics Hypertextbook",
68
- url: "https://physics.info/newton-cooling/",
75
+ name: "Newton's Law of Cooling - Wikipedia",
76
+ url: "https://en.wikipedia.org/wiki/Newton%27s_law_of_cooling",
69
77
  },
70
78
  {
71
- name: "The Science of Better Beer - American Chemical Society",
72
- url: "https://www.acs.org/content/acs/en/pressroom/reactions/videos/2016/the-science-of-better-beer.html",
79
+ name: "Advanced Chemistry of Beer and Brewing - American Chemical Society",
80
+ url: "https://www.acs.org/acs-webinars/library/advanced-chemistry-of-beer-and-brewing.html",
73
81
  },
74
82
  ];
75
83
 
@@ -105,7 +113,7 @@ const seo: BeerCoolerLocaleContent['seo'] = [
105
113
  items: [
106
114
  { label: 'Pilsner & Lager', value: '3°C - 7°C', icon: 'mdi:snowflake' },
107
115
  { label: 'IPA & Pale Ale', value: '7°C - 10°C', icon: 'mdi:hops' },
108
- { label: 'Stout & Porter', value: '10°C - 13°C', icon: 'mdi:beer' }
116
+ { label: 'Stout & Porter', value: '12°C - 14°C', icon: 'mdi:beer' }
109
117
  ],
110
118
  columns: 3
111
119
  },
@@ -145,8 +153,8 @@ const schemas: BeerCoolerLocaleContent['schemas'] = [
145
153
  {
146
154
  '@context': 'https://schema.org',
147
155
  '@type': 'SoftwareApplication',
148
- name: title,
149
- description: description,
156
+ name: "Beer Cooling Calculator – Newton's Law of Cooling",
157
+ description: 'Applied thermodynamics tool that uses Newton\'s Law of Cooling to calculate the exact time for your beer to reach the ideal serving temperature in a fridge or freezer.',
150
158
  applicationCategory: 'UtilityApplication',
151
159
  operatingSystem: 'Web',
152
160
  offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
@@ -1,9 +1,9 @@
1
1
  import type { WithContext, SoftwareApplication } from 'schema-dts';
2
2
  import type { BeerCoolerUI, BeerCoolerLocaleContent } from '../index';
3
3
 
4
- const slug = 'enfriador-cerveza';
5
- const title = 'Calculadora de Enfriamiento de Cerveza';
6
- const description = 'Calcula cuánto tiempo tarda tu cerveza en enfriarse en la nevera o el congelador según el envase.';
4
+ const slug = 'calculadora-enfriamiento-cerveza';
5
+ const title = 'Calculadora de Enfriamiento de Cerveza con la Ley de Newton';
6
+ const description = 'Calcula con termodinámica real —la Ley de Enfriamiento de Newton— cuánto tarda tu cerveza en alcanzar la temperatura perfecta en nevera o congelador.';
7
7
 
8
8
  const ui: BeerCoolerUI = {
9
9
  step1Title: '¿Qué vas a enfriar?',
@@ -34,16 +34,24 @@ const bibliographyTitle = 'Bibliografía y Fuentes';
34
34
 
35
35
  const faq: BeerCoolerLocaleContent['faq'] = [
36
36
  {
37
- question: "¿La cerveza se 'quema' si se enfría muy rápido?",
38
- answer: "No. El mito de 'quemar' la cerveza por choque térmico es falso. Lo que puede afectarla es congelarla y descongelarla repetidamente, lo que rompe las proteínas y enturbia el líquido, o dejarla al sol (UV).",
37
+ question: "¿Cómo calcula esta herramienta el tiempo de enfriamiento?",
38
+ answer: "Aplica la Ley de Enfriamiento de Newton: T(t) = T_env + (T₀ - T_env) × e^(-kt). La constante k varía según el material del envase y el medio de enfriado. Una lata de aluminio en nevera tiene un k muy diferente al de una botella de vidrio en congelador. Los valores que usamos están calibrados con experimentos reales para cada combinación.",
39
39
  },
40
40
  {
41
- question: "¿Por qué la espuma sale disparada si está caliente?",
42
- answer: "Ley de Henry. La solubilidad del CO2 disminuye al aumentar la temperatura. En una cerveza caliente, el gas está 'desesperado' por escapar. Al abrirla, la presión baja y el gas se expande violentamente.",
41
+ question: "¿Funciona el truco del papel húmedo con sal en el congelador?",
42
+ answer: "Sí, y de forma notable. Envolver el envase en papel mojado con sal acelera el enfriamiento por dos razones: la evaporación del agua extrae calor adicional (enfriamiento evaporativo) y la sal baja el punto de congelación del agua, manteniendo el contacto húmedo más tiempo. Puedes bajar entre 2°C y 4°C extra en los primeros minutos respecto a meter la lata seca.",
43
43
  },
44
44
  {
45
45
  question: "¿Cuál es la temperatura de servicio ideal según el estilo de cerveza?",
46
- answer: "Depende del estilo. Las Lagers y Pilsners están mejor entre 3°C y 7°C. Las IPAs y Pale Ales brillan entre 7°C y 10°C. Las Stouts, Porters y ales complejas deben servirse más cálidas, entre 10°C y 13°C, para que sus compuestos aromáticos se abran completamente.",
46
+ answer: "Depende del estilo. Las Lagers y Pilsners están mejor entre 3°C y 7°C. Las IPAs y Pale Ales brillan entre 7°C y 10°C. Las Stouts, Porters y ales complejas deben servirse más cálidas, entre 12°C y 14°C, para que sus compuestos aromáticos —café, chocolate, frutos secos— se expresen con plenitud.",
47
+ },
48
+ {
49
+ question: "¿Puede explotar mi cerveza si la dejo en el congelador?",
50
+ answer: "Sí. El alcohol y los azúcares bajan el punto de congelación de la cerveza respecto al agua pura: una Lager al 5% se congela en torno a los -3°C. Al cristalizarse el agua, el volumen aumenta y el CO2 disuelto eleva la presión interna hasta que el envase cede. Más de 60 minutos en el congelador con envases de vidrio es zona de riesgo real. Usa esta calculadora para no pasarte.",
51
+ },
52
+ {
53
+ question: "¿La cerveza se 'quema' si se enfría muy rápido?",
54
+ answer: "No. El mito del 'choque térmico' que arruina la cerveza es falso. Lo que sí puede afectarla negativamente es congelarla y descongelarla repetidamente —rompe proteínas y enturbia el líquido— o exponerla a luz UV directa. Un enfriamiento rápido en congelador o agua con hielo no daña el sabor.",
47
55
  },
48
56
  ];
49
57
 
@@ -64,12 +72,12 @@ const howTo: BeerCoolerLocaleContent['howTo'] = [
64
72
 
65
73
  const bibliography: BeerCoolerLocaleContent['bibliography'] = [
66
74
  {
67
- name: "Newton's Law of Cooling - Physics Hypertextbook",
68
- url: "https://physics.info/newton-cooling/",
75
+ name: "Ley del enfriamiento de Newton - Wikipedia",
76
+ url: "https://en.wikipedia.org/wiki/Newton%27s_law_of_cooling",
69
77
  },
70
78
  {
71
- name: "The Science of Better Beer - American Chemical Society",
72
- url: "https://www.acs.org/content/acs/en/pressroom/reactions/videos/2016/the-science-of-better-beer.html",
79
+ name: "Advanced Chemistry of Beer and Brewing - American Chemical Society",
80
+ url: "https://www.acs.org/acs-webinars/library/advanced-chemistry-of-beer-and-brewing.html",
73
81
  },
74
82
  ];
75
83
 
@@ -158,8 +166,8 @@ const schemas: BeerCoolerLocaleContent['schemas'] = [
158
166
  {
159
167
  '@context': 'https://schema.org',
160
168
  '@type': 'SoftwareApplication',
161
- name: title,
162
- description: description,
169
+ name: 'Calculadora de Enfriamiento de Cerveza – Ley de Newton',
170
+ description: 'Herramienta de termodinámica aplicada que calcula con la Ley de Enfriamiento de Newton el tiempo exacto para que tu cerveza alcance la temperatura de servicio ideal en nevera o congelador.',
163
171
  applicationCategory: 'UtilityApplication',
164
172
  operatingSystem: 'Web',
165
173
  offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
@@ -2,8 +2,8 @@ import type { WithContext, SoftwareApplication } from 'schema-dts';
2
2
  import type { BeerCoolerUI, BeerCoolerLocaleContent } from '../index';
3
3
 
4
4
  const slug = 'refroidisseur-biere';
5
- const title = 'Calculateur de Refroidissement de Bière';
6
- const description = 'Calculez combien de temps il faut pour que votre bière refroidisse dans le frigo ou le congélateur selon son contenant.';
5
+ const title = 'Calculateur de Refroidissement de Bière avec la Loi de Newton';
6
+ const description = 'Calculez avec la thermodynamique réelle — la Loi du Refroidissement de Newton combien de temps votre bière met à atteindre la température de service idéale au frigo ou au congélateur.';
7
7
 
8
8
  const ui: BeerCoolerUI = {
9
9
  step1Title: 'Que voulez-vous refroidir ?',
@@ -34,16 +34,24 @@ const bibliographyTitle = 'Bibliographie & Sources';
34
34
 
35
35
  const faq: BeerCoolerLocaleContent['faq'] = [
36
36
  {
37
- question: "La bière 'brûle'-t-elle si elle est refroidie trop vite ?",
38
- answer: "Non. Le mythe de la bière 'brûlée' par choc thermique est faux. Ce qui peut l'affecter, c'est la congélation et la décongélation répétées, ce qui brise les protéines et trouble le liquide, ou l'exposition au soleil (UV).",
37
+ question: "Comment cet outil calcule-t-il le temps de refroidissement ?",
38
+ answer: "Il applique la Loi du Refroidissement de Newton : T(t) = T_env + (T₀ - T_env) × e^(-kt). La constante k varie selon le matériau du contenant et le milieu de refroidissement. Une canette en aluminium dans un frigo a un k très différent d'une bouteille en verre dans un congélateur. Les valeurs utilisées sont calibrées sur des expériences réelles pour chaque combinaison.",
39
39
  },
40
40
  {
41
- question: "Pourquoi la mousse jaillit-elle si la bière est chaude ?",
42
- answer: "Loi de Henry. La solubilité du CO2 diminue à mesure que la température augmente. Dans une bière chaude, le gaz est 'désespéré' de s'échapper. À l'ouverture, la pression chute et le gaz se dilate violemment.",
41
+ question: "L'astuce du papier mouillé avec du sel fonctionne-t-elle vraiment ?",
42
+ answer: "Oui, et de façon notable. Envelopper le contenant dans du papier humide avec du sel accélère le refroidissement pour deux raisons : l'évaporation de l'eau extrait de la chaleur supplémentaire (refroidissement par évaporation) et le sel abaisse le point de congélation de l'eau, prolongeant le contact humide. Vous pouvez gagner 2 à 4°C supplémentaires dans les premières minutes par rapport à une canette sèche au congélateur.",
43
43
  },
44
44
  {
45
45
  question: "Quelle est la température de service idéale selon le style de bière ?",
46
- answer: "Cela dépend du style. Les Lagers et Pilsners sont meilleures entre 3°C et 7°C. Les IPAs et Pale Ales s'épanouissent entre 7°C et 10°C. Les Stouts, Porters et ales complexes doivent être servis plus chauds, autour de 10°C à 13°C, pour que leurs composés aromatiques s'ouvrent pleinement.",
46
+ answer: "Cela dépend du style. Les Lagers et Pilsners sont meilleures entre 3°C et 7°C. Les IPAs et Pale Ales s'épanouissent entre 7°C et 10°C. Les Stouts, Porters et ales complexes doivent être servis plus chauds, entre 12°C et 14°C, pour que leurs composés aromatiques — café, chocolat, fruits secs — s'expriment pleinement.",
47
+ },
48
+ {
49
+ question: "Ma bière peut-elle exploser si je la laisse au congélateur ?",
50
+ answer: "Oui. L'alcool et les sucres dissous abaissent le point de congélation de la bière : une lager standard à 5% gèle vers -3°C. Lorsque l'eau se cristallise, le volume augmente et la pression interne du CO2 monte jusqu'à ce que le contenant cède. Plus de 60 minutes au congélateur — surtout en bouteille en verre — est une zone de risque réel. Utilisez ce calculateur pour l'éviter.",
51
+ },
52
+ {
53
+ question: "La bière 'brûle'-t-elle si elle est refroidie trop vite ?",
54
+ answer: "Non. Le mythe du 'choc thermique' qui abîme la bière est faux. Ce qui peut réellement l'affecter, c'est la congélation et la décongélation répétées — cela brise les protéines et trouble le liquide — ou l'exposition directe aux UV. Un refroidissement rapide au congélateur ou dans de l'eau glacée n'altère pas le goût.",
47
55
  },
48
56
  ];
49
57
 
@@ -64,12 +72,12 @@ const howTo: BeerCoolerLocaleContent['howTo'] = [
64
72
 
65
73
  const bibliography: BeerCoolerLocaleContent['bibliography'] = [
66
74
  {
67
- name: "Newton's Law of Cooling - Physics Hypertextbook",
68
- url: "https://physics.info/newton-cooling/",
75
+ name: "Loi du refroidissement de Newton - Wikipedia",
76
+ url: "https://en.wikipedia.org/wiki/Newton%27s_law_of_cooling",
69
77
  },
70
78
  {
71
- name: "The Science of Better Beer - American Chemical Society",
72
- url: "https://www.acs.org/content/acs/en/pressroom/reactions/videos/2016/the-science-of-better-beer.html",
79
+ name: "Advanced Chemistry of Beer and Brewing - American Chemical Society",
80
+ url: "https://www.acs.org/acs-webinars/library/advanced-chemistry-of-beer-and-brewing.html",
73
81
  },
74
82
  ];
75
83
 
@@ -105,7 +113,7 @@ const seo: BeerCoolerLocaleContent['seo'] = [
105
113
  items: [
106
114
  { label: 'Pilsner & Lager', value: '3°C - 7°C', icon: 'mdi:snowflake' },
107
115
  { label: 'IPA & Pale Ale', value: '7°C - 10°C', icon: 'mdi:hops' },
108
- { label: 'Stout & Porter', value: '10°C - 13°C', icon: 'mdi:beer' }
116
+ { label: 'Stout & Porter', value: '12°C - 14°C', icon: 'mdi:beer' }
109
117
  ],
110
118
  columns: 3
111
119
  },
@@ -145,8 +153,8 @@ const schemas: BeerCoolerLocaleContent['schemas'] = [
145
153
  {
146
154
  '@context': 'https://schema.org',
147
155
  '@type': 'SoftwareApplication',
148
- name: title,
149
- description: description,
156
+ name: 'Calculateur de Refroidissement de Bière – Loi du Refroidissement de Newton',
157
+ description: 'Outil de thermodynamique appliquée qui utilise la Loi du Refroidissement de Newton pour calculer le temps exact nécessaire à votre bière pour atteindre la température de service idéale au frigo ou au congélateur.',
150
158
  applicationCategory: 'UtilityApplication',
151
159
  operatingSystem: 'Web',
152
160
  offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
@@ -3,7 +3,7 @@ import type { CarbonationUI, CarbonationLocaleContent } from '../index';
3
3
 
4
4
  const slug = 'beer-carbonation-calculator';
5
5
  const title = 'Beer Carbonation & Priming Calculator';
6
- const description = 'Calculate the exact amount of sugar for bottling your homebrew beer based on volume, temperature and style.';
6
+ const description = 'Calculate the exact grams of Dextrose, Table Sugar or DME (Dry Malt Extract) for bottling your homebrew. Enter your volume, fermentation temperature and style for a perfect priming.';
7
7
 
8
8
  const ui: CarbonationUI = {
9
9
  parametersTitle: 'Parameters',
@@ -34,7 +34,7 @@ const bibliographyTitle = 'Bibliography & Sources';
34
34
  const faq: CarbonationLocaleContent['faq'] = [
35
35
  {
36
36
  question: "Why does temperature matter for carbonation?",
37
- answer: "The residual CO2 in your beer depends on the highest temperature reached after fermentation. Cold liquid holds more dissolved gas than warm liquid.",
37
+ answer: "The residual CO2 in your beer depends on the highest temperature reached after fermentation: cold liquid holds more dissolved gas than warm liquid. If you enter a temperature lower than the actual one, the calculator assumes more residual CO2 than is really there and gives you less sugar than needed. Enter it too high and the opposite happens — you add more sugar than necessary and push your batch into bottle bomb territory, where excess pressure causes bottles to rupture or caps to blow off violently.",
38
38
  },
39
39
  {
40
40
  question: "What sugar is best for priming?",
@@ -44,6 +44,10 @@ const faq: CarbonationLocaleContent['faq'] = [
44
44
  question: "What happens if I add too much priming sugar?",
45
45
  answer: "Over-priming generates excess CO2 pressure inside the bottle. Standard glass bottles fail at approximately 3.5-4.0 volumes of CO2. Beyond this point, the bottle can rupture or the cap can blow off violently. This is why precision matters — even 5 extra grams per liter can push a batch into the danger zone.",
46
46
  },
47
+ {
48
+ question: "How long does beer take to carbonate after bottling?",
49
+ answer: "Between 2 and 3 weeks at room temperature (18-22°C) is the typical range for yeast to fully ferment the added sugar and for CO2 to integrate into the liquid. Opening a bottle before the process is complete always gives a misleading result: the beer will seem under-carbonated even though carbonation is still developing. With DME the process can be slightly slower due to the complexity of its fermentable sugars.",
50
+ },
47
51
  ];
48
52
 
49
53
  const howTo: CarbonationLocaleContent['howTo'] = [
@@ -64,11 +68,11 @@ const howTo: CarbonationLocaleContent['howTo'] = [
64
68
  const bibliography: CarbonationLocaleContent['bibliography'] = [
65
69
  {
66
70
  name: "How to Brew: Carbonation Tables - John Palmer",
67
- url: "http://howtobrew.com/book/section-1/priming-and-bottling/priming-solutions",
71
+ url: "https://howtobrew.com/section-1/chapter-11/",
68
72
  },
69
73
  {
70
74
  name: "BJCP Style Guidelines: Carbonation Levels",
71
- url: "https://www.bjcp.org/stylecenter.php",
75
+ url: "https://www.bjcp.org/style/2021/beer/",
72
76
  },
73
77
  ];
74
78
 
@@ -1,9 +1,9 @@
1
1
  import type { WithContext, SoftwareApplication } from 'schema-dts';
2
2
  import type { CarbonationUI, CarbonationLocaleContent } from '../index';
3
3
 
4
- const slug = 'calculadora-carbonatacion-cerveza';
4
+ const slug = 'calculadora-carbonatacion';
5
5
  const title = 'Calculadora de Carbonatación y Priming';
6
- const description = 'Calcula la cantidad exacta de azúcar para embotellar tu cerveza casera según el volumen, la temperatura y el estilo.';
6
+ const description = 'Calcula los gramos exactos de Dextrosa, Azúcar de Mesa o DME (Extracto de Malta Seco) para embotellar tu cerveza casera. Introduce el volumen, la temperatura de fermentación y el estilo para un priming perfecto.';
7
7
 
8
8
  const ui: CarbonationUI = {
9
9
  parametersTitle: 'Parámetros',
@@ -34,7 +34,7 @@ const bibliographyTitle = 'Bibliografía y Fuentes';
34
34
  const faq: CarbonationLocaleContent['faq'] = [
35
35
  {
36
36
  question: "¿Por qué influye la temperatura en el cálculo?",
37
- answer: "El CO2 residual que ya tiene tu cerveza depende de la temperatura máxima alcanzada tras la fermentación. El líquido frío retiene más gas disuelto que el caliente.",
37
+ answer: "El CO2 residual que ya tiene tu cerveza depende de la temperatura máxima alcanzada tras la fermentación: el líquido frío retiene más gas disuelto que el caliente. Si introduces una temperatura más baja de la real, la calculadora asumirá más residual del que hay y te dará menos azúcar del necesario. Si la introduces más alta, ocurre lo contrario: añadirás más azúcar de la cuenta y entrarás en la zona de peligro de las bombas de botella — botellas que explotan por exceso de presión.",
38
38
  },
39
39
  {
40
40
  question: "¿Qué azúcar es mejor para el priming?",
@@ -44,6 +44,10 @@ const faq: CarbonationLocaleContent['faq'] = [
44
44
  question: "¿Qué pasa si añado demasiado azúcar de priming?",
45
45
  answer: "Un exceso de azúcar genera una presión de CO2 excesiva dentro de la botella. Las botellas de vidrio estándar fallan a partir de 3.5-4.0 volúmenes de CO2. Por encima de este punto, la botella puede romperse violentamente o el tapón puede saltar disparado. Por eso la precisión es crítica — incluso 5 gramos extra por litro pueden llevar un lote a la zona de peligro.",
46
46
  },
47
+ {
48
+ question: "¿Cuánto tiempo tarda la cerveza en carbonatarse tras el embotellado?",
49
+ answer: "Entre 2 y 3 semanas a temperatura ambiente (18-22°C) es el rango habitual para que la levadura fermente completamente el azúcar añadido y el CO2 se integre en el líquido. Abrir una botella antes de que el proceso termine da siempre una lectura engañosa: la cerveza parecerá poco carbonatada aunque el proceso siga en marcha. Con el DME el proceso puede ser ligeramente más lento por la complejidad de sus azúcares fermentables.",
50
+ },
47
51
  ];
48
52
 
49
53
  const howTo: CarbonationLocaleContent['howTo'] = [
@@ -64,11 +68,11 @@ const howTo: CarbonationLocaleContent['howTo'] = [
64
68
  const bibliography: CarbonationLocaleContent['bibliography'] = [
65
69
  {
66
70
  name: "How to Brew: Carbonation Tables - John Palmer",
67
- url: "http://howtobrew.com/book/section-1/priming-and-bottling/priming-solutions",
71
+ url: "https://howtobrew.com/section-1/chapter-11/",
68
72
  },
69
73
  {
70
74
  name: "BJCP Style Guidelines: Carbonation Levels",
71
- url: "https://www.bjcp.org/stylecenter.php",
75
+ url: "https://www.bjcp.org/style/2021/beer/",
72
76
  },
73
77
  ];
74
78
 
@@ -3,7 +3,7 @@ import type { CarbonationUI, CarbonationLocaleContent } from '../index';
3
3
 
4
4
  const slug = 'calculateur-carbonatation-biere';
5
5
  const title = 'Calculateur de Carbonatation et Priming';
6
- const description = 'Calculez la quantité exacte de sucre pour embouteiller votre bière artisanale selon le volume, la température et le style.';
6
+ const description = 'Calculez les grammes exacts de Dextrose, Sucre de Table ou DME (Extrait de Malt Sec) pour embouteiller votre bière artisanale. Entrez le volume, la température de fermentation et le style pour un priming parfait.';
7
7
 
8
8
  const ui: CarbonationUI = {
9
9
  parametersTitle: 'Paramètres',
@@ -34,7 +34,7 @@ const bibliographyTitle = 'Bibliographie & Sources';
34
34
  const faq: CarbonationLocaleContent['faq'] = [
35
35
  {
36
36
  question: "Pourquoi la température influence-t-elle le calcul ?",
37
- answer: "Le CO2 résiduel déjà présent dans votre bière dépend de la température maximale atteinte après la fermentation. Un liquide froid retient plus de gaz dissous qu'un liquide chaud.",
37
+ answer: "Le CO2 résiduel dans votre bière dépend de la température maximale atteinte après la fermentation : un liquide froid retient plus de gaz dissous qu'un liquide chaud. Si vous entrez une température inférieure à la réalité, le calculateur suppose plus de CO2 résiduel qu'il n'en existe et vous donne moins de sucre que nécessaire. À l'inverse, une température trop haute vous pousse à ajouter trop de sucre et fait basculer votre lot dans la zone de danger des bombes de bouteilles — des bouteilles qui explosent sous l'excès de pression.",
38
38
  },
39
39
  {
40
40
  question: "Quel sucre est le meilleur pour le priming ?",
@@ -44,6 +44,10 @@ const faq: CarbonationLocaleContent['faq'] = [
44
44
  question: "Que se passe-t-il si j'ajoute trop de sucre de priming ?",
45
45
  answer: "Un excès de sucre génère une pression de CO2 excessive à l'intérieur de la bouteille. Les bouteilles en verre standard cèdent à environ 3,5-4,0 volumes de CO2. Au-delà, la bouteille peut se rompre violemment ou le bouchon peut sauter. C'est pourquoi la précision est essentielle — même 5 grammes de plus par litre peuvent faire basculer un lot dans la zone de danger.",
46
46
  },
47
+ {
48
+ question: "Combien de temps faut-il pour que la bière se carbonate après la mise en bouteille ?",
49
+ answer: "Entre 2 et 3 semaines à température ambiante (18-22°C) est la plage habituelle pour que la levure fermente complètement le sucre ajouté et que le CO2 s'intègre au liquide. Ouvrir une bouteille avant la fin du processus donne toujours un résultat trompeur : la bière semblera peu carbonatée alors que la carbonatation est toujours en cours. Avec le DME, le processus peut être légèrement plus lent en raison de la complexité de ses sucres fermentescibles.",
50
+ },
47
51
  ];
48
52
 
49
53
  const howTo: CarbonationLocaleContent['howTo'] = [
@@ -64,11 +68,11 @@ const howTo: CarbonationLocaleContent['howTo'] = [
64
68
  const bibliography: CarbonationLocaleContent['bibliography'] = [
65
69
  {
66
70
  name: "How to Brew: Carbonation Tables - John Palmer",
67
- url: "http://howtobrew.com/book/section-1/priming-and-bottling/priming-solutions",
71
+ url: "https://howtobrew.com/section-1/chapter-11/",
68
72
  },
69
73
  {
70
74
  name: "BJCP Style Guidelines: Carbonation Levels",
71
- url: "https://www.bjcp.org/stylecenter.php",
75
+ url: "https://www.bjcp.org/style/2021/beer/",
72
76
  },
73
77
  ];
74
78
 
@@ -60,6 +60,10 @@ const faq: CocktailBalancerLocaleContent['faq'] = [
60
60
  question: "Why don't my home cocktails taste like those in a bar?",
61
61
  answer: "It's usually due to the lack of balance between sugar and the pH of the citrus. Lemons vary in acidity by season. Our calculator helps you adjust the exact amount of syrup based on the volume of juice used.",
62
62
  },
63
+ {
64
+ question: "What are Brix degrees and why do they matter in cocktails?",
65
+ answer: "Brix is a scale that measures the amount of dissolved sugar in a liquid. A simple syrup (1:1) sits around 50 °Brix; a Rich Syrup (2:1) exceeds 66 °Brix. The higher the Brix, the more body and sweetness it contributes per unit of volume. Knowing this lets you swap syrups in a recipe without breaking the balance.",
66
+ },
63
67
  ];
64
68
 
65
69
  const howTo: CocktailBalancerLocaleContent['howTo'] = [
@@ -75,16 +79,20 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
75
79
  name: "Adjust the sweet component",
76
80
  text: "Enter the type of syrup (simple, 2:1, agave) and watch the balance indicator move in real-time.",
77
81
  },
82
+ {
83
+ name: "Perfect serving",
84
+ text: "Review the tool's final verdict: the Sour ratio, the estimated post-dilution ABV, and the correction suggestions. Serve with fresh ice and fine-tune the citrus or syrup to taste.",
85
+ },
78
86
  ];
79
87
 
80
88
  const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
81
89
  {
82
90
  name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
83
- url: "http://www.cookingissues.com/index.html%3Fp=4587.html",
91
+ url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
84
92
  },
85
93
  {
86
- name: "The Bar Book: Elements of Cocktail Technique - Jeffrey Morgenthaler",
87
- url: "https://jeffreymorgenthaler.com/the-bar-book/",
94
+ name: "Cocktails: The Science of Shaking",
95
+ url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
88
96
  },
89
97
  {
90
98
  name: "Cocktail Balance - Difford's Guide",
@@ -60,6 +60,10 @@ const faq: CocktailBalancerLocaleContent['faq'] = [
60
60
  question: "¿Por qué mis cócteles caseros no saben igual que los de un bar?",
61
61
  answer: "Suele ser por la falta de equilibrio entre el azúcar y el pH del cítrico. Los limones varían en acidez según la temporada. Nuestra calculadora te ayuda a ajustar la cantidad de sirope exacta según el volumen de zumo usado.",
62
62
  },
63
+ {
64
+ question: "¿Qué son los grados Brix y por qué importan en coctelería?",
65
+ answer: "El Brix es una escala que mide la cantidad de azúcar disuelta en un líquido. Un sirope simple (1:1) ronda los 50 °Brix; un Rich Syrup (2:1) supera los 66 °Brix. Cuanto mayor el Brix, más cuerpo y dulzor aportará al cóctel con menos volumen. Conocerlo te permite sustituir siropes entre sí sin romper el equilibrio de la receta.",
66
+ },
63
67
  ];
64
68
 
65
69
  const howTo: CocktailBalancerLocaleContent['howTo'] = [
@@ -75,16 +79,20 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
75
79
  name: "Ajustar el componente dulce",
76
80
  text: "Introduce el tipo de sirope (simple, 2:1, agave) y observa cómo se desplaza el indicador de equilibrio en tiempo real.",
77
81
  },
82
+ {
83
+ name: "Perfecto servicio",
84
+ text: "Revisa el veredicto final de la herramienta: el ratio Sour, el ABV estimado tras la dilución y las sugerencias de corrección. Sirve con hielo fresco y ajusta el cítrico o el sirope al gusto.",
85
+ },
78
86
  ];
79
87
 
80
88
  const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
81
89
  {
82
90
  name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
83
- url: "http://www.cookingissues.com/index.html%3Fp=4587.html",
91
+ url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
84
92
  },
85
93
  {
86
- name: "The Bar Book: Elements of Cocktail Technique - Jeffrey Morgenthaler",
87
- url: "https://jeffreymorgenthaler.com/the-bar-book/",
94
+ name: "Cocktails: The Science of Shaking",
95
+ url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
88
96
  },
89
97
  {
90
98
  name: "Cocktail Balance - Difford's Guide",
@@ -60,6 +60,10 @@ const faq: CocktailBalancerLocaleContent['faq'] = [
60
60
  question: "Pourquoi mes cocktails maison n'ont-ils pas le même goût qu'au bar ?",
61
61
  answer: "C'est généralement dû au manque d'équilibre entre le sucre et le pH de l'agrume. Les citrons varient en acidité selon la saison. Notre calculateur vous aide à ajuster la quantité exacte de sirop en fonction du volume de jus utilisé.",
62
62
  },
63
+ {
64
+ question: "Qu'est-ce que les degrés Brix et pourquoi sont-ils importants en cocktail ?",
65
+ answer: "Le Brix est une échelle qui mesure la quantité de sucre dissous dans un liquide. Un sirop simple (1:1) tourne autour de 50 °Brix ; un Rich Syrup (2:1) dépasse les 66 °Brix. Plus le Brix est élevé, plus il apporte de corps et de douceur par unité de volume. Le connaître permet de substituer des sirops dans une recette sans rompre l'équilibre.",
66
+ },
63
67
  ];
64
68
 
65
69
  const howTo: CocktailBalancerLocaleContent['howTo'] = [
@@ -75,16 +79,20 @@ const howTo: CocktailBalancerLocaleContent['howTo'] = [
75
79
  name: "Ajuster le composant sucré",
76
80
  text: "Entrez le type de sirop (simple, 2:1, agave) et observez l'indicateur d'équilibre bouger en temps réel.",
77
81
  },
82
+ {
83
+ name: "Service parfait",
84
+ text: "Consultez le verdict final de l'outil : le ratio Sour, l'ABV estimé après dilution et les suggestions de correction. Servez avec de la glace fraîche et ajustez l'agrume ou le sirop selon votre goût.",
85
+ },
78
86
  ];
79
87
 
80
88
  const bibliography: CocktailBalancerLocaleContent['bibliography'] = [
81
89
  {
82
90
  name: "Liquid Intelligence: The Art and Science of the Perfect Cocktail",
83
- url: "http://www.cookingissues.com/index.html%3Fp=4587.html",
91
+ url: "https://www.indigo.ca/en-ca/liquid-intelligence-the-art-and-science-of-the-perfect-cocktail/9780393089035.html",
84
92
  },
85
93
  {
86
- name: "The Bar Book: Elements of Cocktail Technique - Jeffrey Morgenthaler",
87
- url: "https://jeffreymorgenthaler.com/the-bar-book/",
94
+ name: "Cocktails: The Science of Shaking",
95
+ url: "https://cookingissues.com/2009/07/22/cocktails-the-science-of-shaking/",
88
96
  },
89
97
  {
90
98
  name: "Cocktail Balance - Difford's Guide",
@@ -2,8 +2,8 @@ import type { WithContext, SoftwareApplication } from 'schema-dts';
2
2
  import type { PartyKegUI, PartyKegLocaleContent } from '../index';
3
3
 
4
4
  const slug = 'party-stock-calculator';
5
- const title = 'Party Beer & Ice Calculator';
6
- const description = 'Calculate how much alcohol and how many bags of ice you need for your party based on guests, duration and temperature.';
5
+ const title = 'Party Beer Calculator: Amount Per Person for Weddings & Birthdays';
6
+ const description = 'Free tool to calculate how much beer and ice you need based on guests, duration and temperature. Perfect for weddings, birthdays and outdoor events.';
7
7
 
8
8
  const ui: PartyKegUI = {
9
9
  calcStockTitle: 'Stock Calculator',
@@ -36,12 +36,16 @@ const faq: PartyKegLocaleContent['faq'] = [
36
36
  },
37
37
  {
38
38
  question: "How much ice do I need for 100 beers?",
39
- answer: "You will need approximately 15-20 kilos of ice (7-10 bags). The general rule is 1kg of ice for every liter of drink if it's hot (>25°C).",
39
+ answer: "You will need approximately 15-20 kilos of ice (7-10 bags). The practical rule is 0.75kg of ice per liter of drink under normal conditions. In summer or outdoors above 25°C, raise that to 1kg per liter: ambient heat accelerates melting and you will run out much sooner than expected.",
40
40
  },
41
41
  {
42
42
  question: "What is the difference between a standard keg and a party keg?",
43
43
  answer: "A standard commercial keg holds 50 liters, which yields approximately 200 servings (250ml each). A party keg (mini-keg) typically holds 5 liters — about 20 servings. Knowing these sizes helps you translate the calculator's liter output into the number of containers to purchase.",
44
44
  },
45
+ {
46
+ question: "Why do I need so much ice if the beers are already cold?",
47
+ answer: "Because cooling and maintaining are two separate processes. Bringing a can from 25°C to 4°C consumes the latent heat of fusion of the ice: around 334 kJ/kg. Once cold, ice keeps working to offset ambient heat. On a summer day at 35°C, heat transfer into the cooler can melt 1kg of ice per liter of drink every 2-3 hours. That is why pre-chilling your drinks before the party cuts your total ice consumption in half.",
48
+ },
45
49
  ];
46
50
 
47
51
  const howTo: PartyKegLocaleContent['howTo'] = [
@@ -62,11 +66,11 @@ const howTo: PartyKegLocaleContent['howTo'] = [
62
66
  const bibliography: PartyKegLocaleContent['bibliography'] = [
63
67
  {
64
68
  name: "Event Planning: Alcohol & Bar Calculations - Spruce Eats",
65
- url: "https://www.thespruceeats.com/how-much-alcohol-for-a-party-1191060",
69
+ url: "https://www.thespruceeats.com/stock-your-bar-for-a-party-760394",
66
70
  },
67
71
  {
68
72
  name: "Thermodynamics of Ice Melting - Engineering Toolbox",
69
- url: "https://www.engineeringtoolbox.com/ice-thermal-properties-d_156.html",
73
+ url: "https://www.engineeringtoolbox.com/saturated-ice-steam-d_970.html",
70
74
  },
71
75
  ];
72
76
 
@@ -1,9 +1,9 @@
1
1
  import type { WithContext, SoftwareApplication } from 'schema-dts';
2
2
  import type { PartyKegUI, PartyKegLocaleContent } from '../index';
3
3
 
4
- const slug = 'calculadora-fiesta-barril';
5
- const title = 'Calculadora de Cerveza y Hielo para Eventos';
6
- const description = 'Calcula cuánto alcohol y cuántas bolsas de hielo necesitas para tu fiesta según los invitados, la duración y la temperatura.';
4
+ const slug = 'calculadora-barriles-fiesta';
5
+ const title = 'Calculadora de Cerveza para Fiestas: Cantidad por Persona, Boda o Cumpleaños';
6
+ const description = 'Herramienta gratuita para calcular cuánta cerveza y hielo necesitas según los invitados, la duración y la temperatura. Perfecta para bodas, cumpleaños y eventos al aire libre.';
7
7
 
8
8
  const ui: PartyKegUI = {
9
9
  calcStockTitle: 'Calculadora de Stock',
@@ -36,12 +36,16 @@ const faq: PartyKegLocaleContent['faq'] = [
36
36
  },
37
37
  {
38
38
  question: "¿Cuánto hielo necesito para 100 cervezas?",
39
- answer: "Necesitarás aproximadamente 15-20 kilos de hielo (7-10 bolsas). La regla general es 1kg de hielo por cada litro de bebida si hace calor (>25°C).",
39
+ answer: "Necesitarás aproximadamente 15-20 kilos de hielo (7-10 bolsas). La regla práctica es 0.75kg de hielo por cada litro de bebida en condiciones normales. En verano o en exteriores con más de 25°C, sube a 1kg por litro: el calor ambiental acelera la fusión y te quedas sin hielo mucho antes de lo esperado.",
40
40
  },
41
41
  {
42
42
  question: "¿Cuál es la diferencia entre un barril estándar y un barril de fiesta?",
43
43
  answer: "Un barril comercial estándar contiene 50 litros, lo que equivale a unas 200 raciones de 250ml. Un barril de fiesta (mini-barril) suele contener 5 litros — unas 20 raciones. Conocer estos volúmenes te ayuda a convertir la salida en litros de la calculadora al número de envases que debes comprar.",
44
44
  },
45
+ {
46
+ question: "¿Por qué necesito tanto hielo si las cervezas ya están frías?",
47
+ answer: "Porque enfriar y mantener son dos procesos distintos. Llevar una lata de 25°C a 4°C consume el calor latente de fusión del hielo: unos 334 kJ/kg. Una vez fría, el hielo sigue trabajando para compensar el calor del ambiente. En un día de verano a 35°C, la transferencia de calor al recipiente puede fundir 1kg de hielo por litro de bebida cada 2-3 horas. Por eso pre-enfriar las bebidas antes de la fiesta reduce el consumo de hielo a la mitad.",
48
+ },
45
49
  ];
46
50
 
47
51
  const howTo: PartyKegLocaleContent['howTo'] = [
@@ -62,11 +66,11 @@ const howTo: PartyKegLocaleContent['howTo'] = [
62
66
  const bibliography: PartyKegLocaleContent['bibliography'] = [
63
67
  {
64
68
  name: "Event Planning: Alcohol & Bar Calculations - Spruce Eats",
65
- url: "https://www.thespruceeats.com/how-much-alcohol-for-a-party-1191060",
69
+ url: "https://www.thespruceeats.com/stock-your-bar-for-a-party-760394",
66
70
  },
67
71
  {
68
72
  name: "Thermodynamics of Ice Melting - Engineering Toolbox",
69
- url: "https://www.engineeringtoolbox.com/ice-thermal-properties-d_156.html",
73
+ url: "https://www.engineeringtoolbox.com/saturated-ice-steam-d_970.html",
70
74
  },
71
75
  ];
72
76
 
@@ -2,8 +2,8 @@ import type { WithContext, SoftwareApplication } from 'schema-dts';
2
2
  import type { PartyKegUI, PartyKegLocaleContent } from '../index';
3
3
 
4
4
  const slug = 'calculateur-fete-fût';
5
- const title = 'Calculateur de Bière et Glace pour Événements';
6
- const description = 'Calculez la quantité d\'alcool et de sacs de glace dont vous avez besoin pour votre fête selon les invités, la durée et la température.';
5
+ const title = 'Calculateur de Bière pour Fêtes : Quantité par Personne, Mariage ou Anniversaire';
6
+ const description = 'Outil gratuit pour calculer la quantité de bière et de glace selon les invités, la durée et la température. Idéal pour les mariages, anniversaires et événements en plein air.';
7
7
 
8
8
  const ui: PartyKegUI = {
9
9
  calcStockTitle: 'Calculateur de Stock',
@@ -35,13 +35,17 @@ const faq: PartyKegLocaleContent['faq'] = [
35
35
  answer: "En moyenne, on compte 1 à 1,5 bière par heure par personne pour une fête standard. Pour un événement plus intense comme un Beer Pong, cela peut monter à 2 ou plus.",
36
36
  },
37
37
  {
38
- question: "Pourquoi ai-je besoin de tant de glace ?",
39
- answer: "La glace ne sert pas seulement à refroidir, mais à compenser la perte thermique. Dans un environnement chaud, jusqu'à 30% de la glace peut fondre avant même le début de l'événement.",
38
+ question: "Combien de glace faut-il pour 100 bières ?",
39
+ answer: "Il vous faudra environ 15 à 20 kilos de glace (7 à 10 sacs). La règle pratique est de 0,75 kg de glace par litre de boisson dans des conditions normales. En été ou en extérieur à plus de 25°C, montez à 1 kg par litre : la chaleur ambiante accélère la fonte et vous manquerez de glace bien plus tôt que prévu.",
40
40
  },
41
41
  {
42
42
  question: "Quelle est la différence entre un fût standard et un mini-fût ?",
43
43
  answer: "Un fût commercial standard contient 50 litres, soit environ 200 portions de 250ml. Un mini-fût de fête contient généralement 5 litres — environ 20 portions. Connaître ces volumes vous aide à convertir la sortie en litres du calculateur en nombre de contenants à acheter.",
44
44
  },
45
+ {
46
+ question: "Pourquoi ai-je besoin d'autant de glace si les bières sont déjà froides ?",
47
+ answer: "Parce que refroidir et maintenir sont deux processus distincts. Amener une canette de 25°C à 4°C consomme la chaleur latente de fusion de la glace : environ 334 kJ/kg. Une fois froide, la glace continue de travailler pour compenser la chaleur ambiante. Par une journée d'été à 35°C, les transferts thermiques peuvent faire fondre 1 kg de glace par litre de boisson toutes les 2 à 3 heures. C'est pourquoi pré-refroidir les boissons avant la fête réduit la consommation de glace de moitié.",
48
+ },
45
49
  ];
46
50
 
47
51
  const howTo: PartyKegLocaleContent['howTo'] = [
@@ -61,12 +65,12 @@ const howTo: PartyKegLocaleContent['howTo'] = [
61
65
 
62
66
  const bibliography: PartyKegLocaleContent['bibliography'] = [
63
67
  {
64
- name: "Event Planning: Beverage Calculation Guide",
65
- url: "https://www.thespruceeats.com/how-much-alcohol-for-a-party-4158434",
68
+ name: "Event Planning: Alcohol & Bar Calculations - Spruce Eats",
69
+ url: "https://www.thespruceeats.com/stock-your-bar-for-a-party-760394",
66
70
  },
67
71
  {
68
- name: "Ice Melt Rates and Cooling Efficiency",
69
- url: "https://www.engineeringtoolbox.com/ice-melting-water-d_1594.html",
72
+ name: "Thermodynamics of Ice Melting - Engineering Toolbox",
73
+ url: "https://www.engineeringtoolbox.com/saturated-ice-steam-d_970.html",
70
74
  },
71
75
  ];
72
76