@jjlmoya/utils-drones 1.5.0 → 1.7.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 +64 -63
- package/src/category/i18n/de.ts +106 -0
- package/src/category/i18n/id.ts +106 -0
- package/src/category/i18n/it.ts +106 -0
- package/src/category/i18n/ja.ts +106 -0
- package/src/category/i18n/ko.ts +106 -0
- package/src/category/i18n/nl.ts +106 -0
- package/src/category/i18n/pl.ts +106 -0
- package/src/category/i18n/pt.ts +106 -0
- package/src/category/i18n/ru.ts +106 -0
- package/src/category/i18n/sv.ts +106 -0
- package/src/category/i18n/tr.ts +106 -0
- package/src/category/i18n/zh.ts +106 -0
- package/src/category/index.ts +12 -0
- package/src/components/SecurityWarning.astro +140 -0
- package/src/tests/faq_count.test.ts +1 -1
- package/src/tests/i18n_coverage.test.ts +36 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/slug_uniqueness.test.ts +81 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tool/antenna-length-calculator/component.astro +70 -13
- package/src/tool/antenna-length-calculator/i18n/de.ts +276 -0
- package/src/tool/antenna-length-calculator/i18n/en.ts +76 -38
- package/src/tool/antenna-length-calculator/i18n/es.ts +76 -38
- package/src/tool/antenna-length-calculator/i18n/fr.ts +76 -38
- package/src/tool/antenna-length-calculator/i18n/id.ts +242 -0
- package/src/tool/antenna-length-calculator/i18n/it.ts +276 -0
- package/src/tool/antenna-length-calculator/i18n/ja.ts +276 -0
- package/src/tool/antenna-length-calculator/i18n/ko.ts +276 -0
- package/src/tool/antenna-length-calculator/i18n/nl.ts +276 -0
- package/src/tool/antenna-length-calculator/i18n/pl.ts +276 -0
- package/src/tool/antenna-length-calculator/i18n/pt.ts +276 -0
- package/src/tool/antenna-length-calculator/i18n/ru.ts +276 -0
- package/src/tool/antenna-length-calculator/i18n/sv.ts +276 -0
- package/src/tool/antenna-length-calculator/i18n/tr.ts +276 -0
- package/src/tool/antenna-length-calculator/i18n/zh.ts +276 -0
- package/src/tool/antenna-length-calculator/index.ts +12 -0
- package/src/tool/drone-flight-time/component.astro +320 -319
- package/src/tool/drone-flight-time/components/FlightDashboard.astro +6 -0
- package/src/tool/drone-flight-time/i18n/de.ts +238 -0
- package/src/tool/drone-flight-time/i18n/en.ts +76 -38
- package/src/tool/drone-flight-time/i18n/es.ts +76 -38
- package/src/tool/drone-flight-time/i18n/fr.ts +76 -38
- package/src/tool/drone-flight-time/i18n/id.ts +238 -0
- package/src/tool/drone-flight-time/i18n/it.ts +238 -0
- package/src/tool/drone-flight-time/i18n/ja.ts +239 -0
- package/src/tool/drone-flight-time/i18n/ko.ts +239 -0
- package/src/tool/drone-flight-time/i18n/nl.ts +239 -0
- package/src/tool/drone-flight-time/i18n/pl.ts +239 -0
- package/src/tool/drone-flight-time/i18n/pt.ts +239 -0
- package/src/tool/drone-flight-time/i18n/ru.ts +239 -0
- package/src/tool/drone-flight-time/i18n/sv.ts +239 -0
- package/src/tool/drone-flight-time/i18n/tr.ts +239 -0
- package/src/tool/drone-flight-time/i18n/zh.ts +239 -0
- package/src/tool/drone-flight-time/index.ts +12 -0
- package/src/tool/gps-coordinates-converter/component.astro +473 -549
- package/src/tool/gps-coordinates-converter/components/GpsHistory.astro +6 -1
- package/src/tool/gps-coordinates-converter/i18n/de.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/en.ts +76 -20
- package/src/tool/gps-coordinates-converter/i18n/es.ts +76 -20
- package/src/tool/gps-coordinates-converter/i18n/fr.ts +75 -2
- package/src/tool/gps-coordinates-converter/i18n/id.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/it.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/ja.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/ko.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/nl.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/pl.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/pt.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/ru.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/sv.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/tr.ts +222 -0
- package/src/tool/gps-coordinates-converter/i18n/zh.ts +222 -0
- package/src/tool/gps-coordinates-converter/index.ts +12 -0
|
@@ -6,6 +6,12 @@ const { ui } = Astro.props;
|
|
|
6
6
|
<div class="main-result">
|
|
7
7
|
<div class="radial-container">
|
|
8
8
|
<svg viewBox="0 0 100 100" class="radial-svg">
|
|
9
|
+
<defs>
|
|
10
|
+
<linearGradient id="statGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
11
|
+
<stop offset="0%" style="stop-color:#f59e0b;stop-opacity:1" />
|
|
12
|
+
<stop offset="100%" style="stop-color:#fbbf24;stop-opacity:1" />
|
|
13
|
+
</linearGradient>
|
|
14
|
+
</defs>
|
|
9
15
|
<circle cx="50" cy="50" r="45" class="bg-circle"></circle>
|
|
10
16
|
<circle cx="50" cy="50" r="45" class="fg-circle" id="timeCircle"></circle>
|
|
11
17
|
</svg>
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
import type { DroneFlightTimeLocaleContent } from '../index';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
|
|
4
|
+
const slug = 'drohnen-flugzeit-rechner';
|
|
5
|
+
const title = 'Drohnen Flugzeit Rechner zur Schätzung der LiPo LiIon Autonomie';
|
|
6
|
+
const description = 'Berechnen Sie die Flugzeit Ihrer Drohne basierend auf mAh-Kapazität und Stromverbrauch. Optimieren Sie Ihre LiPo-Akkus für sichere Flüge.';
|
|
7
|
+
|
|
8
|
+
const faqItems = [
|
|
9
|
+
{
|
|
10
|
+
question: 'Warum ist die reale Zeit kürzer als berechnet?',
|
|
11
|
+
answer: 'Der Rechner geht von einem konstanten Verbrauch aus. Abrupte Manöver, Gegenwind und Akkuverschleiß können die reale Zeit um bis zu 30 % reduzieren.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: 'Bei welcher Spannung sollte ich meine Drohne landen?',
|
|
15
|
+
answer: 'Im Idealfall landen Sie, wenn die Spannung (im Ruhezustand) auf 3,5V - 3,6V pro Zelle sinkt. Dies entspricht den empfohlenen 20 % Restkapazität.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'Sind LiPo- oder Li-Ion-Akkus besser für Drohnen?',
|
|
19
|
+
answer: 'LiPos bieten viel Sofortleistung (ideal für Rennen und Akrobatik). Li-Ion-Zellen haben eine längere Ausdauer, aber weniger Leistung (ideal für lange, ruhige Flüge).',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'Wie beeinflusst die Zellenzahl (S) die Flugzeit?',
|
|
23
|
+
answer: 'Mehr Zellen erhöhen Spannung und Leistung, aber auch das Gewicht. Wenn die Motoren für diese Spannung optimiert sind, können sie effizienter sein, garantieren aber allein noch keine längere Zeit.',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const howToSteps = [
|
|
28
|
+
{
|
|
29
|
+
name: 'Kapazität identifizieren',
|
|
30
|
+
text: 'Prüfen Sie das Etikett Ihres Akkus und suchen Sie nach dem mAh-Wert (z. B. 1500, 2200, 4500).',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'Verbrauch schätzen',
|
|
34
|
+
text: 'Geben Sie die durchschnittliche Amperezahl an, die Ihre Drohne verbraucht. Sie können diese nach einem Testflug in der Telemetrie sehen.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: 'Marge anpassen',
|
|
38
|
+
text: 'Wir empfehlen, 20 % übrig zu lassen (auf 80 % einstellen), um den Akku zu schützen und eine Landereserve zu haben.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Ergebnis erhalten',
|
|
42
|
+
text: 'Lassen Sie sich die genaue Zeit in Minuten und Sekunden anzeigen, die Sie sicher in der Luft bleiben können.',
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
const schemas: DroneFlightTimeLocaleContent['schemas'] = [
|
|
47
|
+
{
|
|
48
|
+
'@context': 'https://schema.org',
|
|
49
|
+
'@type': 'FAQPage',
|
|
50
|
+
mainEntity: faqItems.map((item) => ({
|
|
51
|
+
'@type': 'Question',
|
|
52
|
+
name: item.question,
|
|
53
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
54
|
+
})),
|
|
55
|
+
} as WithContext<FAQPage>,
|
|
56
|
+
{
|
|
57
|
+
'@context': 'https://schema.org',
|
|
58
|
+
'@type': 'HowTo',
|
|
59
|
+
name: title,
|
|
60
|
+
description: description,
|
|
61
|
+
step: howToSteps.map((step, i) => ({
|
|
62
|
+
'@type': 'HowToStep',
|
|
63
|
+
position: i + 1,
|
|
64
|
+
name: step.name,
|
|
65
|
+
text: step.text,
|
|
66
|
+
})),
|
|
67
|
+
} as WithContext<HowTo>,
|
|
68
|
+
{
|
|
69
|
+
'@context': 'https://schema.org',
|
|
70
|
+
'@type': 'SoftwareApplication',
|
|
71
|
+
name: title,
|
|
72
|
+
description: description,
|
|
73
|
+
applicationCategory: 'OtherApplication',
|
|
74
|
+
operatingSystem: 'Web',
|
|
75
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
76
|
+
} as WithContext<SoftwareApplication>,
|
|
77
|
+
];
|
|
78
|
+
|
|
79
|
+
export const content: DroneFlightTimeLocaleContent = {
|
|
80
|
+
slug,
|
|
81
|
+
title,
|
|
82
|
+
description,
|
|
83
|
+
faqTitle: 'Häufig gestellte Fragen',
|
|
84
|
+
bibliographyTitle: 'Literaturhinweise',
|
|
85
|
+
ui: {
|
|
86
|
+
faqTitle: 'Häufig gestellte Fragen',
|
|
87
|
+
bibliographyTitle: 'Literaturhinweise',
|
|
88
|
+
batterySpecs: 'Akku-Spezifikationen',
|
|
89
|
+
capacity: 'Kapazität',
|
|
90
|
+
voltage: 'Spannung (S-Zellen)',
|
|
91
|
+
safetyMargin: 'Sicherheitsmarge',
|
|
92
|
+
landingHint: 'Landen bei 3,5V - 3,7V pro Zelle.',
|
|
93
|
+
consumptionDynamics: 'Verbrauchsdynamik',
|
|
94
|
+
averageConsumption: 'Durchschnittlicher Verbrauch',
|
|
95
|
+
powerWatts: 'Leistung (Watt)',
|
|
96
|
+
efficiencyHint: 'Bei Änderung der Ampere werden die Watt basierend auf der S-Spannung neu berechnet.',
|
|
97
|
+
estimatedEfficiency: 'Geschätzte Effizienz',
|
|
98
|
+
typicalEfficiencyHint: 'Typisch: 4-6 (Racing), 8-12 (Cinematic/Long Range).',
|
|
99
|
+
safeFlight: 'Sicherer Flug',
|
|
100
|
+
totalEnergy: 'Gesamtenergie',
|
|
101
|
+
theoreticalTime: 'Theoretische Zeit (0%)',
|
|
102
|
+
co2Footprint: 'CO2-Fußabdruck',
|
|
103
|
+
autonomyChart: 'Autonomie-Diagramm',
|
|
104
|
+
chartSubtitle: 'Ampere (A) vs. Zeit (min)',
|
|
105
|
+
chartLabel: 'Minuten',
|
|
106
|
+
},
|
|
107
|
+
seo: [
|
|
108
|
+
{
|
|
109
|
+
type: 'title',
|
|
110
|
+
text: 'Drohnen-Flugzeitrechner: Ein kompletter Leitfaden zur Autonomie',
|
|
111
|
+
level: 2,
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: 'paragraph',
|
|
115
|
+
html: 'Die Autonomie ist wohl der kritischste Faktor bei der Konstruktion und dem Betrieb eines unbemannten Luftfahrzeugs. Egal, ob Sie ein FPV-Rennpilot, ein Profifotograf oder ein Long-Range-Enthusiast sind, das genaue Wissen darüber, wie lange Ihre Ausrüstung in der Luft bleiben kann, ist lebenswichtig für die Sicherheit und den Erfolg der Mission. Unser <strong>Flugzeitrechner</strong> nutzt die grundlegenden Variablen der Akkukapazität und der Stromaufnahme, um Ihnen eine realistische und sichere Einschätzung zu geben.',
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'title',
|
|
119
|
+
text: 'Akkukapazität: mAh erklärt',
|
|
120
|
+
level: 3,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'paragraph',
|
|
124
|
+
html: 'Die Kapazität eines Akkus wird üblicherweise in Milliamperestunden (mAh) gemessen. Diese Zahl gibt an, wie viel elektrische Ladung der Akku speichern kann. Zum Beispiel kann ein 1500-mAh-Akku theoretisch eine Stunde lang 1500 Milliampere liefern. In der Drohnenwelt, in der die Stromaufnahme extrem hoch ist, sprechen wir meist von Ampere (A). 1000 mAh entsprechen genau 1 Ah (Amperestunde).',
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'paragraph',
|
|
128
|
+
html: 'Die Bruttokapazität ist jedoch nicht der einzige Faktor. Die Spannung (bestimmt durch die Anzahl der Zellen oder \'S\') beeinflusst direkt die Gesamtleistung (Watt), aber für die Zeitberechnung basierend auf dem Motorverbrauch ist das Verhältnis Ah/Ampere die direkteste und am häufigsten genutzte Kennzahl.',
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
type: 'title',
|
|
132
|
+
text: 'Stromaufnahme: Stromstärke im Flug',
|
|
133
|
+
level: 3,
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'paragraph',
|
|
137
|
+
html: 'Der Verbrauch der Motoren ist die Variable, die während eines Fluges am stärksten schwankt. Das Halten einer Drohne im Schwebeflug (Hover) ist nicht dasselbe wie aggressive akrobatische Manöver. Jede Motor-Propeller-Kombination hat eine Effizienzkurve. Wenn Sie Vollgas geben, schnellt die Amperezahl in die Höhe, was die Lebensdauer des Akkus drastisch verkürzt.',
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
type: 'list',
|
|
141
|
+
items: [
|
|
142
|
+
'Schwebeflug: Der Verbrauch ist minimal und konstant, ideal für die Fotografie.',
|
|
143
|
+
'Reiseflug: Etwas erhöhter Verbrauch aufgrund des Luftwiderstands.',
|
|
144
|
+
'Aggressiver/FPV-Flug: Stromspitzen können den Durchschnittsverbrauch in Sekundenschnelle verdreifachen.',
|
|
145
|
+
'Gewicht der Drohne: Jedes zusätzliche Gramm erfordert höhere Motordrehzahlen, um Auftrieb zu erzeugen, was die Stromstärke erhöht.',
|
|
146
|
+
],
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
type: 'title',
|
|
150
|
+
text: '80 Prozent Sicherheitsregel: Schutz der LiPo Chemie',
|
|
151
|
+
level: 3,
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'paragraph',
|
|
155
|
+
html: 'Das Entladen eines LiPo-Akkus (Lithium-Polymer) auf 0 % seiner Kapazität ist der schnellste Weg, ihn zu zerstören und, was noch schlimmer ist, einen Absturz zu verursachen. Chemisch gesehen erleiden die Zellen irreversible Schäden, wenn ihre Spannung unter einen kritischen Schwellenwert fällt (normalerweise 3,0V - 3,2V pro Zelle).',
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
type: 'paragraph',
|
|
159
|
+
html: 'Daher wenden wir immer eine <strong>Sicherheitsmargen-Regel</strong> an. Unser Rechner erlaubt es Ihnen, diesen Wert anzupassen, aber es wird empfohlen, zu landen, wenn noch 20 % der Ladung vorhanden sind. Dies verlängert nicht nur die Lebensdauer Ihrer teuren Akkus um hunderte von Zyklen, sondern garantiert Ihnen auch eine lebenswichtige Leistungsreserve im Falle unerwarteter Windböen oder falls Sie einen Landeanflug abbrechen und es erneut versuchen müssen.',
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
type: 'tip',
|
|
163
|
+
html: 'Drohnenakkus sind sehr kälteempfindlich. Im Winter steigt der Innenwiderstand des LiPos, was zu einem schnelleren Spannungsabfall führt. Wärmen Sie Ihre Akkus vor dem Start immer auf, wenn die Außentemperatur unter 15 Grad liegt.',
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
type: 'title',
|
|
167
|
+
text: 'Mathematische Flugformel',
|
|
168
|
+
level: 3,
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
type: 'paragraph',
|
|
172
|
+
html: 'Obwohl unser Tool die schwere Arbeit für Sie erledigt, ist es interessant, die Logik hinter der Berechnung zu kennen. Die Grundformel lautet:',
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
type: 'paragraph',
|
|
176
|
+
html: '<strong>Zeit (min) = ((Kapazität mAh / 1000) * Sicherheitsfaktor) / Ampere-Aufnahme * 60</strong>',
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
type: 'paragraph',
|
|
180
|
+
html: 'Wenn Sie zum Beispiel einen 2200-mAh-Akku haben, bei 20 % Restkapazität landen möchten (Sicherheitsfaktor 0,8) und Ihre Drohne durchschnittlich 15 Ampere verbraucht, lautet die Berechnung: (2,2 * 0,8) / 15 * 60 = 7,04 Minuten sichere Flugzeit.',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'title',
|
|
184
|
+
text: 'Gewichtsoptimierung und Effizienz',
|
|
185
|
+
level: 3,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
type: 'paragraph',
|
|
189
|
+
html: 'Es gibt einen Punkt abnehmender Erträge beim Hinzufügen größerer Akkus. Das Verdoppeln der Akkukapazität verdoppelt nicht die Flugzeit, da der Akku selbst an Gewicht gewinnt. Dieses Zusatzgewicht erfordert, dass die Motoren schneller drehen und somit mehr Strom verbrauchen. Ab einem gewissen Punkt verbraucht das zusätzliche Gewicht mehr Energie, als es liefert, was die Gesamteffizienz des Systems verringert.',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
type: 'paragraph',
|
|
193
|
+
html: 'Erfahrene Piloten suchen nach dem perfekten Gleichgewicht zwischen <em>Disc Loading</em> (Propellerflächenbelastung) und Akkukapazität, um das zu maximieren, was wir "nutzbare Missionszeit" nennen.',
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
type: 'title',
|
|
197
|
+
text: 'Unterschiede zwischen Drohnentypen',
|
|
198
|
+
level: 3,
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
type: 'paragraph',
|
|
202
|
+
html: '<strong>Micro-Drohnen (Whoops):</strong> Verbrauchen nur 2-5 Ampere, aber ihre Akkus haben 300-500 mAh. Die Zeit ist meist kurz (3-4 Min.) aufgrund der geringen Trägheit und hohen Drehzahlen.',
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
type: 'paragraph',
|
|
206
|
+
html: '<strong>5 Zoll Racing-Drohnen:</strong> Enormer Verbrauch im Rennen (bis zu 120A Spitzen), was einen 1300-mAh-Akku in knapp 2 Minuten Adrenalin pur entlädt.',
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
type: 'paragraph',
|
|
210
|
+
html: '<strong>Long-Range-Drohnen:</strong> Auf Effizienz optimiert. Sie verwenden oft Lithium-Ionen-Zellen (Li-Ion), die eine höhere Energiedichte als LiPos haben und Flüge von 30 bis 60 Minuten bei sehr niedrigen Stromstärken ermöglichen.',
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
type: 'tip',
|
|
214
|
+
html: 'Der Wechsel zu Propellern mit weniger Steigung (Pitch) kann Ihre Flugzeit auf Kosten von Höchstgeschwindigkeit und Ansprechverhalten erhöhen. Dies ist die günstigste und effektivste Methode, um 10-15 % mehr Autonomie zu gewinnen.',
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
type: 'title',
|
|
218
|
+
text: 'Wartung und Lagerung',
|
|
219
|
+
level: 3,
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
type: 'paragraph',
|
|
223
|
+
html: 'Damit die Berechnungen dieses Tools genau sind, müssen Ihre Akkus in gutem Zustand sein. Ein Akku mit hohem Innenwiderstand wird übermäßig heiß und "lügt" über seine tatsächliche Kapazität. Lagern Sie Ihre Akkus immer bei Lagerspannung (3,8V-3,85V pro Zelle), wenn Sie länger als 48 Stunden nicht fliegen.',
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
type: 'paragraph',
|
|
227
|
+
html: 'Zusammenfassend lässt sich sagen, dass Energiemanagement die Kunst ist, Physik, Chemie und Mathematik in Einklang zu bringen. Nutzen Sie unseren Rechner regelmäßig, um Ihre Flugstunden zu planen, und vergessen Sie nie, dass in der Luft Zeit die wertvollste Ressource ist. Guten Flug und sichere Landungen!',
|
|
228
|
+
},
|
|
229
|
+
],
|
|
230
|
+
faq: faqItems,
|
|
231
|
+
bibliography: [
|
|
232
|
+
{ name: 'EASA - Drohnen-Regulierungen', url: 'https://www.easa.europa.eu/en/domains/civil-drones' },
|
|
233
|
+
{ name: 'ArduPilot Wiki', url: 'https://ardupilot.org/copter/' },
|
|
234
|
+
{ name: 'Battery University', url: 'https://batteryuniversity.com/' },
|
|
235
|
+
],
|
|
236
|
+
howTo: howToSteps,
|
|
237
|
+
schemas,
|
|
238
|
+
};
|
|
@@ -1,9 +1,81 @@
|
|
|
1
1
|
import type { DroneFlightTimeLocaleContent } from '../index';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
|
|
3
4
|
const slug = 'drone-flight-time-calculator';
|
|
4
|
-
const title = 'Drone Flight Time Calculator
|
|
5
|
+
const title = 'Drone Flight Time Calculator for LiPo LiIon Endurance Estimation';
|
|
5
6
|
const description = 'Calculate how long your drone can fly based on mAh capacity and current draw. Optimize your LiPo batteries for safe flights and maximum duration.';
|
|
6
7
|
|
|
8
|
+
const faqItems = [
|
|
9
|
+
{
|
|
10
|
+
question: 'Why is actual flight time lower than calculated?',
|
|
11
|
+
answer: 'The calculator assumes constant consumption. Sharp maneuvers, headwinds, and battery wear can reduce actual flight time by up to 30%.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: 'At what voltage should I land my drone?',
|
|
15
|
+
answer: 'Ideally, land when the voltage drops to 3.5V - 3.6V per cell (at rest). This corresponds to the recommended 20% remaining capacity.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'Are LiPo or Li-Ion batteries better for drones?',
|
|
19
|
+
answer: 'LiPos offer high instantaneous power (ideal for racing and acrobatics). Li-Ion cells have longer endurance but lower power output (ideal for long, steady flights).',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'How does the cell count (S) affect flight time?',
|
|
23
|
+
answer: 'More cells increase voltage and power, but also weight. If motors are optimized for that voltage, they can be more efficient, but cell count alone does not guarantee more time.',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const howToSteps = [
|
|
28
|
+
{
|
|
29
|
+
name: 'Identify Capacity',
|
|
30
|
+
text: 'Check your battery label and look for the mAh value (e.g., 1500, 2200, 4500).',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'Estimate Current Draw',
|
|
34
|
+
text: 'Enter the average amperage your drone consumes. You can find this in your OSD telemetry after a test flight.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: 'Adjust Safety Margin',
|
|
38
|
+
text: 'We recommend leaving 20% (set to 80%) to protect the battery and provide a landing buffer.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Get the Result',
|
|
42
|
+
text: 'View the exact time in minutes and seconds that you can safely stay in the air.',
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
const schemas: DroneFlightTimeLocaleContent['schemas'] = [
|
|
47
|
+
{
|
|
48
|
+
'@context': 'https://schema.org',
|
|
49
|
+
'@type': 'FAQPage',
|
|
50
|
+
mainEntity: faqItems.map((item) => ({
|
|
51
|
+
'@type': 'Question',
|
|
52
|
+
name: item.question,
|
|
53
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
54
|
+
})),
|
|
55
|
+
} as WithContext<FAQPage>,
|
|
56
|
+
{
|
|
57
|
+
'@context': 'https://schema.org',
|
|
58
|
+
'@type': 'HowTo',
|
|
59
|
+
name: title,
|
|
60
|
+
description: description,
|
|
61
|
+
step: howToSteps.map((step, i) => ({
|
|
62
|
+
'@type': 'HowToStep',
|
|
63
|
+
position: i + 1,
|
|
64
|
+
name: step.name,
|
|
65
|
+
text: step.text,
|
|
66
|
+
})),
|
|
67
|
+
} as WithContext<HowTo>,
|
|
68
|
+
{
|
|
69
|
+
'@context': 'https://schema.org',
|
|
70
|
+
'@type': 'SoftwareApplication',
|
|
71
|
+
name: title,
|
|
72
|
+
description: description,
|
|
73
|
+
applicationCategory: 'OtherApplication',
|
|
74
|
+
operatingSystem: 'Web',
|
|
75
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
76
|
+
} as WithContext<SoftwareApplication>,
|
|
77
|
+
];
|
|
78
|
+
|
|
7
79
|
export const content: DroneFlightTimeLocaleContent = {
|
|
8
80
|
slug,
|
|
9
81
|
title,
|
|
@@ -155,46 +227,12 @@ export const content: DroneFlightTimeLocaleContent = {
|
|
|
155
227
|
html: 'In conclusion, energy management is the art of balancing physics, chemistry, and mathematics. Use our calculator regularly to plan your flight sessions, and never forget that in the air, time is your most precious resource. Happy flying and safe landings!',
|
|
156
228
|
},
|
|
157
229
|
],
|
|
158
|
-
faq:
|
|
159
|
-
{
|
|
160
|
-
question: 'Why is actual flight time lower than calculated?',
|
|
161
|
-
answer: 'The calculator assumes constant consumption. Sharp maneuvers, headwinds, and battery wear can reduce actual flight time by up to 30%.',
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
question: 'At what voltage should I land my drone?',
|
|
165
|
-
answer: 'Ideally, land when the voltage drops to 3.5V - 3.6V per cell (at rest). This corresponds to the recommended 20% remaining capacity.',
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
question: 'Are LiPo or Li-Ion batteries better for drones?',
|
|
169
|
-
answer: 'LiPos offer high instantaneous power (ideal for racing and acrobatics). Li-Ion cells have longer endurance but lower power output (ideal for long, steady flights).',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
question: 'How does the cell count (S) affect flight time?',
|
|
173
|
-
answer: 'More cells increase voltage and power, but also weight. If motors are optimized for that voltage, they can be more efficient, but cell count alone does not guarantee more time.',
|
|
174
|
-
},
|
|
175
|
-
],
|
|
230
|
+
faq: faqItems,
|
|
176
231
|
bibliography: [
|
|
177
232
|
{ name: 'EASA - Drone Regulations', url: 'https://www.easa.europa.eu/en/domains/civil-drones' },
|
|
178
233
|
{ name: 'ArduPilot Wiki', url: 'https://ardupilot.org/copter/' },
|
|
179
234
|
{ name: 'Battery University', url: 'https://batteryuniversity.com/' },
|
|
180
235
|
],
|
|
181
|
-
howTo:
|
|
182
|
-
|
|
183
|
-
name: 'Identify Capacity',
|
|
184
|
-
text: 'Check your battery label and look for the mAh value (e.g., 1500, 2200, 4500).',
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
name: 'Estimate Current Draw',
|
|
188
|
-
text: 'Enter the average amperage your drone consumes. You can find this in your OSD telemetry after a test flight.',
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
name: 'Adjust Safety Margin',
|
|
192
|
-
text: 'We recommend leaving 20% (set to 80%) to protect the battery and provide a landing buffer.',
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
name: 'Get the Result',
|
|
196
|
-
text: 'View the exact time in minutes and seconds that you can safely stay in the air.',
|
|
197
|
-
},
|
|
198
|
-
],
|
|
199
|
-
schemas: [],
|
|
236
|
+
howTo: howToSteps,
|
|
237
|
+
schemas,
|
|
200
238
|
};
|
|
@@ -1,9 +1,81 @@
|
|
|
1
1
|
import type { DroneFlightTimeLocaleContent } from '../index';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
|
|
3
4
|
const slug = 'calculadora-tiempo-vuelo-dron';
|
|
4
|
-
const title = 'Calculadora Tiempo de Vuelo Drones
|
|
5
|
+
const title = 'Calculadora Tiempo de Vuelo Drones para Estimación de Autonomía LiPo LiIon';
|
|
5
6
|
const description = 'Calcula cuánto tiempo puede volar tu dron basado en la capacidad mAh y consumo. Optimiza tus baterías LiPo para vuelos seguros y máxima duración.';
|
|
6
7
|
|
|
8
|
+
const faqItems = [
|
|
9
|
+
{
|
|
10
|
+
question: '¿Por qué el tiempo real es menor al calculado?',
|
|
11
|
+
answer: 'La calculadora estima un consumo constante. Las maniobras bruscas, el viento en contra y el desgaste de la batería pueden reducir el tiempo real hasta en un 30%.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: '¿A qué voltaje debo aterrizar mi dron?',
|
|
15
|
+
answer: 'Lo ideal es aterrizar cuando el voltaje baje a 3.5V - 3.6V por celda (en reposo). Esto equivale aproximadamente al 20% de capacidad restante recomendada.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: '¿Son mejores las baterías LiPo o Li-Ion para drones?',
|
|
19
|
+
answer: 'Las LiPo ofrecen mucha potencia instantánea (ideal para carreras y acrobacias). Las Li-Ion tienen más duración pero menos potencia (ideal para vuelos largos y tranquilos).',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: '¿Cómo afecta el número de celdas (S) al tiempo de vuelo?',
|
|
23
|
+
answer: 'Más celdas aumentan el voltaje y la potencia, pero también el peso. Si los motores están optimizados para ese voltaje, pueden ser más eficientes, pero no garantizan más tiempo por sí solas.',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const howToSteps = [
|
|
28
|
+
{
|
|
29
|
+
name: 'Identifica la capacidad',
|
|
30
|
+
text: 'Mira la etiqueta de tu batería y busca el valor en mAh (ej. 1500, 2200, 4500).',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'Estima el consumo',
|
|
34
|
+
text: 'Introduce el amperaje medio que consume tu dron. Puedes verlo en la telemetría del OSD tras un vuelo de prueba.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: 'Ajusta el margen',
|
|
38
|
+
text: 'Recomendamos dejar un 20% (ajustar al 80%) para proteger la batería y tener margen de aterrizaje.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Obtén el resultado',
|
|
42
|
+
text: 'Visualiza el tiempo exacto en minutos y segundos que puedes permanecer en el aire con seguridad.',
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
const schemas: DroneFlightTimeLocaleContent['schemas'] = [
|
|
47
|
+
{
|
|
48
|
+
'@context': 'https://schema.org',
|
|
49
|
+
'@type': 'FAQPage',
|
|
50
|
+
mainEntity: faqItems.map((item) => ({
|
|
51
|
+
'@type': 'Question',
|
|
52
|
+
name: item.question,
|
|
53
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
54
|
+
})),
|
|
55
|
+
} as WithContext<FAQPage>,
|
|
56
|
+
{
|
|
57
|
+
'@context': 'https://schema.org',
|
|
58
|
+
'@type': 'HowTo',
|
|
59
|
+
name: title,
|
|
60
|
+
description: description,
|
|
61
|
+
step: howToSteps.map((step, i) => ({
|
|
62
|
+
'@type': 'HowToStep',
|
|
63
|
+
position: i + 1,
|
|
64
|
+
name: step.name,
|
|
65
|
+
text: step.text,
|
|
66
|
+
})),
|
|
67
|
+
} as WithContext<HowTo>,
|
|
68
|
+
{
|
|
69
|
+
'@context': 'https://schema.org',
|
|
70
|
+
'@type': 'SoftwareApplication',
|
|
71
|
+
name: title,
|
|
72
|
+
description: description,
|
|
73
|
+
applicationCategory: 'OtherApplication',
|
|
74
|
+
operatingSystem: 'Web',
|
|
75
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
76
|
+
} as WithContext<SoftwareApplication>,
|
|
77
|
+
];
|
|
78
|
+
|
|
7
79
|
export const content: DroneFlightTimeLocaleContent = {
|
|
8
80
|
slug,
|
|
9
81
|
title,
|
|
@@ -155,46 +227,12 @@ export const content: DroneFlightTimeLocaleContent = {
|
|
|
155
227
|
html: 'En conclusión, la gestión de la energía es el arte de equilibrar la física, la química y las matemáticas. Usa nuestra calculadora de forma regular para planificar tus sesiones de vuelo y nunca olvides que, en el aire, el tiempo es el recurso más valioso. ¡Buenos vuelos y aterrizajes seguros!',
|
|
156
228
|
},
|
|
157
229
|
],
|
|
158
|
-
faq:
|
|
159
|
-
{
|
|
160
|
-
question: '¿Por qué el tiempo real es menor al calculado?',
|
|
161
|
-
answer: 'La calculadora estima un consumo constante. Las maniobras bruscas, el viento en contra y el desgaste de la batería pueden reducir el tiempo real hasta en un 30%.',
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
question: '¿A qué voltaje debo aterrizar mi dron?',
|
|
165
|
-
answer: 'Lo ideal es aterrizar cuando el voltaje baje a 3.5V - 3.6V por celda (en reposo). Esto equivale aproximadamente al 20% de capacidad restante recomendada.',
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
question: '¿Son mejores las baterías LiPo o Li-Ion para drones?',
|
|
169
|
-
answer: 'Las LiPo ofrecen mucha potencia instantánea (ideal para carreras y acrobacias). Las Li-Ion tienen más duración pero menos potencia (ideal para vuelos largos y tranquilos).',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
question: '¿Cómo afecta el número de celdas (S) al tiempo de vuelo?',
|
|
173
|
-
answer: 'Más celdas aumentan el voltaje y la potencia, pero también el peso. Si los motores están optimizados para ese voltaje, pueden ser más eficientes, pero no garantizan más tiempo por sí solas.',
|
|
174
|
-
},
|
|
175
|
-
],
|
|
230
|
+
faq: faqItems,
|
|
176
231
|
bibliography: [
|
|
177
232
|
{ name: 'EASA - Drone Regulations', url: 'https://www.easa.europa.eu/en/domains/civil-drones' },
|
|
178
233
|
{ name: 'ArduPilot Wiki', url: 'https://ardupilot.org/copter/' },
|
|
179
234
|
{ name: 'Battery University', url: 'https://batteryuniversity.com/' },
|
|
180
235
|
],
|
|
181
|
-
howTo:
|
|
182
|
-
|
|
183
|
-
name: 'Identifica la capacidad',
|
|
184
|
-
text: 'Mira la etiqueta de tu batería y busca el valor en mAh (ej. 1500, 2200, 4500).',
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
name: 'Estima el consumo',
|
|
188
|
-
text: 'Introduce el amperaje medio que consume tu dron. Puedes verlo en la telemetría del OSD tras un vuelo de prueba.',
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
name: 'Ajusta el margen',
|
|
192
|
-
text: 'Recomendamos dejar un 20% (ajustar al 80%) para proteger la batería y tener margen de aterrizaje.',
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
name: 'Obtén el resultado',
|
|
196
|
-
text: 'Visualiza el tiempo exacto en minutos y segundos que puedes permanecer en el aire con seguridad.',
|
|
197
|
-
},
|
|
198
|
-
],
|
|
199
|
-
schemas: [],
|
|
236
|
+
howTo: howToSteps,
|
|
237
|
+
schemas,
|
|
200
238
|
};
|
|
@@ -1,9 +1,81 @@
|
|
|
1
1
|
import type { DroneFlightTimeLocaleContent } from '../index';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
2
3
|
|
|
3
4
|
const slug = 'calculateur-temps-vol-drone';
|
|
4
|
-
const title = 'Calculateur de Temps de Vol Drone
|
|
5
|
+
const title = 'Calculateur de Temps de Vol Drone pour Estimation Autonomie LiPo LiIon';
|
|
5
6
|
const description = 'Calculez combien de temps votre drone peut voler en fonction de la capacité mAh et de la consommation. Optimisez vos batteries LiPo pour des vols sûrs.';
|
|
6
7
|
|
|
8
|
+
const faqItems = [
|
|
9
|
+
{
|
|
10
|
+
question: 'Pourquoi le temps réel est-il inférieur au temps calculé ?',
|
|
11
|
+
answer: 'Le calculateur estime une consommation constante. Les manœuvres brusques, le vent de face et l\'usure de la batterie peuvent réduire le temps réel jusqu\'à 30%.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
question: 'À quelle tension dois-je faire atterrir mon drone ?',
|
|
15
|
+
answer: 'L\'idéal est d\'atterrir lorsque la tension descend à 3,5V - 3,6V par cellule (au repos). Cela équivaut environ aux 20% de capacité restante recommandés.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
question: 'Les batteries LiPo ou Li-Ion sont-elles meilleures pour les drones ?',
|
|
19
|
+
answer: 'Les LiPo offrent beaucoup de puissance instantanée (idéal pour la course et les acrobaties). Les Li-Ion ont plus d\'endurance mais moins de puissance (idéal pour les vols longs et tranquilles).',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
question: 'Comment le nombre de cellules (S) affecte-t-il le temps de vol ?',
|
|
23
|
+
answer: 'Plus de cellules augmentent la tension et la puissance, mais aussi le poids. Si les moteurs sont optimisés pour cette tension, ils peuvent être plus efficaces, mais cela ne garantit pas plus de temps en soi.',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const howToSteps = [
|
|
28
|
+
{
|
|
29
|
+
name: 'Identifiez la capacité',
|
|
30
|
+
text: 'Regardez l\'étiquette de votre batterie et cherchez la valeur en mAh (ex. 1500, 2200, 4500).',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'Estimez la consommation',
|
|
34
|
+
text: 'Entrez l\'ampérage moyen consommé par votre drone. Vous pouvez le voir dans la télémétrie OSD après un vol d\'essai.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: 'Ajustez la marge',
|
|
38
|
+
text: 'Nous recommandons de laisser 20% (régler à 80%) pour protéger la batterie et avoir une marge d\'atterrissage.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Obtenez le résultat',
|
|
42
|
+
text: 'Visualisez le temps exact en minutes et secondes pendant lequel vous pouvez rester en l\'air en toute sécurité.',
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
const schemas: DroneFlightTimeLocaleContent['schemas'] = [
|
|
47
|
+
{
|
|
48
|
+
'@context': 'https://schema.org',
|
|
49
|
+
'@type': 'FAQPage',
|
|
50
|
+
mainEntity: faqItems.map((item) => ({
|
|
51
|
+
'@type': 'Question',
|
|
52
|
+
name: item.question,
|
|
53
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
54
|
+
})),
|
|
55
|
+
} as WithContext<FAQPage>,
|
|
56
|
+
{
|
|
57
|
+
'@context': 'https://schema.org',
|
|
58
|
+
'@type': 'HowTo',
|
|
59
|
+
name: title,
|
|
60
|
+
description: description,
|
|
61
|
+
step: howToSteps.map((step, i) => ({
|
|
62
|
+
'@type': 'HowToStep',
|
|
63
|
+
position: i + 1,
|
|
64
|
+
name: step.name,
|
|
65
|
+
text: step.text,
|
|
66
|
+
})),
|
|
67
|
+
} as WithContext<HowTo>,
|
|
68
|
+
{
|
|
69
|
+
'@context': 'https://schema.org',
|
|
70
|
+
'@type': 'SoftwareApplication',
|
|
71
|
+
name: title,
|
|
72
|
+
description: description,
|
|
73
|
+
applicationCategory: 'OtherApplication',
|
|
74
|
+
operatingSystem: 'Web',
|
|
75
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
76
|
+
} as WithContext<SoftwareApplication>,
|
|
77
|
+
];
|
|
78
|
+
|
|
7
79
|
export const content: DroneFlightTimeLocaleContent = {
|
|
8
80
|
slug,
|
|
9
81
|
title,
|
|
@@ -155,46 +227,12 @@ export const content: DroneFlightTimeLocaleContent = {
|
|
|
155
227
|
html: 'En conclusion, la gestion de l\'énergie est l\'art d\'équilibrer la physique, la chimie et les mathématiques. Utilisez notre calculateur régulièrement pour planifier vos sessions de vol et n\'oubliez jamais qu\'en l\'air, le temps est la ressource la plus précieuse. Bons vols et atterrissages en toute sécurité !',
|
|
156
228
|
},
|
|
157
229
|
],
|
|
158
|
-
faq:
|
|
159
|
-
{
|
|
160
|
-
question: 'Pourquoi le temps réel est-il inférieur au temps calculé ?',
|
|
161
|
-
answer: 'Le calculateur estime une consommation constante. Les manœuvres brusques, le vent de face et l\'usure de la batterie peuvent réduire le temps réel jusqu\'à 30%.',
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
question: 'À quelle tension dois-je faire atterrir mon drone ?',
|
|
165
|
-
answer: 'L\'idéal est d\'atterrir lorsque la tension descend à 3,5V - 3,6V par cellule (au repos). Cela équivaut environ aux 20% de capacité restante recommandés.',
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
question: 'Les batteries LiPo ou Li-Ion sont-elles meilleures pour les drones ?',
|
|
169
|
-
answer: 'Les LiPo offrent beaucoup de puissance instantanée (idéal pour la course et les acrobaties). Les Li-Ion ont plus d\'endurance mais moins de puissance (idéal pour les vols longs et tranquilles).',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
question: 'Comment le nombre de cellules (S) affecte-t-il le temps de vol ?',
|
|
173
|
-
answer: 'Plus de cellules augmentent la tension et la puissance, mais aussi le poids. Si les moteurs sont optimisés pour cette tension, ils peuvent être plus efficaces, mais cela ne garantit pas plus de temps en soi.',
|
|
174
|
-
},
|
|
175
|
-
],
|
|
230
|
+
faq: faqItems,
|
|
176
231
|
bibliography: [
|
|
177
232
|
{ name: 'EASA - Réglementation des Drones', url: 'https://www.easa.europa.eu/en/domains/civil-drones' },
|
|
178
233
|
{ name: 'ArduPilot Wiki', url: 'https://ardupilot.org/copter/' },
|
|
179
234
|
{ name: 'Battery University', url: 'https://batteryuniversity.com/' },
|
|
180
235
|
],
|
|
181
|
-
howTo:
|
|
182
|
-
|
|
183
|
-
name: 'Identifiez la capacité',
|
|
184
|
-
text: 'Regardez l\'étiquette de votre batterie et cherchez la valeur en mAh (ex. 1500, 2200, 4500).',
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
name: 'Estimez la consommation',
|
|
188
|
-
text: 'Entrez l\'ampérage moyen consommé par votre drone. Vous pouvez le voir dans la télémétrie OSD après un vol d\'essai.',
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
name: 'Ajustez la marge',
|
|
192
|
-
text: 'Nous recommandons de laisser 20% (régler à 80%) pour protéger la batterie et avoir une marge d\'atterrissage.',
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
name: 'Obtenez le résultat',
|
|
196
|
-
text: 'Visualisez le temps exact en minutes et secondes pendant lequel vous pouvez rester en l\'air en toute sécurité.',
|
|
197
|
-
},
|
|
198
|
-
],
|
|
199
|
-
schemas: [],
|
|
236
|
+
howTo: howToSteps,
|
|
237
|
+
schemas,
|
|
200
238
|
};
|