@jjlmoya/utils-science 1.20.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.
- package/package.json +2 -1
- package/src/category/i18n/de.ts +1 -1
- package/src/category/i18n/fr.ts +6 -6
- package/src/category/i18n/ru.ts +1 -1
- package/src/category/index.ts +3 -1
- package/src/category/seo.astro +2 -2
- package/src/entries.ts +5 -1
- package/src/index.ts +2 -0
- package/src/pages/[locale]/[slug].astro +5 -4
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/no_en_dash.test.ts +70 -0
- package/src/tests/seo_length.test.ts +5 -3
- package/src/tests/title_quality.test.ts +1 -1
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/asteroid-impact/bibliography.astro +2 -2
- package/src/tool/asteroid-impact/component.astro +16 -9
- package/src/tool/asteroid-impact/i18n/fr.ts +6 -6
- package/src/tool/asteroid-impact/i18n/ru.ts +4 -4
- package/src/tool/asteroid-impact/index.ts +1 -0
- package/src/tool/asteroid-impact/script.ts +13 -7
- package/src/tool/cellular-renewal/bibliography.astro +2 -2
- package/src/tool/cellular-renewal/i18n/fr.ts +13 -13
- package/src/tool/cellular-renewal/i18n/ru.ts +17 -17
- package/src/tool/cellular-renewal/i18n/zh.ts +9 -9
- package/src/tool/cellular-renewal/index.ts +1 -0
- package/src/tool/colony-counter/bibliography.astro +2 -2
- package/src/tool/colony-counter/i18n/ru.ts +5 -5
- package/src/tool/colony-counter/i18n/zh.ts +2 -2
- package/src/tool/colony-counter/index.ts +1 -0
- package/src/tool/cosmic-inflation/bibliography.astro +14 -0
- package/src/tool/cosmic-inflation/bibliography.ts +12 -0
- package/src/tool/cosmic-inflation/component.astro +270 -0
- package/src/tool/cosmic-inflation/cosmic-inflation-calculator.css +277 -0
- package/src/tool/cosmic-inflation/entry.ts +26 -0
- package/src/tool/cosmic-inflation/i18n/de.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/en.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/es.ts +168 -0
- package/src/tool/cosmic-inflation/i18n/fr.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/id.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/it.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/ja.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/ko.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/nl.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/pl.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/pt.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/ru.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/sv.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/tr.ts +188 -0
- package/src/tool/cosmic-inflation/i18n/zh.ts +188 -0
- package/src/tool/cosmic-inflation/index.ts +11 -0
- package/src/tool/cosmic-inflation/logic/CosmicInflationEngine.ts +21 -0
- package/src/tool/cosmic-inflation/seo.astro +15 -0
- package/src/tool/microwave-detector/bibliography.astro +2 -2
- package/src/tool/microwave-detector/component.astro +9 -7
- package/src/tool/microwave-detector/i18n/fr.ts +4 -4
- package/src/tool/microwave-detector/i18n/ru.ts +18 -18
- package/src/tool/microwave-detector/i18n/zh.ts +10 -10
- package/src/tool/microwave-detector/index.ts +1 -0
- package/src/tool/microwave-detector/logic/MicrowaveEngine.ts +5 -1
- package/src/tool/simulation-probability/bibliography.astro +2 -2
- package/src/tool/simulation-probability/i18n/fr.ts +5 -5
- package/src/tool/simulation-probability/i18n/ru.ts +7 -7
- package/src/tool/simulation-probability/i18n/zh.ts +4 -4
- package/src/tool/simulation-probability/index.ts +1 -0
- package/src/tool/temperature-timeline/bibliography.astro +14 -0
- package/src/tool/temperature-timeline/bibliography.ts +12 -0
- package/src/tool/temperature-timeline/component.astro +289 -0
- package/src/tool/temperature-timeline/entry.ts +26 -0
- package/src/tool/temperature-timeline/i18n/de.ts +213 -0
- package/src/tool/temperature-timeline/i18n/en.ts +213 -0
- package/src/tool/temperature-timeline/i18n/es.ts +178 -0
- package/src/tool/temperature-timeline/i18n/fr.ts +213 -0
- package/src/tool/temperature-timeline/i18n/id.ts +213 -0
- package/src/tool/temperature-timeline/i18n/it.ts +213 -0
- package/src/tool/temperature-timeline/i18n/ja.ts +213 -0
- package/src/tool/temperature-timeline/i18n/ko.ts +213 -0
- package/src/tool/temperature-timeline/i18n/nl.ts +213 -0
- package/src/tool/temperature-timeline/i18n/pl.ts +213 -0
- package/src/tool/temperature-timeline/i18n/pt.ts +213 -0
- package/src/tool/temperature-timeline/i18n/ru.ts +213 -0
- package/src/tool/temperature-timeline/i18n/sv.ts +213 -0
- package/src/tool/temperature-timeline/i18n/tr.ts +213 -0
- package/src/tool/temperature-timeline/i18n/zh.ts +213 -0
- package/src/tool/temperature-timeline/index.ts +11 -0
- package/src/tool/temperature-timeline/logic/TemperatureTimelineEngine.ts +58 -0
- package/src/tool/temperature-timeline/planet-temperature-timeline.css +158 -0
- package/src/tool/temperature-timeline/seo.astro +15 -0
- package/src/tools.ts +4 -0
- package/src/types.ts +1 -1
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--cosmic-bg: #fff;
|
|
3
|
+
--cosmic-border: rgba(0, 0, 0, 0.06);
|
|
4
|
+
--cosmic-text: #0f172a;
|
|
5
|
+
--cosmic-text-muted: #4b5563;
|
|
6
|
+
--cosmic-input-border: rgba(0, 0, 0, 0.1);
|
|
7
|
+
--cosmic-divider: rgba(0, 0, 0, 0.08);
|
|
8
|
+
--cosmic-canvas-bg: #fdfdfd;
|
|
9
|
+
--cosmic-highlight: #ec4899;
|
|
10
|
+
--cosmic-number-color: #0f172a;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.theme-dark {
|
|
14
|
+
--cosmic-bg: #030712;
|
|
15
|
+
--cosmic-border: rgba(255, 255, 255, 0.05);
|
|
16
|
+
--cosmic-text: #f3f4f6;
|
|
17
|
+
--cosmic-text-muted: #d1d5db;
|
|
18
|
+
--cosmic-input-border: rgba(255, 255, 255, 0.15);
|
|
19
|
+
--cosmic-divider: rgba(255, 255, 255, 0.08);
|
|
20
|
+
--cosmic-canvas-bg: #090d16;
|
|
21
|
+
--cosmic-highlight: #f472b6;
|
|
22
|
+
--cosmic-number-color: #fff;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.cosmic-calculator-root {
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
gap: 2rem;
|
|
29
|
+
padding: 1.5rem;
|
|
30
|
+
background: var(--cosmic-bg);
|
|
31
|
+
color: var(--cosmic-text);
|
|
32
|
+
border-radius: 2rem;
|
|
33
|
+
border: 1px solid var(--cosmic-border);
|
|
34
|
+
max-width: 960px;
|
|
35
|
+
margin: 0 auto;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@media (min-width: 769px) {
|
|
39
|
+
.cosmic-calculator-root {
|
|
40
|
+
display: grid;
|
|
41
|
+
grid-template-columns: 1fr 1fr;
|
|
42
|
+
grid-template-areas:
|
|
43
|
+
"presets presets"
|
|
44
|
+
"controls results"
|
|
45
|
+
"chart chart";
|
|
46
|
+
gap: 3rem;
|
|
47
|
+
padding: 2.5rem;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.cosmic-presets {
|
|
52
|
+
display: flex;
|
|
53
|
+
gap: 1rem;
|
|
54
|
+
border-bottom: 1px solid var(--cosmic-divider);
|
|
55
|
+
padding-bottom: 0.25rem;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@media (min-width: 769px) {
|
|
59
|
+
.cosmic-presets {
|
|
60
|
+
grid-area: presets;
|
|
61
|
+
gap: 2rem;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.cosmic-preset-btn {
|
|
66
|
+
background: transparent;
|
|
67
|
+
border: none;
|
|
68
|
+
border-bottom: 2px solid transparent;
|
|
69
|
+
border-radius: 0;
|
|
70
|
+
color: var(--cosmic-text);
|
|
71
|
+
font-size: 0.9rem;
|
|
72
|
+
font-weight: 500;
|
|
73
|
+
letter-spacing: 0.05em;
|
|
74
|
+
cursor: pointer;
|
|
75
|
+
transition: all 0.2s;
|
|
76
|
+
padding: 10px 16px;
|
|
77
|
+
opacity: 0.5;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.cosmic-preset-btn:hover {
|
|
81
|
+
opacity: 1;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.cosmic-preset-btn.active {
|
|
85
|
+
opacity: 1;
|
|
86
|
+
border-bottom-color: var(--cosmic-highlight);
|
|
87
|
+
color: var(--cosmic-text);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.cosmic-controls-section {
|
|
91
|
+
display: flex;
|
|
92
|
+
flex-direction: column;
|
|
93
|
+
gap: 2rem;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
@media (min-width: 769px) {
|
|
97
|
+
.cosmic-controls-section {
|
|
98
|
+
grid-area: controls;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.cosmic-input-group {
|
|
103
|
+
display: flex;
|
|
104
|
+
flex-direction: column;
|
|
105
|
+
gap: 0.5rem;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.cosmic-input-group label {
|
|
109
|
+
font-size: 0.75rem;
|
|
110
|
+
font-weight: 600;
|
|
111
|
+
text-transform: uppercase;
|
|
112
|
+
letter-spacing: 0.1em;
|
|
113
|
+
color: var(--cosmic-text-muted);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.cosmic-input-header {
|
|
117
|
+
display: flex;
|
|
118
|
+
justify-content: space-between;
|
|
119
|
+
align-items: center;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.cosmic-input-val {
|
|
123
|
+
font-size: 1.25rem;
|
|
124
|
+
font-weight: 400;
|
|
125
|
+
color: var(--cosmic-highlight);
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.cosmic-slider {
|
|
129
|
+
-webkit-appearance: none;
|
|
130
|
+
width: 100%;
|
|
131
|
+
height: 4px;
|
|
132
|
+
background: var(--cosmic-input-border);
|
|
133
|
+
outline: none;
|
|
134
|
+
border-radius: 2px;
|
|
135
|
+
padding: 12px 0;
|
|
136
|
+
background-clip: content-box;
|
|
137
|
+
cursor: pointer;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.cosmic-slider::-webkit-slider-thumb {
|
|
141
|
+
-webkit-appearance: none;
|
|
142
|
+
appearance: none;
|
|
143
|
+
width: 18px;
|
|
144
|
+
height: 18px;
|
|
145
|
+
border-radius: 50%;
|
|
146
|
+
background: var(--cosmic-highlight);
|
|
147
|
+
cursor: pointer;
|
|
148
|
+
transition: transform 0.1s;
|
|
149
|
+
margin-top: -7px;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.cosmic-slider::-webkit-slider-runnable-track {
|
|
153
|
+
width: 100%;
|
|
154
|
+
height: 4px;
|
|
155
|
+
border-radius: 2px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.cosmic-slider::-webkit-slider-thumb:hover {
|
|
159
|
+
transform: scale(1.2);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.cosmic-tooltip {
|
|
163
|
+
font-size: 0.7rem;
|
|
164
|
+
color: var(--cosmic-text-muted);
|
|
165
|
+
line-height: 1.4;
|
|
166
|
+
margin-top: 0.25rem;
|
|
167
|
+
opacity: 0.9;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
@media (max-width: 768px) {
|
|
171
|
+
.cosmic-tooltip {
|
|
172
|
+
display: none;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.cosmic-results-section {
|
|
177
|
+
display: flex;
|
|
178
|
+
flex-direction: column;
|
|
179
|
+
gap: 1.5rem;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
@media (min-width: 769px) {
|
|
183
|
+
.cosmic-results-section {
|
|
184
|
+
grid-area: results;
|
|
185
|
+
gap: 2rem;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.cosmic-divider-line {
|
|
190
|
+
height: 1px;
|
|
191
|
+
background-color: var(--cosmic-divider);
|
|
192
|
+
width: 100%;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
@media (max-width: 768px) {
|
|
196
|
+
.cosmic-results-section .cosmic-divider-line {
|
|
197
|
+
display: none;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.cosmic-result-block {
|
|
202
|
+
display: flex;
|
|
203
|
+
flex-direction: column;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.cosmic-result-label {
|
|
207
|
+
font-size: 0.65rem;
|
|
208
|
+
font-weight: 600;
|
|
209
|
+
text-transform: uppercase;
|
|
210
|
+
letter-spacing: 0.2em;
|
|
211
|
+
color: var(--cosmic-text-muted);
|
|
212
|
+
margin-bottom: 0.25rem;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.cosmic-result-number {
|
|
216
|
+
font-size: clamp(2rem, 7vw, 3rem);
|
|
217
|
+
font-weight: 200;
|
|
218
|
+
line-height: 1.1;
|
|
219
|
+
color: var(--cosmic-number-color);
|
|
220
|
+
letter-spacing: -0.03em;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.cosmic-analogy {
|
|
224
|
+
font-size: 0.85rem;
|
|
225
|
+
color: var(--cosmic-text-muted);
|
|
226
|
+
margin-top: 0.75rem;
|
|
227
|
+
line-height: 1.5;
|
|
228
|
+
opacity: 0.95;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.cosmic-analogy .highlight {
|
|
232
|
+
color: var(--cosmic-highlight);
|
|
233
|
+
font-weight: 600;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.cosmic-chart-section {
|
|
237
|
+
display: flex;
|
|
238
|
+
flex-direction: column;
|
|
239
|
+
gap: 1rem;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
@media (min-width: 769px) {
|
|
243
|
+
.cosmic-chart-section {
|
|
244
|
+
grid-area: chart;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.cosmic-chart-section h3 {
|
|
249
|
+
font-size: 0.75rem;
|
|
250
|
+
font-weight: 600;
|
|
251
|
+
text-transform: uppercase;
|
|
252
|
+
letter-spacing: 0.15em;
|
|
253
|
+
color: var(--cosmic-text-muted);
|
|
254
|
+
margin: 0;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.cosmic-canvas-container {
|
|
258
|
+
position: relative;
|
|
259
|
+
width: 100%;
|
|
260
|
+
height: 240px;
|
|
261
|
+
background: var(--cosmic-canvas-bg);
|
|
262
|
+
border-radius: 1.5rem;
|
|
263
|
+
border: 1px solid var(--cosmic-border);
|
|
264
|
+
overflow: hidden;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
@media (min-width: 769px) {
|
|
268
|
+
.cosmic-canvas-container {
|
|
269
|
+
height: 320px;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.cosmic-canvas-container canvas {
|
|
274
|
+
width: 100%;
|
|
275
|
+
height: 100%;
|
|
276
|
+
display: block;
|
|
277
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { ScienceToolEntry } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const cosmicInflation: ScienceToolEntry = {
|
|
4
|
+
id: 'cosmic-inflation-calculator',
|
|
5
|
+
icons: {
|
|
6
|
+
bg: 'mdi:rocket-launch-outline',
|
|
7
|
+
fg: 'mdi:chart-timeline-variant',
|
|
8
|
+
},
|
|
9
|
+
i18n: {
|
|
10
|
+
es: () => import('./i18n/es').then((m) => m.content),
|
|
11
|
+
en: () => import('./i18n/en').then((m) => m.content),
|
|
12
|
+
fr: () => import('./i18n/fr').then((m) => m.content),
|
|
13
|
+
de: () => import('./i18n/de').then((m) => m.content),
|
|
14
|
+
it: () => import('./i18n/it').then((m) => m.content),
|
|
15
|
+
pt: () => import('./i18n/pt').then((m) => m.content),
|
|
16
|
+
id: () => import('./i18n/id').then((m) => m.content),
|
|
17
|
+
ja: () => import('./i18n/ja').then((m) => m.content),
|
|
18
|
+
ko: () => import('./i18n/ko').then((m) => m.content),
|
|
19
|
+
nl: () => import('./i18n/nl').then((m) => m.content),
|
|
20
|
+
pl: () => import('./i18n/pl').then((m) => m.content),
|
|
21
|
+
ru: () => import('./i18n/ru').then((m) => m.content),
|
|
22
|
+
sv: () => import('./i18n/sv').then((m) => m.content),
|
|
23
|
+
tr: () => import('./i18n/tr').then((m) => m.content),
|
|
24
|
+
zh: () => import('./i18n/zh').then((m) => m.content),
|
|
25
|
+
},
|
|
26
|
+
};
|
|
@@ -0,0 +1,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
|
+
};
|