@jjlmoya/utils-science 1.36.0 → 1.37.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 (30) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +2 -1
  3. package/src/entries.ts +3 -1
  4. package/src/index.ts +1 -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/tools.ts +2 -0
@@ -0,0 +1,181 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'simulateur-double-fente-decoherence';
5
+ const title = 'Simulateur d Experience des Fentes de Young et Decoherence';
6
+ const description = 'Activez et desactivez les detecteurs de chemin pour voir l interference quantique se transformer en deux bandes de particules dans un simulateur visuel a double fente.';
7
+
8
+ const howTo = [
9
+ {
10
+ name: 'Commencez avec le detecteur desactive',
11
+ text: 'Laissez le detecteur de chemin desactive et observez l ecran former des franges d interference claires et sombres a partir d amplitudes de probabilite coherentes.',
12
+ },
13
+ {
14
+ name: 'Augmentez la force du detecteur',
15
+ text: 'Montez le controle du detecteur pour introduire une information de chemin. Plus le detecteur devient fort, plus la coherence diminue et les franges s estompent.',
16
+ },
17
+ {
18
+ name: 'Modifiez la geometrie des fentes',
19
+ text: 'Ajustez l ecartement et la largeur des fentes pour voir comment la geometrie modifie l espacement des franges, la largeur de l enveloppe et la distribution finale sur l ecran.',
20
+ },
21
+ {
22
+ name: 'Lisez les metriques en direct',
23
+ text: 'Utilisez la visibilite des franges, l information de chemin et la coherence pour relier le motif visuel a l histoire de la mesure quantique.',
24
+ },
25
+ ];
26
+
27
+ const faq = [
28
+ {
29
+ question: 'Pourquoi le motif change-t-il quand les detecteurs sont allumes?',
30
+ answer: 'Un detecteur qui peut reveler quelle fente la particule a utilisee detruit la relation de phase entre les deux alternatives. Sans cette coherence, les deux chemins de probabilite n interferent plus et l ecran se rapproche de deux larges bandes de particules.',
31
+ },
32
+ {
33
+ question: 'Ce simulateur signifie-t-il que la conscience effondre la fonction d onde?',
34
+ answer: 'Non. Le simulateur se concentre sur l information physique de chemin et la decoherence. Un detecteur, l environnement ou toute interaction qui rend le chemin distinguable peut supprimer l interference sans necessiter d observateur conscient.',
35
+ },
36
+ {
37
+ question: 'Qu est-ce que la visibilite des franges?',
38
+ answer: 'La visibilite des franges compare les regions claires et sombres sur l ecran. Une visibilite elevee signifie un fort contraste d interference. Une visibilite basse signifie que les espaces sombres se sont remplis et que le motif se comporte davantage comme deux flux de particules independants.',
39
+ },
40
+ {
41
+ question: 'Est-ce un solveur complet de mecanique quantique?',
42
+ answer: 'Non. C est un modele educatif qui melange une enveloppe d interference a double fente avec un controle de decoherence. Il est concu pour expliquer visuellement l effet de mesure, et non pour remplacer une simulation de l equation de Schrodinger pour un appareil reel.',
43
+ },
44
+ {
45
+ question: 'Pourquoi l ecartement des fentes affecte-t-il l espacement des franges?',
46
+ answer: 'Un ecartement plus grand cree une difference de phase plus rapide a travers l ecran, donc les bandes claires et sombres se rapprochent. Un ecartement plus petit ecarte davantage les franges.',
47
+ },
48
+ ];
49
+
50
+ export const content: ToolLocaleContent = {
51
+ slug,
52
+ title,
53
+ description,
54
+ ui: {
55
+ stage: 'Appareil a double fente',
56
+ controls: 'Controles de la double fente',
57
+ results: 'Resultats de la double fente',
58
+ kicker: 'Controle de mesure',
59
+ detectorToggle: 'Activer le detecteur de chemin',
60
+ detectorStrength: 'Force du detecteur',
61
+ slitSeparation: 'Ecartement des fentes',
62
+ slitWidth: 'Largeur de fente',
63
+ unobserved: 'Non observe',
64
+ observed: 'Observe',
65
+ waveMode: 'Interference',
66
+ particleMode: 'Bandes de particules',
67
+ fringeVisibility: 'Visibilite des franges',
68
+ whichPath: 'Info de chemin',
69
+ coherence: 'Coherence',
70
+ readoutNote: 'L interference subsiste quand les deux chemins restent indiscernables. La mesure rend l information de chemin disponible et l ecran perd ses franges sombres.',
71
+ },
72
+ seo: [
73
+ {
74
+ type: 'title',
75
+ text: 'Simulateur d experience des fentes de Young avec decoherence et detection de chemin',
76
+ level: 2,
77
+ },
78
+ {
79
+ type: 'paragraph',
80
+ html: 'Ce simulateur a double fente transforme l experience quantique classique en un modele visuel interactif. Avec le detecteur desactive, l ecran affiche un motif d interference: des bandes claires et sombres produites parce que les deux chemins possibles restent coherents. Quand un detecteur de chemin est ajoute, le motif se transforme progressivement en deux larges bandes de particules car les alternatives de chemin deviennent distinguables.',
81
+ },
82
+ {
83
+ type: 'paragraph',
84
+ html: 'L outil est concu pour les apprenants qui cherchent une explication claire de pourquoi l observation modifie le resultat des fentes de Young. Il evite la phrase vague "l observateur change la realite" et se concentre sur l idee physiquement utile: l interference necessite des alternatives indiscernables, tandis que la mesure et l intrication avec l environnement suppriment la relation de phase necessaire aux franges.',
85
+ },
86
+ {
87
+ type: 'title',
88
+ text: 'Ce que demontre l experience des fentes de Young',
89
+ level: 3,
90
+ },
91
+ {
92
+ type: 'paragraph',
93
+ html: 'Dans la configuration non observee, un objet quantique unique est decrit par des amplitudes de probabilite associees aux deux fentes. Ces amplitudes s additionnent avec phase. A certaines positions sur l ecran elles se renforcent mutuellement, produisant des bandes claires; a d autres positions elles s annulent, produisant des bandes sombres. Cette structure alternante est la signature de l interference.',
94
+ },
95
+ {
96
+ type: 'paragraph',
97
+ html: 'Si un detecteur enregistre quelle fente a ete utilisee, les alternatives cessent d etre indiscernables. L ecran ne recoit plus une somme coherente d amplitudes. Il recoit un melange de deux resultats conditionnes par le chemin, donc les espaces sombres d interference se remplissent et le resultat ressemble a des particules passant par une fente ou l autre.',
98
+ },
99
+ {
100
+ type: 'title',
101
+ text: 'Comment lire le simulateur',
102
+ level: 3,
103
+ },
104
+ {
105
+ type: 'table',
106
+ headers: ['Controle ou metrique', 'Ce qu il modifie', 'Ce qu il faut observer'],
107
+ rows: [
108
+ ['Force du detecteur', 'Combien d information de chemin est disponible', 'Des valeurs plus elevees reduisent la visibilite des franges et renforcent le motif a deux bandes.'],
109
+ ['Ecartement des fentes', 'La distance entre les deux ouvertures', 'Un ecartement plus large resserre les bandes d interference sur l ecran.'],
110
+ ['Largeur de fente', 'La taille de chaque ouverture', 'Des fentes plus larges retrecissent l enveloppe de diffraction et remodellent la luminosite globale.'],
111
+ ['Visibilite des franges', 'Contraste entre les regions claires et sombres', 'Un nombre eleve signifie que l interference coherente est encore visible.'],
112
+ ['Coherence', 'Combien de relation de phase subsiste entre les chemins', 'La coherence diminue a mesure que le detecteur rend les chemins distinguables.'],
113
+ ],
114
+ },
115
+ {
116
+ type: 'title',
117
+ text: 'Decoherence sans mysticisme',
118
+ level: 3,
119
+ },
120
+ {
121
+ type: 'paragraph',
122
+ html: 'La decoherence est la perte de coherence de phase exploitable quand un systeme quantique se correle avec un detecteur ou l environnement. Dans une experience a double fente, cette correlation peut transporter une information de chemin. Une fois que le chemin est enregistre en principe, meme si personne ne lit l enregistrement, le motif d interference est supprime.',
123
+ },
124
+ {
125
+ type: 'paragraph',
126
+ html: 'Cette distinction importe car de nombreuses explications exagerent le role de l observation humaine. La physique importante n est pas la vue ou la conscience; c est de savoir si le montage experimental preserve ou detruit l indiscernabilite des alternatives qui autrement interfereraient.',
127
+ },
128
+ {
129
+ type: 'title',
130
+ text: 'Limites de ce modele educatif',
131
+ level: 3,
132
+ },
133
+ {
134
+ type: 'paragraph',
135
+ html: 'Le simulateur utilise un motif compact de double fente de style optique et le combine avec un modele de force de detecteur pour la decoherence. Il est excellent pour l intuition, les demonstrations en classe et la revision conceptuelle, mais il ne constitue pas une solution numerique d un appareil quantique complet avec espaces de Hilbert du detecteur, sources de bruit ou etalonnage de laboratoire.',
136
+ },
137
+ {
138
+ type: 'list',
139
+ items: [
140
+ '<strong>Utilisez-le pour comprendre les concepts:</strong> interference, information de chemin, coherence et mesure.',
141
+ '<strong>Ne l utilisez pas pour la conception experimentale:</strong> les veritables experiences a double fente necessitent des calculs precis de longueur d onde, d ouverture, de detecteur et de propagation.',
142
+ '<strong>Concentrez-vous sur la tendance:</strong> plus la distinguabilite augmente, plus le contraste d interference diminue.',
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 = '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
+ };