@jjlmoya/utils-chrono 1.10.0 → 1.16.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 (117) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +8 -0
  3. package/src/entries.ts +13 -1
  4. package/src/tests/locale_completeness.test.ts +1 -1
  5. package/src/tests/tool_validation.test.ts +1 -1
  6. package/src/tool/gear-train-explorer/bibliography.astro +16 -0
  7. package/src/tool/gear-train-explorer/bibliography.ts +12 -0
  8. package/src/tool/gear-train-explorer/client.ts +146 -0
  9. package/src/tool/gear-train-explorer/component.astro +17 -0
  10. package/src/tool/gear-train-explorer/components/GearPanel.astro +102 -0
  11. package/src/tool/gear-train-explorer/entry.ts +53 -0
  12. package/src/tool/gear-train-explorer/gear-train-explorer.css +172 -0
  13. package/src/tool/gear-train-explorer/gears.ts +148 -0
  14. package/src/tool/gear-train-explorer/helpers.ts +49 -0
  15. package/src/tool/gear-train-explorer/i18n/de.ts +99 -0
  16. package/src/tool/gear-train-explorer/i18n/en.ts +98 -0
  17. package/src/tool/gear-train-explorer/i18n/es.ts +99 -0
  18. package/src/tool/gear-train-explorer/i18n/fr.ts +99 -0
  19. package/src/tool/gear-train-explorer/i18n/id.ts +98 -0
  20. package/src/tool/gear-train-explorer/i18n/it.ts +99 -0
  21. package/src/tool/gear-train-explorer/i18n/ja.ts +98 -0
  22. package/src/tool/gear-train-explorer/i18n/ko.ts +98 -0
  23. package/src/tool/gear-train-explorer/i18n/nl.ts +99 -0
  24. package/src/tool/gear-train-explorer/i18n/pl.ts +99 -0
  25. package/src/tool/gear-train-explorer/i18n/pt.ts +99 -0
  26. package/src/tool/gear-train-explorer/i18n/ru.ts +99 -0
  27. package/src/tool/gear-train-explorer/i18n/sv.ts +99 -0
  28. package/src/tool/gear-train-explorer/i18n/tr.ts +98 -0
  29. package/src/tool/gear-train-explorer/i18n/zh.ts +98 -0
  30. package/src/tool/gear-train-explorer/index.ts +11 -0
  31. package/src/tool/gear-train-explorer/movements.ts +61 -0
  32. package/src/tool/gear-train-explorer/scene.ts +120 -0
  33. package/src/tool/gear-train-explorer/seo.astro +16 -0
  34. package/src/tool/gear-train-explorer/state.ts +30 -0
  35. package/src/tool/gmt-world-timer/bibliography.astro +11 -0
  36. package/src/tool/gmt-world-timer/bibliography.ts +7 -0
  37. package/src/tool/gmt-world-timer/client.ts +250 -0
  38. package/src/tool/gmt-world-timer/component.astro +13 -0
  39. package/src/tool/gmt-world-timer/components/GmtPanel.astro +18 -0
  40. package/src/tool/gmt-world-timer/entry.ts +34 -0
  41. package/src/tool/gmt-world-timer/gmt-world-timer.css +239 -0
  42. package/src/tool/gmt-world-timer/helpers.ts +28 -0
  43. package/src/tool/gmt-world-timer/i18n/de.ts +72 -0
  44. package/src/tool/gmt-world-timer/i18n/en.ts +72 -0
  45. package/src/tool/gmt-world-timer/i18n/es.ts +72 -0
  46. package/src/tool/gmt-world-timer/i18n/fr.ts +72 -0
  47. package/src/tool/gmt-world-timer/i18n/id.ts +72 -0
  48. package/src/tool/gmt-world-timer/i18n/it.ts +72 -0
  49. package/src/tool/gmt-world-timer/i18n/ja.ts +72 -0
  50. package/src/tool/gmt-world-timer/i18n/ko.ts +72 -0
  51. package/src/tool/gmt-world-timer/i18n/nl.ts +72 -0
  52. package/src/tool/gmt-world-timer/i18n/pl.ts +72 -0
  53. package/src/tool/gmt-world-timer/i18n/pt.ts +72 -0
  54. package/src/tool/gmt-world-timer/i18n/ru.ts +72 -0
  55. package/src/tool/gmt-world-timer/i18n/sv.ts +72 -0
  56. package/src/tool/gmt-world-timer/i18n/tr.ts +72 -0
  57. package/src/tool/gmt-world-timer/i18n/zh.ts +72 -0
  58. package/src/tool/gmt-world-timer/index.ts +11 -0
  59. package/src/tool/gmt-world-timer/seo.astro +11 -0
  60. package/src/tool/perpetual-calendar/bibliography.astro +16 -0
  61. package/src/tool/perpetual-calendar/bibliography.ts +16 -0
  62. package/src/tool/perpetual-calendar/calendar.ts +24 -0
  63. package/src/tool/perpetual-calendar/client.ts +98 -0
  64. package/src/tool/perpetual-calendar/component.astro +17 -0
  65. package/src/tool/perpetual-calendar/components/CalendarPanel.astro +49 -0
  66. package/src/tool/perpetual-calendar/dial.ts +176 -0
  67. package/src/tool/perpetual-calendar/entry.ts +48 -0
  68. package/src/tool/perpetual-calendar/helpers.ts +49 -0
  69. package/src/tool/perpetual-calendar/i18n/de.ts +85 -0
  70. package/src/tool/perpetual-calendar/i18n/en.ts +102 -0
  71. package/src/tool/perpetual-calendar/i18n/es.ts +85 -0
  72. package/src/tool/perpetual-calendar/i18n/fr.ts +85 -0
  73. package/src/tool/perpetual-calendar/i18n/id.ts +85 -0
  74. package/src/tool/perpetual-calendar/i18n/it.ts +85 -0
  75. package/src/tool/perpetual-calendar/i18n/ja.ts +85 -0
  76. package/src/tool/perpetual-calendar/i18n/ko.ts +85 -0
  77. package/src/tool/perpetual-calendar/i18n/nl.ts +85 -0
  78. package/src/tool/perpetual-calendar/i18n/pl.ts +85 -0
  79. package/src/tool/perpetual-calendar/i18n/pt.ts +85 -0
  80. package/src/tool/perpetual-calendar/i18n/ru.ts +85 -0
  81. package/src/tool/perpetual-calendar/i18n/sv.ts +85 -0
  82. package/src/tool/perpetual-calendar/i18n/tr.ts +85 -0
  83. package/src/tool/perpetual-calendar/i18n/zh.ts +85 -0
  84. package/src/tool/perpetual-calendar/index.ts +11 -0
  85. package/src/tool/perpetual-calendar/perpetual-calendar.css +181 -0
  86. package/src/tool/perpetual-calendar/seo.astro +16 -0
  87. package/src/tool/perpetual-calendar/state.ts +26 -0
  88. package/src/tool/tourbillon-visualizer/bibliography.astro +11 -0
  89. package/src/tool/tourbillon-visualizer/bibliography.ts +7 -0
  90. package/src/tool/tourbillon-visualizer/client.ts +122 -0
  91. package/src/tool/tourbillon-visualizer/component.astro +126 -0
  92. package/src/tool/tourbillon-visualizer/components/TourbillonPanel.astro +66 -0
  93. package/src/tool/tourbillon-visualizer/entry.ts +51 -0
  94. package/src/tool/tourbillon-visualizer/helpers.ts +35 -0
  95. package/src/tool/tourbillon-visualizer/i18n/de.ts +96 -0
  96. package/src/tool/tourbillon-visualizer/i18n/en.ts +96 -0
  97. package/src/tool/tourbillon-visualizer/i18n/es.ts +96 -0
  98. package/src/tool/tourbillon-visualizer/i18n/fr.ts +96 -0
  99. package/src/tool/tourbillon-visualizer/i18n/id.ts +96 -0
  100. package/src/tool/tourbillon-visualizer/i18n/it.ts +96 -0
  101. package/src/tool/tourbillon-visualizer/i18n/ja.ts +96 -0
  102. package/src/tool/tourbillon-visualizer/i18n/ko.ts +96 -0
  103. package/src/tool/tourbillon-visualizer/i18n/nl.ts +96 -0
  104. package/src/tool/tourbillon-visualizer/i18n/pl.ts +96 -0
  105. package/src/tool/tourbillon-visualizer/i18n/pt.ts +96 -0
  106. package/src/tool/tourbillon-visualizer/i18n/ru.ts +96 -0
  107. package/src/tool/tourbillon-visualizer/i18n/sv.ts +96 -0
  108. package/src/tool/tourbillon-visualizer/i18n/tr.ts +96 -0
  109. package/src/tool/tourbillon-visualizer/i18n/zh.ts +96 -0
  110. package/src/tool/tourbillon-visualizer/index.ts +11 -0
  111. package/src/tool/tourbillon-visualizer/renderer/base.ts +78 -0
  112. package/src/tool/tourbillon-visualizer/renderer/cage.ts +115 -0
  113. package/src/tool/tourbillon-visualizer/renderer/esc.ts +160 -0
  114. package/src/tool/tourbillon-visualizer/seo.astro +11 -0
  115. package/src/tool/tourbillon-visualizer/state.ts +21 -0
  116. package/src/tool/tourbillon-visualizer/tourbillon.ts +9 -0
  117. package/src/tools.ts +8 -0
