@jjlmoya/utils-science 1.42.0 → 1.44.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 +1 -1
- package/src/category/index.ts +4 -1
- package/src/entries.ts +7 -1
- package/src/index.ts +3 -0
- package/src/tests/diacritics_density.test.ts +140 -0
- package/src/tests/inverted_punctuation.test.ts +84 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/script_density.test.ts +94 -0
- package/src/tests/tool_validation.test.ts +2 -3
- package/src/tool/black-hole-event-horizon-simulator/bibliography.astro +14 -0
- package/src/tool/black-hole-event-horizon-simulator/bibliography.ts +16 -0
- package/src/tool/black-hole-event-horizon-simulator/black-hole-event-horizon-simulator.css +366 -0
- package/src/tool/black-hole-event-horizon-simulator/component.astro +302 -0
- package/src/tool/black-hole-event-horizon-simulator/entry.ts +29 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/de.ts +179 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/en.ts +259 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/es.ts +259 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/fr.ts +179 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/id.ts +259 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/it.ts +179 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/ja.ts +179 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/ko.ts +259 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/nl.ts +179 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/pl.ts +259 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/pt.ts +179 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/ru.ts +259 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/sv.ts +179 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/tr.ts +179 -0
- package/src/tool/black-hole-event-horizon-simulator/i18n/zh.ts +179 -0
- package/src/tool/black-hole-event-horizon-simulator/index.ts +11 -0
- package/src/tool/black-hole-event-horizon-simulator/logic.ts +68 -0
- package/src/tool/black-hole-event-horizon-simulator/seo.astro +15 -0
- package/src/tool/conway-life-rule-lab/i18n/de.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/es.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/fr.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/id.ts +102 -45
- package/src/tool/conway-life-rule-lab/i18n/it.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/ja.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/ko.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/nl.ts +102 -45
- package/src/tool/conway-life-rule-lab/i18n/pl.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/pt.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/ru.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/sv.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/tr.ts +62 -5
- package/src/tool/conway-life-rule-lab/i18n/zh.ts +62 -5
- package/src/tool/cosmic-inflation/i18n/es.ts +5 -5
- package/src/tool/cosmic-inflation/i18n/it.ts +51 -51
- package/src/tool/cosmic-inflation/i18n/ru.ts +42 -150
- package/src/tool/double-slit-decoherence/i18n/fr.ts +42 -86
- package/src/tool/double-slit-decoherence/i18n/it.ts +28 -72
- package/src/tool/double-slit-decoherence/i18n/pt.ts +35 -79
- package/src/tool/double-slit-decoherence/i18n/ru.ts +59 -59
- package/src/tool/double-slit-decoherence/i18n/sv.ts +33 -81
- package/src/tool/double-slit-decoherence/i18n/tr.ts +55 -55
- package/src/tool/dyson-sphere-energy-capture/i18n/de.ts +42 -123
- package/src/tool/dyson-sphere-energy-capture/i18n/es.ts +6 -6
- package/src/tool/dyson-sphere-energy-capture/i18n/fr.ts +63 -131
- package/src/tool/dyson-sphere-energy-capture/i18n/it.ts +36 -113
- package/src/tool/dyson-sphere-energy-capture/i18n/ja.ts +66 -42
- package/src/tool/dyson-sphere-energy-capture/i18n/ko.ts +66 -42
- package/src/tool/dyson-sphere-energy-capture/i18n/pl.ts +50 -133
- package/src/tool/dyson-sphere-energy-capture/i18n/pt.ts +51 -132
- package/src/tool/dyson-sphere-energy-capture/i18n/ru.ts +61 -98
- package/src/tool/dyson-sphere-energy-capture/i18n/sv.ts +56 -137
- package/src/tool/dyson-sphere-energy-capture/i18n/tr.ts +61 -142
- package/src/tool/dyson-sphere-energy-capture/i18n/zh.ts +67 -43
- package/src/tool/epidemic-sir-simulator/bibliography.astro +15 -0
- package/src/tool/epidemic-sir-simulator/bibliography.ts +37 -0
- package/src/tool/epidemic-sir-simulator/component.astro +384 -0
- package/src/tool/epidemic-sir-simulator/entry.ts +30 -0
- package/src/tool/epidemic-sir-simulator/epidemic-sir-simulator.css +624 -0
- package/src/tool/epidemic-sir-simulator/i18n/de.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/en.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/es.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/fr.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/id.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/it.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/ja.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/ko.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/nl.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/pl.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/pt.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/ru.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/sv.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/tr.ts +347 -0
- package/src/tool/epidemic-sir-simulator/i18n/zh.ts +347 -0
- package/src/tool/epidemic-sir-simulator/index.ts +12 -0
- package/src/tool/epidemic-sir-simulator/logic.ts +163 -0
- package/src/tool/epidemic-sir-simulator/seo.astro +16 -0
- package/src/tool/fermi-paradox-filter-lab/bibliography.astro +14 -0
- package/src/tool/fermi-paradox-filter-lab/bibliography.ts +24 -0
- package/src/tool/fermi-paradox-filter-lab/component.astro +257 -0
- package/src/tool/fermi-paradox-filter-lab/entry.ts +26 -0
- package/src/tool/fermi-paradox-filter-lab/fermi-paradox-filter-lab.css +228 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/de.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/en.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/es.ts +193 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/fr.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/id.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/it.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/ja.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/ko.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/nl.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/pl.ts +193 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/pt.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/ru.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/sv.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/tr.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/i18n/zh.ts +192 -0
- package/src/tool/fermi-paradox-filter-lab/index.ts +11 -0
- package/src/tool/fermi-paradox-filter-lab/logic.ts +125 -0
- package/src/tool/fermi-paradox-filter-lab/seo.astro +15 -0
- package/src/tool/global-albedo-snowball-simulator/i18n/ru.ts +50 -63
- package/src/tool/lorenz-attractor/i18n/de.ts +52 -78
- package/src/tool/lorenz-attractor/i18n/es.ts +5 -5
- package/src/tool/lorenz-attractor/i18n/fr.ts +51 -77
- package/src/tool/lorenz-attractor/i18n/it.ts +36 -36
- package/src/tool/lorenz-attractor/i18n/pt.ts +51 -75
- package/src/tool/mandelbrot-fractal/i18n/de.ts +31 -58
- package/src/tool/mandelbrot-fractal/i18n/es.ts +5 -5
- package/src/tool/mandelbrot-fractal/i18n/fr.ts +39 -57
- package/src/tool/mandelbrot-fractal/i18n/it.ts +30 -48
- package/src/tool/mandelbrot-fractal/i18n/pl.ts +34 -52
- package/src/tool/mandelbrot-fractal/i18n/pt.ts +30 -30
- package/src/tool/mandelbrot-fractal/i18n/ru.ts +42 -60
- package/src/tool/mandelbrot-fractal/i18n/sv.ts +38 -65
- package/src/tool/natural-selection-drift/i18n/it.ts +18 -95
- package/src/tool/natural-selection-drift/i18n/pt.ts +76 -19
- package/src/tool/natural-selection-drift/i18n/ru.ts +27 -24
- package/src/tool/natural-selection-drift/i18n/sv.ts +9 -6
- package/src/tool/phase-diagram-critical-points/i18n/de.ts +30 -68
- package/src/tool/phase-diagram-critical-points/i18n/es.ts +4 -4
- package/src/tool/phase-diagram-critical-points/i18n/fr.ts +37 -75
- package/src/tool/phase-diagram-critical-points/i18n/it.ts +8 -8
- package/src/tool/planet-atmosphere-survival/i18n/ru.ts +49 -192
- package/src/tool/radioactive-decay/i18n/de.ts +16 -32
- package/src/tool/radioactive-decay/i18n/es.ts +5 -5
- package/src/tool/radioactive-decay/i18n/fr.ts +24 -40
- package/src/tool/radioactive-decay/i18n/it.ts +18 -35
- package/src/tool/radioactive-decay/i18n/pt.ts +34 -34
- package/src/tool/roche-limit-satellite-disruption/i18n/pl.ts +52 -128
- package/src/tool/temperature-timeline/i18n/de.ts +46 -174
- package/src/tool/temperature-timeline/i18n/es.ts +5 -5
- package/src/tool/temperature-timeline/i18n/fr.ts +69 -144
- package/src/tool/temperature-timeline/i18n/it.ts +34 -133
- package/src/tool/temperature-timeline/i18n/pt.ts +35 -174
- package/src/tool/temperature-timeline/i18n/ru.ts +48 -174
- package/src/tool/twin-paradox-visualizer/i18n/es.ts +5 -5
- package/src/tool/twin-paradox-visualizer/i18n/fr.ts +34 -34
- package/src/tool/twin-paradox-visualizer/i18n/pt.ts +31 -71
- package/src/tools.ts +6 -0
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
const description = 'Modélisez le paradoxe de Fermi avec les paramètres de l\'équation de Drake, les filtres évolutionnaires, la durée de vie des signaux et une projection temporelle des civilisations détectables de la Voie lactée.';
|
|
2
|
+
const slug = 'laboratoire-filtre-paradoxe-fermi';
|
|
3
|
+
const title = 'Laboratoire du Filtre du Paradoxe de Fermi';
|
|
4
|
+
|
|
5
|
+
const howTo = [
|
|
6
|
+
{
|
|
7
|
+
name: 'Estimer le pipeline de Drake',
|
|
8
|
+
text: 'Déplacez les curseurs de formation stellaire, de planète habitable, de vie, d\'intelligence et de technologie pour définir la fréquence à laquelle la Voie lactée produit des civilisations détectables.',
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
name: 'Définir la force du filtre',
|
|
12
|
+
text: 'Augmentez le filtre évolutionnaire pour que l\'effondrement, l\'autodestruction, l\'instabilité écologique ou les goulots d\'étranglement technologiques éliminent plus rapidement les civilisations.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
name: 'Comparer durée de vie et horizon',
|
|
16
|
+
text: 'Utilisez ensemble la durée de vie du signal et l\'horizon de projection. Une courte durée de vie peut rendre une galaxie silencieuse même si des civilisations naissent régulièrement.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: 'Lire la courbe temporelle',
|
|
20
|
+
text: 'Le graphique montre les civilisations détectables au fil du temps, rendant la coexistence et l\'extinction visibles au lieu de réduire le paradoxe de Fermi à un seul chiffre.',
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const faq = [
|
|
25
|
+
{
|
|
26
|
+
question: 'Que calcule ce simulateur du paradoxe de Fermi ?',
|
|
27
|
+
answer: 'Il combine les termes de l\'équation de Drake avec un filtre de survie et un horizon temporel pour estimer combien de civilisations technologiques pourraient être détectables au même moment dans la Voie lactée.',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
question: 'S\'agit-il d\'une prédiction de véritables civilisations extraterrestres ?',
|
|
31
|
+
answer: 'Non. C\'est un modèle exploratoire. L\'intérêt est de voir comment les hypothèses interagissent: une galaxie peut produire beaucoup de civilisations au cours de l\'histoire tout en n\'ayant que très peu qui chevauchent la nôtre.',
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
question: 'Qu\'est-ce que le Grand Filtre ?',
|
|
35
|
+
answer: 'Le Grand Filtre est l\'idée qu\'une ou plusieurs étapes entre la chimie simple et une civilisation technologique durable sont extrêmement improbables ou dangereuses.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
question: 'Pourquoi la durée de vie du signal est-elle si importante ?',
|
|
39
|
+
answer: 'La détectabilité dépend du chevauchement. Une civilisation qui émet pendant seulement quelques siècles peut être réelle mais invisible pour une autre civilisation observant à une époque différente.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: 'Comment choisir les fractions de vie et d\'intelligence ?',
|
|
43
|
+
answer: 'Utilisez des valeurs faibles pour un scénario pessimiste de vie rare et des valeurs plus élevées pour explorer la possibilité que la biologie ou l\'intelligence émerge souvent sur des mondes habitables stables.',
|
|
44
|
+
},
|
|
45
|
+
];
|
|
46
|
+
|
|
47
|
+
import { bibliography } from '../bibliography';
|
|
48
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
49
|
+
|
|
50
|
+
export const content: ToolLocaleContent = {
|
|
51
|
+
slug,
|
|
52
|
+
title,
|
|
53
|
+
description,
|
|
54
|
+
ui: {
|
|
55
|
+
chartLabel: 'Projection des civilisations détectables au fil du temps',
|
|
56
|
+
metricsLabel: 'Mesures du modèle de Fermi',
|
|
57
|
+
controlsLabel: 'Contrôles du modèle de Fermi',
|
|
58
|
+
birthRate: 'Taux de naissance',
|
|
59
|
+
peakCivilizations: 'Pic de civilisations',
|
|
60
|
+
finalCivilizations: 'Civilisations finales',
|
|
61
|
+
silenceScore: 'Score de silence',
|
|
62
|
+
starFormationRate: 'Taux de formation stellaire',
|
|
63
|
+
habitableFraction: 'Fraction de planètes habitables',
|
|
64
|
+
lifeFraction: 'Fraction d\'émergence de la vie',
|
|
65
|
+
intelligenceFraction: 'Fraction d\'intelligence',
|
|
66
|
+
technologyFraction: 'Fraction de technologie',
|
|
67
|
+
signalLifetime: 'Durée de vie du signal',
|
|
68
|
+
filterSeverity: 'Sévérité du filtre',
|
|
69
|
+
horizonYears: 'Horizon de projection',
|
|
70
|
+
maxLabel: 'max',
|
|
71
|
+
yearUnit: 'a',
|
|
72
|
+
silenceScale: '100',
|
|
73
|
+
step01: '01',
|
|
74
|
+
step02: '02',
|
|
75
|
+
step03: '03',
|
|
76
|
+
step04: '04',
|
|
77
|
+
step05: '05',
|
|
78
|
+
step06: '06',
|
|
79
|
+
step07: '07',
|
|
80
|
+
step08: '08',
|
|
81
|
+
},
|
|
82
|
+
seo: [
|
|
83
|
+
{
|
|
84
|
+
type: 'title',
|
|
85
|
+
text: 'Un simulateur pratique du paradoxe de Fermi pour les hypothèses de l\'équation de Drake',
|
|
86
|
+
level: 2,
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
type: 'paragraph',
|
|
90
|
+
html: 'Le paradoxe de Fermi demande pourquoi le ciel nocturne semble silencieux si la Voie lactée contient des centaines de milliards d\'étoiles et de nombreuses planètes. Cet outil transforme cette question en un modèle interactif en combinant l\'équation de Drake avec des filtres évolutionnaires et une projection temporelle des civilisations détectables.',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
type: 'paragraph',
|
|
94
|
+
html: 'Au lieu de fournir une seule estimation statique, le simulateur montre comment des civilisations peuvent naître, devenir détectables et disparaître avant qu\'une autre société ait la chance de les entendre. Ce problème de temporalité est central pour le SETI, car deux cultures technologiques doivent se chevaucher dans l\'espace, le temps et le comportement des signaux.',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
type: 'title',
|
|
98
|
+
text: 'Comment le modèle utilise les paramètres de l\'équation de Drake',
|
|
99
|
+
level: 3,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
type: 'paragraph',
|
|
103
|
+
html: 'Les premiers contrôles représentent un pipeline de Drake simplifié. La formation stellaire fournit de nouveaux systèmes stellaires. Une fraction de ces systèmes forme des planètes habitables, une fraction des planètes habitables développe la vie, une fraction des mondes vivants produit l\'intelligence et une fraction des espèces intelligentes devient détectable par la technologie.',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type: 'table',
|
|
107
|
+
headers: ['Contrôle', 'Signification', 'Effet'],
|
|
108
|
+
rows: [
|
|
109
|
+
['Taux de formation stellaire', 'Nouvelles étoiles par an dans la Voie lactée', 'Augmente ou réduit l\'offre brute de systèmes possibles'],
|
|
110
|
+
['Fraction de planètes habitables', 'Part des systèmes avec des mondes stables où la chimie de l\'eau liquide pourrait persister', 'Détermine quelle partie de la galaxie entre dans le pipeline biologique'],
|
|
111
|
+
['Fraction d\'émergence de la vie', 'Probabilité que la vie simple commence sur un monde habitable', 'Teste les hypothèses de vie rare par rapport à vie courante'],
|
|
112
|
+
['Fraction d\'intelligence', 'Probabilité que la vie fasse évoluer une cognition capable de technologie', 'Représente les goulots d\'étranglement biologiques et écologiques'],
|
|
113
|
+
['Fraction de technologie', 'Probabilité que l\'intelligence produise des signaux détectables', 'Capture les choix culturels, techniques et de communication'],
|
|
114
|
+
],
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
type: 'title',
|
|
118
|
+
text: 'Pourquoi les filtres peuvent rendre une galaxie active vide en apparence',
|
|
119
|
+
level: 3,
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
type: 'paragraph',
|
|
123
|
+
html: 'Le curseur de sévérité du filtre condense de nombreux points de défaillance possibles en une seule pression de survie: impacts d\'astéroïdes, climats instables, autodestruction, effondrement des ressources, risque lié à l\'intelligence artificielle ou tout autre goulot d\'étranglement qui raccourcit la phase détectable. Un filtre fort ne signifie pas que les civilisations n\'apparaissent jamais. Cela signifie qu\'elles restent rarement visibles longtemps.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
type: 'paragraph',
|
|
127
|
+
html: 'Cette distinction est importante. La Voie lactée pourrait avoir produit des milliers d\'espèces technologiques au fil du temps tout en ne laissant presque aucun voisin actif pendant notre propre étroite fenêtre d\'écoute. Le graphique rend cette différence visible en traçant les civilisations détectables sur l\'horizon de projection choisi.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'title',
|
|
131
|
+
text: 'Interpréter le score de silence',
|
|
132
|
+
level: 3,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: 'paragraph',
|
|
136
|
+
html: 'Le score de silence augmente lorsque le nombre final de civilisations détectables en chevauchement est faible. Un silence élevé ne prouve pas que les humains sont seuls ; il montre que les hypothèses choisies rendent la non-détection peu surprenante. Un silence faible signifie que le modèle s\'attend à une galaxie plus bruyante, donc l\'absence de preuve devient plus intéressante.',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'list',
|
|
140
|
+
items: [
|
|
141
|
+
'<strong>Taux de naissance élevé et filtre faible :</strong> une galaxie peuplée où le silence du SETI est plus difficile à expliquer.',
|
|
142
|
+
'<strong>Taux de naissance élevé et filtre fort :</strong> de nombreuses civilisations apparaissent, mais peu survivent assez longtemps pour se chevaucher.',
|
|
143
|
+
'<strong>Fractions biologiques faibles :</strong> la vie ou l\'intelligence est rare, donc le silence peut émerger avant même que la technologie n\'entre en jeu.',
|
|
144
|
+
'<strong>Durée de vie du signal courte :</strong> des civilisations peuvent exister mais émettre trop brièvement pour qu\'un contact soit probable.',
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'title',
|
|
149
|
+
text: 'Cas d\'usage pour l\'enseignement, le débat et l\'intuition SETI',
|
|
150
|
+
level: 3,
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
type: 'paragraph',
|
|
154
|
+
html: 'Le Laboratoire du Filtre du Paradoxe de Fermi est utile dans les cours d\'astronomie, les discussions d\'astrobiologie, la communication scientifique et les débats philosophiques sur l\'avenir de l\'humanité. Il aide à séparer trois questions souvent mélangées: à quelle fréquence les civilisations naissent, combien de temps elles restent détectables et si leurs chronologies chevauchent la nôtre.',
|
|
155
|
+
},
|
|
156
|
+
],
|
|
157
|
+
faq,
|
|
158
|
+
bibliography,
|
|
159
|
+
howTo,
|
|
160
|
+
schemas: [
|
|
161
|
+
{
|
|
162
|
+
'@context': 'https://schema.org',
|
|
163
|
+
'@type': 'SoftwareApplication',
|
|
164
|
+
name: title,
|
|
165
|
+
description,
|
|
166
|
+
applicationCategory: 'ScientificApplication',
|
|
167
|
+
operatingSystem: 'Any',
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
'@context': 'https://schema.org',
|
|
171
|
+
'@type': 'FAQPage',
|
|
172
|
+
mainEntity: faq.map((item) => ({
|
|
173
|
+
'@type': 'Question',
|
|
174
|
+
name: item.question,
|
|
175
|
+
acceptedAnswer: {
|
|
176
|
+
'@type': 'Answer',
|
|
177
|
+
text: item.answer,
|
|
178
|
+
},
|
|
179
|
+
})),
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
'@context': 'https://schema.org',
|
|
183
|
+
'@type': 'HowTo',
|
|
184
|
+
name: title,
|
|
185
|
+
step: howTo.map((step) => ({
|
|
186
|
+
'@type': 'HowToStep',
|
|
187
|
+
name: step.name,
|
|
188
|
+
text: step.text,
|
|
189
|
+
})),
|
|
190
|
+
},
|
|
191
|
+
],
|
|
192
|
+
};
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
const description = 'Modelkan paradoks Fermi dengan masukan persamaan Drake, filter evolusioner, masa hidup sinyal, dan proyeksi waktu peradaban Bima Sakti yang terdeteksi.';
|
|
2
|
+
const slug = 'laboratorium-filter-paradoks-fermi';
|
|
3
|
+
const title = 'Laboratorium Filter Paradoks Fermi';
|
|
4
|
+
|
|
5
|
+
const howTo = [
|
|
6
|
+
{
|
|
7
|
+
name: 'Estimasi jalur Drake',
|
|
8
|
+
text: 'Geser pengatur pembentukan bintang, planet layak huni, kehidupan, kecerdasan, dan teknologi untuk menentukan seberapa sering Bima Sakti menciptakan peradaban yang terdeteksi.',
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
name: 'Atur kekuatan filter',
|
|
12
|
+
text: 'Tingkatkan filter evolusioner ketika Anda ingin keruntuhan, kehancuran diri, ketidakstabilan ekologis, atau hambatan teknologi untuk menghilangkan peradaban lebih cepat.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
name: 'Bandingkan masa hidup dengan cakrawala',
|
|
16
|
+
text: 'Gunakan masa hidup sinyal dan cakrawala proyeksi bersama-sama. Masa hidup yang pendek dapat membuat galaksi sunyi meskipun peradaban lahir secara teratur.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: 'Baca kurva temporal',
|
|
20
|
+
text: 'Grafik menunjukkan peradaban yang terdeteksi sepanjang waktu, membuat koeksistensi dan kepunahan terlihat alih-alih mereduksi paradoks Fermi menjadi satu angka.',
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const faq = [
|
|
25
|
+
{
|
|
26
|
+
question: 'Apa yang dihitung oleh simulator paradoks Fermi ini?',
|
|
27
|
+
answer: 'Simulator ini menggabungkan istilah persamaan Drake dengan filter kelangsungan hidup dan cakrawala waktu untuk memperkirakan berapa banyak peradaban teknologi yang mungkin terdeteksi pada waktu yang sama di Bima Sakti.',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
question: 'Apakah ini prediksi peradaban alien nyata?',
|
|
31
|
+
answer: 'Tidak. Ini adalah model eksploratif. Nilainya terletak pada melihat bagaimana asumsi berinteraksi: sebuah galaksi dapat menghasilkan banyak peradaban sepanjang sejarah namun tetap memiliki sangat sedikit yang tumpang tindih dengan kita.',
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
question: 'Apa itu Great Filter?',
|
|
35
|
+
answer: 'Great Filter adalah gagasan bahwa satu atau lebih langkah antara kimia sederhana dan peradaban teknologi yang berumur panjang sangat tidak mungkin atau berbahaya.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
question: 'Mengapa masa hidup sinyal begitu penting?',
|
|
39
|
+
answer: 'Keterdeteksian bergantung pada tumpang tindih. Peradaban yang menyiarkan sinyal hanya beberapa abad mungkin nyata tetapi tidak terlihat oleh peradaban lain yang mengamati di era yang berbeda.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: 'Bagaimana cara memilih fraksi kehidupan dan kecerdasan?',
|
|
43
|
+
answer: 'Gunakan nilai rendah untuk skenario langka-kehidupan yang pesimistis dan nilai lebih tinggi saat mengeksplorasi kemungkinan bahwa biologi atau kecerdasan sering muncul di dunia layak huni yang stabil.',
|
|
44
|
+
},
|
|
45
|
+
];
|
|
46
|
+
|
|
47
|
+
import { bibliography } from '../bibliography';
|
|
48
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
49
|
+
|
|
50
|
+
export const content: ToolLocaleContent = {
|
|
51
|
+
slug,
|
|
52
|
+
title,
|
|
53
|
+
description,
|
|
54
|
+
ui: {
|
|
55
|
+
chartLabel: 'Proyeksi peradaban yang terdeteksi sepanjang waktu',
|
|
56
|
+
metricsLabel: 'Metrik model Fermi',
|
|
57
|
+
controlsLabel: 'Kontrol model Fermi',
|
|
58
|
+
birthRate: 'Tingkat kelahiran',
|
|
59
|
+
peakCivilizations: 'Puncak peradaban',
|
|
60
|
+
finalCivilizations: 'Peradaban akhir',
|
|
61
|
+
silenceScore: 'Skor kesunyian',
|
|
62
|
+
starFormationRate: 'Tingkat pembentukan bintang',
|
|
63
|
+
habitableFraction: 'Fraksi planet layak huni',
|
|
64
|
+
lifeFraction: 'Fraksi kemunculan kehidupan',
|
|
65
|
+
intelligenceFraction: 'Fraksi kecerdasan',
|
|
66
|
+
technologyFraction: 'Fraksi teknologi',
|
|
67
|
+
signalLifetime: 'Masa hidup sinyal',
|
|
68
|
+
filterSeverity: 'Tingkat keparahan filter',
|
|
69
|
+
horizonYears: 'Cakrawala proyeksi',
|
|
70
|
+
maxLabel: 'maks',
|
|
71
|
+
yearUnit: 'thn',
|
|
72
|
+
silenceScale: '100',
|
|
73
|
+
step01: '01',
|
|
74
|
+
step02: '02',
|
|
75
|
+
step03: '03',
|
|
76
|
+
step04: '04',
|
|
77
|
+
step05: '05',
|
|
78
|
+
step06: '06',
|
|
79
|
+
step07: '07',
|
|
80
|
+
step08: '08',
|
|
81
|
+
},
|
|
82
|
+
seo: [
|
|
83
|
+
{
|
|
84
|
+
type: 'title',
|
|
85
|
+
text: 'Simulator paradoks Fermi praktis untuk asumsi persamaan Drake',
|
|
86
|
+
level: 2,
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
type: 'paragraph',
|
|
90
|
+
html: 'Paradoks Fermi menanyakan mengapa langit malam tampak sunyi jika Bima Sakti mengandung ratusan miliar bintang dan banyak planet. Alat ini mengubah pertanyaan tersebut menjadi model interaktif dengan menggabungkan persamaan Drake dengan filter evolusioner dan proyeksi waktu peradaban yang terdeteksi.',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
type: 'paragraph',
|
|
94
|
+
html: 'Alih-alih memberikan satu estimasi statis, simulator menunjukkan bagaimana peradaban dapat lahir, menjadi terdeteksi, dan lenyap sebelum masyarakat lain memiliki kesempatan mendengarnya. Masalah waktu ini sangat penting bagi SETI karena dua budaya teknologi harus tumpang tindih dalam ruang, waktu, dan perilaku sinyal.',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
type: 'title',
|
|
98
|
+
text: 'Bagaimana model menggunakan parameter persamaan Drake',
|
|
99
|
+
level: 3,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
type: 'paragraph',
|
|
103
|
+
html: 'Kontrol pertama mewakili jalur Drake yang disederhanakan. Pembentukan bintang memasok sistem bintang baru. Sebagian dari sistem tersebut membentuk planet layak huni, sebagian planet layak huni mengembangkan kehidupan, sebagian dunia kehidupan menghasilkan kecerdasan, dan sebagian spesies cerdas menjadi terdeteksi melalui teknologi.',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type: 'table',
|
|
107
|
+
headers: ['Kontrol', 'Arti', 'Efek'],
|
|
108
|
+
rows: [
|
|
109
|
+
['Tingkat pembentukan bintang', 'Bintang baru per tahun di Bima Sakti', 'Menaikkan atau menurunkan pasokan mentah sistem yang mungkin'],
|
|
110
|
+
['Fraksi planet layak huni', 'Bagian sistem dengan dunia stabil di mana kimia air cair dapat bertahan', 'Mengontrol seberapa banyak galaksi yang masuk ke jalur biologis'],
|
|
111
|
+
['Fraksi kemunculan kehidupan', 'Probabilitas bahwa kehidupan sederhana dimulai di dunia layak huni', 'Menguji asumsi langka-kehidupan versus umum-kehidupan'],
|
|
112
|
+
['Fraksi kecerdasan', 'Probabilitas bahwa kehidupan berevolusi menjadi kognisi yang mampu berteknologi', 'Mewakili hambatan biologis dan ekologis'],
|
|
113
|
+
['Fraksi teknologi', 'Probabilitas bahwa kecerdasan menghasilkan sinyal yang terdeteksi', 'Menangkap pilihan budaya, rekayasa, dan komunikasi'],
|
|
114
|
+
],
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
type: 'title',
|
|
118
|
+
text: 'Mengapa filter dapat membuat galaksi sibuk tampak kosong',
|
|
119
|
+
level: 3,
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
type: 'paragraph',
|
|
123
|
+
html: 'Pengatur tingkat keparahan filter memadatkan banyak kemungkinan titik kegagalan menjadi satu tekanan kelangsungan hidup: dampak asteroid, iklim tidak stabil, kehancuran diri, keruntuhan sumber daya, risiko kecerdasan buatan, atau hambatan lain yang memperpendek fase terdeteksi. Filter yang kuat tidak berarti peradaban tidak pernah muncul. Ini berarti mereka jarang tetap terlihat untuk waktu yang lama.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
type: 'paragraph',
|
|
127
|
+
html: 'Perbedaan itu penting. Bima Sakti mungkin telah menghasilkan ribuan spesies teknologi selama waktu yang dalam namun meninggalkan hampir tidak ada tetangga yang aktif selama jendela pendengaran sempit kita sendiri. Grafik membuat perbedaan ini terlihat dengan memplot peradaban yang terdeteksi melalui cakrawala proyeksi yang dipilih.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'title',
|
|
131
|
+
text: 'Menafsirkan skor kesunyian',
|
|
132
|
+
level: 3,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: 'paragraph',
|
|
136
|
+
html: 'Skor kesunyian meningkat ketika jumlah akhir peradaban yang terdeteksi dan tumpang tindih rendah. Kesunyian tinggi tidak membuktikan bahwa manusia sendirian; ini menunjukkan bahwa asumsi yang dipilih membuat tidak-terdeteksi tidak mengejutkan. Kesunyian rendah berarti model mengharapkan galaksi yang lebih ramai, sehingga ketiadaan bukti menjadi lebih menarik.',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'list',
|
|
140
|
+
items: [
|
|
141
|
+
'<strong>Tingkat kelahiran tinggi dengan filter rendah:</strong> galaksi padat di mana kesunyian SETI lebih sulit dijelaskan.',
|
|
142
|
+
'<strong>Tingkat kelahiran tinggi dengan filter tinggi:</strong> banyak peradaban muncul, tetapi sedikit yang bertahan cukup lama untuk tumpang tindih.',
|
|
143
|
+
'<strong>Fraksi biologis rendah:</strong> kehidupan atau kecerdasan langka, sehingga kesunyian dapat muncul sebelum teknologi menjadi relevan.',
|
|
144
|
+
'<strong>Masa hidup sinyal pendek:</strong> peradaban mungkin ada tetapi menyiarkan terlalu singkat sehingga kontak tidak mungkin terjadi.',
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'title',
|
|
149
|
+
text: 'Penggunaan untuk pengajaran, debat, dan intuisi SETI',
|
|
150
|
+
level: 3,
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
type: 'paragraph',
|
|
154
|
+
html: 'Laboratorium Filter Paradoks Fermi berguna dalam pelajaran astronomi, diskusi astrobiologi, komunikasi sains, dan debat filosofis tentang masa depan umat manusia. Ini membantu memisahkan tiga pertanyaan yang sering digabungkan: seberapa sering peradaban lahir, berapa lama mereka tetap terdeteksi, dan apakah garis waktu mereka tumpang tindih dengan kita.',
|
|
155
|
+
},
|
|
156
|
+
],
|
|
157
|
+
faq,
|
|
158
|
+
bibliography,
|
|
159
|
+
howTo,
|
|
160
|
+
schemas: [
|
|
161
|
+
{
|
|
162
|
+
'@context': 'https://schema.org',
|
|
163
|
+
'@type': 'SoftwareApplication',
|
|
164
|
+
name: title,
|
|
165
|
+
description,
|
|
166
|
+
applicationCategory: 'ScientificApplication',
|
|
167
|
+
operatingSystem: 'Any',
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
'@context': 'https://schema.org',
|
|
171
|
+
'@type': 'FAQPage',
|
|
172
|
+
mainEntity: faq.map((item) => ({
|
|
173
|
+
'@type': 'Question',
|
|
174
|
+
name: item.question,
|
|
175
|
+
acceptedAnswer: {
|
|
176
|
+
'@type': 'Answer',
|
|
177
|
+
text: item.answer,
|
|
178
|
+
},
|
|
179
|
+
})),
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
'@context': 'https://schema.org',
|
|
183
|
+
'@type': 'HowTo',
|
|
184
|
+
name: title,
|
|
185
|
+
step: howTo.map((step) => ({
|
|
186
|
+
'@type': 'HowToStep',
|
|
187
|
+
name: step.name,
|
|
188
|
+
text: step.text,
|
|
189
|
+
})),
|
|
190
|
+
},
|
|
191
|
+
],
|
|
192
|
+
};
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
const description = 'Modella il paradosso di Fermi con i parametri dell\'equazione di Drake, filtri evolutivi, durata del segnale e una proiezione temporale delle civiltà rilevabili della Via Lattea.';
|
|
2
|
+
const slug = 'laboratorio-filtro-paradosso-fermi';
|
|
3
|
+
const title = 'Laboratorio Filtro del Paradosso di Fermi';
|
|
4
|
+
|
|
5
|
+
const howTo = [
|
|
6
|
+
{
|
|
7
|
+
name: 'Stimare la pipeline di Drake',
|
|
8
|
+
text: 'Regola i cursori di formazione stellare, pianeta abitabile, vita, intelligenza e tecnologia per definire con quale frequenza la Via Lattea produce civiltà rilevabili.',
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
name: 'Impostare l\'intensità del filtro',
|
|
12
|
+
text: 'Aumenta il filtro evolutivo per simulare collasso, autodistruzione, instabilità ecologica o colli di bottiglia tecnologici che eliminano le civiltà più rapidamente.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
name: 'Confrontare la durata del segnale con l\'orizzonte',
|
|
16
|
+
text: 'Usa la durata del segnale e l\'orizzonte di proiezione insieme. Una durata breve può rendere una galassia silenziosa anche quando le civiltà nascono regolarmente.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: 'Leggere la curva temporale',
|
|
20
|
+
text: 'Il grafico mostra le civiltà rilevabili nel tempo, rendendo visibili la coesistenza e l\'estinzione invece di ridurre il paradosso di Fermi a un singolo numero.',
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const faq = [
|
|
25
|
+
{
|
|
26
|
+
question: 'Cosa calcola questo simulatore del paradosso di Fermi?',
|
|
27
|
+
answer: 'Combina i termini dell\'equazione di Drake con un filtro di sopravvivenza e un orizzonte temporale per stimare quante civiltà tecnologiche potrebbero essere rilevabili contemporaneamente nella Via Lattea.',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
question: 'È una previsione di civiltà aliene reali?',
|
|
31
|
+
answer: 'No. È un modello esplorativo. Il valore sta nel vedere come interagiscono le ipotesi: una galassia può produrre molte civiltà nel corso della storia eppure averne pochissime che si sovrappongono a noi.',
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
question: 'Cos\'è il Grande Filtro?',
|
|
35
|
+
answer: 'Il Grande Filtro è l\'idea che uno o più passaggi tra la chimica semplice e una civiltà tecnologica longeva siano estremamente improbabili o pericolosi.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
question: 'Perché la durata del segnale è così importante?',
|
|
39
|
+
answer: 'La rilevabilità dipende dalla sovrapposizione. Una civiltà che trasmette solo per pochi secoli può essere reale ma invisibile a un\'altra civiltà che osserva in un\'epoca diversa.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
question: 'Come dovrei scegliere le frazioni di vita e intelligenza?',
|
|
43
|
+
answer: 'Usa valori bassi per uno scenario pessimistico di vita rara e valori più alti quando esplori la possibilità che la biologia o l\'intelligenza emergano spesso su mondi abitabili stabili.',
|
|
44
|
+
},
|
|
45
|
+
];
|
|
46
|
+
|
|
47
|
+
import { bibliography } from '../bibliography';
|
|
48
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
49
|
+
|
|
50
|
+
export const content: ToolLocaleContent = {
|
|
51
|
+
slug,
|
|
52
|
+
title,
|
|
53
|
+
description,
|
|
54
|
+
ui: {
|
|
55
|
+
chartLabel: 'Proiezione delle civiltà rilevabili nel tempo',
|
|
56
|
+
metricsLabel: 'Metriche del modello di Fermi',
|
|
57
|
+
controlsLabel: 'Controlli del modello di Fermi',
|
|
58
|
+
birthRate: 'Tasso di nascita',
|
|
59
|
+
peakCivilizations: 'Picco di civiltà',
|
|
60
|
+
finalCivilizations: 'Civiltà finali',
|
|
61
|
+
silenceScore: 'Punteggio di silenzio',
|
|
62
|
+
starFormationRate: 'Tasso di formazione stellare',
|
|
63
|
+
habitableFraction: 'Frazione di pianeti abitabili',
|
|
64
|
+
lifeFraction: 'Frazione di emergenza della vita',
|
|
65
|
+
intelligenceFraction: 'Frazione di intelligenza',
|
|
66
|
+
technologyFraction: 'Frazione tecnologica',
|
|
67
|
+
signalLifetime: 'Durata del segnale',
|
|
68
|
+
filterSeverity: 'Severità del filtro',
|
|
69
|
+
horizonYears: 'Orizzonte di proiezione',
|
|
70
|
+
maxLabel: 'max',
|
|
71
|
+
yearUnit: 'a',
|
|
72
|
+
silenceScale: '100',
|
|
73
|
+
step01: '01',
|
|
74
|
+
step02: '02',
|
|
75
|
+
step03: '03',
|
|
76
|
+
step04: '04',
|
|
77
|
+
step05: '05',
|
|
78
|
+
step06: '06',
|
|
79
|
+
step07: '07',
|
|
80
|
+
step08: '08',
|
|
81
|
+
},
|
|
82
|
+
seo: [
|
|
83
|
+
{
|
|
84
|
+
type: 'title',
|
|
85
|
+
text: 'Un simulatore pratico del paradosso di Fermi per le ipotesi dell\'equazione di Drake',
|
|
86
|
+
level: 2,
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
type: 'paragraph',
|
|
90
|
+
html: 'Il paradosso di Fermi chiede perché il cielo notturno appaia silenzioso se la Via Lattea contiene centinaia di miliardi di stelle e molti pianeti. Questo strumento trasforma quella domanda in un modello interattivo combinando l\'equazione di Drake con filtri evolutivi e una proiezione temporale delle civiltà rilevabili.',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
type: 'paragraph',
|
|
94
|
+
html: 'Invece di fornire una singola stima statica, il simulatore mostra come le civiltà possano nascere, diventare rilevabili e scomparire prima che un\'altra società abbia la possibilità di sentirle. Quel problema temporale è centrale per SETI perché due culture tecnologiche devono sovrapporsi nello spazio, nel tempo e nel comportamento del segnale.',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
type: 'title',
|
|
98
|
+
text: 'Come il modello usa i parametri dell\'equazione di Drake',
|
|
99
|
+
level: 3,
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
type: 'paragraph',
|
|
103
|
+
html: 'I primi controlli rappresentano una pipeline di Drake semplificata. La formazione stellare fornisce nuovi sistemi stellari. Una frazione di questi sistemi forma pianeti abitabili, una frazione dei pianeti abitabili sviluppa vita, una frazione dei mondi viventi produce intelligenza e una frazione delle specie intelligenti diventa rilevabile attraverso la tecnologia.',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type: 'table',
|
|
107
|
+
headers: ['Controllo', 'Significato', 'Effetto'],
|
|
108
|
+
rows: [
|
|
109
|
+
['Tasso di formazione stellare', 'Nuove stelle all\'anno nella Via Lattea', 'Alza o abbassa la quantità grezza di sistemi possibili'],
|
|
110
|
+
['Frazione di pianeti abitabili', 'Percentuale di sistemi con mondi stabili dove la chimica dell\'acqua liquida potrebbe persistere', 'Controlla quanta parte della galassia entra nella pipeline biologica'],
|
|
111
|
+
['Frazione di emergenza della vita', 'Probabilità che la vita semplice inizi su un mondo abitabile', 'Verifica le ipotesi di vita rara rispetto a vita comune'],
|
|
112
|
+
['Frazione di intelligenza', 'Probabilità che la vita evolva cognizione capace di tecnologia', 'Rappresenta i colli di bottiglia biologici ed ecologici'],
|
|
113
|
+
['Frazione tecnologica', 'Probabilità che l\'intelligenza produca segnali rilevabili', 'Cattura le scelte culturali, ingegneristiche e comunicative'],
|
|
114
|
+
],
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
type: 'title',
|
|
118
|
+
text: 'Perché i filtri possono far sembrare vuota una galassia affollata',
|
|
119
|
+
level: 3,
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
type: 'paragraph',
|
|
123
|
+
html: 'Il cursore della severità del filtro comprime molti possibili punti di fallimento in un\'unica pressione di sopravvivenza: impatti di asteroidi, climi instabili, autodistruzione, collasso delle risorse, rischio dell\'intelligenza artificiale o qualsiasi altro collo di bottiglia che accorci la fase rilevabile. Un filtro forte non significa che le civiltà non sorgano mai. Significa che raramente rimangono visibili a lungo.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
type: 'paragraph',
|
|
127
|
+
html: 'Questa distinzione è importante. La Via Lattea potrebbe aver prodotto migliaia di specie tecnologiche nel corso del tempo profondo, lasciando quasi nessun vicino attivo durante la nostra ristretta finestra di ascolto. Il grafico rende visibile questa differenza tracciando le civiltà rilevabili attraverso l\'orizzonte di proiezione selezionato.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'title',
|
|
131
|
+
text: 'Interpretare il punteggio di silenzio',
|
|
132
|
+
level: 3,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: 'paragraph',
|
|
136
|
+
html: 'Il punteggio di silenzio aumenta quando il numero finale di civiltà rilevabili sovrapposte è basso. Un silenzio elevato non prova che gli umani siano soli; mostra che le ipotesi scelte rendono la non-rilevazione poco sorprendente. Un silenzio basso significa che il modello si aspetta una galassia più rumorosa, quindi l\'assenza di prove diventa più interessante.',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'list',
|
|
140
|
+
items: [
|
|
141
|
+
'<strong>Alto tasso di nascita più filtro basso:</strong> una galassia affollata dove il silenzio di SETI è più difficile da spiegare.',
|
|
142
|
+
'<strong>Alto tasso di nascita più filtro alto:</strong> molte civiltà appaiono, ma poche sopravvivono abbastanza a lungo per sovrapporsi.',
|
|
143
|
+
'<strong>Frazioni biologiche basse:</strong> la vita o l\'intelligenza sono rare, quindi il silenzio può emergere prima ancora che la tecnologia conti.',
|
|
144
|
+
'<strong>Durata del segnale breve:</strong> le civiltà possono esistere ma trasmettere troppo brevemente perché il contatto sia probabile.',
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'title',
|
|
149
|
+
text: 'Casi d\'uso per didattica, dibattito e intuizione SETI',
|
|
150
|
+
level: 3,
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
type: 'paragraph',
|
|
154
|
+
html: 'Il Laboratorio Filtro del Paradosso di Fermi è utile in lezioni di astronomia, discussioni di astrobiologia, comunicazione scientifica e dibattiti filosofici sul futuro dell\'umanità. Aiuta a separare tre domande spesso mescolate: con quale frequenza nascono le civiltà, quanto rimangono rilevabili e se le loro tempistiche si sovrappongono alle nostre.',
|
|
155
|
+
},
|
|
156
|
+
],
|
|
157
|
+
faq,
|
|
158
|
+
bibliography,
|
|
159
|
+
howTo,
|
|
160
|
+
schemas: [
|
|
161
|
+
{
|
|
162
|
+
'@context': 'https://schema.org',
|
|
163
|
+
'@type': 'SoftwareApplication',
|
|
164
|
+
name: title,
|
|
165
|
+
description,
|
|
166
|
+
applicationCategory: 'ScientificApplication',
|
|
167
|
+
operatingSystem: 'Any',
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
'@context': 'https://schema.org',
|
|
171
|
+
'@type': 'FAQPage',
|
|
172
|
+
mainEntity: faq.map((item) => ({
|
|
173
|
+
'@type': 'Question',
|
|
174
|
+
name: item.question,
|
|
175
|
+
acceptedAnswer: {
|
|
176
|
+
'@type': 'Answer',
|
|
177
|
+
text: item.answer,
|
|
178
|
+
},
|
|
179
|
+
})),
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
'@context': 'https://schema.org',
|
|
183
|
+
'@type': 'HowTo',
|
|
184
|
+
name: title,
|
|
185
|
+
step: howTo.map((step) => ({
|
|
186
|
+
'@type': 'HowToStep',
|
|
187
|
+
name: step.name,
|
|
188
|
+
text: step.text,
|
|
189
|
+
})),
|
|
190
|
+
},
|
|
191
|
+
],
|
|
192
|
+
};
|