@jjlmoya/utils-science 1.19.0 → 1.21.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 (164) hide show
  1. package/package.json +2 -1
  2. package/src/category/i18n/de.ts +1 -1
  3. package/src/category/i18n/fr.ts +6 -6
  4. package/src/category/i18n/ru.ts +1 -1
  5. package/src/category/index.ts +3 -1
  6. package/src/category/seo.astro +2 -2
  7. package/src/entries.ts +5 -1
  8. package/src/index.ts +2 -0
  9. package/src/pages/[locale]/[slug].astro +32 -15
  10. package/src/tests/locale_completeness.test.ts +5 -22
  11. package/src/tests/no_en_dash.test.ts +70 -0
  12. package/src/tests/seo_length.test.ts +5 -3
  13. package/src/tests/shared-test-helpers.ts +56 -0
  14. package/src/tests/title_quality.test.ts +1 -1
  15. package/src/tests/tool_exports.test.ts +34 -0
  16. package/src/tests/tool_validation.test.ts +2 -2
  17. package/src/tool/asteroid-impact/bibliography.astro +2 -2
  18. package/src/tool/asteroid-impact/bibliography.ts +24 -0
  19. package/src/tool/asteroid-impact/component.astro +16 -9
  20. package/src/tool/asteroid-impact/i18n/de.ts +4 -24
  21. package/src/tool/asteroid-impact/i18n/en.ts +4 -24
  22. package/src/tool/asteroid-impact/i18n/es.ts +4 -24
  23. package/src/tool/asteroid-impact/i18n/fr.ts +10 -30
  24. package/src/tool/asteroid-impact/i18n/id.ts +4 -24
  25. package/src/tool/asteroid-impact/i18n/it.ts +4 -24
  26. package/src/tool/asteroid-impact/i18n/ja.ts +4 -24
  27. package/src/tool/asteroid-impact/i18n/ko.ts +4 -24
  28. package/src/tool/asteroid-impact/i18n/nl.ts +4 -24
  29. package/src/tool/asteroid-impact/i18n/pl.ts +4 -24
  30. package/src/tool/asteroid-impact/i18n/pt.ts +4 -24
  31. package/src/tool/asteroid-impact/i18n/ru.ts +8 -28
  32. package/src/tool/asteroid-impact/i18n/sv.ts +4 -24
  33. package/src/tool/asteroid-impact/i18n/tr.ts +4 -24
  34. package/src/tool/asteroid-impact/i18n/zh.ts +4 -24
  35. package/src/tool/asteroid-impact/index.ts +1 -0
  36. package/src/tool/asteroid-impact/script.ts +13 -7
  37. package/src/tool/asteroid-impact/seo.astro +1 -1
  38. package/src/tool/cellular-renewal/bibliography.astro +2 -2
  39. package/src/tool/cellular-renewal/bibliography.ts +24 -0
  40. package/src/tool/cellular-renewal/i18n/de.ts +3 -24
  41. package/src/tool/cellular-renewal/i18n/en.ts +3 -24
  42. package/src/tool/cellular-renewal/i18n/es.ts +3 -24
  43. package/src/tool/cellular-renewal/i18n/fr.ts +16 -37
  44. package/src/tool/cellular-renewal/i18n/id.ts +3 -24
  45. package/src/tool/cellular-renewal/i18n/it.ts +3 -24
  46. package/src/tool/cellular-renewal/i18n/ja.ts +3 -24
  47. package/src/tool/cellular-renewal/i18n/ko.ts +3 -24
  48. package/src/tool/cellular-renewal/i18n/nl.ts +3 -24
  49. package/src/tool/cellular-renewal/i18n/pl.ts +3 -24
  50. package/src/tool/cellular-renewal/i18n/pt.ts +3 -24
  51. package/src/tool/cellular-renewal/i18n/ru.ts +20 -41
  52. package/src/tool/cellular-renewal/i18n/sv.ts +3 -24
  53. package/src/tool/cellular-renewal/i18n/tr.ts +3 -24
  54. package/src/tool/cellular-renewal/i18n/zh.ts +12 -33
  55. package/src/tool/cellular-renewal/index.ts +1 -0
  56. package/src/tool/cellular-renewal/seo.astro +2 -1
  57. package/src/tool/colony-counter/bibliography.astro +2 -2
  58. package/src/tool/colony-counter/bibliography.ts +12 -0
  59. package/src/tool/colony-counter/i18n/de.ts +3 -12
  60. package/src/tool/colony-counter/i18n/en.ts +3 -12
  61. package/src/tool/colony-counter/i18n/es.ts +3 -12
  62. package/src/tool/colony-counter/i18n/fr.ts +3 -12
  63. package/src/tool/colony-counter/i18n/id.ts +3 -12
  64. package/src/tool/colony-counter/i18n/it.ts +3 -12
  65. package/src/tool/colony-counter/i18n/ja.ts +3 -12
  66. package/src/tool/colony-counter/i18n/ko.ts +3 -12
  67. package/src/tool/colony-counter/i18n/nl.ts +3 -12
  68. package/src/tool/colony-counter/i18n/pl.ts +3 -12
  69. package/src/tool/colony-counter/i18n/pt.ts +3 -12
  70. package/src/tool/colony-counter/i18n/ru.ts +8 -17
  71. package/src/tool/colony-counter/i18n/sv.ts +3 -12
  72. package/src/tool/colony-counter/i18n/tr.ts +3 -12
  73. package/src/tool/colony-counter/i18n/zh.ts +5 -14
  74. package/src/tool/colony-counter/index.ts +1 -0
  75. package/src/tool/colony-counter/seo.astro +1 -1
  76. package/src/tool/cosmic-inflation/bibliography.astro +14 -0
  77. package/src/tool/cosmic-inflation/bibliography.ts +12 -0
  78. package/src/tool/cosmic-inflation/component.astro +270 -0
  79. package/src/tool/cosmic-inflation/cosmic-inflation-calculator.css +277 -0
  80. package/src/tool/cosmic-inflation/entry.ts +26 -0
  81. package/src/tool/cosmic-inflation/i18n/de.ts +188 -0
  82. package/src/tool/cosmic-inflation/i18n/en.ts +188 -0
  83. package/src/tool/cosmic-inflation/i18n/es.ts +168 -0
  84. package/src/tool/cosmic-inflation/i18n/fr.ts +188 -0
  85. package/src/tool/cosmic-inflation/i18n/id.ts +188 -0
  86. package/src/tool/cosmic-inflation/i18n/it.ts +188 -0
  87. package/src/tool/cosmic-inflation/i18n/ja.ts +188 -0
  88. package/src/tool/cosmic-inflation/i18n/ko.ts +188 -0
  89. package/src/tool/cosmic-inflation/i18n/nl.ts +188 -0
  90. package/src/tool/cosmic-inflation/i18n/pl.ts +188 -0
  91. package/src/tool/cosmic-inflation/i18n/pt.ts +188 -0
  92. package/src/tool/cosmic-inflation/i18n/ru.ts +188 -0
  93. package/src/tool/cosmic-inflation/i18n/sv.ts +188 -0
  94. package/src/tool/cosmic-inflation/i18n/tr.ts +188 -0
  95. package/src/tool/cosmic-inflation/i18n/zh.ts +188 -0
  96. package/src/tool/cosmic-inflation/index.ts +11 -0
  97. package/src/tool/cosmic-inflation/logic/CosmicInflationEngine.ts +21 -0
  98. package/src/tool/cosmic-inflation/seo.astro +15 -0
  99. package/src/tool/microwave-detector/bibliography.astro +2 -2
  100. package/src/tool/microwave-detector/bibliography.ts +16 -0
  101. package/src/tool/microwave-detector/component.astro +9 -7
  102. package/src/tool/microwave-detector/i18n/de.ts +3 -16
  103. package/src/tool/microwave-detector/i18n/en.ts +3 -16
  104. package/src/tool/microwave-detector/i18n/es.ts +3 -16
  105. package/src/tool/microwave-detector/i18n/fr.ts +7 -20
  106. package/src/tool/microwave-detector/i18n/id.ts +3 -16
  107. package/src/tool/microwave-detector/i18n/it.ts +3 -16
  108. package/src/tool/microwave-detector/i18n/ja.ts +3 -16
  109. package/src/tool/microwave-detector/i18n/ko.ts +3 -16
  110. package/src/tool/microwave-detector/i18n/nl.ts +3 -16
  111. package/src/tool/microwave-detector/i18n/pl.ts +3 -16
  112. package/src/tool/microwave-detector/i18n/pt.ts +3 -16
  113. package/src/tool/microwave-detector/i18n/ru.ts +21 -34
  114. package/src/tool/microwave-detector/i18n/sv.ts +3 -16
  115. package/src/tool/microwave-detector/i18n/tr.ts +3 -16
  116. package/src/tool/microwave-detector/i18n/zh.ts +13 -26
  117. package/src/tool/microwave-detector/index.ts +1 -0
  118. package/src/tool/microwave-detector/logic/MicrowaveEngine.ts +5 -1
  119. package/src/tool/microwave-detector/microwave-leak-detector.css +22 -25
  120. package/src/tool/microwave-detector/seo.astro +2 -1
  121. package/src/tool/simulation-probability/bibliography.astro +2 -2
  122. package/src/tool/simulation-probability/bibliography.ts +24 -0
  123. package/src/tool/simulation-probability/i18n/de.ts +3 -24
  124. package/src/tool/simulation-probability/i18n/en.ts +3 -24
  125. package/src/tool/simulation-probability/i18n/es.ts +3 -24
  126. package/src/tool/simulation-probability/i18n/fr.ts +8 -29
  127. package/src/tool/simulation-probability/i18n/id.ts +3 -24
  128. package/src/tool/simulation-probability/i18n/it.ts +3 -24
  129. package/src/tool/simulation-probability/i18n/ja.ts +3 -24
  130. package/src/tool/simulation-probability/i18n/ko.ts +3 -24
  131. package/src/tool/simulation-probability/i18n/nl.ts +3 -24
  132. package/src/tool/simulation-probability/i18n/pl.ts +3 -24
  133. package/src/tool/simulation-probability/i18n/pt.ts +3 -24
  134. package/src/tool/simulation-probability/i18n/ru.ts +10 -31
  135. package/src/tool/simulation-probability/i18n/sv.ts +3 -24
  136. package/src/tool/simulation-probability/i18n/tr.ts +3 -24
  137. package/src/tool/simulation-probability/i18n/zh.ts +7 -28
  138. package/src/tool/simulation-probability/index.ts +1 -0
  139. package/src/tool/simulation-probability/seo.astro +2 -1
  140. package/src/tool/temperature-timeline/bibliography.astro +14 -0
  141. package/src/tool/temperature-timeline/bibliography.ts +12 -0
  142. package/src/tool/temperature-timeline/component.astro +289 -0
  143. package/src/tool/temperature-timeline/entry.ts +26 -0
  144. package/src/tool/temperature-timeline/i18n/de.ts +213 -0
  145. package/src/tool/temperature-timeline/i18n/en.ts +213 -0
  146. package/src/tool/temperature-timeline/i18n/es.ts +178 -0
  147. package/src/tool/temperature-timeline/i18n/fr.ts +213 -0
  148. package/src/tool/temperature-timeline/i18n/id.ts +213 -0
  149. package/src/tool/temperature-timeline/i18n/it.ts +213 -0
  150. package/src/tool/temperature-timeline/i18n/ja.ts +213 -0
  151. package/src/tool/temperature-timeline/i18n/ko.ts +213 -0
  152. package/src/tool/temperature-timeline/i18n/nl.ts +213 -0
  153. package/src/tool/temperature-timeline/i18n/pl.ts +213 -0
  154. package/src/tool/temperature-timeline/i18n/pt.ts +213 -0
  155. package/src/tool/temperature-timeline/i18n/ru.ts +213 -0
  156. package/src/tool/temperature-timeline/i18n/sv.ts +213 -0
  157. package/src/tool/temperature-timeline/i18n/tr.ts +213 -0
  158. package/src/tool/temperature-timeline/i18n/zh.ts +213 -0
  159. package/src/tool/temperature-timeline/index.ts +11 -0
  160. package/src/tool/temperature-timeline/logic/TemperatureTimelineEngine.ts +58 -0
  161. package/src/tool/temperature-timeline/planet-temperature-timeline.css +158 -0
  162. package/src/tool/temperature-timeline/seo.astro +15 -0
  163. package/src/tools.ts +4 -0
  164. package/src/types.ts +1 -3
