@jjlmoya/utils-science 1.36.0 → 1.38.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 (76) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +4 -1
  3. package/src/entries.ts +7 -1
  4. package/src/index.ts +3 -0
  5. package/src/tests/locale_completeness.test.ts +2 -2
  6. package/src/tests/tool_validation.test.ts +2 -2
  7. package/src/tool/double-slit-decoherence/bibliography.astro +14 -0
  8. package/src/tool/double-slit-decoherence/bibliography.ts +12 -0
  9. package/src/tool/double-slit-decoherence/component.astro +235 -0
  10. package/src/tool/double-slit-decoherence/double-slit-decoherence-simulator.css +344 -0
  11. package/src/tool/double-slit-decoherence/entry.ts +26 -0
  12. package/src/tool/double-slit-decoherence/i18n/de.ts +181 -0
  13. package/src/tool/double-slit-decoherence/i18n/en.ts +181 -0
  14. package/src/tool/double-slit-decoherence/i18n/es.ts +181 -0
  15. package/src/tool/double-slit-decoherence/i18n/fr.ts +181 -0
  16. package/src/tool/double-slit-decoherence/i18n/id.ts +181 -0
  17. package/src/tool/double-slit-decoherence/i18n/it.ts +181 -0
  18. package/src/tool/double-slit-decoherence/i18n/ja.ts +181 -0
  19. package/src/tool/double-slit-decoherence/i18n/ko.ts +181 -0
  20. package/src/tool/double-slit-decoherence/i18n/nl.ts +181 -0
  21. package/src/tool/double-slit-decoherence/i18n/pl.ts +181 -0
  22. package/src/tool/double-slit-decoherence/i18n/pt.ts +181 -0
  23. package/src/tool/double-slit-decoherence/i18n/ru.ts +181 -0
  24. package/src/tool/double-slit-decoherence/i18n/sv.ts +181 -0
  25. package/src/tool/double-slit-decoherence/i18n/tr.ts +181 -0
  26. package/src/tool/double-slit-decoherence/i18n/zh.ts +181 -0
  27. package/src/tool/double-slit-decoherence/index.ts +11 -0
  28. package/src/tool/double-slit-decoherence/logic.ts +77 -0
  29. package/src/tool/double-slit-decoherence/seo.astro +15 -0
  30. package/src/tool/dyson-sphere-energy-capture/bibliography.astro +14 -0
  31. package/src/tool/dyson-sphere-energy-capture/bibliography.ts +16 -0
  32. package/src/tool/dyson-sphere-energy-capture/component.astro +253 -0
  33. package/src/tool/dyson-sphere-energy-capture/dyson-sphere-energy-capture.css +502 -0
  34. package/src/tool/dyson-sphere-energy-capture/entry.ts +26 -0
  35. package/src/tool/dyson-sphere-energy-capture/i18n/de.ts +195 -0
  36. package/src/tool/dyson-sphere-energy-capture/i18n/en.ts +195 -0
  37. package/src/tool/dyson-sphere-energy-capture/i18n/es.ts +195 -0
  38. package/src/tool/dyson-sphere-energy-capture/i18n/fr.ts +195 -0
  39. package/src/tool/dyson-sphere-energy-capture/i18n/id.ts +195 -0
  40. package/src/tool/dyson-sphere-energy-capture/i18n/it.ts +195 -0
  41. package/src/tool/dyson-sphere-energy-capture/i18n/ja.ts +71 -0
  42. package/src/tool/dyson-sphere-energy-capture/i18n/ko.ts +71 -0
  43. package/src/tool/dyson-sphere-energy-capture/i18n/nl.ts +197 -0
  44. package/src/tool/dyson-sphere-energy-capture/i18n/pl.ts +197 -0
  45. package/src/tool/dyson-sphere-energy-capture/i18n/pt.ts +195 -0
  46. package/src/tool/dyson-sphere-energy-capture/i18n/ru.ts +195 -0
  47. package/src/tool/dyson-sphere-energy-capture/i18n/sv.ts +195 -0
  48. package/src/tool/dyson-sphere-energy-capture/i18n/tr.ts +195 -0
  49. package/src/tool/dyson-sphere-energy-capture/i18n/zh.ts +71 -0
  50. package/src/tool/dyson-sphere-energy-capture/index.ts +11 -0
  51. package/src/tool/dyson-sphere-energy-capture/logic.ts +120 -0
  52. package/src/tool/dyson-sphere-energy-capture/seo.astro +15 -0
  53. package/src/tool/global-albedo-snowball-simulator/bibliography.astro +14 -0
  54. package/src/tool/global-albedo-snowball-simulator/bibliography.ts +16 -0
  55. package/src/tool/global-albedo-snowball-simulator/component.astro +278 -0
  56. package/src/tool/global-albedo-snowball-simulator/entry.ts +26 -0
  57. package/src/tool/global-albedo-snowball-simulator/global-albedo-snowball-simulator.css +530 -0
  58. package/src/tool/global-albedo-snowball-simulator/i18n/de.ts +169 -0
  59. package/src/tool/global-albedo-snowball-simulator/i18n/en.ts +169 -0
  60. package/src/tool/global-albedo-snowball-simulator/i18n/es.ts +169 -0
  61. package/src/tool/global-albedo-snowball-simulator/i18n/fr.ts +169 -0
  62. package/src/tool/global-albedo-snowball-simulator/i18n/id.ts +169 -0
  63. package/src/tool/global-albedo-snowball-simulator/i18n/it.ts +87 -0
  64. package/src/tool/global-albedo-snowball-simulator/i18n/ja.ts +87 -0
  65. package/src/tool/global-albedo-snowball-simulator/i18n/ko.ts +169 -0
  66. package/src/tool/global-albedo-snowball-simulator/i18n/nl.ts +169 -0
  67. package/src/tool/global-albedo-snowball-simulator/i18n/pl.ts +169 -0
  68. package/src/tool/global-albedo-snowball-simulator/i18n/pt.ts +169 -0
  69. package/src/tool/global-albedo-snowball-simulator/i18n/ru.ts +169 -0
  70. package/src/tool/global-albedo-snowball-simulator/i18n/sv.ts +169 -0
  71. package/src/tool/global-albedo-snowball-simulator/i18n/tr.ts +169 -0
  72. package/src/tool/global-albedo-snowball-simulator/i18n/zh.ts +169 -0
  73. package/src/tool/global-albedo-snowball-simulator/index.ts +11 -0
  74. package/src/tool/global-albedo-snowball-simulator/logic.ts +88 -0
  75. package/src/tool/global-albedo-snowball-simulator/seo.astro +15 -0
  76. package/src/tools.ts +6 -0
