@jjlmoya/utils-chrono 1.2.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 +65 -0
- package/scripts/postinstall.mjs +27 -0
- package/src/category/ChronoCategorySEO.astro +8 -0
- package/src/category/i18n/de.ts +23 -0
- package/src/category/i18n/en.ts +23 -0
- package/src/category/i18n/es.ts +23 -0
- package/src/category/i18n/fr.ts +23 -0
- package/src/category/i18n/id.ts +23 -0
- package/src/category/i18n/it.ts +23 -0
- package/src/category/i18n/ja.ts +23 -0
- package/src/category/i18n/ko.ts +23 -0
- package/src/category/i18n/nl.ts +23 -0
- package/src/category/i18n/pl.ts +23 -0
- package/src/category/i18n/pt.ts +23 -0
- package/src/category/i18n/ru.ts +23 -0
- package/src/category/i18n/sv.ts +23 -0
- package/src/category/i18n/tr.ts +23 -0
- package/src/category/i18n/zh.ts +23 -0
- package/src/category/index.ts +42 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +11 -0
- package/src/entries.ts +32 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +28 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +161 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +19 -0
- package/src/tests/i18n_coverage.test.ts +36 -0
- package/src/tests/locale_completeness.test.ts +29 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/seo_length.test.ts +22 -0
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/slug_language_code_format.test.ts +23 -0
- package/src/tests/slug_uniqueness.test.ts +81 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +18 -0
- package/src/tool/beat-rate-converter/beat-rate-converter.css +301 -0
- package/src/tool/beat-rate-converter/bibliography.astro +16 -0
- package/src/tool/beat-rate-converter/bibliography.ts +12 -0
- package/src/tool/beat-rate-converter/client.ts +46 -0
- package/src/tool/beat-rate-converter/component.astro +15 -0
- package/src/tool/beat-rate-converter/components/ConverterPanel.astro +87 -0
- package/src/tool/beat-rate-converter/entry.ts +42 -0
- package/src/tool/beat-rate-converter/i18n/de.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/en.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/es.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/fr.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/id.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/it.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/ja.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/ko.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/nl.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/pl.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/pt.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/ru.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/sv.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/tr.ts +138 -0
- package/src/tool/beat-rate-converter/i18n/zh.ts +138 -0
- package/src/tool/beat-rate-converter/index.ts +11 -0
- package/src/tool/beat-rate-converter/seo.astro +16 -0
- package/src/tool/crown-reference-guide/bibliography.astro +16 -0
- package/src/tool/crown-reference-guide/bibliography.ts +20 -0
- package/src/tool/crown-reference-guide/client.ts +193 -0
- package/src/tool/crown-reference-guide/component.astro +69 -0
- package/src/tool/crown-reference-guide/components/CrownView.astro +40 -0
- package/src/tool/crown-reference-guide/components/MovementSelector.astro +26 -0
- package/src/tool/crown-reference-guide/components/PositionPanel.astro +59 -0
- package/src/tool/crown-reference-guide/crown-reference-guide.css +383 -0
- package/src/tool/crown-reference-guide/entry.ts +60 -0
- package/src/tool/crown-reference-guide/i18n/de.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/en.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/es.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/fr.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/id.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/it.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/ja.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/ko.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/nl.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/pl.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/pt.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/ru.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/sv.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/tr.ts +207 -0
- package/src/tool/crown-reference-guide/i18n/zh.ts +207 -0
- package/src/tool/crown-reference-guide/index.ts +11 -0
- package/src/tool/crown-reference-guide/seo.astro +16 -0
- package/src/tool/crown-reference-guide/utils.ts +0 -0
- package/src/tool/demagnetizing-timer/bibliography.astro +16 -0
- package/src/tool/demagnetizing-timer/bibliography.ts +12 -0
- package/src/tool/demagnetizing-timer/client.ts +221 -0
- package/src/tool/demagnetizing-timer/component.astro +15 -0
- package/src/tool/demagnetizing-timer/components/TimerPanel.astro +92 -0
- package/src/tool/demagnetizing-timer/demagnetizing-timer.css +389 -0
- package/src/tool/demagnetizing-timer/entry.ts +50 -0
- package/src/tool/demagnetizing-timer/helpers/field.ts +134 -0
- package/src/tool/demagnetizing-timer/i18n/de.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/en.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/es.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/fr.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/id.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/it.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/ja.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/ko.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/nl.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/pl.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/pt.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/ru.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/sv.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/tr.ts +143 -0
- package/src/tool/demagnetizing-timer/i18n/zh.ts +143 -0
- package/src/tool/demagnetizing-timer/index.ts +11 -0
- package/src/tool/demagnetizing-timer/seo.astro +16 -0
- package/src/tool/demagnetizing-timer/utils.ts +0 -0
- package/src/tool/power-reserve-estimator/bibliography.astro +16 -0
- package/src/tool/power-reserve-estimator/bibliography.ts +16 -0
- package/src/tool/power-reserve-estimator/client.ts +139 -0
- package/src/tool/power-reserve-estimator/component.astro +15 -0
- package/src/tool/power-reserve-estimator/components/EstimatorPanel.astro +150 -0
- package/src/tool/power-reserve-estimator/entry.ts +51 -0
- package/src/tool/power-reserve-estimator/i18n/de.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/en.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/es.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/fr.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/id.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/it.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/ja.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/ko.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/nl.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/pl.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/pt.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/ru.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/sv.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/tr.ts +158 -0
- package/src/tool/power-reserve-estimator/i18n/zh.ts +158 -0
- package/src/tool/power-reserve-estimator/index.ts +11 -0
- package/src/tool/power-reserve-estimator/power-reserve-estimator.css +402 -0
- package/src/tool/power-reserve-estimator/seo.astro +16 -0
- package/src/tool/strap-taper-calculator/bibliography.astro +16 -0
- package/src/tool/strap-taper-calculator/bibliography.ts +12 -0
- package/src/tool/strap-taper-calculator/client.ts +129 -0
- package/src/tool/strap-taper-calculator/component.astro +15 -0
- package/src/tool/strap-taper-calculator/components/CalculatorPanel.astro +114 -0
- package/src/tool/strap-taper-calculator/entry.ts +56 -0
- package/src/tool/strap-taper-calculator/i18n/de.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/en.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/es.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/fr.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/id.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/it.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/ja.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/ko.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/nl.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/pl.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/pt.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/ru.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/sv.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/tr.ts +152 -0
- package/src/tool/strap-taper-calculator/i18n/zh.ts +152 -0
- package/src/tool/strap-taper-calculator/index.ts +11 -0
- package/src/tool/strap-taper-calculator/seo.astro +16 -0
- package/src/tool/strap-taper-calculator/strap-taper-calculator.css +320 -0
- package/src/tool/watch-accuracy-tracker/bibliography.astro +16 -0
- package/src/tool/watch-accuracy-tracker/bibliography.ts +12 -0
- package/src/tool/watch-accuracy-tracker/chart.ts +126 -0
- package/src/tool/watch-accuracy-tracker/client.ts +287 -0
- package/src/tool/watch-accuracy-tracker/component.astro +35 -0
- package/src/tool/watch-accuracy-tracker/components/AccuracyTracker.astro +96 -0
- package/src/tool/watch-accuracy-tracker/components/DriftPredictor.astro +126 -0
- package/src/tool/watch-accuracy-tracker/components/LogHistory.astro +66 -0
- package/src/tool/watch-accuracy-tracker/entry.ts +94 -0
- package/src/tool/watch-accuracy-tracker/i18n/de.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/en.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/es.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/fr.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/id.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/it.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/ja.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/ko.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/nl.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/pl.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/pt.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/ru.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/sv.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/tr.ts +167 -0
- package/src/tool/watch-accuracy-tracker/i18n/zh.ts +167 -0
- package/src/tool/watch-accuracy-tracker/index.ts +9 -0
- package/src/tool/watch-accuracy-tracker/logger.ts +105 -0
- package/src/tool/watch-accuracy-tracker/seo.astro +16 -0
- package/src/tool/watch-accuracy-tracker/utils.ts +99 -0
- package/src/tool/watch-accuracy-tracker/watch-accuracy-tracker.css +564 -0
- package/src/tool/watch-savings-planner/bibliography.astro +16 -0
- package/src/tool/watch-savings-planner/bibliography.ts +8 -0
- package/src/tool/watch-savings-planner/client.ts +271 -0
- package/src/tool/watch-savings-planner/component.astro +33 -0
- package/src/tool/watch-savings-planner/components/AddGoalForm.astro +49 -0
- package/src/tool/watch-savings-planner/components/GoalCard.astro +58 -0
- package/src/tool/watch-savings-planner/entry.ts +62 -0
- package/src/tool/watch-savings-planner/i18n/de.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/en.ts +155 -0
- package/src/tool/watch-savings-planner/i18n/es.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/fr.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/id.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/it.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/ja.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/ko.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/nl.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/pl.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/pt.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/ru.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/sv.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/tr.ts +153 -0
- package/src/tool/watch-savings-planner/i18n/zh.ts +153 -0
- package/src/tool/watch-savings-planner/index.ts +11 -0
- package/src/tool/watch-savings-planner/seo.astro +16 -0
- package/src/tool/watch-savings-planner/utils.ts +0 -0
- package/src/tool/watch-savings-planner/watch-savings-planner.css +460 -0
- package/src/tool/water-resistance-converter/bibliography.astro +16 -0
- package/src/tool/water-resistance-converter/bibliography.ts +16 -0
- package/src/tool/water-resistance-converter/client.ts +56 -0
- package/src/tool/water-resistance-converter/component.astro +15 -0
- package/src/tool/water-resistance-converter/components/ConverterPanel.astro +113 -0
- package/src/tool/water-resistance-converter/entry.ts +52 -0
- package/src/tool/water-resistance-converter/i18n/de.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/en.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/es.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/fr.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/id.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/it.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/ja.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/ko.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/nl.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/pl.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/pt.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/ru.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/sv.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/tr.ts +148 -0
- package/src/tool/water-resistance-converter/i18n/zh.ts +148 -0
- package/src/tool/water-resistance-converter/index.ts +11 -0
- package/src/tool/water-resistance-converter/seo.astro +16 -0
- package/src/tool/water-resistance-converter/water-resistance-converter.css +254 -0
- package/src/tool/wrist-presence-calculator/bibliography.astro +16 -0
- package/src/tool/wrist-presence-calculator/bibliography.ts +12 -0
- package/src/tool/wrist-presence-calculator/client.ts +180 -0
- package/src/tool/wrist-presence-calculator/component.astro +23 -0
- package/src/tool/wrist-presence-calculator/components/CalculatorInputs.astro +97 -0
- package/src/tool/wrist-presence-calculator/components/FitResult.astro +68 -0
- package/src/tool/wrist-presence-calculator/components/Visualizer.astro +16 -0
- package/src/tool/wrist-presence-calculator/entry.ts +59 -0
- package/src/tool/wrist-presence-calculator/helpers/canvas.ts +189 -0
- package/src/tool/wrist-presence-calculator/helpers/results.ts +78 -0
- package/src/tool/wrist-presence-calculator/i18n/de.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/en.ts +155 -0
- package/src/tool/wrist-presence-calculator/i18n/es.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/fr.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/id.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/it.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/ja.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/ko.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/nl.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/pl.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/pt.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/ru.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/sv.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/tr.ts +139 -0
- package/src/tool/wrist-presence-calculator/i18n/zh.ts +155 -0
- package/src/tool/wrist-presence-calculator/index.ts +11 -0
- package/src/tool/wrist-presence-calculator/seo.astro +16 -0
- package/src/tool/wrist-presence-calculator/utils.ts +30 -0
- package/src/tool/wrist-presence-calculator/wrist-presence-calculator.css +372 -0
- package/src/tools.ts +26 -0
- package/src/types.ts +70 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BeatRateConverterUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<BeatRateConverterUI> = {
|
|
6
|
+
slug: 'beatraterechner',
|
|
7
|
+
title: 'Uhren Schlagzahlrechner \u2014 VPH in Hz und s/d',
|
|
8
|
+
description: 'Rechnen Sie Schwingungen pro Stunde (VPH) in Hertz, Ticks pro Sekunde um und berechnen Sie die t\u00e4gliche Abweichung durch einen verlorenen Tick. Funktioniert mit ETA-, Sellita-, Miyota-, Seiko-, Rolex-, Omega- und Zenith-Kalibern.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Schlagzahlrechner',
|
|
11
|
+
vphLabel: 'Uhrwerk',
|
|
12
|
+
selectMovement: 'Uhrwerk ausw\u00e4hlen',
|
|
13
|
+
customMovement: 'Benutzerdefiniert',
|
|
14
|
+
customVph: 'Schwingungen pro Stunde',
|
|
15
|
+
resultsTitle: 'Berechnungen',
|
|
16
|
+
frequency: 'Frequenz',
|
|
17
|
+
ticksPerSec: 'Ticks pro Sekunde',
|
|
18
|
+
lostTickImpact: 'Wenn 1 Tick pro Stunde verloren geht',
|
|
19
|
+
lostTickExplainer: 'Ein verlorener Tick pro Stunde bedeutet etwa 3 Sekunden Verlust pro Tag bei 28.800 VPH. Niedrigere Schlagzahlen verst\u00e4rken die Auswirkungen.',
|
|
20
|
+
step1: 'W\u00e4hlen Sie Ihr Uhrwerk oder geben Sie eine benutzerdefinierte VPH ein.',
|
|
21
|
+
step2: 'Lesen Sie die Hz-Frequenz, Ticks pro Sekunde und die Auswirkung eines verlorenen Ticks ab.',
|
|
22
|
+
tipTitle: 'Tipp',
|
|
23
|
+
tipContent: 'H\u00f6here Schlagzahlen (36.000 VPH) sorgen f\u00fcr einen gleichm\u00e4\u00dfigeren Sekundenzeigerlauf und bessere Pr\u00e4zision, aber auch f\u00fcr h\u00f6heren Verschlei\u00df an der Hemmung.',
|
|
24
|
+
},
|
|
25
|
+
seo: [
|
|
26
|
+
{ type: 'title', text: 'Uhren Schlagzahlrechner \u2014 VPH in Hz und Sekunden pro Tag', level: 2 },
|
|
27
|
+
{ type: 'paragraph', html: 'Jede mechanische Uhr schl\u00e4gt mit einer bestimmten Frequenz \u2014 der Anzahl der Schwingungen ihrer Unruh pro Stunde. Diese Zahl bestimmt, wie gleichm\u00e4\u00dfig der Sekundenzeiger l\u00e4uft und wie genau die Uhr sein kann. Dieser Rechner \u00fcbersetzt <strong>VPH in Hz und Ticks pro Sekunde</strong> und zeigt die tats\u00e4chlichen Auswirkungen eines einzelnen verlorenen Ticks.' },
|
|
28
|
+
{ type: 'title', text: 'Was ist eine Schlagzahl?', level: 3 },
|
|
29
|
+
{ type: 'paragraph', html: 'Die Schlagzahl, gemessen in Schwingungen pro Stunde (vph), ist die Frequenz, mit der die Unruh einer Uhr schwingt. Eine g\u00e4ngige Rate ist 28.800 VPH \u2014 das entspricht 4 Hz oder 8 Ticks pro Sekunde. H\u00f6here Schlagzahlen wie 36.000 VPH (5 Hz) erzeugen eine gleichm\u00e4\u00dfigere Zeigerbewegung und k\u00f6nnen theoretisch die Genauigkeit verbessern, indem sie die Auswirkung von Lagefehlern verringern.' },
|
|
30
|
+
{ type: 'title', text: 'Warum ein verlorener Tick wichtig ist', level: 3 },
|
|
31
|
+
{ type: 'paragraph', html: 'Wenn die Hemmung einer Uhr aufgrund von Reibung, Magnetismus oder Verschlei\u00df einen Tick nicht ausl\u00f6st, \u00fcbersetzt sich dieser verlorene Tick direkt in verlorene Zeit. Bei 28.800 VPH summiert sich ein verlorener Tick pro Stunde auf etwa <strong>3 Sekunden pro Tag</strong>. Bei 18.000 VPH kostet derselbe Fehler fast 5 Sekunden pro Tag. Dieses Tool hilft Ihnen, die Mathematik hinter der Reglage zu verstehen.' },
|
|
32
|
+
{ type: 'title', text: 'G\u00e4ngige Schlagzahlen', level: 3 },
|
|
33
|
+
{ type: 'paragraph', html: 'Vintage-Taschenuhren und fr\u00fche Automatikuhren laufen oft mit 18.000 VPH (2,5 Hz). Viele Seiko- und Miyota-Kaliber verwenden 21.600 VPH (3 Hz). Der moderne Standard ist 28.800 VPH (4 Hz), verwendet von ETA, Sellita, Rolex und anderen. Hochfrequente Werke wie der Zenith El Primero laufen mit 36.000 VPH (5 Hz) f\u00fcr h\u00f6here Pr\u00e4zision.' },
|
|
34
|
+
],
|
|
35
|
+
faq: [
|
|
36
|
+
{
|
|
37
|
+
question: 'Wie rechnet man VPH in Hz um?',
|
|
38
|
+
answer: 'Teilen Sie die VPH durch 7.200. Eine Uhr mit 28.800 VPH schl\u00e4gt mit 4 Hz (28.800 \u00f7 7.200 = 4). Die Division durch 7.200 ber\u00fccksichtigt, dass eine vollst\u00e4ndige Schwingung zwei Schwingungsvorg\u00e4nge umfasst und eine Stunde 3.600 Sekunden hat.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: 'Was bedeutet eine h\u00f6here Schlagzahl f\u00fcr die Genauigkeit?',
|
|
42
|
+
answer: 'H\u00f6here Schlagzahlen erm\u00f6glichen in der Regel eine gr\u00f6\u00dfere theoretische Pr\u00e4zision, da die Unruh weniger von Lagever\u00e4nderungen beeinflusst wird. Allerdings verursachen sie auch mehr Reibung und Verschlei\u00df an den Steinpaletten und dem Ankerrad, was bessere Schmierung und h\u00e4ufigere Wartung erfordert.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
question: 'Wie wirkt sich ein verlorener Tick auf die t\u00e4gliche Genauigkeit aus?',
|
|
46
|
+
answer: 'Ein verlorener Tick pro Stunde ergibt 24 verlorene Ticks pro Tag. Die verlorene Zeit h\u00e4ngt von Ihrer Schlagzahl ab: Teilen Sie 86.400 durch Ihre VPH. Bei 28.800 VPH sind das 3 Sekunden pro Tag. Bei 18.000 VPH sind es 4,8 Sekunden pro Tag.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Kann eine Uhr einen verlorenen Tick aufholen?',
|
|
50
|
+
answer: 'Nein. Sobald ein Tick verloren ist, ist die Zeit dauerhaft verloren. Die Uhr holt nichts auf. Deshalb wirkt sich der Zustand der Hemmung \u2014 saubere Steinpaletten, richtige Schmierung und korrekter Beat Error \u2014 direkt auf die t\u00e4gliche Ganggenauigkeit aus.',
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
bibliography,
|
|
54
|
+
howTo: [
|
|
55
|
+
{
|
|
56
|
+
name: 'Kaliber ausw\u00e4hlen',
|
|
57
|
+
text: 'W\u00e4hlen Sie Ihr Uhrwerk aus dem Men\u00fc. Jeder voreingestellte Eintrag enth\u00e4lt die korrekte VPH f\u00fcr dieses Kaliber.',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: 'Ergebnisse ablesen',
|
|
61
|
+
text: 'Die Karte zeigt Hz-Frequenz, Ticks pro Sekunde und die t\u00e4gliche Auswirkung eines einzelnen verlorenen Ticks.',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: 'Benutzerdefinierte VPH eingeben',
|
|
65
|
+
text: 'W\u00e4hlen Sie \u201eBenutzerdefiniert\u201c, um eine beliebige VPH f\u00fcr Vintage- oder ungew\u00f6hnliche Werke einzugeben.',
|
|
66
|
+
},
|
|
67
|
+
],
|
|
68
|
+
schemas: [
|
|
69
|
+
{
|
|
70
|
+
'@context': 'https://schema.org',
|
|
71
|
+
'@type': 'FAQPage',
|
|
72
|
+
'mainEntity': [
|
|
73
|
+
{
|
|
74
|
+
'@type': 'Question',
|
|
75
|
+
'name': 'Wie rechnet man VPH in Hz um?',
|
|
76
|
+
'acceptedAnswer': {
|
|
77
|
+
'@type': 'Answer',
|
|
78
|
+
'text': 'Teilen Sie die VPH durch 7.200. Eine Uhr mit 28.800 VPH schl\u00e4gt mit 4 Hz. Die Division durch 7.200 ber\u00fccksichtigt, dass eine Schwingung zwei Schwingungsvorg\u00e4nge umfasst und eine Stunde 3.600 Sekunden hat.',
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
'@type': 'Question',
|
|
83
|
+
'name': 'Was bedeutet eine h\u00f6here Schlagzahl f\u00fcr die Genauigkeit?',
|
|
84
|
+
'acceptedAnswer': {
|
|
85
|
+
'@type': 'Answer',
|
|
86
|
+
'text': 'H\u00f6here Schlagzahlen erm\u00f6glichen eine gr\u00f6\u00dfere theoretische Pr\u00e4zision, da die Unruh weniger von Lagever\u00e4nderungen beeinflusst wird. Allerdings verursachen sie auch mehr Reibung und Verschlei\u00df.',
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
'@type': 'Question',
|
|
91
|
+
'name': 'Wie wirkt sich ein verlorener Tick auf die t\u00e4gliche Genauigkeit aus?',
|
|
92
|
+
'acceptedAnswer': {
|
|
93
|
+
'@type': 'Answer',
|
|
94
|
+
'text': 'Ein verlorener Tick pro Stunde ergibt 24 verlorene Ticks pro Tag. Teilen Sie 86.400 durch Ihre VPH, um die verlorenen Sekunden pro Tag zu ermitteln.',
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
'@type': 'Question',
|
|
99
|
+
'name': 'Kann eine Uhr einen verlorenen Tick aufholen?',
|
|
100
|
+
'acceptedAnswer': {
|
|
101
|
+
'@type': 'Answer',
|
|
102
|
+
'text': 'Nein. Sobald ein Tick verloren ist, ist die Zeit dauerhaft verloren. Die Uhr holt nichts auf.',
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@context': 'https://schema.org',
|
|
109
|
+
'@type': 'SoftwareApplication',
|
|
110
|
+
'name': 'Uhren Schlagzahlrechner',
|
|
111
|
+
'operatingSystem': 'Alle',
|
|
112
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
113
|
+
'browserRequirements': 'Erfordert HTML5. Erfordert JavaScript.',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
'@context': 'https://schema.org',
|
|
117
|
+
'@type': 'HowTo',
|
|
118
|
+
'name': 'So rechnen Sie VPH in Hz um und berechnen die Auswirkung verlorener Ticks',
|
|
119
|
+
'step': [
|
|
120
|
+
{
|
|
121
|
+
'@type': 'HowToStep',
|
|
122
|
+
'name': 'Kaliber ausw\u00e4hlen',
|
|
123
|
+
'text': 'W\u00e4hlen Sie Ihr Uhrwerk aus dem Men\u00fc. Jeder voreingestellte Eintrag enth\u00e4lt die korrekte VPH f\u00fcr dieses Kaliber.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@type': 'HowToStep',
|
|
127
|
+
'name': 'Ergebnisse ablesen',
|
|
128
|
+
'text': 'Die Karte zeigt Hz-Frequenz, Ticks pro Sekunde und die t\u00e4gliche Auswirkung eines einzelnen verlorenen Ticks.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Benutzerdefinierte VPH eingeben',
|
|
133
|
+
'text': 'W\u00e4hlen Sie Benutzerdefiniert, um eine beliebige VPH f\u00fcr Vintage- oder ungew\u00f6hnliche Werke einzugeben.',
|
|
134
|
+
},
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
};
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BeatRateConverterUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<BeatRateConverterUI> = {
|
|
6
|
+
slug: 'beat-rate-converter',
|
|
7
|
+
title: 'Watch Beat Rate Converter — VPH to Hz & s/d Calculator',
|
|
8
|
+
description: 'Convert vibrations per hour (VPH) to Hertz, ticks per second, and calculate the daily rate impact of a single lost tick. Works with ETA, Sellita, Miyota, Seiko, Rolex, Omega, and Zenith calibers.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Beat Rate Converter',
|
|
11
|
+
vphLabel: 'Movement',
|
|
12
|
+
selectMovement: 'Select movement',
|
|
13
|
+
customMovement: 'Custom',
|
|
14
|
+
customVph: 'Vibrations per hour',
|
|
15
|
+
resultsTitle: 'Calculations',
|
|
16
|
+
frequency: 'Frequency',
|
|
17
|
+
ticksPerSec: 'Ticks per second',
|
|
18
|
+
lostTickImpact: 'If it loses 1 tick per hour',
|
|
19
|
+
lostTickExplainer: 'One missed tick per hour means ~3 seconds lost per day at 28,800 vph. Lower beat rates amplify the impact.',
|
|
20
|
+
step1: 'Select your movement or enter a custom VPH.',
|
|
21
|
+
step2: 'Read the Hz frequency, ticks per second, and the impact of a lost tick.',
|
|
22
|
+
tipTitle: 'Tip',
|
|
23
|
+
tipContent: 'Higher beat rates (36,000 vph) give smoother hand sweep and better precision, but also more wear on the escapement.',
|
|
24
|
+
},
|
|
25
|
+
seo: [
|
|
26
|
+
{ type: 'title', text: 'Watch Beat Rate Converter — VPH to Hz & Seconds per Day', level: 2 },
|
|
27
|
+
{ type: 'paragraph', html: 'Every mechanical watch beats at a specific rate — the number of vibrations its balance wheel makes per hour. That number determines how smooth the seconds hand sweeps and how precise the watch can be. This converter translates <strong>VPH to Hz and ticks per second</strong>, and shows you the real-world impact of a single lost tick.' },
|
|
28
|
+
{ type: 'title', text: 'What Is a Beat Rate?', level: 3 },
|
|
29
|
+
{ type: 'paragraph', html: 'The beat rate, measured in vibrations per hour (vph), is the frequency at which a watch\'s balance wheel oscillates. A common rate is 28,800 vph — that\'s 4 Hz, or 8 ticks per second. Higher beat rates like 36,000 vph (5 Hz) produce a smoother sweeping motion and can theoretically improve accuracy by reducing the effect of positional errors.' },
|
|
30
|
+
{ type: 'title', text: 'Why a Lost Tick Matters', level: 3 },
|
|
31
|
+
{ type: 'paragraph', html: 'If a watch\'s escapement fails to deliver one tick due to friction, magnetism, or wear, that lost tick translates directly into lost time. At 28,800 vph, a single missed tick per hour adds up to about <strong>3 seconds per day</strong>. At 18,000 vph, the same error costs nearly 5 seconds per day. This tool helps you understand the math behind regulation.' },
|
|
32
|
+
{ type: 'title', text: 'Common Beat Rates', level: 3 },
|
|
33
|
+
{ type: 'paragraph', html: 'Vintage pocket watches and early automatics often run at 18,000 vph (2.5 Hz). Many Seiko and Miyota calibers use 21,600 vph (3 Hz). The modern standard is 28,800 vph (4 Hz), used by ETA, Sellita, Rolex, and others. High-beat movements like the Zenith El Primero run at 36,000 vph (5 Hz) for greater precision.' },
|
|
34
|
+
],
|
|
35
|
+
faq: [
|
|
36
|
+
{
|
|
37
|
+
question: 'How do you convert VPH to Hz?',
|
|
38
|
+
answer: 'Divide the VPH by 7,200. A watch beating at 28,800 vph runs at 4 Hz (28,800 ÷ 7,200 = 4). The division by 7,200 accounts for the fact that one complete oscillation contains two vibrations, and there are 3,600 seconds in an hour.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: 'What does a higher beat rate mean for accuracy?',
|
|
42
|
+
answer: 'Higher beat rates generally allow for greater theoretical precision because the balance wheel is less affected by positional disturbances. However, they also create more friction and wear on the pallet stones and escape wheel, requiring better lubrication and more frequent servicing.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
question: 'How does a lost tick affect daily accuracy?',
|
|
46
|
+
answer: 'One missed tick per hour translates to 24 lost ticks per day. The time lost depends on your beat rate: divide 86,400 by your VPH. At 28,800 vph, that\'s 3 seconds per day. At 18,000 vph, it\'s 4.8 seconds per day.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Can a watch recover from a lost tick?',
|
|
50
|
+
answer: 'No. Once a tick is missed, the time is permanently lost. The watch doesn\'t "catch up." This is why escapement health — clean pallet stones, proper lubrication, and correct beat error — directly impacts daily rate.',
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
bibliography,
|
|
54
|
+
howTo: [
|
|
55
|
+
{
|
|
56
|
+
name: 'Select your caliber',
|
|
57
|
+
text: 'Pick your movement from the dropdown. Each preset includes the correct VPH for that caliber.',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: 'Read the results',
|
|
61
|
+
text: 'The card shows Hz frequency, ticks per second, and the daily impact of a single lost tick.',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: 'Try a custom VPH',
|
|
65
|
+
text: 'Select "Custom" to enter any VPH value for vintage or unusual movements.',
|
|
66
|
+
},
|
|
67
|
+
],
|
|
68
|
+
schemas: [
|
|
69
|
+
{
|
|
70
|
+
'@context': 'https://schema.org',
|
|
71
|
+
'@type': 'FAQPage',
|
|
72
|
+
'mainEntity': [
|
|
73
|
+
{
|
|
74
|
+
'@type': 'Question',
|
|
75
|
+
'name': 'How do you convert VPH to Hz?',
|
|
76
|
+
'acceptedAnswer': {
|
|
77
|
+
'@type': 'Answer',
|
|
78
|
+
'text': 'Divide the VPH by 7,200. A watch beating at 28,800 vph runs at 4 Hz. The division by 7,200 accounts for one oscillation containing two vibrations and 3,600 seconds per hour.',
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
'@type': 'Question',
|
|
83
|
+
'name': 'What does a higher beat rate mean for accuracy?',
|
|
84
|
+
'acceptedAnswer': {
|
|
85
|
+
'@type': 'Answer',
|
|
86
|
+
'text': 'Higher beat rates allow for greater theoretical precision because the balance wheel is less affected by positional disturbances. However, they also create more friction and wear.',
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
'@type': 'Question',
|
|
91
|
+
'name': 'How does a lost tick affect daily accuracy?',
|
|
92
|
+
'acceptedAnswer': {
|
|
93
|
+
'@type': 'Answer',
|
|
94
|
+
'text': 'One missed tick per hour translates to 24 lost ticks per day. Divide 86,400 by your VPH to find the seconds per day lost.',
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
'@type': 'Question',
|
|
99
|
+
'name': 'Can a watch recover from a lost tick?',
|
|
100
|
+
'acceptedAnswer': {
|
|
101
|
+
'@type': 'Answer',
|
|
102
|
+
'text': 'No. Once a tick is missed, the time is permanently lost. The watch does not catch up.',
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@context': 'https://schema.org',
|
|
109
|
+
'@type': 'SoftwareApplication',
|
|
110
|
+
'name': 'Watch Beat Rate Converter',
|
|
111
|
+
'operatingSystem': 'All',
|
|
112
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
113
|
+
'browserRequirements': 'Requires HTML5. Requires JavaScript.',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
'@context': 'https://schema.org',
|
|
117
|
+
'@type': 'HowTo',
|
|
118
|
+
'name': 'How to convert VPH to Hz and calculate lost tick impact',
|
|
119
|
+
'step': [
|
|
120
|
+
{
|
|
121
|
+
'@type': 'HowToStep',
|
|
122
|
+
'name': 'Select your caliber',
|
|
123
|
+
'text': 'Pick your movement from the dropdown. Each preset includes the correct VPH for that caliber.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@type': 'HowToStep',
|
|
127
|
+
'name': 'Read the results',
|
|
128
|
+
'text': 'The card shows Hz frequency, ticks per second, and the daily impact of a single lost tick.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Try a custom VPH',
|
|
133
|
+
'text': 'Select Custom to enter any VPH value for vintage or unusual movements.',
|
|
134
|
+
},
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
};
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BeatRateConverterUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<BeatRateConverterUI> = {
|
|
6
|
+
slug: 'convertidor-ritmo-pulsacion',
|
|
7
|
+
title: 'Conversor de Ritmo de Pulsaci\u00f3n \u2014 VPH a Hz y s/d',
|
|
8
|
+
description: 'Convierta vibraciones por hora (VPH) a Hertz, ticks por segundo y calcule el impacto diario de un solo tick perdido. Funciona con calibres ETA, Sellita, Miyota, Seiko, Rolex, Omega y Zenith.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Conversor de Ritmo de Pulsaci\u00f3n',
|
|
11
|
+
vphLabel: 'Movimiento',
|
|
12
|
+
selectMovement: 'Seleccionar movimiento',
|
|
13
|
+
customMovement: 'Personalizado',
|
|
14
|
+
customVph: 'Vibraciones por hora',
|
|
15
|
+
resultsTitle: 'C\u00e1lculos',
|
|
16
|
+
frequency: 'Frecuencia',
|
|
17
|
+
ticksPerSec: 'Ticks por segundo',
|
|
18
|
+
lostTickImpact: 'Si pierde 1 tick por hora',
|
|
19
|
+
lostTickExplainer: 'Un tick perdido por hora equivale a ~3 segundos perdidos al d\u00eda a 28.800 VPH. Las frecuencias m\u00e1s bajas amplifican el impacto.',
|
|
20
|
+
step1: 'Seleccione su movimiento o introduzca un VPH personalizado.',
|
|
21
|
+
step2: 'Lea la frecuencia en Hz, los ticks por segundo y el impacto de un tick perdido.',
|
|
22
|
+
tipTitle: 'Consejo',
|
|
23
|
+
tipContent: 'Las frecuencias m\u00e1s altas (36.000 VPH) proporcionan un barrido m\u00e1s suave de la aguja y mejor precisi\u00f3n, pero tambi\u00e9n mayor desgaste en el escape.',
|
|
24
|
+
},
|
|
25
|
+
seo: [
|
|
26
|
+
{ type: 'title', text: 'Conversor de Ritmo de Pulsaci\u00f3n \u2014 VPH a Hz y segundos por d\u00eda', level: 2 },
|
|
27
|
+
{ type: 'paragraph', html: 'Cada reloj mec\u00e1nico late a un ritmo espec\u00edfico \u2014 el n\u00famero de vibraciones que su volante realiza por hora. Ese n\u00famero determina la suavidad del barrido del segundero y la precisi\u00f3n del reloj. Este conversor traduce <strong>VPH a Hz y ticks por segundo</strong>, y muestra el impacto real de un solo tick perdido.' },
|
|
28
|
+
{ type: 'title', text: '\u00bfQu\u00e9 es el ritmo de pulsaci\u00f3n?', level: 3 },
|
|
29
|
+
{ type: 'paragraph', html: 'El ritmo de pulsaci\u00f3n, medido en vibraciones por hora (vph), es la frecuencia a la que oscila el volante de un reloj. Un ritmo com\u00fan es 28.800 VPH \u2014 eso son 4 Hz, u 8 ticks por segundo. Ritmos m\u00e1s altos como 36.000 VPH (5 Hz) producen un movimiento m\u00e1s suave y pueden mejorar te\u00f3ricamente la precisi\u00f3n al reducir el efecto de los errores posicionales.' },
|
|
30
|
+
{ type: 'title', text: 'Por qu\u00e9 importa un tick perdido', level: 3 },
|
|
31
|
+
{ type: 'paragraph', html: 'Si el escape de un reloj no entrega un tick debido a fricci\u00f3n, magnetismo o desgaste, ese tick perdido se traduce directamente en tiempo perdido. A 28.800 VPH, un solo tick perdido por hora suma aproximadamente <strong>3 segundos por d\u00eda</strong>. A 18.000 VPH, el mismo error cuesta casi 5 segundos por d\u00eda. Esta herramienta le ayuda a entender las matem\u00e1ticas detr\u00e1s de la regulaci\u00f3n.' },
|
|
32
|
+
{ type: 'title', text: 'Ritmos de pulsaci\u00f3n comunes', level: 3 },
|
|
33
|
+
{ type: 'paragraph', html: 'Los relojes de bolsillo vintage y los autom\u00e1ticos antiguos suelen funcionar a 18.000 VPH (2,5 Hz). Muchos calibres Seiko y Miyota usan 21.600 VPH (3 Hz). El est\u00e1ndar moderno es 28.800 VPH (4 Hz), usado por ETA, Sellita, Rolex y otros. Los movimientos de alta frecuencia como el Zenith El Primero funcionan a 36.000 VPH (5 Hz) para mayor precisi\u00f3n.' },
|
|
34
|
+
],
|
|
35
|
+
faq: [
|
|
36
|
+
{
|
|
37
|
+
question: '\u00bfC\u00f3mo se convierte VPH a Hz?',
|
|
38
|
+
answer: 'Divida el VPH entre 7.200. Un reloj que late a 28.800 VPH funciona a 4 Hz (28.800 \u00f7 7.200 = 4). La divisi\u00f3n entre 7.200 considera que una oscilaci\u00f3n completa contiene dos vibraciones y que hay 3.600 segundos en una hora.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: '\u00bfQu\u00e9 significa un ritmo m\u00e1s alto para la precisi\u00f3n?',
|
|
42
|
+
answer: 'Los ritmos m\u00e1s altos generalmente permiten una mayor precisi\u00f3n te\u00f3rica porque el volante se ve menos afectado por perturbaciones posicionales. Sin embargo, tambi\u00e9n generan m\u00e1s fricci\u00f3n y desgaste en las piedras de paleta y la rueda de escape, lo que requiere mejor lubricaci\u00f3n y un servicio m\u00e1s frecuente.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
question: '\u00bfC\u00f3mo afecta un tick perdido a la precisi\u00f3n diaria?',
|
|
46
|
+
answer: 'Un tick perdido por hora se traduce en 24 ticks perdidos al d\u00eda. El tiempo perdido depende de su ritmo: divida 86.400 entre su VPH. A 28.800 VPH son 3 segundos por d\u00eda. A 18.000 VPH son 4,8 segundos por d\u00eda.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: '\u00bfPuede un reloj recuperarse de un tick perdido?',
|
|
50
|
+
answer: 'No. Una vez que se pierde un tick, el tiempo se pierde permanentemente. El reloj no se "pone al d\u00eda". Por eso la salud del escape \u2014 piedras limpias, lubricaci\u00f3n adecuada y error de ritmo correcto \u2014 impacta directamente la tasa diaria.',
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
bibliography,
|
|
54
|
+
howTo: [
|
|
55
|
+
{
|
|
56
|
+
name: 'Seleccione su calibre',
|
|
57
|
+
text: 'Elija su movimiento en el men\u00fa desplegable. Cada preajuste incluye el VPH correcto para ese calibre.',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: 'Lea los resultados',
|
|
61
|
+
text: 'La tarjeta muestra la frecuencia en Hz, los ticks por segundo y el impacto diario de un solo tick perdido.',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: 'Pruebe un VPH personalizado',
|
|
65
|
+
text: 'Seleccione "Personalizado" para introducir cualquier VPH para movimientos vintage o inusuales.',
|
|
66
|
+
},
|
|
67
|
+
],
|
|
68
|
+
schemas: [
|
|
69
|
+
{
|
|
70
|
+
'@context': 'https://schema.org',
|
|
71
|
+
'@type': 'FAQPage',
|
|
72
|
+
'mainEntity': [
|
|
73
|
+
{
|
|
74
|
+
'@type': 'Question',
|
|
75
|
+
'name': '\u00bfC\u00f3mo se convierte VPH a Hz?',
|
|
76
|
+
'acceptedAnswer': {
|
|
77
|
+
'@type': 'Answer',
|
|
78
|
+
'text': 'Divida el VPH entre 7.200. Un reloj que late a 28.800 VPH funciona a 4 Hz. La divisi\u00f3n entre 7.200 considera que una oscilaci\u00f3n contiene dos vibraciones y 3.600 segundos por hora.',
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
'@type': 'Question',
|
|
83
|
+
'name': '\u00bfQu\u00e9 significa un ritmo m\u00e1s alto para la precisi\u00f3n?',
|
|
84
|
+
'acceptedAnswer': {
|
|
85
|
+
'@type': 'Answer',
|
|
86
|
+
'text': 'Los ritmos m\u00e1s altos permiten una mayor precisi\u00f3n te\u00f3rica porque el volante se ve menos afectado por perturbaciones posicionales. Sin embargo, tambi\u00e9n generan m\u00e1s fricci\u00f3n y desgaste.',
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
'@type': 'Question',
|
|
91
|
+
'name': '\u00bfC\u00f3mo afecta un tick perdido a la precisi\u00f3n diaria?',
|
|
92
|
+
'acceptedAnswer': {
|
|
93
|
+
'@type': 'Answer',
|
|
94
|
+
'text': 'Un tick perdido por hora se traduce en 24 ticks perdidos al d\u00eda. Divida 86.400 entre su VPH para hallar los segundos por d\u00eda perdidos.',
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
'@type': 'Question',
|
|
99
|
+
'name': '\u00bfPuede un reloj recuperarse de un tick perdido?',
|
|
100
|
+
'acceptedAnswer': {
|
|
101
|
+
'@type': 'Answer',
|
|
102
|
+
'text': 'No. Una vez que se pierde un tick, el tiempo se pierde permanentemente. El reloj no se pone al d\u00eda.',
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@context': 'https://schema.org',
|
|
109
|
+
'@type': 'SoftwareApplication',
|
|
110
|
+
'name': 'Conversor de Ritmo de Pulsaci\u00f3n',
|
|
111
|
+
'operatingSystem': 'Todos',
|
|
112
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
113
|
+
'browserRequirements': 'Requiere HTML5. Requiere JavaScript.',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
'@context': 'https://schema.org',
|
|
117
|
+
'@type': 'HowTo',
|
|
118
|
+
'name': 'C\u00f3mo convertir VPH a Hz y calcular el impacto de un tick perdido',
|
|
119
|
+
'step': [
|
|
120
|
+
{
|
|
121
|
+
'@type': 'HowToStep',
|
|
122
|
+
'name': 'Seleccione su calibre',
|
|
123
|
+
'text': 'Elija su movimiento en el men\u00fa desplegable. Cada preajuste incluye el VPH correcto para ese calibre.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@type': 'HowToStep',
|
|
127
|
+
'name': 'Lea los resultados',
|
|
128
|
+
'text': 'La tarjeta muestra la frecuencia en Hz, los ticks por segundo y el impacto diario de un solo tick perdido.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Pruebe un VPH personalizado',
|
|
133
|
+
'text': 'Seleccione Personalizado para introducir cualquier VPH para movimientos vintage o inusuales.',
|
|
134
|
+
},
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
};
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BeatRateConverterUI } from '../entry';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
export const content: ToolLocaleContent<BeatRateConverterUI> = {
|
|
6
|
+
slug: 'convertisseur-frequence-balancement',
|
|
7
|
+
title: 'Convertisseur de Fr\u00e9quence de Balancement \u2014 VPH en Hz et s/j',
|
|
8
|
+
description: 'Convertissez les vibrations par heure (VPH) en Hertz, en ticks par seconde et calculez l\u2019impact quotidien d\u2019un seul tick perdu. Fonctionne avec les calibres ETA, Sellita, Miyota, Seiko, Rolex, Omega et Zenith.',
|
|
9
|
+
ui: {
|
|
10
|
+
title: 'Convertisseur de Fr\u00e9quence de Balancement',
|
|
11
|
+
vphLabel: 'Mouvement',
|
|
12
|
+
selectMovement: 'S\u00e9lectionner un mouvement',
|
|
13
|
+
customMovement: 'Personnalis\u00e9',
|
|
14
|
+
customVph: 'Vibrations par heure',
|
|
15
|
+
resultsTitle: 'Calculs',
|
|
16
|
+
frequency: 'Fr\u00e9quence',
|
|
17
|
+
ticksPerSec: 'Ticks par seconde',
|
|
18
|
+
lostTickImpact: 'S\u2019il perd 1 tick par heure',
|
|
19
|
+
lostTickExplainer: 'Un tick manqu\u00e9 par heure signifie environ 3 secondes perdues par jour \u00e0 28 800 VPH. Les fr\u00e9quences plus basses amplifient l\u2019impact.',
|
|
20
|
+
step1: 'S\u00e9lectionnez votre mouvement ou saisissez un VPH personnalis\u00e9.',
|
|
21
|
+
step2: 'Lisez la fr\u00e9quence en Hz, les ticks par seconde et l\u2019impact d\u2019un tick perdu.',
|
|
22
|
+
tipTitle: 'Astuce',
|
|
23
|
+
tipContent: 'Les fr\u00e9quences plus \u00e9lev\u00e9es (36 000 VPH) donnent un balayage plus fluide de l\u2019aiguille et une meilleure pr\u00e9cision, mais aussi plus d\u2019usure sur l\u2019\u00e9chappement.',
|
|
24
|
+
},
|
|
25
|
+
seo: [
|
|
26
|
+
{ type: 'title', text: 'Convertisseur de Fr\u00e9quence de Balancement \u2014 VPH en Hz et secondes par jour', level: 2 },
|
|
27
|
+
{ type: 'paragraph', html: 'Chaque montre m\u00e9canique bat \u00e0 une fr\u00e9quence sp\u00e9cifique \u2014 le nombre de vibrations que son balancier effectue par heure. Ce nombre d\u00e9termine la fluidit\u00e9 du balayage de l\u2019aiguille des secondes et la pr\u00e9cision de la montre. Ce convertisseur traduit <strong>les VPH en Hz et en ticks par seconde</strong>, et montre l\u2019impact r\u00e9el d\u2019un seul tick perdu.' },
|
|
28
|
+
{ type: 'title', text: 'Qu\u2019est-ce qu\u2019une fr\u00e9quence de balancement?', level: 3 },
|
|
29
|
+
{ type: 'paragraph', html: 'La fr\u00e9quence de balancement, mesur\u00e9e en vibrations par heure (vph), est la fr\u00e9quence \u00e0 laquelle le balancier d\u2019une montre oscille. Une fr\u00e9quence courante est 28 800 VPH \u2014 soit 4 Hz, ou 8 ticks par seconde. Des fr\u00e9quences plus \u00e9lev\u00e9es comme 36 000 VPH (5 Hz) produisent un mouvement plus fluide et peuvent th\u00e9oriquement am\u00e9liorer la pr\u00e9cision en r\u00e9duisant l\u2019effet des erreurs de position.' },
|
|
30
|
+
{ type: 'title', text: 'Pourquoi un tick perdu est important', level: 3 },
|
|
31
|
+
{ type: 'paragraph', html: 'Si l\u2019\u00e9chappement d\u2019une montre ne d\u00e9livre pas un tick \u00e0 cause de frottements, de magn\u00e9tisme ou d\u2019usure, ce tick perdu se traduit directement en temps perdu. \u00c0 28 800 VPH, un seul tick manqu\u00e9 par heure s\u2019accumule pour environ <strong>3 secondes par jour</strong>. \u00c0 18 000 VPH, la m\u00eame erreur co\u00fbte pr\u00e8s de 5 secondes par jour. Cet outil vous aide \u00e0 comprendre les calculs derri\u00e8re le r\u00e9glage.' },
|
|
32
|
+
{ type: 'title', text: 'Fr\u00e9quences de balancement courantes', level: 3 },
|
|
33
|
+
{ type: 'paragraph', html: 'Les montres de poche vintage et les premi\u00e8res automatiques tournent souvent \u00e0 18 000 VPH (2,5 Hz). De nombreux calibres Seiko et Miyota utilisent 21 600 VPH (3 Hz). La norme moderne est 28 800 VPH (4 Hz), utilis\u00e9e par ETA, Sellita, Rolex, et d\u2019autres. Les mouvements \u00e0 haute fr\u00e9quence comme le Zenith El Primero tournent \u00e0 36 000 VPH (5 Hz) pour une plus grande pr\u00e9cision.' },
|
|
34
|
+
],
|
|
35
|
+
faq: [
|
|
36
|
+
{
|
|
37
|
+
question: 'Comment convertir des VPH en Hz?',
|
|
38
|
+
answer: 'Divisez les VPH par 7 200. Une montre battant \u00e0 28 800 VPH tourne \u00e0 4 Hz (28 800 \u00f7 7 200 = 4). La division par 7 200 tient compte du fait qu\u2019une oscillation compl\u00e8te contient deux vibrations et qu\u2019il y a 3 600 secondes dans une heure.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: 'Que signifie une fr\u00e9quence plus \u00e9lev\u00e9e pour la pr\u00e9cision?',
|
|
42
|
+
answer: 'Des fr\u00e9quences plus \u00e9lev\u00e9es permettent g\u00e9n\u00e9ralement une plus grande pr\u00e9cision th\u00e9orique car le balancier est moins affect\u00e9 par les perturbations de position. Cependant, elles g\u00e9n\u00e8rent aussi plus de frottement et d\u2019usure sur les pierres de palette et la roue d\u2019\u00e9chappement, n\u00e9cessitant une meilleure lubrification et un entretien plus fr\u00e9quent.',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
question: 'Comment un tick perdu affecte-t-il la pr\u00e9cision quotidienne?',
|
|
46
|
+
answer: 'Un tick manqu\u00e9 par heure se traduit par 24 ticks perdus par jour. Le temps perdu d\u00e9pend de votre fr\u00e9quence de balancement : divisez 86 400 par vos VPH. \u00c0 28 800 VPH, cela donne 3 secondes par jour. \u00c0 18 000 VPH, cela donne 4,8 secondes par jour.',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
question: 'Une montre peut-elle rattraper un tick perdu?',
|
|
50
|
+
answer: 'Non. Une fois qu\u2019un tick est manqu\u00e9, le temps est perdu d\u00e9finitivement. La montre ne "rattrape" pas. C\u2019est pourquoi la sant\u00e9 de l\u2019\u00e9chappement \u2014 pierres propres, lubrification appropri\u00e9e et erreur de battement correcte \u2014 impacte directement la marche quotidienne.',
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
bibliography,
|
|
54
|
+
howTo: [
|
|
55
|
+
{
|
|
56
|
+
name: 'S\u00e9lectionnez votre calibre',
|
|
57
|
+
text: 'Choisissez votre mouvement dans le menu d\u00e9roulant. Chaque pr\u00e9r\u00e9glage inclut le VPH correct pour ce calibre.',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: 'Lisez les r\u00e9sultats',
|
|
61
|
+
text: 'La carte affiche la fr\u00e9quence en Hz, les ticks par seconde et l\u2019impact quotidien d\u2019un seul tick perdu.',
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: 'Essayez un VPH personnalis\u00e9',
|
|
65
|
+
text: 'S\u00e9lectionnez "Personnalis\u00e9" pour saisir n\u2019importe quelle valeur VPH pour les mouvements vintage ou inhabituels.',
|
|
66
|
+
},
|
|
67
|
+
],
|
|
68
|
+
schemas: [
|
|
69
|
+
{
|
|
70
|
+
'@context': 'https://schema.org',
|
|
71
|
+
'@type': 'FAQPage',
|
|
72
|
+
'mainEntity': [
|
|
73
|
+
{
|
|
74
|
+
'@type': 'Question',
|
|
75
|
+
'name': 'Comment convertir des VPH en Hz?',
|
|
76
|
+
'acceptedAnswer': {
|
|
77
|
+
'@type': 'Answer',
|
|
78
|
+
'text': 'Divisez les VPH par 7 200. Une montre battant \u00e0 28 800 VPH tourne \u00e0 4 Hz. La division par 7 200 tient compte d\u2019une oscillation contenant deux vibrations et de 3 600 secondes par heure.',
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
'@type': 'Question',
|
|
83
|
+
'name': 'Que signifie une fr\u00e9quence plus \u00e9lev\u00e9e pour la pr\u00e9cision?',
|
|
84
|
+
'acceptedAnswer': {
|
|
85
|
+
'@type': 'Answer',
|
|
86
|
+
'text': 'Des fr\u00e9quences plus \u00e9lev\u00e9es permettent une plus grande pr\u00e9cision th\u00e9orique car le balancier est moins affect\u00e9 par les perturbations de position. Cependant, elles g\u00e9n\u00e8rent aussi plus de frottement et d\u2019usure.',
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
'@type': 'Question',
|
|
91
|
+
'name': 'Comment un tick perdu affecte-t-il la pr\u00e9cision quotidienne?',
|
|
92
|
+
'acceptedAnswer': {
|
|
93
|
+
'@type': 'Answer',
|
|
94
|
+
'text': 'Un tick manqu\u00e9 par heure se traduit par 24 ticks perdus par jour. Divisez 86 400 par vos VPH pour trouver les secondes perdues par jour.',
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
'@type': 'Question',
|
|
99
|
+
'name': 'Une montre peut-elle rattraper un tick perdu?',
|
|
100
|
+
'acceptedAnswer': {
|
|
101
|
+
'@type': 'Answer',
|
|
102
|
+
'text': 'Non. Une fois qu\u2019un tick est manqu\u00e9, le temps est perdu d\u00e9finitivement. La montre ne rattrape pas.',
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
'@context': 'https://schema.org',
|
|
109
|
+
'@type': 'SoftwareApplication',
|
|
110
|
+
'name': 'Convertisseur de Fr\u00e9quence de Balancement',
|
|
111
|
+
'operatingSystem': 'Tous',
|
|
112
|
+
'applicationCategory': 'UtilitiesApplication',
|
|
113
|
+
'browserRequirements': 'N\u00e9cessite HTML5. N\u00e9cessite JavaScript.',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
'@context': 'https://schema.org',
|
|
117
|
+
'@type': 'HowTo',
|
|
118
|
+
'name': 'Comment convertir des VPH en Hz et calculer l\u2019impact d\u2019un tick perdu',
|
|
119
|
+
'step': [
|
|
120
|
+
{
|
|
121
|
+
'@type': 'HowToStep',
|
|
122
|
+
'name': 'S\u00e9lectionnez votre calibre',
|
|
123
|
+
'text': 'Choisissez votre mouvement dans le menu d\u00e9roulant. Chaque pr\u00e9r\u00e9glage inclut le VPH correct pour ce calibre.',
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
'@type': 'HowToStep',
|
|
127
|
+
'name': 'Lisez les r\u00e9sultats',
|
|
128
|
+
'text': 'La carte affiche la fr\u00e9quence en Hz, les ticks par seconde et l\u2019impact quotidien d\u2019un seul tick perdu.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
'@type': 'HowToStep',
|
|
132
|
+
'name': 'Essayez un VPH personnalis\u00e9',
|
|
133
|
+
'text': 'S\u00e9lectionnez Personnalis\u00e9 pour saisir n\u2019importe quelle valeur VPH pour les mouvements vintage ou inhabituels.',
|
|
134
|
+
},
|
|
135
|
+
],
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
};
|