@@ -0,0 +1,98 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { GearTrainExplorerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+ import { buildSchemas } from '../helpers';
5
+
6
+ const faq = [
7
+ {
8
+ question: 'Apa itu roda gigi pada jam tangan?',
9
+ answer: 'Roda gigi adalah serangkaian gear yang saling bertautan yang mentransmisikan daya dari barre l mainspring ke escapement. Setiap pasangan gear memberikan rasio reduksi tertentu, memperlambat pelepasan energi mainspring yang cepat menjadi impuls yang terkontrol dan teratur.',
10
+ },
11
+ {
12
+ question: 'Mengapa gerakan yang berbeda memiliki rasio gear yang berbeda?',
13
+ answer: 'Rasio gear ditentukan oleh jumlah gigi pada setiap roda dan pinion. Gerakan dengan tingkat detak yang berbeda (mis., 28.800 vph vs 36.000 vph) memiliki kecepatan roda escapement dan konfigurasi gear yang berbeda untuk mempertahankan ketepatan waktu sambil mengakomodasi frekuensi roda keseimbangan.',
14
+ },
15
+ {
16
+ question: 'Apa perbedaan antara roda dan pinion?',
17
+ answer: 'Dalam horologi, "roda" adalah gear yang lebih besar dengan banyak gigi yang menggerakkan komponen berikutnya. "Pinion" adalah gear yang lebih kecil (biasanya 6-12 gigi) yang digerakkan. Bersama-sama, roda dan pinion membentuk pasangan gear yang mengubah kecepatan rotasi dan torsi.',
18
+ },
19
+ ];
20
+
21
+ const howTo = [
22
+ {
23
+ name: 'Pilih gerakan',
24
+ text: 'Pilih antara gerakan standar (28.800 vph), frekuensi tinggi (36.000 vph El Primero), atau vintage (18.000 vph). Masing-masing memiliki rasio gear dan tingkat detak yang unik.',
25
+ },
26
+ {
27
+ name: 'Amati roda gigi',
28
+ text: 'Saksikan gear animasi berputar pada kecepatan proporsional. Barre l berputar lambat sementara roda escapement berputar cepat. Arahkan kursor ke gear atau kartu data untuk informasi detail.',
29
+ },
30
+ {
31
+ name: 'Sesuaikan kecepatan',
32
+ text: 'Gunakan kontrol kecepatan untuk memperlambat, mempercepat, atau menjeda animasi. Ini membantu memvisualisasikan bagaimana setiap gear berkontribusi pada rantai transmisi daya.',
33
+ },
34
+ ];
35
+
36
+ const title = 'Penjelajah Roda Gigi: Diagram Horologi Interaktif';
37
+
38
+ export const content: ToolLocaleContent<GearTrainExplorerUI> = {
39
+ slug: 'penjelajahrodagigi',
40
+ title,
41
+ description: 'Jelajahi jantung mekanis jam tangan dengan visualisasi roda gigi animasi. Lihat barre l mainspring, roda tengah, roda ketiga, roda keempat, roda escapement, garpu palet, dan roda keseimbangan bergerak.',
42
+ ui: {
43
+ title: 'Penjelajah Roda Gigi',
44
+ barrelLabel: 'Barre l',
45
+ centerWheelLabel: 'Roda Tengah',
46
+ thirdWheelLabel: 'Roda Ketiga',
47
+ fourthWheelLabel: 'Roda Keempat',
48
+ escapeWheelLabel: 'Roda Escapement',
49
+ palletForkLabel: 'Garpu Palet',
50
+ balanceWheelLabel: 'Roda Keseimbangan',
51
+ rpmLabel: 'rpm',
52
+ teethLabel: 'gigi',
53
+ gearRatioLabel: 'Rasio',
54
+ powerFlowLabel: 'Aliran Daya',
55
+ movementLabel: 'Gerakan',
56
+ speedLabel: 'Kecepatan',
57
+ speedNormal: '1x',
58
+ speedSlow: '0.5x',
59
+ speedPaused: 'Dijeda',
60
+ mov2824: 'ETA 2824-2',
61
+ movElPrimero: 'El Primero',
62
+ movVintage: 'Vintage 18k',
63
+ step1: 'Pilih kaliber gerakan untuk melihat rasio gear dan tingkat detak yang unik.',
64
+ step2: 'Arahkan kursor ke gear atau kartu data untuk menyorot posisinya dalam aliran daya.',
65
+ step3: 'Sesuaikan kecepatan animasi untuk mempelajari bagaimana setiap roda mentransmisikan daya melalui roda gigi.',
66
+ tipTitle: 'Tip',
67
+ tipContent: 'Roda gigi mengurangi pelepasan energi mainspring yang cepat menjadi osilasi terkontrol. Barre l tipikal berputar sekali setiap 7-8 jam, sementara roda escapement berputar pada 32 rpm (pada 28.800 vph) — reduksi lebih dari 15.000:1.',
68
+ },
69
+ seo: [
70
+ { type: 'title', text: 'Penjelajah Roda Gigi Interaktif', level: 2 },
71
+ { type: 'paragraph', html: '<strong>Roda gigi</strong> adalah tulang punggung mekanis setiap jam tangan mekanis. Alat interaktif ini memvisualisasikan bagaimana daya mengalir dari barre l mainspring melalui roda tengah, roda ketiga, roda keempat, dan roda escapement ke garpu palet dan roda keseimbangan. Lihat setiap gear berputar pada kecepatan proporsionalnya dan pahami bagaimana rasio gear menentukan ketepatan waktu.' },
72
+ { type: 'title', text: 'Bagaimana Roda Gigi Jam Tangan Bekerja', level: 3 },
73
+ { type: 'paragraph', html: 'Roda gigi jam tangan terdiri dari serangkaian <strong>roda</strong> (gear besar) dan <strong>pinion</strong> (gear kecil) yang mentransmisikan daya sambil mengurangi kecepatan. <strong>Barre l</strong> menampung mainspring dan berputar lambat, menggerakkan <strong>roda tengah</strong> yang berputar sekali per jam (untuk jarum menit). <strong>Roda ketiga</strong> dan <strong>roda keempat</strong> (roda detik) semakin meningkatkan kecepatan rotasi. Akhirnya, <strong>roda escapement</strong> melepaskan daya dalam detak terkontrol ke <strong>garpu palet</strong>, yang secara bergantian mengunci dan membuka kunci roda escapement, mengirimkan impuls ke <strong>roda keseimbangan</strong>. Roda keseimbangan berosilasi pada frekuensi presisi — biasanya 4 Hz (28.800 getaran per jam) — mengatur laju jam.' },
74
+ { type: 'title', text: 'Rasio Gear dan Transmisi Daya', level: 3 },
75
+ {
76
+ type: 'table', headers: ['Komponen', 'Gigi Khas', 'rpm (28.800 vph)', 'Rasio dari Sebelumnya'], rows: [
77
+ ['Barre l', '72', '0,002 (1 rev / 8 j)', '-'],
78
+ ['Roda Tengah', '60', '0,0167 (1 rev / j)', '~7,2:1'],
79
+ ['Roda Ketiga', '50', '0,125 (1 rev / 8 mnt)', '~5:1'],
80
+ ['Roda Keempat', '60', '1 (1 rev / mnt)', '6:1'],
81
+ ['Roda Escapement', '15', '32', '~1,875:1'],
82
+ ]
83
+ },
84
+ { type: 'title', text: 'Perbandingan Gerakan', level: 3 },
85
+ {
86
+ type: 'table', headers: ['Gerakan', 'Tingkat Detak', 'Frekuensi Keseimbangan', 'RPM Roda Escapement', 'Akurasi Khas'], rows: [
87
+ ['Vintage (18.000 vph)', '18.000 bph', '2,5 Hz', '20 rpm', '±15-30 s/h'],
88
+ ['Standar (28.800 vph)', '28.800 bph', '4 Hz', '32 rpm', '±5-15 s/h'],
89
+ ['Frekuensi Tinggi (36.000 vph)', '36.000 bph', '5 Hz', '40 rpm', '±3-8 s/h'],
90
+ ]
91
+ },
92
+ { type: 'diagnostic', variant: 'info', title: 'Alat Pembelajaran Interaktif', icon: 'mdi:cog-clockwise', badge: 'HOROLOGI', html: 'Alat ini menggunakan rasio gear perkiraan yang mewakili gerakan escapement palet Swiss umum. Rasio aktual bervariasi menurut kaliber. Gunakan prasetel gerakan untuk membandingkan bagaimana tingkat detak yang berbeda memengaruhi dinamika roda gigi.' },
93
+ ],
94
+ faq,
95
+ bibliography,
96
+ howTo,
97
+ schemas: buildSchemas(title, faq, howTo),
98
+ };
@@ -0,0 +1,99 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { GearTrainExplorerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+ import { buildSchemas } from '../helpers';
5
+
6
+ const faq = [
7
+ {
8
+ question: 'Che cos\'è un treno di ingranaggi in un orologio?',
9
+ answer: 'Un treno di ingranaggi è una serie di ruote dentate interconnesse che trasmettono la potenza dal bariletto del motore allo scappamento. Ogni coppia di ingranaggi fornisce uno specifico rapporto di riduzione, rallentando il rilascio rapido dell\'energia della molla in impulsi controllati e scanditi nel tempo.',
10
+ },
11
+ {
12
+ question: 'Perché diversi movimenti hanno diversi rapporti di ingranaggio?',
13
+ answer: 'I rapporti di ingranaggio sono determinati dal numero di denti su ogni ruota e pignone. Movimenti con diverse frequenze di battuta (es. 28.800 VPH vs 36.000 VPH) hanno diverse velocità della ruota di scappamento e configurazioni di ingranaggi per mantenere una precisione cronometrica adattandosi alla frequenza del bilanciere.',
14
+ },
15
+ {
16
+ question: 'Qual è la differenza tra una ruota e un pignone?',
17
+ answer: 'In orologeria, una "ruota" è l\'ingranaggio più grande con molti denti che aziona il componente successivo. Un "pignone" è l\'ingranaggio più piccolo (di solito 6-12 denti) che viene azionato. Insieme, una ruota e un pignone formano una coppia di ingranaggi che modifica la velocità di rotazione e la coppia.',
18
+ },
19
+ ];
20
+
21
+ const howTo = [
22
+ {
23
+ name: 'Seleziona un movimento',
24
+ text: 'Scegli tra movimenti standard (28.800 VPH), ad alta frequenza (36.000 VPH El Primero) o vintage (18.000 VPH). Ognuno ha rapporti di ingranaggio e frequenze di battuta unici.',
25
+ },
26
+ {
27
+ name: 'Osserva il treno di ingranaggi',
28
+ text: 'Guarda gli ingranaggi animati ruotare a velocità proporzionali. Il bariletto gira lentamente mentre la ruota di scappamento ruota rapidamente. Passa il mouse su un ingranaggio o una scheda dati per informazioni dettagliate.',
29
+ },
30
+ {
31
+ name: 'Regola la velocità',
32
+ text: 'Usa i controlli di velocità per rallentare, accelerare o mettere in pausa l\'animazione. Questo aiuta a visualizzare come ogni ingranaggio contribuisce alla catena di trasmissione della potenza.',
33
+ },
34
+ ];
35
+
36
+ const title = 'Esploratore del Treno di Ingranaggi: Diagramma Interattivo di Orologeria';
37
+
38
+ export const content: ToolLocaleContent<GearTrainExplorerUI> = {
39
+ slug: 'esploratoretreningranaggi',
40
+ title,
41
+ description: 'Esplora il cuore meccanico di un orologio con una visualizzazione animata del treno di ingranaggi. Vedi il bariletto, la ruota centrale, la terza ruota, la quarta ruota, la ruota di scappamento, l\'ancora e il bilanciere in movimento.',
42
+ ui: {
43
+ title: 'Esploratore del Treno di Ingranaggi',
44
+ barrelLabel: 'Bariletto',
45
+ centerWheelLabel: 'Ruota Centrale',
46
+ thirdWheelLabel: 'Terza Ruota',
47
+ fourthWheelLabel: 'Quarta Ruota',
48
+ escapeWheelLabel: 'Ruota di Scappamento',
49
+ palletForkLabel: 'Ancora',
50
+ balanceWheelLabel: 'Bilanciere',
51
+ rpmLabel: 'giri/min',
52
+ teethLabel: 'denti',
53
+ gearRatioLabel: 'Rapporto',
54
+ powerFlowLabel: 'Flusso di Potenza',
55
+ movementLabel: 'Movimento',
56
+ speedLabel: 'Velocità',
57
+ speedNormal: '1x',
58
+ speedSlow: '0.5x',
59
+ speedPaused: 'Pausa',
60
+ mov2824: 'ETA 2824-2',
61
+ movElPrimero: 'El Primero',
62
+ movVintage: 'Vintage 18k',
63
+ step1: 'Seleziona un calibro di movimento per vedere i suoi rapporti di ingranaggio e frequenza unici.',
64
+ step2: 'Passa il mouse su un ingranaggio o una scheda dati per evidenziare la sua posizione nel flusso di potenza.',
65
+ step3: 'Regola la velocità dell\'animazione per studiare come ogni ruota trasmette la potenza attraverso il treno.',
66
+ tipTitle: 'Consiglio',
67
+ tipContent: 'Il treno di ingranaggi riduce il rapido rilascio di energia della molla in un\'oscillazione controllata. Un bariletto tipico ruota una volta ogni 7-8 ore, mentre la ruota di scappamento gira a 32 giri/min (a 28.800 VPH) — una riduzione di oltre 15.000:1.',
68
+ },
69
+ seo: [
70
+ { type: 'title', text: 'Esploratore Interattivo del Treno di Ingranaggi', level: 2 },
71
+ { type: 'paragraph', html: 'Il <strong>treno di ingranaggi</strong> è la spina dorsale meccanica di ogni orologio meccanico. Questo strumento interattivo visualizza come la potenza fluisce dal bariletto attraverso la ruota centrale, la terza ruota, la quarta ruota e la ruota di scappamento fino all\'ancora e al bilanciere. Guarda ogni ingranaggio ruotare alla sua velocità proporzionale e comprendi come i rapporti di ingranaggio determinano la misurazione del tempo.' },
72
+ { type: 'title', text: 'Come funziona un treno di ingranaggi', level: 3 },
73
+ { type: 'paragraph', html: 'Un treno di ingranaggi di un orologio consiste in una serie di <strong>ruote</strong> (grandi ingranaggi) e <strong>pignoni</strong> (piccoli ingranaggi) che trasmettono potenza riducendo la velocità. Il <strong>bariletto</strong> contiene la molla motrice e ruota lentamente, azionando la <strong>ruota centrale</strong> che gira una volta all\'ora (per la lancetta dei minuti). La <strong>terza ruota</strong> e la <strong>quarta ruota</strong> (ruota dei secondi) aumentano ulteriormente la velocità di rotazione. Infine, la <strong>ruota di scappamento</strong> rilascia la potenza in impulsi controllati all\'<strong>ancora</strong>, che blocca e sblocca alternativamente la ruota di scappamento, inviando impulsi al <strong>bilanciere</strong>. Il bilanciere oscilla a una frequenza precisa — tipicamente 4 Hz (28.800 vibrazioni all\'ora) — regolando la marcia dell\'orologio.' },
74
+ { type: 'title', text: 'Rapporti di Ingranaggio e Trasmissione di Potenza', level: 3 },
75
+ {
76
+ type: 'table', headers: ['Componente', 'Denti tipici', 'giri/min (28.800 VPH)', 'Rapporto precedente'], rows: [
77
+ ['Bariletto', '72', '0,002 (1 giro / 8 h)', '-'],
78
+ ['Ruota Centrale', '60', '0,0167 (1 giro / h)', '~7,2:1'],
79
+ ['Terza Ruota', '50', '0,125 (1 giro / 8 min)', '~5:1'],
80
+ ['Quarta Ruota', '60', '1 (1 giro / min)', '6:1'],
81
+ ['Ruota di Scappamento', '15', '32', '~1,875:1'],
82
+ ]
83
+ },
84
+ { type: 'title', text: 'Confronto Movimenti', level: 3 },
85
+ {
86
+ type: 'table', headers: ['Movimento', 'Frequenza', 'Bilanciere', 'Ruota Scappamento giri/min', 'Precisione tipica'], rows: [
87
+ ['Vintage (18.000 VPH)', '18.000 bph', '2,5 Hz', '20 giri/min', '±15-30 s/g'],
88
+ ['Standard (28.800 VPH)', '28.800 bph', '4 Hz', '32 giri/min', '±5-15 s/g'],
89
+ ['Alta Frequenza (36.000 VPH)', '36.000 bph', '5 Hz', '40 giri/min', '±3-8 s/g'],
90
+ ]
91
+ },
92
+ { type: 'diagnostic', variant: 'info', title: 'Strumento di Apprendimento Interattivo', icon: 'mdi:cog-clockwise', badge: 'OROLOGERIA', html: 'Questo strumento utilizza rapporti di ingranaggio approssimativi rappresentativi dei comuni movimenti a scappamento svizzero. I rapporti reali variano a seconda del calibro. Usa le preimpostazioni di movimento per confrontare come diverse frequenze influenzano la dinamica del treno di ingranaggi.' },
93
+ ],
94
+ faq,
95
+ bibliography,
96
+ howTo,
97
+ schemas: buildSchemas(title, faq, howTo),
98
+ };
99
+
@@ -0,0 +1,98 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { GearTrainExplorerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+ import { buildSchemas } from '../helpers';
5
+
6
+ const faq = [
7
+ {
8
+ question: '時計の歯車列とは何ですか?',
9
+ answer: '歯車列は、香箱から脱進機に動力を伝達する一連の連動する歯車です。各歯車対は特定の減速比を提供し、ぜんまいエネルギーの急速な放出を制御されたタイミングのインパルスに減速します。',
10
+ },
11
+ {
12
+ question: 'なぜ異なるムーブメントは異なる歯車比を持つのですか?',
13
+ answer: '歯車比は各歯車とピニオンの歯数によって決まります。異なる振動数(例:28,800 VPH vs 36,000 VPH)のムーブメントは、テンプの振動数に対応しながら正確な計時を維持するために、異なる脱進機の速度と歯車構成を持っています。',
14
+ },
15
+ {
16
+ question: '歯車とピニオンの違いは何ですか?',
17
+ answer: '時計学において、「歯車」は次のコンポーネントを駆動する、多くの歯を持つ大きな歯車です。「ピニオン」は駆動される小さな歯車(通常6〜12歯)です。歯車とピニオンは一緒になって、回転速度とトルクを変える歯車対を形成します。',
18
+ },
19
+ ];
20
+
21
+ const howTo = [
22
+ {
23
+ name: 'ムーブメントを選択',
24
+ text: '標準(28,800 VPH)、高振動数(36,000 VPH エル・プリメロ)、またはビンテージ(18,000 VPH)のムーブメントから選択できます。それぞれに独自の歯車比と振動数があります。',
25
+ },
26
+ {
27
+ name: '歯車列を観察',
28
+ text: 'アニメーションする歯車が比例した速度で回転するのを見てください。香箱はゆっくり回転し、脱進機は高速で回転します。歯車またはデータカードにホバーすると詳細情報が表示されます。',
29
+ },
30
+ {
31
+ name: '速度を調整',
32
+ text: '速度コントロールを使用して、アニメーションを低速化、高速化、または一時停止できます。これにより、各歯車が動力伝達チェーンにどのように貢献しているかを視覚化できます。',
33
+ },
34
+ ];
35
+
36
+ const title = '歯車列エクスプローラー:インタラクティブ時計学ダイアグラム';
37
+
38
+ export const content: ToolLocaleContent<GearTrainExplorerUI> = {
39
+ slug: 'gear-train-explorer',
40
+ title,
41
+ description: 'アニメーション化された歯車列のビジュアライゼーションで、時計の機械的な心臓部を探検しましょう。香箱、Center Wheel、Third Wheel、Fourth Wheel、脱進機、アンクル、テンプの動きをご覧ください。',
42
+ ui: {
43
+ title: '歯車列エクスプローラー',
44
+ barrelLabel: '香箱',
45
+ centerWheelLabel: 'Center Wheel',
46
+ thirdWheelLabel: 'Third Wheel',
47
+ fourthWheelLabel: 'Fourth Wheel',
48
+ escapeWheelLabel: '脱進機',
49
+ palletForkLabel: 'アンクル',
50
+ balanceWheelLabel: 'テンプ',
51
+ rpmLabel: 'rpm',
52
+ teethLabel: '歯',
53
+ gearRatioLabel: '比率',
54
+ powerFlowLabel: '動力の流れ',
55
+ movementLabel: 'ムーブメント',
56
+ speedLabel: '速度',
57
+ speedNormal: '1x',
58
+ speedSlow: '0.5x',
59
+ speedPaused: '一時停止',
60
+ mov2824: 'ETA 2824-2',
61
+ movElPrimero: 'エル・プリメロ',
62
+ movVintage: 'ビンテージ 18k',
63
+ step1: 'ムーブメントのキャリバーを選択して、その独自の歯車比と振動数を確認します。',
64
+ step2: '歯車またはデータカードにホバーして、動力の流れの中での位置をハイライト表示します。',
65
+ step3: 'アニメーション速度を調整して、各歯車がどのように動力を伝達するかを学習します。',
66
+ tipTitle: 'ヒント',
67
+ tipContent: '歯車列は、ぜんまいの急速なエネルギー放出を制御された振動に変換します。典型的な香箱は7〜8時間に1回回転するのに対し、脱進機は32 rpm(28,800 VPH時)で回転します — 15,000:1以上の減速比です。',
68
+ },
69
+ seo: [
70
+ { type: 'title', text: 'インタラクティブ歯車列エクスプローラー', level: 2 },
71
+ { type: 'paragraph', html: '<strong>歯車列</strong>は、すべての機械式時計の機械的な背骨です。このインタラクティブツールは、香箱からCenter Wheel、Third Wheel、Fourth Wheel、脱進機を経てアンクルとテンプに至る動力の流れを視覚化します。各歯車が比例した速度で回転する様子を見て、歯車比がどのように計時を決定するかを理解してください。' },
72
+ { type: 'title', text: '時計の歯車列の仕組み', level: 3 },
73
+ { type: 'paragraph', html: '時計の歯車列は、速度を減らしながら動力を伝達する一連の<strong>歯車</strong>(大きな歯車)と<strong>ピニオン</strong>(小さな歯車)で構成されています。<strong>香箱</strong>はぜんまいを収容しゆっくり回転し、時計回りに1回転する<strong>Center Wheel</strong>(分針用)を駆動します。<strong>Third Wheel</strong>と<strong>Fourth Wheel</strong>(秒針車)はさらに回転速度を上げます。最後に、<strong>脱進機</strong>が制御された ticks で<strong>アンクル</strong>に動力を解放し、アンクルが交互に脱進機をロック・アンロックして<strong>テンプ</strong>に impulso を送ります。テンプは正確な振動数 — 通常4 Hz(毎時28,800振動)— で振動し、時計のレートを調整します。' },
74
+ { type: 'title', text: '歯車比と動力伝達', level: 3 },
75
+ {
76
+ type: 'table', headers: ['コンポーネント', '標準歯数', 'rpm (28,800 VPH)', '前からの比率'], rows: [
77
+ ['香箱', '72', '0.002 (1回転/8h)', '-'],
78
+ ['Center Wheel', '60', '0.0167 (1回転/h)', '~7.2:1'],
79
+ ['Third Wheel', '50', '0.125 (1回転/8min)', '~5:1'],
80
+ ['Fourth Wheel', '60', '1 (1回転/min)', '6:1'],
81
+ ['脱進機', '15', '32', '~1.875:1'],
82
+ ]
83
+ },
84
+ { type: 'title', text: 'ムーブメント比較', level: 3 },
85
+ {
86
+ type: 'table', headers: ['ムーブメント', '振動数', 'テンプ周波数', '脱進機 rpm', '標準精度'], rows: [
87
+ ['ビンテージ (18,000 VPH)', '18,000 bph', '2.5 Hz', '20 rpm', '±15-30 秒/日'],
88
+ ['標準 (28,800 VPH)', '28,800 bph', '4 Hz', '32 rpm', '±5-15 秒/日'],
89
+ ['高振動数 (36,000 VPH)', '36,000 bph', '5 Hz', '40 rpm', '±3-8 秒/日'],
90
+ ]
91
+ },
92
+ { type: 'diagnostic', variant: 'info', title: 'インタラクティブ学習ツール', icon: 'mdi:cog-clockwise', badge: '時計学', html: 'このツールは、一般的なスイスアンクル脱進機ムーブメントを代表するおおよその歯車比を使用しています。実際の比率はキャリバーによって異なります。ムーブメントプリセットを使用して、異なる振動数が歯車列のダイナミクスにどのように影響するかを比較してください。' },
93
+ ],
94
+ faq,
95
+ bibliography,
96
+ howTo,
97
+ schemas: buildSchemas(title, faq, howTo),
98
+ };
@@ -0,0 +1,98 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { GearTrainExplorerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+ import { buildSchemas } from '../helpers';
5
+
6
+ const faq = [
7
+ {
8
+ question: '시계의 기어 트레인이란 무엇인가요?',
9
+ answer: '기어 트레인은 용두태엽 배럴에서 이스케이프먼트로 동력을 전달하는 일련의 맞물린 기어들입니다. 각 기어 쌍은 특정 감속비를 제공하여 태엽 에너지의 빠른 방출을 제어된 시간 간격의 임펄스로 늦춥니다.',
10
+ },
11
+ {
12
+ question: '왜 다른 무브먼트는 다른 기어비를 가지고 있나요?',
13
+ answer: '기어비는 각 휠과 피니언의 톱니 수에 의해 결정됩니다. 다른 진동수(예: 28,800 VPH vs 36,000 VPH)를 가진 무브먼트는 밸런스 휠 주파수를 수용하면서 정확한 시간 유지를 위해 다른 이스케이프먼트 휠 속도와 기어 구성을 가지고 있습니다.',
14
+ },
15
+ {
16
+ question: '휠과 피니언의 차이점은 무엇인가요?',
17
+ answer: '시계학에서 "휠"은 다음 구성 요소를 구동하는 많은 톱니를 가진 더 큰 기어입니다. "피니언"은 구동되는 더 작은 기어(보통 6-12 톱니)입니다. 함께, 휠과 피니언은 회전 속도와 토크를 변경하는 기어 쌍을 형성합니다.',
18
+ },
19
+ ];
20
+
21
+ const howTo = [
22
+ {
23
+ name: '무브먼트 선택',
24
+ text: '표준(28,800 VPH), 고진동수(36,000 VPH 엘 프리메로), 또는 빈티지(18,000 VPH) 무브먼트 중에서 선택하세요. 각각 고유한 기어비와 진동수를 가지고 있습니다.',
25
+ },
26
+ {
27
+ name: '기어 트레인 관찰',
28
+ text: '애니메이션 기어가 비례 속도로 회전하는 것을 지켜보세요. 배럴은 천천히 회전하는 반면 이스케이프먼트 휠은 빠르게 회전합니다. 기어 또는 데이터 카드에 호버하면 자세한 정보를 볼 수 있습니다.',
29
+ },
30
+ {
31
+ name: '속도 조정',
32
+ text: '속도 컨트롤을 사용하여 애니메이션을 느리게, 빠르게 또는 일시 중지할 수 있습니다. 이를 통해 각 기어가 동력 전달 체인에 어떻게 기여하는지 시각화할 수 있습니다.',
33
+ },
34
+ ];
35
+
36
+ const title = '기어 트레인 탐험가: 대화형 시계학 다이어그램';
37
+
38
+ export const content: ToolLocaleContent<GearTrainExplorerUI> = {
39
+ slug: 'gear-train-explorer',
40
+ title,
41
+ description: '애니메이션 기어 트레인 시각화로 시계의 기계적 심장을 탐험하세요. 배럴, 센터 휠, 서드 휠, 포스 휠, 이스케이프먼트 휠, 팔렛 포크, 밸런스 휠이 움직이는 모습을 확인하세요.',
42
+ ui: {
43
+ title: '기어 트레인 탐험가',
44
+ barrelLabel: '배럴',
45
+ centerWheelLabel: '센터 휠',
46
+ thirdWheelLabel: '서드 휠',
47
+ fourthWheelLabel: '포스 휠',
48
+ escapeWheelLabel: '이스케이프먼트 휠',
49
+ palletForkLabel: '팔렛 포크',
50
+ balanceWheelLabel: '밸런스 휠',
51
+ rpmLabel: 'rpm',
52
+ teethLabel: '톱니',
53
+ gearRatioLabel: '비율',
54
+ powerFlowLabel: '동력 흐름',
55
+ movementLabel: '무브먼트',
56
+ speedLabel: '속도',
57
+ speedNormal: '1x',
58
+ speedSlow: '0.5x',
59
+ speedPaused: '일시 정지',
60
+ mov2824: 'ETA 2824-2',
61
+ movElPrimero: '엘 프리메로',
62
+ movVintage: '빈티지 18k',
63
+ step1: '무브먼트 칼리버를 선택하여 고유한 기어비와 진동수를 확인하세요.',
64
+ step2: '기어 또는 데이터 카드에 호버하여 동력 흐름에서의 위치를 강조 표시하세요.',
65
+ step3: '애니메이션 속도를 조정하여 각 휠이 기어 트레인을 통해 동력을 전달하는 방식을 연구하세요.',
66
+ tipTitle: '팁',
67
+ tipContent: '기어 트레인은 태엽의 빠른 에너지 방출을 제어된 진동으로 변환합니다. 일반적인 배럴은 7-8시간마다 한 번 회전하는 반면, 이스케이프먼트 휠은 32 rpm(28,800 VPH에서)으로 회전합니다 — 15,000:1 이상의 감속비입니다.',
68
+ },
69
+ seo: [
70
+ { type: 'title', text: '대화형 기어 트레인 탐험가', level: 2 },
71
+ { type: 'paragraph', html: '<strong>기어 트레인</strong>은 모든 기계식 시계의 기계적 중추입니다. 이 대화형 도구는 배럴에서 센터 휠, 서드 휠, 포스 휠, 이스케이프먼트 휠을 통해 팔렛 포크와 밸런스 휠로 동력이 흐르는 방식을 시각화합니다. 각 기어가 비례적 속도로 회전하는 것을 보고 기어비가 시간 측정을 어떻게 결정하는지 이해하세요.' },
72
+ { type: 'title', text: '시계 기어 트레인의 작동 방식', level: 3 },
73
+ { type: 'paragraph', html: '시계 기어 트레인은 속도를 줄이면서 동력을 전달하는 일련의 <strong>휠</strong>(큰 기어)과 <strong>피니언</strong>(작은 기어)으로 구성됩니다. <strong>배럴</strong>은 태엽을 수용하고 천천히 회전하며 시간당 한 번 회전하는(분침용) <strong>센터 휠</strong>을 구동합니다. <strong>서드 휠</strong>과 <strong>포스 휠</strong>(초침 휠)은 회전 속도를 더욱 높입니다. 마지막으로, <strong>이스케이프먼트 휠</strong>이 제어된 틱으로 <strong>팔렛 포크</strong>에 동력을 방출하고, 팔렛 포크가 교대로 이스케이프먼트 휠을 잠그고 해제하여 <strong>밸런스 휠</strong>에 임펄스를 보냅니다. 밸런스 휠은 정밀한 주파수 — 일반적으로 4 Hz(시간당 28,800 진동) — 로 진동하여 시계의 레이트를 조절합니다.' },
74
+ { type: 'title', text: '기어비와 동력 전달', level: 3 },
75
+ {
76
+ type: 'table', headers: ['구성 요소', '일반 톱니 수', 'rpm (28,800 VPH)', '이전 비율'], rows: [
77
+ ['배럴', '72', '0.002 (1회전/8h)', '-'],
78
+ ['센터 휠', '60', '0.0167 (1회전/h)', '~7.2:1'],
79
+ ['서드 휠', '50', '0.125 (1회전/8분)', '~5:1'],
80
+ ['포스 휠', '60', '1 (1회전/분)', '6:1'],
81
+ ['이스케이프먼트 휠', '15', '32', '~1.875:1'],
82
+ ]
83
+ },
84
+ { type: 'title', text: '무브먼트 비교', level: 3 },
85
+ {
86
+ type: 'table', headers: ['무브먼트', '진동수', '밸런스 주파수', '이스케이프먼트 휠 rpm', '일반 정확도'], rows: [
87
+ ['빈티지 (18,000 VPH)', '18,000 bph', '2.5 Hz', '20 rpm', '±15-30 초/일'],
88
+ ['표준 (28,800 VPH)', '28,800 bph', '4 Hz', '32 rpm', '±5-15 초/일'],
89
+ ['고진동수 (36,000 VPH)', '36,000 bph', '5 Hz', '40 rpm', '±3-8 초/일'],
90
+ ]
91
+ },
92
+ { type: 'diagnostic', variant: 'info', title: '대화형 학습 도구', icon: 'mdi:cog-clockwise', badge: '시계학', html: '이 도구는 일반적인 스위스 팔렛 이스케이프먼트 무브먼트를 대표하는 근사적인 기어비를 사용합니다. 실제 비율은 칼리버에 따라 다릅니다. 무브먼트 프리셋을 사용하여 다양한 진동수가 기어 트레인 역학에 어떻게 영향을 미치는지 비교하세요.' },
93
+ ],
94
+ faq,
95
+ bibliography,
96
+ howTo,
97
+ schemas: buildSchemas(title, faq, howTo),
98
+ };
@@ -0,0 +1,99 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { GearTrainExplorerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+ import { buildSchemas } from '../helpers';
5
+
6
+ const faq = [
7
+ {
8
+ question: 'Wat is een tandwieltrein in een horloge?',
9
+ answer: 'Een tandwieltrein is een reeks in elkaar grijpende tandwielen die kracht overbrengen van het veerhuis naar het echappement. Elk tandwielpaar zorgt voor een specifieke overbrengingsverhouding, waardoor de snelle vrijgave van veerenergie wordt vertraagd tot gecontroleerde, getimede impulsen.',
10
+ },
11
+ {
12
+ question: 'Waarom hebben verschillende uurwerken verschillende overbrengingsverhoudingen?',
13
+ answer: 'Overbrengingsverhoudingen worden bepaald door het aantal tanden op elk wiel en rondsel. Uurwerken met verschillende slagfrequenties (bijv. 28.800 vph vs 36.000 vph) hebben verschillende echappementsnelheden en tandwielconfiguraties om nauwkeurige tijdmeting te behouden terwijl ze de balansfrequentie accommoderen.',
14
+ },
15
+ {
16
+ question: 'Wat is het verschil tussen een wiel en een rondsel?',
17
+ answer: 'In de horlogerie is een "wiel" het grotere tandwiel met veel tanden dat het volgende onderdeel aandrijft. Een "rondsel" is het kleinere tandwiel (meestal 6-12 tanden) dat wordt aangedreven. Samen vormen een wiel en rondsel een tandwielpaar dat de rotatiesnelheid en het koppel verandert.',
18
+ },
19
+ ];
20
+
21
+ const howTo = [
22
+ {
23
+ name: 'Selecteer een uurwerk',
24
+ text: 'Kies tussen standaard (28.800 vph), hoogfrequente (36.000 vph El Primero) of vintage (18.000 vph) uurwerken. Elk heeft unieke overbrengingsverhoudingen en slagfrequenties.',
25
+ },
26
+ {
27
+ name: 'Observeer de tandwieltrein',
28
+ text: 'Bekijk de geanimeerde tandwielen draaien op proportionele snelheden. Het veerhuis draait langzaam terwijl het echappement snel ronddraait. Beweeg over een tandwiel of gegevenskaart voor gedetailleerde informatie.',
29
+ },
30
+ {
31
+ name: 'Pas de snelheid aan',
32
+ text: 'Gebruik de snelheidsregelaars om de animatie te vertragen, versnellen of pauzeren. Dit helpt te visualiseren hoe elk tandwiel bijdraagt aan de krachtoverbrengingsketen.',
33
+ },
34
+ ];
35
+
36
+ const title = 'Tandwieltrein Verkenner: Interactief Horlogerie Diagram';
37
+
38
+ export const content: ToolLocaleContent<GearTrainExplorerUI> = {
39
+ slug: 'tandwieltreinverkenner',
40
+ title,
41
+ description: 'Verken het mechanische hart van een horloge met een geanimeerde tandwieltreinvisualisatie. Zie het veerhuis, het centrale wiel, het derde wiel, het vierde wiel, het echappement, de anker en het balanswiel in beweging.',
42
+ ui: {
43
+ title: 'Tandwieltrein Verkenner',
44
+ barrelLabel: 'Veerhuis',
45
+ centerWheelLabel: 'Centraal Wiel',
46
+ thirdWheelLabel: 'Derde Wiel',
47
+ fourthWheelLabel: 'Vierde Wiel',
48
+ escapeWheelLabel: 'Echappement',
49
+ palletForkLabel: 'Anker',
50
+ balanceWheelLabel: 'Balanswiel',
51
+ rpmLabel: 'tpm',
52
+ teethLabel: 'tanden',
53
+ gearRatioLabel: 'Verhouding',
54
+ powerFlowLabel: 'Krachtstroom',
55
+ movementLabel: 'Uurwerk',
56
+ speedLabel: 'Snelheid',
57
+ speedNormal: '1x',
58
+ speedSlow: '0.5x',
59
+ speedPaused: 'Gepauzeerd',
60
+ mov2824: 'ETA 2824-2',
61
+ movElPrimero: 'El Primero',
62
+ movVintage: 'Vintage 18k',
63
+ step1: 'Selecteer een uurwerkkaliber om zijn unieke overbrengingsverhoudingen en slagfrequentie te zien.',
64
+ step2: 'Beweeg over een tandwiel of gegevenskaart om zijn positie in de krachtstroom te markeren.',
65
+ step3: 'Pas de animatiesnelheid aan om te bestuderen hoe elk wiel kracht door de trein overbrengt.',
66
+ tipTitle: 'Tip',
67
+ tipContent: 'De tandwieltrein reduceert de snelle energieafgifte van de veer tot een gecontroleerde oscillatie. Een typisch veerhuis draait eenmaal per 7-8 uur, terwijl het echappement draait op 32 tpm (bij 28.800 vph) — een reductie van meer dan 15.000:1.',
68
+ },
69
+ seo: [
70
+ { type: 'title', text: 'Interactieve Tandwieltrein Verkenner', level: 2 },
71
+ { type: 'paragraph', html: 'De <strong>tandwieltrein</strong> is de mechanische ruggengraat van elk mechanisch horloge. Deze interactieve tool visualiseert hoe kracht stroomt van het veerhuis via het centrale wiel, derde wiel, vierde wiel en echappement naar de anker en het balanswiel. Zie elk tandwiel draaien op zijn proportionele snelheid en begrijp hoe overbrengingsverhoudingen de tijdmeting bepalen.' },
72
+ { type: 'title', text: 'Hoe een tandwieltrein werkt', level: 3 },
73
+ { type: 'paragraph', html: 'Een tandwieltrein van een horloge bestaat uit een reeks <strong>wielen</strong> (grote tandwielen) en <strong>rondsels</strong> (kleine tandwielen) die kracht overbrengen terwijl ze de snelheid verminderen. Het <strong>veerhuis</strong> bevat de drijfveer en draait langzaam, het <strong>centrale wiel</strong> aandrijvend dat eenmaal per uur draait (voor de minutenwijzer). Het <strong>derde wiel</strong> en <strong>vierde wiel</strong> (secondenwiel) verhogen verder de rotatiesnelheid. Ten slotte geeft het <strong>echappement</strong> kracht vrij in gecontroleerde tikken naar de <strong>ankergaffel</strong>, die afwisselend het echappement blokkeert en ontgrendelt, impulsen sturend naar het <strong>balanswiel</strong>. Het balanswiel oscilleert op een precieze frequentie — typisch 4 Hz (28.800 trillingen per uur) — en reguleert de gang van het horloge.' },
74
+ { type: 'title', text: 'Overbrengingsverhoudingen en Krachtoverbrenging', level: 3 },
75
+ {
76
+ type: 'table', headers: ['Component', 'Typische tanden', 'tpm (28.800 vph)', 'Verhouding vorige'], rows: [
77
+ ['Veerhuis', '72', '0,002 (1 omw / 8 h)', '-'],
78
+ ['Centraal Wiel', '60', '0,0167 (1 omw / h)', '~7,2:1'],
79
+ ['Derde Wiel', '50', '0,125 (1 omw / 8 min)', '~5:1'],
80
+ ['Vierde Wiel', '60', '1 (1 omw / min)', '6:1'],
81
+ ['Echappement', '15', '32', '~1,875:1'],
82
+ ]
83
+ },
84
+ { type: 'title', text: 'Uurwerk Vergelijkingen', level: 3 },
85
+ {
86
+ type: 'table', headers: ['Uurwerk', 'Slagfrequentie', 'Balansfrequentie', 'Echappement tpm', 'Typische nauwkeurigheid'], rows: [
87
+ ['Vintage (18.000 vph)', '18.000 sph', '2,5 Hz', '20 tpm', '±15-30 s/d'],
88
+ ['Standaard (28.800 vph)', '28.800 sph', '4 Hz', '32 tpm', '±5-15 s/d'],
89
+ ['Hoogfrequent (36.000 vph)', '36.000 sph', '5 Hz', '40 tpm', '±3-8 s/d'],
90
+ ]
91
+ },
92
+ { type: 'diagnostic', variant: 'info', title: 'Interactief Leerhulpmiddel', icon: 'mdi:cog-clockwise', badge: 'HORLOGERIE', html: 'Deze tool gebruikt geschatte overbrengingsverhoudingen die representatief zijn voor gangbare Zwitserse anker-echappementen. Werkelijke verhoudingen variëren per kaliber. Gebruik de uurwerkpresets om te vergelijken hoe verschillende slagfrequenties de dynamiek van de tandwieltrein beïnvloeden.' },
93
+ ],
94
+ faq,
95
+ bibliography,
96
+ howTo,
97
+ schemas: buildSchemas(title, faq, howTo),
98
+ };
99
+
@@ -0,0 +1,99 @@
1
+ import type { ToolLocaleContent } from '../../../types';
2
+ import type { GearTrainExplorerUI } from '../entry';
3
+ import { bibliography } from '../bibliography';
4
+ import { buildSchemas } from '../helpers';
5
+
6
+ const faq = [
7
+ {
8
+ question: 'Co to jest mechanizm zębaty w zegarku?',
9
+ answer: 'Mechanizm zębaty to seria zazębiających się kół zębatych, które przenoszą energię z bębna sprężyny napędowej do wychwytu. Każda para kół zębatych zapewnia określony współczynnik redukcji, spowalniając szybkie uwalnianie energii sprężyny w kontrolowane, miarowe impulsy.',
10
+ },
11
+ {
12
+ question: 'Dlaczego różne mechanizmy mają różne przełożenia?',
13
+ answer: 'Przełożenia są określane przez liczbę zębów na każdym kole i pinii. Mechanizmy z różnymi częstotliwościami uderzeń (np. 28 800 VPH vs 36 000 VPH) mają różne prędkości koła wychwytowego i konfiguracje kół zębatych, aby utrzymać dokładny pomiar czasu przy jednoczesnym dostosowaniu do częstotliwości balansu.',
14
+ },
15
+ {
16
+ question: 'Jaka jest różnica między kołem a pinią?',
17
+ answer: 'W zegarmistrzostwie "koło" to większe koło zębate z wieloma zębami, które napędza następny komponent. "Pinia" to mniejsze koło zębate (zwykle 6-12 zębów), które jest napędzane. Razem koło i pinia tworzą parę zębatą, która zmienia prędkość obrotową i moment obrotowy.',
18
+ },
19
+ ];
20
+
21
+ const howTo = [
22
+ {
23
+ name: 'Wybierz mechanizm',
24
+ text: 'Wybierz między standardowym (28 800 VPH), wysokiej częstotliwości (36 000 VPH El Primero) lub vintage (18 000 VPH). Każdy ma unikalne przełożenia i częstotliwości uderzeń.',
25
+ },
26
+ {
27
+ name: 'Obserwuj mechanizm zębaty',
28
+ text: 'Obserwuj animowane koła zębate obracające się z proporcjonalnymi prędkościami. Bęben obraca się wolno, podczas gdy koło wychwytowe obraca się szybko. Najedź na dowolne koło zębate lub kartę danych, aby uzyskać szczegółowe informacje.',
29
+ },
30
+ {
31
+ name: 'Dostosuj prędkość',
32
+ text: 'Użyj kontrolek prędkości, aby spowolnić, przyspieszyć lub zatrzymać animację. Pomaga to zwizualizować, jak każde koło zębate przyczynia się do łańcucha przenoszenia mocy.',
33
+ },
34
+ ];
35
+
36
+ const title = 'Odkrywca Kół Zębatych: Interaktywny Diagram Zegarmistrzowski';
37
+
38
+ export const content: ToolLocaleContent<GearTrainExplorerUI> = {
39
+ slug: 'odkrywcakolebate',
40
+ title,
41
+ description: 'Poznaj mechaniczne serce zegarka dzięki animowanej wizualizacji mechanizmu zębatego. Zobacz bęben sprężyny, koło środkowe, trzecie koło, czwarte koło, koło wychwytowe, widełki kotwicowe i balans w ruchu.',
42
+ ui: {
43
+ title: 'Odkrywca Kół Zębatych',
44
+ barrelLabel: 'Bęben',
45
+ centerWheelLabel: 'Koło Środkowe',
46
+ thirdWheelLabel: 'Trzecie Koło',
47
+ fourthWheelLabel: 'Czwarte Koło',
48
+ escapeWheelLabel: 'Koło Wychwytowe',
49
+ palletForkLabel: 'Widełki',
50
+ balanceWheelLabel: 'Balans',
51
+ rpmLabel: 'obr/min',
52
+ teethLabel: 'zębów',
53
+ gearRatioLabel: 'Przełożenie',
54
+ powerFlowLabel: 'Przepływ Mocy',
55
+ movementLabel: 'Mechanizm',
56
+ speedLabel: 'Prędkość',
57
+ speedNormal: '1x',
58
+ speedSlow: '0.5x',
59
+ speedPaused: 'Wstrzymane',
60
+ mov2824: 'ETA 2824-2',
61
+ movElPrimero: 'El Primero',
62
+ movVintage: 'Vintage 18k',
63
+ step1: 'Wybierz kaliber mechanizmu, aby zobaczyć jego unikalne przełożenia i częstotliwość uderzeń.',
64
+ step2: 'Najedź na dowolne koło zębate lub kartę danych, aby podświetlić jego pozycję w przepływie mocy.',
65
+ step3: 'Dostosuj prędkość animacji, aby zbadać, jak każde koło przenosi moc przez mechanizm.',
66
+ tipTitle: 'Wskazówka',
67
+ tipContent: 'Mechanizm zębaty redukuje szybkie uwalnianie energii sprężyny w kontrolowaną oscylację. Typowy bęben obraca się raz na 7-8 godzin, podczas gdy koło wychwytowe obraca się z prędkością 32 obr/min (przy 28 800 VPH) — redukcja ponad 15 000:1.',
68
+ },
69
+ seo: [
70
+ { type: 'title', text: 'Interaktywny Odkrywca Kół Zębatych', level: 2 },
71
+ { type: 'paragraph', html: '<strong>Mechanizm zębaty</strong> jest mechanicznym kręgosłupem każdego zegarka mechanicznego. To interaktywne narzędzie wizualizuje, jak moc przepływa z bębna sprężyny przez koło środkowe, trzecie koło, czwarte koło i koło wychwytowe do widełek kotwicowych i balansu. Zobacz, jak każde koło zębate obraca się z proporcjonalną prędkością i zrozum, jak przełożenia determinują pomiar czasu.' },
72
+ { type: 'title', text: 'Jak działa mechanizm zębaty zegarka', level: 3 },
73
+ { type: 'paragraph', html: 'Mechanizm zębaty zegarka składa się z serii <strong>kół</strong> (dużych kół zębatych) i <strong>pinii</strong> (małych kół zębatych), które przenoszą moc, jednocześnie zmniejszając prędkość. <strong>Bęben</strong> mieści sprężynę napędową i obraca się wolno, napędzając <strong>koło środkowe</strong>, które obraca się raz na godzinę (dla wskazówki minutowej). <strong>Trzecie koło</strong> i <strong>czwarte koło</strong> (koło sekund) dodatkowo zwiększają prędkość obrotową. Wreszcie <strong>koło wychwytowe</strong> uwalnia moc w kontrolowanych impulsach do <strong>widełek kotwicowych</strong>, które na przemian blokują i odblokowują koło wychwytowe, wysyłając impulsy do <strong>balansu</strong>. Balans oscyluje z precyzyjną częstotliwością — zazwyczaj 4 Hz (28 800 drgań na godzinę) — regulując chód zegarka.' },
74
+ { type: 'title', text: 'Przełożenia i Przenoszenie Mocy', level: 3 },
75
+ {
76
+ type: 'table', headers: ['Komponent', 'Typowe zęby', 'obr/min (28 800 VPH)', 'Przełożenie od poprzedniego'], rows: [
77
+ ['Bęben', '72', '0,002 (1 obr / 8 h)', '-'],
78
+ ['Koło Środkowe', '60', '0,0167 (1 obr / h)', '~7,2:1'],
79
+ ['Trzecie Koło', '50', '0,125 (1 obr / 8 min)', '~5:1'],
80
+ ['Czwarte Koło', '60', '1 (1 obr / min)', '6:1'],
81
+ ['Koło Wychwytowe', '15', '32', '~1,875:1'],
82
+ ]
83
+ },
84
+ { type: 'title', text: 'Porównanie Mechanizmów', level: 3 },
85
+ {
86
+ type: 'table', headers: ['Mechanizm', 'Częstotliwość', 'Balans', 'Koło Wychwytowe obr/min', 'Typowa dokładność'], rows: [
87
+ ['Vintage (18 000 VPH)', '18 000 bph', '2,5 Hz', '20 obr/min', '±15-30 s/d'],
88
+ ['Standard (28 800 VPH)', '28 800 bph', '4 Hz', '32 obr/min', '±5-15 s/d'],
89
+ ['Wysoka Częstotliwość (36 000 VPH)', '36 000 bph', '5 Hz', '40 obr/min', '±3-8 s/d'],
90
+ ]
91
+ },
92
+ { type: 'diagnostic', variant: 'info', title: 'Interaktywne Narzędzie Edukacyjne', icon: 'mdi:cog-clockwise', badge: 'ZEGARMISTRZOSTWO', html: 'To narzędzie używa przybliżonych przełożeń reprezentatywnych dla typowych szwajcarskich wychwytów kotwicowych. Rzeczywiste przełożenia różnią się w zależności od kalibru. Użyj presetów mechanizmów, aby porównać, jak różne częstotliwości uderzeń wpływają na dynamikę mechanizmu zębatego.' },
93
+ ],
94
+ faq,
95
+ bibliography,
96
+ howTo,
97
+ schemas: buildSchemas(title, faq, howTo),
98
+ };
99
+