@jjlmoya/utils-science 1.41.0 → 1.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (164) hide show
  1. package/package.json +1 -1
  2. package/scripts/crystal-lattice-catalog-translations.mjs +459 -0
  3. package/scripts/sync-crystal-lattice-i18n.mjs +50 -0
  4. package/src/category/index.ts +3 -1
  5. package/src/entries.ts +5 -1
  6. package/src/index.ts +2 -0
  7. package/src/tests/diacritics_density.test.ts +140 -0
  8. package/src/tests/inverted_punctuation.test.ts +84 -0
  9. package/src/tests/locale_completeness.test.ts +2 -2
  10. package/src/tests/script_density.test.ts +94 -0
  11. package/src/tests/tool_validation.test.ts +2 -3
  12. package/src/tool/conway-life-rule-lab/i18n/de.ts +62 -5
  13. package/src/tool/conway-life-rule-lab/i18n/es.ts +62 -5
  14. package/src/tool/conway-life-rule-lab/i18n/fr.ts +62 -5
  15. package/src/tool/conway-life-rule-lab/i18n/id.ts +102 -45
  16. package/src/tool/conway-life-rule-lab/i18n/it.ts +62 -5
  17. package/src/tool/conway-life-rule-lab/i18n/ja.ts +62 -5
  18. package/src/tool/conway-life-rule-lab/i18n/ko.ts +62 -5
  19. package/src/tool/conway-life-rule-lab/i18n/nl.ts +102 -45
  20. package/src/tool/conway-life-rule-lab/i18n/pl.ts +62 -5
  21. package/src/tool/conway-life-rule-lab/i18n/pt.ts +62 -5
  22. package/src/tool/conway-life-rule-lab/i18n/ru.ts +62 -5
  23. package/src/tool/conway-life-rule-lab/i18n/sv.ts +62 -5
  24. package/src/tool/conway-life-rule-lab/i18n/tr.ts +62 -5
  25. package/src/tool/conway-life-rule-lab/i18n/zh.ts +62 -5
  26. package/src/tool/cosmic-inflation/i18n/es.ts +5 -5
  27. package/src/tool/cosmic-inflation/i18n/it.ts +51 -51
  28. package/src/tool/cosmic-inflation/i18n/ru.ts +42 -150
  29. package/src/tool/crystal-lattice-structure-finder/component.astro +120 -39
  30. package/src/tool/crystal-lattice-structure-finder/crystal-lattice-structure-finder.css +204 -56
  31. package/src/tool/crystal-lattice-structure-finder/data.ts +107 -133
  32. package/src/tool/crystal-lattice-structure-finder/i18n/de.ts +39 -0
  33. package/src/tool/crystal-lattice-structure-finder/i18n/en.ts +45 -6
  34. package/src/tool/crystal-lattice-structure-finder/i18n/es.ts +39 -0
  35. package/src/tool/crystal-lattice-structure-finder/i18n/fr.ts +39 -0
  36. package/src/tool/crystal-lattice-structure-finder/i18n/id.ts +39 -0
  37. package/src/tool/crystal-lattice-structure-finder/i18n/it.ts +39 -0
  38. package/src/tool/crystal-lattice-structure-finder/i18n/ja.ts +39 -0
  39. package/src/tool/crystal-lattice-structure-finder/i18n/ko.ts +39 -0
  40. package/src/tool/crystal-lattice-structure-finder/i18n/nl.ts +39 -0
  41. package/src/tool/crystal-lattice-structure-finder/i18n/pl.ts +39 -0
  42. package/src/tool/crystal-lattice-structure-finder/i18n/pt.ts +39 -0
  43. package/src/tool/crystal-lattice-structure-finder/i18n/ru.ts +39 -0
  44. package/src/tool/crystal-lattice-structure-finder/i18n/sv.ts +39 -0
  45. package/src/tool/crystal-lattice-structure-finder/i18n/tr.ts +39 -0
  46. package/src/tool/crystal-lattice-structure-finder/i18n/zh.ts +39 -0
  47. package/src/tool/crystal-lattice-structure-finder/logic.ts +7 -3
  48. package/src/tool/crystal-lattice-structure-finder/structures/README.md +26 -0
  49. package/src/tool/crystal-lattice-structure-finder/structures/body-centered-cubic.ts +19 -0
  50. package/src/tool/crystal-lattice-structure-finder/structures/cesium-chloride.ts +19 -0
  51. package/src/tool/crystal-lattice-structure-finder/structures/diamond-cubic.ts +23 -0
  52. package/src/tool/crystal-lattice-structure-finder/structures/face-centered-cubic.ts +16 -0
  53. package/src/tool/crystal-lattice-structure-finder/structures/hexagonal-close-packed.ts +30 -0
  54. package/src/tool/crystal-lattice-structure-finder/structures/index.ts +25 -0
  55. package/src/tool/crystal-lattice-structure-finder/structures/perovskite.ts +20 -0
  56. package/src/tool/crystal-lattice-structure-finder/structures/rock-salt.ts +23 -0
  57. package/src/tool/crystal-lattice-structure-finder/structures/rutile.ts +25 -0
  58. package/src/tool/crystal-lattice-structure-finder/structures/shared.ts +86 -0
  59. package/src/tool/crystal-lattice-structure-finder/structures/simple-cubic.ts +16 -0
  60. package/src/tool/crystal-lattice-structure-finder/structures/wurtzite.ts +22 -0
  61. package/src/tool/crystal-lattice-structure-finder/structures/zinc-blende.ts +23 -0
  62. package/src/tool/double-slit-decoherence/i18n/fr.ts +42 -86
  63. package/src/tool/double-slit-decoherence/i18n/it.ts +28 -72
  64. package/src/tool/double-slit-decoherence/i18n/pt.ts +35 -79
  65. package/src/tool/double-slit-decoherence/i18n/ru.ts +59 -59
  66. package/src/tool/double-slit-decoherence/i18n/sv.ts +33 -81
  67. package/src/tool/double-slit-decoherence/i18n/tr.ts +55 -55
  68. package/src/tool/dyson-sphere-energy-capture/i18n/de.ts +42 -123
  69. package/src/tool/dyson-sphere-energy-capture/i18n/es.ts +6 -6
  70. package/src/tool/dyson-sphere-energy-capture/i18n/fr.ts +63 -131
  71. package/src/tool/dyson-sphere-energy-capture/i18n/it.ts +36 -113
  72. package/src/tool/dyson-sphere-energy-capture/i18n/ja.ts +66 -42
  73. package/src/tool/dyson-sphere-energy-capture/i18n/ko.ts +66 -42
  74. package/src/tool/dyson-sphere-energy-capture/i18n/pl.ts +50 -133
  75. package/src/tool/dyson-sphere-energy-capture/i18n/pt.ts +51 -132
  76. package/src/tool/dyson-sphere-energy-capture/i18n/ru.ts +61 -98
  77. package/src/tool/dyson-sphere-energy-capture/i18n/sv.ts +56 -137
  78. package/src/tool/dyson-sphere-energy-capture/i18n/tr.ts +61 -142
  79. package/src/tool/dyson-sphere-energy-capture/i18n/zh.ts +67 -43
  80. package/src/tool/epidemic-sir-simulator/bibliography.astro +15 -0
  81. package/src/tool/epidemic-sir-simulator/bibliography.ts +37 -0
  82. package/src/tool/epidemic-sir-simulator/component.astro +384 -0
  83. package/src/tool/epidemic-sir-simulator/entry.ts +30 -0
  84. package/src/tool/epidemic-sir-simulator/epidemic-sir-simulator.css +624 -0
  85. package/src/tool/epidemic-sir-simulator/i18n/de.ts +347 -0
  86. package/src/tool/epidemic-sir-simulator/i18n/en.ts +347 -0
  87. package/src/tool/epidemic-sir-simulator/i18n/es.ts +347 -0
  88. package/src/tool/epidemic-sir-simulator/i18n/fr.ts +347 -0
  89. package/src/tool/epidemic-sir-simulator/i18n/id.ts +347 -0
  90. package/src/tool/epidemic-sir-simulator/i18n/it.ts +347 -0
  91. package/src/tool/epidemic-sir-simulator/i18n/ja.ts +347 -0
  92. package/src/tool/epidemic-sir-simulator/i18n/ko.ts +347 -0
  93. package/src/tool/epidemic-sir-simulator/i18n/nl.ts +347 -0
  94. package/src/tool/epidemic-sir-simulator/i18n/pl.ts +347 -0
  95. package/src/tool/epidemic-sir-simulator/i18n/pt.ts +347 -0
  96. package/src/tool/epidemic-sir-simulator/i18n/ru.ts +347 -0
  97. package/src/tool/epidemic-sir-simulator/i18n/sv.ts +347 -0
  98. package/src/tool/epidemic-sir-simulator/i18n/tr.ts +347 -0
  99. package/src/tool/epidemic-sir-simulator/i18n/zh.ts +347 -0
  100. package/src/tool/epidemic-sir-simulator/index.ts +12 -0
  101. package/src/tool/epidemic-sir-simulator/logic.ts +163 -0
  102. package/src/tool/epidemic-sir-simulator/seo.astro +16 -0
  103. package/src/tool/fermi-paradox-filter-lab/bibliography.astro +14 -0
  104. package/src/tool/fermi-paradox-filter-lab/bibliography.ts +24 -0
  105. package/src/tool/fermi-paradox-filter-lab/component.astro +257 -0
  106. package/src/tool/fermi-paradox-filter-lab/entry.ts +26 -0
  107. package/src/tool/fermi-paradox-filter-lab/fermi-paradox-filter-lab.css +228 -0
  108. package/src/tool/fermi-paradox-filter-lab/i18n/de.ts +192 -0
  109. package/src/tool/fermi-paradox-filter-lab/i18n/en.ts +192 -0
  110. package/src/tool/fermi-paradox-filter-lab/i18n/es.ts +193 -0
  111. package/src/tool/fermi-paradox-filter-lab/i18n/fr.ts +192 -0
  112. package/src/tool/fermi-paradox-filter-lab/i18n/id.ts +192 -0
  113. package/src/tool/fermi-paradox-filter-lab/i18n/it.ts +192 -0
  114. package/src/tool/fermi-paradox-filter-lab/i18n/ja.ts +192 -0
  115. package/src/tool/fermi-paradox-filter-lab/i18n/ko.ts +192 -0
  116. package/src/tool/fermi-paradox-filter-lab/i18n/nl.ts +192 -0
  117. package/src/tool/fermi-paradox-filter-lab/i18n/pl.ts +193 -0
  118. package/src/tool/fermi-paradox-filter-lab/i18n/pt.ts +192 -0
  119. package/src/tool/fermi-paradox-filter-lab/i18n/ru.ts +192 -0
  120. package/src/tool/fermi-paradox-filter-lab/i18n/sv.ts +192 -0
  121. package/src/tool/fermi-paradox-filter-lab/i18n/tr.ts +192 -0
  122. package/src/tool/fermi-paradox-filter-lab/i18n/zh.ts +192 -0
  123. package/src/tool/fermi-paradox-filter-lab/index.ts +11 -0
  124. package/src/tool/fermi-paradox-filter-lab/logic.ts +125 -0
  125. package/src/tool/fermi-paradox-filter-lab/seo.astro +15 -0
  126. package/src/tool/global-albedo-snowball-simulator/i18n/ru.ts +50 -63
  127. package/src/tool/lorenz-attractor/i18n/de.ts +52 -78
  128. package/src/tool/lorenz-attractor/i18n/es.ts +5 -5
  129. package/src/tool/lorenz-attractor/i18n/fr.ts +51 -77
  130. package/src/tool/lorenz-attractor/i18n/it.ts +36 -36
  131. package/src/tool/lorenz-attractor/i18n/pt.ts +51 -75
  132. package/src/tool/mandelbrot-fractal/i18n/de.ts +31 -58
  133. package/src/tool/mandelbrot-fractal/i18n/es.ts +5 -5
  134. package/src/tool/mandelbrot-fractal/i18n/fr.ts +39 -57
  135. package/src/tool/mandelbrot-fractal/i18n/it.ts +30 -48
  136. package/src/tool/mandelbrot-fractal/i18n/pl.ts +34 -52
  137. package/src/tool/mandelbrot-fractal/i18n/pt.ts +30 -30
  138. package/src/tool/mandelbrot-fractal/i18n/ru.ts +42 -60
  139. package/src/tool/mandelbrot-fractal/i18n/sv.ts +38 -65
  140. package/src/tool/natural-selection-drift/i18n/it.ts +18 -95
  141. package/src/tool/natural-selection-drift/i18n/pt.ts +76 -19
  142. package/src/tool/natural-selection-drift/i18n/ru.ts +27 -24
  143. package/src/tool/natural-selection-drift/i18n/sv.ts +9 -6
  144. package/src/tool/phase-diagram-critical-points/i18n/de.ts +30 -68
  145. package/src/tool/phase-diagram-critical-points/i18n/es.ts +4 -4
  146. package/src/tool/phase-diagram-critical-points/i18n/fr.ts +37 -75
  147. package/src/tool/phase-diagram-critical-points/i18n/it.ts +8 -8
  148. package/src/tool/planet-atmosphere-survival/i18n/ru.ts +49 -192
  149. package/src/tool/radioactive-decay/i18n/de.ts +16 -32
  150. package/src/tool/radioactive-decay/i18n/es.ts +5 -5
  151. package/src/tool/radioactive-decay/i18n/fr.ts +24 -40
  152. package/src/tool/radioactive-decay/i18n/it.ts +18 -35
  153. package/src/tool/radioactive-decay/i18n/pt.ts +34 -34
  154. package/src/tool/roche-limit-satellite-disruption/i18n/pl.ts +52 -128
  155. package/src/tool/temperature-timeline/i18n/de.ts +46 -174
  156. package/src/tool/temperature-timeline/i18n/es.ts +5 -5
  157. package/src/tool/temperature-timeline/i18n/fr.ts +69 -144
  158. package/src/tool/temperature-timeline/i18n/it.ts +34 -133
  159. package/src/tool/temperature-timeline/i18n/pt.ts +35 -174
  160. package/src/tool/temperature-timeline/i18n/ru.ts +48 -174
  161. package/src/tool/twin-paradox-visualizer/i18n/es.ts +5 -5
  162. package/src/tool/twin-paradox-visualizer/i18n/fr.ts +34 -34
  163. package/src/tool/twin-paradox-visualizer/i18n/pt.ts +31 -71
  164. package/src/tools.ts +4 -0
