@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,188 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'kosmische-inflatie-calculator';
|
|
5
|
+
const description = 'Bereken de exponentiele uitdijing van het vroege heelal tijdens het kosmische inflatietijdperk.';
|
|
6
|
+
const title = 'Kosmische Inflatie Calculator: Uitdijing Vroege Heelal';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Selecteer waarden',
|
|
11
|
+
text: 'Sleep de schuifregelaars om resultaten te zien.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Vergelijk schaalfactoren',
|
|
15
|
+
text: 'Bekijk met hoeveel orde van grootte de ruimte is uitgebreid.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Analyseer dynamische vervorming',
|
|
19
|
+
text: 'Het canvas toont de expansie van de ruimte.',
|
|
20
|
+
},
|
|
21
|
+
];
|
|
22
|
+
|
|
23
|
+
const faq = [
|
|
24
|
+
{
|
|
25
|
+
"question": "Wat is kosmische inflatie en waarom vond het plaats?",
|
|
26
|
+
"answer": "Kosmische inflatie is een theorie die een ultrasnelle, exponentiele uitdijing van de ruimte postuleert in de allereerste fracties van een seconde van het universum, specifiek rond 10^-36 seconden na de oerknal. Het vond plaats omdat een theoretisch scalair veld, de inflaton genaamd, zich in een toestand van hoge energiedichtheid van een vals vacuum bevond, wat een negatieve druk en een afstotende zwaartekracht genereerde die het weefsel van de ruimte-tijd uitrekte."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"question": "Wat betekent het aantal e-folds?",
|
|
30
|
+
"answer": "Het aantal e-folds meet de duur van de exponentiele uitdijingsfase. Een e-fold vertegenwoordigt de tijd waarin de omvang van het universum wordt vermenigvuldigd met het getal van Euler (ongeveer 2.718). Als het universum N e-folds ondergaat, neemt de schaalfactor toe met een factor e^N. Standaard kosmologische modellen vereisen ten minste 50 tot 60 e-folds om de vlakheids- en horizonproblemen correct op te lossen."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"question": "Hoe lost inflatie het horizonprobleem op?",
|
|
34
|
+
"answer": "Het horizonprobleem vraagt waarom extreem verre regio's van het universum bijna identieke temperaturen van de kosmische achtergrondstraling hebben, hoewel de lichtsnelheid hen niet in staat zou hebben gesteld om met elkaar te communiceren om een evenwicht te bereiken. Inflatie lost dit op door aan te tonen dat, voorafgaand aan de exponentiele uitdijing, het hele waarneembare universum een minuscule regio was die causaal verbonden en thermisch homogeen was, die onmiddellijk buiten de visuele horizon werd uitgerekt."
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"question": "Wat is het vlakheidsprobleem en hoe wordt het opgelost?",
|
|
38
|
+
"answer": "De energiedichtheid van het huidige heelal ligt extreem dicht bij de kritieke dichtheid, wat betekent dat de ruimte vlak is met een minimale foutmarge. Zonder inflatie zou elke initiele afwijking van de vlakheid in de loop van de tijd exponentieel zijn gegroeid, wat een onmogelijke fijninstelling bij de oerknal zou vereisen. Inflatie rekt de ruimtelijke kromming zo heftig uit dat elke initiele kromming wordt verdund, vergelijkbaar met hoe het oppervlak van een gigantische bol lokaal perfect vlak lijkt."
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"question": "Wat is het herverwarmingsproces of reheating?",
|
|
42
|
+
"answer": "Herverwarming is de thermische overgang die het einde van de inflatie markeert. Tijdens de inflatie koelt het universum af tot temperaturen nabij het absolute nulpunt als gevolg van de exponentiele expansie van het volume. Wanneer het inflatonveld vervalt tot het minimum van zijn potentiaal, wordt de resterende energie via kwantuminteracties in de ruimte gedumpt in de vorm van deeltjes van het Standaardmodel, waardoor de kosmos wordt gevuld met een heet en dicht plasma dat de traditionele oerknalfase inluidt."
|
|
43
|
+
}
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
export const content: ToolLocaleContent = {
|
|
47
|
+
slug,
|
|
48
|
+
title,
|
|
49
|
+
description,
|
|
50
|
+
ui: {
|
|
51
|
+
title: 'Kosmische Inflatie Calculator',
|
|
52
|
+
efoldsLabel: 'Aantal e-folds (N)',
|
|
53
|
+
energyLabel: 'Initiele Energieschaal (GeV)',
|
|
54
|
+
scaleFactorResult: 'Groei van de Schaalfactor',
|
|
55
|
+
reheatingTempResult: 'Geschatte Herverwarmingstemperatuur',
|
|
56
|
+
chartTitle: 'Vervorming van het Ruimte-Tijdweefsel',
|
|
57
|
+
presetGuth: 'Standaard (Guth)',
|
|
58
|
+
presetChaotic: 'Chaotisch',
|
|
59
|
+
presetExtreme: 'Extreme Limieten',
|
|
60
|
+
efoldsTooltip: 'Typische modellen voorspellen tussen 50 en 60 e-folds.',
|
|
61
|
+
energyTooltip: 'De GUT-schaal ligt rond 10^16 GeV.',
|
|
62
|
+
scaleFactorTooltip: 'Vertegenwoordigt de totale expansiefactor.',
|
|
63
|
+
reheatingTooltip: 'De temperatuur aan het einde van de inflatie.',
|
|
64
|
+
analogyInsuff: 'Matige inflatie. Deze expansie is onvoldoende.',
|
|
65
|
+
analogyProton: 'Het heelal dijde in een fractie van een seconde uit van de grootte van een proton naar de grootte van een melkwegstelsel.',
|
|
66
|
+
analogyObservable: 'Het heelal dijde in 10^-32 seconden uit van een subatomaire schaal naar groter dan het waarneembare heelal.',
|
|
67
|
+
},
|
|
68
|
+
seo: [
|
|
69
|
+
{
|
|
70
|
+
"type": "title",
|
|
71
|
+
"text": "KOSMOLOGIE: Kosmische Inflatictheorie en Ruimte-Tijdexpansie",
|
|
72
|
+
"level": 2
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"type": "paragraph",
|
|
76
|
+
"html": "Kosmische inflatie vertegenwoordigt de fundamentele pijler die de deeltjesfysica verbindt met de observationele astrofysica. Voorgesteld in de vroege jaren 1980 door fysici Alan Guth en Andrei Linde, postuleert deze theorie dat het vroege universum een fase van exponentiele expansie onderging, aangedreven door de energiedichtheid van een scalair veld dat bekend staat als het inflaton. Deze expansie vergrootte het volume van het universum met een factor van ten minste 10^26 in een fractie van een seconde, waarmee diepe paradoxen van het klassieke oerknalmodel werden opgelost en het theoretische kader werd gecreeerd voor de vorming van kosmische structuren."
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"type": "title",
|
|
80
|
+
"text": "Vergelijking van Inflatiemodellen en Parameters",
|
|
81
|
+
"level": 3
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"type": "paragraph",
|
|
85
|
+
"html": "Verschillende potentialen voor het inflatonveld produceren verschillende expansiesnelheden en herverwarmingstemperaturen. Hieronder staan de kenmerken van de belangrijkste modellen die in deze calculator worden gesimuleerd:"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"type": "table",
|
|
89
|
+
"headers": [
|
|
90
|
+
"Inflatiemodel",
|
|
91
|
+
"e-folds Bereik (N)",
|
|
92
|
+
"Energieschaal (GeV)",
|
|
93
|
+
"Fysisch en Dynamisch Resultaat"
|
|
94
|
+
],
|
|
95
|
+
"rows": [
|
|
96
|
+
[
|
|
97
|
+
"<strong>Standaard Guth</strong>",
|
|
98
|
+
"50 - 60",
|
|
99
|
+
"10^16",
|
|
100
|
+
"Lost vlakheid en horizon op; inflatie eindigt via bellennucleatie in een langzame fase-overgang."
|
|
101
|
+
],
|
|
102
|
+
[
|
|
103
|
+
"<strong>Chaotische Inflatie (Linde)</strong>",
|
|
104
|
+
"60 of meer",
|
|
105
|
+
"10^16",
|
|
106
|
+
"Het inflaton rolt geleidelijk langs een eenvoudig parabolisch potentieel; vermijdt abrupte fase-overgangsproblemen."
|
|
107
|
+
],
|
|
108
|
+
[
|
|
109
|
+
"<strong>Extreme Limieten</strong>",
|
|
110
|
+
"90 of meer",
|
|
111
|
+
"10^19 (Planck)",
|
|
112
|
+
"Energieen nabij de kwantumzwaartekrachtgrens; enorme uitrekking van de primordiale ruimte-tijd."
|
|
113
|
+
]
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"type": "title",
|
|
118
|
+
"text": "Oplossen van Klassieke Oerknalproblemen",
|
|
119
|
+
"level": 3
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"type": "paragraph",
|
|
123
|
+
"html": "Voordat inflatie werd ontwikkeld, leed de klassieke oerknal-kosmologie aan ernstige theoretische inconsistenties. Het horizonprobleem, voortkomend uit de homogeniteit van de kosmische achtergrondstraling, und het vlakheidsprobleem, geassocieerd met de kritieke dichtheid van de ruimte, suggereerden de noodzaak van uiterst onwaarschijnlijke beginvoorwaarden. Inflatie lost beide problemen op natuurlijke wijze op door een thermisch homogene micro-regio uit te rekken en de lokale ruimtelijke geometrie dynamisch vlak te maken. Bovendien verdunt het de concentratie van magnetische monopolen die zich in overvloed in het vroege heelal hadden moeten vormen."
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"type": "title",
|
|
127
|
+
"text": "Observationeel Astronomisch Bewijs voor het Inflatiemodel",
|
|
128
|
+
"level": 3
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"type": "paragraph",
|
|
132
|
+
"html": "De theorie van de kosmische inflatie is niet louter een elegante wiskundige constructie; er is solide indirect bewijs voor, bevestigd door ruimtesatellieten zoals COBE, WMAP en Planck:"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"type": "list",
|
|
136
|
+
"items": [
|
|
137
|
+
"<strong>CMB Homogeniteit:</strong> De kosmische achtergrondstraling vertoont een uniforme temperatuur met variaties van slechts 1 deel op 100,000 aan weerszijden van de zichtbare hemel.",
|
|
138
|
+
"<strong>Vlakke Geometrie:</strong> Metingen van de kromming van het heelal bevestigen dat het ruimtelijk vlak is binnen een foutmarge van minder dan 1%, consistent met enorme inflatoire uitrekking.",
|
|
139
|
+
"<strong>Afwezigheid van Monopolen:</strong> Verklaart logisch de volledige afwezigheid van stabiele, zware magnetische monopolen in ons waarneembare heelal.",
|
|
140
|
+
"<strong>Fluctuatiespectrum:</strong> De waargenomen anisotropieen in de kosmische achtergrond tonen een spectrale index die net onder de 1 ligt, precies zoals voorspeld door slow-roll inflatonmodellen."
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"type": "title",
|
|
145
|
+
"text": "Kwantumfluctuaties en de Zaden van Galactische Structuren",
|
|
146
|
+
"level": 3
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"type": "paragraph",
|
|
150
|
+
"html": "Het meest buitengewone aspect van kosmische inflatie is het vermogen om te fungeren als een kosmische microscoop. Microscopische kwantumfluctuaties van het inflatonveld werden tijdens de periode van exponentiele expansie uitgerekt tot astronomische schalen. Aan het einde van de inflatie bevroren deze fluctuaties als dichtheidsvariaties (primordiale perturbaties). Deze dichtheidsverschillen dienden als zwaartekrachtzaden die, over miljarden jaren, materie naar zich toe trokken om leven te geven aan de eerste sterren, sterrenstelsels, clusters en het kosmische web dat we vandaag waarnemen."
|
|
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 = 'kalkulator-inflacji-kosmicznej';
|
|
5
|
+
const description = 'Oblicz wykladnicza ekspansje wczesnego wszechswiata podczas epoki inflacji kosmicznej.';
|
|
6
|
+
const title = 'Kalkulator Inflacji Kosmicznej: Ekspansja Wczesnego Wszechswiata';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Wybierz wartosci',
|
|
11
|
+
text: 'Przeciagnij suwaki aby zobaczyc wyniki.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Porownaj czynniki skali',
|
|
15
|
+
text: 'Zobacz o ile rzedow wielkosci rozszerzyla sie przestrzeg.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Analizuj dynamiczne znieksztalcenie',
|
|
19
|
+
text: 'Plotno pokazuje ekspansje przestrzeni.',
|
|
20
|
+
},
|
|
21
|
+
];
|
|
22
|
+
|
|
23
|
+
const faq = [
|
|
24
|
+
{
|
|
25
|
+
"question": "Co to jest inflacja kosmiczna i dlaczego do niej doszlo?",
|
|
26
|
+
"answer": "Inflacja kosmiczna to teoria postulujaca niezwykle szybka, wykladnicza ekspansje przestrzeni w pierwszych ulamkach sekund istnienia wszechswiata, konkretnie okolo 10^-36 sekundy po Wielkim Wybuchu. Doszlo do niej, poniewaz teoretyczne pole skalarne, zwane inflatonem, znajdowalo sie w stanie wysokiej gestosci energii falszywej prozni, co wygenerowalo ujemne cisnienie i odpychajaca sile grawitacji rozciagajaca czasoprzestrzen."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"question": "Co oznacza liczba e-folds (e-zlozen)?",
|
|
30
|
+
"answer": "Liczba e-folds mierzy czas trwania fazy ekspansji wykladniczej. Jedno e-zlozenie (e-fold) to czas, w ktorym rozmiar wszechswiata zwieksza sie e-krotnie (okolo 2.718 raza). Jesli wszechswiat przechodzi N e-folds, jego czynnik skali rosnie o czynnik e^N. Standardowe modele kosmologiczne wymagaja co najmniej 50 do 60 e-folds, aby rozwiazac problemy plaskosci i horyzontu."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"question": "W jaki sposob inflacja rozwiazuje problem horyzontu?",
|
|
34
|
+
"answer": "Problem horyzontu dotyczy tego, dlaczego odlegle obszary wszechswiata maja niemal identyczne temperatury promieniowania tła (CMB), mimo ze prędkosc swiatla nie pozwolilaby im na wymiane informacji w celu osiagniecia rownowagi. Inflacja rozwiazuje to wykazujac, ze przed wykladniczym rozszerzaniem caly obserwowalny wszechswiat byl malutkim, powiazanym przyczynowo i termicznie jednorodnym obszarem, ktory zostal blyskawicznie rozciagniety poza horyzont wizualny."
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"question": "Co to jest problem plaskosci i jak go rozwiazano?",
|
|
38
|
+
"answer": "Gestosc energii dzisiejszego wszechswiata jest ekstremalnie bliska gestosci krytycznej, co oznacza, ze przestrzen jest plaska z minimalnym marginesem bledu. Bez inflacji kazde poczatkowe odchylenie od plaskosci rosloby wykladniczo, wymagajac niemozliwego dostrojenia w momencie Wielkiego Wybuchu. Inflacja rozciaga zakrzywienie przestrzeni tak gwaltownie, ze kazde poczatkowe zakrzywienie ulega rozmyciu, podobnie jak powierzchnia gigantycznej kuli wydaje sie plaska lokalnie."
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"question": "Co to jest proces ponownego podgrzania (reheating)?",
|
|
42
|
+
"answer": "Ponowne podgrzanie to przejscie termiczne, ktore konczy faze inflacji. Podczas inflacji wszechswiat schladza sie do temperatur bliskich zeru absolutnemu z powodu wykladniczego zwiekszenia objetosci. Gdy pole inflatonowe spada do minimum swojego potencjalu, jego pozostala energia zostaje przekazana przestrzeni w postaci czastek Modelu Standardowego poprzez oddzialywania kwantowe, wypelniajac kosmos goraca, gesta plazma, ktora inicjuje tradycyjna faze Wielkiego Wybuchu."
|
|
43
|
+
}
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
export const content: ToolLocaleContent = {
|
|
47
|
+
slug,
|
|
48
|
+
title,
|
|
49
|
+
description,
|
|
50
|
+
ui: {
|
|
51
|
+
title: 'Kalkulator Inflacji Kosmicznej',
|
|
52
|
+
efoldsLabel: 'Liczba e-folds (N)',
|
|
53
|
+
energyLabel: 'Poczatkowa Skala Energii (GeV)',
|
|
54
|
+
scaleFactorResult: 'Wzrost Czynnika Skali',
|
|
55
|
+
reheatingTempResult: 'Szacowana Temperatura Ponownego Podgrzania',
|
|
56
|
+
chartTitle: 'Znieksztalcenie Czasoprzestrzeni',
|
|
57
|
+
presetGuth: 'Standardowa (Guth)',
|
|
58
|
+
presetChaotic: 'Chaotyczna',
|
|
59
|
+
presetExtreme: 'Skrajne Granice',
|
|
60
|
+
efoldsTooltip: 'Typowe modele przewiduja miedzy 50 a 60 e-folds.',
|
|
61
|
+
energyTooltip: 'Skala GUT to okolo 10^16 GeV.',
|
|
62
|
+
scaleFactorTooltip: 'Reprezentuje calkowity czynnik ekspansji.',
|
|
63
|
+
reheatingTooltip: 'Temperatura pod koniec inflacji.',
|
|
64
|
+
analogyInsuff: 'Umiarkowana inflacja. Ta ekspansja jest niewystarczajaca.',
|
|
65
|
+
analogyProton: 'Wszechswiat rozszerzyl sie od rozmiarow protonu do rozmiarow galaktyki w ulamku sekundy.',
|
|
66
|
+
analogyObservable: 'Wszechswiat rozszerzyl sie od skali subatomowej do rozmiarow wiekszych niz obserwowalny wszechswiat w 10^-32 sekundy.',
|
|
67
|
+
},
|
|
68
|
+
seo: [
|
|
69
|
+
{
|
|
70
|
+
"type": "title",
|
|
71
|
+
"text": "KOSMOLOGIA: Teoria Inflacji Kosmicznej i Ekspansja Czasoprzestrzeni",
|
|
72
|
+
"level": 2
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"type": "paragraph",
|
|
76
|
+
"html": "Inflacja kosmiczna stanowi fundamentalny filar laczacy fizyke czastek elementarnych z astrofizyka obserwacyjna. Zaproponowana na poczatku lat 80. przez fizykow Alana Gutha i Andrieja Lindego, teoria ta zaklada, ze wczesny wszechswiat przeszedl faze wykladniczej ekspansji napedzanej gestoscia energii pola skalarnego znanego jako inflaton. Ekspansja ta zwiekszyla objetosc wszechswiata o czynnik co najmniej 10^26 w ułamku sekundy, rozwiazujac glebokie paradoksy klasycznego modelu Wielkiego Wybuchu i tworzac teoretyczne ramy dla powstawania struktur kosmicznych."
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"type": "title",
|
|
80
|
+
"text": "Porownanie Modelu Inflacji i Parametrow",
|
|
81
|
+
"level": 3
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"type": "paragraph",
|
|
85
|
+
"html": "Rozne potencjaly pola inflatonowego generuja odmienne tempo ekspansji i temperatury ponownego podgrzania. Ponizej przedstawiono charakterystyke glownych modeli symulowanych w tym kalkulatorze:"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"type": "table",
|
|
89
|
+
"headers": [
|
|
90
|
+
"Model Inflacji",
|
|
91
|
+
"Zakres e-folds (N)",
|
|
92
|
+
"Skala Energii (GeV)",
|
|
93
|
+
"Wynik Fizyczny i Dynamiczny"
|
|
94
|
+
],
|
|
95
|
+
"rows": [
|
|
96
|
+
[
|
|
97
|
+
"<strong>Standardowy Guth</strong>",
|
|
98
|
+
"50 - 60",
|
|
99
|
+
"10^16",
|
|
100
|
+
"Rozwiazuje problem plaskosci i horyzontu; inflacja konczy sie nukleacja pecherzykow w powolnym przejsciu fazowym."
|
|
101
|
+
],
|
|
102
|
+
[
|
|
103
|
+
"<strong>Inflacja Chaotyczna (Linde)</strong>",
|
|
104
|
+
"60 lub wiecej",
|
|
105
|
+
"10^16",
|
|
106
|
+
"Inflaton stacza sie lagodnie po prostym potencjale parabolicznym; pozwala uniknac problemow naglego przejscia fazowego."
|
|
107
|
+
],
|
|
108
|
+
[
|
|
109
|
+
"<strong>Skrajne Granice</strong>",
|
|
110
|
+
"90 lub wiecej",
|
|
111
|
+
"10^19 (Planck)",
|
|
112
|
+
"Energie bliskie granicy grawitacji kwantowej; ogromne rozciagniecie pierwotnej czasoprzestrzeni."
|
|
113
|
+
]
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"type": "title",
|
|
118
|
+
"text": "Rozwiazanie Klasycznych Problemow Wielkiego Wybuchu",
|
|
119
|
+
"level": 3
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"type": "paragraph",
|
|
123
|
+
"html": "Przed opracowaniem teorii inflacji klasyczna kosmologia Wielkiego Wybuchu borykala sie z powaznymi niespojnosciami teoretycznymi. Problem horyzontu, wynikajacy z jednorodnosci kosmicznego tła mikrofalowego, oraz problem plaskosci, zwiazany z gestoscia krytyczna przestrzeni, sugerowaly koniecznosc istnienia skrajnie malo prawdopodobnych warunkow poczatkowych. Inflacja w naturalny sposob rozwiazuje obie trudnosci poprzez rozciagniecie termicznie jednorodnego mikroobszaru i dynamiczne splaszczenie lokalnej geometrii przestrzeni. Dodatkowo rozprasza ona monopol magnetyczny, ktory powinnien obficie powstac we wczesnym wszechswiecie."
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"type": "title",
|
|
127
|
+
"text": "Obserwacyjne Dowody Astronomiczne Modelu Inflacyjnego",
|
|
128
|
+
"level": 3
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"type": "paragraph",
|
|
132
|
+
"html": "Teoria inflacji kosmicznej nie jest jedynie elegancka konstrukcja matematyczna; posiada solidne dowody posrednie potwierdzone przez satelity kosmiczne takie jak COBE, WMAP i Planck:"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"type": "list",
|
|
136
|
+
"items": [
|
|
137
|
+
"<strong>Jednorodnosc CMB:</strong> Kosmiczne promieniowanie tła wykazuje jednorodna temperature z wariacjami wynoszacymi zaledwie 1 czesc na 100,000 po przeciwnych stronach widzialnego nieba.",
|
|
138
|
+
"<strong>Plaska Geometria:</strong> Pomiary zakrzywienia wszechswiata potwierdzaja, ze jest on plaski z bledem mniejszym niz 1%, co jest spednoscia z masowym rozciagnieciem inflacyjnym.",
|
|
139
|
+
"<strong>Brak Monopoli:</strong> Logicznie wyjasnia zupelny brak stabilnych monopol magnetycznych o duzej masie w naszym obserwowalnym wszechswiecie.",
|
|
140
|
+
"<strong>Spektrum Fluktuacji:</strong> Obserwowane anizotropie kosmicznego tła wykazuja indeks widmowy nieznacznie ponizej 1, dokladnie tak, jak przewiduja modele wolno staczajacego sie inflatonu."
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"type": "title",
|
|
145
|
+
"text": "Fluktuacje Kwantowe i Nasiona Struktur Galaktycznych",
|
|
146
|
+
"level": 3
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"type": "paragraph",
|
|
150
|
+
"html": "Najbardziej niezwyklym aspektem inflacji kosmicznej jest jej zdolnosc do dzialania jako kosmiczny mikroskop. Mikroskopijne fluktuacje kwantowe pola inflatonowego zostaly rozciagniete do skal astronomicznych podczas okresu ekspansji wykladniczej. Pod koniec inflacji fluktuacje te zamrozily sie w postaci zmian gestosci materii (pierwotne perturbacje). Te roznice gestosci posluzyly jako nasiona grawitacyjne, ktore przez miliardy lat przyciagaly materie, dajac poczatek pierwszym gwiazdom, galaktykom, gromadom galaktyk i kosmicznej sieci, ktora obserwujemy dzisiaj."
|
|
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 = 'calculadora-inflacao-cosmica';
|
|
5
|
+
const description = 'Calcule a expansao exponencial do universo primordial durante a epoca da inflacao cosmica.';
|
|
6
|
+
const title = 'Calculadora de Inflacao Cosmica: Expansao do Universo Primordial';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Selecionar valores',
|
|
11
|
+
text: 'Arraste os controles deslizantes para ver os resultados.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Comparar fatores de escala',
|
|
15
|
+
text: 'Veja por quantas ordens de magnitude o espaco se expandiu.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Analisar a distorcao dinamica',
|
|
19
|
+
text: 'A tela mostra a expansao do espaco.',
|
|
20
|
+
},
|
|
21
|
+
];
|
|
22
|
+
|
|
23
|
+
const faq = [
|
|
24
|
+
{
|
|
25
|
+
"question": "O que e a inflacao cosmica e por que ocorreu?",
|
|
26
|
+
"answer": "A inflacao cosmica e uma teoria que postula uma expansao ultra-rapida e exponencial do espaco nas fracoes de segundo iniciais do universo, especificamente por volta de 10^-36 segundos apos o Big Bang. Ocorreu porque um campo escalar teorico, denominado inflaton, encontrava-se num estado de alta densidade de energia de falso vacuo, o que gerou uma pressao negativa e uma forca de gravidade repulsiva que esticou o tecido do espaco-tempo."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"question": "O que significa o numero de e-folds?",
|
|
30
|
+
"answer": "O numero de e-folds mede a duracao da fase de expansao exponencial. Um e-fold representa o tempo no qual o tamanho do universo e multiplicado pelo numero de Euler (aproximadamente 2.718). Se o universo experimenta N e-folds, o seu fator de escala aumenta por um fator de e^N. Os modelos cosmologicos padrao exigem pelo menos 50 a 60 e-folds para solucionar adequadamente os problemas de planicidade e do horizonte."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"question": "Como a inflacao resolve o problema do horizonte?",
|
|
34
|
+
"answer": "O problema do horizonte questiona por que regioes do universo extremamente distantes têm temperaturas de radiacao de fundo de micro-ondas quase identicas, apesar de a velocidade da luz nao permitir que interagissem para alcancar o equilibrio. A inflacao resolve isso demonstrando que, antes da expansao exponencial, todo o universo observavel era uma minuscula regiao termicamente homogenea causalmente conectada, a qual foi esticada instantaneamente alem do horizonte visual."
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"question": "O que e o problema da planicidade e como e resolvido?",
|
|
38
|
+
"answer": "A densidade de energia do universo atual esta extremamente proxima da densidade critica, o que significa que o espaco e plano com uma margem de erro minima. Sem inflacao, qualquer desvio inicial da planicidade teria crescido exponencialmente com o tempo, requerendo um ajuste fino impossivel no Big Bang. A inflacao estica a curvatura espacial de forma tao violenta que qualquer curvatura inicial e diluida, da mesma forma que a superficie de uma esfera gigante parece perfeitamente plana a nivel local."
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"question": "O que e o processo de reaquecimento ou reheating?",
|
|
42
|
+
"answer": "O reaquecimento e a transicao termica que marca o fim da inflacao. Durante a inflacao, o universo resfria para temperaturas proximas do zero absoluto devido a expansao exponencial do volume. Quando o campo do inflaton decai para o minimo do seu potencial, a sua energia restante e vertida no espaco sob a forma de particulas do Modelo Padrao atraves de interacoes quanticas, preenchendo o cosmos com um plasma quente e denso que inicia a fase tradicional do Big Bang."
|
|
43
|
+
}
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
export const content: ToolLocaleContent = {
|
|
47
|
+
slug,
|
|
48
|
+
title,
|
|
49
|
+
description,
|
|
50
|
+
ui: {
|
|
51
|
+
title: 'Calculadora de Inflacao Cosmica',
|
|
52
|
+
efoldsLabel: 'Numero de e-folds (N)',
|
|
53
|
+
energyLabel: 'Escala de Energia Inicial (GeV)',
|
|
54
|
+
scaleFactorResult: 'Crescimento do Fator de Escala',
|
|
55
|
+
reheatingTempResult: 'Temperatura de Reaquecimento Estimada',
|
|
56
|
+
chartTitle: 'Distorcao do Tecido Espaco-Tempo',
|
|
57
|
+
presetGuth: 'Padrao (Guth)',
|
|
58
|
+
presetChaotic: 'Caotica',
|
|
59
|
+
presetExtreme: 'Limites Extremos',
|
|
60
|
+
efoldsTooltip: 'Modelos tipicos preveem entre 50 e 60 e-folds.',
|
|
61
|
+
energyTooltip: 'A escala GUT e de cerca de 10^16 GeV.',
|
|
62
|
+
scaleFactorTooltip: 'Representa o fator de expansao total.',
|
|
63
|
+
reheatingTooltip: 'A temperatura no final da inflacao.',
|
|
64
|
+
analogyInsuff: 'Inflacao moderada. Esta expansao e insuficiente.',
|
|
65
|
+
analogyProton: 'O universo expandiu-se do tamanho de um proton para o de uma galaxia numa fracao de segundo.',
|
|
66
|
+
analogyObservable: 'O universo expandiu-se de uma escala subatomica para maior do que o universo observavel em 10^-32 segundos.',
|
|
67
|
+
},
|
|
68
|
+
seo: [
|
|
69
|
+
{
|
|
70
|
+
"type": "title",
|
|
71
|
+
"text": "COSMOLOGIA: A teoria da inflacao cosmica e a expansao do espaco-tempo",
|
|
72
|
+
"level": 2
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"type": "paragraph",
|
|
76
|
+
"html": "A inflacao cosmica representa o pilar fundamental que une a fisica de particulas a astrofisica observacional. Proposta no inicio da decada de 1980 por fisicos como Alan Guth e Andrei Linde, esta teoria postula que o universo primordial sofreu uma fase de expansao exponencial impulsionada pela densidade de energia de um campo escalar conhecido como inflaton. Esta expansao aumentou o volume do universo num fator de pelo menos 10^26 numa fracao diminuta de segundo, resolvendo paradoxos profundos do modelo classico do Big Bang e proporcionando o marco teorico para a formacao da estrutura cosmica."
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"type": "title",
|
|
80
|
+
"text": "Comparacao de modelos e parametros de inflacao",
|
|
81
|
+
"level": 3
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"type": "paragraph",
|
|
85
|
+
"html": "Diferentes potenciais para o campo do inflaton produzem ritmos de expansao e temperaturas de reaquecimento distintos. Abaixo estao detalhadas as caracteristicas dos principais modelos simulados nesta calculadora:"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"type": "table",
|
|
89
|
+
"headers": [
|
|
90
|
+
"Modelo de Inflacao",
|
|
91
|
+
"Intervalo e-folds (N)",
|
|
92
|
+
"Escala de Energia (GeV)",
|
|
93
|
+
"Resultado Fisico e Dinamico"
|
|
94
|
+
],
|
|
95
|
+
"rows": [
|
|
96
|
+
[
|
|
97
|
+
"<strong>Guth Padrao</strong>",
|
|
98
|
+
"50 - 60",
|
|
99
|
+
"10^16",
|
|
100
|
+
"Resolve planicidade e horizonte; a inflacao termina por nucleacao de bolhas numa transicao de fase lenta."
|
|
101
|
+
],
|
|
102
|
+
[
|
|
103
|
+
"<strong>Inflacao Caotica (Linde)</strong>",
|
|
104
|
+
"60 ou mais",
|
|
105
|
+
"10^16",
|
|
106
|
+
"O inflaton desce suavemente por um potencial parabolico simples; evita problemas de transicao de fase abrupta."
|
|
107
|
+
],
|
|
108
|
+
[
|
|
109
|
+
"<strong>Limites Extremos</strong>",
|
|
110
|
+
"90 ou mais",
|
|
111
|
+
"10^19 (Planck)",
|
|
112
|
+
"Energias proximas do limite da gravidade quantica; estiramento massivo do espaco-tempo primordial."
|
|
113
|
+
]
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"type": "title",
|
|
118
|
+
"text": "Resolucao dos problemas do Big Bang classico",
|
|
119
|
+
"level": 3
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"type": "paragraph",
|
|
123
|
+
"html": "Antes do desenvolvimento da inflacao, a cosmologia classica do Big Bang sofria de graves inconsistencias teoricas. O problema do horizonte, derivado da homogeneidade da radiacao de fundo de micro-ondas, e o problema da planicidade, associado a densidade critica do espaco, sugeriam a necessidade de condicoes iniciais extremamente improvaveis. A inflacao solventa de forma natural ambas as dificuldades ao estirar uma micro-regiao termicamente homogenea e aplanar de maneira dinamica a geometria espacial local. Alem disso, dilui a concentracao de monopolos magneticos que deveriam ter-se formado abundantemente no universo primordial."
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"type": "title",
|
|
127
|
+
"text": "Evidencia astronomica observacional do modelo inflacionario",
|
|
128
|
+
"level": 3
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"type": "paragraph",
|
|
132
|
+
"html": "A teoria da inflacao cosmica nao e apenas uma elegante construcao matematica; conta com solidas provas indiretas confirmadas por satelites espaciais como COBE, WMAP e Planck:"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"type": "list",
|
|
136
|
+
"items": [
|
|
137
|
+
"<strong>Homogeneidade do CMB:</strong> A radiacao de fundo de micro-ondas mostra uma temperatura uniforme com variacoes de apenas 1 parte em 100,000 em extremos opostos do ceu visivel.",
|
|
138
|
+
"<strong>Geometria Plana:</strong> As medicoes da curvatura do universo confirmam que e espacialmente plano com uma margem de erro inferior a 1%, consistente com um estiramento inflacionario massivo.",
|
|
139
|
+
"<strong>Ausencia de Monopolos:</strong> Explica de forma logica a ausencia total de monopolos magneticos estaveis de grande massa no nosso universo observavel.",
|
|
140
|
+
"<strong>Espectro de Fluctuacoes:</strong> As anisotropias observadas no fundo cosmico mostram um indice espectral ligeiramente inferior a 1, tal como predito pelos modelos de inflaton de rolamento lento."
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"type": "title",
|
|
145
|
+
"text": "Flutuacoes cuanticas e a semente das galaxias",
|
|
146
|
+
"level": 3
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"type": "paragraph",
|
|
150
|
+
"html": "O aspeto mais extraordinario da inflacao cosmica e a sua capacidade para agir como um microscopio cosmico. As flutuacoes quanticas microscopicas do campo do inflaton esticaram-se a escalas astronomicas durante o periodo de expansao exponencial. Ao finalizar a inflacao, estas flutuacoes congelaram sob a forma de variacoes de densidade de materia (perturbacoes primordiais). Estas diferencas de densidade serviram como sementes gravitacionais que, ao longo de milhares de milhoes de anos, atraissem materia para dar origem as primeiras estrelas, galaxias, aglomerados de galaxias e a grande teia cosmica que observamos na atualidade."
|
|
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
|
+
};
|