@jjlmoya/utils-drones 1.14.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/category/index.ts +2 -1
- package/src/entries.ts +4 -1
- package/src/index.ts +1 -0
- package/src/pages/[locale]/[slug].astro +30 -14
- package/src/tests/locale_completeness.test.ts +4 -22
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/antenna-length-calculator/bibliography.astro +3 -11
- package/src/tool/antenna-length-calculator/bibliography.ts +6 -0
- package/src/tool/antenna-length-calculator/i18n/de.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/en.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/es.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/fr.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/id.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/it.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/ja.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/ko.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/nl.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/pl.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/pt.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/ru.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/sv.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/tr.ts +2 -8
- package/src/tool/antenna-length-calculator/i18n/zh.ts +2 -8
- package/src/tool/antenna-length-calculator/seo.astro +2 -26
- package/src/tool/drone-flight-time/bibliography.astro +3 -11
- package/src/tool/drone-flight-time/bibliography.ts +7 -0
- package/src/tool/drone-flight-time/i18n/de.ts +2 -9
- package/src/tool/drone-flight-time/i18n/en.ts +2 -9
- package/src/tool/drone-flight-time/i18n/es.ts +2 -9
- package/src/tool/drone-flight-time/i18n/fr.ts +2 -9
- package/src/tool/drone-flight-time/i18n/id.ts +2 -9
- package/src/tool/drone-flight-time/i18n/it.ts +2 -9
- package/src/tool/drone-flight-time/i18n/ja.ts +2 -9
- package/src/tool/drone-flight-time/i18n/ko.ts +2 -9
- package/src/tool/drone-flight-time/i18n/nl.ts +2 -9
- package/src/tool/drone-flight-time/i18n/pl.ts +2 -9
- package/src/tool/drone-flight-time/i18n/pt.ts +2 -9
- package/src/tool/drone-flight-time/i18n/ru.ts +2 -9
- package/src/tool/drone-flight-time/i18n/sv.ts +2 -9
- package/src/tool/drone-flight-time/i18n/tr.ts +2 -9
- package/src/tool/drone-flight-time/i18n/zh.ts +2 -9
- package/src/tool/drone-flight-time/seo.astro +2 -18
- package/src/tool/drone-power-analyzer/bibliography.astro +6 -0
- package/src/tool/drone-power-analyzer/bibliography.ts +7 -0
- package/src/tool/drone-power-analyzer/component.astro +210 -0
- package/src/tool/drone-power-analyzer/components/FlightProfile.astro +37 -0
- package/src/tool/drone-power-analyzer/components/MotorConfig.astro +46 -0
- package/src/tool/drone-power-analyzer/components/PowerGauge.astro +48 -0
- package/src/tool/drone-power-analyzer/components/WeightConfig.astro +49 -0
- package/src/tool/drone-power-analyzer/drone-power-analyzer.css +535 -0
- package/src/tool/drone-power-analyzer/entry.ts +29 -0
- package/src/tool/drone-power-analyzer/i18n/de.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/en.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/es.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/fr.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/id.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/it.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/ja.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/ko.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/nl.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/pl.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/pt.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/ru.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/sv.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/tr.ts +203 -0
- package/src/tool/drone-power-analyzer/i18n/zh.ts +203 -0
- package/src/tool/drone-power-analyzer/index.ts +8 -0
- package/src/tool/drone-power-analyzer/seo.astro +15 -0
- package/src/tool/gps-coordinates-converter/bibliography.astro +3 -11
- package/src/tool/gps-coordinates-converter/bibliography.ts +12 -0
- package/src/tool/gps-coordinates-converter/components/GpsMap.astro +3 -2
- package/src/tool/gps-coordinates-converter/gps-coordinates-converter.css +196 -188
- package/src/tool/gps-coordinates-converter/i18n/de.ts +35 -36
- package/src/tool/gps-coordinates-converter/i18n/en.ts +4 -14
- package/src/tool/gps-coordinates-converter/i18n/es.ts +4 -14
- package/src/tool/gps-coordinates-converter/i18n/fr.ts +4 -14
- package/src/tool/gps-coordinates-converter/i18n/id.ts +36 -37
- package/src/tool/gps-coordinates-converter/i18n/it.ts +35 -36
- package/src/tool/gps-coordinates-converter/i18n/ja.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/ko.ts +20 -21
- package/src/tool/gps-coordinates-converter/i18n/nl.ts +33 -36
- package/src/tool/gps-coordinates-converter/i18n/pl.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/pt.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/ru.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/sv.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/tr.ts +19 -20
- package/src/tool/gps-coordinates-converter/i18n/zh.ts +20 -21
- package/src/tool/gps-coordinates-converter/seo.astro +2 -26
- package/src/tools.ts +3 -0
- package/src/types.ts +1 -3
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import type { DronePowerAnalyzerLocaleContent } from '../index';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
const slug = 'drohnen-leistungsanalyzer';
|
|
6
|
+
const title = 'Drohnen Leistungsanalysator: Schub und Gewichts Verhältnis Rechner für FPV';
|
|
7
|
+
const description = 'Berechnen Sie das kritische Schub-Gewichts-Verhältnis für Ihren FPV-Drohnenbau. Erhalten Sie sofortige Flugprofil-Empfehlungen, eine visuelle Leistungsanzeige und optimieren Sie für Cinematic, Freestyle oder Racing.';
|
|
8
|
+
|
|
9
|
+
const faqItems = [
|
|
10
|
+
{
|
|
11
|
+
question: 'Was ist das Schub-Gewichts-Verhältnis und warum ist es wichtig?',
|
|
12
|
+
answer: 'Das Schub-Gewichts-Verhältnis ist der Gesamtschub, den Ihre Drohne erzeugen kann, geteilt durch ihr Abfluggewicht (AUW). Es ist die wichtigste Kennzahl, die bestimmt, wie sich Ihre Drohne beim Fliegen anfühlt – von langsam und stabil (Cinematography) bis hin zu ultra-reaktiv (Racing).',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'Was ist das ideale Verhältnis ("Sweet Spot") für Freestyle-Flüge?',
|
|
16
|
+
answer: 'Für flüssige Freestyle-Flüge liegt der Sweet Spot zwischen 4:1 und 6:1. Ein Verhältnis von 4:1 bietet exzellente Agilität bei guter Stabilität, während 6:1 extrem reaktiv ist, aber mehr Feingefühl am Gashebel in engen Räumen erfordert.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'Kann ich dies für Cinematography-Builds verwenden?',
|
|
20
|
+
answer: 'Ja. Für flüssige, langsame Cinematography-Aufnahmen sollten Sie ein Verhältnis von 2:1 bis 3:1 anstreben. Dies hält die Drohne stabil und berechenbar. Alles darunter wird schwer zu kontrollieren; alles darüber fühlt sich für langsame Bewegungen zu nervös an.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'Was passiert, wenn mein Verhältnis über 8:1 liegt?',
|
|
24
|
+
answer: 'Über 8:1 ist Ihre Drohne faktisch eine Rennmaschine – extrem reaktiv und anspruchsvoll zu fliegen. Nur erfahrene Piloten sollten solche Builds versuchen. Ideal für Renntore und Speed-Runs, aber gefährlich in Innenräumen.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Muss ich das Batteriegewicht in das AUW einbeziehen?',
|
|
28
|
+
answer: 'Ja. Das AUW (All-Up Weight) ist das Gesamtgewicht Ihrer Drohne mit allen installierten Komponenten: Rahmen, Motoren, ESCs, Flugsteuerung, Kamera, Batterie, Propeller – alles. Nutzen Sie die Batterie-Presets für eine sofortige Gewichtshinzufügung.',
|
|
29
|
+
},
|
|
30
|
+
];
|
|
31
|
+
|
|
32
|
+
const howToSteps = [
|
|
33
|
+
{
|
|
34
|
+
name: 'Motorkonfiguration auswählen',
|
|
35
|
+
text: 'Wählen Sie, ob Ihr Build eine Quad (4), Hexa (6) oder Octo (8) Motorkonfiguration ist. Dieser Multiplikator ist entscheidend für den Gesamtschub.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'Motorschub eingeben',
|
|
39
|
+
text: 'Geben Sie den maximalen Schub ein, den jeder Motor erzeugen kann (in Gramm). Sie finden dies in den Motorspezifikationen oder nutzen Sie die Schnell-Presets.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Gesamtgewicht festlegen',
|
|
43
|
+
text: 'Geben Sie das Abfluggewicht (AUW) Ihrer Drohne ein – Rahmen, Motoren, Batterie, Kamera, alles. Nutzen Sie die Batterie-Presets für eine sofortige Gewichtsanpassung.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Ergebnisse ablesen',
|
|
47
|
+
text: 'Der Rechner zeigt sofort Ihr Schub-Gewichts-Verhältnis, die Eignung des Flugprofils (Cinematic, Freestyle, Racing) und eine persönliche Empfehlung für Ihren Build.',
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
const schemas: DronePowerAnalyzerLocaleContent['schemas'] = [
|
|
52
|
+
{
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqItems.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
} as WithContext<FAQPage>,
|
|
61
|
+
{
|
|
62
|
+
'@context': 'https://schema.org',
|
|
63
|
+
'@type': 'HowTo',
|
|
64
|
+
name: title,
|
|
65
|
+
description: description,
|
|
66
|
+
step: howToSteps.map((step, i) => ({
|
|
67
|
+
'@type': 'HowToStep',
|
|
68
|
+
position: i + 1,
|
|
69
|
+
name: step.name,
|
|
70
|
+
text: step.text,
|
|
71
|
+
})),
|
|
72
|
+
} as WithContext<HowTo>,
|
|
73
|
+
{
|
|
74
|
+
'@context': 'https://schema.org',
|
|
75
|
+
'@type': 'SoftwareApplication',
|
|
76
|
+
name: title,
|
|
77
|
+
description: description,
|
|
78
|
+
applicationCategory: 'OtherApplication',
|
|
79
|
+
operatingSystem: 'Web',
|
|
80
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
81
|
+
} as WithContext<SoftwareApplication>,
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
export const content: DronePowerAnalyzerLocaleContent = {
|
|
85
|
+
slug,
|
|
86
|
+
title,
|
|
87
|
+
description,
|
|
88
|
+
ui: {
|
|
89
|
+
motorConfiguration: 'Motorkonfiguration',
|
|
90
|
+
motorCount: 'Motoranzahl',
|
|
91
|
+
thrustPerMotor: 'Schub pro Motor (max)',
|
|
92
|
+
thrustUnit: 'g',
|
|
93
|
+
quad: 'Quad (4)',
|
|
94
|
+
hexa: 'Hexa (6)',
|
|
95
|
+
octo: 'Octo (8)',
|
|
96
|
+
motorPresets: 'Schnelle Motor-Presets',
|
|
97
|
+
presetMotor450: '2204 2300kv (4S) ~450g',
|
|
98
|
+
presetMotor600: '2306 2450kv (4S) ~600g',
|
|
99
|
+
presetMotor850: '2306 2450kv (6S) ~850g',
|
|
100
|
+
presetMotor1000: '2507 1850kv (6S) ~1000g',
|
|
101
|
+
weightConfiguration: 'Gewichtskonfiguration',
|
|
102
|
+
auwLabel: 'Abfluggewicht (AUW)',
|
|
103
|
+
weightUnit: 'g',
|
|
104
|
+
switchToLbs: 'Auf lbs umstellen',
|
|
105
|
+
switchToGrams: 'Auf g umstellen',
|
|
106
|
+
batteryPresets: 'Batteriegewicht hinzufügen',
|
|
107
|
+
presetTattu4s: 'Tattu 4S 1550mAh (+182g)',
|
|
108
|
+
presetTattu6s: 'Tattu 6S 1100mAh (+231g)',
|
|
109
|
+
presetGnb4s: 'GNB 4S 850mAh (+118g)',
|
|
110
|
+
presetGnb6s: 'GNB 6S 1100mAh (+205g)',
|
|
111
|
+
totalThrust: 'Gesamtschub',
|
|
112
|
+
twRatio: 'Schub-Gewichts-Verhältnis',
|
|
113
|
+
powerMeter: 'Leistungsanzeige',
|
|
114
|
+
flightProfiles: 'Flugprofil-Bewertung',
|
|
115
|
+
cinematicLabel: 'Cinematic',
|
|
116
|
+
freestyleLabel: 'Freestyle',
|
|
117
|
+
racingLabel: 'Racing',
|
|
118
|
+
proRacingLabel: 'Pro Racing',
|
|
119
|
+
suitable: 'Geeignet',
|
|
120
|
+
notSuitable: 'Nicht geeignet',
|
|
121
|
+
recommendationLabel: 'Flugstil-Empfehlung',
|
|
122
|
+
recommendation_low: 'Mit einem Verhältnis unter 2:1 wird Ihre Drohne Stabilitätsprobleme haben. Erwägen Sie eine Gewichtsreduzierung oder stärkere Motoren für eine bessere Leistung.',
|
|
123
|
+
recommendation_cinematic: 'Mit einem Verhältnis von {ratio}:1 ist dies ideal für Heavy-Lift-Cinematography mit sanften, kontrollierten Bewegungen. Perfekt für langsame, bewusste Kameraarbeit.',
|
|
124
|
+
recommendation_freestyle: 'Mit einem Verhältnis von {ratio}:1 ist dies der Sweet Spot für Freestyle-Flüge. Exzellente Agilität bei gleichbleibender Stabilität für Tricks und Manöver.',
|
|
125
|
+
recommendation_racing: 'Mit einem Verhältnis von {ratio}:1 befinden wir uns im Bereich von Performance-Freestyle. Die Gaskontrolle ist in engen Räumen und bei Hochgeschwindigkeitsmanövern entscheidend.',
|
|
126
|
+
recommendation_extreme: 'Mit einem Verhältnis von {ratio}:1 ist dies eine Rennmaschine. Extrem reaktiv – nur für erfahrene Piloten in offenen Gebieten.',
|
|
127
|
+
compareMode: 'Builds vergleichen',
|
|
128
|
+
scenario1: 'Build A',
|
|
129
|
+
scenario2: 'Build B',
|
|
130
|
+
addComparison: 'Vergleich hinzufügen',
|
|
131
|
+
tooltipTWRatio: 'Das Schub-Gewichts-Verhältnis ist der Gesamtschub geteilt durch das Gewicht der Drohne. Ein höheres Verhältnis bedeutet schnellere Beschleunigung und reaktivere Steuerung.',
|
|
132
|
+
tooltipFreestyle: 'Der "Sweet Spot" für Freestyle-Flüge liegt bei einem Verhältnis von 4:1 bis 6:1 und bietet die beste Balance zwischen Agilität und Kontrolle.',
|
|
133
|
+
badge_unstable: 'Instabil',
|
|
134
|
+
badge_cinematic: 'Cinematic',
|
|
135
|
+
badge_sweetSpot: 'Sweet Spot',
|
|
136
|
+
badge_racing: 'Racing',
|
|
137
|
+
badge_extreme: 'Extrem',
|
|
138
|
+
batteryName_tattu4s: 'Tattu 4S',
|
|
139
|
+
batteryName_tattu6s: 'Tattu 6S',
|
|
140
|
+
batteryName_gnb4s: 'GNB 4S',
|
|
141
|
+
batteryName_gnb6s: 'GNB 6S',
|
|
142
|
+
},
|
|
143
|
+
seo: [
|
|
144
|
+
{
|
|
145
|
+
type: 'title',
|
|
146
|
+
text: 'Das Schub-Gewichts-Verhältnis bei FPV-Drohnen verstehen',
|
|
147
|
+
level: 2,
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type: 'paragraph',
|
|
151
|
+
html: 'Das <strong>Schub-Gewichts-Verhältnis</strong> ist vielleicht die kritischste Kennzahl beim Bau von FPV-Drohnen. Dennoch übersehen viele Piloten dies, was zu Builds führt, die sich nicht wie erwartet verhalten. Dieser Rechner entmystifiziert die Berechnung und zeigt Ihnen genau, wie sich Ihr Build beim Fliegen anfühlen wird.',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'title',
|
|
155
|
+
text: 'Warum das Schub-Gewichts-Verhältnis wichtig ist',
|
|
156
|
+
level: 3,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
type: 'paragraph',
|
|
160
|
+
html: 'Das Verhältnis Ihrer Drohne bestimmt drei grundlegende Dinge: <strong>Stabilität</strong>, <strong>Reaktionsfähigkeit</strong> und <strong>Geschwindigkeit</strong>. Ein 2:1-Verhältnis fühlt sich träge und stabil an. Ein 6:1-Verhältnis fühlt sich nervös und agil an. Ein 10:1-Verhältnis ist eine Rennmaschine. Zu verstehen, wo Ihr Build in diesem Spektrum landet, hilft Ihnen, den richtigen Flugstil zu wählen und realistische Erwartungen zu setzen.',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
type: 'title',
|
|
164
|
+
text: 'Flugprofile erklärt',
|
|
165
|
+
level: 3,
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
type: 'list',
|
|
169
|
+
items: [
|
|
170
|
+
'<strong>Cinematic (2:1 – 4:1)</strong>: Schwer, stabil, langsam. Ideal für sanfte Kamerabewegungen und Builds, die Lasten tragen.',
|
|
171
|
+
'<strong>Freestyle (3,5:1 – 6,5:1)</strong>: Der ausgewogene Sweet Spot. Reaktionsschnell genug für Tricks, stabil genug für Kontrolle.',
|
|
172
|
+
'<strong>Racing (5:1 – 8:1)</strong>: Schnell und agil. Entwickelt für Renntore und aggressive Manöver.',
|
|
173
|
+
'<strong>Pro Racing (7:1+)</strong>: Extreme Leistung. Nur für Expertenpiloten in offenen Gebieten.',
|
|
174
|
+
],
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
type: 'title',
|
|
178
|
+
text: 'So berechnen Sie das Schub-Gewichts-Verhältnis',
|
|
179
|
+
level: 3,
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
type: 'paragraph',
|
|
183
|
+
html: 'Die Formel ist einfach: <strong>Verhältnis = (Schub pro Motor × Motoranzahl) / Abfluggewicht</strong>. Zum Beispiel erzeugt ein Quad mit 600g-Motoren (2.400g Gesamtschub) bei einem Gewicht von 800g ein Verhältnis von 3:1. Das ist Freestyle-Territorium.',
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
type: 'title',
|
|
187
|
+
text: 'Wahl des richtigen Verhältnisses für Ihren Build',
|
|
188
|
+
level: 3,
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
type: 'paragraph',
|
|
192
|
+
html: 'Fragen Sie sich: <em>Was werde ich fliegen?</em> Langsame Cinematic-Aufnahmen? Aggressive Freestyle-Tricks? Hochgeschwindigkeits-Rennen? Ihre Antwort bestimmt Ihr ideales Verhältnis. Die meisten FPV-Piloten landen zwischen 4:1 und 6:1, da dies den besten Kompromiss zwischen Kontrolle und Spannung bietet.',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
type: 'paragraph',
|
|
196
|
+
html: 'Denken Sie daran: Ein höheres Verhältnis bedeutet nicht "besser". Es bedeutet "reaktionsfreudiger". Auf einem Racing-Quad ist das essenziell. Bei einem Cinematic-Build ist es hinderlich. Wählen Sie bewusst.',
|
|
197
|
+
},
|
|
198
|
+
],
|
|
199
|
+
faq: faqItems,
|
|
200
|
+
bibliography,
|
|
201
|
+
howTo: howToSteps,
|
|
202
|
+
schemas,
|
|
203
|
+
};
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import type { DronePowerAnalyzerLocaleContent } from '../index';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
const slug = 'drone-power-analyzer';
|
|
6
|
+
const title = 'Drone Power Analyzer: Thrust to Weight Ratio Calculator for FPV';
|
|
7
|
+
const description = 'Calculate the critical thrust-to-weight ratio for your FPV drone build. Get instant flight profile recommendations, visual power gauge, and optimize for cinematic, freestyle, or racing.';
|
|
8
|
+
|
|
9
|
+
const faqItems = [
|
|
10
|
+
{
|
|
11
|
+
question: 'What is the thrust-to-weight ratio and why does it matter?',
|
|
12
|
+
answer: 'The thrust-to-weight ratio is the total thrust your drone can produce divided by its all-up weight (AUW). It\'s the single most important metric that determines how your drone will feel to fly — from slow and stable (cinematography) to ultra-responsive (racing).',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: 'What is the "sweet spot" ratio for freestyle flying?',
|
|
16
|
+
answer: 'For smooth freestyle flying, the sweet spot is between 4:1 and 6:1. A 4:1 ratio gives excellent agility with good stability, while 6:1 is extremely responsive but requires more throttle finesse in tight spaces.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: 'Can I use this for cinematography builds?',
|
|
20
|
+
answer: 'Yes. For smooth, slow cinematography shots, aim for a 2:1 to 3:1 ratio. This keeps the drone stable and predictable. Anything lower becomes difficult to control; anything higher will feel too twitchy for slow movements.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: 'What happens if my ratio is above 8:1?',
|
|
24
|
+
answer: 'Above 8:1, your drone is effectively a racing machine — extremely reactive and demanding to fly. Only experienced pilots should attempt these builds. Great for racing gates and speed runs, but dangerous indoors.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: 'Do I include the battery weight in AUW?',
|
|
28
|
+
answer: 'Yes. AUW (All-Up Weight) is the total weight of your drone with all components installed: frame, motors, ESCs, flight controller, camera, battery, props — everything. Use the battery preset buttons for instant weight addition.',
|
|
29
|
+
},
|
|
30
|
+
];
|
|
31
|
+
|
|
32
|
+
const howToSteps = [
|
|
33
|
+
{
|
|
34
|
+
name: 'Select Motor Configuration',
|
|
35
|
+
text: 'Choose whether your build is a Quad (4), Hexa (6), or Octo (8) motor configuration. This multiplier is crucial to total thrust.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'Input Motor Thrust',
|
|
39
|
+
text: 'Enter the maximum thrust each motor can produce (in grams). You can find this in motor specifications or use the quick presets.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Set Total Weight',
|
|
43
|
+
text: 'Input your drone\'s all-up weight (AUW) — frame, motors, battery, camera, everything. Use battery presets for instant weight adjustment.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Read Your Results',
|
|
47
|
+
text: 'The calculator instantly shows your thrust-to-weight ratio, flight profile suitability (Cinematic, Freestyle, Racing), and a personalized recommendation for your build.',
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
const schemas: DronePowerAnalyzerLocaleContent['schemas'] = [
|
|
52
|
+
{
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqItems.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
} as WithContext<FAQPage>,
|
|
61
|
+
{
|
|
62
|
+
'@context': 'https://schema.org',
|
|
63
|
+
'@type': 'HowTo',
|
|
64
|
+
name: title,
|
|
65
|
+
description: description,
|
|
66
|
+
step: howToSteps.map((step, i) => ({
|
|
67
|
+
'@type': 'HowToStep',
|
|
68
|
+
position: i + 1,
|
|
69
|
+
name: step.name,
|
|
70
|
+
text: step.text,
|
|
71
|
+
})),
|
|
72
|
+
} as WithContext<HowTo>,
|
|
73
|
+
{
|
|
74
|
+
'@context': 'https://schema.org',
|
|
75
|
+
'@type': 'SoftwareApplication',
|
|
76
|
+
name: title,
|
|
77
|
+
description: description,
|
|
78
|
+
applicationCategory: 'OtherApplication',
|
|
79
|
+
operatingSystem: 'Web',
|
|
80
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
81
|
+
} as WithContext<SoftwareApplication>,
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
export const content: DronePowerAnalyzerLocaleContent = {
|
|
85
|
+
slug,
|
|
86
|
+
title,
|
|
87
|
+
description,
|
|
88
|
+
ui: {
|
|
89
|
+
motorConfiguration: 'Motor Configuration',
|
|
90
|
+
motorCount: 'Motor Count',
|
|
91
|
+
thrustPerMotor: 'Thrust per Motor (max)',
|
|
92
|
+
thrustUnit: 'g',
|
|
93
|
+
quad: 'Quad (4)',
|
|
94
|
+
hexa: 'Hexa (6)',
|
|
95
|
+
octo: 'Octo (8)',
|
|
96
|
+
motorPresets: 'Quick Motor Presets',
|
|
97
|
+
presetMotor450: '2204 2300kv (4S) ~450g',
|
|
98
|
+
presetMotor600: '2306 2450kv (4S) ~600g',
|
|
99
|
+
presetMotor850: '2306 2450kv (6S) ~850g',
|
|
100
|
+
presetMotor1000: '2507 1850kv (6S) ~1000g',
|
|
101
|
+
weightConfiguration: 'Weight Configuration',
|
|
102
|
+
auwLabel: 'All-Up Weight (AUW)',
|
|
103
|
+
weightUnit: 'g',
|
|
104
|
+
switchToLbs: 'Switch to lbs',
|
|
105
|
+
switchToGrams: 'Switch to g',
|
|
106
|
+
batteryPresets: 'Add Battery Weight',
|
|
107
|
+
presetTattu4s: 'Tattu 4S 1550mAh (+182g)',
|
|
108
|
+
presetTattu6s: 'Tattu 6S 1100mAh (+231g)',
|
|
109
|
+
presetGnb4s: 'GNB 4S 850mAh (+118g)',
|
|
110
|
+
presetGnb6s: 'GNB 6S 1100mAh (+205g)',
|
|
111
|
+
totalThrust: 'Total Thrust',
|
|
112
|
+
twRatio: 'Thrust-to-Weight Ratio',
|
|
113
|
+
powerMeter: 'Power Meter',
|
|
114
|
+
flightProfiles: 'Flight Profile Assessment',
|
|
115
|
+
cinematicLabel: 'Cinematic',
|
|
116
|
+
freestyleLabel: 'Freestyle',
|
|
117
|
+
racingLabel: 'Racing',
|
|
118
|
+
proRacingLabel: 'Pro Racing',
|
|
119
|
+
suitable: 'Suitable',
|
|
120
|
+
notSuitable: 'Not Suitable',
|
|
121
|
+
recommendationLabel: 'Flying Style Recommendation',
|
|
122
|
+
recommendation_low: 'With a ratio under 2:1, your drone will struggle with stability. Consider reducing weight or upgrading motors for better performance.',
|
|
123
|
+
recommendation_cinematic: 'With a {ratio}:1 ratio, this is ideal for heavy-lift cinematography with smooth, controlled movements. Perfect for slow, deliberate camera work.',
|
|
124
|
+
recommendation_freestyle: 'With a {ratio}:1 ratio, this is the sweet spot for freestyle flying. Excellent agility with maintained stability for tricks and tricks.',
|
|
125
|
+
recommendation_racing: 'With a {ratio}:1 ratio, this is performance freestyle territory. Throttle management is critical in tight spaces and high-speed maneuvers.',
|
|
126
|
+
recommendation_extreme: 'With a {ratio}:1 ratio, this is a racing machine. Extremely reactive — only for experienced pilots in open areas.',
|
|
127
|
+
compareMode: 'Compare Builds',
|
|
128
|
+
scenario1: 'Build A',
|
|
129
|
+
scenario2: 'Build B',
|
|
130
|
+
addComparison: 'Add Comparison',
|
|
131
|
+
tooltipTWRatio: 'Thrust-to-Weight ratio is the total thrust divided by the drone\'s weight. A higher ratio means faster acceleration and more responsive control.',
|
|
132
|
+
tooltipFreestyle: 'The "sweet spot" for freestyle flying is 4:1 to 6:1 ratio, providing the best balance between agility and control.',
|
|
133
|
+
badge_unstable: 'Unstable',
|
|
134
|
+
badge_cinematic: 'Cinematic',
|
|
135
|
+
badge_sweetSpot: 'Sweet Spot',
|
|
136
|
+
badge_racing: 'Racing',
|
|
137
|
+
badge_extreme: 'Extreme',
|
|
138
|
+
batteryName_tattu4s: 'Tattu 4S',
|
|
139
|
+
batteryName_tattu6s: 'Tattu 6S',
|
|
140
|
+
batteryName_gnb4s: 'GNB 4S',
|
|
141
|
+
batteryName_gnb6s: 'GNB 6S',
|
|
142
|
+
},
|
|
143
|
+
seo: [
|
|
144
|
+
{
|
|
145
|
+
type: 'title',
|
|
146
|
+
text: 'Understanding Thrust-to-Weight Ratio for FPV Drones',
|
|
147
|
+
level: 2,
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type: 'paragraph',
|
|
151
|
+
html: 'The <strong>thrust-to-weight ratio</strong> is perhaps the single most critical metric in FPV drone building. Yet many pilots overlook it, leading to builds that don\'t behave as expected. This calculator demystifies the calculation and shows you exactly how your build will feel to fly.',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'title',
|
|
155
|
+
text: 'Why Thrust-to-Weight Matters',
|
|
156
|
+
level: 3,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
type: 'paragraph',
|
|
160
|
+
html: 'Your drone\'s ratio determines three fundamental things: <strong>stability</strong>, <strong>responsiveness</strong>, and <strong>speed</strong>. A 2:1 ratio feels sluggish and stable. A 6:1 ratio feels twitchy and agile. A 10:1 ratio is a racing machine. Understanding where your build lands on this spectrum helps you choose the right flying style and set realistic expectations.',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
type: 'title',
|
|
164
|
+
text: 'Flight Profiles Explained',
|
|
165
|
+
level: 3,
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
type: 'list',
|
|
169
|
+
items: [
|
|
170
|
+
'<strong>Cinematic (2:1 – 4:1)</strong>: Heavy, stable, slow. Ideal for smooth camera movements and payload-carrying builds.',
|
|
171
|
+
'<strong>Freestyle (3.5:1 – 6.5:1)</strong>: The balanced sweet spot. Responsive enough for tricks, stable enough for control.',
|
|
172
|
+
'<strong>Racing (5:1 – 8:1)</strong>: Fast and agile. Designed for speed gates and aggressive maneuvers.',
|
|
173
|
+
'<strong>Pro Racing (7:1+)</strong>: Extreme performance. Only for expert pilots in open areas.',
|
|
174
|
+
],
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
type: 'title',
|
|
178
|
+
text: 'How to Calculate Thrust-to-Weight Ratio',
|
|
179
|
+
level: 3,
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
type: 'paragraph',
|
|
183
|
+
html: 'The formula is simple: <strong>ratio = (Thrust per Motor × Motor Count) / All-Up Weight</strong>. For example, a Quad with 600g motors (2,400g total thrust) weighing 800g produces a 3:1 ratio. This is freestyle territory.',
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
type: 'title',
|
|
187
|
+
text: 'Choosing the Right Ratio for Your Build',
|
|
188
|
+
level: 3,
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
type: 'paragraph',
|
|
192
|
+
html: 'Ask yourself: <em>What will I fly?</em> Slow cinematic shots? Aggressive freestyle tricks? High-speed racing? Your answer determines your ideal ratio. Most FPV pilots end up between 4:1 and 6:1 because it offers the best compromise between control and excitement.',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
type: 'paragraph',
|
|
196
|
+
html: 'Remember: a higher ratio doesn\'t mean "better." It means "more responsive." On a racing quad, that\'s essential. On a cinematic build, it\'s a liability. Choose deliberately.',
|
|
197
|
+
},
|
|
198
|
+
],
|
|
199
|
+
faq: faqItems,
|
|
200
|
+
bibliography,
|
|
201
|
+
howTo: howToSteps,
|
|
202
|
+
schemas,
|
|
203
|
+
};
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import type { DronePowerAnalyzerLocaleContent } from '../index';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import { bibliography } from '../bibliography';
|
|
4
|
+
|
|
5
|
+
const slug = 'analizador-potencia-dron';
|
|
6
|
+
const title = 'Analizador de Potencia de Drone: Calculadora de Relación Empuje y Peso para FPV';
|
|
7
|
+
const description = 'Calcula la relación empuje-peso crítica para tu montaje de drone FPV. Obtén recomendaciones instantáneas de perfil de vuelo, medidor de potencia visual y optimiza para cine, freestyle o carreras.';
|
|
8
|
+
|
|
9
|
+
const faqItems = [
|
|
10
|
+
{
|
|
11
|
+
question: '¿Qué es la relación empuje-peso y por qué es importante?',
|
|
12
|
+
answer: 'La relación empuje-peso es el empuje total que puede producir tu drone dividido por su peso total al despegue (AUW). Es la métrica más importante que determina cómo se sentirá el drone al volar: desde lento y estable (cinematografía) hasta ultra-reactivo (carreras).',
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
question: '¿Cuál es el punto ideal ("sweet spot") para vuelo freestyle?',
|
|
16
|
+
answer: 'Para un vuelo freestyle fluido, el punto ideal está entre 4:1 y 6:1. Una relación de 4:1 ofrece una agilidad excelente con buena estabilidad, mientras que 6:1 es extremadamente reactivo pero requiere más delicadeza con el gas en espacios reducidos.',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
question: '¿Puedo usar esto para montajes de cinematografía?',
|
|
20
|
+
answer: 'Sí. Para tomas cinematográficas fluidas y lentas, busca una relación de 2:1 a 3:1. Esto mantiene el drone estable y predecible. Cualquier valor inferior se vuelve difícil de controlar; cualquier valor superior se sentirá demasiado nervioso para movimientos lentos.',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
question: '¿Qué pasa si mi relación es superior a 8:1?',
|
|
24
|
+
answer: 'Por encima de 8:1, tu drone es efectivamente una máquina de carreras: extremadamente reactivo y exigente de volar. Solo pilotos experimentados deberían intentar estos montajes. Es ideal para puertas de carrera y velocidad, pero peligroso en interiores.',
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
question: '¿Debo incluir el peso de la batería en el AUW?',
|
|
28
|
+
answer: 'Sí. El AUW (All-Up Weight) es el peso total del drone con todos los componentes instalados: chasis, motores, ESCs, controladora, cámara, batería, hélices... todo. Usa los botones de preajustes de batería para añadir el peso al instante.',
|
|
29
|
+
},
|
|
30
|
+
];
|
|
31
|
+
|
|
32
|
+
const howToSteps = [
|
|
33
|
+
{
|
|
34
|
+
name: 'Selecciona la Configuración de Motores',
|
|
35
|
+
text: 'Elige si tu montaje es Quad (4), Hexa (6) u Octo (8) motores. Este multiplicador es crucial para el empuje total.',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'Introduce el Empuje por Motor',
|
|
39
|
+
text: 'Ingresa el empuje máximo que cada motor puede producir (en gramos). Puedes encontrar esto en las especificaciones del motor o usar los preajustes rápidos.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: 'Establece el Peso Total',
|
|
43
|
+
text: 'Introduce el peso total al despegue (AUW) de tu drone: chasis, motores, batería, cámara, todo. Usa los preajustes de batería para un ajuste de peso instantáneo.',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'Lee tus Resultados',
|
|
47
|
+
text: 'La calculadora muestra al instante tu relación empuje-peso, la idoneidad del perfil de vuelo (Cine, Freestyle, Carreras) y una recomendación personalizada para tu montaje.',
|
|
48
|
+
},
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
const schemas: DronePowerAnalyzerLocaleContent['schemas'] = [
|
|
52
|
+
{
|
|
53
|
+
'@context': 'https://schema.org',
|
|
54
|
+
'@type': 'FAQPage',
|
|
55
|
+
mainEntity: faqItems.map((item) => ({
|
|
56
|
+
'@type': 'Question',
|
|
57
|
+
name: item.question,
|
|
58
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
59
|
+
})),
|
|
60
|
+
} as WithContext<FAQPage>,
|
|
61
|
+
{
|
|
62
|
+
'@context': 'https://schema.org',
|
|
63
|
+
'@type': 'HowTo',
|
|
64
|
+
name: title,
|
|
65
|
+
description: description,
|
|
66
|
+
step: howToSteps.map((step, i) => ({
|
|
67
|
+
'@type': 'HowToStep',
|
|
68
|
+
position: i + 1,
|
|
69
|
+
name: step.name,
|
|
70
|
+
text: step.text,
|
|
71
|
+
})),
|
|
72
|
+
} as WithContext<HowTo>,
|
|
73
|
+
{
|
|
74
|
+
'@context': 'https://schema.org',
|
|
75
|
+
'@type': 'SoftwareApplication',
|
|
76
|
+
name: title,
|
|
77
|
+
description: description,
|
|
78
|
+
applicationCategory: 'OtherApplication',
|
|
79
|
+
operatingSystem: 'Web',
|
|
80
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
81
|
+
} as WithContext<SoftwareApplication>,
|
|
82
|
+
];
|
|
83
|
+
|
|
84
|
+
export const content: DronePowerAnalyzerLocaleContent = {
|
|
85
|
+
slug,
|
|
86
|
+
title,
|
|
87
|
+
description,
|
|
88
|
+
ui: {
|
|
89
|
+
motorConfiguration: 'Configuración de Motores',
|
|
90
|
+
motorCount: 'Número de Motores',
|
|
91
|
+
thrustPerMotor: 'Empuje por Motor (máx)',
|
|
92
|
+
thrustUnit: 'g',
|
|
93
|
+
quad: 'Quad (4)',
|
|
94
|
+
hexa: 'Hexa (6)',
|
|
95
|
+
octo: 'Octo (8)',
|
|
96
|
+
motorPresets: 'Preajustes de Motor Rápidos',
|
|
97
|
+
presetMotor450: '2204 2300kv (4S) ~450g',
|
|
98
|
+
presetMotor600: '2306 2450kv (4S) ~600g',
|
|
99
|
+
presetMotor850: '2306 2450kv (6S) ~850g',
|
|
100
|
+
presetMotor1000: '2507 1850kv (6S) ~1000g',
|
|
101
|
+
weightConfiguration: 'Configuración de Peso',
|
|
102
|
+
auwLabel: 'Peso Total al Despegue (AUW)',
|
|
103
|
+
weightUnit: 'g',
|
|
104
|
+
switchToLbs: 'Cambiar a lbs',
|
|
105
|
+
switchToGrams: 'Cambiar a g',
|
|
106
|
+
batteryPresets: 'Añadir Peso de Batería',
|
|
107
|
+
presetTattu4s: 'Tattu 4S 1550mAh (+182g)',
|
|
108
|
+
presetTattu6s: 'Tattu 6S 1100mAh (+231g)',
|
|
109
|
+
presetGnb4s: 'GNB 4S 850mAh (+118g)',
|
|
110
|
+
presetGnb6s: 'GNB 6S 1100mAh (+205g)',
|
|
111
|
+
totalThrust: 'Empuje Total',
|
|
112
|
+
twRatio: 'Relación Empuje-Peso',
|
|
113
|
+
powerMeter: 'Medidor de Potencia',
|
|
114
|
+
flightProfiles: 'Evaluación del Perfil de Vuelo',
|
|
115
|
+
cinematicLabel: 'Cinemático',
|
|
116
|
+
freestyleLabel: 'Freestyle',
|
|
117
|
+
racingLabel: 'Carreras',
|
|
118
|
+
proRacingLabel: 'Carreras Pro',
|
|
119
|
+
suitable: 'Adecuado',
|
|
120
|
+
notSuitable: 'No Adecuado',
|
|
121
|
+
recommendationLabel: 'Recomendación de Estilo de Vuelo',
|
|
122
|
+
recommendation_low: 'Con una relación inferior a 2:1, tu drone tendrá problemas de estabilidad. Considera reducir el peso o mejorar los motores para un mejor rendimiento.',
|
|
123
|
+
recommendation_cinematic: 'Con una relación de {ratio}:1, es ideal para cinematografía de carga pesada con movimientos suaves y controlados. Perfecto para trabajos de cámara lentos y deliberados.',
|
|
124
|
+
recommendation_freestyle: 'Con una relación de {ratio}:1, este es el punto ideal para el vuelo freestyle. Excelente agilidad manteniendo la estabilidad para trucos y maniobras.',
|
|
125
|
+
recommendation_racing: 'Con una relación de {ratio}:1, estamos en territorio de freestyle de alto rendimiento. El control del gas es crítico en espacios cerrados y maniobras de alta velocidad.',
|
|
126
|
+
recommendation_extreme: 'Con una relación de {ratio}:1, esto es una máquina de carreras. Extremadamente reactivo, solo para pilotos experimentados en áreas abiertas.',
|
|
127
|
+
compareMode: 'Comparar Montajes',
|
|
128
|
+
scenario1: 'Montaje A',
|
|
129
|
+
scenario2: 'Montaje B',
|
|
130
|
+
addComparison: 'Añadir Comparación',
|
|
131
|
+
tooltipTWRatio: 'La relación empuje-peso es el empuje total dividido por el peso del drone. Una relación más alta significa una aceleración más rápida y un control más reactivo.',
|
|
132
|
+
tooltipFreestyle: 'El punto ideal para el vuelo freestyle es una relación de 4:1 a 6:1, proporcionando el mejor equilibrio entre agilidad y control.',
|
|
133
|
+
badge_unstable: 'Inestable',
|
|
134
|
+
badge_cinematic: 'Cinemático',
|
|
135
|
+
badge_sweetSpot: 'Punto Ideal',
|
|
136
|
+
badge_racing: 'Carreras',
|
|
137
|
+
badge_extreme: 'Extremo',
|
|
138
|
+
batteryName_tattu4s: 'Tattu 4S',
|
|
139
|
+
batteryName_tattu6s: 'Tattu 6S',
|
|
140
|
+
batteryName_gnb4s: 'GNB 4S',
|
|
141
|
+
batteryName_gnb6s: 'GNB 6S',
|
|
142
|
+
},
|
|
143
|
+
seo: [
|
|
144
|
+
{
|
|
145
|
+
type: 'title',
|
|
146
|
+
text: 'Entendiendo la Relación Empuje-Peso para Drones FPV',
|
|
147
|
+
level: 2,
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type: 'paragraph',
|
|
151
|
+
html: 'La <strong>relación empuje-peso</strong> es quizás la métrica más crítica en la construcción de drones FPV. Sin embargo, muchos pilotos la pasan por alto, lo que lleva a montajes que no se comportan como se esperaba. Esta calculadora desmitifica el cálculo y te muestra exactamente cómo se sentirá tu drone al volar.',
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'title',
|
|
155
|
+
text: 'Por qué es Importante la Relación Empuje-Peso',
|
|
156
|
+
level: 3,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
type: 'paragraph',
|
|
160
|
+
html: 'La relación de tu drone determina tres cosas fundamentales: <strong>estabilidad</strong>, <strong>capacidad de respuesta</strong> y <strong>velocidad</strong>. Una relación de 2:1 se siente lenta y estable. Una de 6:1 se siente ágil y nerviosa. Una de 10:1 es una máquina de carreras. Entender dónde se sitúa tu montaje en este espectro te ayuda a elegir el estilo de vuelo adecuado y establecer expectativas realistas.',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
type: 'title',
|
|
164
|
+
text: 'Perfiles de Vuelo Explicados',
|
|
165
|
+
level: 3,
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
type: 'list',
|
|
169
|
+
items: [
|
|
170
|
+
'<strong>Cinemático (2:1 – 4:1)</strong>: Pesado, estable, lento. Ideal para movimientos de cámara suaves y montajes que transportan carga.',
|
|
171
|
+
'<strong>Freestyle (3.5:1 – 6.5:1)</strong>: El punto de equilibrio ideal. Suficientemente reactivo para trucos, suficientemente estable para el control.',
|
|
172
|
+
'<strong>Carreras (5:1 – 8:1)</strong>: Rápido y ágil. Diseñado para puertas de velocidad y maniobras agresivas.',
|
|
173
|
+
'<strong>Carreras Pro (7:1+)</strong>: Rendimiento extremo. Solo para pilotos expertos en áreas abiertas.',
|
|
174
|
+
],
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
type: 'title',
|
|
178
|
+
text: 'Cómo Calcular la Relación Empuje-Peso',
|
|
179
|
+
level: 3,
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
type: 'paragraph',
|
|
183
|
+
html: 'La fórmula es sencilla: <strong>relación = (Empuje por Motor × Número de Motores) / Peso Total al Despegue</strong>. Por ejemplo, un Quad con motores de 600g (2.400g de empuje total) que pesa 800g produce una relación de 3:1. Esto es territorio de freestyle.',
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
type: 'title',
|
|
187
|
+
text: 'Eligiendo la Relación Adecuada para tu Montaje',
|
|
188
|
+
level: 3,
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
type: 'paragraph',
|
|
192
|
+
html: 'Pregúntate: <em>¿Qué voy a volar?</em> ¿Tomas cinemáticas lentas? ¿Trucos de freestyle agresivos? ¿Carreras de alta velocidad? Tu respuesta determina tu relación ideal. La mayoría de los pilotos de FPV terminan entre 4:1 y 6:1 porque ofrece el mejor compromiso entre control y emoción.',
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
type: 'paragraph',
|
|
196
|
+
html: 'Recuerda: una relación más alta no significa "mejor". Significa "más reactivo". En un quad de carreras, eso es esencial. En un montaje cinematográfico, es un inconveniente. Elige deliberadamente.',
|
|
197
|
+
},
|
|
198
|
+
],
|
|
199
|
+
faq: faqItems,
|
|
200
|
+
bibliography,
|
|
201
|
+
howTo: howToSteps,
|
|
202
|
+
schemas,
|
|
203
|
+
};
|