@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,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: 'O que é um trem de engrenagens de um relógio?',
9
+ answer: 'Um trem de engrenagens é uma série de rodas dentadas interligadas que transmitem energia da barrica do motor ao escape. Cada par de engrenagens fornece uma taxa de redução específica, desacelerando a liberação rápida da energia da mola em impulsos controlados e cronometrados.',
10
+ },
11
+ {
12
+ question: 'Por que diferentes movimentos têm diferentes relações de engrenagem?',
13
+ answer: 'As relações de engrenagem são determinadas pelo número de dentes em cada roda e pinhão. Movimentos com diferentes taxas de batimento (ex., 28.800 VPH vs 36.000 VPH) têm diferentes velocidades da roda de escape e configurações de engrenagens para manter a precisão cronométrica enquanto acomodam a frequência do volante.',
14
+ },
15
+ {
16
+ question: 'Qual é a diferença entre uma roda e um pinhão?',
17
+ answer: 'Em relojoaria, uma "roda" é a engrenagem maior com muitos dentes que aciona o próximo componente. Um "pinhão" é a engrenagem menor (geralmente 6-12 dentes) que é acionada. Juntos, uma roda e um pinhão formam um par de engrenagens que altera a velocidade de rotação e o torque.',
18
+ },
19
+ ];
20
+
21
+ const howTo = [
22
+ {
23
+ name: 'Selecione um movimento',
24
+ text: 'Escolha entre movimentos padrão (28.800 VPH), alta frequência (36.000 VPH El Primero) ou vintage (18.000 VPH). Cada um tem relações de engrenagem e taxas de batimento únicas.',
25
+ },
26
+ {
27
+ name: 'Observe o trem de engrenagens',
28
+ text: 'Veja as engrenagens animadas girarem a velocidades proporcionais. A barrica gira lentamente enquanto a roda de escape gira rapidamente. Passe o mouse sobre qualquer engrenagem ou cartão de dados para obter informações detalhadas.',
29
+ },
30
+ {
31
+ name: 'Ajuste a velocidade',
32
+ text: 'Use os controles de velocidade para desacelerar, acelerar ou pausar a animação. Isso ajuda a visualizar como cada engrenagem contribui para a corrente de transmissão de potência.',
33
+ },
34
+ ];
35
+
36
+ const title = 'Explorador do Trem de Engrenagens: Diagrama Interativo de Relojoaria';
37
+
38
+ export const content: ToolLocaleContent<GearTrainExplorerUI> = {
39
+ slug: 'exploradortremengrenagens',
40
+ title,
41
+ description: 'Explore o coração mecânico de um relógio com uma visualização animada do trem de engrenagens. Veja a barrica, a roda central, a terceira roda, a quarta roda, a roda de escape, a âncora e o volante em movimento.',
42
+ ui: {
43
+ title: 'Explorador do Trem de Engrenagens',
44
+ barrelLabel: 'Barrica',
45
+ centerWheelLabel: 'Roda Central',
46
+ thirdWheelLabel: 'Terceira Roda',
47
+ fourthWheelLabel: 'Quarta Roda',
48
+ escapeWheelLabel: 'Roda de Escape',
49
+ palletForkLabel: 'Âncora',
50
+ balanceWheelLabel: 'Volante',
51
+ rpmLabel: 'RPM',
52
+ teethLabel: 'dentes',
53
+ gearRatioLabel: 'Relação',
54
+ powerFlowLabel: 'Fluxo de Potência',
55
+ movementLabel: 'Movimento',
56
+ speedLabel: 'Velocidade',
57
+ speedNormal: '1x',
58
+ speedSlow: '0.5x',
59
+ speedPaused: 'Pausado',
60
+ mov2824: 'ETA 2824-2',
61
+ movElPrimero: 'El Primero',
62
+ movVintage: 'Vintage 18k',
63
+ step1: 'Selecione um calibre de movimento para ver suas relações de engrenagem e taxa de batimento únicas.',
64
+ step2: 'Passe o mouse sobre qualquer engrenagem ou cartão de dados para destacar sua posição no fluxo de potência.',
65
+ step3: 'Ajuste a velocidade da animação para estudar como cada roda transmite potência através do trem.',
66
+ tipTitle: 'Dica',
67
+ tipContent: 'O trem de engrenagens reduz a rápida liberação de energia da mola em uma oscilação controlada. Uma barrica típica gira uma vez a cada 7-8 horas, enquanto a roda de escape gira a 32 RPM (a 28.800 VPH) — uma redução de mais de 15.000:1.',
68
+ },
69
+ seo: [
70
+ { type: 'title', text: 'Explorador Interativo do Trem de Engrenagens', level: 2 },
71
+ { type: 'paragraph', html: 'O <strong>trem de engrenagens</strong> é a espinha dorsal mecânica de todo relógio mecânico. Esta ferramenta interativa visualiza como a potência flui da barrica através da roda central, terceira roda, quarta roda e roda de escape até a âncora e o volante. Veja cada engrenagem girar em sua velocidade proporcional e entenda como as relações de engrenagem determinam a medição do tempo.' },
72
+ { type: 'title', text: 'Como funciona um trem de engrenagens', level: 3 },
73
+ { type: 'paragraph', html: 'Um trem de engrenagens de relógio consiste em uma série de <strong>rodas</strong> (engrenagens grandes) e <strong>pinhões</strong> (engrenagens pequenas) que transmitem potência enquanto reduzem a velocidade. A <strong>barrica</strong> abriga a mola motriz e gira lentamente, acionando a <strong>roda central</strong> que gira uma vez por hora (para o ponteiro dos minutos). A <strong>terceira roda</strong> e a <strong>quarta roda</strong> (roda dos segundos) aumentam ainda mais a velocidade de rotação. Finalmente, a <strong>roda de escape</strong> libera a potência em impulsos controlados para a <strong>âncora</strong>, que alternadamente trava e destrava a roda de escape, enviando impulsos ao <strong>volante</strong>. O volante oscila em uma frequência precisa — tipicamente 4 Hz (28.800 vibrações por hora) — regulando a marcha do relógio.' },
74
+ { type: 'title', text: 'Relações de Engrenagem e Transmissão de Potência', level: 3 },
75
+ {
76
+ type: 'table', headers: ['Componente', 'Dentes típicos', 'RPM (28.800 VPH)', 'Relação anterior'], rows: [
77
+ ['Barrica', '72', '0,002 (1 rev / 8 h)', '-'],
78
+ ['Roda Central', '60', '0,0167 (1 rev / h)', '~7,2:1'],
79
+ ['Terceira Roda', '50', '0,125 (1 rev / 8 min)', '~5:1'],
80
+ ['Quarta Roda', '60', '1 (1 rev / min)', '6:1'],
81
+ ['Roda de Escape', '15', '32', '~1,875:1'],
82
+ ]
83
+ },
84
+ { type: 'title', text: 'Comparação de Movimentos', level: 3 },
85
+ {
86
+ type: 'table', headers: ['Movimento', 'Taxa de Batimento', 'Frequência do Volante', 'RPM da Roda de Escape', 'Precisão típica'], rows: [
87
+ ['Vintage (18.000 VPH)', '18.000 bph', '2,5 Hz', '20 RPM', '±15-30 s/d'],
88
+ ['Padrão (28.800 VPH)', '28.800 bph', '4 Hz', '32 RPM', '±5-15 s/d'],
89
+ ['Alta Frequência (36.000 VPH)', '36.000 bph', '5 Hz', '40 RPM', '±3-8 s/d'],
90
+ ]
91
+ },
92
+ { type: 'diagnostic', variant: 'info', title: 'Ferramenta de Aprendizagem Interativa', icon: 'mdi:cog-clockwise', badge: 'RELOJOARIA', html: 'Esta ferramenta usa relações de engrenagem aproximadas representativas de movimentos comuns de escape de âncora suíço. As relações reais variam de acordo com o calibre. Use as predefinições de movimento para comparar como diferentes taxas de batimento afetam a dinâmica do trem de engrenagens.' },
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: 'Что такое зубчатая передача в часах?',
9
+ answer: 'Зубчатая передача — это ряд сцепленных шестерен, которые передают энергию от барабана заводной пружины к спусковому механизму. Каждая пара шестерен обеспечивает определенное передаточное число, замедляя быстрое высвобождение энергии пружины в контролируемые, размеренные импульсы.',
10
+ },
11
+ {
12
+ question: 'Почему разные механизмы имеют разные передаточные числа?',
13
+ answer: 'Передаточные числа определяются количеством зубьев на каждом колесе и трибе. Механизмы с разной частотой биений (например, 28 800 п/ч против 36 000 п/ч) имеют разную скорость спускового колеса и конфигурации шестерен для поддержания точного хода при адаптации к частоте баланса.',
14
+ },
15
+ {
16
+ question: 'В чем разница между колесом и трибом?',
17
+ answer: 'В часовом деле «колесо» — это большая шестерня со многими зубьями, которая приводит в движение следующий компонент. «Триб» — это маленькая шестерня (обычно 6-12 зубьев), которая приводится в движение. Вместе колесо и триб образуют зубчатую пару, которая изменяет скорость вращения и крутящий момент.',
18
+ },
19
+ ];
20
+
21
+ const howTo = [
22
+ {
23
+ name: 'Выберите механизм',
24
+ text: 'Выберите между стандартным (28 800 п/ч), высокочастотным (36 000 п/ч El Primero) или винтажным (18 000 п/ч) механизмом. Каждый имеет уникальные передаточные числа и частоту биений.',
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: 'issledovatelyzubchatoyperedachi',
40
+ title,
41
+ description: 'Исследуйте механическое сердце часов с помощью анимированной визуализации зубчатой передачи. Увидьте барабан, центральное колесо, третье колесо, четвертое колесо, спусковое колесо, анкерную вилку и баланс в движении.',
42
+ ui: {
43
+ title: 'Исследователь зубчатой передачи',
44
+ barrelLabel: 'Барабан',
45
+ centerWheelLabel: 'Центральное колесо',
46
+ thirdWheelLabel: 'Третье колесо',
47
+ fourthWheelLabel: 'Четвертое колесо',
48
+ escapeWheelLabel: 'Спусковое колесо',
49
+ palletForkLabel: 'Анкерная вилка',
50
+ balanceWheelLabel: 'Баланс',
51
+ rpmLabel: 'об/мин',
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: 'El Primero',
62
+ movVintage: 'Vintage 18k',
63
+ step1: 'Выберите калибр механизма, чтобы увидеть его уникальные передаточные числа и частоту биений.',
64
+ step2: 'Наведите курсор на шестерню или карточку данных, чтобы выделить ее положение в потоке мощности.',
65
+ step3: 'Отрегулируйте скорость анимации, чтобы изучить, как каждое колесо передает мощность через передачу.',
66
+ tipTitle: 'Совет',
67
+ tipContent: 'Зубчатая передача преобразует быстрое высвобождение энергии пружины в контролируемое колебание. Типичный барабан вращается один раз за 7-8 часов, в то время как спусковое колесо вращается со скоростью 32 об/мин (при 28 800 п/ч) — снижение более чем в 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 Гц (28 800 колебаний в час) — регулируя ход часов.' },
74
+ { type: 'title', text: 'Передаточные числа и передача мощности', level: 3 },
75
+ {
76
+ type: 'table', headers: ['Компонент', 'Типичные зубья', 'об/мин (28 800 п/ч)', 'Передача от предыдущего'], rows: [
77
+ ['Барабан', '72', '0,002 (1 об / 8 ч)', '-'],
78
+ ['Центральное колесо', '60', '0,0167 (1 об / ч)', '~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: ['Механизм', 'Частота биений', 'Частота баланса', 'Спусковое колесо об/мин', 'Точность'], rows: [
87
+ ['Винтаж (18 000 п/ч)', '18 000 п/ч', '2,5 Гц', '20 об/мин', '±15-30 с/д'],
88
+ ['Стандарт (28 800 п/ч)', '28 800 п/ч', '4 Гц', '32 об/мин', '±5-15 с/д'],
89
+ ['Высокая частота (36 000 п/ч)', '36 000 п/ч', '5 Гц', '40 об/мин', '±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
+ };
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: 'Vad är en kugghjulsväxel i en klocka?',
9
+ answer: 'En kugghjulsväxel är en serie sammankopplade kugghjul som överför kraft från fjäderhuset till gången. Varje kugghjulspar ger ett specifikt reduktionsförhållande, vilket saktar ner den snabba frigöringen av fjäderenergi till kontrollerade, tidsinställda impulser.',
10
+ },
11
+ {
12
+ question: 'Varför har olika urverk olika utväxlingsförhållanden?',
13
+ answer: 'Utväxlingsförhållanden bestäms av antalet tänder på varje hjul och drev. Urverk med olika slagfrekvenser (t.ex. 28 800 vph vs 36 000 vph) har olika gånghjulshastigheter och kugghjulskonfigurationer för att upprätthålla noggrann tidmätning samtidigt som de anpassar sig till balanshjulets frekvens.',
14
+ },
15
+ {
16
+ question: 'Vad är skillnaden mellan ett hjul och ett drev?',
17
+ answer: 'Inom urmakeriet är ett "hjul" det större kugghjulet med många tänder som driver nästa komponent. Ett "drev" är det mindre kugghjulet (vanligtvis 6-12 tänder) som drivs. Tillsammans bildar ett hjul och drev ett kugghjulspar som ändrar rotationshastighet och vridmoment.',
18
+ },
19
+ ];
20
+
21
+ const howTo = [
22
+ {
23
+ name: 'Välj ett urverk',
24
+ text: 'Välj mellan standard (28 800 vph), högfrekvent (36 000 vph El Primero) eller vintage (18 000 vph) urverk. Varje har unika utväxlingsförhållanden och slagfrekvenser.',
25
+ },
26
+ {
27
+ name: 'Observera kugghjulsväxeln',
28
+ text: 'Se de animerade kugghjulen snurra i proportionella hastigheter. Fjäderhuset vrider sig långsamt medan gånghjulet snurrar snabbt. Hovra över ett kugghjul eller datakort för detaljerad information.',
29
+ },
30
+ {
31
+ name: 'Justera hastigheten',
32
+ text: 'Använd hastighetsreglagen för att sakta ner, snabba upp eller pausa animationen. Detta hjälper till att visualisera hur varje kugghjul bidrar till kraftöverföringskedjan.',
33
+ },
34
+ ];
35
+
36
+ const title = 'Växeltrain Utforskare: Interaktivt Urmakeridiagram';
37
+
38
+ export const content: ToolLocaleContent<GearTrainExplorerUI> = {
39
+ slug: 'vaxeltrainutforskare',
40
+ title,
41
+ description: 'Utforska det mekaniska hjärtat av en klocka med en animerad visualisering av kugghjulsväxeln. Se fjäderhuset, centrumhjulet, tredje hjulet, fjärde hjulet, gånghjulet, ankaret och balanshjulet i rörelse.',
42
+ ui: {
43
+ title: 'Växeltrain Utforskare',
44
+ barrelLabel: 'Fjäderhus',
45
+ centerWheelLabel: 'Centrumhjul',
46
+ thirdWheelLabel: 'Tredje Hjul',
47
+ fourthWheelLabel: 'Fjärde Hjul',
48
+ escapeWheelLabel: 'Gånghjul',
49
+ palletForkLabel: 'Ankare',
50
+ balanceWheelLabel: 'Balanshjul',
51
+ rpmLabel: 'varv/min',
52
+ teethLabel: 'tänder',
53
+ gearRatioLabel: 'Förhållande',
54
+ powerFlowLabel: 'Kraftflöde',
55
+ movementLabel: 'Urverk',
56
+ speedLabel: 'Hastighet',
57
+ speedNormal: '1x',
58
+ speedSlow: '0.5x',
59
+ speedPaused: 'Pausad',
60
+ mov2824: 'ETA 2824-2',
61
+ movElPrimero: 'El Primero',
62
+ movVintage: 'Vintage 18k',
63
+ step1: 'Välj ett urverkskaliber för att se dess unika utväxlingsförhållanden och slagfrekvens.',
64
+ step2: 'Hovra över ett kugghjul eller datakort för att markera dess position i kraftflödet.',
65
+ step3: 'Justera animationshastigheten för att studera hur varje hjul överför kraft genom växeln.',
66
+ tipTitle: 'Tips',
67
+ tipContent: 'Kugghjulsväxeln reducerar fjäderns snabba energiutsläpp till en kontrollerad oscillation. Ett typiskt fjäderhus roterar en gång var 7-8:e timme, medan gånghjulet snurrar i 32 varv/min (vid 28 800 vph) — en reduktion på över 15 000:1.',
68
+ },
69
+ seo: [
70
+ { type: 'title', text: 'Interaktiv Växeltrain Utforskare', level: 2 },
71
+ { type: 'paragraph', html: '<strong>Kugghjulsväxeln</strong> är den mekaniska ryggraden i varje mekanisk klocka. Detta interaktiva verktyg visualiserar hur kraft flödar från fjäderhuset genom centrumhjulet, tredje hjulet, fjärde hjulet och gånghjulet till ankaret och balanshjulet. Se varje kugghjul rotera i sin proportionella hastighet och förstå hur utväxlingsförhållanden bestämmer tidmätningen.' },
72
+ { type: 'title', text: 'Hur en kugghjulsväxel fungerar', level: 3 },
73
+ { type: 'paragraph', html: 'En kugghjulsväxel i en klocka består av en serie <strong>hjul</strong> (stora kugghjul) och <strong>drev</strong> (små kugghjul) som överför kraft samtidigt som de minskar hastigheten. <strong>Fjäderhuset</strong> innehåller drivfjädern och roterar långsamt, vilket driver <strong>centrumhjulet</strong> som roterar en gång i timmen (för minutvisaren). <strong>Tredje hjulet</strong> och <strong>fjärde hjulet</strong> (sekundhjulet) ökar ytterligare rotationshastigheten. Slutligen frigör <strong>gånghjulet</strong> kraft i kontrollerade tick till <strong>ankaret</strong>, som växelvis låser och låser upp gånghjulet och skickar impulser till <strong>balanshjulet</strong>. Balanshjulet oscillerar med en precis frekvens — vanligtvis 4 Hz (28 800 vibrationer per timme) — och reglerar klockans gång.' },
74
+ { type: 'title', text: 'Utväxlingsförhållanden och Kraftöverföring', level: 3 },
75
+ {
76
+ type: 'table', headers: ['Komponent', 'Typiska tänder', 'varv/min (28 800 vph)', 'Förhållande från föregående'], rows: [
77
+ ['Fjäderhus', '72', '0,002 (1 varv / 8 h)', '-'],
78
+ ['Centrumhjul', '60', '0,0167 (1 varv / h)', '~7,2:1'],
79
+ ['Tredje Hjul', '50', '0,125 (1 varv / 8 min)', '~5:1'],
80
+ ['Fjärde Hjul', '60', '1 (1 varv / min)', '6:1'],
81
+ ['Gånghjul', '15', '32', '~1,875:1'],
82
+ ]
83
+ },
84
+ { type: 'title', text: 'Urverksjämförelser', level: 3 },
85
+ {
86
+ type: 'table', headers: ['Urverk', 'Slagfrekvens', 'Balansfrekvens', 'Gånghjul varv/min', 'Typisk noggrannhet'], rows: [
87
+ ['Vintage (18 000 vph)', '18 000 sph', '2,5 Hz', '20 varv/min', '±15-30 s/d'],
88
+ ['Standard (28 800 vph)', '28 800 sph', '4 Hz', '32 varv/min', '±5-15 s/d'],
89
+ ['Högfrekvent (36 000 vph)', '36 000 sph', '5 Hz', '40 varv/min', '±3-8 s/d'],
90
+ ]
91
+ },
92
+ { type: 'diagnostic', variant: 'info', title: 'Interaktivt Lärverktyg', icon: 'mdi:cog-clockwise', badge: 'URMAKERI', html: 'Detta verktyg använder ungefärliga utväxlingsförhållanden representativa för vanliga schweiziska ankargångar. Faktiska förhållanden varierar beroende på kaliber. Använd urverksförinställningarna för att jämföra hur olika slagfrekvenser påverkar kugghjulsväxelns dynamik.' },
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: 'Saatteki dişli takımı nedir?',
9
+ answer: 'Dişli takımı, ana yay kutusundan eşapmana güç aktaran bir dizi birbirine geçen dişlidir. Her dişli çifti, ana yay enerjisinin hızlı salınımını kontrollü, zamanlanmış darbelere dönüştüren belirli bir redüksiyon oranı sağlar.',
10
+ },
11
+ {
12
+ question: 'Farklı hareketler neden farklı dişli oranlarına sahiptir?',
13
+ answer: 'Dişli oranları, her tekerlek ve pinyondaki diş sayısına göre belirlenir. Farklı vuruş hızlarına (ör. 28.800 vph vs 36.000 vph) sahip hareketler, balans tekerleği frekansına uyum sağlarken doğru zaman tutmayı sürdürmek için farklı eşapman tekerleği hızlarına ve dişli konfigürasyonlarına sahiptir.',
14
+ },
15
+ {
16
+ question: 'Tekerlek ve pinyon arasındaki fark nedir?',
17
+ answer: 'Saatçilikte "tekerlek", bir sonraki bileşeni tahrik eden, çok sayıda dişe sahip daha büyük dişlidir. Bir "pinyon" ise tahrik edilen daha küçük dişlidir (genellikle 6-12 diş). Birlikte, bir tekerlek ve pinyon, dönüş hızını ve torku değiştiren bir dişli çifti oluşturur.',
18
+ },
19
+ ];
20
+
21
+ const howTo = [
22
+ {
23
+ name: 'Bir hareket seçin',
24
+ text: 'Standart (28.800 vph), yüksek frekanslı (36.000 vph El Primero) veya vintage (18.000 vph) hareketler arasından seçim yapın. Her birinin benzersiz dişli oranları ve vuruş hızları vardır.',
25
+ },
26
+ {
27
+ name: 'Dişli takımını gözlemleyin',
28
+ text: 'Animasyonlu dişlilerin orantılı hızlarda döndüğünü izleyin. Ana yay kutusu yavaşça dönerken eşapman tekerleği hızla döner. Ayrıntılı bilgi için herhangi bir dişli veya veri kartının üzerine gelin.',
29
+ },
30
+ {
31
+ name: 'Hızı ayarlayın',
32
+ text: 'Animasyonu yavaşlatmak, hızlandırmak veya duraklatmak için hız kontrollerini kullanın. Bu, her dişlinin güç aktarım zincirine nasıl katkıda bulunduğunu görselleştirmeye yardımcı olur.',
33
+ },
34
+ ];
35
+
36
+ const title = 'Dişli Takımı Kaşifi: Etkileşimli Saatçilik Diyagramı';
37
+
38
+ export const content: ToolLocaleContent<GearTrainExplorerUI> = {
39
+ slug: 'dislitrenikesfi',
40
+ title,
41
+ description: 'Animasyonlu bir dişli takımı görselleştirmesiyle bir saatin mekanik kalbini keşfedin. Ana yay kutusu, merkez tekerlek, üçüncü tekerlek, dördüncü tekerlek, eşapman tekerleği, palet çatalı ve balans tekerleğini hareket halinde görün.',
42
+ ui: {
43
+ title: 'Dişli Takımı Kaşifi',
44
+ barrelLabel: 'Ana Yay Kutusu',
45
+ centerWheelLabel: 'Merkez Tekerlek',
46
+ thirdWheelLabel: 'Üçüncü Tekerlek',
47
+ fourthWheelLabel: 'Dördüncü Tekerlek',
48
+ escapeWheelLabel: 'Eşapman Tekerleği',
49
+ palletForkLabel: 'Palet Çatalı',
50
+ balanceWheelLabel: 'Balans Tekerleği',
51
+ rpmLabel: 'dev/dk',
52
+ teethLabel: 'diş',
53
+ gearRatioLabel: 'Oran',
54
+ powerFlowLabel: 'Güç Akışı',
55
+ movementLabel: 'Hareket',
56
+ speedLabel: 'Hız',
57
+ speedNormal: '1x',
58
+ speedSlow: '0.5x',
59
+ speedPaused: 'Duraklatıldı',
60
+ mov2824: 'ETA 2824-2',
61
+ movElPrimero: 'El Primero',
62
+ movVintage: 'Vintage 18k',
63
+ step1: 'Benzersiz dişli oranlarını ve vuruş hızını görmek için bir hareket kalibresi seçin.',
64
+ step2: 'Güç akışındaki konumunu vurgulamak için herhangi bir dişli veya veri kartının üzerine gelin.',
65
+ step3: 'Her tekerleğin gücü takım boyunca nasıl ilettiğini incelemek için animasyon hızını ayarlayın.',
66
+ tipTitle: 'İpucu',
67
+ tipContent: 'Dişli takımı, ana yayın hızlı enerji salınımını kontrollü bir salınıma dönüştürür. Tipik bir ana yay kutusu her 7-8 saatte bir dönerken, eşapman tekerleği 32 dev/dk (28.800 vph\'de) döner — bu 15.000:1\'den fazla bir redüksiyondur.',
68
+ },
69
+ seo: [
70
+ { type: 'title', text: 'Etkileşimli Dişli Takımı Kaşifi', level: 2 },
71
+ { type: 'paragraph', html: '<strong>Dişli takımı</strong>, her mekanik saatin mekanik omurgasıdır. Bu etkileşimli araç, gücün ana yay kutusundan merkez tekerlek, üçüncü tekerlek, dördüncü tekerlek ve eşapman tekerleği aracılığıyla palet çatalına ve balans tekerleğine nasıl aktığını görselleştirir. Her dişlinin orantılı hızında döndüğünü görün ve dişli oranlarının zaman ölçümünü nasıl belirlediğini anlayın.' },
72
+ { type: 'title', text: 'Bir Saat Dişli Takımı Nasıl Çalışır', level: 3 },
73
+ { type: 'paragraph', html: 'Bir saat dişli takımı, hızı azaltırken güç ileten bir dizi <strong>tekerlek</strong> (büyük dişliler) ve <strong>pinyondan</strong> (küçük dişliler) oluşur. <strong>Ana yay kutusu</strong>, ana yayı barındırır ve yavaşça dönerek saatte bir kez dönen (yelkovan için) <strong>merkez tekerleği</strong> tahrik eder. <strong>Üçüncü tekerlek</strong> ve <strong>dördüncü tekerlek</strong> (saniye tekerleği) dönüş hızını daha da artırır. Son olarak, <strong>eşapman tekerleği</strong>, kontrollü tiklere gücü <strong>palet çatalına</strong> bırakır; palet çatalı dönüşümlü olarak eşapman tekerleğini kilitler ve açar, <strong>balans tekerleğine</strong> darbeler gönderir. Balans tekerleği, hassas bir frekansta — tipik olarak 4 Hz (saatte 28.800 titreşim) — salınarak saatin hızını düzenler.' },
74
+ { type: 'title', text: 'Dişli Oranları ve Güç Aktarımı', level: 3 },
75
+ {
76
+ type: 'table', headers: ['Bileşen', 'Tipik Diş', 'dev/dk (28.800 vph)', 'Öncekinden Oran'], rows: [
77
+ ['Ana Yay Kutusu', '72', '0,002 (1 dev / 8 s)', '-'],
78
+ ['Merkez Tekerlek', '60', '0,0167 (1 dev / s)', '~7,2:1'],
79
+ ['Üçüncü Tekerlek', '50', '0,125 (1 dev / 8 dk)', '~5:1'],
80
+ ['Dördüncü Tekerlek', '60', '1 (1 dev / dk)', '6:1'],
81
+ ['Eşapman Tekerleği', '15', '32', '~1,875:1'],
82
+ ]
83
+ },
84
+ { type: 'title', text: 'Hareket Karşılaştırmaları', level: 3 },
85
+ {
86
+ type: 'table', headers: ['Hareket', 'Vuruş Hızı', 'Balans Frekansı', 'Eşapman Tekerleği dev/dk', 'Tipik Doğruluk'], rows: [
87
+ ['Vintage (18.000 vph)', '18.000 bph', '2,5 Hz', '20 dev/dk', '±15-30 s/g'],
88
+ ['Standart (28.800 vph)', '28.800 bph', '4 Hz', '32 dev/dk', '±5-15 s/g'],
89
+ ['Yüksek Frekans (36.000 vph)', '36.000 bph', '5 Hz', '40 dev/dk', '±3-8 s/g'],
90
+ ]
91
+ },
92
+ { type: 'diagnostic', variant: 'info', title: 'Etkileşimli Öğrenme Aracı', icon: 'mdi:cog-clockwise', badge: 'SAATÇİLİK', html: 'Bu araç, yaygın İsviçre palet eşapman hareketlerini temsil eden yaklaşık dişli oranları kullanır. Gerçek oranlar kaliploye göre değişir. Farklı vuruş hızlarının dişli takımı dinamiğini nasıl etkilediğini karşılaştırmak için hareket ön ayarlarını kullanın.' },
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 El Primero)或复古(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: 'El Primero',
62
+ movVintage: 'Vintage 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转/8小时)', '-'],
78
+ ['中心轮', '60', '0.0167 (1转/小时)', '~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,11 @@
1
+ import type { ToolDefinition } from '../../types';
2
+ import { gearTrainExplorer } from './entry';
3
+
4
+ export * from './entry';
5
+
6
+ export const GEAR_TRAIN_EXPLORER_TOOL: ToolDefinition = {
7
+ entry: gearTrainExplorer,
8
+ Component: () => import('./component.astro'),
9
+ SEOComponent: () => import('./seo.astro'),
10
+ BibliographyComponent: () => import('./bibliography.astro'),
11
+ };
@@ -0,0 +1,61 @@
1
+ export type GearDef = {
2
+ id: string;
3
+ x: number;
4
+ y: number;
5
+ r: number;
6
+ teeth: number;
7
+ rpm: number;
8
+ visualSpeed: number;
9
+ color: string;
10
+ label: string;
11
+ };
12
+
13
+ export type MovementDef = {
14
+ id: string;
15
+ label: string;
16
+ gears: GearDef[];
17
+ pallet: { bph: number; x: number; y: number };
18
+ balance: { hz: number; vph: number; x: number; y: number; r: number };
19
+ };
20
+
21
+ export const MOVEMENTS: Record<string, MovementDef> = {
22
+ '2824': {
23
+ id: '2824',
24
+ label: 'ETA 2824-2',
25
+ gears: [
26
+ { id: 'barrel', x: 110, y: 300, r: 58, teeth: 72, rpm: 0.002, visualSpeed: 0.002, color: '#b8860b', label: 'Barrel' },
27
+ { id: 'center', x: 240, y: 300, r: 44, teeth: 60, rpm: 0.0167, visualSpeed: 0.016, color: '#cd9b1d', label: 'Center Wheel' },
28
+ { id: 'third', x: 360, y: 300, r: 37, teeth: 50, rpm: 0.125, visualSpeed: 0.12, color: '#d4af37', label: 'Third Wheel' },
29
+ { id: 'fourth', x: 480, y: 300, r: 32, teeth: 60, rpm: 1, visualSpeed: 0.5, color: '#dcb839', label: 'Fourth Wheel' },
30
+ { id: 'escape', x: 600, y: 300, r: 26, teeth: 15, rpm: 32, visualSpeed: 2.0, color: '#e8c84a', label: 'Escape Wheel' },
31
+ ],
32
+ pallet: { bph: 28800, x: 680, y: 330 },
33
+ balance: { hz: 4, vph: 28800, x: 800, y: 200, r: 28 },
34
+ },
35
+ 'elprimero': {
36
+ id: 'elprimero',
37
+ label: 'Zenith El Primero',
38
+ gears: [
39
+ { id: 'barrel', x: 110, y: 300, r: 58, teeth: 72, rpm: 0.002, visualSpeed: 0.002, color: '#b8860b', label: 'Barrel' },
40
+ { id: 'center', x: 240, y: 300, r: 44, teeth: 60, rpm: 0.0167, visualSpeed: 0.016, color: '#cd9b1d', label: 'Center Wheel' },
41
+ { id: 'third', x: 360, y: 300, r: 37, teeth: 50, rpm: 0.125, visualSpeed: 0.12, color: '#d4af37', label: 'Third Wheel' },
42
+ { id: 'fourth', x: 480, y: 300, r: 32, teeth: 60, rpm: 1, visualSpeed: 0.5, color: '#dcb839', label: 'Fourth Wheel' },
43
+ { id: 'escape', x: 600, y: 300, r: 26, teeth: 20, rpm: 40, visualSpeed: 3.0, color: '#e8c84a', label: 'Escape Wheel' },
44
+ ],
45
+ pallet: { bph: 36000, x: 680, y: 330 },
46
+ balance: { hz: 5, vph: 36000, x: 800, y: 200, r: 28 },
47
+ },
48
+ 'vintage': {
49
+ id: 'vintage',
50
+ label: 'Vintage 18k',
51
+ gears: [
52
+ { id: 'barrel', x: 110, y: 300, r: 58, teeth: 72, rpm: 0.0015, visualSpeed: 0.0015, color: '#b8860b', label: 'Barrel' },
53
+ { id: 'center', x: 240, y: 300, r: 44, teeth: 60, rpm: 0.0167, visualSpeed: 0.016, color: '#cd9b1d', label: 'Center Wheel' },
54
+ { id: 'third', x: 360, y: 300, r: 37, teeth: 50, rpm: 0.125, visualSpeed: 0.12, color: '#d4af37', label: 'Third Wheel' },
55
+ { id: 'fourth', x: 480, y: 300, r: 32, teeth: 60, rpm: 1, visualSpeed: 0.5, color: '#dcb839', label: 'Fourth Wheel' },
56
+ { id: 'escape', x: 600, y: 300, r: 26, teeth: 15, rpm: 20, visualSpeed: 1.5, color: '#e8c84a', label: 'Escape Wheel' },
57
+ ],
58
+ pallet: { bph: 18000, x: 680, y: 330 },
59
+ balance: { hz: 2.5, vph: 18000, x: 800, y: 200, r: 28 },
60
+ },
61
+ };