@@ -0,0 +1,188 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'kosmische-inflation-rechner';
5
+ const description = 'Berechnen Sie die exponentielle Ausdehnung des fruehen Universums waehrend der kosmischen Inflationsphase.';
6
+ const title = 'Kosmischer Inflationsrechner: Ausdehnung des fruehen Universums';
7
+
8
+ const howTo = [
9
+ {
10
+ name: 'Werte auswaehlen',
11
+ text: 'Ziehen Sie die Schieberegler, um Ergebnisse anzuzeigen.',
12
+ },
13
+ {
14
+ name: 'Skalenfaktoren vergleichen',
15
+ text: 'Sehen Sie, um wie viele Groessenordnungen sich der Raum ausgedehnt hat.',
16
+ },
17
+ {
18
+ name: 'Dynamische Verzerrung analysieren',
19
+ text: 'Die Leinwand zeigt die Expansion des Raumes.',
20
+ },
21
+ ];
22
+
23
+ const faq = [
24
+ {
25
+ "question": "Was ist die kosmische Inflation und warum fand sie statt?",
26
+ "answer": "Die kosmische Inflation ist eine Theorie, die eine ultraschnelle, exponentielle Expansion des Raums in den ersten Sekundenbruchteilen des Universums postuliert, konkret etwa 10^-36 Sekunden nach dem Urknall. Sie trat auf, weil sich ein theoretisches skalares Feld, das Inflaton genannt wird, in einem Zustand hoher Energiedichte eines falschen Vakuums befand, was einen negativen Druck und eine abstoßende Gravitationskraft erzeugte, die das Gefüge der Raumzeit dehnte."
27
+ },
28
+ {
29
+ "question": "Was bedeutet die Anzahl der E-Folds?",
30
+ "answer": "Die Anzahl der E-Folds misst die Dauer der exponentiellen Expansionsphase. Ein E-Fold stellt die Zeit dar, in der sich die Größe des Universums mit der Eulerschen Zahl (ca. 2,718) multipliziert. Wenn das Universum N E-Folds durchläuft, erhöht sich sein Skalenfaktor um einen Faktor von e^N. Standardmäßige kosmologische Modelle erfordern mindestens 50 bis 60 E-Folds, um die Flachheits- und Horizontprobleme zu lösen."
31
+ },
32
+ {
33
+ "question": "Wie löst die Inflation das Horizontproblem?",
34
+ "answer": "Das Horizontproblem fragt, warum extrem weit entfernte Regionen des Universums nahezu identische Temperaturen der kosmischen Mikrowellen-Hintergrundstrahlung aufweisen, obwohl die Lichtgeschwindigkeit es ihnen nicht erlaubt hätte, miteinander zu interagieren, um ein Gleichgewicht zu erreichen. Die Inflation löst dies, indem sie zeigt, dass vor der exponentiellen Expansion das gesamte beobachtbare Universum eine winzige, thermisch homogene Region war, die kausal verbunden war und augenblicklich über den visuellen Horizont hinaus gedehnt wurde."
35
+ },
36
+ {
37
+ "question": "Was ist das Flachheitsproblem und wie wird es gelöst?",
38
+ "answer": "Die Energiedichte des heutigen Universums liegt extrem nahe an der kritischen Dichte, was bedeutet, dass der Raum mit einer minimalen Fehlermarge flach ist. Ohne Inflation wäre jede anfängliche Abweichung von der Flachheit im Laufe der Zeit exponentiell gewachsen, was eine unmögliche Feinabstimmung beim Urknall erfordert hätte. Die Inflation dehnt die räumliche Krümmung so heftig, dass jede anfängliche Krümmung verdünnt wird, ähnlich wie die Oberfläche einer riesigen Kugel lokal perfekt flach erscheint."
39
+ },
40
+ {
41
+ "question": "Was ist der Reheating-Prozess?",
42
+ "answer": "Das Reheating (Wiederaufheizung) ist der thermische Übergang, der das Ende der Inflation markiert. Während der Inflation kühlt das Universum aufgrund der exponentiellen Expansion des Volumens auf Temperaturen nahe dem absoluten Nullpunkt ab. Wenn das Inflatonfeld auf das Minimum seines Potenzials abfällt, wird seine verbleibende Energie durch Quantenwechselwirkungen in Form von Teilchen des Standardmodells in den Raum abgegeben, wodurch der Kosmos mit einem heißen, dichten Plasma gefüllt wird, das die traditionelle Urknallphase einleitet."
43
+ }
44
+ ];
45
+
46
+ export const content: ToolLocaleContent = {
47
+ slug,
48
+ title,
49
+ description,
50
+ ui: {
51
+ title: 'Kosmischer Inflationsrechner',
52
+ efoldsLabel: 'Anzahl der E-Folds (N)',
53
+ energyLabel: 'Anfaengliche Energieskala (GeV)',
54
+ scaleFactorResult: 'Skalenfaktor-Wachstum',
55
+ reheatingTempResult: 'Geschaetzte Reheating-Temperatur',
56
+ chartTitle: 'Verzerrung des Raum-Zeit-Gewebes',
57
+ presetGuth: 'Standard (Guth)',
58
+ presetChaotic: 'Chaotisch',
59
+ presetExtreme: 'Extreme Grenzen',
60
+ efoldsTooltip: 'Typische Modelle sagen zwischen 50 und 60 E-Folds voraus.',
61
+ energyTooltip: 'Die GUT-Skala liegt bei etwa 10^16 GeV.',
62
+ scaleFactorTooltip: 'Stellt den gesamten Expansionsfaktor dar.',
63
+ reheatingTooltip: 'Die Temperatur nach dem Ende der Inflation.',
64
+ analogyInsuff: 'Moderate Inflation. Diese Expansion reicht nicht aus.',
65
+ analogyProton: 'Das Universum dehnte sich in Bruchteilen einer Sekunde von der Groesse eines Protons auf die Groesse einer Galaxie aus.',
66
+ analogyObservable: 'Das Universum dehnte sich in 10^-32 Sekunden von einer subatomaren Skala auf eine Groesse aus, die groesser als das beobachtbare Universum ist.',
67
+ },
68
+ seo: [
69
+ {
70
+ "type": "title",
71
+ "text": "KOSMOLOGIE: Theorie der kosmischen Inflation und Raum-Zeit-Expansion",
72
+ "level": 2
73
+ },
74
+ {
75
+ "type": "paragraph",
76
+ "html": "Die kosmische Inflation ist der grundlegende Pfeiler, der Teilchenphysik und beobachtende Astrophysik verbindet. Diese Anfang der 1980er Jahre von Physikern wie Alan Guth und Andrei Linde vorgeschlagene Theorie besagt, dass das frühe Universum eine Phase exponentieller Expansion durchlief, die von der Energiedichte eines als Inflaton bekannten skalaren Feldes angetrieben wurde. Diese Expansion vergrößerte das Volumen des Universums in einem winzigen Bruchteil einer Sekunde um einen Faktor von mindestens 10^26, wodurch tiefe Paradoxien des klassischen Urknallmodells gelöst wurden und der theoretische Rahmen für die Entstehung kosmischer Strukturen geschaffen wurde."
77
+ },
78
+ {
79
+ "type": "title",
80
+ "text": "Vergleich von Inflationsmodellen und -parametern",
81
+ "level": 3
82
+ },
83
+ {
84
+ "type": "paragraph",
85
+ "html": "Verschiedene Potenziale für das Inflatonfeld erzeugen unterschiedliche Expansionsraten und Wiederaufheizungstemperaturen. Im Folgenden sind die Merkmale der wichtigsten in diesem Rechner simulierten Modelle aufgeführt:"
86
+ },
87
+ {
88
+ "type": "table",
89
+ "headers": [
90
+ "Inflationsmodell",
91
+ "E-Folds Bereich (N)",
92
+ "Energieskala (GeV)",
93
+ "Physikalisches und dynamisches Ergebnis"
94
+ ],
95
+ "rows": [
96
+ [
97
+ "<strong>Standard Guth</strong>",
98
+ "50 - 60",
99
+ "10^16",
100
+ "Löst Flachheit und Horizont; Inflation endet durch Blasenbildung in einem langsamen Phasenübergang."
101
+ ],
102
+ [
103
+ "<strong>Chaotische Inflation (Linde)</strong>",
104
+ "60 oder mehr",
105
+ "10^16",
106
+ "Das Inflaton rollt sanft ein einfaches parabolisches Potenzial hinab; vermeidet abrupte Phasenübergangsprobleme."
107
+ ],
108
+ [
109
+ "<strong>Extreme Grenzen</strong>",
110
+ "90 oder mehr",
111
+ "10^19 (Planck)",
112
+ "Energien nahe der Quantengravitationsgrenze; massive Dehnung der primordialen Raumzeit."
113
+ ]
114
+ ]
115
+ },
116
+ {
117
+ "type": "title",
118
+ "text": "Lösung klassischer Urknallprobleme",
119
+ "level": 3
120
+ },
121
+ {
122
+ "type": "paragraph",
123
+ "html": "Vor der Entwicklung der Inflation litt die klassische Urknallkosmologie unter schwerwiegenden theoretischen Inkonsistenzen. Das Horizontproblem, das sich aus der Homogenität des kosmischen Mikrowellenhintergrunds ergibt, und das Flachheitsproblem, das mit der kritischen Dichte des Raums zusammenhängt, deuteten auf die Notwendigkeit extrem unwahrscheinlicher Anfangsbedingungen hin. Die Inflation löst beide Schwierigkeiten auf natürliche Weise, indem sie eine thermisch homogene Mikroregion dehnt und die lokale räumliche Geometrie dynamisch flach macht. Darüber hinaus verdünnt sie die Konzentration magnetischer Monopole, die sich im frühen Universum reichlich hätten bilden müssen."
124
+ },
125
+ {
126
+ "type": "title",
127
+ "text": "Astronomische Beobachtungsdaten des Inflationsmodells",
128
+ "level": 3
129
+ },
130
+ {
131
+ "type": "paragraph",
132
+ "html": "Die Theorie der kosmischen Inflation ist nicht nur ein elegantes mathematisches Konstrukt; sie verfügt über solide indirekte Beweise, die von Satelliten wie COBE, WMAP und Planck bestätigt wurden:"
133
+ },
134
+ {
135
+ "type": "list",
136
+ "items": [
137
+ "<strong>CMB-Homogenität:</strong> Die kosmische Mikrowellen-Hintergrundstrahlung zeigt eine gleichmäßige Temperatur mit Abweichungen von nur 1 zu 100.000 auf gegenüberliegenden Seiten des sichtbaren Himmels.",
138
+ "<strong>Flache Geometrie:</strong> Messungen der Krümmung des Universums bestätigen, dass es räumlich flach ist mit einer Fehlermarge von weniger als 1%, was mit einer massiven inflationsbedingten Dehnung übereinstimmt.",
139
+ "<strong>Fehlen von Monopolen:</strong> Erklärt logisch das vollständige Fehlen stabiler, hochmassiver magnetischer Monopole in unserem beobachtbaren Universum.",
140
+ "<strong>Fluktuationsspektrum:</strong> Die beobachteten Anisotropien im kosmischen Hintergrund zeigen einen Spektralindex leicht unter 1, genau wie von Slow-Roll-Inflatonmodellen vorhergesagt."
141
+ ]
142
+ },
143
+ {
144
+ "type": "title",
145
+ "text": "Quantenfluktuationen und die Keime der Galaxien",
146
+ "level": 3
147
+ },
148
+ {
149
+ "type": "paragraph",
150
+ "html": "Der außergewöhnlichste Aspekt der kosmischen Inflation ist ihre Fähigkeit, als kosmisches Mikroskop zu wirken. Mikroskopische Quantenfluktuationen des Inflatonfeldes wurden während der Phase der exponentiellen Expansion auf astronomische Skalen gedehnt. Am Ende der Inflation froren diese Fluktuationen als Dichteschwankungen (primordiale Störungen) ein. Diese Dichteunterschiede dienten als Gravitationskeime, die über Milliarden von Jahren Materie anzogen und die ersten Sterne, Galaxien, Galaxienhaufen und das kosmische Netz, das wir heute beobachten, hervorbrachten."
151
+ }
152
+ ],
153
+ faq,
154
+ bibliography,
155
+ howTo,
156
+ schemas: [
157
+ {
158
+ '@context': 'https://schema.org',
159
+ '@type': 'SoftwareApplication',
160
+ name: title,
161
+ description: description,
162
+ applicationCategory: 'ScientificApplication',
163
+ operatingSystem: 'Any',
164
+ },
165
+ {
166
+ '@context': 'https://schema.org',
167
+ '@type': 'FAQPage',
168
+ mainEntity: faq.map((item) => ({
169
+ '@type': 'Question',
170
+ name: item.question,
171
+ acceptedAnswer: {
172
+ '@type': 'Answer',
173
+ text: item.answer,
174
+ },
175
+ })),
176
+ },
177
+ {
178
+ '@context': 'https://schema.org',
179
+ '@type': 'HowTo',
180
+ name: title,
181
+ step: howTo.map((step) => ({
182
+ '@type': 'HowToStep',
183
+ name: step.name,
184
+ text: step.text,
185
+ })),
186
+ },
187
+ ],
188
+ };
@@ -0,0 +1,188 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'cosmic-inflation-calculator';
5
+ const description = 'Calculate the exponential expansion of the early universe during the cosmic inflationary epoch.';
6
+ const title = 'Cosmic Inflation Calculator: Early Universe Expansion';
7
+
8
+ const howTo = [
9
+ {
10
+ name: 'Choose a scenario or slide values',
11
+ text: 'Select one of the cosmological presets or manually drag the sliders to configure inflation parameters.',
12
+ },
13
+ {
14
+ name: 'Observe scale factor growth',
15
+ text: 'Check how many orders of magnitude space has expanded and read the physical analogy explaining it.',
16
+ },
17
+ {
18
+ name: 'Warp the space-time fabric',
19
+ text: 'Look at the real-time space-time grid canvas dynamically expanding or collapsing under extreme values.',
20
+ },
21
+ ];
22
+
23
+ const faq = [
24
+ {
25
+ "question": "What is cosmic inflation and why did it occur?",
26
+ "answer": "Cosmic inflation is a theory postulating an ultra-rapid, exponential expansion of space in the very early fractions of a second of the universe, specifically around 10^-36 seconds after the Big Bang. It occurred because a theoretical scalar field, called the inflaton, was in a state of high energy density of a false vacuum, which generated negative pressure and a repulsive gravitational force that stretched the fabric of space-time."
27
+ },
28
+ {
29
+ "question": "What does the number of e-folds mean?",
30
+ "answer": "The number of e-folds measures the duration of the exponential expansion phase. One e-fold represents the time in which the size of the universe is multiplied by Euler's number (approximately 2.718). If the universe undergoes N e-folds, its scale factor increases by a factor of e^N. Standard cosmological models require at least 50 to 60 e-folds to properly solve the flatness and horizon problems."
31
+ },
32
+ {
33
+ "question": "How does inflation solve the horizon problem?",
34
+ "answer": "The horizon problem asks why extremely distant regions of the universe have nearly identical cosmic microwave background radiation temperatures, even though the speed of light would not have allowed them to interact to reach equilibrium. Inflation resolves this by showing that, prior to exponential expansion, the entire observable universe was a tiny, thermally homogeneous region causally connected, which was instantly stretched beyond the visual horizon."
35
+ },
36
+ {
37
+ "question": "What is the flatness problem and how is it resolved?",
38
+ "answer": "The energy density of the universe today is extremely close to the critical density, meaning that space is flat with a minimal margin of error. Without inflation, any initial deviation from flatness would have grown exponentially over time, requiring impossible fine-tuning at the Big Bang. Inflation stretches the spatial curvature so violently that any initial curvature is diluted, similar to how the surface of a giant sphere appears flat locally."
39
+ },
40
+ {
41
+ "question": "What is the reheating process?",
42
+ "answer": "Reheating is the thermal transition that marks the end of inflation. During inflation, the universe cools to temperatures near absolute zero due to the exponential expansion of volume. When the inflaton field decays to the minimum of its potential, its remaining energy is dumped into space as Standard Model particles through quantum interactions, filling the cosmos with a hot, dense plasma that initiates the traditional Big Bang phase."
43
+ }
44
+ ];
45
+
46
+ export const content: ToolLocaleContent = {
47
+ slug,
48
+ title,
49
+ description,
50
+ ui: {
51
+ title: 'Cosmic Inflation Calculator',
52
+ efoldsLabel: 'Number of e-folds (N)',
53
+ energyLabel: 'Initial Energy Scale (GeV)',
54
+ scaleFactorResult: 'Scale Factor Growth',
55
+ reheatingTempResult: 'Estimated Reheating Temperature',
56
+ chartTitle: 'Space-Time Fabric Distortion',
57
+ presetGuth: 'Standard (Guth)',
58
+ presetChaotic: 'Chaotic',
59
+ presetExtreme: 'Extreme Limits',
60
+ efoldsTooltip: 'Typical models predict between 50 and 60 e-folds to resolve flatness and horizon problems.',
61
+ energyTooltip: 'GUT scale is around 10^16 GeV. Higher scales are close to the Planck limit.',
62
+ scaleFactorTooltip: 'Represents the total size expansion factor from the start to the end of inflation.',
63
+ reheatingTooltip: 'The temperature to which the universe was heated after inflation ended.',
64
+ analogyInsuff: 'Moderate inflation. This expansion is <span class="highlight">insufficient</span> to solve the horizon problem.',
65
+ analogyProton: 'The universe expanded from the size of a <span class="highlight">proton</span> to the size of a <span class="highlight">galaxy</span> in a fraction of a second.',
66
+ analogyObservable: 'The universe expanded from a <span class="highlight">subatomic scale</span> to larger than the <span class="highlight">observable universe</span> in 10^-32 seconds.',
67
+ },
68
+ seo: [
69
+ {
70
+ "type": "title",
71
+ "text": "COSMOLOGY: Cosmic Inflation Theory and Space-Time Expansion",
72
+ "level": 2
73
+ },
74
+ {
75
+ "type": "paragraph",
76
+ "html": "Cosmic inflation represents the fundamental pillar linking particle physics with observational astrophysics. Proposed in the early 1980s by physicists Alan Guth and Andrei Linde, this theory postulates that the early universe underwent a phase of exponential expansion driven by the energy density of a scalar field known as the inflaton. This expansion increased the volume of the universe by a factor of at least 10^26 in a tiny fraction of a second, resolving deep paradoxes of the classical Big Bang model and providing the theoretical framework for cosmic structure formation."
77
+ },
78
+ {
79
+ "type": "title",
80
+ "text": "Comparison of Inflation Models and Parameters",
81
+ "level": 3
82
+ },
83
+ {
84
+ "type": "paragraph",
85
+ "html": "Different potentials for the inflaton field produce distinct expansion rates and reheating temperatures. Below are the characteristics of the main models simulated in this calculator:"
86
+ },
87
+ {
88
+ "type": "table",
89
+ "headers": [
90
+ "Inflation Model",
91
+ "e-folds Range (N)",
92
+ "Energy Scale (GeV)",
93
+ "Physical and Dynamic Outcome"
94
+ ],
95
+ "rows": [
96
+ [
97
+ "<strong>Standard Guth</strong>",
98
+ "50 - 60",
99
+ "10^16",
100
+ "Solves flatness and horizon; inflation ends via bubble nucleation in a slow phase transition."
101
+ ],
102
+ [
103
+ "<strong>Chaotic Inflation (Linde)</strong>",
104
+ "60 or more",
105
+ "10^16",
106
+ "The inflaton rolls gently down a simple parabolic potential; avoids abrupt phase transition issues."
107
+ ],
108
+ [
109
+ "<strong>Extreme Limits</strong>",
110
+ "90 or more",
111
+ "10^19 (Planck)",
112
+ "Energies near the quantum gravity limit; massive stretching of the primordial space-time."
113
+ ]
114
+ ]
115
+ },
116
+ {
117
+ "type": "title",
118
+ "text": "Resolving Classical Big Bang Problems",
119
+ "level": 3
120
+ },
121
+ {
122
+ "type": "paragraph",
123
+ "html": "Before inflation was developed, classical Big Bang cosmology suffered from severe theoretical inconsistencies. The horizon problem, stemming from the homogeneity of the cosmic microwave background, and the flatness problem, associated with the critical density of space, suggested the need for extremely improbable initial conditions. Inflation naturally solves both difficulties by stretching a thermally homogeneous micro-region and dynamically flattening local spatial geometry. Additionally, it dilutes the concentration of magnetic monopoles that should have formed copiously in the early universe."
124
+ },
125
+ {
126
+ "type": "title",
127
+ "text": "Observational Astronomical Evidence of the Inflationary Model",
128
+ "level": 3
129
+ },
130
+ {
131
+ "type": "paragraph",
132
+ "html": "The theory of cosmic inflation is not just an elegant mathematical construct; it has solid indirect evidence confirmed by space satellites like COBE, WMAP, and Planck:"
133
+ },
134
+ {
135
+ "type": "list",
136
+ "items": [
137
+ "<strong>CMB Homogeneity:</strong> The cosmic microwave background radiation shows a uniform temperature with variations of only 1 part in 100,000 on opposite sides of the visible sky.",
138
+ "<strong>Flat Geometry:</strong> Measurements of the universe's curvature confirm it is spatially flat within less than 1% error, consistent with massive inflationary stretching.",
139
+ "<strong>Absence of Monopoles:</strong> Logically explains the complete absence of stable, high-mass magnetic monopoles in our observable universe.",
140
+ "<strong>Fluctuation Spectrum:</strong> Observed anisotropies in the cosmic background show a spectral index slightly below 1, exactly as predicted by slow-roll inflaton models."
141
+ ]
142
+ },
143
+ {
144
+ "type": "title",
145
+ "text": "Quantum Fluctuations and the Seeds of Galaxies",
146
+ "level": 3
147
+ },
148
+ {
149
+ "type": "paragraph",
150
+ "html": "The most extraordinary aspect of cosmic inflation is its ability to act as a cosmic microscope. Microscopic quantum fluctuations of the inflaton field were stretched to astronomical scales during the period of exponential expansion. At the end of inflation, these fluctuations froze as density variations (primordial perturbations). These density differences served as gravitational seeds that, over billions of years, pulled matter together to give rise to the first stars, galaxies, galaxy clusters, and the cosmic web we observe today."
151
+ }
152
+ ],
153
+ faq,
154
+ bibliography,
155
+ howTo,
156
+ schemas: [
157
+ {
158
+ '@context': 'https://schema.org',
159
+ '@type': 'SoftwareApplication',
160
+ name: title,
161
+ description: description,
162
+ applicationCategory: 'ScientificApplication',
163
+ operatingSystem: 'Any',
164
+ },
165
+ {
166
+ '@context': 'https://schema.org',
167
+ '@type': 'FAQPage',
168
+ mainEntity: faq.map((item) => ({
169
+ '@type': 'Question',
170
+ name: item.question,
171
+ acceptedAnswer: {
172
+ '@type': 'Answer',
173
+ text: item.answer,
174
+ },
175
+ })),
176
+ },
177
+ {
178
+ '@context': 'https://schema.org',
179
+ '@type': 'HowTo',
180
+ name: title,
181
+ step: howTo.map((step) => ({
182
+ '@type': 'HowToStep',
183
+ name: step.name,
184
+ text: step.text,
185
+ })),
186
+ },
187
+ ],
188
+ };
@@ -0,0 +1,168 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'calculadora-inflacion-cosmica';
5
+ const description = 'Calcula la expansion exponencial del universo primitivo durante la epoca de inflacion cosmica.';
6
+ const title = 'Calculadora de Inflacion Cosmica: Expansion del Universo Primitivo';
7
+
8
+ const howTo = [
9
+ {
10
+ name: 'Seleccionar valores',
11
+ text: 'Arrastra los deslizadores para ver los resultados.',
12
+ },
13
+ {
14
+ name: 'Comparar factores de escala',
15
+ text: 'Observa por cuantos ordenes de magnitud se ha expandido el espacio.',
16
+ },
17
+ {
18
+ name: 'Analizar distorsion dinamica',
19
+ text: 'El lienzo muestra la expansion del espacio.',
20
+ },
21
+ ];
22
+
23
+ const faq = [
24
+ {
25
+ question: 'Que es la inflacion cosmica y por que ocurrio?',
26
+ answer: 'La inflacion cosmica es una teoria que postula una expansion ultrarrapida y exponencial del espacio en las fracciones de segundo iniciales del universo, concretamente alrededor de 10^-36 segundos despues del Big Bang. Ocurrio debido a que un campo escalar teorico, denominado inflaton, se encontraba en un estado de alta densidad de energia de falso vacio, lo que genero una presion negativa y una fuerza de gravedad repulsiva que estiro el tejido del espacio-tiempo.',
27
+ },
28
+ {
29
+ question: 'Que significa el numero de e-folds (e-doblamientos)?',
30
+ answer: 'El numero de e-folds mide la duracion de la fase de expansion exponencial. Un e-fold representa el tiempo en el cual el tamano del universo se multiplica por el numero de Euler (aproximadamente 2.718). Si el universo experimenta N e-folds, su factor de escala se incrementa por un factor de e^N. Los modelos cosmologicos estandar exigen al menos 50 a 60 e-folds para solucionar adecuadamente los problemas de planitud y del horizonte.',
31
+ },
32
+ {
33
+ question: 'Como soluciona la inflacion el problema del horizonte?',
34
+ answer: 'El problema del horizonte plantea por que regiones del universo extremadamente distantes tienen temperaturas de radiacion de fondo de microondas casi identicas, a pesar de que la velocidad de la luz no habria permitido que interactuaran para equilibrarse. La inflacion resuelve esto demostrando que, antes de la expansion exponencial, todo el universo observable era una minuscula region en equilibrio termico causalmente conectada, la cual fue estirada instantaneamente mas alla del horizonte visual.',
35
+ },
36
+ {
37
+ question: 'Que es el problema de la planitud y como se resuelve?',
38
+ answer: 'La densidad de energia del universo actual esta extremadamente cerca de la densidad critica, lo que significa que el espacio es plano con un margen de error minimo. Sin inflacion, cualquier desviacion inicial de la planitud habria crecido exponencialmente con el tiempo, requiriendo un ajuste fino imposible en el Big Bang. La inflacion estira la curvatura espacial de forma tan violenta que cualquier curvatura inicial queda diluida, de la misma forma en que la superficie de una esfera gigante parece perfectamente plana a nivel local.',
39
+ },
40
+ {
41
+ question: 'Que es el proceso de recalentamiento o reheating?',
42
+ answer: 'El recalentamiento es la transicion termica que marca el final de la inflacion. Durante la inflacion, el universo se enfria a temperaturas cercanas al cero absoluto debido a la expansion exponencial del volumen. Cuando el campo del inflaton decae al minimo de su potencial, su energia remanente se vierte en el espacio en forma de particulas del Modelo Estandar a traves de interacciones cuánticas, llenando el cosmos con un plasma caliente y denso que inicia la fase tradicional del Big Bang.',
43
+ },
44
+ ];
45
+
46
+ export const content: ToolLocaleContent = {
47
+ slug,
48
+ title,
49
+ description,
50
+ ui: {
51
+ title: 'Calculadora de Inflacion Cosmica',
52
+ efoldsLabel: 'Numero de e-folds (N)',
53
+ energyLabel: 'Escala de Energia Inicial (GeV)',
54
+ scaleFactorResult: 'Crecimiento del Factor de Escala',
55
+ reheatingTempResult: 'Temperatura de Recalentamiento Estimada',
56
+ chartTitle: 'Distorsion del Tejido Espacio-Temporal',
57
+ presetGuth: 'Estandar (Guth)',
58
+ presetChaotic: 'Caotica',
59
+ presetExtreme: 'Limites Extremos',
60
+ efoldsTooltip: 'Los modelos tipicos predicen entre 50 y 60 e-folds.',
61
+ energyTooltip: 'La escala GUT esta alrededor de 10^16 GeV.',
62
+ scaleFactorTooltip: 'Representa el factor de expansion total.',
63
+ reheatingTooltip: 'La temperatura al final de la inflacion.',
64
+ analogyInsuff: 'Inflacion moderada. Esta expansion es insuficiente.',
65
+ analogyProton: 'El universo se expandio desde el tamano de un proton al de una galaxia en una fraccion de segundo.',
66
+ analogyObservable: 'El universo se expandio desde una escala subatomica a una mayor que el universo observable en 10^-32 segundos.',
67
+ },
68
+ seo: [
69
+ {
70
+ type: 'title',
71
+ text: 'COSMOLOGIA: La teoria de la inflacion cosmica y la expansion del espacio-tiempo',
72
+ level: 2,
73
+ },
74
+ {
75
+ type: 'paragraph',
76
+ html: 'La inflacion cosmica representa el pilar fundamental que une la fisica de particulas con la astrofisica observacional. Propuesta a principios de la decada de 1980 por fisicos como Alan Guth y Andrei Linde, esta teoria postula que el universo primitivo sufrio una fase de expansion exponencial impulsada por la densidad de energia de un campo escalar conocido como el inflaton. Esta expansion incremento el volumen del universo en un factor de al menos 10^26 en una fraccion diminuta de segundo, resolviendo paradojas profundas del modelo clasico del Big Bang y proporcionando el marco teorico para la formacion de la estructura cosmica.',
77
+ },
78
+ {
79
+ type: 'title',
80
+ text: 'Comparacion de modelos y parametros de inflacion',
81
+ level: 3,
82
+ },
83
+ {
84
+ type: 'paragraph',
85
+ html: 'Diferentes potenciales para el campo del inflaton producen distintos ritmos de expansion y temperaturas de recalentamiento. A continuacion se detallan las caracteristicas de los modelos principales simulados en esta calculadora:',
86
+ },
87
+ {
88
+ type: 'table',
89
+ headers: ['Modelo de Inflacion', 'Rango e-folds (N)', 'Escala de Energia (GeV)', 'Resultado Fisico y Dinamico'],
90
+ rows: [
91
+ ['<strong>Guth Estandar</strong>', '50 - 60', '10^16', 'Resuelve planitud y horizonte; fin de inflacion por nucleacion de burbujas en transicion de fase lenta.'],
92
+ ['<strong>Inflacion Caotica (Linde)</strong>', '60 o mas', '10^16', 'El inflaton desciende suavemente por un potencial parabolico simple; evita problemas de transicion de fase abrupta.'],
93
+ ['<strong>Limites Extremos</strong>', '90 o mas', '10^19 (Planck)', 'Energias cercanas al limite de la gravedad cuantica; estiramiento masivo del espacio-tiempo primordial.'],
94
+ ],
95
+ },
96
+ {
97
+ type: 'title',
98
+ text: 'Resolucion de los problemas del Big Bang clasico',
99
+ level: 3,
100
+ },
101
+ {
102
+ type: 'paragraph',
103
+ html: 'Antes del desarrollo de la inflacion, la cosmologia clasica del Big Bang sufria de graves inconsistencias teoricas. El problema del horizonte, derivado de la homogeneidad de la radiacion de fondo de microondas, y el problema de la planitud, asociado a la densidad critica del espacio, sugerian la necesidad de condiciones iniciales extremadamente improbables. La inflacion solventa de forma natural ambas dificultades al estirar una micro-region termicamente homogenea e aplanar de manera dinamica la geometria espacial local. Ademas, diluye la concentracion de monopolos magneticos que deberian haberse formado copiosamente en el universo primitivo.',
104
+ },
105
+ {
106
+ type: 'title',
107
+ text: 'Evidencia astronomica observacional del modelo inflacionario',
108
+ level: 3,
109
+ },
110
+ {
111
+ type: 'paragraph',
112
+ html: 'La teoria de la inflacion cosmica no es solo una elegante construccion matematica; cuenta con solidas pruebas indirectas confirmadas por satelites espaciales como COBE, WMAP y Planck:',
113
+ },
114
+ {
115
+ type: 'list',
116
+ items: [
117
+ '<strong>Homogeneidad del CMB:</strong> La radiacion de fondo de microondas muestra una temperatura uniforme con variaciones de solo 1 parte en 100,000 en extremos opuestos del cielo visible.',
118
+ '<strong>Geometria Plana:</strong> Las mediciones de la curvatura del universo confirman que es espacialmente plano con un margen de error inferior al 1%, consistente con un estiramiento inflacionario masivo.',
119
+ '<strong>Ausencia de Monopolos:</strong> Explica de forma logica la ausencia total de monopolos magneticos estables de gran masa en nuestro universo observable.',
120
+ '<strong>Espectro de Fluctuaciones:</strong> Las anisotropias observadas en el fondo cosmico muestran un indice espectral ligeramente inferior a 1, tal como predicen los modelos de rodadura lenta del inflaton.',
121
+ ],
122
+ },
123
+ {
124
+ type: 'title',
125
+ text: 'Fluctuaciones cuanticas y la semilla de las galaxias',
126
+ level: 3,
127
+ },
128
+ {
129
+ type: 'paragraph',
130
+ html: 'El aspecto mas extraordinario de la inflacion cosmica es su capacidad para actuar como un microscopio cosmico. Las fluctuaciones cuanticas microscopicas del campo del inflaton se estiraron a escalas astronomicas durante el periodo de expansion exponencial. Al finalizar la inflacion, estas fluctuaciones se congelaron en forma de variaciones de densidad de mattera (perturbaciones primordiales). Estas diferencias de densidad sirvieron como semillas gravitatorias que, a lo largo de miles de millones de anos, atrajeron materia para dar origen a las primeras estrellas, galaxias, cúmulos de galaxias y la gran red cosmica que observamos en la actualidad.',
131
+ },
132
+ ],
133
+ faq,
134
+ bibliography,
135
+ howTo,
136
+ schemas: [
137
+ {
138
+ '@context': 'https://schema.org',
139
+ '@type': 'SoftwareApplication',
140
+ name: title,
141
+ description: description,
142
+ applicationCategory: 'ScientificApplication',
143
+ operatingSystem: 'Any',
144
+ },
145
+ {
146
+ '@context': 'https://schema.org',
147
+ '@type': 'FAQPage',
148
+ mainEntity: faq.map((item) => ({
149
+ '@type': 'Question',
150
+ name: item.question,
151
+ acceptedAnswer: {
152
+ '@type': 'Answer',
153
+ text: item.answer,
154
+ },
155
+ })),
156
+ },
157
+ {
158
+ '@context': 'https://schema.org',
159
+ '@type': 'HowTo',
160
+ name: title,
161
+ step: howTo.map((step) => ({
162
+ '@type': 'HowToStep',
163
+ name: step.name,
164
+ text: step.text,
165
+ })),
166
+ },
167
+ ],
168
+ };