@@ -0,0 +1,192 @@
1
+ const description = 'Modellieren Sie das Fermi-Paradoxon mit Drake-Gleichungsparametern, evolutionären Filtern, Signallebensdauer und einer Zeitprojektion nachweisbarer Milchstraßenzivilisationen.';
2
+ const slug = 'fermi-paradoxon-filter-labor';
3
+ const title = 'Fermi Paradoxon Filter Labor';
4
+
5
+ const howTo = [
6
+ {
7
+ name: 'Drake-Pipeline abschätzen',
8
+ text: 'Bewegen Sie die Regler für Sternentstehung, bewohnbare Planeten, Leben, Intelligenz und Technologie, um festzulegen, wie oft die Milchstraße nachweisbare Zivilisationen hervorbringt.',
9
+ },
10
+ {
11
+ name: 'Filterstärke einstellen',
12
+ text: 'Erhöhen Sie den evolutionären Filter, wenn Kollaps, Selbstzerstörung, ökologische Instabilität oder technologische Engpässe Zivilisationen schneller auslöschen sollen.',
13
+ },
14
+ {
15
+ name: 'Lebensdauer mit Horizont vergleichen',
16
+ text: 'Nutzen Sie Signallebensdauer und Projektionshorizont zusammen. Eine kurze Lebensdauer kann eine Galaxie still erscheinen lassen, selbst wenn regelmäßig Zivilisationen entstehen.',
17
+ },
18
+ {
19
+ name: 'Zeitliche Kurve lesen',
20
+ text: 'Das Diagramm zeigt nachweisbare Zivilisationen im Zeitverlauf und macht Koexistenz und Aussterben sichtbar, anstatt das Fermi-Paradoxon auf eine einzige Zahl zu reduzieren.',
21
+ },
22
+ ];
23
+
24
+ const faq = [
25
+ {
26
+ question: 'Was berechnet dieser Fermi-Paradoxon-Simulator?',
27
+ answer: 'Er kombiniert Terme der Drake-Gleichung mit einem Überlebensfilter und einem Zeithorizont, um abzuschätzen, wie viele technologische Zivilisationen gleichzeitig in der Milchstraße nachweisbar sein könnten.',
28
+ },
29
+ {
30
+ question: 'Ist das eine Vorhersage echter außerirdischer Zivilisationen?',
31
+ answer: 'Nein. Es ist ein exploratives Modell. Der Wert liegt darin zu sehen, wie Annahmen zusammenspielen: Eine Galaxie kann im Laufe der Geschichte viele Zivilisationen hervorbringen und dennoch nur sehr wenige haben, die zeitlich mit uns überlappen.',
32
+ },
33
+ {
34
+ question: 'Was ist der Große Filter?',
35
+ answer: 'Der Große Filter ist die Idee, dass einer oder mehrere Schritte zwischen einfacher Chemie und langlebigen technologischen Zivilisationen extrem unwahrscheinlich oder gefährlich sind.',
36
+ },
37
+ {
38
+ question: 'Warum ist die Signallebensdauer so entscheidend?',
39
+ answer: 'Nachweisbarkeit hängt von Überlappung ab. Eine Zivilisation, die nur wenige Jahrhunderte sendet, kann real sein, aber für eine andere Zivilisation, die in einer anderen Epoche beobachtet, unsichtbar bleiben.',
40
+ },
41
+ {
42
+ question: 'Wie sollte ich die Anteile für Leben und Intelligenz wählen?',
43
+ answer: 'Verwenden Sie niedrige Werte für ein pessimistisches Szenario mit seltenem Leben und höhere Werte, wenn Sie die Möglichkeit erkunden, dass Biologie oder Intelligenz auf stabilen bewohnbaren Welten häufig entstehen.',
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: 'Projizierte nachweisbare Zivilisationen im Zeitverlauf',
56
+ metricsLabel: 'Kennzahlen des Fermi-Modells',
57
+ controlsLabel: 'Steuerung des Fermi-Modells',
58
+ birthRate: 'Geburtenrate',
59
+ peakCivilizations: 'Maximale Zivilisationen',
60
+ finalCivilizations: 'Endgültige Zivilisationen',
61
+ silenceScore: 'Stille-Score',
62
+ starFormationRate: 'Sternentstehungsrate',
63
+ habitableFraction: 'Anteil bewohnbarer Planeten',
64
+ lifeFraction: 'Anteil der Lebensentstehung',
65
+ intelligenceFraction: 'Anteil der Intelligenz',
66
+ technologyFraction: 'Anteil der Technologie',
67
+ signalLifetime: 'Signallebensdauer',
68
+ filterSeverity: 'Filterstärke',
69
+ horizonYears: 'Projektionshorizont',
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: 'Ein praktischer Fermi-Paradoxon-Simulator für Annahmen der Drake-Gleichung',
86
+ level: 2,
87
+ },
88
+ {
89
+ type: 'paragraph',
90
+ html: 'Das Fermi-Paradoxon fragt, warum der Nachthimmel still erscheint, obwohl die Milchstraße Hunderte Milliarden Sterne und viele Planeten enthält. Dieses Tool verwandelt diese Frage in ein interaktives Modell, indem es die Drake-Gleichung mit evolutionären Filtern und einer Zeitprojektion nachweisbarer Zivilisationen kombiniert.',
91
+ },
92
+ {
93
+ type: 'paragraph',
94
+ html: 'Statt einer einzelnen statischen Schätzung zeigt der Simulator, wie Zivilisationen entstehen, nachweisbar werden und wieder verschwinden können, bevor eine andere Gesellschaft die Chance hat, sie zu hören. Dieses Timing-Problem ist zentral für SETI, denn zwei technologische Kulturen müssen sich in Raum, Zeit und Signalverhalten überlappen.',
95
+ },
96
+ {
97
+ type: 'title',
98
+ text: 'Wie das Modell die Parameter der Drake-Gleichung nutzt',
99
+ level: 3,
100
+ },
101
+ {
102
+ type: 'paragraph',
103
+ html: 'Die ersten Regler bilden eine vereinfachte Drake-Pipeline. Die Sternentstehung liefert neue Sternsysteme. Ein Teil dieser Systeme bildet bewohnbare Planeten, ein Teil der bewohnbaren Planeten entwickelt Leben, ein Teil der belebten Welten bringt Intelligenz hervor, und ein Teil der intelligenten Spezies wird durch Technologie nachweisbar.',
104
+ },
105
+ {
106
+ type: 'table',
107
+ headers: ['Regler', 'Bedeutung', 'Effekt'],
108
+ rows: [
109
+ ['Sternentstehungsrate', 'Neue Sterne pro Jahr in der Milchstraße', 'Erhöht oder verringert das Rohangebot möglicher Systeme'],
110
+ ['Anteil bewohnbarer Planeten', 'Anteil der Systeme mit stabilen Welten, auf denen flüssiges Wasser beständig sein kann', 'Steuert, wie viel der Galaxie in die biologische Pipeline eintritt'],
111
+ ['Anteil der Lebensentstehung', 'Wahrscheinlichkeit, dass auf einer bewohnbaren Welt einfaches Leben beginnt', 'Testet Annahmen über seltenes versus häufiges Leben'],
112
+ ['Anteil der Intelligenz', 'Wahrscheinlichkeit, dass Leben eine technologiefähige Kognition entwickelt', 'Stellt biologische und ökologische Engpässe dar'],
113
+ ['Anteil der Technologie', 'Wahrscheinlichkeit, dass Intelligenz nachweisbare Signale produziert', 'Erfasst kulturelle, technische und kommunikative Entscheidungen'],
114
+ ],
115
+ },
116
+ {
117
+ type: 'title',
118
+ text: 'Warum Filter eine belebte Galaxie leer erscheinen lassen können',
119
+ level: 3,
120
+ },
121
+ {
122
+ type: 'paragraph',
123
+ html: 'Der Regler für die Filterstärke fasst viele mögliche Versagenspunkte in einen einzigen Überlebensdruck zusammen: Asteroideneinschläge, instabile Klimata, Selbstzerstörung, Ressourcenkollaps, Risiken künstlicher Intelligenz oder andere Engpässe, die die nachweisbare Phase verkürzen. Ein starker Filter bedeutet nicht, dass Zivilisationen nie entstehen. Es bedeutet, dass sie selten lange sichtbar bleiben.',
124
+ },
125
+ {
126
+ type: 'paragraph',
127
+ html: 'Diese Unterscheidung ist wichtig. Die Milchstraße könnte in der Tiefe der Zeit Tausende technologischer Spezies hervorgebracht haben, während kaum Nachbarn in unserem eigenen schmalen Lauschfenster aktiv sind. Das Diagramm macht diesen Unterschied sichtbar, indem es nachweisbare Zivilisationen über den gewählten Projektionshorizont hinweg darstellt.',
128
+ },
129
+ {
130
+ type: 'title',
131
+ text: 'Den Stille-Score interpretieren',
132
+ level: 3,
133
+ },
134
+ {
135
+ type: 'paragraph',
136
+ html: 'Der Stille-Score steigt, wenn die endgültige Anzahl überlappender nachweisbarer Zivilisationen niedrig ist. Hohe Stille beweist nicht, dass der Mensch allein ist; sie zeigt, dass die gewählten Annahmen eine Nichtentdeckung nicht überraschend machen. Niedrige Stille bedeutet, dass das Modell eine lautere Galaxie erwartet, sodass das Fehlen von Beweisen interessanter wird.',
137
+ },
138
+ {
139
+ type: 'list',
140
+ items: [
141
+ '<strong>Hohe Geburtenrate plus niedriger Filter:</strong> eine dicht besiedelte Galaxie, in der SETI-Stille schwerer zu erklären ist.',
142
+ '<strong>Hohe Geburtenrate plus hoher Filter:</strong> viele Zivilisationen entstehen, aber nur wenige überleben lange genug, um sich zu überlappen.',
143
+ '<strong>Niedrige biologische Anteile:</strong> Leben oder Intelligenz ist selten, sodass Stille entstehen kann, bevor Technologie überhaupt relevant wird.',
144
+ '<strong>Kurze Signallebensdauer:</strong> Zivilisationen mögen existieren, aber zu kurz senden, als dass Kontakt wahrscheinlich wäre.',
145
+ ],
146
+ },
147
+ {
148
+ type: 'title',
149
+ text: 'Anwendungsfälle für Lehre, Debatte und SETI-Intuition',
150
+ level: 3,
151
+ },
152
+ {
153
+ type: 'paragraph',
154
+ html: 'Das Fermi-Paradoxon Filter-Labor ist nützlich im Astronomieunterricht, in der Astrobiologie-Diskussion, der Wissenschaftskommunikation und in philosophischen Debatten über die Zukunft der Menschheit. Es hilft, drei oft vermischte Fragen zu trennen: wie oft Zivilisationen entstehen, wie lange sie nachweisbar bleiben und ob ihre Zeitlinien mit unserer überlappen.',
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 = 'Model the Fermi paradox with Drake equation inputs, evolutionary filters, signal lifetime, and a time projection of detectable Milky Way civilizations.';
2
+ const slug = 'fermi-paradox-filter-lab';
3
+ const title = 'Fermi Paradox Filter Lab';
4
+
5
+ const howTo = [
6
+ {
7
+ name: 'Estimate the Drake pipeline',
8
+ text: 'Move the star formation, habitable planet, life, intelligence, and technology sliders to define how often the Milky Way creates detectable civilizations.',
9
+ },
10
+ {
11
+ name: 'Set the filter strength',
12
+ text: 'Increase the evolutionary filter when you want collapse, self-destruction, ecological instability, or technological bottlenecks to remove civilizations faster.',
13
+ },
14
+ {
15
+ name: 'Compare lifetime with horizon',
16
+ text: 'Use signal lifetime and projection horizon together. A short lifetime can make a galaxy silent even when civilizations are born regularly.',
17
+ },
18
+ {
19
+ name: 'Read the temporal curve',
20
+ text: 'The chart shows detectable civilizations through time, making coexistence and extinction visible instead of reducing the Fermi paradox to one number.',
21
+ },
22
+ ];
23
+
24
+ const faq = [
25
+ {
26
+ question: 'What does this Fermi paradox simulator calculate?',
27
+ answer: 'It combines Drake equation terms with a survival filter and a time horizon to estimate how many technological civilizations may be detectable at the same time in the Milky Way.',
28
+ },
29
+ {
30
+ question: 'Is this a prediction of real alien civilizations?',
31
+ answer: 'No. It is an exploratory model. The value is in seeing how assumptions interact: a galaxy can produce many civilizations across history while still having very few that overlap with us.',
32
+ },
33
+ {
34
+ question: 'What is the Great Filter?',
35
+ answer: 'The Great Filter is the idea that one or more steps between simple chemistry and long-lived technological civilization are extremely unlikely or dangerous.',
36
+ },
37
+ {
38
+ question: 'Why does signal lifetime matter so much?',
39
+ answer: 'Detectability depends on overlap. A civilization that broadcasts for only a few centuries may be real but invisible to another civilization observing in a different epoch.',
40
+ },
41
+ {
42
+ question: 'How should I choose the life and intelligence fractions?',
43
+ answer: 'Use low values for a pessimistic rare-life scenario and higher values when exploring the possibility that biology or intelligence emerges often on stable habitable worlds.',
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: 'Projected detectable civilizations through time',
56
+ metricsLabel: 'Fermi model metrics',
57
+ controlsLabel: 'Fermi model controls',
58
+ birthRate: 'Birth rate',
59
+ peakCivilizations: 'Peak civilizations',
60
+ finalCivilizations: 'Final civilizations',
61
+ silenceScore: 'Silence score',
62
+ starFormationRate: 'Star formation rate',
63
+ habitableFraction: 'Habitable planet fraction',
64
+ lifeFraction: 'Life emergence fraction',
65
+ intelligenceFraction: 'Intelligence fraction',
66
+ technologyFraction: 'Technology fraction',
67
+ signalLifetime: 'Signal lifetime',
68
+ filterSeverity: 'Filter severity',
69
+ horizonYears: 'Projection horizon',
70
+ maxLabel: 'max',
71
+ yearUnit: 'yr',
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: 'A practical Fermi paradox simulator for Drake equation assumptions',
86
+ level: 2,
87
+ },
88
+ {
89
+ type: 'paragraph',
90
+ html: 'The Fermi paradox asks why the night sky appears silent if the Milky Way contains hundreds of billions of stars and many planets. This tool turns that question into an interactive model by combining the Drake equation with evolutionary filters and a time projection of detectable civilizations.',
91
+ },
92
+ {
93
+ type: 'paragraph',
94
+ html: 'Instead of giving a single static estimate, the simulator shows how civilizations can be born, become detectable, and vanish before another society has a chance to hear them. That timing problem is central to SETI because two technological cultures must overlap in space, time, and signal behavior.',
95
+ },
96
+ {
97
+ type: 'title',
98
+ text: 'How the model uses Drake equation parameters',
99
+ level: 3,
100
+ },
101
+ {
102
+ type: 'paragraph',
103
+ html: 'The first controls represent a simplified Drake pipeline. Star formation supplies new stellar systems. A fraction of those systems form habitable planets, a fraction of habitable planets develop life, a fraction of living worlds produce intelligence, and a fraction of intelligent species become detectable through technology.',
104
+ },
105
+ {
106
+ type: 'table',
107
+ headers: ['Control', 'Meaning', 'Effect'],
108
+ rows: [
109
+ ['Star formation rate', 'New stars per year in the Milky Way', 'Raises or lowers the raw supply of possible systems'],
110
+ ['Habitable planet fraction', 'Share of systems with stable worlds where liquid water chemistry could persist', 'Controls how much of the galaxy enters the biological pipeline'],
111
+ ['Life emergence fraction', 'Probability that simple life begins on a habitable world', 'Tests rare-life versus common-life assumptions'],
112
+ ['Intelligence fraction', 'Probability that life evolves technology-capable cognition', 'Represents biological and ecological bottlenecks'],
113
+ ['Technology fraction', 'Probability that intelligence produces detectable signals', 'Captures culture, engineering, and communication choices'],
114
+ ],
115
+ },
116
+ {
117
+ type: 'title',
118
+ text: 'Why filters can make a busy galaxy look empty',
119
+ level: 3,
120
+ },
121
+ {
122
+ type: 'paragraph',
123
+ html: 'The filter severity slider compresses many possible failure points into one survival pressure: asteroid impacts, unstable climates, self-destruction, resource collapse, artificial intelligence risk, or any other bottleneck that shortens the detectable phase. A strong filter does not mean civilizations never arise. It means they rarely remain visible for long.',
124
+ },
125
+ {
126
+ type: 'paragraph',
127
+ html: 'That distinction matters. The Milky Way could have produced thousands of technological species over deep time while leaving almost no neighbors active during our own narrow listening window. The chart makes this difference visible by plotting detectable civilizations through the selected projection horizon.',
128
+ },
129
+ {
130
+ type: 'title',
131
+ text: 'Interpreting the silence score',
132
+ level: 3,
133
+ },
134
+ {
135
+ type: 'paragraph',
136
+ html: 'The silence score rises when the final number of overlapping detectable civilizations is low. High silence does not prove that humans are alone; it shows that the chosen assumptions make non-detection unsurprising. Low silence means the model expects a louder galaxy, so the absence of evidence becomes more interesting.',
137
+ },
138
+ {
139
+ type: 'list',
140
+ items: [
141
+ '<strong>High birth rate plus low filter:</strong> a crowded galaxy where SETI silence is harder to explain.',
142
+ '<strong>High birth rate plus high filter:</strong> many civilizations appear, but few survive long enough to overlap.',
143
+ '<strong>Low biological fractions:</strong> life or intelligence is rare, so silence can emerge before technology even matters.',
144
+ '<strong>Short signal lifetime:</strong> civilizations may exist but broadcast too briefly for contact to be likely.',
145
+ ],
146
+ },
147
+ {
148
+ type: 'title',
149
+ text: 'Use cases for teaching, debate, and SETI intuition',
150
+ level: 3,
151
+ },
152
+ {
153
+ type: 'paragraph',
154
+ html: 'The Fermi Paradox Filter Lab is useful in astronomy lessons, astrobiology discussions, science communication, and philosophical debates about humanitys future. It helps separate three questions that are often blended together: how often civilizations are born, how long they remain detectable, and whether their timelines overlap with ours.',
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,193 @@
1
+ const description =
2
+ 'Modela la paradoja de Fermi con parámetros de la ecuación de Drake, filtros evolutivos, vida útil de la señal y una proyección temporal de las civilizaciones detectables de la Vía Láctea.';
3
+ const slug = 'laboratorio-filtro-paradoja-fermi';
4
+ const title = 'Laboratorio de Filtros de la Paradoja de Fermi';
5
+
6
+ const howTo = [
7
+ {
8
+ name: 'Estima el pipeline de Drake',
9
+ text: 'Mueve los controles deslizantes de formación estelar, planetas habitables, vida, inteligencia y tecnología para definir con qué frecuencia la Vía Láctea genera civilizaciones detectables.',
10
+ },
11
+ {
12
+ name: 'Ajusta la intensidad del filtro',
13
+ text: 'Aumenta el filtro evolutivo cuando quieras que el colapso, la autodestrucción, la inestabilidad ecológica o los cuellos de botella tecnológicos eliminen civilizaciones más rápido.',
14
+ },
15
+ {
16
+ name: 'Compara la vida útil con el horizonte',
17
+ text: 'Usa la vida útil de la señal y el horizonte de proyección juntos. Una vida útil corta puede silenciar una galaxia incluso cuando nacen civilizaciones con regularidad.',
18
+ },
19
+ {
20
+ name: 'Interpreta la curva temporal',
21
+ text: 'El gráfico muestra civilizaciones detectables a través del tiempo, haciendo visibles la coexistencia y la extinción en lugar de reducir la paradoja de Fermi a un solo número.',
22
+ },
23
+ ];
24
+
25
+ const faq = [
26
+ {
27
+ question: '¿Qué calcula este simulador de la paradoja de Fermi?',
28
+ answer: 'Combina los términos de la ecuación de Drake con un filtro de supervivencia y un horizonte temporal para estimar cuántas civilizaciones tecnológicas podrían ser detectables al mismo tiempo en la Vía Láctea.',
29
+ },
30
+ {
31
+ question: '¿Es esto una predicción de civilizaciones alienígenas reales?',
32
+ answer: 'No. Es un modelo exploratorio. El valor está en ver cómo interactúan los supuestos: una galaxia puede producir muchas civilizaciones a lo largo de la historia y aun así tener muy pocas que se superpongan con la nuestra.',
33
+ },
34
+ {
35
+ question: '¿Qué es el Gran Filtro?',
36
+ answer: 'El Gran Filtro es la idea de que uno o más pasos entre la química simple y una civilización tecnológica longeva son extremadamente improbables o peligrosos.',
37
+ },
38
+ {
39
+ question: '¿Por qué es tan importante la vida útil de la señal?',
40
+ answer: 'La detectabilidad depende de la superposición. Una civilización que transmite durante solo unos siglos puede ser real pero invisible para otra civilización que observa en una época diferente.',
41
+ },
42
+ {
43
+ question: '¿Cómo debo elegir las fracciones de vida e inteligencia?',
44
+ answer: 'Usa valores bajos para un escenario pesimista de vida rara y valores más altos cuando explores la posibilidad de que la biología o la inteligencia surjan con frecuencia en mundos habitables estables.',
45
+ },
46
+ ];
47
+
48
+ import { bibliography } from '../bibliography';
49
+ import type { ToolLocaleContent } from '../../../types';
50
+
51
+ export const content: ToolLocaleContent = {
52
+ slug,
53
+ title,
54
+ description,
55
+ ui: {
56
+ chartLabel: 'Civilizaciones detectables proyectadas a través del tiempo',
57
+ metricsLabel: 'Métricas del modelo de Fermi',
58
+ controlsLabel: 'Controles del modelo de Fermi',
59
+ birthRate: 'Tasa de natalidad',
60
+ peakCivilizations: 'Pico de civilizaciones',
61
+ finalCivilizations: 'Civilizaciones finales',
62
+ silenceScore: 'Puntuación de silencio',
63
+ starFormationRate: 'Tasa de formación estelar',
64
+ habitableFraction: 'Fracción de planetas habitables',
65
+ lifeFraction: 'Fracción de surgimiento de vida',
66
+ intelligenceFraction: 'Fracción de inteligencia',
67
+ technologyFraction: 'Fracción de tecnología',
68
+ signalLifetime: 'Vida útil de la señal',
69
+ filterSeverity: 'Severidad del filtro',
70
+ horizonYears: 'Horizonte de proyección',
71
+ maxLabel: 'máx',
72
+ yearUnit: 'a',
73
+ silenceScale: '100',
74
+ step01: '01',
75
+ step02: '02',
76
+ step03: '03',
77
+ step04: '04',
78
+ step05: '05',
79
+ step06: '06',
80
+ step07: '07',
81
+ step08: '08',
82
+ },
83
+ seo: [
84
+ {
85
+ type: 'title',
86
+ text: 'Un simulador práctico de la paradoja de Fermi para los supuestos de la ecuación de Drake',
87
+ level: 2,
88
+ },
89
+ {
90
+ type: 'paragraph',
91
+ html: 'La paradoja de Fermi pregunta por qué el cielo nocturno parece silencioso si la Vía Láctea contiene cientos de miles de millones de estrellas y muchos planetas. Esta herramienta convierte esa pregunta en un modelo interactivo al combinar la ecuación de Drake con filtros evolutivos y una proyección temporal de civilizaciones detectables.',
92
+ },
93
+ {
94
+ type: 'paragraph',
95
+ html: 'En lugar de ofrecer una estimación estática única, el simulador muestra cómo las civilizaciones pueden nacer, volverse detectables y desaparecer antes de que otra sociedad tenga la oportunidad de escucharlas. Ese problema de sincronización es central para SETI porque dos culturas tecnológicas deben superponerse en espacio, tiempo y comportamiento de la señal.',
96
+ },
97
+ {
98
+ type: 'title',
99
+ text: 'Cómo utiliza el modelo los parámetros de la ecuación de Drake',
100
+ level: 3,
101
+ },
102
+ {
103
+ type: 'paragraph',
104
+ html: 'Los primeros controles representan un pipeline simplificado de Drake. La formación estelar suministra nuevos sistemas estelares. Una fracción de esos sistemas forma planetas habitables, una fracción de planetas habitables desarrolla vida, una fracción de mundos vivos produce inteligencia y una fracción de especies inteligentes se vuelve detectable a través de la tecnología.',
105
+ },
106
+ {
107
+ type: 'table',
108
+ headers: ['Control', 'Significado', 'Efecto'],
109
+ rows: [
110
+ ['Tasa de formación estelar', 'Estrellas nuevas por año en la Vía Láctea', 'Aumenta o reduce el suministro bruto de sistemas posibles'],
111
+ ['Fracción de planetas habitables', 'Proporción de sistemas con mundos estables donde la química del agua líquida podría persistir', 'Controla cuánto de la galaxia entra en el pipeline biológico'],
112
+ ['Fracción de surgimiento de vida', 'Probabilidad de que la vida simple comience en un mundo habitable', 'Contrasta supuestos de vida rara frente a vida común'],
113
+ ['Fracción de inteligencia', 'Probabilidad de que la vida evolucione cognición capaz de tecnología', 'Representa cuellos de botella biológicos y ecológicos'],
114
+ ['Fracción de tecnología', 'Probabilidad de que la inteligencia produzca señales detectables', 'Captura decisiones culturales, de ingeniería y de comunicación'],
115
+ ],
116
+ },
117
+ {
118
+ type: 'title',
119
+ text: 'Por qué los filtros pueden hacer que una galaxia ocupada parezca vacía',
120
+ level: 3,
121
+ },
122
+ {
123
+ type: 'paragraph',
124
+ html: 'El control deslizante de severidad del filtro comprime muchos posibles puntos de fallo en una sola presión de supervivencia: impactos de asteroides, climas inestables, autodestrucción, colapso de recursos, riesgo de inteligencia artificial o cualquier otro cuello de botella que acorte la fase detectable. Un filtro fuerte no significa que las civilizaciones nunca surjan. Significa que rara vez permanecen visibles durante mucho tiempo.',
125
+ },
126
+ {
127
+ type: 'paragraph',
128
+ html: 'Esa distinción importa. La Vía Láctea podría haber producido miles de especies tecnológicas a lo largo del tiempo profundo mientras deja casi ningún vecino activo durante nuestra propia y estrecha ventana de escucha. El gráfico hace visible esta diferencia al representar las civilizaciones detectables a través del horizonte de proyección seleccionado.',
129
+ },
130
+ {
131
+ type: 'title',
132
+ text: 'Interpretación de la puntuación de silencio',
133
+ level: 3,
134
+ },
135
+ {
136
+ type: 'paragraph',
137
+ html: 'La puntuación de silencio aumenta cuando el número final de civilizaciones detectables superpuestas es bajo. Un silencio alto no prueba que los humanos estén solos; muestra que los supuestos elegidos hacen que la no detección no sea sorprendente. Un silencio bajo significa que el modelo espera una galaxia más ruidosa, por lo que la ausencia de evidencia se vuelve más interesante.',
138
+ },
139
+ {
140
+ type: 'list',
141
+ items: [
142
+ '<strong>Tasa de natalidad alta más filtro bajo:</strong> una galaxia poblada donde el silencio de SETI es más difícil de explicar.',
143
+ '<strong>Tasa de natalidad alta más filtro alto:</strong> aparecen muchas civilizaciones, pero pocas sobreviven lo suficiente para superponerse.',
144
+ '<strong>Fracciones biológicas bajas:</strong> la vida o la inteligencia es rara, por lo que el silencio puede surgir antes de que la tecnología importe siquiera.',
145
+ '<strong>Vida útil de la señal corta:</strong> las civilizaciones pueden existir pero transmitir demasiado brevemente para que el contacto sea probable.',
146
+ ],
147
+ },
148
+ {
149
+ type: 'title',
150
+ text: 'Casos de uso para la enseñanza, el debate y la intuición de SETI',
151
+ level: 3,
152
+ },
153
+ {
154
+ type: 'paragraph',
155
+ html: 'El Laboratorio de Filtros de la Paradoja de Fermi es útil en clases de astronomía, discusiones de astrobiología, divulgación científica y debates filosóficos sobre el futuro de la humanidad. Ayuda a separar tres preguntas que a menudo se mezclan: con qué frecuencia nacen las civilizaciones, cuánto tiempo permanecen detectables y si sus líneas de tiempo se superponen con la nuestra.',
156
+ },
157
+ ],
158
+ faq,
159
+ bibliography,
160
+ howTo,
161
+ schemas: [
162
+ {
163
+ '@context': 'https://schema.org',
164
+ '@type': 'SoftwareApplication',
165
+ name: title,
166
+ description,
167
+ applicationCategory: 'ScientificApplication',
168
+ operatingSystem: 'Any',
169
+ },
170
+ {
171
+ '@context': 'https://schema.org',
172
+ '@type': 'FAQPage',
173
+ mainEntity: faq.map((item) => ({
174
+ '@type': 'Question',
175
+ name: item.question,
176
+ acceptedAnswer: {
177
+ '@type': 'Answer',
178
+ text: item.answer,
179
+ },
180
+ })),
181
+ },
182
+ {
183
+ '@context': 'https://schema.org',
184
+ '@type': 'HowTo',
185
+ name: title,
186
+ step: howTo.map((step) => ({
187
+ '@type': 'HowToStep',
188
+ name: step.name,
189
+ text: step.text,
190
+ })),
191
+ },
192
+ ],
193
+ };