@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,259 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'simulator-ufuk-peristiwa-lubang-hitam';
|
|
5
|
+
const title = 'Simulator Ufuk Peristiwa Lubang Hitam';
|
|
6
|
+
const description = 'Jelajahi ufuk peristiwa lubang hitam dengan perhitungan interaktif massa, jarak orbit, dilatasi waktu, bola foton, kecepatan lepas, dan radius Schwarzschild.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Pilih massa lubang hitam',
|
|
11
|
+
text: 'Gerakkan penggeser massa dari lubang hitam bermassa bintang hingga lubang hitam supermasif dan saksikan radius Schwarzschild berubah secara langsung.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Pindahkan wahana dekat ufuk',
|
|
15
|
+
text: 'Atur jarak dalam radius Schwarzschild untuk membandingkan orbit luar yang aman, wilayah bola foton, dan tepi ufuk peristiwa.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Periksa efek relativistik',
|
|
19
|
+
text: 'Baca kecepatan lepas, dilatasi waktu gravitasi, pergeseran merah, dan periode orbit untuk memahami mengapa intuisi biasa gagal di dekat ufuk.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'Bandingkan radius yang disebut',
|
|
23
|
+
text: 'Gunakan cincin panduan ufuk peristiwa, bola foton, dan ISCO untuk memahami batas-batas berbeda di sekitar lubang hitam yang tidak berotasi.',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const faq = [
|
|
28
|
+
{
|
|
29
|
+
question: 'Apa itu ufuk peristiwa lubang hitam?',
|
|
30
|
+
answer: 'Ufuk peristiwa adalah batas di mana kecepatan lepas mencapai kecepatan cahaya. Begitu suatu objek melintasinya, tidak ada sinyal yang bergerak pada atau di bawah kecepatan cahaya yang dapat kembali ke alam semesta luar.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'Apa arti radius Schwarzschild?',
|
|
34
|
+
answer: 'Radius Schwarzschild adalah jari-jari ufuk peristiwa untuk lubang hitam yang tidak berotasi dan tidak bermuatan. Radius ini tumbuh secara linear dengan massa, sehingga melipatgandakan massa akan melipatgandakan radius ufuk.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: 'Apa itu bola foton?',
|
|
38
|
+
answer: 'Bola foton adalah wilayah pada 1,5 radius Schwarzschild di mana cahaya dapat mengorbit lubang hitam dalam jalur yang tidak stabil. Gangguan kecil membuat foton lepas ke luar atau jatuh ke dalam.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: 'Apa itu ISCO?',
|
|
42
|
+
answer: 'ISCO berarti orbit lingkaran stabil terdalam. Untuk lubang hitam yang tidak berotasi, ISCO terletak pada 3 radius Schwarzschild, atau 6 radius gravitasi, dan menandai orbit lingkaran stabil terakhir bagi partikel bermassa.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
question: 'Mengapa dilatasi waktu meningkat di dekat ufuk?',
|
|
46
|
+
answer: 'Dalam geometri Schwarzschild, jam yang lebih dalam dalam medan gravitasi berdetak lebih lambat relatif terhadap pengamat jauh. Faktor yang ditampilkan mendekati nol saat wahana mendekati ufuk peristiwa.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Dapatkah simulator ini memodelkan lubang hitam yang berotasi?',
|
|
50
|
+
answer: 'Tidak. Simulator ini menggunakan solusi Schwarzschild, yang mengasumsikan tanpa putaran dan tanpa muatan listrik. Lubang hitam astrofisika nyata sering berotasi, dan putaran mengubah ukuran ufuk, posisi ISCO, dan perilaku cakram.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'Mengapa lubang hitam supermasif kurang kejam secara pasang surut di ufuk?',
|
|
54
|
+
answer: 'Gradien pasang surut di ufuk menurun seiring bertambahnya massa lubang hitam. Lubang hitam bermassa bintang kecil dapat meregangkan benda secara dahsyat di dekat ufuk, sementara lubang hitam supermasif dapat memiliki gradien lokal yang lebih lembut di batas tersebut.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'Apakah visualisasi ini menunjukkan gambar lubang hitam yang sebenarnya?',
|
|
58
|
+
answer: 'Ini adalah diagram pendidikan, bukan pengamatan yang dilacak sinar. Cincin dan cakram diskalakan sesuai radius Schwarzschild yang disederhanakan sehingga zona fisik mudah dibandingkan.',
|
|
59
|
+
},
|
|
60
|
+
];
|
|
61
|
+
|
|
62
|
+
export const content: ToolLocaleContent = {
|
|
63
|
+
slug,
|
|
64
|
+
title,
|
|
65
|
+
description,
|
|
66
|
+
ui: {
|
|
67
|
+
visualTitle: 'Peta medan ufuk peristiwa',
|
|
68
|
+
visualCaption: 'Wahana bergerak melalui geometri Schwarzschild yang diskalakan. Cincin panduan terang menandai ufuk, bola foton, dan orbit lingkaran stabil terdalam.',
|
|
69
|
+
controlsTitle: 'Kontrol lubang hitam',
|
|
70
|
+
eventHorizon: 'Ufuk peristiwa',
|
|
71
|
+
photonSphere: 'Bola foton',
|
|
72
|
+
isco: 'ISCO',
|
|
73
|
+
rsLabel: 'Radius Schwarzschild',
|
|
74
|
+
diameterLabel: 'Diameter',
|
|
75
|
+
timeLabel: 'Dilatasi waktu',
|
|
76
|
+
redshiftLabel: 'Pergeseran merah',
|
|
77
|
+
statusSafe: 'Di luar wilayah orbit stabil',
|
|
78
|
+
statusPhoton: 'Di dalam zona bola foton',
|
|
79
|
+
statusInside: 'Pada batas ufuk',
|
|
80
|
+
diameter: 'Diameter ufuk',
|
|
81
|
+
lightCrossing: 'Waktu lintasan cahaya',
|
|
82
|
+
timeDilation: 'Laju jam vs pengamat jauh',
|
|
83
|
+
redshift: 'Pergeseran merah gravitasi',
|
|
84
|
+
mass: 'Massa lubang hitam',
|
|
85
|
+
distance: 'Jarak wahana',
|
|
86
|
+
speed: 'Kecepatan orbit wahana',
|
|
87
|
+
escapeVelocity: 'Kecepatan lepas',
|
|
88
|
+
orbitalPeriod: 'Periode orbit wahana',
|
|
89
|
+
tidalGradient: 'Gradien pasang surut',
|
|
90
|
+
kilometerUnit: 'km',
|
|
91
|
+
millisecondUnit: 'ms',
|
|
92
|
+
secondUnit: 's',
|
|
93
|
+
lightSpeedUnit: '% c',
|
|
94
|
+
tidalUnit: 'g/m',
|
|
95
|
+
solarMassesUnit: 'massa matahari',
|
|
96
|
+
rsUnit: 'Rs',
|
|
97
|
+
zeroKilometers: '0 km',
|
|
98
|
+
zeroMilliseconds: '0 ms',
|
|
99
|
+
zeroMultiplier: '0x',
|
|
100
|
+
zeroLightSpeed: '0% c',
|
|
101
|
+
zeroTidal: '0 g/m',
|
|
102
|
+
initialMassOutput: '10 massa matahari',
|
|
103
|
+
initialDistanceOutput: '3,0 Rs',
|
|
104
|
+
initialSpeedOutput: '32% c',
|
|
105
|
+
},
|
|
106
|
+
seo: [
|
|
107
|
+
{
|
|
108
|
+
type: 'title',
|
|
109
|
+
text: 'Simulator ufuk peristiwa lubang hitam untuk radius Schwarzschild, bola foton, dan dilatasi waktu',
|
|
110
|
+
level: 2,
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'paragraph',
|
|
114
|
+
html: 'Simulator ufuk peristiwa lubang hitam ini mengubah gagasan inti lubang hitam Schwarzschild menjadi model visual interaktif. Ubah massa lubang hitam, gerakkan wahana ke dalam atau ke luar, dan bandingkan bagaimana ufuk peristiwa, bola foton, orbit lingkaran stabil terdalam, kecepatan lepas, pergeseran merah gravitasi, dan dilatasi waktu merespons.',
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
type: 'paragraph',
|
|
118
|
+
html: 'Simulator ini dibuat untuk mahasiswa astronomi, guru fisika, penulis sains, dan pelajar yang ingin tahu lebih dari sekadar rumus statis. Tampilan menghubungkan angka-angka dengan diagram spasial sehingga Anda dapat melihat mengapa ufuk peristiwa bukan permukaan material, mengapa foton memiliki orbit tidak stabil khusus, dan mengapa gerak melingkar stabil berhenti sebelum ufuk tercapai.',
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
type: 'title',
|
|
122
|
+
text: 'Bagaimana radius ufuk peristiwa dihitung',
|
|
123
|
+
level: 3,
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
type: 'paragraph',
|
|
127
|
+
html: 'Untuk lubang hitam yang tidak berotasi dan tidak bermuatan, radius ufuk peristiwa adalah <strong>radius Schwarzschild</strong>. Ini dihitung sebagai <strong>Rs = 2GM / c^2</strong>, di mana G adalah konstanta gravitasi, M adalah massa lubang hitam, dan c adalah kecepatan cahaya. Satu massa matahari setara dengan radius Schwarzschild sekitar 2,95 kilometer.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'paragraph',
|
|
131
|
+
html: 'Karena radius Schwarzschild bertambah secara linear dengan massa, lubang hitam 10 massa matahari memiliki radius hampir 29,5 kilometer, sementara lubang hitam 4 juta massa matahari seperti Sagittarius A* memiliki radius sekitar 11,8 juta kilometer. Penggeser massa menggunakan skala logaritmik sehingga kasus massa bintang dan supermasif dapat muat dalam kontrol yang sama.',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'table',
|
|
135
|
+
headers: ['Wilayah', 'Radius dalam radius Schwarzschild', 'Artinya'],
|
|
136
|
+
rows: [
|
|
137
|
+
['Ufuk peristiwa', '1,0 Rs', 'Batas satu arah di mana kecepatan lepas sama dengan kecepatan cahaya.'],
|
|
138
|
+
['Bola foton', '1,5 Rs', 'Orbit lingkaran tidak stabil untuk cahaya di sekitar lubang hitam Schwarzschild.'],
|
|
139
|
+
['ISCO', '3,0 Rs', 'Orbit lingkaran stabil terdalam untuk partikel bermassa.'],
|
|
140
|
+
['Medan lemah', '6 Rs dan seterusnya', 'Gravitasi masih kuat, tetapi orbit lingkaran lebih mudah dipertahankan.'],
|
|
141
|
+
],
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
type: 'title',
|
|
145
|
+
text: 'Kecepatan lepas dan mengapa ufuk adalah batas kausal',
|
|
146
|
+
level: 3,
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
type: 'paragraph',
|
|
150
|
+
html: 'Kecepatan lepas adalah kecepatan yang dibutuhkan suatu objek untuk mencapai jarak yang cukup jauh tanpa dorongan tambahan. Dalam bahasa Newton, kecepatan lepas pada radius Schwarzschild sama dengan c. Relativitas umum memberikan interpretasi yang lebih dalam: kerucut cahaya masa depan miring ke dalam sehingga semua jalur berarah masa depan di dalam ufuk bergerak menuju radius yang lebih kecil.',
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
type: 'paragraph',
|
|
154
|
+
html: 'Pembacaan kecepatan lepas berguna sebagai intuisi, tetapi tidak boleh dibaca sebagai deskripsi relativistik yang lengkap. Di dekat ufuk, ruang dan waktu melengkung cukup kuat sehingga koordinat global, pengukuran lokal, dan apa yang dilihat pengamat jauh tidak dapat dipertukarkan. Itulah mengapa simulator visual membantu memisahkan radius yang disebut dan maknanya.',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
type: 'title',
|
|
158
|
+
text: 'Dilatasi waktu dan pergeseran merah gravitasi di dekat lubang hitam',
|
|
159
|
+
level: 3,
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
type: 'paragraph',
|
|
163
|
+
html: 'Sebuah jam yang ditahan pada radius tetap di luar lubang hitam Schwarzschild berdetak lebih lambat dibandingkan dengan pengamat jauh. Faktor sederhana yang ditunjukkan di sini adalah <strong>sqrt(1 - Rs / r)</strong>. Pada 3 Rs, laju jam sekitar 0,82 dari laju jauh. Pada 1,1 Rs, turun menjadi sekitar 0,30, yang berarti pengamat jauh melihat proses di dekat radius tersebut sangat melambat.',
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
type: 'paragraph',
|
|
167
|
+
html: 'Pergeseran merah gravitasi mengikuti geometri yang sama. Cahaya yang memanjat keluar dari sumur gravitasi kehilangan energi, sehingga panjang gelombangnya meregang. Pergeseran merah yang ditampilkan tumbuh dengan cepat di dekat ufuk, yang merupakan salah satu alasan mengapa cakram akresi dan emisi dekat ufuk memerlukan pemodelan relativistik daripada mekanika orbit biasa.',
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
type: 'title',
|
|
171
|
+
text: 'Bola foton dan ISCO dijelaskan',
|
|
172
|
+
level: 3,
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
type: 'paragraph',
|
|
176
|
+
html: 'Bola foton pada 1,5 Rs adalah tempat cahaya, pada prinsipnya, dapat mengikuti orbit lingkaran di sekitar lubang hitam Schwarzschild. Orbit ini tidak stabil: gangguan kecil ke luar membuat foton lepas, dan gangguan kecil ke dalam mengirimnya menuju ufuk. Wilayah ini membentuk pelensaan gravitasi kuat dan berkontribusi pada struktur cincin terang yang terlihat dalam gambar lubang hitam.',
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
type: 'paragraph',
|
|
180
|
+
html: 'ISCO pada 3 Rs adalah orbit lingkaran stabil terdalam untuk partikel bermassa di sekitar lubang hitam yang tidak berotasi. Di dalam ISCO, orbit lingkaran memerlukan kondisi ideal dan tidak stabil terhadap gangguan kecil. Dalam teori cakram akresi, ISCO membantu menetapkan tepi dalam dari emisi cakram paling terang untuk model lubang hitam sederhana.',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'title',
|
|
184
|
+
text: 'Lubang hitam bermassa bintang vs supermasif',
|
|
185
|
+
level: 3,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
type: 'paragraph',
|
|
189
|
+
html: 'Pelajaran yang mengejutkan adalah bahwa lubang hitam yang lebih besar bisa terasa kurang destruktif di ufuk. Radius bertambah sebanding dengan massa, tetapi gradien pasang surut di dekat ufuk menurun untuk massa yang lebih besar. Lubang hitam bermassa bintang dapat menghasilkan regangan ekstrem pada jarak seukuran manusia di dekat ufuk. Lubang hitam supermasif dapat memiliki ufuk yang begitu besar sehingga gradien pasang surut lokal pada saat penyeberangan jauh lebih kecil.',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
type: 'paragraph',
|
|
193
|
+
html: 'Simulator ini menyertakan pembacaan gradien pasang surut dalam gravitasi Bumi per meter. Ini adalah perkiraan gradien radial yang disederhanakan, tetapi membantu menunjukkan mengapa ungkapan "spagetifikasi di ufuk" sangat bergantung pada massa. Ufuk peristiwa adalah batas kausal, bukan selalu tempat gaya pasang surut pertama kali menjadi fatal.',
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
type: 'title',
|
|
197
|
+
text: 'Keterbatasan simulator lubang hitam ini',
|
|
198
|
+
level: 3,
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
type: 'list',
|
|
202
|
+
items: [
|
|
203
|
+
'<strong>Tidak ada putaran:</strong> alat ini menggunakan geometri Schwarzschild. Lubang hitam Kerr memiliki seretan bingkai, ergosfer, dan radius ISCO yang bergantung pada putaran.',
|
|
204
|
+
'<strong>Tidak ada fisika akresi:</strong> cakram bercahaya adalah lapisan panduan, bukan simulasi plasma dengan suhu, opasitas, medan magnet, atau pancaran Doppler.',
|
|
205
|
+
'<strong>Tidak ada pelacakan sinar:</strong> diagram diskalakan untuk pembelajaran. Ini tidak merender pola pelensaan tepat yang akan diamati kamera di dekat lubang hitam.',
|
|
206
|
+
'<strong>Tidak ada tampilan koordinat jatuh:</strong> faktor dilatasi waktu menggambarkan jam diam di luar ufuk dibandingkan dengan pengamat jauh. Jatuh bebas mengalami geometri secara berbeda.',
|
|
207
|
+
],
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
type: 'title',
|
|
211
|
+
text: 'Eksperimen kelas yang berguna',
|
|
212
|
+
level: 3,
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
type: 'list',
|
|
216
|
+
items: [
|
|
217
|
+
'<strong>Skalakan pusat Bima Sakti:</strong> atur massa mendekati 4 juta massa matahari dan bandingkan diameter ufuk dengan skala orbit planet.',
|
|
218
|
+
'<strong>Temukan bola foton:</strong> gerakkan penggeser jarak ke 1,5 Rs dan perhatikan seberapa dekatnya dengan ufuk peristiwa dibandingkan dengan ISCO pada 3 Rs.',
|
|
219
|
+
'<strong>Bandingkan gradien pasang surut:</strong> atur 10 massa matahari, lalu 1 miliar massa matahari, sambil menjaga wahana tetap dekat 1,1 Rs. Radius ufuk tumbuh sangat besar sementara gradien pasang surut lokal turun.',
|
|
220
|
+
'<strong>Lacak perlambatan jam:</strong> bergerak dari 10 Rs menuju 1,02 Rs dan saksikan faktor dilatasi waktu mendekati nol.',
|
|
221
|
+
],
|
|
222
|
+
},
|
|
223
|
+
],
|
|
224
|
+
faq,
|
|
225
|
+
bibliography,
|
|
226
|
+
howTo,
|
|
227
|
+
schemas: [
|
|
228
|
+
{
|
|
229
|
+
'@context': 'https://schema.org',
|
|
230
|
+
'@type': 'SoftwareApplication',
|
|
231
|
+
name: title,
|
|
232
|
+
description,
|
|
233
|
+
applicationCategory: 'ScientificApplication',
|
|
234
|
+
operatingSystem: 'Any',
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
'@context': 'https://schema.org',
|
|
238
|
+
'@type': 'FAQPage',
|
|
239
|
+
mainEntity: faq.map((item) => ({
|
|
240
|
+
'@type': 'Question',
|
|
241
|
+
name: item.question,
|
|
242
|
+
acceptedAnswer: {
|
|
243
|
+
'@type': 'Answer',
|
|
244
|
+
text: item.answer,
|
|
245
|
+
},
|
|
246
|
+
})),
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
'@context': 'https://schema.org',
|
|
250
|
+
'@type': 'HowTo',
|
|
251
|
+
name: title,
|
|
252
|
+
step: howTo.map((step) => ({
|
|
253
|
+
'@type': 'HowToStep',
|
|
254
|
+
name: step.name,
|
|
255
|
+
text: step.text,
|
|
256
|
+
})),
|
|
257
|
+
},
|
|
258
|
+
],
|
|
259
|
+
};
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'simulatore-orizzonte-eventi';
|
|
5
|
+
const title = 'Simulatore dell\'Orizzonte degli Eventi di un Buco Nero';
|
|
6
|
+
const description = 'Esplora l\'orizzonte degli eventi di un buco nero con calcoli interattivi: massa, distanza orbitale, dilatazione temporale, sfera dei fotoni, velocità di fuga e raggio di Schwarzschild.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Scegli la massa del buco nero',
|
|
11
|
+
text: 'Muovi il cursore della massa da un buco nero stellare a uno supermassiccio e osserva il raggio di Schwarzschild scalare in tempo reale.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Avvicina la sonda all\'orizzonte',
|
|
15
|
+
text: 'Imposta la distanza in raggi di Schwarzschild per confrontare un\'orbita esterna sicura, la regione della sfera dei fotoni e il bordo dell\'orizzonte degli eventi.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Ispeziona gli effetti relativistici',
|
|
19
|
+
text: 'Leggi la velocità di fuga, la dilatazione gravitazionale del tempo, il redshift e il periodo orbitale per capire perché l\'intuizione ordinaria viene meno vicino all\'orizzonte.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'Confronta i raggi caratteristici',
|
|
23
|
+
text: 'Usa gli anelli guida dell\'orizzonte degli eventi, della sfera dei fotoni e dell\'ISCO per comprendere i diversi confini attorno a un buco nero senza rotazione.',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const faq = [
|
|
28
|
+
{
|
|
29
|
+
question: 'Cos\'è l\'orizzonte degli eventi di un buco nero?',
|
|
30
|
+
answer: 'L\'orizzonte degli eventi è il confine dove la velocità di fuga raggiunge la velocità della luce. Una volta che un oggetto lo attraversa, nessun segnale che si muova alla velocità della luce o inferiore può tornare all\'universo esterno.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'Cosa significa il raggio di Schwarzschild?',
|
|
34
|
+
answer: 'Il raggio di Schwarzschild è il raggio dell\'orizzonte degli eventi per un buco nero senza rotazione né carica elettrica. Cresce linearmente con la massa, quindi raddoppiare la massa raddoppia il raggio dell\'orizzonte.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: 'Cos\'è la sfera dei fotoni?',
|
|
38
|
+
answer: 'La sfera dei fotoni è una regione a 1,5 raggi di Schwarzschild dove la luce può orbitare attorno al buco nero in un percorso instabile. Piccole perturbazioni fanno sì che i fotoni fuggano verso l\'esterno o cadano verso l\'interno.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: 'Cos\'è l\'ISCO?',
|
|
42
|
+
answer: 'ISCO significa "Innermost Stable Circular Orbit" (orbita circolare stabile più interna). Per un buco nero senza rotazione si trova a 3 raggi di Schwarzschild, o 6 raggi gravitazionali, e segna l\'ultima orbita circolare stabile per particelle dotate di massa.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
question: 'Perché la dilatazione temporale aumenta vicino all\'orizzonte?',
|
|
46
|
+
answer: 'Nella geometria di Schwarzschild, gli orologi situati più in profondità nel campo gravitazionale segnano il tempo più lentamente rispetto a quelli di osservatori lontani. Il fattore visualizzato si avvicina a zero man mano che la sonda si avvicina all\'orizzonte degli eventi.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Questo simulatore può modellare un buco nero in rotazione?',
|
|
50
|
+
answer: 'No. Utilizza la soluzione di Schwarzschild, che assume l\'assenza di rotazione e carica elettrica. I buchi neri astrofisici reali spesso ruotano, e la rotazione modifica la dimensione dell\'orizzonte, la posizione dell\'ISCO e il comportamento del disco d\'accrescimento.',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: 'Perché i buchi neri supermassicci sono meno "violenti" all\'orizzonte?',
|
|
54
|
+
answer: 'Il gradiente di marea all\'orizzonte diminuisce all\'aumentare della massa del buco nero. Un piccolo buco nero stellare può stirare gli oggetti violentemente vicino all\'orizzonte, mentre un buco nero supermassiccio può avere un gradiente locale molto più dolce a quel confine.',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'La visualizzazione mostra un\'immagine reale di un buco nero?',
|
|
58
|
+
answer: 'È un diagramma educativo, non un\'osservazione con ray tracing. Gli anelli e il disco sono scalati ai raggi di Schwarzschild semplificati affinché le zone fisiche siano facili da confrontare.',
|
|
59
|
+
},
|
|
60
|
+
];
|
|
61
|
+
|
|
62
|
+
export const content: ToolLocaleContent = {
|
|
63
|
+
slug,
|
|
64
|
+
title,
|
|
65
|
+
description,
|
|
66
|
+
ui: {
|
|
67
|
+
visualTitle: 'Mappa di campo dell\'orizzonte degli eventi',
|
|
68
|
+
visualCaption: 'La sonda si muove attraverso la geometria di Schwarzschild scalata. Gli anelli guida luminosi marcano l\'orizzonte, la sfera dei fotoni e l\'orbita circolare stabile più interna.',
|
|
69
|
+
controlsTitle: 'Controlli del buco nero',
|
|
70
|
+
eventHorizon: 'Orizzonte degli eventi',
|
|
71
|
+
photonSphere: 'Sfera dei fotoni',
|
|
72
|
+
isco: 'ISCO',
|
|
73
|
+
rsLabel: 'Raggio di Schwarzschild',
|
|
74
|
+
diameterLabel: 'Diametro',
|
|
75
|
+
timeLabel: 'Dilatazione temporale',
|
|
76
|
+
redshiftLabel: 'Redshift',
|
|
77
|
+
statusSafe: 'Fuori dalla regione di orbita stabile',
|
|
78
|
+
statusPhoton: 'All\'interno della zona della sfera dei fotoni',
|
|
79
|
+
statusInside: 'Al limite dell\'orizzonte',
|
|
80
|
+
diameter: 'Diametro dell\'orizzonte',
|
|
81
|
+
lightCrossing: 'Tempo di attraversamento della luce',
|
|
82
|
+
timeDilation: 'Ritmo dell\'orologio vs osservatore lontano',
|
|
83
|
+
redshift: 'Redshift gravitazionale',
|
|
84
|
+
mass: 'Massa del buco nero',
|
|
85
|
+
distance: 'Distanza della sonda',
|
|
86
|
+
speed: 'Velocità orbitale della sonda',
|
|
87
|
+
escapeVelocity: 'Velocità di fuga',
|
|
88
|
+
orbitalPeriod: 'Periodo orbitale della sonda',
|
|
89
|
+
tidalGradient: 'Gradiente di marea',
|
|
90
|
+
kilometerUnit: 'km',
|
|
91
|
+
millisecondUnit: 'ms',
|
|
92
|
+
secondUnit: 's',
|
|
93
|
+
lightSpeedUnit: '% c',
|
|
94
|
+
tidalUnit: 'g/m',
|
|
95
|
+
solarMassesUnit: 'masse solari',
|
|
96
|
+
rsUnit: 'Rs',
|
|
97
|
+
zeroKilometers: '0 km',
|
|
98
|
+
zeroMilliseconds: '0 ms',
|
|
99
|
+
zeroMultiplier: '0x',
|
|
100
|
+
zeroLightSpeed: '0% c',
|
|
101
|
+
zeroTidal: '0 g/m',
|
|
102
|
+
initialMassOutput: '10 masse solari',
|
|
103
|
+
initialDistanceOutput: '3.0 Rs',
|
|
104
|
+
initialSpeedOutput: '32% c',
|
|
105
|
+
},
|
|
106
|
+
seo: [
|
|
107
|
+
{
|
|
108
|
+
type: 'title',
|
|
109
|
+
text: 'Simulatore dell\'orizzonte degli eventi: raggio di Schwarzschild, sfera dei fotoni e dilatazione temporale',
|
|
110
|
+
level: 2,
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'paragraph',
|
|
114
|
+
html: 'Questo simulatore trasforma le idee fondamentali dei buchi neri di Schwarzschild in un modello visivo interattivo. Cambia la massa, sposta una sonda e confronta come reagiscono l\'orizzonte degli eventi, la sfera dei fotoni, l\'ISCO, la velocità di fuga, il redshift gravitazionale e la dilatazione temporale.',
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
type: 'paragraph',
|
|
118
|
+
html: 'Il simulatore è progettato per studenti, insegnanti e curiosi che cercano più di una semplice formula statica. Il display collega i dati numerici a un diagramma spaziale per illustrare perché l\'orizzonte non è una superficie materiale, perché i fotoni hanno un\'orbita instabile particolare e perché il moto circolare stabile si arresta prima dell\'orizzonte.',
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
type: 'title',
|
|
122
|
+
text: 'Come viene calcolato il raggio dell\'orizzonte degli eventi',
|
|
123
|
+
level: 3,
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
type: 'paragraph',
|
|
127
|
+
html: 'Per un buco nero senza rotazione né carica, il raggio dell\'orizzonte è il <strong>raggio di Schwarzschild</strong>. Si calcola come <strong>Rs = 2GM / c^2</strong>, dove G è la costante gravitazionale, M la massa del buco nero e c la velocità della luce. Una massa solare corrisponde a un raggio di circa 2,95 km.',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'paragraph',
|
|
131
|
+
html: 'Poiché il raggio di Schwarzschild scala linearmente con la massa, un buco nero di 10 masse solari ha un raggio vicino a 29,5 km, mentre un buco nero supermassiccio come Sagittarius A* (4 milioni di masse solari) ha un raggio di circa 11,8 milioni di chilometri. Il cursore usa una scala logaritmica per coprire entrambi gli ordini di grandezza.',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'table',
|
|
135
|
+
headers: ['Regione', 'Raggio (in Rs)', 'Significato'],
|
|
136
|
+
rows: [
|
|
137
|
+
['Orizzonte degli eventi', '1.0 Rs', 'Confine unidirezionale dove la velocità di fuga eguaglia quella della luce.'],
|
|
138
|
+
['Sfera dei fotoni', '1.5 Rs', 'Orbite circolari instabili per la luce.'],
|
|
139
|
+
['ISCO', '3.0 Rs', 'Orbite circolari stabili più interne per particelle con massa.'],
|
|
140
|
+
['Campo debole', '6 Rs e oltre', 'La gravità resta forte, ma le orbite circolari sono più facili da sostenere.'],
|
|
141
|
+
],
|
|
142
|
+
},
|
|
143
|
+
],
|
|
144
|
+
faq,
|
|
145
|
+
bibliography,
|
|
146
|
+
howTo,
|
|
147
|
+
schemas: [
|
|
148
|
+
{
|
|
149
|
+
'@context': 'https://schema.org',
|
|
150
|
+
'@type': 'SoftwareApplication',
|
|
151
|
+
name: title,
|
|
152
|
+
description,
|
|
153
|
+
applicationCategory: 'ScientificApplication',
|
|
154
|
+
operatingSystem: 'Any',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
'@context': 'https://schema.org',
|
|
158
|
+
'@type': 'FAQPage',
|
|
159
|
+
mainEntity: faq.map((item) => ({
|
|
160
|
+
'@type': 'Question',
|
|
161
|
+
name: item.question,
|
|
162
|
+
acceptedAnswer: {
|
|
163
|
+
'@type': 'Answer',
|
|
164
|
+
text: item.answer,
|
|
165
|
+
},
|
|
166
|
+
})),
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
'@context': 'https://schema.org',
|
|
170
|
+
'@type': 'HowTo',
|
|
171
|
+
name: title,
|
|
172
|
+
step: howTo.map((step) => ({
|
|
173
|
+
'@type': 'HowToStep',
|
|
174
|
+
name: step.name,
|
|
175
|
+
text: step.text,
|
|
176
|
+
})),
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
};
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'black-hole-event-horizon-simulator';
|
|
5
|
+
const title = 'ブラックホール事象の地平面シミュレーター';
|
|
6
|
+
const description = 'ブラックホールの事象の地平面を、質量、軌道距離、時間の遅れ、光子球、脱出速度、シュワルツシルト半径のインタラクティブな計算で探索しましょう。';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'ブラックホールの質量を選ぶ',
|
|
11
|
+
text: '質量スライダーを動かして、恒星質量ブラックホールから超大質量ブラックホールまで変化させ、シュワルツシルト半径がリアルタイムで変化する様子を観察しましょう。',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: '探査機を地平面の近くに移動する',
|
|
15
|
+
text: 'シュワルツシルト半径単位で距離を設定し、安全な外部軌道、光子球領域、事象の地平面の端を比較しましょう。',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: '相対論的効果を調べる',
|
|
19
|
+
text: '脱出速度、重力による時間の遅れ、赤方偏移、公転周期を読み取って、地平面の近くで日常的な直感がなぜ通用しなくなるのかを理解しましょう。',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: '名前付き半径を比較する',
|
|
23
|
+
text: '事象の地平面、光子球、ISCOのガイドリングを使って、非回転ブラックホールの周りの異なる境界を理解しましょう。',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const faq = [
|
|
28
|
+
{
|
|
29
|
+
question: 'ブラックホールの事象の地平面とは何ですか?',
|
|
30
|
+
answer: '事象の地平面とは、脱出速度が光速に達する境界です。物体がこれを越えると、光速以下のいかなる信号も外部の宇宙に戻ることができません。',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'シュワルツシルト半径とは何を意味しますか?',
|
|
34
|
+
answer: 'シュワルツシルト半径は、非回転・無電荷のブラックホールにおける事象の地平面の半径です。質量に比例して大きくなるため、質量が2倍になれば地平面の半径も2倍になります。',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: '光子球とは何ですか?',
|
|
38
|
+
answer: '光子球はシュワルツシルト半径の1.5倍の位置にある領域で、光がブラックホールの周りを不安定な軌道で周回できます。わずかな摂動で光子は外側へ脱出するか、内側へ落下します。',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: 'ISCOとは何ですか?',
|
|
42
|
+
answer: 'ISCOは最も内側の安定した円軌道を意味します。非回転ブラックホールの場合、シュワルツシルト半径の3倍(重力半径の6倍)に位置し、質量を持つ粒子がとりうる最後の安定した円軌道を示します。',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
question: '地平面の近くで時間の遅れが大きくなるのはなぜですか?',
|
|
46
|
+
answer: 'シュワルツシルト時空では、重力場のより深くにある時計は遠方の観測者に比べて遅く刻まれます。表示される係数は、探査機が事象の地平面に近づくにつれてゼロに近づきます。',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'このシミュレーターは回転するブラックホールをモデル化できますか?',
|
|
50
|
+
answer: 'いいえ。このシミュレーターはシュワルツシルト解を使用しており、スピンと電荷がないことを前提としています。実際の天体物理学上のブラックホールは多くの場合回転しており、スピンは地平面の大きさ、ISCOの位置、円盤の振る舞いを変化させます。',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
question: '超大質量ブラックホールの地平面での潮汐力が弱いのはなぜですか?',
|
|
54
|
+
answer: '地平面での潮汐勾配はブラックホールの質量が大きくなるほど減少します。小型の恒星質量ブラックホールは地平面近くで物体を激しく引き伸ばすことができますが、超大質量ブラックホールではその境界での局所的な勾配がより穏やかになります。',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
question: 'この可視化は実際のブラックホール画像を示していますか?',
|
|
58
|
+
answer: 'これは教育用の図であり、レイトレーシングによる観測ではありません。リングと円盤は簡略化されたシュワルツシルト半径に合わせてスケーリングされており、物理的な領域を比較しやすくしています。',
|
|
59
|
+
},
|
|
60
|
+
];
|
|
61
|
+
|
|
62
|
+
export const content: ToolLocaleContent = {
|
|
63
|
+
slug,
|
|
64
|
+
title,
|
|
65
|
+
description,
|
|
66
|
+
ui: {
|
|
67
|
+
visualTitle: '事象の地平面フィールドマップ',
|
|
68
|
+
visualCaption: '探査機はスケーリングされたシュワルツシルト時空を移動します。明るいガイドリングは地平面、光子球、最も内側の安定した円軌道を示しています。',
|
|
69
|
+
controlsTitle: 'ブラックホール制御',
|
|
70
|
+
eventHorizon: '事象の地平面',
|
|
71
|
+
photonSphere: '光子球',
|
|
72
|
+
isco: 'ISCO',
|
|
73
|
+
rsLabel: 'シュワルツシルト半径',
|
|
74
|
+
diameterLabel: '直径',
|
|
75
|
+
timeLabel: '時間の遅れ',
|
|
76
|
+
redshiftLabel: '赤方偏移',
|
|
77
|
+
statusSafe: '安定軌道領域の外側',
|
|
78
|
+
statusPhoton: '光子球領域の内側',
|
|
79
|
+
statusInside: '地平面の限界',
|
|
80
|
+
diameter: '地平面の直径',
|
|
81
|
+
lightCrossing: '光の横断時間',
|
|
82
|
+
timeDilation: '遠方観測者との時計の比率',
|
|
83
|
+
redshift: '重力赤方偏移',
|
|
84
|
+
mass: 'ブラックホール質量',
|
|
85
|
+
distance: '探査機の距離',
|
|
86
|
+
speed: '探査機の軌道速度',
|
|
87
|
+
escapeVelocity: '脱出速度',
|
|
88
|
+
orbitalPeriod: '探査機の公転周期',
|
|
89
|
+
tidalGradient: '潮汐勾配',
|
|
90
|
+
kilometerUnit: 'km',
|
|
91
|
+
millisecondUnit: 'ms',
|
|
92
|
+
secondUnit: 's',
|
|
93
|
+
lightSpeedUnit: '% c',
|
|
94
|
+
tidalUnit: 'g/m',
|
|
95
|
+
solarMassesUnit: '太陽質量',
|
|
96
|
+
rsUnit: 'Rs',
|
|
97
|
+
zeroKilometers: '0 km',
|
|
98
|
+
zeroMilliseconds: '0 ms',
|
|
99
|
+
zeroMultiplier: '0倍',
|
|
100
|
+
zeroLightSpeed: '0% c',
|
|
101
|
+
zeroTidal: '0 g/m',
|
|
102
|
+
initialMassOutput: '10太陽質量',
|
|
103
|
+
initialDistanceOutput: '3.0 Rs',
|
|
104
|
+
initialSpeedOutput: '32% c',
|
|
105
|
+
},
|
|
106
|
+
seo: [
|
|
107
|
+
{
|
|
108
|
+
type: 'title',
|
|
109
|
+
text: 'ブラックホール事象の地平面シミュレーター:シュワルツシルト半径、光子球、時間の遅れ',
|
|
110
|
+
level: 2,
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'paragraph',
|
|
114
|
+
html: 'このブラックホール事象の地平面シミュレーターは、シュワルツシルトブラックホールの核となる概念をインタラクティブな視覚モデルに変換します。ブラックホールの質量を変更し、探査機を内外に移動させて、事象の地平面、光子球、最も内側の安定した円軌道、脱出速度、重力赤方偏移、時間の遅れがどのように変化するかを比較できます。',
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
type: 'paragraph',
|
|
118
|
+
html: 'このシミュレーターは、静的な公式以上のものを求める天文学の学生、物理学の教師、サイエンスライター、好奇心旺盛な学習者のために作られています。表示は数値と空間図を結びつけ、事象の地平面が物質的な表面ではない理由、光子が特別な不安定軌道を持つ理由、そして地平面に到達する前に安定した円運動が止まる理由を視覚的に理解できます。',
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
type: 'title',
|
|
122
|
+
text: '事象の地平面半径の計算方法',
|
|
123
|
+
level: 3,
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
type: 'paragraph',
|
|
127
|
+
html: '非回転・無電荷のブラックホールの場合、事象の地平面半径は<strong>シュワルツシルト半径</strong>です。これは<strong>Rs = 2GM / c^2</strong>で計算されます。Gは重力定数、Mはブラックホール質量、cは光速です。太陽質量1つ分は約2.95kmのシュワルツシルト半径に相当します。',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'paragraph',
|
|
131
|
+
html: 'シュワルツシルト半径は質量に比例するため、10太陽質量のブラックホールは約29.5kmの半径を持ち、いて座A*のような400万太陽質量のブラックホールは約1180万kmの半径を持ちます。質量スライダーは対数スケールを使用しているため、恒星質量と超大質量の両方のケースを同じコントロールで操作できます。',
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'table',
|
|
135
|
+
headers: ['領域', 'シュワルツシルト半径での半径', '意味'],
|
|
136
|
+
rows: [
|
|
137
|
+
['事象の地平面', '1.0 Rs', '脱出速度が光速に等しくなる一方通行の境界。'],
|
|
138
|
+
['光子球', '1.5 Rs', 'シュワルツシルトブラックホール周辺での光の不安定な円軌道。'],
|
|
139
|
+
['ISCO', '3.0 Rs', '質量を持つ粒子がとりうる最も内側の安定した円軌道。'],
|
|
140
|
+
['弱重力場', '6 Rs 以上', '重力は依然として強いが、円軌道を維持しやすい領域。'],
|
|
141
|
+
],
|
|
142
|
+
},
|
|
143
|
+
],
|
|
144
|
+
faq,
|
|
145
|
+
bibliography,
|
|
146
|
+
howTo,
|
|
147
|
+
schemas: [
|
|
148
|
+
{
|
|
149
|
+
'@context': 'https://schema.org',
|
|
150
|
+
'@type': 'SoftwareApplication',
|
|
151
|
+
name: title,
|
|
152
|
+
description,
|
|
153
|
+
applicationCategory: 'ScientificApplication',
|
|
154
|
+
operatingSystem: 'Any',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
'@context': 'https://schema.org',
|
|
158
|
+
'@type': 'FAQPage',
|
|
159
|
+
mainEntity: faq.map((item) => ({
|
|
160
|
+
'@type': 'Question',
|
|
161
|
+
name: item.question,
|
|
162
|
+
acceptedAnswer: {
|
|
163
|
+
'@type': 'Answer',
|
|
164
|
+
text: item.answer,
|
|
165
|
+
},
|
|
166
|
+
})),
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
'@context': 'https://schema.org',
|
|
170
|
+
'@type': 'HowTo',
|
|
171
|
+
name: title,
|
|
172
|
+
step: howTo.map((step) => ({
|
|
173
|
+
'@type': 'HowToStep',
|
|
174
|
+
name: step.name,
|
|
175
|
+
text: step.text,
|
|
176
|
+
})),
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
};
|