@@ -0,0 +1,181 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'simulator-celah-ganda-dekoherensi';
5
+ const title = 'Simulator Eksperimen Celah Ganda dan Dekoherensi';
6
+ const description = 'Nyalakan dan matikan detektor jalur mana untuk melihat interferensi kuantum memudar menjadi dua pita partikel dalam simulator celah ganda visual.';
7
+
8
+ const howTo = [
9
+ {
10
+ name: 'Mulai dengan detektor mati',
11
+ text: 'Biarkan detektor jalur mana dinonaktifkan dan saksikan layar membentuk pinggiran interferensi terang dan gelap dari amplitudo probabilitas yang koheren.',
12
+ },
13
+ {
14
+ name: 'Tingkatkan kekuatan detektor',
15
+ text: 'Naikkan kontrol detektor untuk memperkenalkan informasi jalur mana. Semakin kuat detektor, semakin turun koherensi dan pinggiran memudar.',
16
+ },
17
+ {
18
+ name: 'Ubah geometri celah',
19
+ text: 'Sesuaikan jarak celah dan lebar celah untuk melihat bagaimana geometri mengubah jarak pinggiran, lebar selubung, dan distribusi akhir di layar.',
20
+ },
21
+ {
22
+ name: 'Baca metrik langsung',
23
+ text: 'Gunakan visibilitas pinggiran, informasi jalur mana, dan koherensi untuk menghubungkan pola visual dengan kisah pengukuran kuantum.',
24
+ },
25
+ ];
26
+
27
+ const faq = [
28
+ {
29
+ question: 'Mengapa pola berubah ketika detektor dinyalakan?',
30
+ answer: 'Detektor yang dapat mengungkapkan celah mana yang digunakan partikel menghancurkan hubungan fase antara dua alternatif. Tanpa koherensi itu, dua jalur probabilitas tidak lagi berinterferensi dan layar mendekati dua pita partikel lebar.',
31
+ },
32
+ {
33
+ question: 'Apakah simulator ini berarti kesadaran meruntuhkan fungsi gelombang?',
34
+ answer: 'Tidak. Simulator berfokus pada informasi fisik jalur mana dan dekoherensi. Detektor, lingkungan, atau interaksi apa pun yang membuat jalur dapat dibedakan dapat menekan interferensi tanpa memerlukan pengamat sadar.',
35
+ },
36
+ {
37
+ question: 'Apa itu visibilitas pinggiran?',
38
+ answer: 'Visibilitas pinggiran membandingkan daerah terang dan gelap di layar. Visibilitas tinggi berarti kontras interferensi kuat. Visibilitas rendah berarti celah gelap telah terisi dan pola berperilaku lebih seperti dua aliran partikel independen.',
39
+ },
40
+ {
41
+ question: 'Apakah ini pemecah mekanika kuantum lengkap?',
42
+ answer: 'Tidak. Ini adalah model edukatif yang menggabungkan selubung interferensi celah ganda dengan kontrol dekoherensi. Dibangun untuk menjelaskan efek pengukuran secara visual, bukan untuk menggantikan simulasi persamaan Schrodinger untuk peralatan nyata.',
43
+ },
44
+ {
45
+ question: 'Mengapa jarak celah memengaruhi jarak pinggiran?',
46
+ answer: 'Jarak yang lebih besar menciptakan perbedaan fase yang lebih cepat di layar, sehingga pita terang dan gelap menjadi lebih rapat. Jarak yang lebih kecil menyebarkan pinggiran lebih jauh.',
47
+ },
48
+ ];
49
+
50
+ export const content: ToolLocaleContent = {
51
+ slug,
52
+ title,
53
+ description,
54
+ ui: {
55
+ stage: 'Alat celah ganda',
56
+ controls: 'Kontrol celah ganda',
57
+ results: 'Hasil celah ganda',
58
+ kicker: 'Kontrol pengukuran',
59
+ detectorToggle: 'Aktifkan detektor jalur mana',
60
+ detectorStrength: 'Kekuatan detektor',
61
+ slitSeparation: 'Jarak celah',
62
+ slitWidth: 'Lebar celah',
63
+ unobserved: 'Tidak diamati',
64
+ observed: 'Diamati',
65
+ waveMode: 'Interferensi',
66
+ particleMode: 'Pita partikel',
67
+ fringeVisibility: 'Visibilitas pinggiran',
68
+ whichPath: 'Info jalur mana',
69
+ coherence: 'Koherensi',
70
+ readoutNote: 'Interferensi bertahan ketika kedua jalur tetap tidak dapat dibedakan. Pengukuran membuat informasi jalur tersedia dan layar kehilangan pinggiran gelapnya.',
71
+ },
72
+ seo: [
73
+ {
74
+ type: 'title',
75
+ text: 'Simulator eksperimen celah ganda dengan dekoherensi dan deteksi jalur mana',
76
+ level: 2,
77
+ },
78
+ {
79
+ type: 'paragraph',
80
+ html: 'Simulator celah ganda ini mengubah eksperimen kuantum klasik menjadi model visual interaktif. Dengan detektor mati, layar menunjukkan pola interferensi: pita terang dan gelap dihasilkan karena dua jalur yang mungkin tetap koheren. Ketika detektor jalur mana ditambahkan, pola berubah secara bertahap menjadi dua pita partikel lebar karena alternatif jalur menjadi dapat dibedakan.',
81
+ },
82
+ {
83
+ type: 'paragraph',
84
+ html: 'Alat ini dirancang untuk pelajar yang mencari penjelasan jelas mengapa pengamatan mengubah hasil celah ganda. Ini menghindari frasa samar "pengamat mengubah realitas" dan sebagai gantinya berfokus pada ide yang berguna secara fisik: interferensi membutuhkan alternatif yang tidak dapat dibedakan, sementara pengukuran dan keterikatan lingkungan menghilangkan hubungan fase yang diperlukan untuk pinggiran.',
85
+ },
86
+ {
87
+ type: 'title',
88
+ text: 'Apa yang ditunjukkan oleh eksperimen celah ganda',
89
+ level: 3,
90
+ },
91
+ {
92
+ type: 'paragraph',
93
+ html: 'Dalam pengaturan yang tidak diamati, objek kuantum tunggal dijelaskan oleh amplitudo probabilitas yang terkait dengan kedua celah. Amplitudo tersebut dijumlahkan dengan fase. Di beberapa posisi di layar mereka saling memperkuat, menghasilkan pita terang; di posisi lain mereka saling membatalkan, menghasilkan pita gelap. Struktur bergantian itu adalah tanda interferensi.',
94
+ },
95
+ {
96
+ type: 'paragraph',
97
+ html: 'Jika detektor mencatat celah mana yang digunakan, alternatif berhenti menjadi tidak dapat dibedakan. Layar tidak lagi menerima jumlah koheren dari amplitudo. Ia menerima campuran dari dua hasil yang dikondisikan jalur, sehingga celah gelap interferensi terisi dan hasilnya terlihat seperti partikel yang melewati satu celah atau yang lain.',
98
+ },
99
+ {
100
+ type: 'title',
101
+ text: 'Cara membaca simulator',
102
+ level: 3,
103
+ },
104
+ {
105
+ type: 'table',
106
+ headers: ['Kontrol atau metrik', 'Apa yang diubah', 'Apa yang harus diperhatikan'],
107
+ rows: [
108
+ ['Kekuatan detektor', 'Berapa banyak informasi jalur mana yang tersedia', 'Nilai lebih tinggi mengurangi visibilitas pinggiran dan meningkatkan pola partikel dua pita.'],
109
+ ['Jarak celah', 'Jarak antara dua bukaan', 'Jarak yang lebih lebar membuat pita interferensi lebih rapat di layar.'],
110
+ ['Lebar celah', 'Ukuran setiap bukaan', 'Celah lebih lebar mempersempit selubung difraksi dan membentuk ulang kecerahan keseluruhan.'],
111
+ ['Visibilitas pinggiran', 'Kontras antara daerah layar terang dan gelap', 'Angka tinggi berarti interferensi koheren masih terlihat.'],
112
+ ['Koherensi', 'Berapa banyak hubungan fase yang tersisa di antara jalur', 'Koherensi turun saat detektor membuat jalur dapat dibedakan.'],
113
+ ],
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'Dekoherensi tanpa mistisisme',
118
+ level: 3,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'Dekoherensi adalah hilangnya koherensi fase yang dapat digunakan ketika sistem kuantum menjadi berkorelasi dengan detektor atau lingkungan. Dalam eksperimen celah ganda, korelasi itu dapat membawa informasi jalur mana. Setelah jalur dicatat secara prinsip, bahkan jika tidak ada yang membaca catatan itu, pola interferensi ditekan.',
123
+ },
124
+ {
125
+ type: 'paragraph',
126
+ html: 'Perbedaan ini penting karena banyak penjelasan melebih-lebihkan peran pengamatan manusia. Fisika yang penting bukanlah penglihatan atau kesadaran; melainkan apakah pengaturan eksperimental mempertahankan atau menghancurkan ketidakdapatdibedakan dari alternatif yang seharusnya saling berinterferensi.',
127
+ },
128
+ {
129
+ type: 'title',
130
+ text: 'Keterbatasan model edukatif ini',
131
+ level: 3,
132
+ },
133
+ {
134
+ type: 'paragraph',
135
+ html: 'Simulator menggunakan pola celah ganda gaya optik yang ringkas dan menggabungkannya dengan model kekuatan detektor untuk dekoherensi. Sangat baik untuk intuisi, demonstrasi kelas, dan revisi konseptual, tetapi bukan solusi numerik dari peralatan kuantum lengkap dengan ruang Hilbert detektor, sumber kebisingan, atau kalibrasi laboratorium.',
136
+ },
137
+ {
138
+ type: 'list',
139
+ items: [
140
+ '<strong>Gunakan untuk memahami konsep:</strong> interferensi, informasi jalur mana, koherensi, dan pengukuran.',
141
+ '<strong>Jangan gunakan untuk desain eksperimental:</strong> eksperimen celah ganda nyata memerlukan perhitungan panjang gelombang, bukaan, detektor, dan propagasi yang tepat.',
142
+ '<strong>Fokus pada tren:</strong> seiring meningkatnya kemampuan dibedakan, kontras interferensi menurun.',
143
+ ],
144
+ },
145
+ ],
146
+ faq,
147
+ bibliography,
148
+ howTo,
149
+ schemas: [
150
+ {
151
+ '@context': 'https://schema.org',
152
+ '@type': 'SoftwareApplication',
153
+ name: title,
154
+ description,
155
+ applicationCategory: 'ScientificApplication',
156
+ operatingSystem: 'Any',
157
+ },
158
+ {
159
+ '@context': 'https://schema.org',
160
+ '@type': 'FAQPage',
161
+ mainEntity: faq.map((item) => ({
162
+ '@type': 'Question',
163
+ name: item.question,
164
+ acceptedAnswer: {
165
+ '@type': 'Answer',
166
+ text: item.answer,
167
+ },
168
+ })),
169
+ },
170
+ {
171
+ '@context': 'https://schema.org',
172
+ '@type': 'HowTo',
173
+ name: title,
174
+ step: howTo.map((step) => ({
175
+ '@type': 'HowToStep',
176
+ name: step.name,
177
+ text: step.text,
178
+ })),
179
+ },
180
+ ],
181
+ };
@@ -0,0 +1,181 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'simulatore-doppia-fenditura-decoerenza';
5
+ const title = 'Simulatore dell Esperimento della Doppia Fenditura e Decoerenza';
6
+ const description = 'Attiva e disattiva i rivelatori di percorso per vedere l interferenza quantistica dissolversi in due bande di particelle in un simulatore visivo a doppia fenditura.';
7
+
8
+ const howTo = [
9
+ {
10
+ name: 'Inizia con il rivelatore spento',
11
+ text: 'Lascia il rivelatore di percorso disattivato e osserva lo schermo formare frange di interferenza chiare e scure dalle ampiezze di probabilita coerenti.',
12
+ },
13
+ {
14
+ name: 'Aumenta l intensita del rivelatore',
15
+ text: 'Alza il controllo del rivelatore per introdurre informazioni sul percorso. Piu il rivelatore diventa forte, piu la coerenza diminuisce e le frange si cancellano.',
16
+ },
17
+ {
18
+ name: 'Modifica la geometria delle fenditure',
19
+ text: 'Regola la separazione e la larghezza delle fenditure per vedere come la geometria cambia la spaziatura delle frange, la larghezza dell inviluppo e la distribuzione finale sullo schermo.',
20
+ },
21
+ {
22
+ name: 'Leggi le metriche in tempo reale',
23
+ text: 'Usa la visibilita delle frange, l informazione sul percorso e la coerenza per collegare il pattern visivo con la storia della misura quantistica.',
24
+ },
25
+ ];
26
+
27
+ const faq = [
28
+ {
29
+ question: 'Perche il pattern cambia quando i rivelatori vengono accesi?',
30
+ answer: 'Un rivelatore che puo rivelare quale fenditura ha usato la particella distrugge la relazione di fase tra le due alternative. Senza quella coerenza, i due percorsi di probabilita non interferiscono piu e lo schermo si avvicina a due ampie bande di particelle.',
31
+ },
32
+ {
33
+ question: 'Questo simulatore significa che la coscienza collassa la funzione d onda?',
34
+ answer: 'No. Il simulatore si concentra sull informazione fisica del percorso e sulla decoerenza. Un rivelatore, l ambiente o qualsiasi interazione che renda il percorso distinguibile puo sopprimere l interferenza senza richiedere un osservatore cosciente.',
35
+ },
36
+ {
37
+ question: 'Cos e la visibilita delle frange?',
38
+ answer: 'La visibilita delle frange confronta le regioni chiare e scure sullo schermo. Un alta visibilita significa un forte contrasto di interferenza. Una bassa visibilita significa che gli spazi scuri si sono riempiti e il pattern si comporta piu come due flussi di particelle indipendenti.',
39
+ },
40
+ {
41
+ question: 'E un risolutore completo di meccanica quantistica?',
42
+ answer: 'No. E un modello didattico che combina un inviluppo di interferenza a doppia fenditura con un controllo di decoerenza. E progettato per spiegare visivamente l effetto di misura, non per sostituire una simulazione dell equazione di Schrodinger per un apparato reale.',
43
+ },
44
+ {
45
+ question: 'Perche la separazione delle fenditure influisce sulla spaziatura delle frange?',
46
+ answer: 'Una separazione maggiore crea una differenza di fase piu rapida attraverso lo schermo, quindi le bande chiare e scure si avvicinano. Una separazione minore distribuisce le frange piu distanti.',
47
+ },
48
+ ];
49
+
50
+ export const content: ToolLocaleContent = {
51
+ slug,
52
+ title,
53
+ description,
54
+ ui: {
55
+ stage: 'Apparato a doppia fenditura',
56
+ controls: 'Controlli della doppia fenditura',
57
+ results: 'Risultati della doppia fenditura',
58
+ kicker: 'Controllo di misura',
59
+ detectorToggle: 'Attiva rivelatore di percorso',
60
+ detectorStrength: 'Intensita del rivelatore',
61
+ slitSeparation: 'Separazione delle fenditure',
62
+ slitWidth: 'Larghezza della fenditura',
63
+ unobserved: 'Non osservato',
64
+ observed: 'Osservato',
65
+ waveMode: 'Interferenza',
66
+ particleMode: 'Bande di particelle',
67
+ fringeVisibility: 'Visibilita delle frange',
68
+ whichPath: 'Informazione di percorso',
69
+ coherence: 'Coerenza',
70
+ readoutNote: 'L interferenza sopravvive quando entrambi i percorsi rimangono indistinguibili. La misura rende disponibile l informazione di percorso e lo schermo perde le sue frange scure.',
71
+ },
72
+ seo: [
73
+ {
74
+ type: 'title',
75
+ text: 'Simulatore dell esperimento della doppia fenditura con decoerenza e rivelazione di percorso',
76
+ level: 2,
77
+ },
78
+ {
79
+ type: 'paragraph',
80
+ html: 'Questo simulatore a doppia fenditura trasforma il classico esperimento quantistico in un modello visivo interattivo. Con il rivelatore spento, lo schermo mostra un pattern di interferenza: bande chiare e scure prodotte perche i due percorsi possibili rimangono coerenti. Quando si aggiunge un rivelatore di percorso, il pattern si trasforma gradualmente in due ampie bande di particelle perche le alternative di percorso diventano distinguibili.',
81
+ },
82
+ {
83
+ type: 'paragraph',
84
+ html: 'Lo strumento e progettato per studenti che cercano una spiegazione chiara del perche l osservazione cambi il risultato della doppia fenditura. Evita la vaga frase "l osservatore cambia la realta" e si concentra sull idea fisicamente utile: l interferenza richiede alternative indistinguibili, mentre la misura e l entanglement ambientale rimuovono la relazione di fase necessaria per le frange.',
85
+ },
86
+ {
87
+ type: 'title',
88
+ text: 'Cosa dimostra l esperimento della doppia fenditura',
89
+ level: 3,
90
+ },
91
+ {
92
+ type: 'paragraph',
93
+ html: 'Nella configurazione non osservata, un singolo oggetto quantistico e descritto da ampiezze di probabilita associate a entrambe le fenditure. Quelle ampiezze si sommano con fase. In alcune posizioni sullo schermo si rinforzano a vicenda, producendo bande chiare; in altre posizioni si cancellano, producendo bande scure. Quella struttura alternata e la firma dell interferenza.',
94
+ },
95
+ {
96
+ type: 'paragraph',
97
+ html: 'Se un rivelatore registra quale fenditura e stata usata, le alternative cessano di essere indistinguibili. Lo schermo non riceve piu una somma coerente di ampiezze. Riceve una miscela di due risultati condizionati dal percorso, quindi gli spazi scuri di interferenza si riempiono e il risultato assomiglia a particelle che passano attraverso l una o l altra fenditura.',
98
+ },
99
+ {
100
+ type: 'title',
101
+ text: 'Come leggere il simulatore',
102
+ level: 3,
103
+ },
104
+ {
105
+ type: 'table',
106
+ headers: ['Controllo o metrica', 'Cosa cambia', 'Cosa cercare'],
107
+ rows: [
108
+ ['Intensita del rivelatore', 'Quanta informazione di percorso e disponibile', 'Valori piu alti riducono la visibilita delle frange e aumentano il pattern a due bande.'],
109
+ ['Separazione delle fenditure', 'La distanza tra le due aperture', 'Una separazione maggiore rende le bande di interferenza piu ravvicinate sullo schermo.'],
110
+ ['Larghezza della fenditura', 'La dimensione di ciascuna apertura', 'Fenditure piu larghe restringono l inviluppo di diffrazione e rimodellano la luminosita complessiva.'],
111
+ ['Visibilita delle frange', 'Contrasto tra regioni chiare e scure dello schermo', 'Un numero alto significa che l interferenza coerente e ancora visibile.'],
112
+ ['Coerenza', 'Quanta relazione di fase rimane tra i percorsi', 'La coerenza diminuisce man mano che il rivelatore rende i percorsi distinguibili.'],
113
+ ],
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'Decoerenza senza misticismo',
118
+ level: 3,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'La decoerenza e la perdita di coerenza di fase utilizzabile quando un sistema quantistico si correla con un rivelatore o con l ambiente. In un esperimento a doppia fenditura, quella correlazione puo trasportare informazioni sul percorso. Una volta che il percorso e registrato in linea di principio, anche se nessuno legge la registrazione, il pattern di interferenza viene soppresso.',
123
+ },
124
+ {
125
+ type: 'paragraph',
126
+ html: 'Questa distinzione e importante perche molte spiegazioni esagerano il ruolo dell osservazione umana. La fisica importante non e la vista o la coscienza; e se l apparato sperimentale preserva o distrugge l indistinguibilita delle alternative che altrimenti interferirebbero.',
127
+ },
128
+ {
129
+ type: 'title',
130
+ text: 'Limiti di questo modello didattico',
131
+ level: 3,
132
+ },
133
+ {
134
+ type: 'paragraph',
135
+ html: 'Il simulatore utilizza un pattern compatto di doppia fenditura in stile ottico e lo combina con un modello di intensita del rivelatore per la decoerenza. E eccellente per l intuizione, le dimostrazioni in classe e la revisione concettuale, ma non e una soluzione numerica di un apparato quantistico completo con spazi di Hilbert del rivelatore, sorgenti di rumore o calibrazione da laboratorio.',
136
+ },
137
+ {
138
+ type: 'list',
139
+ items: [
140
+ '<strong>Usalo per capire i concetti:</strong> interferenza, informazione di percorso, coerenza e misura.',
141
+ '<strong>Non usarlo per la progettazione sperimentale:</strong> i veri esperimenti a doppia fenditura richiedono calcoli precisi di lunghezza d onda, apertura, rivelatore e propagazione.',
142
+ '<strong>Concentrati sul trend:</strong> all aumentare della distinguibilita, il contrasto di interferenza diminuisce.',
143
+ ],
144
+ },
145
+ ],
146
+ faq,
147
+ bibliography,
148
+ howTo,
149
+ schemas: [
150
+ {
151
+ '@context': 'https://schema.org',
152
+ '@type': 'SoftwareApplication',
153
+ name: title,
154
+ description,
155
+ applicationCategory: 'ScientificApplication',
156
+ operatingSystem: 'Any',
157
+ },
158
+ {
159
+ '@context': 'https://schema.org',
160
+ '@type': 'FAQPage',
161
+ mainEntity: faq.map((item) => ({
162
+ '@type': 'Question',
163
+ name: item.question,
164
+ acceptedAnswer: {
165
+ '@type': 'Answer',
166
+ text: item.answer,
167
+ },
168
+ })),
169
+ },
170
+ {
171
+ '@context': 'https://schema.org',
172
+ '@type': 'HowTo',
173
+ name: title,
174
+ step: howTo.map((step) => ({
175
+ '@type': 'HowToStep',
176
+ name: step.name,
177
+ text: step.text,
178
+ })),
179
+ },
180
+ ],
181
+ };
@@ -0,0 +1,181 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'double-slit-decoherence-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: '縞の可視度、どの経路情報、コヒーレンスを使って、視覚パターンを量子測定のストーリーに結び付けます。',
24
+ },
25
+ ];
26
+
27
+ const faq = [
28
+ {
29
+ question: '検出器をオンにするとパターンが変わるのはなぜですか?',
30
+ answer: '粒子がどのスリットを使ったかを明らかにできる検出器は、二つの代替経路間の位相関係を破壊します。そのコヒーレンスがなければ、二つの確率経路はもはや干渉せず、スクリーンは二つの広い粒子帯に近づきます。',
31
+ },
32
+ {
33
+ question: 'このシミュレータは、意識が波動関数を収縮させることを意味しますか?',
34
+ answer: 'いいえ。シミュレータは物理的などの経路情報とデコヒーレンスに焦点を当てています。検出器、環境、または経路を識別可能にするあらゆる相互作用が、意識的な観測者を必要とせずに干渉を抑制できます。',
35
+ },
36
+ {
37
+ question: '縞の可視度とは何ですか?',
38
+ answer: '縞の可視度はスクリーン上の明るい領域と暗い領域を比較します。可視度が高いほど干渉コントラストが強いことを意味します。可視度が低いと暗い隙間が埋まり、パターンは二つの独立した粒子流のように振る舞います。',
39
+ },
40
+ {
41
+ question: 'これは完全な量子力学ソルバーですか?',
42
+ answer: 'いいえ。二重スリット干渉包絡線とデコヒーレンス制御を組み合わせた教育用モデルです。測定効果を視覚的に説明するために作られており、実際の装置に対するシュレーディンガー方程式シミュレーションを置き換えるものではありません。',
43
+ },
44
+ {
45
+ question: 'スリット間隔が縞間隔に影響するのはなぜですか?',
46
+ answer: '間隔が大きいとスクリーン全体でより速い位相差が生じるため、明暗の帯がより密になります。間隔が小さいと縞がより広く広がります。',
47
+ },
48
+ ];
49
+
50
+ export const content: ToolLocaleContent = {
51
+ slug,
52
+ title,
53
+ description,
54
+ ui: {
55
+ stage: '二重スリット装置',
56
+ controls: '二重スリットの制御',
57
+ results: '二重スリットの結果',
58
+ kicker: '測定制御',
59
+ detectorToggle: 'どの経路検出器を有効化',
60
+ detectorStrength: '検出器強度',
61
+ slitSeparation: 'スリット間隔',
62
+ slitWidth: 'スリット幅',
63
+ unobserved: '非観測',
64
+ observed: '観測',
65
+ waveMode: '干渉',
66
+ particleMode: '粒子帯',
67
+ fringeVisibility: '縞の可視度',
68
+ whichPath: 'どの経路情報',
69
+ coherence: 'コヒーレンス',
70
+ readoutNote: '干渉は両方の経路が識別不能なままであるときに持続します。測定により経路情報が利用可能になり、スクリーンから暗い縞が失われます。',
71
+ },
72
+ seo: [
73
+ {
74
+ type: 'title',
75
+ text: 'デコヒーレンスとどの経路検出を備えた二重スリット実験シミュレータ',
76
+ level: 2,
77
+ },
78
+ {
79
+ type: 'paragraph',
80
+ html: 'この二重スリットシミュレータは、古典的な量子実験をインタラクティブな視覚モデルに変えます。検出器をオフにすると、スクリーンには干渉パターンが表示されます。二つの可能な経路がコヒーレントに保たれるために明暗の縞が生じます。どの経路検出器を追加すると、経路の代替案が識別可能になるため、パターンは徐々に二つの広い粒子帯へと変化します。',
81
+ },
82
+ {
83
+ type: 'paragraph',
84
+ html: 'このツールは、観測がなぜ二重スリットの結果を変えるのかについて明確な説明を求める学習者向けに設計されています。「観測者が現実を変える」という曖昧な表現を避け、物理的に有用なアイデアに焦点を当てています。干渉には識別不能な代替経路が必要であり、測定や環境とのエンタングルメントが縞に必要な位相関係を取り除くという考え方です。',
85
+ },
86
+ {
87
+ type: 'title',
88
+ text: '二重スリット実験が示すもの',
89
+ level: 3,
90
+ },
91
+ {
92
+ type: 'paragraph',
93
+ html: '非観測の設定では、単一の量子オブジェクトは両方のスリットに関連する確率振幅によって記述されます。それらの振幅は位相とともに加算されます。スクリーン上のいくつかの位置では互いに強め合い、明るい帯を生成します。他の位置では打ち消し合い、暗い帯を生成します。この交互の構造が干渉の特徴です。',
94
+ },
95
+ {
96
+ type: 'paragraph',
97
+ html: '検出器がどのスリットが使用されたかを記録すると、代替経路は識別不能でなくなります。スクリーンはもはやコヒーレントな振幅の和を受け取りません。経路に条件づけられた二つの結果の混合を受け取るため、暗い干渉の隙間が埋まり、結果は一方または他方のスリットを通る粒子のように見えます。',
98
+ },
99
+ {
100
+ type: 'title',
101
+ text: 'シミュレータの読み方',
102
+ level: 3,
103
+ },
104
+ {
105
+ type: 'table',
106
+ headers: ['制御またはメトリクス', '変更するもの', '注目すべき点'],
107
+ rows: [
108
+ ['検出器強度', 'どの程度のどの経路情報が利用可能か', '値が高いほど縞の可視度が低下し、二帯粒子パターンが強まります。'],
109
+ ['スリット間隔', '二つの開口部の距離', '間隔が広いと干渉縞がスクリーン上でより密になります。'],
110
+ ['スリット幅', '各開口部のサイズ', '幅が広いと回折包絡線が狭まり、全体の明るさが変化します。'],
111
+ ['縞の可視度', 'スクリーンの明暗領域間のコントラスト', '数値が高いとコヒーレントな干渉がまだ見えることを意味します。'],
112
+ ['コヒーレンス', '経路間に残っている位相関係の量', '検出器が経路を識別可能にするにつれてコヒーレンスは低下します。'],
113
+ ],
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: '神秘主義なしのデコヒーレンス',
118
+ level: 3,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'デコヒーレンスとは、量子システムが検出器や環境と相関したときに、利用可能な位相コヒーレンスが失われることです。二重スリット実験では、その相関がどの経路情報を運ぶことができます。経路が原理的に記録されれば、たとえ誰もその記録を読まなくても、干渉パターンは抑制されます。',
123
+ },
124
+ {
125
+ type: 'paragraph',
126
+ html: 'この区別が重要なのは、多くの説明が人間の観測の役割を誇張しているからです。重要な物理学は視覚や意識ではなく、実験装置が干渉するであろう代替経路の識別不能性を保持するか破壊するかです。',
127
+ },
128
+ {
129
+ type: 'title',
130
+ text: 'この教育モデルの限界',
131
+ level: 3,
132
+ },
133
+ {
134
+ type: 'paragraph',
135
+ html: 'シミュレータはコンパクトな光学式二重スリットパターンを使用し、それをデコヒーレンスのための検出器強度モデルと組み合わせています。直感の獲得、教室でのデモンストレーション、概念の復習には優れていますが、検出器のヒルベルト空間、ノイズ源、実験室キャリブレーションを備えた完全な量子装置の数値解法ではありません。',
136
+ },
137
+ {
138
+ type: 'list',
139
+ items: [
140
+ '<strong>概念の理解に使用:</strong> 干渉、どの経路情報、コヒーレンス、測定。',
141
+ '<strong>実験設計には使用しないでください:</strong> 実際の二重スリット実験には、波長、開口、検出器、伝搬の精密な計算が必要です。',
142
+ '<strong>傾向に注目:</strong> 識別可能性が高まるにつれて、干渉コントラストは低下します。',
143
+ ],
144
+ },
145
+ ],
146
+ faq,
147
+ bibliography,
148
+ howTo,
149
+ schemas: [
150
+ {
151
+ '@context': 'https://schema.org',
152
+ '@type': 'SoftwareApplication',
153
+ name: title,
154
+ description,
155
+ applicationCategory: 'ScientificApplication',
156
+ operatingSystem: 'Any',
157
+ },
158
+ {
159
+ '@context': 'https://schema.org',
160
+ '@type': 'FAQPage',
161
+ mainEntity: faq.map((item) => ({
162
+ '@type': 'Question',
163
+ name: item.question,
164
+ acceptedAnswer: {
165
+ '@type': 'Answer',
166
+ text: item.answer,
167
+ },
168
+ })),
169
+ },
170
+ {
171
+ '@context': 'https://schema.org',
172
+ '@type': 'HowTo',
173
+ name: title,
174
+ step: howTo.map((step) => ({
175
+ '@type': 'HowToStep',
176
+ name: step.name,
177
+ text: step.text,
178
+ })),
179
+ },
180
+ ],
181
+ };