@jjlmoya/utils-science 1.33.0 → 1.35.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 +3 -1
- package/src/entries.ts +5 -1
- package/src/index.ts +2 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/natural-selection-drift/component.astro +37 -6
- package/src/tool/natural-selection-drift/natural-selection-drift.css +134 -0
- package/src/tool/roche-limit-satellite-disruption/bibliography.astro +14 -0
- package/src/tool/roche-limit-satellite-disruption/bibliography.ts +16 -0
- package/src/tool/roche-limit-satellite-disruption/component.astro +97 -0
- package/src/tool/roche-limit-satellite-disruption/entry.ts +28 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/de.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/en.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/es.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/fr.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/id.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/it.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/ja.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/ko.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/nl.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/pl.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/pt.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/ru.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/sv.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/tr.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/i18n/zh.ts +229 -0
- package/src/tool/roche-limit-satellite-disruption/index.ts +11 -0
- package/src/tool/roche-limit-satellite-disruption/logic.ts +102 -0
- package/src/tool/roche-limit-satellite-disruption/particle-system.ts +66 -0
- package/src/tool/roche-limit-satellite-disruption/roche-limit-satellite-disruption-calculator.css +568 -0
- package/src/tool/roche-limit-satellite-disruption/script.ts +274 -0
- package/src/tool/roche-limit-satellite-disruption/seo.astro +15 -0
- package/src/tool/roche-limit-satellite-disruption/storage.ts +28 -0
- package/src/tool/roche-limit-satellite-disruption/visual-data.ts +16 -0
- package/src/tool/three-body-problem/app.ts +274 -0
- package/src/tool/three-body-problem/bibliography.astro +14 -0
- package/src/tool/three-body-problem/bibliography.ts +16 -0
- package/src/tool/three-body-problem/component.astro +70 -0
- package/src/tool/three-body-problem/entry.ts +26 -0
- package/src/tool/three-body-problem/i18n/de.ts +162 -0
- package/src/tool/three-body-problem/i18n/en.ts +162 -0
- package/src/tool/three-body-problem/i18n/es.ts +162 -0
- package/src/tool/three-body-problem/i18n/fr.ts +162 -0
- package/src/tool/three-body-problem/i18n/id.ts +162 -0
- package/src/tool/three-body-problem/i18n/it.ts +162 -0
- package/src/tool/three-body-problem/i18n/ja.ts +162 -0
- package/src/tool/three-body-problem/i18n/ko.ts +162 -0
- package/src/tool/three-body-problem/i18n/nl.ts +162 -0
- package/src/tool/three-body-problem/i18n/pl.ts +162 -0
- package/src/tool/three-body-problem/i18n/pt.ts +162 -0
- package/src/tool/three-body-problem/i18n/ru.ts +162 -0
- package/src/tool/three-body-problem/i18n/sv.ts +162 -0
- package/src/tool/three-body-problem/i18n/tr.ts +162 -0
- package/src/tool/three-body-problem/i18n/zh.ts +162 -0
- package/src/tool/three-body-problem/index.ts +11 -0
- package/src/tool/three-body-problem/logic/ThreeBodyEngine.ts +179 -0
- package/src/tool/three-body-problem/seo.astro +15 -0
- package/src/tool/three-body-problem/three-body-problem-simulator.css +503 -0
- package/src/tools.ts +4 -0
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'roche-grenze-satellitenzerstoerung-rechner';
|
|
5
|
+
const title = 'Roche Grenze Rechner und Satellitenzerstörungssimulator';
|
|
6
|
+
const description = 'Berechne die Roche Grenze für Planeten und Monde, vergleiche fluide und starre Zerfallsdistanzen und visualisiere, wie Gezeitenkräfte einen Satelliten in ein Ringsystem verwandeln.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Wähle den Primärkörper',
|
|
11
|
+
text: 'Wähle den Planeten, dessen Schwerkraft den Satelliten dehnt. Der Rechner lädt seinen Radius, seine Dichte und seine Masse für die Roche Grenze und Umlaufzeitschätzungen.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Wähle den Satellitentyp',
|
|
15
|
+
text: 'Wähle einen Eismond, Gesteinsmond, Trümmerhaufen oder eisenreichen Körper. Dichte und innere Kohäsion verändern die Zerfallsgrenze.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Bewege den Orbitregler',
|
|
19
|
+
text: 'Ziehe die orbitale Distanz nach innen oder außen. Die visuelle Scheibe zeigt, ob der Satellit außerhalb der Roche Grenze ist, sie streift, fragmentiert oder bereits zu einem Ring wird.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'Vergleiche die Grenzen',
|
|
23
|
+
text: 'Nutze die Anzeigen, um die klassische fluide Roche Grenze mit der niedrigeren starren Schätzung und der kohäsionsangepassten Betriebsgrenze zu vergleichen.',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const faq = [
|
|
28
|
+
{
|
|
29
|
+
question: 'Was ist die Roche Grenze?',
|
|
30
|
+
answer: 'Die Roche Grenze ist der Abstand von einem massiven Primärkörper, bei dem die Gezeitenkräfte auf einen kleineren umlaufenden Körper stark genug werden, um die Eigengravitation des kleineren Körpers zu überwinden. Innerhalb dieser Grenze kann ein schwacher oder fluider Satellit auseinandergerissen werden.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'Warum gibt es fluide und starre Roche Grenzen?',
|
|
34
|
+
answer: 'Ein fluider Satellit verformt sich leicht, daher können Gezeiten seine Verlängerung verstärken und ihn weiter vom Planeten entfernt zerstören. Ein starrer Satellit kann der Verformung durch Materialfestigkeit widerstehen, daher setzt die einfache starre Schätzung den Zerfall näher am Primärkörper an.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: 'Wird jeder Mond innerhalb der Roche Grenze sofort zu Ringen?',
|
|
38
|
+
answer: 'Nein. Echte Zerstörung hängt von Rotation, Zusammensetzung, Rissen, Porosität, Erwärmung, Einschlägen und Materialfestigkeit ab. Dieses Werkzeug zeigt die klassische Gravitationsgrenze und verwendet ein Übergangsband, um Risiko zu kommunizieren, statt einen sofortigen Schalter.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: 'Warum hängen Saturnringe mit der Roche Grenze Physik zusammen?',
|
|
42
|
+
answer: 'Saturns Ringe befinden sich in einer Region, in der eisiges Material als Partikel bestehen bleiben kann, statt zu einem großen Mond zu akkretieren. Die Roche Grenze hilft zu erklären, warum Ringpartikel nahe am Planeten verteilt bleiben.',
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
export const content: ToolLocaleContent = {
|
|
47
|
+
slug,
|
|
48
|
+
title,
|
|
49
|
+
description,
|
|
50
|
+
ui: {
|
|
51
|
+
primaryBody: 'Primärkörper',
|
|
52
|
+
satelliteType: 'Satellitentyp',
|
|
53
|
+
orbitDistance: 'Orbitale Entfernung',
|
|
54
|
+
rocheBoundary: 'Roche Grenze',
|
|
55
|
+
fluidLimit: 'Fluide Grenze',
|
|
56
|
+
rigidLimit: 'Starre Grenze',
|
|
57
|
+
activeLimit: 'Aktive Grenze',
|
|
58
|
+
safetyRatio: 'Sicherheitsverhältnis',
|
|
59
|
+
orbitalPeriod: 'Umlaufzeit',
|
|
60
|
+
tidalStress: 'Gezeitenstress',
|
|
61
|
+
ringFormation: 'Ringbildung',
|
|
62
|
+
stable: 'Stabiler Orbit',
|
|
63
|
+
grazing: 'Gezeitenstreifung',
|
|
64
|
+
fragmenting: 'Fragmentierung',
|
|
65
|
+
ring: 'Ringsystem',
|
|
66
|
+
km: 'km',
|
|
67
|
+
hours: 'h',
|
|
68
|
+
density: 'Dichte',
|
|
69
|
+
cohesion: 'Kohäsion',
|
|
70
|
+
planetRadius: 'Planetenradius',
|
|
71
|
+
reset: 'Zurücksetzen',
|
|
72
|
+
closePass: 'Naher Vorbeiflug',
|
|
73
|
+
moonTrack: 'Mondspur',
|
|
74
|
+
debrisTrack: 'Trümmerspur',
|
|
75
|
+
},
|
|
76
|
+
seo: [
|
|
77
|
+
{
|
|
78
|
+
type: 'title',
|
|
79
|
+
text: 'Roche Grenze Formel, Bedeutung und Wie Man Diesen Rechner Nutzt',
|
|
80
|
+
level: 2,
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
type: 'paragraph',
|
|
84
|
+
html: 'Die <strong>Roche Grenze</strong> ist der minimale orbitale Abstand, bei dem ein Satellit, der hauptsächlich durch seine eigene Schwerkraft zusammengehalten wird, einen größeren Körper umkreisen kann, ohne durch Gezeitenkräfte auseinandergerissen zu werden. Menschen suchen danach, wenn sie wissen wollen, ob ein Mond, Komet, Asteroid oder ein künstliches Szenario eine nahe Begegnung mit einem Planeten überleben würde, oder ob sich das Material zu einem Ring ausbreiten würde. Dieser Rechner beantwortet diese Frage, indem er den Planetenradius, die Planetendichte, die Satellitendichte und die ungefähre innere Festigkeit des Satelliten kombiniert.',
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
type: 'paragraph',
|
|
88
|
+
html: 'Die Kernidee ist einfach: Die Schwerkraft ist nicht überall auf dem Satelliten gleich stark. Die nahe Seite wird stärker angezogen als die ferne Seite, was eine Dehnungskraft erzeugt. Wenn diese Gezeitendehnung stärker ist als die Eigengravitation und Materialkohäsion des Satelliten, kann der Körper reißen, Masse verlieren und schließlich fragmentieren. Die Roche Grenze ist daher nicht nur eine Entfernung; sie ist ein Vergleich zwischen äußerem Gezeitenstress und innerer Bindung.',
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
type: 'title',
|
|
92
|
+
text: 'Vom Rechner Verwendete Roche Grenze Gleichungen',
|
|
93
|
+
level: 3,
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type: 'paragraph',
|
|
97
|
+
html: 'Für einen fluiden oder sehr schwachen Satelliten ist die klassische Näherung <strong>d = 2.44 R (rho_M / rho_m)^(1/3)</strong>. Für einen starren Satelliten ist eine gebräuchliche Näherung <strong>d = 1.26 R (rho_M / rho_m)^(1/3)</strong>. In diesen Gleichungen ist <strong>d</strong> die vom Planetenmittelpunkt gemessene Roche Grenze, <strong>R</strong> der Radius des Primärkörpers, <strong>rho_M</strong> die Dichte des Primärkörpers und <strong>rho_m</strong> die Dichte des Satelliten.',
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: 'list',
|
|
101
|
+
items: [
|
|
102
|
+
'<strong>Primärradius:</strong> Größere Planeten erzeugen eine größere Roche Grenze, selbst bei ähnlicher Dichte.',
|
|
103
|
+
'<strong>Primärdichte:</strong> Ein dichterer Primär erhöht die Gezeitenstärke bei einem gegebenen Vielfachen seines Radius.',
|
|
104
|
+
'<strong>Satellitendichte:</strong> Ein dichterer Satellit hat eine stärkere Eigengravitation, kann also näher am Planeten überleben.',
|
|
105
|
+
'<strong>Satellitenfestigkeit:</strong> Ein fluides, eisiges, zerklüftetes oder trümmerartiges Objekt zerfällt weiter entfernt als ein kompaktes starres Objekt.',
|
|
106
|
+
],
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'table',
|
|
110
|
+
headers: ['Modell', 'Formelform', 'Verwendung', 'Bedeutung des Ergebnisses'],
|
|
111
|
+
rows: [
|
|
112
|
+
['Fluide Roche Grenze', '2.44 R (rho_M / rho_m)^(1/3)', 'Eismonde, geschmolzene Körper, Trümmerhaufen, schwache Kometen', 'Die konservative Zerfallsentfernung für Objekte, die sich leicht verformen.'],
|
|
113
|
+
['Starre Roche Grenze', '1.26 R (rho_M / rho_m)^(1/3)', 'Dichte Gesteins oder metallische Körper mit Materialfestigkeit', 'Eine nähere niedrigere Schätzung, bei der Materialfestigkeit die Zerstörung verzögert.'],
|
|
114
|
+
['Kohäsionsangepasste Anzeige', 'Zwischen fluiden und starren Fällen', 'Schneller Szenarienvergleich in diesem Simulator', 'Eine praktische Risikolinie für den gewählten Satellitentyp, kein universeller Naturgesetzschalter.'],
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'title',
|
|
119
|
+
text: 'Beispiel: Warum ein Eismond nahe Saturn verwundbar ist',
|
|
120
|
+
level: 3,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'paragraph',
|
|
124
|
+
html: 'Saturn ist viel weniger dicht als die Erde, aber er ist enorm. Ein eisiger Satellit niedriger Dichte hat eine schwache Eigengravitation im Vergleich zu einem kompakten Gesteinsmond, daher setzt das Dichteverhältnis die fluide Roche Grenze weit von Saturns Wolkenobergrenzen entfernt. Das ist ein Grund, warum die Roche Grenze Physik zentral dafür ist, zu verstehen, warum Saturn ein breites, helles Ringsystem aus meist eisigen Partikeln aufrechterhalten kann, anstatt eines einzigen großen neu zusammengesetzten Mondes.',
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'paragraph',
|
|
128
|
+
html: 'Wenn du Saturn und einen Eismond im Rechner wählst und dann den Orbit nach innen ziehst, beobachte das Sicherheitsverhältnis. Über <strong>1.00x</strong> liegt der gewählte Orbit außerhalb der aktiven Roche Grenze. Nahe <strong>1.00x</strong> befindet sich der Mond in einer Gezeitenstreifungsregion, in der Massenverlust oder Rissbildung plausibel wird. Unter <strong>1.00x</strong> wechselt die Visualisierung zu Fragmentbögen und Ringbildung, weil das gewählte Modell Zerstörung vorhersagt.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
type: 'title',
|
|
132
|
+
text: 'Wie man das Sicherheitsverhältnis interpretiert',
|
|
133
|
+
level: 3,
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'paragraph',
|
|
137
|
+
html: 'Das <strong>Sicherheitsverhältnis</strong> ist die aktuelle orbitale Entfernung geteilt durch die gewählte Roche Grenze. Ein Verhältnis von <strong>1.25x</strong> bedeutet, dass der Orbit 25% weiter entfernt ist als die aktive Zerfallsschätzung. Ein Verhältnis von <strong>1.00x</strong> bedeutet, dass der Orbit genau auf der gewählten Roche Grenze liegt. Ein Verhältnis von <strong>0.80x</strong> bedeutet, dass der Satellit tief in der gewählten Zerstörungszone liegt.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
type: 'table',
|
|
141
|
+
headers: ['Sicherheitsverhältnis', 'Angezeigter Zustand', 'Praktische Bedeutung'],
|
|
142
|
+
rows: [
|
|
143
|
+
['Über 1.12x', 'Stabiler Orbit', 'Der Satellit ist außerhalb der gewählten Roche Grenze für dieses vereinfachte Modell.'],
|
|
144
|
+
['1.00x bis 1.12x', 'Gezeitenstreifung', 'Das Objekt ist nahe genug, dass Verformung, Rissbildung oder Oberflächenverlust relevant sein können.'],
|
|
145
|
+
['0.78x bis 1.00x', 'Fragmentierung', 'Die Eigengravitation reicht im gewählten Modell nicht mehr aus; Trümmerströme sind plausibel.'],
|
|
146
|
+
['Unter 0.78x', 'Ringsystem', 'Der ursprüngliche Körper wird als verteiltes Material dargestellt, das benachbarten Orbits folgt.'],
|
|
147
|
+
],
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type: 'paragraph',
|
|
151
|
+
html: 'Die Umlaufzeitanzeige ist enthalten, weil nahe Begegnungen nicht nur von der Entfernung abhängen. Material innerhalb der Zerstörungszone folgt schnellen, leicht unterschiedlichen Orbits. Sobald sich Fragmente trennen, verteilt orbitale Scherung sie um den Planeten, während Kollisionen den Trümmer in eine scheibenartige Ringstruktur platten und sortieren.',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'title',
|
|
155
|
+
text: 'Warum die Roche Grenze Ringe erzeugen kann',
|
|
156
|
+
level: 3,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
type: 'paragraph',
|
|
160
|
+
html: 'Wenn ein Satellit außerhalb der Roche Grenze auseinanderbricht, können die Fragmente schließlich kollidieren und sich zu einem kleineren Mond wieder ansammeln. Innerhalb der Roche Grenze können nahe Fragmente nicht leicht zu einem stabilen selbstgravitierenden Körper verschmelzen, weil Gezeitenkräfte das Material weiterhin auseinanderziehen. Das Ergebnis kann ein langlebiger Ring sein, besonders wenn der Trümmer eisig, kollisional und durch kleine Monde oder Resonanzen kontinuierlich durchmischt ist.',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
type: 'paragraph',
|
|
164
|
+
html: 'Die Ringbildung ist allmählich. Ein zerstörter Mond verlängert sich zuerst, verliert dann Partikel und größere Fragmente. Diese Fragmente nehmen leicht unterschiedliche orbitale Radien ein, so dass sie vor oder hintereinander abdriften. Im Laufe der Zeit dämpfen Kollisionen die vertikale Bewegung und das Material setzt sich in einer dünnen Scheibe ab. Deshalb zeigt der Simulator einen Übergang von einem einzelnen Mond zu Bögen und dann zu einem volleren Ring, anstatt den Zerfall als sofortige Explosion zu behandeln.',
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'title',
|
|
168
|
+
text: 'Wichtige Grenzen Dieses Roche Grenze Rechners',
|
|
169
|
+
level: 3,
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
type: 'paragraph',
|
|
173
|
+
html: 'Der Rechner ist für schnelle wissenschaftliche Intuition konzipiert, nicht für hochpräzise Missionsplanung. Echte Satelliten werden von Rotation, Orbitalexzentrizität, innerer Schichtung, Zugfestigkeit, Porosität, Temperatur, Gezeitenaufheizung, früheren Brüchen, Einschlägen und Resonanzen mit anderen Monden beeinflusst. Ein rotierender Trümmerhaufen auf einer exzentrischen Umlaufbahn kann anders versagen als ein kalter monolithischer Fels auf einer Kreisbahn, selbst wenn ihre Durchschnittsdichten ähnlich aussehen.',
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
type: 'list',
|
|
177
|
+
items: [
|
|
178
|
+
'<strong>Verwende die fluide Grenze</strong>, wenn das Objekt schwach, eisig, geschmolzen, stark zerklüftet oder aus losem Aggregat besteht.',
|
|
179
|
+
'<strong>Verwende die starre Grenze</strong> als untere Schätzung für kompakte Körper mit bedeutender innerer Festigkeit.',
|
|
180
|
+
'<strong>Lies die aktive Grenze</strong> als die vom Simulator gewählte Arbeitsgrenze für den gewählten Satellitentyp.',
|
|
181
|
+
'<strong>Interpretiere das Ergebnis nicht</strong> als exakte Vorhersage für einen benannten realen Mond ohne detailliertes geophysikalisches Modell.',
|
|
182
|
+
],
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
type: 'title',
|
|
186
|
+
text: 'Häufige Fragen, die Dieses Werkzeug Beantworten Hilft',
|
|
187
|
+
level: 3,
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
type: 'paragraph',
|
|
191
|
+
html: 'Verwende dieses Werkzeug, wenn du Fragen schätzen willst wie: Wie nah kann ein Mond der Erde kommen, bevor er auseinanderbricht? Warum befinden sich Saturns Ringe innerhalb einer Roche Grenzen Region? Würde ein Gesteinsmond näher überleben als ein Eismond? Wie verändert die Dichte die Roche Grenze? Was ist der Unterschied zwischen der fluiden und der starren Roche Grenze? Die Steuerungen sind um diese Vergleiche herum aufgebaut, so dass das Ändern einer Variable sofort zeigt, wie die Zerfallsentfernung, das Sicherheitsverhältnis und die Ringbildungsvisualisierung reagieren.',
|
|
192
|
+
},
|
|
193
|
+
],
|
|
194
|
+
faq,
|
|
195
|
+
bibliography,
|
|
196
|
+
howTo,
|
|
197
|
+
schemas: [
|
|
198
|
+
{
|
|
199
|
+
'@context': 'https://schema.org',
|
|
200
|
+
'@type': 'SoftwareApplication',
|
|
201
|
+
name: title,
|
|
202
|
+
description,
|
|
203
|
+
applicationCategory: 'ScientificApplication',
|
|
204
|
+
operatingSystem: 'Any',
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
'@context': 'https://schema.org',
|
|
208
|
+
'@type': 'FAQPage',
|
|
209
|
+
mainEntity: faq.map((item) => ({
|
|
210
|
+
'@type': 'Question',
|
|
211
|
+
name: item.question,
|
|
212
|
+
acceptedAnswer: {
|
|
213
|
+
'@type': 'Answer',
|
|
214
|
+
text: item.answer,
|
|
215
|
+
},
|
|
216
|
+
})),
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
'@context': 'https://schema.org',
|
|
220
|
+
'@type': 'HowTo',
|
|
221
|
+
name: title,
|
|
222
|
+
step: howTo.map((step) => ({
|
|
223
|
+
'@type': 'HowToStep',
|
|
224
|
+
name: step.name,
|
|
225
|
+
text: step.text,
|
|
226
|
+
})),
|
|
227
|
+
},
|
|
228
|
+
],
|
|
229
|
+
};
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
const slug = 'roche-limit-satellite-disruption';
|
|
2
|
+
const title = 'Roche Limit Calculator and Satellite Disruption Simulator';
|
|
3
|
+
const description = 'Calculate the Roche limit for planets and moons, compare fluid and rigid breakup distances, and visualize how tidal forces turn a satellite into a ring system.';
|
|
4
|
+
|
|
5
|
+
const howTo = [
|
|
6
|
+
{
|
|
7
|
+
name: 'Choose the primary body',
|
|
8
|
+
text: 'Select the planet whose gravity is stretching the satellite. The calculator loads its radius, density, and mass for the Roche limit and orbital period estimates.',
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
name: 'Select the satellite type',
|
|
12
|
+
text: 'Pick an icy moon, rocky moon, rubble pile, or iron-rich body. Density and internal cohesion change the breakup boundary.',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
name: 'Move the orbit slider',
|
|
16
|
+
text: 'Drag the orbital distance inward or outward. The visual disk shows whether the satellite is outside the Roche limit, grazing it, fragmenting, or already becoming a ring.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: 'Compare the limits',
|
|
20
|
+
text: 'Use the readouts to compare the classical fluid Roche limit with the lower rigid-body estimate and the cohesion-adjusted operating limit.',
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const faq = [
|
|
25
|
+
{
|
|
26
|
+
question: 'What is the Roche limit?',
|
|
27
|
+
answer: 'The Roche limit is the distance from a massive primary body at which tidal forces across a smaller orbiting body become strong enough to overcome the smaller body\'s self-gravity. Inside that boundary, a weak or fluid-like satellite can be pulled apart.',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
question: 'Why are there fluid and rigid Roche limits?',
|
|
31
|
+
answer: 'A fluid satellite deforms easily, so tides can amplify its elongation and disrupt it farther from the planet. A rigid satellite can resist deformation with material strength, so the simple rigid estimate places breakup closer to the primary.',
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
question: 'Does every moon inside the Roche limit instantly become rings?',
|
|
35
|
+
answer: 'No. Real disruption depends on spin, composition, cracks, porosity, heating, impacts, and material strength. This tool shows the classical gravitational boundary and uses a transition band to communicate risk rather than an instant switch.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
question: 'Why do Saturn\'s rings sit near Roche-limit physics?',
|
|
39
|
+
answer: 'Saturn\'s rings occupy a region where icy material can persist as particles instead of accreting into one large moon. The Roche limit helps explain why ring particles remain dispersed close to the planet.',
|
|
40
|
+
},
|
|
41
|
+
];
|
|
42
|
+
|
|
43
|
+
import { bibliography } from '../bibliography';
|
|
44
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
45
|
+
|
|
46
|
+
export const content: ToolLocaleContent = {
|
|
47
|
+
slug,
|
|
48
|
+
title,
|
|
49
|
+
description,
|
|
50
|
+
ui: {
|
|
51
|
+
primaryBody: 'Primary body',
|
|
52
|
+
satelliteType: 'Satellite type',
|
|
53
|
+
orbitDistance: 'Orbital distance',
|
|
54
|
+
rocheBoundary: 'Roche boundary',
|
|
55
|
+
fluidLimit: 'Fluid limit',
|
|
56
|
+
rigidLimit: 'Rigid limit',
|
|
57
|
+
activeLimit: 'Active limit',
|
|
58
|
+
safetyRatio: 'Safety ratio',
|
|
59
|
+
orbitalPeriod: 'Orbital period',
|
|
60
|
+
tidalStress: 'Tidal stress',
|
|
61
|
+
ringFormation: 'Ring formation',
|
|
62
|
+
stable: 'Stable orbit',
|
|
63
|
+
grazing: 'Tidal grazing',
|
|
64
|
+
fragmenting: 'Fragmenting',
|
|
65
|
+
ring: 'Ring system',
|
|
66
|
+
km: 'km',
|
|
67
|
+
hours: 'h',
|
|
68
|
+
density: 'Density',
|
|
69
|
+
cohesion: 'Cohesion',
|
|
70
|
+
planetRadius: 'Planet radius',
|
|
71
|
+
reset: 'Reset',
|
|
72
|
+
closePass: 'Close pass',
|
|
73
|
+
moonTrack: 'Moon track',
|
|
74
|
+
debrisTrack: 'Debris track',
|
|
75
|
+
},
|
|
76
|
+
seo: [
|
|
77
|
+
{
|
|
78
|
+
type: 'title',
|
|
79
|
+
text: 'Roche Limit Formula, Meaning, and How to Use This Calculator',
|
|
80
|
+
level: 2,
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
type: 'paragraph',
|
|
84
|
+
html: 'The <strong>Roche limit</strong> is the minimum orbital distance at which a satellite held together mainly by its own gravity can orbit a larger body without being torn apart by tidal forces. People usually search for it when they want to know whether a moon, comet, asteroid, or artificial scenario would survive a close approach to a planet, or whether the material would spread into a ring. This calculator answers that question by combining the planet radius, the planet density, the satellite density, and the satellite\'s approximate internal strength.',
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
type: 'paragraph',
|
|
88
|
+
html: 'The key idea is simple: gravity is not equally strong across the satellite. The near side is pulled harder than the far side, creating a stretching force. If that tidal stretching is stronger than the satellite\'s self-gravity and material cohesion, the body can crack, shed mass, and eventually fragment. The Roche limit is therefore not just a distance; it is a comparison between external tidal stress and internal binding.',
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
type: 'title',
|
|
92
|
+
text: 'Roche Limit Equations Used by the Calculator',
|
|
93
|
+
level: 3,
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type: 'paragraph',
|
|
97
|
+
html: 'For a fluid or very weak satellite, the classical approximation is <strong>d = 2.44 R (rho_M / rho_m)^(1/3)</strong>. For a rigid satellite, a common approximation is <strong>d = 1.26 R (rho_M / rho_m)^(1/3)</strong>. In these equations, <strong>d</strong> is the Roche limit measured from the center of the planet, <strong>R</strong> is the radius of the primary body, <strong>rho_M</strong> is the density of the primary body, and <strong>rho_m</strong> is the density of the satellite.',
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
type: 'list',
|
|
101
|
+
items: [
|
|
102
|
+
'<strong>Primary radius:</strong> Larger planets create a larger Roche-limit distance even when density is similar.',
|
|
103
|
+
'<strong>Primary density:</strong> A denser primary increases tidal strength at a given multiple of its radius.',
|
|
104
|
+
'<strong>Satellite density:</strong> A denser satellite has stronger self-gravity, so it can survive closer to the planet.',
|
|
105
|
+
'<strong>Satellite strength:</strong> A fluid, icy, fractured, or rubble-pile object disrupts farther out than a compact rigid object.',
|
|
106
|
+
],
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'table',
|
|
110
|
+
headers: ['Model', 'Formula shape', 'Use it for', 'What the result means'],
|
|
111
|
+
rows: [
|
|
112
|
+
['Fluid Roche limit', '2.44 R (rho_M / rho_m)^(1/3)', 'Icy moons, molten bodies, rubble piles, weak comets', 'The conservative breakup distance for objects that deform easily.'],
|
|
113
|
+
['Rigid Roche limit', '1.26 R (rho_M / rho_m)^(1/3)', 'Dense rocky or metallic bodies with material strength', 'A closer-in lower estimate where material strength delays disruption.'],
|
|
114
|
+
['Cohesion-adjusted display', 'Between the fluid and rigid cases', 'Quick scenario comparison in this simulator', 'A practical risk line for the selected satellite type, not a universal natural-law switch.'],
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'title',
|
|
119
|
+
text: 'Example: Why an Icy Moon Near Saturn Is Vulnerable',
|
|
120
|
+
level: 3,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'paragraph',
|
|
124
|
+
html: 'Saturn is much less dense than Earth, but it is enormous. A low-density icy satellite has weak self-gravity compared with a compact rocky moon, so the density ratio still places the fluid Roche limit far from Saturn\'s cloud tops. That is one reason Roche-limit physics is central to understanding why Saturn can maintain a broad, bright ring system made mostly of icy particles instead of one large reassembled moon.',
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'paragraph',
|
|
128
|
+
html: 'If you choose Saturn and an icy moon in the calculator, then drag the orbit inward, watch the safety ratio. Above <strong>1.00x</strong>, the selected orbit is outside the active Roche boundary. Near <strong>1.00x</strong>, the moon is in a tidal grazing region where mass shedding or cracking becomes plausible. Below <strong>1.00x</strong>, the visualization shifts toward fragment arcs and ring formation because the selected model predicts disruption.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
type: 'title',
|
|
132
|
+
text: 'How to Interpret the Safety Ratio',
|
|
133
|
+
level: 3,
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'paragraph',
|
|
137
|
+
html: 'The <strong>safety ratio</strong> is the current orbital distance divided by the selected Roche boundary. A ratio of <strong>1.25x</strong> means the orbit is 25% farther out than the active breakup estimate. A ratio of <strong>1.00x</strong> means the orbit is exactly on the selected Roche boundary. A ratio of <strong>0.80x</strong> means the satellite is well inside the selected disruption zone.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
type: 'table',
|
|
141
|
+
headers: ['Safety ratio', 'Displayed state', 'Practical reading'],
|
|
142
|
+
rows: [
|
|
143
|
+
['Above 1.12x', 'Stable orbit', 'The satellite is outside the chosen Roche boundary for this simplified model.'],
|
|
144
|
+
['1.00x to 1.12x', 'Tidal grazing', 'The object is close enough that deformation, cracking, or surface shedding may matter.'],
|
|
145
|
+
['0.78x to 1.00x', 'Fragmenting', 'Self-gravity is no longer enough in the selected model; debris streams are plausible.'],
|
|
146
|
+
['Below 0.78x', 'Ring system', 'The original body is represented as dispersed material following neighboring orbits.'],
|
|
147
|
+
],
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type: 'paragraph',
|
|
151
|
+
html: 'The orbital period readout is included because close approaches are not only about distance. Material inside the disruption zone follows rapid, slightly different orbits. Once fragments separate, orbital shear spreads them around the planet, while collisions flatten and sort the debris into a disk-like ring.',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'title',
|
|
155
|
+
text: 'Why the Roche Limit Can Create Rings',
|
|
156
|
+
level: 3,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
type: 'paragraph',
|
|
160
|
+
html: 'When a satellite breaks apart outside the Roche limit, the fragments may eventually collide and reaccumulate into a smaller moon. Inside the Roche limit, nearby fragments cannot easily merge into one stable self-gravitating body because tidal forces keep pulling the material apart. The result can be a long-lived ring, especially when the debris is icy, collisional, and continuously stirred by small moons or resonances.',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
type: 'paragraph',
|
|
164
|
+
html: 'Ring formation is gradual. A disrupted moon first becomes elongated, then sheds particles and larger fragments. Those fragments occupy slightly different orbital radii, so they drift ahead or behind one another. Over time, collisions damp vertical motion and the material settles into a thin disk. This is why the simulator shows a transition from a single moon to arcs and then to a fuller ring rather than treating breakup as an instant explosion.',
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
type: 'title',
|
|
168
|
+
text: 'Important Limits of This Roche Limit Calculator',
|
|
169
|
+
level: 3,
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
type: 'paragraph',
|
|
173
|
+
html: 'The calculator is designed for fast scientific intuition, not high-fidelity mission design. Real satellites are affected by rotation, orbital eccentricity, internal layering, tensile strength, porosity, temperature, tidal heating, previous fractures, impacts, and resonances with other moons. A spinning rubble pile on an eccentric orbit can fail differently from a cold monolithic rock on a circular orbit, even if their average densities look similar.',
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
type: 'list',
|
|
177
|
+
items: [
|
|
178
|
+
'<strong>Use the fluid limit</strong> when the object is weak, icy, molten, highly fractured, or made of loose aggregate.',
|
|
179
|
+
'<strong>Use the rigid limit</strong> as a lower-bound estimate for compact bodies with meaningful internal strength.',
|
|
180
|
+
'<strong>Read the active limit</strong> as the simulator\'s chosen working boundary for the selected satellite type.',
|
|
181
|
+
'<strong>Do not read the result</strong> as an exact prediction for a named real moon without a detailed geophysical model.',
|
|
182
|
+
],
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
type: 'title',
|
|
186
|
+
text: 'Common Questions This Tool Helps Answer',
|
|
187
|
+
level: 3,
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
type: 'paragraph',
|
|
191
|
+
html: 'Use this tool when you want to estimate questions such as: How close can a moon get to Earth before breaking apart? Why are Saturn\'s rings inside a Roche-limit region? Would a rocky moon survive closer than an icy moon? How does density change the Roche limit? What is the difference between the fluid and rigid Roche limit? The controls are built around those comparisons, so changing one variable immediately shows how the breakup distance, safety ratio, and ring-formation visualization respond.',
|
|
192
|
+
},
|
|
193
|
+
],
|
|
194
|
+
faq,
|
|
195
|
+
bibliography,
|
|
196
|
+
howTo,
|
|
197
|
+
schemas: [
|
|
198
|
+
{
|
|
199
|
+
'@context': 'https://schema.org',
|
|
200
|
+
'@type': 'SoftwareApplication',
|
|
201
|
+
name: title,
|
|
202
|
+
description,
|
|
203
|
+
applicationCategory: 'ScientificApplication',
|
|
204
|
+
operatingSystem: 'Any',
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
'@context': 'https://schema.org',
|
|
208
|
+
'@type': 'FAQPage',
|
|
209
|
+
mainEntity: faq.map((item) => ({
|
|
210
|
+
'@type': 'Question',
|
|
211
|
+
name: item.question,
|
|
212
|
+
acceptedAnswer: {
|
|
213
|
+
'@type': 'Answer',
|
|
214
|
+
text: item.answer,
|
|
215
|
+
},
|
|
216
|
+
})),
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
'@context': 'https://schema.org',
|
|
220
|
+
'@type': 'HowTo',
|
|
221
|
+
name: title,
|
|
222
|
+
step: howTo.map((step) => ({
|
|
223
|
+
'@type': 'HowToStep',
|
|
224
|
+
name: step.name,
|
|
225
|
+
text: step.text,
|
|
226
|
+
})),
|
|
227
|
+
},
|
|
228
|
+
],
|
|
229
|
+
};
|