@jjlmoya/utils-drones 1.22.0 → 1.24.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 -0
- package/src/entries.ts +4 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/drone-battery-c-rating-calculator/bibliography.astro +3 -14
- package/src/tool/drone-battery-c-rating-calculator/bibliography.ts +3 -1
- package/src/tool/fpv-drone-thrust-to-weight-ratio/bibliography.astro +6 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/bibliography.ts +18 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/component.astro +203 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/controller.ts +240 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/dom-views.ts +148 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/entry.ts +27 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/evaluator.ts +30 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/fpv-drone-thrust-to-weight-ratio.css +404 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/de.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/en.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/es.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/fr.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/id.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/it.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/ja.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/ko.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/nl.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/pl.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/pt.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/ru.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/sv.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/tr.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/zh.ts +208 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/index.ts +10 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/logic.test.ts +93 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/logic.ts +147 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/seo.astro +16 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/storage.ts +19 -0
- package/src/tool/fpv-drone-thrust-to-weight-ratio/ui.ts +58 -0
- package/src/tools.ts +3 -0
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
import type { FpvDroneThrustToWeightRatioLocaleContent } from '../entry';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import type { SEOSection } from '../../../types';
|
|
4
|
+
import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'fpv-drohnen-schub-gewicht-verhaeltnis-rechner';
|
|
7
|
+
const title = 'FPV Drohnen Schub zu Gewicht Verhältnis und Flugtelemetrie Rechner';
|
|
8
|
+
const description = 'Berechnen Sie Maximalschub, nichtlineare Gaskurve, vertikale G-Kräfte, Schwebegas und 0 auf 100 Beschleunigung für FPV Drohnen und Multirotoren.';
|
|
9
|
+
|
|
10
|
+
const ui = {
|
|
11
|
+
title: 'FPV Drohnen Schub zu Gewicht Verhältnis Rechner',
|
|
12
|
+
subtitle: 'Analysieren Sie Schubkurven, Live Gashebel Reaktion, vertikale G Kräfte und Agilitätsklassen',
|
|
13
|
+
presetsHeader: 'Schnellkonfigurationen',
|
|
14
|
+
customPreset: 'Benutzerdefiniert',
|
|
15
|
+
whoop1sPreset: '1S TinyWhoop (65mm)',
|
|
16
|
+
freestyle35Preset: '4S Freestyle 3.5 Zoll',
|
|
17
|
+
freestyle5Preset: '6S Freestyle 5 Zoll Pro',
|
|
18
|
+
longrange7Preset: '6S Mountain LR 7 Zoll',
|
|
19
|
+
cinelifter8Preset: '8S Schwerer Cinelifter X8',
|
|
20
|
+
specsHeader: 'Drohnen und Antriebsdaten',
|
|
21
|
+
auwGramsLabel: 'Abfluggewicht mit Akku (g)',
|
|
22
|
+
motorCountLabel: 'Motorkonfiguration',
|
|
23
|
+
thrustPerMotorLabel: 'Maximaler Standschub pro Motor (g)',
|
|
24
|
+
propellerSizeLabel: 'Propellerdurchmesser (Zoll)',
|
|
25
|
+
propellerPitchLabel: 'Propellersteigung (Zoll)',
|
|
26
|
+
bladeCountLabel: 'Anzahl der Propellerblätter',
|
|
27
|
+
blade2Option: '2 Blätter (Zweiblatt - Maximale Effizienz)',
|
|
28
|
+
blade3Option: '3 Blätter (Dreiblatt - Freestyle Standard)',
|
|
29
|
+
blade4Option: '4 Blätter (Vierblatt - Maximaler Grip)',
|
|
30
|
+
throttleStickHeader: 'Live Gashebel Simulator',
|
|
31
|
+
throttleStickLabel: 'Gashebelposition (%)',
|
|
32
|
+
snapIdleLabel: 'Leerlauf (0%)',
|
|
33
|
+
snapHoverLabel: 'Schwebepunkt',
|
|
34
|
+
snapCruiseLabel: 'Reiseflug (50%)',
|
|
35
|
+
snapPunchLabel: 'Vollgas (100%)',
|
|
36
|
+
telemetryHeader: 'FPV Flugtelemetrie und Leistungsdiagnose',
|
|
37
|
+
twrRatioLabel: 'Schub zu Gewicht Verhältnis (TWR)',
|
|
38
|
+
hoverThrottleLabel: 'Schwebegas Punkt',
|
|
39
|
+
currentThrustLabel: 'Aktueller Schubleistungs Wert',
|
|
40
|
+
instantGForceLabel: 'Momentane vertikale G-Kraft',
|
|
41
|
+
zeroToHundredLabel: '0 auf 100 km/h Punch Zeit',
|
|
42
|
+
recommendedCamAngleLabel: 'Empfohlener FPV Kamerawinkel',
|
|
43
|
+
windResistanceLabel: 'Windwiderstandsfähigkeit',
|
|
44
|
+
totalMaxThrustLabel: 'Gesamter maximaler Standschub',
|
|
45
|
+
maxPitchAngleLabel: 'Maximaler Neigungswinkel',
|
|
46
|
+
tuningHeader: 'Betaflight PID und Firmware Empfehlungen',
|
|
47
|
+
tpaRecommendationLabel: 'Gas PID Dämpfung (TPA)',
|
|
48
|
+
dynamicIdleLabel: 'Empfohlenes Dynamic Idle',
|
|
49
|
+
propwashRiskLabel: 'Propwash Kontrollreserve',
|
|
50
|
+
tierUnderpoweredTitle: 'Untermotorisiert oder Winddrift Gefahr',
|
|
51
|
+
tierUnderpoweredDesc: 'TWR unter 2 zu 1 bietet zu wenig Steuerreserve für schnelle Abfangmanöver. Nur für ruhige Innenräume geeignet.',
|
|
52
|
+
tierCinematicTitle: 'Sanfter Cinematischer Flug',
|
|
53
|
+
tierCinematicDesc: 'TWR zwischen 2 zu 1 und 4 zu 1 sorgt für gleichmäßige Gasannahme und verwacklungsfreie Videoaufnahmen.',
|
|
54
|
+
tierFreestyleTitle: 'Sportlicher und Agiler Freestyle',
|
|
55
|
+
tierFreestyleDesc: 'TWR zwischen 4 zu 1 und 8 zu 1 liefert knackige Reaktionen, saubere Split-S Manöver und gute Akrobatik.',
|
|
56
|
+
tierAcroProTitle: 'Hochleistungs Acro und Bando Freestyle',
|
|
57
|
+
tierAcroProDesc: 'TWR zwischen 8 zu 1 und 13 zu 1 ermöglicht explosive vertikale Beschleunigung und sofortiges Abfangen von Turbulenzen.',
|
|
58
|
+
tierRacingExtremeTitle: 'Extremer Drohnenrennsport',
|
|
59
|
+
tierRacingExtremeDesc: 'TWR über 13 zu 1 liefert brachiale Kraft für professionelle FPV Rennkurse und engste Kurvenausgänge.',
|
|
60
|
+
hudThrustCurveTitle: 'Nichtlineare Schubverlaufskurve',
|
|
61
|
+
hudHoverMarker: 'Schwebepunkt',
|
|
62
|
+
hudCurrentStickMarker: 'Aktueller Hebel',
|
|
63
|
+
hudGForceLabel: 'G-Kräfte',
|
|
64
|
+
hudTiltAngleLabel: 'Kamerawinkel',
|
|
65
|
+
hudVectorPowerLabel: 'Live Antriebstelemetrie',
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const faqItems = [
|
|
69
|
+
{
|
|
70
|
+
question: 'Welches Schub zu Gewicht Verhältnis ist optimal für Freestyle FPV Drohnen?',
|
|
71
|
+
answer: 'Für Freestyle Quads ist ein TWR von 8 zu 1 bis 12 zu 1 ideal, um sturzflugartige Abfangmanöver und schnelle Richtungswechsel präzise zu steuern.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
question: 'Wie beeinflusst die nichtlineare Gaskurve das Schweben?',
|
|
75
|
+
answer: 'Bürstenlose Motoren erzeugen Schub proportional zum Quadrat der Drehzahl. Daher liegt der Schwebepunkt bei leistungsstarken Drohnen meist bei 20 bis 35 Prozent Hebelweg.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
question: 'Warum hängt der FPV Kamerawinkel vom Schubverhältnis ab?',
|
|
79
|
+
answer: 'Drohnen mit hohem Schubverhältnis fliegen mit größerem Vorwärtsneigungswinkel. Um den Horizont in der Brille zentriert zu halten, neigen Piloten die Kamera um 35 bis 50 Grad nach oben.',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
question: 'Wie verändert die Anzahl der Propellerblätter das Flugverhalten?',
|
|
83
|
+
answer: 'Zweiblattpropeller bieten maximale Flugzeit und Endgeschwindigkeit. Dreiblattpropeller bieten die beste Balance für Freestyle, während Vierblattpropeller extremen Halt in Kurven liefern.',
|
|
84
|
+
},
|
|
85
|
+
];
|
|
86
|
+
|
|
87
|
+
const howToSteps = [
|
|
88
|
+
{
|
|
89
|
+
name: 'Drohnengewicht eingeben oder Voreinstellung wählen',
|
|
90
|
+
text: 'Tragen Sie das gesamte Abfluggewicht inklusive LiPo Akku und HD Kamera in Gramm ein.',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: 'Antriebsdaten und Propeller konfigurieren',
|
|
94
|
+
text: 'Wählen Sie die Motoranzahl, Blattanzahl und den Prüfstandsschub des Herstellers bei 100 Prozent Gas aus.',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
name: 'Live Gashebel anpassen und Telemetrie prüfen',
|
|
98
|
+
text: 'Verschieben Sie den Live Gashebel, um Schubkraft, G-Kräfte und die Lage auf der Schubkurve zu analysieren.',
|
|
99
|
+
},
|
|
100
|
+
];
|
|
101
|
+
|
|
102
|
+
const seoSections: SEOSection[] = [
|
|
103
|
+
{
|
|
104
|
+
type: 'title',
|
|
105
|
+
text: 'Aerodynamik des Schub zu Gewicht Verhältnisses bei FPV Drohnen',
|
|
106
|
+
level: 2,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'paragraph',
|
|
110
|
+
html: 'Das Schub zu Gewicht Verhältnis (TWR) ist die entscheidende aerodynamische Kennzahl für Beschleunigung und Steuerautorität von Multirotoren. Im FPV Freestyle und Renneinsatz ermöglicht ausreichender Leistungspuffer das blitzschnelle Abfangen nach freiem Fall und präzise Manöver an Hindernissen.',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'title',
|
|
114
|
+
text: 'Klassifizierung von FPV Drohnen und Leistungsdaten',
|
|
115
|
+
level: 2,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'table',
|
|
119
|
+
headers: ['Plattform', 'Typisches Abfluggewicht', 'Ziel TWR', 'Schwebegas Anteil', '0 auf 100 Beschleunigung', 'Kameraneigung'],
|
|
120
|
+
rows: [
|
|
121
|
+
['1S TinyWhoop (65mm)', '32g', '4.5 zu 1', '35 Prozent', '1.20 s', '15 Grad bis 25 Grad'],
|
|
122
|
+
['4S Freestyle 3.5"', '250g', '12.0 zu 1', '24 Prozent', '0.28 s', '35 Grad bis 45 Grad'],
|
|
123
|
+
['6S Freestyle 5" Pro', '680g', '11.5 zu 1', '25 Prozent', '0.30 s', '35 Grad bis 50 Grad'],
|
|
124
|
+
['6S Mountain LR 7"', '1150g', '8.3 zu 1', '30 Prozent', '0.45 s', '20 Grad bis 30 Grad'],
|
|
125
|
+
['8S Cinelifter X8', '4200g', '6.1 zu 1', '38 Prozent', '0.70 s', '15 Grad bis 25 Grad'],
|
|
126
|
+
],
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'title',
|
|
130
|
+
text: 'Nichtlineare Schubkennlinie und Motordynamik',
|
|
131
|
+
level: 2,
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'paragraph',
|
|
135
|
+
html: 'Elektromotoren und Propeller entfalten ihren Schub nicht linear zum PWM Signal. Die Strömungsdynamik erzeugt einen exponentiellen Verlauf, bei dem die oberen 20 Prozent des Gaswegs über 40 Prozent des Gesamtschubs erzeugen.',
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
type: 'list',
|
|
139
|
+
items: [
|
|
140
|
+
'Schwebegas Bereich (20 bis 35 Prozent): Hohe Auflösung für feinfühlige Positionskorrekturen.',
|
|
141
|
+
'Reiseflug Bereich (35 bis 65 Prozent): Ausgewogene Balance aus Vorwärtsfahrt und Akkueffizienz.',
|
|
142
|
+
'Vollgas Bereich (70 bis 100 Prozent): Maximaler Kraftzuwachs mit hohen vertikalen G-Kräften.',
|
|
143
|
+
],
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
type: 'title',
|
|
147
|
+
text: 'Propellerwahl und Betaflight Tuning Empfehlungen',
|
|
148
|
+
level: 2,
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'paragraph',
|
|
152
|
+
html: 'Für Drohnen mit einem TWR von über 10 zu 1 wird die Aktivierung der Throttle PID Attenuation (TPA) in Betaflight empfohlen, um Oszillationen bei Vollgaspassagen zuverlässig zu unterbinden.',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
type: 'tip',
|
|
156
|
+
title: 'Tuninghinweis für Betaflight TPA',
|
|
157
|
+
html: 'Setzen Sie den TPA Schwellenwert auf 1250 oder 1350 mit einem Faktor von 0.65, um Vibrationen im oberen Gasbereich zu eliminieren.',
|
|
158
|
+
},
|
|
159
|
+
];
|
|
160
|
+
|
|
161
|
+
const schemas: FpvDroneThrustToWeightRatioLocaleContent['schemas'] = [
|
|
162
|
+
{
|
|
163
|
+
'@context': 'https://schema.org',
|
|
164
|
+
'@type': 'FAQPage',
|
|
165
|
+
mainEntity: faqItems.map((item) => ({
|
|
166
|
+
'@type': 'Question',
|
|
167
|
+
name: item.question,
|
|
168
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
169
|
+
})),
|
|
170
|
+
} as WithContext<FAQPage>,
|
|
171
|
+
{
|
|
172
|
+
'@context': 'https://schema.org',
|
|
173
|
+
'@type': 'HowTo',
|
|
174
|
+
name: title,
|
|
175
|
+
description,
|
|
176
|
+
step: howToSteps.map((s, index) => ({
|
|
177
|
+
'@type': 'HowToStep',
|
|
178
|
+
position: index + 1,
|
|
179
|
+
name: s.name,
|
|
180
|
+
text: s.text,
|
|
181
|
+
})),
|
|
182
|
+
} as WithContext<HowTo>,
|
|
183
|
+
{
|
|
184
|
+
'@context': 'https://schema.org',
|
|
185
|
+
'@type': 'SoftwareApplication',
|
|
186
|
+
name: title,
|
|
187
|
+
description,
|
|
188
|
+
applicationCategory: 'UtilityApplication',
|
|
189
|
+
operatingSystem: 'All',
|
|
190
|
+
offers: {
|
|
191
|
+
'@type': 'Offer',
|
|
192
|
+
price: '0',
|
|
193
|
+
priceCurrency: 'EUR',
|
|
194
|
+
},
|
|
195
|
+
} as WithContext<SoftwareApplication>,
|
|
196
|
+
];
|
|
197
|
+
|
|
198
|
+
export const content: FpvDroneThrustToWeightRatioLocaleContent = {
|
|
199
|
+
slug,
|
|
200
|
+
title,
|
|
201
|
+
description,
|
|
202
|
+
ui,
|
|
203
|
+
seo: seoSections,
|
|
204
|
+
faq: faqItems,
|
|
205
|
+
howTo: howToSteps,
|
|
206
|
+
bibliography: BIBLIOGRAPHY_ITEMS,
|
|
207
|
+
schemas,
|
|
208
|
+
};
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
import type { FpvDroneThrustToWeightRatioLocaleContent } from '../entry';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import type { SEOSection } from '../../../types';
|
|
4
|
+
import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'fpv-drone-thrust-to-weight-ratio';
|
|
7
|
+
const title = 'FPV Drone Thrust to Weight Ratio and Flight Telemetry Simulator';
|
|
8
|
+
const description = 'Simulate static thrust, non-linear throttle response curve, instant vertical G-force, hover throttle point, and 0-100 acceleration for FPV quadcopters and multirotors.';
|
|
9
|
+
|
|
10
|
+
const ui = {
|
|
11
|
+
title: 'FPV Drone Thrust to Weight Ratio and Flight Telemetry Simulator',
|
|
12
|
+
subtitle: 'Analyze multirotor thrust curves, live throttle stick response, instant G force, and flight agility classification',
|
|
13
|
+
presetsHeader: 'Quick Setup Presets',
|
|
14
|
+
customPreset: 'Custom Setup',
|
|
15
|
+
whoop1sPreset: '1S TinyWhoop (65mm)',
|
|
16
|
+
freestyle35Preset: '4S 3.5-Inch Freestyle',
|
|
17
|
+
freestyle5Preset: '6S 5-Inch Freestyle Pro',
|
|
18
|
+
longrange7Preset: '6S 7-Inch Mountain LR',
|
|
19
|
+
cinelifter8Preset: '8S Heavy Cinelifter X8',
|
|
20
|
+
specsHeader: 'Drone and Powertrain Specifications',
|
|
21
|
+
auwGramsLabel: 'All-Up Weight with Battery (g)',
|
|
22
|
+
motorCountLabel: 'Motor Configuration',
|
|
23
|
+
thrustPerMotorLabel: 'Max Static Thrust per Motor (g)',
|
|
24
|
+
propellerSizeLabel: 'Propeller Diameter (inches)',
|
|
25
|
+
propellerPitchLabel: 'Propeller Pitch (inches)',
|
|
26
|
+
bladeCountLabel: 'Propeller Blade Count',
|
|
27
|
+
blade2Option: '2 Blades (Bipala - Max Efficiency)',
|
|
28
|
+
blade3Option: '3 Blades (Tripala - Freestyle Standard)',
|
|
29
|
+
blade4Option: '4 Blades (Cuatripala - High Grip)',
|
|
30
|
+
throttleStickHeader: 'Live Throttle Stick Simulator',
|
|
31
|
+
throttleStickLabel: 'Throttle Stick Position (%)',
|
|
32
|
+
snapIdleLabel: 'Idle (0%)',
|
|
33
|
+
snapHoverLabel: 'Hover Point',
|
|
34
|
+
snapCruiseLabel: 'Cruise (50%)',
|
|
35
|
+
snapPunchLabel: 'Punch (100%)',
|
|
36
|
+
telemetryHeader: 'FPV Flight Telemetry and Performance Diagnosis',
|
|
37
|
+
twrRatioLabel: 'Thrust to Weight Ratio',
|
|
38
|
+
hoverThrottleLabel: 'Hover Throttle Point',
|
|
39
|
+
currentThrustLabel: 'Current Stick Output Thrust',
|
|
40
|
+
instantGForceLabel: 'Instant Vertical G-Force',
|
|
41
|
+
zeroToHundredLabel: '0-100 km/h Punch-Out Time',
|
|
42
|
+
recommendedCamAngleLabel: 'Recommended FPV Camera Tilt',
|
|
43
|
+
windResistanceLabel: 'Wind Penetration Speed',
|
|
44
|
+
totalMaxThrustLabel: 'Total Maximum Static Thrust',
|
|
45
|
+
maxPitchAngleLabel: 'Max Sustainable Tilt Angle',
|
|
46
|
+
tuningHeader: 'Betaflight PID and Firmware Recommendations',
|
|
47
|
+
tpaRecommendationLabel: 'Throttle PID Attenuation (TPA)',
|
|
48
|
+
dynamicIdleLabel: 'Recommended Dynamic Idle',
|
|
49
|
+
propwashRiskLabel: 'Propwash Control Authority',
|
|
50
|
+
tierUnderpoweredTitle: 'Underpowered or High Wind Drift Risk',
|
|
51
|
+
tierUnderpoweredDesc: 'TWR below 2 to 1 provides insufficient authority for wind correction or rapid descent arrest. Suitable only for calm indoor flying.',
|
|
52
|
+
tierCinematicTitle: 'Cinematic Smooth Cruise',
|
|
53
|
+
tierCinematicDesc: 'TWR between 2 to 1 and 4 to 1 gives smooth throttle control and stable filming with minimal propwash sensitivity.',
|
|
54
|
+
tierFreestyleTitle: 'Sport and Agile Freestyle',
|
|
55
|
+
tierFreestyleDesc: 'TWR between 4 to 1 and 8 to 1 delivers crisp throttle response, clean split-S recovery, and strong acro maneuverability.',
|
|
56
|
+
tierAcroProTitle: 'High-Performance Acro and Bando Freestyle',
|
|
57
|
+
tierAcroProDesc: 'TWR between 8 to 1 and 13 to 1 delivers explosive vertical acceleration, instant propwash cancellation, and aggressive proximity agility.',
|
|
58
|
+
tierRacingExtremeTitle: 'Extreme Spec Drone Racing',
|
|
59
|
+
tierRacingExtremeDesc: 'TWR above 13 to 1 yields insane power and instantaneous corner exit speeds required for top-tier competitive multirotor racing.',
|
|
60
|
+
hudThrustCurveTitle: 'Non-Linear Thrust Response Curve',
|
|
61
|
+
hudHoverMarker: 'Hover Point',
|
|
62
|
+
hudCurrentStickMarker: 'Current Stick',
|
|
63
|
+
hudGForceLabel: 'Vertical Gs',
|
|
64
|
+
hudTiltAngleLabel: 'Camera Angle',
|
|
65
|
+
hudVectorPowerLabel: 'Live Powertrain Telemetry',
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const faqItems = [
|
|
69
|
+
{
|
|
70
|
+
question: 'What is a good thrust to weight ratio for an FPV freestyle quadcopter?',
|
|
71
|
+
answer: 'For freestyle quadcopters, a TWR between 8 to 1 and 12 to 1 delivers the necessary explosive acceleration to arrest free-fall dives and power through high-G split-S turns.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
question: 'How does the non-linear throttle curve affect drone hovering?',
|
|
75
|
+
answer: 'Brushless motors produce aerodynamic thrust proportional to the square of rotational speed. Because of this non-linear response, hover throttle typically sits around 20 to 35 percent stick position on high-power builds.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
question: 'Why does FPV camera angle depend on drone thrust to weight ratio?',
|
|
79
|
+
answer: 'Higher TWR aircraft travel at higher cruising speeds with steeper forward tilt angles. To keep the horizon centered in the FPV goggles during fast forward flight, pilots tilt the camera upwards between 35 and 50 degrees.',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
question: 'How does propeller blade count change multirotor flight feel?',
|
|
83
|
+
answer: 'Bipala propellers offer maximum flight endurance and high top speed. Tripala propellers provide the best balance of grip and cornering authority for freestyle. Cuatripala propellers deliver extreme low-end bite and braking power.',
|
|
84
|
+
},
|
|
85
|
+
];
|
|
86
|
+
|
|
87
|
+
const howToSteps = [
|
|
88
|
+
{
|
|
89
|
+
name: 'Select Preset or Input Drone All-Up Weight',
|
|
90
|
+
text: 'Enter the total weight of your drone including battery, HD camera, and accessories in grams.',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: 'Configure Powertrain and Propellers',
|
|
94
|
+
text: 'Select the motor count, blade count, and manufacturer bench static thrust per motor.',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
name: 'Adjust the Live Throttle Stick',
|
|
98
|
+
text: 'Drag the live throttle slider or click the quick snap buttons to observe thrust vector scaling, instantaneous G-force, and power output along the non-linear curve.',
|
|
99
|
+
},
|
|
100
|
+
];
|
|
101
|
+
|
|
102
|
+
const seoSections: SEOSection[] = [
|
|
103
|
+
{
|
|
104
|
+
type: 'title',
|
|
105
|
+
text: 'Aerodynamics of Thrust to Weight Ratio in FPV Drone Flight Dynamics',
|
|
106
|
+
level: 2,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'paragraph',
|
|
110
|
+
html: 'Thrust-to-weight ratio (TWR) defines the fundamental acceleration and control authority of multirotor aircraft. In FPV freestyle and drone racing, having adequate thrust headroom allows pilots to instantly recover from steep power loops, execute wall-rides, and punch out of terminal velocity dives. Understanding your power-to-weight profile is critical for motor selection, ESC sizing, and PID tuning.',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'title',
|
|
114
|
+
text: 'FPV Drone Classification and Performance Benchmark Metrics',
|
|
115
|
+
level: 2,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'table',
|
|
119
|
+
headers: ['Drone Platform', 'Typical AUW', 'Target TWR', 'Hover Stick %', '0-100 km/h Acceleration', 'FPV Cam Tilt'],
|
|
120
|
+
rows: [
|
|
121
|
+
['1S TinyWhoop (65mm)', '32g', '4.5 to 1', '35 percent', '1.20 s', '15 deg to 25 deg'],
|
|
122
|
+
['4S 3.5-Inch Freestyle', '250g', '12.0 to 1', '24 percent', '0.28 s', '35 deg to 45 deg'],
|
|
123
|
+
['6S 5-Inch Bando Pro', '680g', '11.5 to 1', '25 percent', '0.30 s', '35 deg to 50 deg'],
|
|
124
|
+
['6S 7-Inch Mountain LR', '1150g', '8.3 to 1', '30 percent', '0.45 s', '20 deg to 30 deg'],
|
|
125
|
+
['8S Heavy Cinelifter X8', '4200g', '6.1 to 1', '38 percent', '0.70 s', '15 deg to 25 deg'],
|
|
126
|
+
],
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'title',
|
|
130
|
+
text: 'Understanding Non-Linear Throttle Response and Motor Thrust Curves',
|
|
131
|
+
level: 2,
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'paragraph',
|
|
135
|
+
html: 'Electric brushless motors and propellers do not generate thrust linearly with PWM control signals. Dynamic airflow velocity and centrifugal blade loading yield an exponential power curve where the top 20 percent of throttle travel produces over 40 percent of total available thrust. Managing this non-linear response with Betaflight throttle expo (EXPO) and throttle mid-point (MID) calibration provides intuitive stick resolution during close-proximity flight.',
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
type: 'list',
|
|
139
|
+
items: [
|
|
140
|
+
'Hover region (20-35% throttle): Fine resolution zone for steady position control and indoor maneuvering.',
|
|
141
|
+
'Cruising zone (35-65% throttle): Balanced aerodynamic forward flight with sustainable battery current draw.',
|
|
142
|
+
'Punch-out zone (70-100% throttle): High discharge burst yielding massive vertical G-forces and top speeds exceeding 150 km/h.',
|
|
143
|
+
],
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
type: 'title',
|
|
147
|
+
text: 'Propeller Blade Selection and Motor Stator Matching',
|
|
148
|
+
level: 2,
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'paragraph',
|
|
152
|
+
html: 'Propeller diameter, pitch, and blade count determine how motor torque translates into static thrust and top-end speed. Increasing blade count from bipala to tripala improves low-end grip and propwash recovery at the expense of slight aerodynamic drag. Choosing matching motor stator dimensions and KV ratings ensures efficient operation without excessive motor heat.',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
type: 'tip',
|
|
156
|
+
title: 'Betaflight TPA and Feedforward Tuning Tip',
|
|
157
|
+
html: 'For drones with TWR exceeding 10 to 1, configure Throttle PID Attenuation (TPA) starting at 1250 throttle with a 0.65 breakpoint. This prevents high-throttle D-term motor oscillations during aggressive full-throttle straightaways.',
|
|
158
|
+
},
|
|
159
|
+
];
|
|
160
|
+
|
|
161
|
+
const schemas: FpvDroneThrustToWeightRatioLocaleContent['schemas'] = [
|
|
162
|
+
{
|
|
163
|
+
'@context': 'https://schema.org',
|
|
164
|
+
'@type': 'FAQPage',
|
|
165
|
+
mainEntity: faqItems.map((item) => ({
|
|
166
|
+
'@type': 'Question',
|
|
167
|
+
name: item.question,
|
|
168
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
169
|
+
})),
|
|
170
|
+
} as WithContext<FAQPage>,
|
|
171
|
+
{
|
|
172
|
+
'@context': 'https://schema.org',
|
|
173
|
+
'@type': 'HowTo',
|
|
174
|
+
name: title,
|
|
175
|
+
description,
|
|
176
|
+
step: howToSteps.map((s, index) => ({
|
|
177
|
+
'@type': 'HowToStep',
|
|
178
|
+
position: index + 1,
|
|
179
|
+
name: s.name,
|
|
180
|
+
text: s.text,
|
|
181
|
+
})),
|
|
182
|
+
} as WithContext<HowTo>,
|
|
183
|
+
{
|
|
184
|
+
'@context': 'https://schema.org',
|
|
185
|
+
'@type': 'SoftwareApplication',
|
|
186
|
+
name: title,
|
|
187
|
+
description,
|
|
188
|
+
applicationCategory: 'UtilityApplication',
|
|
189
|
+
operatingSystem: 'All',
|
|
190
|
+
offers: {
|
|
191
|
+
'@type': 'Offer',
|
|
192
|
+
price: '0',
|
|
193
|
+
priceCurrency: 'USD',
|
|
194
|
+
},
|
|
195
|
+
} as WithContext<SoftwareApplication>,
|
|
196
|
+
];
|
|
197
|
+
|
|
198
|
+
export const content: FpvDroneThrustToWeightRatioLocaleContent = {
|
|
199
|
+
slug,
|
|
200
|
+
title,
|
|
201
|
+
description,
|
|
202
|
+
ui,
|
|
203
|
+
seo: seoSections,
|
|
204
|
+
faq: faqItems,
|
|
205
|
+
howTo: howToSteps,
|
|
206
|
+
bibliography: BIBLIOGRAPHY_ITEMS,
|
|
207
|
+
schemas,
|
|
208
|
+
};
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
import type { FpvDroneThrustToWeightRatioLocaleContent } from '../entry';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import type { SEOSection } from '../../../types';
|
|
4
|
+
import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'calculadora-relacion-empuje-peso-drone-fpv';
|
|
7
|
+
const title = 'Calculadora de Relacion Empuje a Peso y Telemetria de Vuelo para Drones FPV';
|
|
8
|
+
const description = 'Calcula el empuje estatico maximo, la curva de acelerador no lineal, la fuerza G vertical instantanea, el punto de sustentacion y el tiempo 0 a 100 para drones FPV y multirotores.';
|
|
9
|
+
|
|
10
|
+
const ui = {
|
|
11
|
+
title: 'Calculadora de Relacion Empuje a Peso para Drones FPV',
|
|
12
|
+
subtitle: 'Analiza curvas de empuje, respuesta del stick de gas en vivo, fuerza G instantanea y clasificacion de agilidad',
|
|
13
|
+
presetsHeader: 'Ajustes Rapidos',
|
|
14
|
+
customPreset: 'Personalizado',
|
|
15
|
+
whoop1sPreset: '1S TinyWhoop (65mm)',
|
|
16
|
+
freestyle35Preset: '4S Freestyle 3.5 Pulgadas',
|
|
17
|
+
freestyle5Preset: '6S Freestyle 5 Pulgadas Pro',
|
|
18
|
+
longrange7Preset: '6S Mountain LR 7 Pulgadas',
|
|
19
|
+
cinelifter8Preset: '8S Cinelifter Pesado X8',
|
|
20
|
+
specsHeader: 'Especificaciones del Dron y Propulsion',
|
|
21
|
+
auwGramsLabel: 'Peso Total con Bateria (g)',
|
|
22
|
+
motorCountLabel: 'Configuracion de Motores',
|
|
23
|
+
thrustPerMotorLabel: 'Empuje Estatico Maximo por Motor (g)',
|
|
24
|
+
propellerSizeLabel: 'Diametro de Helice (pulgadas)',
|
|
25
|
+
propellerPitchLabel: 'Paso de Helice (pulgadas)',
|
|
26
|
+
bladeCountLabel: 'Numero de Palas de la Helice',
|
|
27
|
+
blade2Option: '2 Palas (Bipala - Maxima Eficiencia)',
|
|
28
|
+
blade3Option: '3 Palas (Tripala - Estandar Freestyle)',
|
|
29
|
+
blade4Option: '4 Palas (Cuatripala - Maximo Agarre)',
|
|
30
|
+
throttleStickHeader: 'Simulador de Stick de Acelerador en Vivo',
|
|
31
|
+
throttleStickLabel: 'Posicion del Stick de Gas (%)',
|
|
32
|
+
snapIdleLabel: 'Ralenti (0%)',
|
|
33
|
+
snapHoverLabel: 'Sustentacion',
|
|
34
|
+
snapCruiseLabel: 'Crucero (50%)',
|
|
35
|
+
snapPunchLabel: 'Punch Maximo (100%)',
|
|
36
|
+
telemetryHeader: 'Telemetria de Vuelo FPV y Diagnostico de Rendimiento',
|
|
37
|
+
twrRatioLabel: 'Relacion Empuje a Peso (TWR)',
|
|
38
|
+
hoverThrottleLabel: 'Punto de Sustentacion (Hover)',
|
|
39
|
+
currentThrustLabel: 'Empuje Actual de Salida',
|
|
40
|
+
instantGForceLabel: 'Fuerza G Vertical Instantanea',
|
|
41
|
+
zeroToHundredLabel: 'Tiempo 0 a 100 km/h en Punch',
|
|
42
|
+
recommendedCamAngleLabel: 'Inclinacion de Camara FPV Recomendada',
|
|
43
|
+
windResistanceLabel: 'Velocidad de Penetracion al Viento',
|
|
44
|
+
totalMaxThrustLabel: 'Empuje Estatico Maximo Total',
|
|
45
|
+
maxPitchAngleLabel: 'Angulo Maximo de Inclinacion Sostenible',
|
|
46
|
+
tuningHeader: 'Recomendaciones de Ajuste Betaflight y PID',
|
|
47
|
+
tpaRecommendationLabel: 'Atenuacion PID de Gas (TPA)',
|
|
48
|
+
dynamicIdleLabel: 'Ralenti Dinamico Recomendado',
|
|
49
|
+
propwashRiskLabel: 'Autoridad de Control de Propwash',
|
|
50
|
+
tierUnderpoweredTitle: 'Inframotorizado o Alto Riesgo de Deriva por Viento',
|
|
51
|
+
tierUnderpoweredDesc: 'TWR inferior a 2 a 1 proporciona autoridad insuficiente para corregir ráfagas de viento o frenar descensos rápidos. Recomendado solo para interiores.',
|
|
52
|
+
tierCinematicTitle: 'Vuelo Suave y Continuo Cinematico',
|
|
53
|
+
tierCinematicDesc: 'TWR entre 2 a 1 y 4 a 1 ofrece un control suave del acelerador y filmación estable con mínima sensibilidad a turbulencias.',
|
|
54
|
+
tierFreestyleTitle: 'Freestyle Agil y Deportivo',
|
|
55
|
+
tierFreestyleDesc: 'TWR entre 4 a 1 y 8 a 1 brinda respuesta rápida de aceleración, recuperaciones limpias en split-S y gran maniobrabilidad acrobática.',
|
|
56
|
+
tierAcroProTitle: 'Acrobacia de Alto Rendimiento y Bando Freestyle',
|
|
57
|
+
tierAcroProDesc: 'TWR entre 8 a 1 y 13 a 1 proporciona aceleraciones verticales explosivas, anulación instantánea de propwash y agilidad extrema.',
|
|
58
|
+
tierRacingExtremeTitle: 'Carreras Extremas de Drones de Competicion',
|
|
59
|
+
tierRacingExtremeDesc: 'TWR superior a 13 a 1 entrega potencia descomunal y salidas de curva instantáneas requeridas en circuitos de carreras profesionales.',
|
|
60
|
+
hudThrustCurveTitle: 'Curva de Respuesta de Empuje No Lineal',
|
|
61
|
+
hudHoverMarker: 'Punto de Sustentacion',
|
|
62
|
+
hudCurrentStickMarker: 'Stick Actual',
|
|
63
|
+
hudGForceLabel: 'Fuerzas G',
|
|
64
|
+
hudTiltAngleLabel: 'Angulo de Camara',
|
|
65
|
+
hudVectorPowerLabel: 'Telemetria de Potencia en Vivo',
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const faqItems = [
|
|
69
|
+
{
|
|
70
|
+
question: '¿Cual es una buena relacion empuje a peso para un dron FPV de freestyle?',
|
|
71
|
+
answer: 'Para drones de freestyle, un TWR de 8 a 1 a 12 a 1 proporciona la aceleracion explosiva requerida para frenar caidas libres y superar giros de altas fuerzas G.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
question: '¿Como afecta la curva no lineal de gas al vuelo estacionario?',
|
|
75
|
+
answer: 'Los motores brushless generan empuje proporcional al cuadrado de las revoluciones. Debido a esto, el punto de sustentacion suele ubicarse entre el 20 y el 35 por ciento de recorrido de stick en montajes de alta potencia.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
question: '¿Por que el angulo de la camara FPV depende del empuje del dron?',
|
|
79
|
+
answer: 'Drones con mayor TWR vuelan a velocidades crucero mas elevadas con inclinaciones frontales mas pronunciadas. Para mantener el horizonte centrado en las gafas FPV, los pilotos inclinan la camara entre 35 y 50 grados.',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
question: '¿Como cambia la sensacion de vuelo el numero de palas de la helice?',
|
|
83
|
+
answer: 'Las helices bipalas ofrecen maxima eficiencia energetica y alta velocidad punta. Las tripalas equilibran agarre y respuesta en curvas para freestyle. Las cuatripalas entregan frenada y agarre inmediato a bajas revoluciones.',
|
|
84
|
+
},
|
|
85
|
+
];
|
|
86
|
+
|
|
87
|
+
const howToSteps = [
|
|
88
|
+
{
|
|
89
|
+
name: 'Seleccionar Ajuste Rapido o Introducir Peso del Dron',
|
|
90
|
+
text: 'Ingresa el peso total en orden de vuelo incluyendo bateria, camara HD y accesorios en gramos.',
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: 'Configurar Motores y Helices',
|
|
94
|
+
text: 'Selecciona la cantidad de motores, el numero de palas y el empuje estatico maximo de banco especificado por el fabricante.',
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
name: 'Ajustar el Stick de Gas en Vivo',
|
|
98
|
+
text: 'Mueve el stick de acelerador o pulsa los accesos rapidos para observar la variacion de vectores de empuje, fuerzas G y respuesta en la curva.',
|
|
99
|
+
},
|
|
100
|
+
];
|
|
101
|
+
|
|
102
|
+
const seoSections: SEOSection[] = [
|
|
103
|
+
{
|
|
104
|
+
type: 'title',
|
|
105
|
+
text: 'Aerodinamica de la Relacion Empuje a Peso en Drones FPV',
|
|
106
|
+
level: 2,
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'paragraph',
|
|
110
|
+
html: 'La relacion empuje a peso (TWR) determina la aceleracion vertical y la autoridad de control de cualquier multirrotor. En el vuelo acrobatico y de carreras FPV, contar con margen de empuje suficiente permite a los pilotos recuperarse de picados a velocidad terminal y maniobrar cerca de obstaculos con precision. Comprender este perfil es fundamental para elegir motores, ESC y calibrar el firmware de vuelo.',
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'title',
|
|
114
|
+
text: 'Clasificacion de Drones FPV y Metricas de Rendimiento',
|
|
115
|
+
level: 2,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'table',
|
|
119
|
+
headers: ['Plataforma', 'Peso AUW Tipico', 'TWR Objetivo', 'Gas en Sustentacion', 'Tiempo 0 a 100 km/h', 'Inclinacion FPV'],
|
|
120
|
+
rows: [
|
|
121
|
+
['1S TinyWhoop (65mm)', '32g', '4.5 a 1', '35 por ciento', '1.20 s', '15 deg a 25 deg'],
|
|
122
|
+
['4S Freestyle 3.5"', '250g', '12.0 a 1', '24 por ciento', '0.28 s', '35 deg a 45 deg'],
|
|
123
|
+
['6S Freestyle 5" Pro', '680g', '11.5 a 1', '25 por ciento', '0.30 s', '35 deg a 50 deg'],
|
|
124
|
+
['6S Mountain LR 7"', '1150g', '8.3 a 1', '30 por ciento', '0.45 s', '20 deg a 30 deg'],
|
|
125
|
+
['8S Cinelifter X8', '4200g', '6.1 a 1', '38 por ciento', '0.70 s', '15 deg a 25 deg'],
|
|
126
|
+
],
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'title',
|
|
130
|
+
text: 'Respuesta No Lineal del Acelerador y Curvas de Empuje',
|
|
131
|
+
level: 2,
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
type: 'paragraph',
|
|
135
|
+
html: 'Los motores electricos brushless no entregan empuje de manera lineal con la senal de control. La dinamica de flujo de aire y la carga de las palas generan una curva exponencial donde el 20 por ciento superior del recorrido del acelerador entrega mas del 40 por ciento del empuje total. Gestionar esta respuesta mediante curvas expo en Betaflight proporciona resolucion fina en vuelo de baja velocidad.',
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
type: 'list',
|
|
139
|
+
items: [
|
|
140
|
+
'Zona de sustentacion (20 a 35 por ciento de gas): Rango de alta precision para control de posicion y vuelo estacionario.',
|
|
141
|
+
'Zona de crucero (35 a 65 por ciento de gas): Vuelo de traslacion equilibrado con consumo energetico sostenible.',
|
|
142
|
+
'Zona de punch maximo (70 a 100 por ciento de gas): Entrega de potencia extrema con altas fuerzas G verticales.',
|
|
143
|
+
],
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
type: 'title',
|
|
147
|
+
text: 'Eleccion de Helices y Sintonizacion de Firmware Betaflight',
|
|
148
|
+
level: 2,
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
type: 'paragraph',
|
|
152
|
+
html: 'El diametro, paso y numero de palas de la helice determinan como el par motor se transforma en empuje estatico y velocidad punta. Para drones con TWR superior a 10 a 1, es aconsejable configurar atenuacion TPA en Betaflight para evitar oscilaciones de D-Term a fondo de acelerador.',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
type: 'tip',
|
|
156
|
+
title: 'Consejo de Ajuste Betaflight TPA',
|
|
157
|
+
html: 'En montajes de alta relacion de empuje, activa TPA a partir de 1250 o 1350 con un ratio de 0.65. Esto atenuara las ganancias D a gas maximo manteniendo el dron suave y sin vibraciones en rectas veloces.',
|
|
158
|
+
},
|
|
159
|
+
];
|
|
160
|
+
|
|
161
|
+
const schemas: FpvDroneThrustToWeightRatioLocaleContent['schemas'] = [
|
|
162
|
+
{
|
|
163
|
+
'@context': 'https://schema.org',
|
|
164
|
+
'@type': 'FAQPage',
|
|
165
|
+
mainEntity: faqItems.map((item) => ({
|
|
166
|
+
'@type': 'Question',
|
|
167
|
+
name: item.question,
|
|
168
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
169
|
+
})),
|
|
170
|
+
} as WithContext<FAQPage>,
|
|
171
|
+
{
|
|
172
|
+
'@context': 'https://schema.org',
|
|
173
|
+
'@type': 'HowTo',
|
|
174
|
+
name: title,
|
|
175
|
+
description,
|
|
176
|
+
step: howToSteps.map((s, index) => ({
|
|
177
|
+
'@type': 'HowToStep',
|
|
178
|
+
position: index + 1,
|
|
179
|
+
name: s.name,
|
|
180
|
+
text: s.text,
|
|
181
|
+
})),
|
|
182
|
+
} as WithContext<HowTo>,
|
|
183
|
+
{
|
|
184
|
+
'@context': 'https://schema.org',
|
|
185
|
+
'@type': 'SoftwareApplication',
|
|
186
|
+
name: title,
|
|
187
|
+
description,
|
|
188
|
+
applicationCategory: 'UtilityApplication',
|
|
189
|
+
operatingSystem: 'All',
|
|
190
|
+
offers: {
|
|
191
|
+
'@type': 'Offer',
|
|
192
|
+
price: '0',
|
|
193
|
+
priceCurrency: 'EUR',
|
|
194
|
+
},
|
|
195
|
+
} as WithContext<SoftwareApplication>,
|
|
196
|
+
];
|
|
197
|
+
|
|
198
|
+
export const content: FpvDroneThrustToWeightRatioLocaleContent = {
|
|
199
|
+
slug,
|
|
200
|
+
title,
|
|
201
|
+
description,
|
|
202
|
+
ui,
|
|
203
|
+
seo: seoSections,
|
|
204
|
+
faq: faqItems,
|
|
205
|
+
howTo: howToSteps,
|
|
206
|
+
bibliography: BIBLIOGRAPHY_ITEMS,
|
|
207
|
+
schemas,
|
|
208
|
+
};
|