@jjlmoya/utils-chrono 1.9.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/category/index.ts +4 -0
- package/src/entries.ts +7 -1
- package/src/tests/locale_completeness.test.ts +1 -1
- package/src/tests/tool_validation.test.ts +1 -1
- package/src/tool/gear-train-explorer/bibliography.astro +16 -0
- package/src/tool/gear-train-explorer/bibliography.ts +12 -0
- package/src/tool/gear-train-explorer/client.ts +146 -0
- package/src/tool/gear-train-explorer/component.astro +17 -0
- package/src/tool/gear-train-explorer/components/GearPanel.astro +102 -0
- package/src/tool/gear-train-explorer/entry.ts +53 -0
- package/src/tool/gear-train-explorer/gear-train-explorer.css +172 -0
- package/src/tool/gear-train-explorer/gears.ts +148 -0
- package/src/tool/gear-train-explorer/helpers.ts +49 -0
- package/src/tool/gear-train-explorer/i18n/de.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/en.ts +98 -0
- package/src/tool/gear-train-explorer/i18n/es.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/fr.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/id.ts +98 -0
- package/src/tool/gear-train-explorer/i18n/it.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/ja.ts +98 -0
- package/src/tool/gear-train-explorer/i18n/ko.ts +98 -0
- package/src/tool/gear-train-explorer/i18n/nl.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/pl.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/pt.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/ru.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/sv.ts +99 -0
- package/src/tool/gear-train-explorer/i18n/tr.ts +98 -0
- package/src/tool/gear-train-explorer/i18n/zh.ts +98 -0
- package/src/tool/gear-train-explorer/index.ts +11 -0
- package/src/tool/gear-train-explorer/movements.ts +61 -0
- package/src/tool/gear-train-explorer/scene.ts +120 -0
- package/src/tool/gear-train-explorer/seo.astro +16 -0
- package/src/tool/gear-train-explorer/state.ts +30 -0
- package/src/tool/sidereal-time-tracker/bibliography.astro +16 -0
- package/src/tool/sidereal-time-tracker/bibliography.ts +16 -0
- package/src/tool/sidereal-time-tracker/client.ts +278 -0
- package/src/tool/sidereal-time-tracker/component.astro +15 -0
- package/src/tool/sidereal-time-tracker/components/SiderealPanel.astro +197 -0
- package/src/tool/sidereal-time-tracker/entry.ts +51 -0
- package/src/tool/sidereal-time-tracker/helpers.ts +80 -0
- package/src/tool/sidereal-time-tracker/i18n/de.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/en.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/es.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/fr.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/id.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/it.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/ja.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/ko.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/nl.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/pl.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/pt.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/ru.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/sv.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/tr.ts +93 -0
- package/src/tool/sidereal-time-tracker/i18n/zh.ts +93 -0
- package/src/tool/sidereal-time-tracker/index.ts +11 -0
- package/src/tool/sidereal-time-tracker/seo.astro +16 -0
- package/src/tool/sidereal-time-tracker/sidereal-time-tracker.css +257 -0
- package/src/tools.ts +4 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import { getCtx, c } from './state';
|
|
2
|
+
|
|
3
|
+
function gearOutline(r: number, teeth: number) {
|
|
4
|
+
const ctx = getCtx();
|
|
5
|
+
const toothH = r * 0.18;
|
|
6
|
+
const baseR = r - toothH * 0.3;
|
|
7
|
+
const aStep = Math.PI * 2 / teeth;
|
|
8
|
+
const gap = aStep * 0.05;
|
|
9
|
+
ctx.beginPath();
|
|
10
|
+
for (let i = 0; i < teeth; i++) {
|
|
11
|
+
const aStart = i * aStep - Math.PI / 2;
|
|
12
|
+
const aMid = (i + 0.5) * aStep - Math.PI / 2;
|
|
13
|
+
const aEnd = (i + 1) * aStep - Math.PI / 2;
|
|
14
|
+
ctx.lineTo(Math.cos(aStart + gap) * baseR, Math.sin(aStart + gap) * baseR);
|
|
15
|
+
ctx.lineTo(Math.cos(aMid) * (baseR + toothH), Math.sin(aMid) * (baseR + toothH));
|
|
16
|
+
ctx.lineTo(Math.cos(aEnd - gap) * baseR, Math.sin(aEnd - gap) * baseR);
|
|
17
|
+
}
|
|
18
|
+
ctx.closePath();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function gearFill(r: number, color: string, highlight: boolean) {
|
|
22
|
+
const ctx = getCtx();
|
|
23
|
+
const toothH = r * 0.18;
|
|
24
|
+
const grad = ctx.createRadialGradient(-r * 0.2, -r * 0.2, 0, 0, 0, r + toothH);
|
|
25
|
+
if (highlight) {
|
|
26
|
+
grad.addColorStop(0, c('#fff8dc', '#fff3b0'));
|
|
27
|
+
grad.addColorStop(0.15, color);
|
|
28
|
+
grad.addColorStop(0.7, c('#8b6914', '#b8860b'));
|
|
29
|
+
grad.addColorStop(1, c('#5a4510', '#8b6914'));
|
|
30
|
+
} else {
|
|
31
|
+
grad.addColorStop(0, color);
|
|
32
|
+
grad.addColorStop(0.5, c('#b8860b', '#cd9b1d'));
|
|
33
|
+
grad.addColorStop(0.8, c('#8b6914', '#b8860b'));
|
|
34
|
+
grad.addColorStop(1, c('#5a4510', '#8b6914'));
|
|
35
|
+
}
|
|
36
|
+
ctx.fillStyle = grad;
|
|
37
|
+
ctx.fill();
|
|
38
|
+
ctx.shadowColor = highlight ? c('rgba(212,175,55,0.6)', 'rgba(180,140,30,0.4)') : 'transparent';
|
|
39
|
+
ctx.shadowBlur = highlight ? 20 : 0;
|
|
40
|
+
ctx.strokeStyle = highlight ? '#ffd700' : c('rgba(212,175,55,0.3)', 'rgba(180,140,30,0.4)');
|
|
41
|
+
ctx.lineWidth = 1;
|
|
42
|
+
ctx.stroke();
|
|
43
|
+
ctx.shadowColor = 'transparent';
|
|
44
|
+
ctx.shadowBlur = 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
function gearInnerHole(r: number) {
|
|
48
|
+
const ctx = getCtx();
|
|
49
|
+
const innerR = r * 0.2;
|
|
50
|
+
ctx.beginPath();
|
|
51
|
+
ctx.arc(0, 0, innerR, 0, Math.PI * 2);
|
|
52
|
+
const ig = ctx.createRadialGradient(0, 0, 0, 0, 0, innerR);
|
|
53
|
+
ig.addColorStop(0, c('#2a2a42', '#f0ebe0'));
|
|
54
|
+
ig.addColorStop(0.6, c('#1a1a2e', '#e8e0d0'));
|
|
55
|
+
ig.addColorStop(1, c('#5a4510', '#8b6914'));
|
|
56
|
+
ctx.fillStyle = ig;
|
|
57
|
+
ctx.fill();
|
|
58
|
+
ctx.beginPath();
|
|
59
|
+
ctx.arc(0, 0, innerR * 0.5, 0, Math.PI * 2);
|
|
60
|
+
ctx.strokeStyle = c('rgba(212,175,55,0.2)', 'rgba(139,105,20,0.3)');
|
|
61
|
+
ctx.lineWidth = 1;
|
|
62
|
+
ctx.stroke();
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
function drawGearBody(opts: { r: number; teeth: number; color: string; highlight: boolean }) {
|
|
66
|
+
gearOutline(opts.r, opts.teeth);
|
|
67
|
+
gearFill(opts.r, opts.color, opts.highlight);
|
|
68
|
+
gearInnerHole(opts.r);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export function drawGear(opts: { x: number; y: number; r: number; teeth: number; angle: number; color: string; highlight: boolean }) {
|
|
72
|
+
const ctx = getCtx();
|
|
73
|
+
ctx.save();
|
|
74
|
+
ctx.translate(opts.x, opts.y);
|
|
75
|
+
ctx.rotate(opts.angle);
|
|
76
|
+
drawGearBody({ r: opts.r, teeth: opts.teeth, color: opts.color, highlight: opts.highlight });
|
|
77
|
+
ctx.restore();
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export function drawPallet(x: number, y: number, phase: number) {
|
|
81
|
+
const ctx = getCtx();
|
|
82
|
+
ctx.save();
|
|
83
|
+
ctx.translate(x, y);
|
|
84
|
+
const a = Math.sin(phase) * 0.4;
|
|
85
|
+
ctx.strokeStyle = c('#a0b0c0', '#607080');
|
|
86
|
+
ctx.lineWidth = 3;
|
|
87
|
+
ctx.lineCap = 'round';
|
|
88
|
+
const ax = Math.cos(a) * 18;
|
|
89
|
+
const ay = Math.sin(a) * 18;
|
|
90
|
+
const fx1 = Math.cos(a + 0.5) * 12;
|
|
91
|
+
const fy1 = Math.sin(a + 0.5) * 12;
|
|
92
|
+
const fx2 = Math.cos(a - 0.5) * 12;
|
|
93
|
+
const fy2 = Math.sin(a - 0.5) * 12;
|
|
94
|
+
ctx.beginPath(); ctx.moveTo(-ax, -ay); ctx.lineTo(0, 0); ctx.stroke();
|
|
95
|
+
ctx.beginPath(); ctx.moveTo(0, 0); ctx.lineTo(fx1, fy1); ctx.stroke();
|
|
96
|
+
ctx.beginPath(); ctx.moveTo(0, 0); ctx.lineTo(fx2, fy2); ctx.stroke();
|
|
97
|
+
ctx.fillStyle = c('#a0b0c0', '#607080');
|
|
98
|
+
ctx.beginPath(); ctx.arc(0, 0, 4, 0, Math.PI * 2); ctx.fill();
|
|
99
|
+
ctx.beginPath(); ctx.arc(-ax, -ay, 3, 0, Math.PI * 2); ctx.fillStyle = c('#c0d0e0', '#8090a0'); ctx.fill();
|
|
100
|
+
ctx.beginPath(); ctx.arc(fx1, fy1, 2.5, 0, Math.PI * 2); ctx.fill();
|
|
101
|
+
ctx.beginPath(); ctx.arc(fx2, fy2, 2.5, 0, Math.PI * 2); ctx.fill();
|
|
102
|
+
ctx.restore();
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export function drawBalance(x: number, y: number, r: number, phase: number) {
|
|
106
|
+
const ctx = getCtx();
|
|
107
|
+
ctx.save();
|
|
108
|
+
ctx.translate(x, y);
|
|
109
|
+
ctx.rotate(Math.sin(phase) * 0.6);
|
|
110
|
+
ctx.strokeStyle = c('#c0d0e0', '#8090a0');
|
|
111
|
+
ctx.lineWidth = 2;
|
|
112
|
+
ctx.beginPath(); ctx.arc(0, 0, r, 0, Math.PI * 2); ctx.stroke();
|
|
113
|
+
ctx.beginPath(); ctx.arc(0, 0, r * 0.85, 0, Math.PI * 2); ctx.strokeStyle = c('rgba(192,208,224,0.3)', 'rgba(100,110,130,0.3)'); ctx.lineWidth = 1; ctx.stroke();
|
|
114
|
+
const grad = ctx.createRadialGradient(0, 0, 0, 0, 0, r);
|
|
115
|
+
grad.addColorStop(0, c('#e8f0f8', '#d0d8e0'));
|
|
116
|
+
grad.addColorStop(0.3, c('#d0dce8', '#b0b8c0'));
|
|
117
|
+
grad.addColorStop(1, c('#304050', '#809090'));
|
|
118
|
+
ctx.fillStyle = grad;
|
|
119
|
+
ctx.beginPath(); ctx.arc(0, 0, r * 0.75, 0, Math.PI * 2); ctx.fill();
|
|
120
|
+
ctx.strokeStyle = c('#c0d0e0', '#8090a0'); ctx.lineWidth = 2.5;
|
|
121
|
+
ctx.beginPath(); ctx.moveTo(-r * 0.7, 0); ctx.lineTo(r * 0.7, 0); ctx.stroke();
|
|
122
|
+
ctx.beginPath(); ctx.moveTo(0, -r * 0.7); ctx.lineTo(0, r * 0.7); ctx.stroke();
|
|
123
|
+
ctx.fillStyle = '#d4af37';
|
|
124
|
+
ctx.beginPath(); ctx.arc(0, 0, 5, 0, Math.PI * 2); ctx.fill();
|
|
125
|
+
ctx.strokeStyle = c('rgba(212,175,55,0.5)', 'rgba(180,140,30,0.5)');
|
|
126
|
+
ctx.lineWidth = 1;
|
|
127
|
+
ctx.beginPath(); ctx.arc(0, 0, r + 4, 0, Math.PI * 2); ctx.stroke();
|
|
128
|
+
ctx.restore();
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export function drawConnection(opts: { x1: number; y1: number; x2: number; y2: number; active: boolean }) {
|
|
132
|
+
const ctx = getCtx();
|
|
133
|
+
ctx.beginPath();
|
|
134
|
+
ctx.moveTo(opts.x1, opts.y1);
|
|
135
|
+
ctx.lineTo(opts.x2, opts.y2);
|
|
136
|
+
if (opts.active) {
|
|
137
|
+
ctx.strokeStyle = c('rgba(212,175,55,0.35)', 'rgba(180,140,30,0.5)');
|
|
138
|
+
ctx.lineWidth = 3;
|
|
139
|
+
ctx.shadowColor = c('rgba(212,175,55,0.2)', 'rgba(180,140,30,0.3)');
|
|
140
|
+
ctx.shadowBlur = 8;
|
|
141
|
+
} else {
|
|
142
|
+
ctx.strokeStyle = c('rgba(60,60,90,0.5)', 'rgba(100,90,70,0.3)');
|
|
143
|
+
ctx.lineWidth = 2;
|
|
144
|
+
}
|
|
145
|
+
ctx.stroke();
|
|
146
|
+
ctx.shadowColor = 'transparent';
|
|
147
|
+
ctx.shadowBlur = 0;
|
|
148
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import type { WithContext, Thing } from 'schema-dts';
|
|
2
|
+
import type { FAQItem, HowToStep } from '../../types';
|
|
3
|
+
|
|
4
|
+
function buildFAQ(faq: FAQItem[]): WithContext<Thing> {
|
|
5
|
+
return {
|
|
6
|
+
'@context': 'https://schema.org',
|
|
7
|
+
'@type': 'FAQPage',
|
|
8
|
+
'mainEntity': faq.map((f) => ({
|
|
9
|
+
'@type': 'Question',
|
|
10
|
+
'name': f.question,
|
|
11
|
+
'acceptedAnswer': {
|
|
12
|
+
'@type': 'Answer',
|
|
13
|
+
'text': f.answer,
|
|
14
|
+
},
|
|
15
|
+
})),
|
|
16
|
+
} as unknown as WithContext<Thing>;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function buildApp(title: string): WithContext<Thing> {
|
|
20
|
+
return {
|
|
21
|
+
'@context': 'https://schema.org',
|
|
22
|
+
'@type': 'SoftwareApplication',
|
|
23
|
+
'name': title,
|
|
24
|
+
'operatingSystem': 'All',
|
|
25
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
26
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
27
|
+
} as unknown as WithContext<Thing>;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function buildHowTo(title: string, howTo: HowToStep[]): WithContext<Thing> {
|
|
31
|
+
return {
|
|
32
|
+
'@context': 'https://schema.org',
|
|
33
|
+
'@type': 'HowTo',
|
|
34
|
+
'name': title,
|
|
35
|
+
'step': howTo.map((h) => ({
|
|
36
|
+
'@type': 'HowToStep',
|
|
37
|
+
'name': h.name,
|
|
38
|
+
'text': h.text,
|
|
39
|
+
})),
|
|
40
|
+
} as unknown as WithContext<Thing>;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function buildSchemas(
|
|
44
|
+
title: string,
|
|
45
|
+
faq: FAQItem[],
|
|
46
|
+
howTo: HowToStep[]
|
|
47
|
+
): WithContext<Thing>[] {
|
|
48
|
+
return [buildFAQ(faq), buildApp(title), buildHowTo(title, howTo)];
|
|
49
|
+
}
|
|
@@ -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: 'Was ist ein Räderwerk in einer Uhr?',
|
|
9
|
+
answer: 'Ein Räderwerk ist eine Reihe von ineinandergreifenden Zahnrädern, die die Kraft von der Federhauswalze zur Hemmung übertragen. Jedes Zahnradpaar sorgt für ein bestimmtes Untersetzungsverhältnis und verlangsamt die schnelle Freisetzung der Federenergie in kontrollierte, getaktete Impulse.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'Warum haben verschiedene Uhrwerke unterschiedliche Übersetzungen?',
|
|
13
|
+
answer: 'Die Übersetzungsverhältnisse werden durch die Anzahl der Zähne an jedem Rad und Trieb bestimmt. Uhrwerke mit unterschiedlichen Schlagzahlen (z. B. 28.800 VPH vs. 36.000 VPH) haben unterschiedliche Hemmungsradgeschwindigkeiten und Zahnradkonfigurationen, um eine genaue Zeitmessung bei gleichzeitiger Anpassung an die Unruhfrequenz zu gewährleisten.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Was ist der Unterschied zwischen einem Rad und einem Trieb?',
|
|
17
|
+
answer: 'In der Uhrmacherei ist ein "Rad" das größere Zahnrad mit vielen Zähnen, das die nächste Komponente antreibt. Ein "Trieb" ist das kleinere Zahnrad (normalerweise 6-12 Zähne), das angetrieben wird. Zusammen bilden Rad und Trieb ein Zahnradpaar, das Drehzahl und Drehmoment verändert.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Wählen Sie ein Uhrwerk',
|
|
24
|
+
text: 'Wählen Sie zwischen Standard-Uhrwerken (28.800 VPH), Hochfrequenz-Uhrwerken (36.000 VPH El Primero) oder Vintage-Uhrwerken (18.000 VPH). Jedes hat einzigartige Übersetzungen und Schlagzahlen.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Beobachten Sie das Räderwerk',
|
|
28
|
+
text: 'Sehen Sie den animierten Zahnrädern dabei zu, wie sie sich mit proportionalen Geschwindigkeiten drehen. Die Federhauswalze dreht sich langsam, während das Hemmungsrad schnell rotiert. Fahren Sie mit der Maus über ein Zahnrad oder eine Datenkarte, um detaillierte Informationen zu erhalten.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Passen Sie die Geschwindigkeit an',
|
|
32
|
+
text: 'Nutzen Sie die Geschwindigkeitsregler, um die Animation zu verlangsamen, zu beschleunigen oder anzuhalten. So können Sie visualisieren, wie jedes Zahnrad zur Kraftübertragungskette beiträgt.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Räderwerk Erkunder: Interaktives Uhrmacherei Diagramm';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GearTrainExplorerUI> = {
|
|
39
|
+
slug: 'getriebeerkunder',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Erkunden Sie das mechanische Herz einer Uhr mit einer animierten Räderwerk-Visualisierung. Sehen Sie Federhauswalze, Minutenrad, Kleinbodenrad, Sekundenrad, Hemmungsrad, Anker und Unruh in Bewegung.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Räderwerk Erkunder',
|
|
44
|
+
barrelLabel: 'Federhaus',
|
|
45
|
+
centerWheelLabel: 'Minutenrad',
|
|
46
|
+
thirdWheelLabel: 'Kleinbodenrad',
|
|
47
|
+
fourthWheelLabel: 'Sekundenrad',
|
|
48
|
+
escapeWheelLabel: 'Hemmungsrad',
|
|
49
|
+
palletForkLabel: 'Anker',
|
|
50
|
+
balanceWheelLabel: 'Unruh',
|
|
51
|
+
rpmLabel: 'U/min',
|
|
52
|
+
teethLabel: 'Zähne',
|
|
53
|
+
gearRatioLabel: 'Verhältnis',
|
|
54
|
+
powerFlowLabel: 'Kraftfluss',
|
|
55
|
+
movementLabel: 'Uhrwerk',
|
|
56
|
+
speedLabel: 'Geschwindigkeit',
|
|
57
|
+
speedNormal: '1x',
|
|
58
|
+
speedSlow: '0.5x',
|
|
59
|
+
speedPaused: 'Pausiert',
|
|
60
|
+
mov2824: 'ETA 2824-2',
|
|
61
|
+
movElPrimero: 'El Primero',
|
|
62
|
+
movVintage: 'Vintage 18k',
|
|
63
|
+
step1: 'Wählen Sie ein Uhrwerk aus, um seine spezifischen Übersetzungen und Schlagzahlen zu sehen.',
|
|
64
|
+
step2: 'Fahren Sie über ein Zahnrad oder eine Datenkarte, um seine Position im Kraftfluss zu markieren.',
|
|
65
|
+
step3: 'Passen Sie die Animationsgeschwindigkeit an, um zu studieren, wie jedes Rad Kraft durch das Getriebe überträgt.',
|
|
66
|
+
tipTitle: 'Tipp',
|
|
67
|
+
tipContent: 'Das Räderwerk reduziert die schnelle Energieabgabe der Feder in eine kontrollierte Schwingung. Eine typische Federhauswalze dreht sich alle 7-8 Stunden einmal, während das Hemmungsrad mit 32 U/min rotiert (bei 28.800 VPH) — eine Untersetzung von über 15.000:1.',
|
|
68
|
+
},
|
|
69
|
+
seo: [
|
|
70
|
+
{ type: 'title', text: 'Interaktiver Räderwerk-Erkunder', level: 2 },
|
|
71
|
+
{ type: 'paragraph', html: 'Das <strong>Räderwerk</strong> ist das mechanische Rückgrat jeder mechanischen Uhr. Dieses interaktive Tool visualisiert, wie die Kraft von der Federhauswalze über das Minutenrad, Kleinbodenrad, Sekundenrad und Hemmungsrad zum Anker und zur Unruh fließt. Sehen Sie jedes Zahnrad mit seiner proportionalen Geschwindigkeit rotieren und verstehen Sie, wie Übersetzungen die Zeitmessung bestimmen.' },
|
|
72
|
+
{ type: 'title', text: 'Wie ein Uhrwerk-Räderwerk funktioniert', level: 3 },
|
|
73
|
+
{ type: 'paragraph', html: 'Ein Uhrwerk-Räderwerk besteht aus einer Reihe von <strong>Rädern</strong> (große Zahnräder) und <strong>Trieben</strong> (kleine Zahnräder), die Kraft übertragen und gleichzeitig die Drehzahl reduzieren. Das <strong>Federhaus</strong> beherbergt die Hauptfeder und dreht sich langsam. Es treibt das <strong>Minutenrad</strong> an, das sich einmal pro Stunde dreht (für den Minutenzeiger). Das <strong>Kleinbodenrad</strong> und <strong>Sekundenrad</strong> erhöhen die Drehzahl weiter. Schließlich gibt das <strong>Hemmungsrad</strong> die Kraft in kontrollierten Impulsen an den <strong>Anker</strong> ab, der abwechselnd das Hemmungsrad arretiert und freigibt und Impulse an die <strong>Unruh</strong> sendet. Die Unruh schwingt mit einer präzisen Frequenz — typischerweise 4 Hz (28.800 Schwingungen pro Stunde) — und reguliert so den Gang der Uhr.' },
|
|
74
|
+
{ type: 'title', text: 'Übersetzungen und Kraftübertragung', level: 3 },
|
|
75
|
+
{
|
|
76
|
+
type: 'table', headers: ['Komponente', 'Typische Zähne', 'U/min (28.800 VPH)', 'Verhältnis zuvor'], rows: [
|
|
77
|
+
['Federhaus', '72', '0,002 (1 U / 8 h)', '-'],
|
|
78
|
+
['Minutenrad', '60', '0,0167 (1 U / h)', '~7,2:1'],
|
|
79
|
+
['Kleinbodenrad', '50', '0,125 (1 U / 8 min)', '~5:1'],
|
|
80
|
+
['Sekundenrad', '60', '1 (1 U / min)', '6:1'],
|
|
81
|
+
['Hemmungsrad', '15', '32', '~1,875:1'],
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{ type: 'title', text: 'Uhrwerksvergleiche', level: 3 },
|
|
85
|
+
{
|
|
86
|
+
type: 'table', headers: ['Uhrwerk', 'Schlagzahl', 'Unruhfrequenz', 'Hemmungsrad-U/min', 'Typische Genauigkeit'], rows: [
|
|
87
|
+
['Vintage (18.000 VPH)', '18.000 bph', '2,5 Hz', '20 U/min', '±15-30 s/d'],
|
|
88
|
+
['Standard (28.800 VPH)', '28.800 bph', '4 Hz', '32 U/min', '±5-15 s/d'],
|
|
89
|
+
['Hochfrequenz (36.000 VPH)', '36.000 bph', '5 Hz', '40 U/min', '±3-8 s/d'],
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
{ type: 'diagnostic', variant: 'info', title: 'Interaktives Lernwerkzeug', icon: 'mdi:cog-clockwise', badge: 'UHRMACHEREI', html: 'Dieses Tool verwendet ungefähre Übersetzungsverhältnisse, die für typische Schweizer Ankerhemmungen repräsentativ sind. Tatsächliche Verhältnisse variieren je nach Kaliber. Nutzen Sie die Uhrwerksvoreinstellungen, um zu vergleichen, wie sich unterschiedliche Schlagzahlen auf die Räderwerkdynamik auswirken.' },
|
|
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: 'What is a watch gear train?',
|
|
9
|
+
answer: 'A gear train is a series of interlocking gears that transmit power from the mainspring barrel to the escapement. Each gear pair provides a specific reduction ratio, slowing down the rapid release of mainspring energy into controlled, timed impulses.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'Why do different movements have different gear ratios?',
|
|
13
|
+
answer: 'Gear ratios are determined by the number of teeth on each wheel and pinion. Movements with different beat rates (e.g., 28,800 vph vs 36,000 vph) have different escape wheel speeds and gear configurations to maintain accurate timekeeping while accommodating the balance wheel frequency.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'What is the difference between a wheel and a pinion?',
|
|
17
|
+
answer: 'In horology, a "wheel" is the larger gear with many teeth that drives the next component. A "pinion" is the smaller gear (usually 6-12 teeth) that is driven. Together, a wheel and pinion form a gear pair that changes rotational speed and torque.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Select a movement',
|
|
24
|
+
text: 'Choose between standard (28,800 vph), high-frequency (36,000 vph El Primero), or vintage (18,000 vph) movements. Each has unique gear ratios and beat rates.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Observe the gear train',
|
|
28
|
+
text: 'Watch the animated gears spin at proportional speeds. The barrel turns slowly while the escape wheel spins rapidly. Hover over any gear or data card for detailed information.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Adjust the speed',
|
|
32
|
+
text: 'Use the speed controls to slow down, speed up, or pause the animation. This helps visualize how each gear contributes to the power transmission chain.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Watch Gear Train Explorer: Interactive Horology Diagram';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GearTrainExplorerUI> = {
|
|
39
|
+
slug: 'gear-train-explorer',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Explore the mechanical heart of a watch with an animated gear train visualization. See the mainspring barrel, center wheel, third wheel, fourth wheel, escape wheel, pallet fork, and balance wheel in motion.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Watch Gear Train Explorer',
|
|
44
|
+
barrelLabel: 'Barrel',
|
|
45
|
+
centerWheelLabel: 'Center Wheel',
|
|
46
|
+
thirdWheelLabel: 'Third Wheel',
|
|
47
|
+
fourthWheelLabel: 'Fourth Wheel',
|
|
48
|
+
escapeWheelLabel: 'Escape Wheel',
|
|
49
|
+
palletForkLabel: 'Pallet Fork',
|
|
50
|
+
balanceWheelLabel: 'Balance Wheel',
|
|
51
|
+
rpmLabel: 'RPM',
|
|
52
|
+
teethLabel: 'teeth',
|
|
53
|
+
gearRatioLabel: 'Ratio',
|
|
54
|
+
powerFlowLabel: 'Power Flow',
|
|
55
|
+
movementLabel: 'Movement',
|
|
56
|
+
speedLabel: 'Speed',
|
|
57
|
+
speedNormal: '1x',
|
|
58
|
+
speedSlow: '0.5x',
|
|
59
|
+
speedPaused: 'Paused',
|
|
60
|
+
mov2824: 'ETA 2824-2',
|
|
61
|
+
movElPrimero: 'El Primero',
|
|
62
|
+
movVintage: 'Vintage 18k',
|
|
63
|
+
step1: 'Select a movement caliber to see its unique gear ratios and beat rate.',
|
|
64
|
+
step2: 'Hover over any gear or data card to highlight its position in the power flow.',
|
|
65
|
+
step3: 'Adjust the animation speed to study how each gear transmits power through the train.',
|
|
66
|
+
tipTitle: 'Tip',
|
|
67
|
+
tipContent: 'The gear train reduces the mainspring\'s rapid energy release into a controlled oscillation. A typical barrel rotates once every 7-8 hours, while the escape wheel spins at 32 RPM (at 28,800 vph) — a reduction of over 15,000:1.',
|
|
68
|
+
},
|
|
69
|
+
seo: [
|
|
70
|
+
{ type: 'title', text: 'Interactive Watch Gear Train Explorer', level: 2 },
|
|
71
|
+
{ type: 'paragraph', html: 'The <strong>gear train</strong> is the mechanical backbone of every mechanical watch. This interactive tool visualizes how power flows from the mainspring barrel through the center wheel, third wheel, fourth wheel, and escape wheel to the pallet fork and balance wheel. See each gear rotate at its proportional speed and understand how gear ratios determine timekeeping.' },
|
|
72
|
+
{ type: 'title', text: 'How a Watch Gear Train Works', level: 3 },
|
|
73
|
+
{ type: 'paragraph', html: 'A watch gear train consists of a series of <strong>wheels</strong> (large gears) and <strong>pinions</strong> (small gears) that transmit power while reducing speed. The <strong>barrel</strong> houses the mainspring and rotates slowly, driving the <strong>center wheel</strong> which turns once per hour (for the minute hand). The <strong>third wheel</strong> and <strong>fourth wheel</strong> (seconds wheel) further step up the rotation speed. Finally, the <strong>escape wheel</strong> releases power in controlled ticks to the <strong>pallet fork</strong>, which alternately locks and unlocks the escape wheel, sending impulses to the <strong>balance wheel</strong>. The balance wheel oscillates at a precise frequency — typically 4 Hz (28,800 vibrations per hour) — regulating the watch\'s rate.' },
|
|
74
|
+
{ type: 'title', text: 'Gear Ratios and Power Transmission', level: 3 },
|
|
75
|
+
{
|
|
76
|
+
type: 'table', headers: ['Component', 'Typical Teeth', 'RPM (28,800 vph)', 'Ratio from Previous'], rows: [
|
|
77
|
+
['Barrel', '72', '0.002 (1 rev / 8 h)', '-'],
|
|
78
|
+
['Center Wheel', '60', '0.0167 (1 rev / h)', '~7.2:1'],
|
|
79
|
+
['Third Wheel', '50', '0.125 (1 rev / 8 min)', '~5:1'],
|
|
80
|
+
['Fourth Wheel', '60', '1 (1 rev / min)', '6:1'],
|
|
81
|
+
['Escape Wheel', '15', '32', '~1.875:1'],
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{ type: 'title', text: 'Movement Comparisons', level: 3 },
|
|
85
|
+
{
|
|
86
|
+
type: 'table', headers: ['Movement', 'Beat Rate', 'Balance Frequency', 'Escape Wheel RPM', 'Typical Accuracy'], rows: [
|
|
87
|
+
['Vintage (18,000 vph)', '18,000 bph', '2.5 Hz', '20 RPM', '±15-30 s/d'],
|
|
88
|
+
['Standard (28,800 vph)', '28,800 bph', '4 Hz', '32 RPM', '±5-15 s/d'],
|
|
89
|
+
['High-Frequency (36,000 vph)', '36,000 bph', '5 Hz', '40 RPM', '±3-8 s/d'],
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
{ type: 'diagnostic', variant: 'info', title: 'Interactive Learning Tool', icon: 'mdi:cog-clockwise', badge: 'HOROLOGY', html: 'This tool uses approximate gear ratios representative of common Swiss lever escapement movements. Actual ratios vary by caliber. Use the movement presets to compare how different beat rates affect the gear train dynamics.' },
|
|
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: '¿Qué es un tren de engranajes en un reloj?',
|
|
9
|
+
answer: 'Un tren de engranajes es una serie de ruedas dentadas interconectadas que transmiten la energía desde el barril del muelle real hasta el escape. Cada par de engranajes proporciona una relación de reducción específica, ralentizando la liberación rápida de la energía del muelle en impulsos controlados y cronometrados.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: '¿Por qué los diferentes movimientos tienen diferentes relaciones de engranaje?',
|
|
13
|
+
answer: 'Las relaciones de engranaje están determinadas por el número de dientes en cada rueda y piñón. Los movimientos con diferentes frecuencias de oscilación (p. ej., 28.800 VPH vs 36.000 VPH) tienen diferentes velocidades de la rueda de escape y configuraciones de engranajes para mantener una precisión horaria precisa mientras se adaptan a la frecuencia del volante.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: '¿Cuál es la diferencia entre una rueda y un piñón?',
|
|
17
|
+
answer: 'En relojería, una "rueda" es el engranaje más grande con muchos dientes que impulsa el siguiente componente. Un "piñón" es el engranaje más pequeño (generalmente de 6-12 dientes) que es impulsado. Juntos, una rueda y un piñón forman un par de engranajes que cambia la velocidad de rotación y el par motor.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Seleccione un movimiento',
|
|
24
|
+
text: 'Elija entre movimientos estándar (28.800 VPH), de alta frecuencia (36.000 VPH El Primero) o vintage (18.000 VPH). Cada uno tiene relaciones de engranaje y frecuencias de oscilación únicas.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Observe el tren de engranajes',
|
|
28
|
+
text: 'Vea cómo los engranajes animados giran a velocidades proporcionales. El barril gira lentamente mientras que la rueda de escape gira rápidamente. Pase el ratón sobre cualquier engranaje o tarjeta de datos para obtener información detallada.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Ajuste la velocidad',
|
|
32
|
+
text: 'Use los controles de velocidad para ralentizar, acelerar o pausar la animación. Esto ayuda a visualizar cómo cada engranaje contribuye a la cadena de transmisión de potencia.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Explorador de Tren de Engranajes: Diagrama Interactivo de Relojería';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GearTrainExplorerUI> = {
|
|
39
|
+
slug: 'exploradortrenengranajes',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Explore el corazón mecánico de un reloj con una visualización animada del tren de engranajes. Vea el barril del muelle real, la rueda central, la tercera rueda, la cuarta rueda, la rueda de escape, la horquilla del áncora y el volante en movimiento.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Explorador de Tren de Engranajes',
|
|
44
|
+
barrelLabel: 'Barril',
|
|
45
|
+
centerWheelLabel: 'Rueda Central',
|
|
46
|
+
thirdWheelLabel: 'Tercera Rueda',
|
|
47
|
+
fourthWheelLabel: 'Cuarta Rueda',
|
|
48
|
+
escapeWheelLabel: 'Rueda de Escape',
|
|
49
|
+
palletForkLabel: 'Horquilla',
|
|
50
|
+
balanceWheelLabel: 'Volante',
|
|
51
|
+
rpmLabel: 'RPM',
|
|
52
|
+
teethLabel: 'dientes',
|
|
53
|
+
gearRatioLabel: 'Relación',
|
|
54
|
+
powerFlowLabel: 'Flujo de Potencia',
|
|
55
|
+
movementLabel: 'Movimiento',
|
|
56
|
+
speedLabel: 'Velocidad',
|
|
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: 'Seleccione un calibre de movimiento para ver sus relaciones de engranaje y frecuencia únicas.',
|
|
64
|
+
step2: 'Pase el ratón sobre cualquier engranaje o tarjeta de datos para resaltar su posición en el flujo de potencia.',
|
|
65
|
+
step3: 'Ajuste la velocidad de la animación para estudiar cómo cada engranaje transmite la potencia a través del tren.',
|
|
66
|
+
tipTitle: 'Consejo',
|
|
67
|
+
tipContent: 'El tren de engranajes reduce la rápida liberación de energía del muelle real en una oscilación controlada. Un barril típico rota una vez cada 7-8 horas, mientras que la rueda de escape gira a 32 RPM (a 28.800 VPH) — una reducción de más de 15.000:1.',
|
|
68
|
+
},
|
|
69
|
+
seo: [
|
|
70
|
+
{ type: 'title', text: 'Explorador Interactivo de Tren de Engranajes', level: 2 },
|
|
71
|
+
{ type: 'paragraph', html: 'El <strong>tren de engranajes</strong> es la columna vertebral mecánica de todo reloj mecánico. Esta herramienta interactiva visualiza cómo fluye la potencia desde el barril del muelle real a través de la rueda central, la tercera rueda, la cuarta rueda y la rueda de escape hasta la horquilla y el volante. Vea cada engranaje rotar a su velocidad proporcional y entienda cómo las relaciones de engranaje determinan la medición del tiempo.' },
|
|
72
|
+
{ type: 'title', text: 'Cómo funciona un tren de engranajes', level: 3 },
|
|
73
|
+
{ type: 'paragraph', html: 'Un tren de engranajes de un reloj consiste en una serie de <strong>ruedas</strong> (engranajes grandes) y <strong>piñones</strong> (engranajes pequeños) que transmiten potencia mientras reducen la velocidad. El <strong>barril</strong> alberga el muelle real y gira lentamente, impulsando la <strong>rueda central</strong> que gira una vez por hora (para la manecilla de los minutos). La <strong>tercera rueda</strong> y la <strong>cuarta rueda</strong> (rueda de segundos) aumentan aún más la velocidad de rotación. Finalmente, la <strong>rueda de escape</strong> libera la potencia en impulsos controlados hacia la <strong>horquilla del áncora</strong>, que alternativamente bloquea y desbloquea la rueda de escape, enviando impulsos al <strong>volante</strong>. El volante oscila a una frecuencia precisa — típicamente 4 Hz (28.800 vibraciones por hora) — regulando la marcha del reloj.' },
|
|
74
|
+
{ type: 'title', text: 'Relaciones de Engranaje y Transmisión de Potencia', level: 3 },
|
|
75
|
+
{
|
|
76
|
+
type: 'table', headers: ['Componente', 'Dientes típicos', 'RPM (28.800 VPH)', 'Relación anterior'], rows: [
|
|
77
|
+
['Barril', '72', '0,002 (1 rev / 8 h)', '-'],
|
|
78
|
+
['Rueda Central', '60', '0,0167 (1 rev / h)', '~7,2:1'],
|
|
79
|
+
['Tercera Rueda', '50', '0,125 (1 rev / 8 min)', '~5:1'],
|
|
80
|
+
['Cuarta Rueda', '60', '1 (1 rev / min)', '6:1'],
|
|
81
|
+
['Rueda de Escape', '15', '32', '~1,875:1'],
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{ type: 'title', text: 'Comparación de Movimientos', level: 3 },
|
|
85
|
+
{
|
|
86
|
+
type: 'table', headers: ['Movimiento', 'Frecuencia', 'Volante', 'Rueda Escape RPM', 'Precisión típica'], rows: [
|
|
87
|
+
['Vintage (18.000 VPH)', '18.000 bph', '2,5 Hz', '20 RPM', '±15-30 s/d'],
|
|
88
|
+
['Estándar (28.800 VPH)', '28.800 bph', '4 Hz', '32 RPM', '±5-15 s/d'],
|
|
89
|
+
['Alta Frecuencia (36.000 VPH)', '36.000 bph', '5 Hz', '40 RPM', '±3-8 s/d'],
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
{ type: 'diagnostic', variant: 'info', title: 'Herramienta de Aprendizaje Interactiva', icon: 'mdi:cog-clockwise', badge: 'RELOJERÍA', html: 'Esta herramienta utiliza relaciones de engranaje aproximadas representativas de movimientos comunes de escape de áncora suizo. Las relaciones reales varían según el calibre. Use los ajustes preestablecidos de movimiento para comparar cómo las diferentes frecuencias afectan la dinámica del tren de engranajes.' },
|
|
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: 'Qu\'est-ce qu\'un train d\'engrenages de montre?',
|
|
9
|
+
answer: 'Un train d\'engrenages est une série de roues dentées interconnectées qui transmettent l\'énergie du barillet au mécanisme d\'échappement. Chaque paire d\'engrenages fournit un rapport de réduction spécifique, ralentissant la libération rapide de l\'énergie du ressort en impulsions contrôlées et rythmées.',
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
question: 'Pourquoi différents mouvements ont-ils des rapports d\'engrenage différents?',
|
|
13
|
+
answer: 'Les rapports d\'engrenage sont déterminés par le nombre de dents sur chaque roue et pignon. Les mouvements avec des fréquences de balancier différentes (p. ex., 28 800 VPH vs 36 000 VPH) ont des vitesses de roue d\'échappement et des configurations d\'engrenage différentes pour maintenir une précision horaire tout en s\'adaptant à la fréquence du balancier.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Quelle est la différence entre une roue et un pignon?',
|
|
17
|
+
answer: 'En horlogerie, une "roue" est le grand engrenage avec de nombreuses dents qui entraîne le composant suivant. Un "pignon" est le petit engrenage (généralement 6-12 dents) qui est entraîné. Ensemble, une roue et un pignon forment une paire d\'engrenages qui modifie la vitesse de rotation et le couple.',
|
|
18
|
+
},
|
|
19
|
+
];
|
|
20
|
+
|
|
21
|
+
const howTo = [
|
|
22
|
+
{
|
|
23
|
+
name: 'Sélectionnez un mouvement',
|
|
24
|
+
text: 'Choisissez entre un mouvement standard (28 800 VPH), haute fréquence (36 000 VPH El Primero) ou vintage (18 000 VPH). Chacun a des rapports d\'engrenage et des fréquences uniques.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Observez le train d\'engrenages',
|
|
28
|
+
text: 'Regardez les engrenages animés tourner à des vitesses proportionnelles. Le barillet tourne lentement tandis que la roue d\'échappement tourne rapidement. Survolez un engrenage ou une carte de données pour obtenir des informations détaillées.',
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'Ajustez la vitesse',
|
|
32
|
+
text: 'Utilisez les contrôles de vitesse pour ralentir, accélérer ou mettre en pause l\'animation. Cela permet de visualiser comment chaque engrenage contribue à la chaîne de transmission de puissance.',
|
|
33
|
+
},
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const title = 'Explorateur de Train d\'Engrenages: Diagramme Horloger Interactif';
|
|
37
|
+
|
|
38
|
+
export const content: ToolLocaleContent<GearTrainExplorerUI> = {
|
|
39
|
+
slug: 'explorateurtrengrenages',
|
|
40
|
+
title,
|
|
41
|
+
description: 'Explorez le cœur mécanique d\'une montre avec une visualisation animée du train d\'engrenages. Voyez le barillet, la roue des minutes, la roue des heures, la roue des secondes, la roue d\'échappement, l\'ancre et le balancier en mouvement.',
|
|
42
|
+
ui: {
|
|
43
|
+
title: 'Explorateur de Train d\'Engrenages',
|
|
44
|
+
barrelLabel: 'Barillet',
|
|
45
|
+
centerWheelLabel: 'Roue Centrale',
|
|
46
|
+
thirdWheelLabel: 'Troisième Roue',
|
|
47
|
+
fourthWheelLabel: 'Quatrième Roue',
|
|
48
|
+
escapeWheelLabel: 'Roue d\'Échappement',
|
|
49
|
+
palletForkLabel: 'Ancre',
|
|
50
|
+
balanceWheelLabel: 'Balancier',
|
|
51
|
+
rpmLabel: 'tr/min',
|
|
52
|
+
teethLabel: 'dents',
|
|
53
|
+
gearRatioLabel: 'Rapport',
|
|
54
|
+
powerFlowLabel: 'Flux de Puissance',
|
|
55
|
+
movementLabel: 'Mouvement',
|
|
56
|
+
speedLabel: 'Vitesse',
|
|
57
|
+
speedNormal: '1x',
|
|
58
|
+
speedSlow: '0.5x',
|
|
59
|
+
speedPaused: 'Pause',
|
|
60
|
+
mov2824: 'ETA 2824-2',
|
|
61
|
+
movElPrimero: 'El Primero',
|
|
62
|
+
movVintage: 'Vintage 18k',
|
|
63
|
+
step1: 'Sélectionnez un calibre de mouvement pour voir ses rapports d\'engrenage et sa fréquence uniques.',
|
|
64
|
+
step2: 'Survolez un engrenage ou une carte de données pour mettre en évidence sa position dans le flux de puissance.',
|
|
65
|
+
step3: 'Ajustez la vitesse d\'animation pour étudier comment chaque roue transmet la puissance à travers le train.',
|
|
66
|
+
tipTitle: 'Astuce',
|
|
67
|
+
tipContent: 'Le train d\'engrenages réduit la libération rapide d\'énergie du ressort en une oscillation contrôlée. Un barillet typique tourne une fois toutes les 7-8 heures, tandis que la roue d\'échappement tourne à 32 tr/min (à 28 800 VPH) — une réduction de plus de 15 000:1.',
|
|
68
|
+
},
|
|
69
|
+
seo: [
|
|
70
|
+
{ type: 'title', text: 'Explorateur Interactif de Train d\'Engrenages', level: 2 },
|
|
71
|
+
{ type: 'paragraph', html: 'Le <strong>train d\'engrenages</strong> est l\'épine dorsale mécanique de toute montre mécanique. Cet outil interactif visualise comment la puissance circule du barillet à travers la roue centrale, la troisième roue, la quatrième roue et la roue d\'échappement jusqu\'à l\'ancre et le balancier. Voyez chaque roue tourner à sa vitesse proportionnelle et comprenez comment les rapports d\'engrenage déterminent la mesure du temps.' },
|
|
72
|
+
{ type: 'title', text: 'Comment fonctionne un train d\'engrenages', level: 3 },
|
|
73
|
+
{ type: 'paragraph', html: 'Un train d\'engrenages de montre se compose d\'une série de <strong>roues</strong> (grands engrenages) et de <strong>pignons</strong> (petits engrenages) qui transmettent la puissance tout en réduisant la vitesse. Le <strong>barillet</strong> contient le ressort moteur et tourne lentement, entraînant la <strong>roue centrale</strong> qui tourne une fois par heure (pour l\'aiguille des minutes). La <strong>troisième roue</strong> et la <strong>quatrième roue</strong> (roue des secondes) augmentent encore la vitesse de rotation. Enfin, la <strong>roue d\'échappement</strong> libère la puissance en impulsions contrôlées vers l\'<strong>ancre</strong>, qui verrouille et déverrouille alternativement la roue d\'échappement, envoyant des impulsions au <strong>balancier</strong>. Le balancier oscille à une fréquence précise — généralement 4 Hz (28 800 vibrations par heure) — régulant la marche de la montre.' },
|
|
74
|
+
{ type: 'title', text: 'Rapports d\'Engrenage et Transmission de Puissance', level: 3 },
|
|
75
|
+
{
|
|
76
|
+
type: 'table', headers: ['Composant', 'Dents typiques', 'tr/min (28 800 VPH)', 'Rapport précédent'], rows: [
|
|
77
|
+
['Barillet', '72', '0,002 (1 tr / 8 h)', '-'],
|
|
78
|
+
['Roue Centrale', '60', '0,0167 (1 tr / h)', '~7,2:1'],
|
|
79
|
+
['Troisième Roue', '50', '0,125 (1 tr / 8 min)', '~5:1'],
|
|
80
|
+
['Quatrième Roue', '60', '1 (1 tr / min)', '6:1'],
|
|
81
|
+
['Roue d\'Échappement', '15', '32', '~1,875:1'],
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{ type: 'title', text: 'Comparaison des Mouvements', level: 3 },
|
|
85
|
+
{
|
|
86
|
+
type: 'table', headers: ['Mouvement', 'Fréquence', 'Balancier', 'Roue Échappement tr/min', 'Précision typique'], rows: [
|
|
87
|
+
['Vintage (18 000 VPH)', '18 000 bph', '2,5 Hz', '20 tr/min', '±15-30 s/j'],
|
|
88
|
+
['Standard (28 800 VPH)', '28 800 bph', '4 Hz', '32 tr/min', '±5-15 s/j'],
|
|
89
|
+
['Haute Fréquence (36 000 VPH)', '36 000 bph', '5 Hz', '40 tr/min', '±3-8 s/j'],
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
{ type: 'diagnostic', variant: 'info', title: 'Outil d\'Apprentissage Interactif', icon: 'mdi:cog-clockwise', badge: 'HORLOGERIE', html: 'Cet outil utilise des rapports d\'engrenage approximatifs représentatifs des mouvements à échappement suisse courants. Les rapports réels varient selon le calibre. Utilisez les préréglages de mouvement pour comparer comment différentes fréquences affectent la dynamique du train d\'engrenages.' },
|
|
93
|
+
],
|
|
94
|
+
faq,
|
|
95
|
+
bibliography,
|
|
96
|
+
howTo,
|
|
97
|
+
schemas: buildSchemas(title, faq, howTo),
|
|
98
|
+
};
|
|
99
|
+
|