@jjlmoya/utils-drones 1.24.0 → 1.25.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/tests/diacritics_density.test.ts +8 -8
- package/src/tool/drone-battery-c-rating-calculator/i18n/es.ts +49 -49
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/es.ts +59 -59
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/fr.ts +68 -68
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/it.ts +12 -12
- package/src/tool/fpv-drone-thrust-to-weight-ratio/i18n/pl.ts +68 -68
package/package.json
CHANGED
|
@@ -8,49 +8,49 @@ const DIACRITIC_RULES = {
|
|
|
8
8
|
language: 'German',
|
|
9
9
|
expectedCharacters: 'ä ö ü ß',
|
|
10
10
|
characters: /[äöüÄÖÜß]/g,
|
|
11
|
-
minPerThousandLetters: 0
|
|
11
|
+
minPerThousandLetters: 3.0,
|
|
12
12
|
},
|
|
13
13
|
es: {
|
|
14
14
|
language: 'Spanish',
|
|
15
15
|
expectedCharacters: 'á é í ó ú ü ñ',
|
|
16
16
|
characters: /[áéíóúüñÁÉÍÓÚÜÑ]/g,
|
|
17
|
-
minPerThousandLetters: 0
|
|
17
|
+
minPerThousandLetters: 8.0,
|
|
18
18
|
},
|
|
19
19
|
fr: {
|
|
20
20
|
language: 'French',
|
|
21
21
|
expectedCharacters: 'à â æ ç é è ê ë î ï ô œ ù û ü ÿ',
|
|
22
22
|
characters: /[àâæçéèêëîïôœùûüÿÀÂÆÇÉÈÊËÎÏÔŒÙÛÜŸ]/g,
|
|
23
|
-
minPerThousandLetters: 0
|
|
23
|
+
minPerThousandLetters: 8.0,
|
|
24
24
|
},
|
|
25
25
|
it: {
|
|
26
26
|
language: 'Italian',
|
|
27
27
|
expectedCharacters: 'à è é ì í î ò ó ù ú',
|
|
28
28
|
characters: /[àèéìíîòóùúÀÈÉÌÍÎÒÓÙÚ]/g,
|
|
29
|
-
minPerThousandLetters: 0
|
|
29
|
+
minPerThousandLetters: 3.0,
|
|
30
30
|
},
|
|
31
31
|
pl: {
|
|
32
32
|
language: 'Polish',
|
|
33
33
|
expectedCharacters: 'ą ć ę ł ń ó ś ź ż',
|
|
34
34
|
characters: /[ąćęłńóśźżĄĆĘŁŃÓŚŹŻ]/g,
|
|
35
|
-
minPerThousandLetters: 0
|
|
35
|
+
minPerThousandLetters: 10.0,
|
|
36
36
|
},
|
|
37
37
|
pt: {
|
|
38
38
|
language: 'Portuguese',
|
|
39
39
|
expectedCharacters: 'á â ã à ç é ê í ó ô õ ú ü',
|
|
40
40
|
characters: /[áâãàçéêíóôõúüÁÂÃÀÇÉÊÍÓÔÕÚÜ]/g,
|
|
41
|
-
minPerThousandLetters: 0
|
|
41
|
+
minPerThousandLetters: 8.0,
|
|
42
42
|
},
|
|
43
43
|
sv: {
|
|
44
44
|
language: 'Swedish',
|
|
45
45
|
expectedCharacters: 'å ä ö',
|
|
46
46
|
characters: /[åäöÅÄÖ]/g,
|
|
47
|
-
minPerThousandLetters: 0
|
|
47
|
+
minPerThousandLetters: 5.0,
|
|
48
48
|
},
|
|
49
49
|
tr: {
|
|
50
50
|
language: 'Turkish',
|
|
51
51
|
expectedCharacters: 'ç ğ ı İ ö ş ü',
|
|
52
52
|
characters: /[çğıöşüÇĞİÖŞÜ]/g,
|
|
53
|
-
minPerThousandLetters: 0
|
|
53
|
+
minPerThousandLetters: 10.0,
|
|
54
54
|
},
|
|
55
55
|
} as const;
|
|
56
56
|
|
|
@@ -4,108 +4,108 @@ import type { SEOSection } from '../../../types';
|
|
|
4
4
|
import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
|
|
5
5
|
|
|
6
6
|
const slug = 'calculadora-tasa-c-bateria-lipo-dron';
|
|
7
|
-
const title = 'Calculadora de Tasa C de
|
|
8
|
-
const description = 'Calcula la corriente de descarga continua real, tasa C realista, sag de voltaje y seguridad de vuelo para
|
|
7
|
+
const title = 'Calculadora de Tasa C de Batería LiPo y Descarga Continua para Drones';
|
|
8
|
+
const description = 'Calcula la corriente de descarga continua real, tasa C realista, sag de voltaje y seguridad de vuelo para baterías LiPo de drones basándote en la resistencia interna y consumo de motores.';
|
|
9
9
|
|
|
10
10
|
const ui = {
|
|
11
|
-
title: 'Calculadora de Tasa C de
|
|
12
|
-
subtitle: 'Analiza la descarga continua real, exigencia de burst y sag de voltaje para
|
|
13
|
-
lipoSpecsHeader: 'Especificaciones de la
|
|
11
|
+
title: 'Calculadora de Tasa C de Batería LiPo para Drones',
|
|
12
|
+
subtitle: 'Analiza la descarga continua real, exigencia de burst y sag de voltaje para multirrotores',
|
|
13
|
+
lipoSpecsHeader: 'Especificaciones de la Batería',
|
|
14
14
|
capacityLabel: 'Capacidad (mAh)',
|
|
15
15
|
claimedCRatingLabel: 'Tasa C Anunciada',
|
|
16
|
-
cellCountLabel: '
|
|
17
|
-
chemistryLabel: '
|
|
16
|
+
cellCountLabel: 'Número de Celdas (Serie)',
|
|
17
|
+
chemistryLabel: 'Química de la Batería',
|
|
18
18
|
internalResistanceLabel: 'Resistencia Interna por Celda (mΩ)',
|
|
19
19
|
quadSpecsHeader: 'Consumo del Dron',
|
|
20
|
-
motorCountLabel: '
|
|
20
|
+
motorCountLabel: 'Número de Motores',
|
|
21
21
|
peakMotorCurrentLabel: 'Corriente Pico por Motor (Amperios)',
|
|
22
|
-
auxCurrentLabel: 'Consumo Auxiliar (VTX, FC,
|
|
23
|
-
presetSelectLabel: 'Ajustes
|
|
22
|
+
auxCurrentLabel: 'Consumo Auxiliar (VTX, FC, Cámara) (Amperios)',
|
|
23
|
+
presetSelectLabel: 'Ajustes Rápidos',
|
|
24
24
|
customPreset: 'Personalizado',
|
|
25
25
|
whoopPreset: '1S TinyWhoop',
|
|
26
26
|
freestyle5Preset: '6S Freestyle 5 Pulgadas',
|
|
27
27
|
cinewhoopPreset: '4S CineWhoop 3 Pulgadas',
|
|
28
28
|
longRange7Preset: '6S Long Range 7 Pulgadas',
|
|
29
29
|
racing5Preset: '6S Carreras 5 Pulgadas',
|
|
30
|
-
resultsHeader: '
|
|
31
|
-
claimedMaxCurrentLabel: 'Corriente
|
|
30
|
+
resultsHeader: 'Análisis de Rendimiento y Potencia',
|
|
31
|
+
claimedMaxCurrentLabel: 'Corriente Máxima Anunciada',
|
|
32
32
|
realisticCRatingLabel: 'Tasa C Continua Realista',
|
|
33
33
|
realisticMaxCurrentLabel: 'Corriente Continua Realista',
|
|
34
34
|
totalPeakDrawLabel: 'Consumo Pico Total',
|
|
35
|
-
voltageSagLabel: '
|
|
35
|
+
voltageSagLabel: 'Caída de Tensión Estimada',
|
|
36
36
|
sagNominalVoltageLabel: 'Voltaje Nominal Bajo Carga',
|
|
37
|
-
flightTimeFullThrottleLabel: '
|
|
38
|
-
flightTimeHoverLabel: '
|
|
39
|
-
safetyStatusLabel: '
|
|
40
|
-
statusOptimalTitle: '
|
|
41
|
-
statusOptimalDesc: 'La
|
|
42
|
-
statusWarningTitle: '
|
|
43
|
-
statusWarningDesc: 'El consumo pico
|
|
37
|
+
flightTimeFullThrottleLabel: 'Autonomía a Acelerador Máximo',
|
|
38
|
+
flightTimeHoverLabel: 'Autonomía Estimada en Estacionario',
|
|
39
|
+
safetyStatusLabel: 'Diagnóstico de Seguridad',
|
|
40
|
+
statusOptimalTitle: 'Batería Segura y Óptima',
|
|
41
|
+
statusOptimalDesc: 'La batería suministra la corriente pico holgadamente sin sobrecalentamiento ni sag excesivo. Se garantiza una larga vida útil de las celdas.',
|
|
42
|
+
statusWarningTitle: 'Estrés Térmico y de Voltaje Moderado',
|
|
43
|
+
statusWarningDesc: 'El consumo pico está cerca del límite real de la batería. Espera cierta caída de voltaje en aceleraciones bruscas.',
|
|
44
44
|
statusDangerTitle: 'Alto Riesgo de Sobrecarga y Sag de Voltaje',
|
|
45
|
-
statusDangerDesc: 'El consumo pico supera la capacidad real de la
|
|
45
|
+
statusDangerDesc: 'El consumo pico supera la capacidad real de la batería. Alto riesgo de sobrecalentamiento, caída severa de voltaje y degradación prematura.',
|
|
46
46
|
lipoVisualizerTitle: 'Visualizador de Estado LiPo en Tiempo Real',
|
|
47
47
|
cellVoltageLabel: 'Voltaje por Celda',
|
|
48
|
-
batteryHealthLabel: '
|
|
48
|
+
batteryHealthLabel: 'Estrés de Batería',
|
|
49
49
|
burstRatingRequiredLabel: 'Tasa C de Burst Requerida',
|
|
50
|
-
currentRatioLabel: '
|
|
50
|
+
currentRatioLabel: 'Relación de Carga de Potencia',
|
|
51
51
|
};
|
|
52
52
|
|
|
53
53
|
const faqItems = [
|
|
54
54
|
{
|
|
55
|
-
question: '¿
|
|
56
|
-
answer: 'La tasa C representa la velocidad
|
|
55
|
+
question: '¿Qué es la tasa C en una batería LiPo de dron?',
|
|
56
|
+
answer: 'La tasa C representa la velocidad máxima de descarga continua en relación con la capacidad de la batería. Por ejemplo, una batería de 1500mAh con 100C puede entregar teóricamente 150 Amperios.',
|
|
57
57
|
},
|
|
58
58
|
{
|
|
59
|
-
question: '¿Por
|
|
59
|
+
question: '¿Por qué la tasa C anunciada suele ser superior a la real?',
|
|
60
60
|
answer: 'Los fabricantes suelen publicitar tasas de ráfaga o valores de marketing. La descarga continua real depende directamente de la resistencia interna de cada celda.',
|
|
61
61
|
},
|
|
62
62
|
{
|
|
63
|
-
question: '¿
|
|
64
|
-
answer: 'Una alta resistencia interna
|
|
63
|
+
question: '¿Cómo afecta la resistencia interna al sag de voltaje y al calor?',
|
|
64
|
+
answer: 'Una alta resistencia interna actúa como un resistor indeseado en la celda. Al exigir alta corriente, esta resistencia provoca una caída de voltaje abrupta y disipa calor excesivo.',
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
question: '¿
|
|
67
|
+
question: '¿Cómo puedo evitar el sag de voltaje durante vuelos de freestyle?',
|
|
68
68
|
answer: 'Utiliza celdas de baja resistencia interna, selecciona un margen de seguridad de al menos el 15 por ciento sobre el consumo pico y no vueles por debajo de 3.5V por celda en reposo.',
|
|
69
69
|
},
|
|
70
70
|
];
|
|
71
71
|
|
|
72
72
|
const howToSteps = [
|
|
73
73
|
{
|
|
74
|
-
name: 'Seleccionar Ajuste
|
|
75
|
-
text: 'Ingresa la capacidad en mAh, la tasa C anunciada, el
|
|
74
|
+
name: 'Seleccionar Ajuste Rápido o Introducir Datos de Batería',
|
|
75
|
+
text: 'Ingresa la capacidad en mAh, la tasa C anunciada, el número de celdas en serie y la resistencia interna promedio por celda.',
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
name: 'Configurar el Consumo de Motores y
|
|
79
|
-
text: 'Especifica la cantidad de motores, la corriente pico por motor a
|
|
78
|
+
name: 'Configurar el Consumo de Motores y Electrónica',
|
|
79
|
+
text: 'Especifica la cantidad de motores, la corriente pico por motor a máximo acelerador y el consumo de componentes auxiliares.',
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
|
-
name: 'Revisar el
|
|
83
|
-
text: 'Compara la corriente continua realista calculada con el consumo pico del dron para asegurar un vuelo estable sin riesgo de
|
|
82
|
+
name: 'Revisar el Diagnóstico de Seguridad y Amperaje Real',
|
|
83
|
+
text: 'Compara la corriente continua realista calculada con el consumo pico del dron para asegurar un vuelo estable sin riesgo de degradación.',
|
|
84
84
|
},
|
|
85
85
|
];
|
|
86
86
|
|
|
87
87
|
const seoSections: SEOSection[] = [
|
|
88
88
|
{
|
|
89
89
|
type: 'title',
|
|
90
|
-
text: 'Comprendiendo la Tasa C y la Entrega Real de Potencia en
|
|
90
|
+
text: 'Comprendiendo la Tasa C y la Entrega Real de Potencia en Baterías LiPo',
|
|
91
91
|
level: 2,
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
type: 'paragraph',
|
|
95
|
-
html: 'Elegir la
|
|
95
|
+
html: 'Elegir la batería LiPo adecuada para un dron FPV requiere relacionar la capacidad de la batería, la tasa C y el consumo ampérico de los motores. Aunque los fabricantes suelen anunciar tasas de 100C o más, la capacidad real de descarga continua está limitada por la resistencia interna de las celdas y la disipación térmica. Esta calculadora evalúa el amperaje continuo realista ofreciendo un margen de seguridad real.',
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
98
|
type: 'title',
|
|
99
|
-
text: 'Tabla Comparativa de
|
|
99
|
+
text: 'Tabla Comparativa de Químicas de Baterías RC',
|
|
100
100
|
level: 2,
|
|
101
101
|
},
|
|
102
102
|
{
|
|
103
103
|
type: 'table',
|
|
104
|
-
headers: ['
|
|
104
|
+
headers: ['Química', 'Voltaje Nominal', 'Voltaje Máximo', 'Densidad Energética', 'Descarga Pico', 'Uso Recomendado'],
|
|
105
105
|
rows: [
|
|
106
|
-
['LiPo (
|
|
107
|
-
['LiHV (Alta
|
|
108
|
-
['Li-Ion (18650/21700)', '3.6V', '4.20V', '
|
|
106
|
+
['LiPo (Estándar)', '3.7V', '4.20V', 'Alta', '100C - 150C', 'Drones FPV de Carreras y Freestyle 5"'],
|
|
107
|
+
['LiHV (Alta Tensión)', '3.8V', '4.35V', 'Muy Alta', '80C - 120C', 'TinyWhoops y Micro Multirrotores'],
|
|
108
|
+
['Li-Ion (18650/21700)', '3.6V', '4.20V', 'Máxima', '15C - 35C', 'Drones Long Range de 7"'],
|
|
109
109
|
['LiFePO4', '3.3V', '3.65V', 'Moderada', '30C - 50C', 'Estaciones de Carga en Campo'],
|
|
110
110
|
],
|
|
111
111
|
},
|
|
@@ -116,29 +116,29 @@ const seoSections: SEOSection[] = [
|
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
118
|
type: 'paragraph',
|
|
119
|
-
html: 'El sag de voltaje es la
|
|
119
|
+
html: 'El sag de voltaje es la caída repentina de tensión que experimenta la batería bajo aceleraciones fuertes. Al pasar corriente a través de la resistencia interna, parte de la energía se convierte en calor en lugar de empuje. Una batería envejecida o de alta resistencia sufrirá avisos prematuros de bajo voltaje en el OSD telemétrico.',
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
122
|
type: 'list',
|
|
123
123
|
items: [
|
|
124
|
-
'Baja Resistencia Interna (1-4 mΩ por celda): Excelente respuesta, sag
|
|
125
|
-
'Resistencia Interna Moderada (5-10 mΩ por celda): Rendimiento
|
|
126
|
-
'Alta Resistencia Interna (>12 mΩ por celda):
|
|
124
|
+
'Baja Resistencia Interna (1-4 mΩ por celda): Excelente respuesta, sag mínimo y temperatura fresca.',
|
|
125
|
+
'Resistencia Interna Moderada (5-10 mΩ por celda): Rendimiento estándar para freestyle con leve sag.',
|
|
126
|
+
'Alta Resistencia Interna (>12 mΩ por celda): Pérdidas notorias de potencia, sag severo y calentamiento rápido.',
|
|
127
127
|
],
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
130
|
type: 'title',
|
|
131
|
-
text: '
|
|
131
|
+
text: 'Optimización de Baterías para Freestyle Carreras y Drones Long Range',
|
|
132
132
|
level: 2,
|
|
133
133
|
},
|
|
134
134
|
{
|
|
135
135
|
type: 'paragraph',
|
|
136
|
-
html: 'Cada estilo de vuelo exige requisitos
|
|
136
|
+
html: 'Cada estilo de vuelo exige requisitos energéticos distintos. Los drones de freestyle de 5 pulgadas generan picos intensos de corriente superiores a 120 Amperios, mientras que los drones de 7 pulgadas para largo alcance buscan eficiencia constante. Ajustar la batería exacta para cada setup previene cortes de alimentación en vuelo.',
|
|
137
137
|
},
|
|
138
138
|
{
|
|
139
139
|
type: 'tip',
|
|
140
140
|
title: 'Consejo de Mantenimiento LiPo',
|
|
141
|
-
html: 'Guarda siempre tus
|
|
141
|
+
html: 'Guarda siempre tus baterías LiPo a 3.80V o 3.85V por celda cuando no las uses. Almacenarlas completamente cargadas durante más de 48 horas incrementa permanentemente la resistencia interna y degrada su capacidad.',
|
|
142
142
|
},
|
|
143
143
|
];
|
|
144
144
|
|
|
@@ -4,119 +4,119 @@ import type { SEOSection } from '../../../types';
|
|
|
4
4
|
import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
|
|
5
5
|
|
|
6
6
|
const slug = 'calculadora-relacion-empuje-peso-drone-fpv';
|
|
7
|
-
const title = 'Calculadora de
|
|
8
|
-
const description = 'Calcula el empuje
|
|
7
|
+
const title = 'Calculadora de Relación Empuje a Peso y Telemetría de Vuelo para Drones FPV';
|
|
8
|
+
const description = 'Calcula el empuje estático máximo, la curva de acelerador no lineal, la fuerza G vertical instantánea, el punto de sustentación y el tiempo 0 a 100 para drones FPV y multirrotores.';
|
|
9
9
|
|
|
10
10
|
const ui = {
|
|
11
|
-
title: 'Calculadora de
|
|
12
|
-
subtitle: 'Analiza curvas de empuje, respuesta del stick de gas en vivo, fuerza G
|
|
13
|
-
presetsHeader: 'Ajustes
|
|
11
|
+
title: 'Calculadora de Relación Empuje a Peso para Drones FPV',
|
|
12
|
+
subtitle: 'Analiza curvas de empuje, respuesta del stick de gas en vivo, fuerza G instantánea y clasificación de agilidad',
|
|
13
|
+
presetsHeader: 'Ajustes Rápidos',
|
|
14
14
|
customPreset: 'Personalizado',
|
|
15
15
|
whoop1sPreset: '1S TinyWhoop (65mm)',
|
|
16
16
|
freestyle35Preset: '4S Freestyle 3.5 Pulgadas',
|
|
17
17
|
freestyle5Preset: '6S Freestyle 5 Pulgadas Pro',
|
|
18
18
|
longrange7Preset: '6S Mountain LR 7 Pulgadas',
|
|
19
19
|
cinelifter8Preset: '8S Cinelifter Pesado X8',
|
|
20
|
-
specsHeader: 'Especificaciones del Dron y
|
|
21
|
-
auwGramsLabel: 'Peso Total con
|
|
22
|
-
motorCountLabel: '
|
|
23
|
-
thrustPerMotorLabel: 'Empuje
|
|
24
|
-
propellerSizeLabel: '
|
|
25
|
-
propellerPitchLabel: 'Paso de
|
|
26
|
-
bladeCountLabel: '
|
|
27
|
-
blade2Option: '2 Palas (Bipala -
|
|
28
|
-
blade3Option: '3 Palas (Tripala -
|
|
29
|
-
blade4Option: '4 Palas (Cuatripala -
|
|
20
|
+
specsHeader: 'Especificaciones del Dron y Propulsión',
|
|
21
|
+
auwGramsLabel: 'Peso Total con Batería (g)',
|
|
22
|
+
motorCountLabel: 'Configuración de Motores',
|
|
23
|
+
thrustPerMotorLabel: 'Empuje Estático Máximo por Motor (g)',
|
|
24
|
+
propellerSizeLabel: 'Diámetro de Hélice (pulgadas)',
|
|
25
|
+
propellerPitchLabel: 'Paso de Hélice (pulgadas)',
|
|
26
|
+
bladeCountLabel: 'Número de Palas de la Hélice',
|
|
27
|
+
blade2Option: '2 Palas (Bipala - Máxima Eficiencia)',
|
|
28
|
+
blade3Option: '3 Palas (Tripala - Estándar Freestyle)',
|
|
29
|
+
blade4Option: '4 Palas (Cuatripala - Máximo Agarre)',
|
|
30
30
|
throttleStickHeader: 'Simulador de Stick de Acelerador en Vivo',
|
|
31
|
-
throttleStickLabel: '
|
|
32
|
-
snapIdleLabel: '
|
|
33
|
-
snapHoverLabel: '
|
|
31
|
+
throttleStickLabel: 'Posición del Stick de Gas (%)',
|
|
32
|
+
snapIdleLabel: 'Ralentí (0%)',
|
|
33
|
+
snapHoverLabel: 'Sustentación',
|
|
34
34
|
snapCruiseLabel: 'Crucero (50%)',
|
|
35
|
-
snapPunchLabel: 'Punch
|
|
36
|
-
telemetryHeader: '
|
|
37
|
-
twrRatioLabel: '
|
|
38
|
-
hoverThrottleLabel: 'Punto de
|
|
35
|
+
snapPunchLabel: 'Punch Máximo (100%)',
|
|
36
|
+
telemetryHeader: 'Telemetría de Vuelo FPV y Diagnóstico de Rendimiento',
|
|
37
|
+
twrRatioLabel: 'Relación Empuje a Peso (TWR)',
|
|
38
|
+
hoverThrottleLabel: 'Punto de Sustentación (Hover)',
|
|
39
39
|
currentThrustLabel: 'Empuje Actual de Salida',
|
|
40
|
-
instantGForceLabel: 'Fuerza G Vertical
|
|
40
|
+
instantGForceLabel: 'Fuerza G Vertical Instantánea',
|
|
41
41
|
zeroToHundredLabel: 'Tiempo 0 a 100 km/h en Punch',
|
|
42
|
-
recommendedCamAngleLabel: '
|
|
43
|
-
windResistanceLabel: 'Velocidad de
|
|
44
|
-
totalMaxThrustLabel: 'Empuje
|
|
45
|
-
maxPitchAngleLabel: '
|
|
42
|
+
recommendedCamAngleLabel: 'Inclinación de Cámara FPV Recomendada',
|
|
43
|
+
windResistanceLabel: 'Velocidad de Penetración al Viento',
|
|
44
|
+
totalMaxThrustLabel: 'Empuje Estático Máximo Total',
|
|
45
|
+
maxPitchAngleLabel: 'Ángulo Máximo de Inclinación Sostenible',
|
|
46
46
|
tuningHeader: 'Recomendaciones de Ajuste Betaflight y PID',
|
|
47
|
-
tpaRecommendationLabel: '
|
|
48
|
-
dynamicIdleLabel: '
|
|
47
|
+
tpaRecommendationLabel: 'Atenuación PID de Gas (TPA)',
|
|
48
|
+
dynamicIdleLabel: 'Ralentí Dinámico Recomendado',
|
|
49
49
|
propwashRiskLabel: 'Autoridad de Control de Propwash',
|
|
50
50
|
tierUnderpoweredTitle: 'Inframotorizado o Alto Riesgo de Deriva por Viento',
|
|
51
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
|
|
52
|
+
tierCinematicTitle: 'Vuelo Suave y Continuo Cinemático',
|
|
53
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
|
|
54
|
+
tierFreestyleTitle: 'Freestyle Ágil y Deportivo',
|
|
55
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
56
|
tierAcroProTitle: 'Acrobacia de Alto Rendimiento y Bando Freestyle',
|
|
57
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
|
|
58
|
+
tierRacingExtremeTitle: 'Carreras Extremas de Drones de Competición',
|
|
59
59
|
tierRacingExtremeDesc: 'TWR superior a 13 a 1 entrega potencia descomunal y salidas de curva instantáneas requeridas en circuitos de carreras profesionales.',
|
|
60
60
|
hudThrustCurveTitle: 'Curva de Respuesta de Empuje No Lineal',
|
|
61
|
-
hudHoverMarker: 'Punto de
|
|
61
|
+
hudHoverMarker: 'Punto de Sustentación',
|
|
62
62
|
hudCurrentStickMarker: 'Stick Actual',
|
|
63
63
|
hudGForceLabel: 'Fuerzas G',
|
|
64
|
-
hudTiltAngleLabel: '
|
|
65
|
-
hudVectorPowerLabel: '
|
|
64
|
+
hudTiltAngleLabel: 'Ángulo de Cámara',
|
|
65
|
+
hudVectorPowerLabel: 'Telemetría de Potencia en Vivo',
|
|
66
66
|
};
|
|
67
67
|
|
|
68
68
|
const faqItems = [
|
|
69
69
|
{
|
|
70
|
-
question: '¿
|
|
71
|
-
answer: 'Para drones de freestyle, un TWR de 8 a 1 a 12 a 1 proporciona la
|
|
70
|
+
question: '¿Cuál es una buena relación 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 aceleración explosiva requerida para frenar caídas libres y superar giros de altas fuerzas G.',
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
|
-
question: '¿
|
|
75
|
-
answer: 'Los motores brushless generan empuje proporcional al cuadrado de las revoluciones. Debido a esto, el punto de
|
|
74
|
+
question: '¿Cómo 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 sustentación suele ubicarse entre el 20 y el 35 por ciento de recorrido de stick en montajes de alta potencia.',
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
question: '¿Por
|
|
79
|
-
answer: 'Drones con mayor TWR vuelan a velocidades crucero
|
|
78
|
+
question: '¿Por qué el ángulo de la cámara FPV depende del empuje del dron?',
|
|
79
|
+
answer: 'Drones con mayor TWR vuelan a velocidades de crucero más elevadas con inclinaciones frontales más pronunciadas. Para mantener el horizonte centrado en las gafas FPV, los pilotos inclinan la cámara entre 35 y 50 grados.',
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
|
-
question: '¿
|
|
83
|
-
answer: 'Las
|
|
82
|
+
question: '¿Cómo cambia la sensación de vuelo el número de palas de la hélice?',
|
|
83
|
+
answer: 'Las hélices bipalas ofrecen máxima eficiencia energética 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
84
|
},
|
|
85
85
|
];
|
|
86
86
|
|
|
87
87
|
const howToSteps = [
|
|
88
88
|
{
|
|
89
|
-
name: 'Seleccionar Ajuste
|
|
90
|
-
text: 'Ingresa el peso total en orden de vuelo incluyendo
|
|
89
|
+
name: 'Seleccionar Ajuste Rápido o Introducir Peso del Dron',
|
|
90
|
+
text: 'Ingresa el peso total en orden de vuelo incluyendo batería, cámara HD y accesorios en gramos.',
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
|
-
name: 'Configurar Motores y
|
|
94
|
-
text: 'Selecciona la cantidad de motores, el
|
|
93
|
+
name: 'Configurar Motores y Hélices',
|
|
94
|
+
text: 'Selecciona la cantidad de motores, el número de palas y el empuje estático máximo de banco especificado por el fabricante.',
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
name: 'Ajustar el Stick de Gas en Vivo',
|
|
98
|
-
text: 'Mueve el stick de acelerador o pulsa los accesos
|
|
98
|
+
text: 'Mueve el stick de acelerador o pulsa los accesos rápidos para observar la variación de vectores de empuje, fuerzas G y respuesta en la curva.',
|
|
99
99
|
},
|
|
100
100
|
];
|
|
101
101
|
|
|
102
102
|
const seoSections: SEOSection[] = [
|
|
103
103
|
{
|
|
104
104
|
type: 'title',
|
|
105
|
-
text: '
|
|
105
|
+
text: 'Aerodinámica de la Relación Empuje a Peso en Drones FPV',
|
|
106
106
|
level: 2,
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
109
|
type: 'paragraph',
|
|
110
|
-
html: 'La
|
|
110
|
+
html: 'La relación empuje a peso (TWR) determina la aceleración vertical y la autoridad de control de cualquier multirrotor. En el vuelo acrobático y de carreras FPV, contar con margen de empuje suficiente permite a los pilotos recuperarse de picados a velocidad terminal y maniobrar cerca de obstáculos con precisión. Comprender este perfil es fundamental para elegir motores, ESC y calibrar el firmware de vuelo.',
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
113
|
type: 'title',
|
|
114
|
-
text: '
|
|
114
|
+
text: 'Clasificación de Drones FPV y Métricas de Rendimiento',
|
|
115
115
|
level: 2,
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
118
|
type: 'table',
|
|
119
|
-
headers: ['Plataforma', 'Peso AUW
|
|
119
|
+
headers: ['Plataforma', 'Peso AUW Típico', 'TWR Objetivo', 'Gas en Sustentación', 'Tiempo 0 a 100 km/h', 'Inclinación FPV'],
|
|
120
120
|
rows: [
|
|
121
121
|
['1S TinyWhoop (65mm)', '32g', '4.5 a 1', '35 por ciento', '1.20 s', '15 deg a 25 deg'],
|
|
122
122
|
['4S Freestyle 3.5"', '250g', '12.0 a 1', '24 por ciento', '0.28 s', '35 deg a 45 deg'],
|
|
@@ -132,29 +132,29 @@ const seoSections: SEOSection[] = [
|
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
134
|
type: 'paragraph',
|
|
135
|
-
html: 'Los motores
|
|
135
|
+
html: 'Los motores eléctricos brushless no entregan empuje de manera lineal con la señal de control. La dinámica 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 más del 40 por ciento del empuje total. Gestionar esta respuesta mediante curvas expo en Betaflight proporciona resolución fina en vuelo de baja velocidad.',
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
138
|
type: 'list',
|
|
139
139
|
items: [
|
|
140
|
-
'Zona de
|
|
141
|
-
'Zona de crucero (35 a 65 por ciento de gas): Vuelo de
|
|
142
|
-
'Zona de punch
|
|
140
|
+
'Zona de sustentación (20 a 35 por ciento de gas): Rango de alta precisión para control de posición y vuelo estacionario.',
|
|
141
|
+
'Zona de crucero (35 a 65 por ciento de gas): Vuelo de traslación equilibrado con consumo energético sostenible.',
|
|
142
|
+
'Zona de punch máximo (70 a 100 por ciento de gas): Entrega de potencia extrema con altas fuerzas G verticales.',
|
|
143
143
|
],
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
type: 'title',
|
|
147
|
-
text: '
|
|
147
|
+
text: 'Elección de Hélices y Sintonización de Firmware Betaflight',
|
|
148
148
|
level: 2,
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
151
|
type: 'paragraph',
|
|
152
|
-
html: 'El
|
|
152
|
+
html: 'El diámetro, paso y número de palas de la hélice determinan cómo el par motor se transforma en empuje estático y velocidad punta. Para drones con TWR superior a 10 a 1, es aconsejable configurar atenuación TPA en Betaflight para evitar oscilaciones de D-Term a fondo de acelerador.',
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
type: 'tip',
|
|
156
156
|
title: 'Consejo de Ajuste Betaflight TPA',
|
|
157
|
-
html: 'En montajes de alta
|
|
157
|
+
html: 'En montajes de alta relación de empuje, activa TPA a partir de 1250 o 1350 con un ratio de 0.65. Esto atenuará las ganancias D a gas máximo manteniendo el dron suave y sin vibraciones en rectas veloces.',
|
|
158
158
|
},
|
|
159
159
|
];
|
|
160
160
|
|
|
@@ -4,157 +4,157 @@ import type { SEOSection } from '../../../types';
|
|
|
4
4
|
import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
|
|
5
5
|
|
|
6
6
|
const slug = 'calculateur-rapport-poussee-poids-drone-fpv';
|
|
7
|
-
const title = 'Calculateur de Rapport
|
|
8
|
-
const description = 'Calculez la
|
|
7
|
+
const title = 'Calculateur de Rapport Poussée Poids et Télémétrie de Vol Drone FPV';
|
|
8
|
+
const description = 'Calculez la poussée statique maximale, la courbe de gaz non linéaire, les forces G verticales, le point de stationnaire et le temps 0 à 100 pour drones FPV.';
|
|
9
9
|
|
|
10
10
|
const ui = {
|
|
11
|
-
title: 'Calculateur de Rapport
|
|
12
|
-
subtitle: 'Analysez les courbes de
|
|
11
|
+
title: 'Calculateur de Rapport Poussée Poids pour Drone FPV',
|
|
12
|
+
subtitle: 'Analysez les courbes de poussée, la réponse des gaz en direct, les forces G et la catégorie de vol',
|
|
13
13
|
presetsHeader: 'Configurations Rapides',
|
|
14
|
-
customPreset: '
|
|
14
|
+
customPreset: 'Personnalisé',
|
|
15
15
|
whoop1sPreset: '1S TinyWhoop (65mm)',
|
|
16
16
|
freestyle35Preset: '4S Freestyle 3.5 Pouces',
|
|
17
17
|
freestyle5Preset: '6S Freestyle 5 Pouces Pro',
|
|
18
18
|
longrange7Preset: '6S Mountain LR 7 Pouces',
|
|
19
19
|
cinelifter8Preset: '8S Cinelifter Lourd X8',
|
|
20
|
-
specsHeader: '
|
|
20
|
+
specsHeader: 'Caractéristiques du Drone et Propulsion',
|
|
21
21
|
auwGramsLabel: 'Masse Totale avec Batterie (g)',
|
|
22
22
|
motorCountLabel: 'Configuration des Moteurs',
|
|
23
|
-
thrustPerMotorLabel: '
|
|
24
|
-
propellerSizeLabel: '
|
|
25
|
-
propellerPitchLabel: 'Pas de
|
|
23
|
+
thrustPerMotorLabel: 'Poussée Statique Max par Moteur (g)',
|
|
24
|
+
propellerSizeLabel: 'Diamètre Hélice (pouces)',
|
|
25
|
+
propellerPitchLabel: 'Pas de Hélice (pouces)',
|
|
26
26
|
bladeCountLabel: 'Nombre de Pales',
|
|
27
|
-
blade2Option: '2 Pales (Bipale -
|
|
27
|
+
blade2Option: '2 Pales (Bipale - Efficacité Maximale)',
|
|
28
28
|
blade3Option: '3 Pales (Tripale - Standard Freestyle)',
|
|
29
|
-
blade4Option: '4 Pales (Quadripale -
|
|
29
|
+
blade4Option: '4 Pales (Quadripale - Adhérence Maximale)',
|
|
30
30
|
throttleStickHeader: 'Simulateur de Manette des Gaz en Direct',
|
|
31
31
|
throttleStickLabel: 'Position des Gaz (%)',
|
|
32
32
|
snapIdleLabel: 'Ralenti (0%)',
|
|
33
33
|
snapHoverLabel: 'Stationnaire',
|
|
34
|
-
snapCruiseLabel: '
|
|
34
|
+
snapCruiseLabel: 'Croisière (50%)',
|
|
35
35
|
snapPunchLabel: 'Plein Gaz (100%)',
|
|
36
|
-
telemetryHeader: '
|
|
37
|
-
twrRatioLabel: 'Rapport
|
|
36
|
+
telemetryHeader: 'Télémétrie de Vol FPV et Diagnostic',
|
|
37
|
+
twrRatioLabel: 'Rapport Poussée Poids (TWR)',
|
|
38
38
|
hoverThrottleLabel: 'Point de Gaz en Stationnaire',
|
|
39
|
-
currentThrustLabel: '
|
|
40
|
-
instantGForceLabel: 'Force G Verticale
|
|
41
|
-
zeroToHundredLabel: 'Temps 0
|
|
42
|
-
recommendedCamAngleLabel: 'Inclinaison de
|
|
43
|
-
windResistanceLabel: 'Vitesse de
|
|
44
|
-
totalMaxThrustLabel: '
|
|
39
|
+
currentThrustLabel: 'Poussée Actuelle Générée',
|
|
40
|
+
instantGForceLabel: 'Force G Verticale Instantanée',
|
|
41
|
+
zeroToHundredLabel: 'Temps 0 à 100 km/h en Punch',
|
|
42
|
+
recommendedCamAngleLabel: 'Inclinaison de Caméra FPV Conseillée',
|
|
43
|
+
windResistanceLabel: 'Vitesse de Pénétration Face au Vent',
|
|
44
|
+
totalMaxThrustLabel: 'Poussée Statique Totale Maximale',
|
|
45
45
|
maxPitchAngleLabel: 'Angle Inclinaison Soutenable',
|
|
46
|
-
tuningHeader: 'Recommandations de
|
|
47
|
-
tpaRecommendationLabel: '
|
|
48
|
-
dynamicIdleLabel: 'Ralenti Dynamique
|
|
49
|
-
propwashRiskLabel: '
|
|
50
|
-
tierUnderpoweredTitle: 'Sous
|
|
51
|
-
tierUnderpoweredDesc: 'TWR
|
|
52
|
-
tierCinematicTitle: 'Vol
|
|
53
|
-
tierCinematicDesc: 'TWR entre 2 pour 1 et 4 pour 1 assurant un
|
|
46
|
+
tuningHeader: 'Recommandations de Réglage Betaflight et PID',
|
|
47
|
+
tpaRecommendationLabel: 'Atténuation PID des Gaz (TPA)',
|
|
48
|
+
dynamicIdleLabel: 'Ralenti Dynamique Recommandé',
|
|
49
|
+
propwashRiskLabel: 'Autorité sur Turbulences Propwash',
|
|
50
|
+
tierUnderpoweredTitle: 'Sous Motorisé ou Risque de Dérive au Vent',
|
|
51
|
+
tierUnderpoweredDesc: 'TWR inférieur à 2 pour 1 insuffisant pour rattraper les chutes rapides. Adapté uniquement au vol intérieur calme.',
|
|
52
|
+
tierCinematicTitle: 'Vol Cinématique Fluide',
|
|
53
|
+
tierCinematicDesc: 'TWR entre 2 pour 1 et 4 pour 1 assurant un contrôle souple des gaz et des prises de vue stables.',
|
|
54
54
|
tierFreestyleTitle: 'Freestyle Sportif et Agile',
|
|
55
|
-
tierFreestyleDesc: 'TWR entre 4 pour 1 et 8 pour 1 offrant des
|
|
55
|
+
tierFreestyleDesc: 'TWR entre 4 pour 1 et 8 pour 1 offrant des réponses vives et de bonnes reprises acrobatiques.',
|
|
56
56
|
tierAcroProTitle: 'Acrobatie Haute Performance et Freestyle Bando',
|
|
57
|
-
tierAcroProDesc: 'TWR entre 8 pour 1 et 13 pour 1
|
|
58
|
-
tierRacingExtremeTitle: 'Course de Drones
|
|
59
|
-
tierRacingExtremeDesc: 'TWR
|
|
60
|
-
hudThrustCurveTitle: 'Courbe de
|
|
61
|
-
hudHoverMarker: 'Point Stationnaire',
|
|
57
|
+
tierAcroProDesc: 'TWR entre 8 pour 1 et 13 pour 1 délivrant des accélérations explosives et une annulation nette du propwash.',
|
|
58
|
+
tierRacingExtremeTitle: 'Course de Drones Extrême',
|
|
59
|
+
tierRacingExtremeDesc: 'TWR supérieur à 13 pour 1 fournissant la puissance nécessaire aux circuits de compétition FPV.',
|
|
60
|
+
hudThrustCurveTitle: 'Courbe de Réponse de Poussée Non Linéaire',
|
|
61
|
+
hudHoverMarker: 'Point de Stationnaire',
|
|
62
62
|
hudCurrentStickMarker: 'Manette Actuelle',
|
|
63
63
|
hudGForceLabel: 'Forces G',
|
|
64
|
-
hudTiltAngleLabel: 'Angle
|
|
65
|
-
hudVectorPowerLabel: '
|
|
64
|
+
hudTiltAngleLabel: 'Angle Caméra',
|
|
65
|
+
hudVectorPowerLabel: 'Télémétrie de Puissance en Direct',
|
|
66
66
|
};
|
|
67
67
|
|
|
68
68
|
const faqItems = [
|
|
69
69
|
{
|
|
70
|
-
question: 'Quel est
|
|
71
|
-
answer:
|
|
70
|
+
question: 'Quel est un bon rapport poussée poids pour le freestyle FPV ?',
|
|
71
|
+
answer: "Pour le vol freestyle moderne, un TWR de 8:1 à 12:1 fournit l'accélération explosive nécessaire pour stopper les chutes libres et négocier des virages serrés.",
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
|
-
question: 'Comment la courbe non
|
|
75
|
-
answer:
|
|
74
|
+
question: 'Comment la courbe non linéaire des gaz influence-t-elle le stationnaire ?',
|
|
75
|
+
answer: "Les moteurs brushless génèrent une poussée proportionnelle au carré du régime moteur. Le point d'équilibre stationnaire se situe donc généralement entre 20 et 35 % de la course des gaz.",
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
question:
|
|
79
|
-
answer:
|
|
78
|
+
question: "Pourquoi l'angle de la caméra FPV dépend-il de la poussée du drone ?",
|
|
79
|
+
answer: "Un drone à fort rapport poussée poids vole à des vitesses de croisière plus élevées avec une assiette plus inclinée vers l'avant. Pour conserver l'horizon centré, les pilotes règlent leur caméra entre 35 et 50 degrés.",
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
|
-
question:
|
|
83
|
-
answer:
|
|
82
|
+
question: "Comment le nombre de pales de l'hélice modifie-t-il les sensations de vol ?",
|
|
83
|
+
answer: "Les hélices bipales offrent un rendement énergétique maximal et une vitesse de pointe élevée. Les tripales équilibrent réactivité et accroche en virage pour le freestyle. Les quadripales apportent un freinage immédiat à bas régime.",
|
|
84
84
|
},
|
|
85
85
|
];
|
|
86
86
|
|
|
87
87
|
const howToSteps = [
|
|
88
88
|
{
|
|
89
|
-
name: '
|
|
90
|
-
text: 'Indiquez la masse totale en ordre de vol en grammes
|
|
89
|
+
name: 'Sélectionner un Profil ou Entrer la Masse du Drone',
|
|
90
|
+
text: 'Indiquez la masse totale en ordre de vol en grammes incluant batterie, caméra HD et accessoires.',
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
|
-
name: 'Configurer les
|
|
94
|
-
text: 'Renseignez le nombre de moteurs, de pales et la
|
|
93
|
+
name: 'Configurer les Moteurs et Hélices',
|
|
94
|
+
text: 'Renseignez le nombre de moteurs, de pales et la poussée statique maximale spécifiée par le fabricant.',
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
|
-
name: 'Ajuster la
|
|
98
|
-
text: '
|
|
97
|
+
name: 'Ajuster la Manette des Gaz Virtuelle',
|
|
98
|
+
text: 'Déplacez le curseur des gaz pour observer en temps réel la variation des forces G, des vecteurs et de la courbe de poussée.',
|
|
99
99
|
},
|
|
100
100
|
];
|
|
101
101
|
|
|
102
102
|
const seoSections: SEOSection[] = [
|
|
103
103
|
{
|
|
104
104
|
type: 'title',
|
|
105
|
-
text: '
|
|
105
|
+
text: 'Aérodynamique du Rapport Poussée Poids sur les Drones FPV',
|
|
106
106
|
level: 2,
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
109
|
type: 'paragraph',
|
|
110
|
-
html:
|
|
110
|
+
html: "Le rapport poussée poids (TWR) détermine l'accélération verticale et l'autorité de contrôle de tout multirotor. En vol acrobatique et en course FPV, disposer d'une réserve de puissance suffisante permet aux pilotes d'interrompre des piqués à haute vitesse et de manœuvrer avec précision près des obstacles. Maîtriser cette dynamique est indispensable pour dimensionner moteurs, contrôleurs ESC et ajuster le firmware.",
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
113
|
type: 'title',
|
|
114
|
-
text: 'Classification des Drones FPV et
|
|
114
|
+
text: 'Classification des Drones FPV et Métriques de Performance',
|
|
115
115
|
level: 2,
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
118
|
type: 'table',
|
|
119
|
-
headers: ['Plateforme', 'Masse AUW Typique', 'TWR Cible', 'Gaz en Stationnaire', '
|
|
119
|
+
headers: ['Plateforme', 'Masse AUW Typique', 'TWR Cible', 'Gaz en Stationnaire', 'Temps 0 à 100 km/h', 'Angle FPV'],
|
|
120
120
|
rows: [
|
|
121
|
-
['1S TinyWhoop (65mm)', '32g', '4.5
|
|
122
|
-
['4S Freestyle 3.5"', '250g', '12.0
|
|
123
|
-
['6S Freestyle 5" Pro', '680g', '11.5
|
|
124
|
-
['6S Mountain LR 7"', '1150g', '8.3
|
|
125
|
-
['8S Cinelifter X8', '4200g', '6.1
|
|
121
|
+
['1S TinyWhoop (65mm)', '32g', '4.5 à 1', '35 pour cent', '1.20 s', '15 deg à 25 deg'],
|
|
122
|
+
['4S Freestyle 3.5"', '250g', '12.0 à 1', '24 pour cent', '0.28 s', '35 deg à 45 deg'],
|
|
123
|
+
['6S Freestyle 5" Pro', '680g', '11.5 à 1', '25 pour cent', '0.30 s', '35 deg à 50 deg'],
|
|
124
|
+
['6S Mountain LR 7"', '1150g', '8.3 à 1', '30 pour cent', '0.45 s', '20 deg à 30 deg'],
|
|
125
|
+
['8S Cinelifter X8', '4200g', '6.1 à 1', '38 pour cent', '0.70 s', '15 deg à 25 deg'],
|
|
126
126
|
],
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
129
|
type: 'title',
|
|
130
|
-
text: '
|
|
130
|
+
text: 'Réponse Non Linéaire des Gaz et Courbes de Poussée',
|
|
131
131
|
level: 2,
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
134
|
type: 'paragraph',
|
|
135
|
-
html: 'Les moteurs
|
|
135
|
+
html: 'Les moteurs électriques brushless ne délivrent pas une poussée strictement proportionnelle au signal de commande. La dynamique des fluides et la charge des hélices créent une courbe exponentielle où les 20 derniers pour cent de course de manette fournissent plus de 40 pour cent de la poussée globale.',
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
138
|
type: 'list',
|
|
139
139
|
items: [
|
|
140
|
-
'Zone de stationnaire (20
|
|
141
|
-
'Zone de
|
|
142
|
-
'Zone de plein gaz (70
|
|
140
|
+
'Zone de stationnaire (20 à 35 % de gaz): Plage de haute précision pour le maintien de position.',
|
|
141
|
+
'Zone de croisière (35 à 65 % de gaz): Vol de translation équilibré avec consommation modérée.',
|
|
142
|
+
'Zone de plein gaz (70 à 100 % de gaz): Délivrance de puissance maximale générant de fortes accélérations G.',
|
|
143
143
|
],
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
type: 'title',
|
|
147
|
-
text: 'Choix des
|
|
147
|
+
text: 'Choix des Hélices et Réglage Firmware Betaflight',
|
|
148
148
|
level: 2,
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
151
|
type: 'paragraph',
|
|
152
|
-
html:
|
|
152
|
+
html: "Le diamètre, le pas et le nombre de pales déterminent la conversion du couple moteur en poussée statique et vitesse de pointe. Pour les configurations avec TWR supérieur à 10:1, il est vivement recommandé d'activer l'atténuation TPA sous Betaflight pour supprimer les oscillations D-Term à plein régime.",
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
type: 'tip',
|
|
156
|
-
title: 'Conseil de
|
|
157
|
-
html:
|
|
156
|
+
title: 'Conseil de Réglage Betaflight TPA',
|
|
157
|
+
html: "Sur les montages à forte puissance, activez le TPA à partir de 1250 ou 1350 avec une valeur de 0.65. Cela atténuera le gain D à plein gaz pour garder un drone stable et sans vibrations en ligne droite.",
|
|
158
158
|
},
|
|
159
159
|
];
|
|
160
160
|
|
|
@@ -68,34 +68,34 @@ const ui = {
|
|
|
68
68
|
const faqItems = [
|
|
69
69
|
{
|
|
70
70
|
question: 'Quale rapporto spinta peso è ideale per un drone FPV freestyle?',
|
|
71
|
-
answer:
|
|
71
|
+
answer: "Per droni freestyle, un TWR compreso tra 8 a 1 e 12 a 1 offre l'accelerazione necessaria per arrestare tuffi in caduta libera e superare virate strette con agilità e stabilità.",
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
74
|
question: 'Come influisce la curva non lineare del gas sul volo stazionario?',
|
|
75
|
-
answer:
|
|
75
|
+
answer: "I motori brushless erogano spinta proporzionale al quadrato della velocità di rotazione. Il punto di hovering si colloca solitamente tra il 20 e il 35 per cento di corsa del gas per garantire sensibilità.",
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
question:
|
|
79
|
-
answer:
|
|
78
|
+
question: "Perché l'inclinazione della telecamera FPV dipende dalla spinta?",
|
|
79
|
+
answer: "I droni più veloci volano con un assetto inclinato in avanti. Per mantenere l'orizzonte centrato nel visore FPV, i piloti inclinano la telecamera tra 35 e 50 gradi per una visibilità ottimale.",
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
question: 'In che modo il numero di pale modifica il comportamento di volo?',
|
|
83
|
-
answer:
|
|
83
|
+
answer: "Le eliche bipala massimizzano l'autonomia e la velocità massima. Le tripala offrono il miglior equilibrio per il freestyle, mentre le quadripala aumentano l'aderenza e la capacità frenante in curva.",
|
|
84
84
|
},
|
|
85
85
|
];
|
|
86
86
|
|
|
87
87
|
const howToSteps = [
|
|
88
88
|
{
|
|
89
89
|
name: 'Inserire il peso del drone o scegliere un profilo',
|
|
90
|
-
text: 'Immetti il peso totale in ordine di volo inclusa la batteria e la telecamera in grammi.',
|
|
90
|
+
text: 'Immetti il peso totale in ordine di volo inclusa la batteria e la telecamera in grammi con precisione.',
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
93
|
name: 'Configurare motori ed eliche',
|
|
94
|
-
text: 'Specifica il numero di motori, di pale e la spinta statica al banco dichiarata dal produttore
|
|
94
|
+
text: 'Specifica il numero di motori, di pale e la spinta statica al banco dichiarata dal produttore per ogni unità.',
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
97
|
name: 'Regolare il comando gas in tempo reale',
|
|
98
|
-
text: 'Sposta il cursore del gas per visualizzare la spinta, le forze G e la posizione sulla curva di risposta.',
|
|
98
|
+
text: 'Sposta il cursore del gas per visualizzare la spinta, le forze G e la posizione sulla curva di risposta dinamica.',
|
|
99
99
|
},
|
|
100
100
|
];
|
|
101
101
|
|
|
@@ -107,7 +107,7 @@ const seoSections: SEOSection[] = [
|
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
109
|
type: 'paragraph',
|
|
110
|
-
html:
|
|
110
|
+
html: "Il rapporto spinta peso (TWR) determina l'accelerazione e la precisione di controllo nei droni multirotore. Nel volo acrobatico FPV, una riserva di potenza adeguata consente di recuperare manovre complesse con totale sicurezza ed eccellente fluidità.",
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
113
|
type: 'title',
|
|
@@ -132,13 +132,13 @@ const seoSections: SEOSection[] = [
|
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
134
|
type: 'paragraph',
|
|
135
|
-
html:
|
|
135
|
+
html: "I motori elettrici generano spinta con andamento esponenziale rispetto al comando. L'ultimo 20 per cento di escursione del gas sviluppa oltre il 40 per cento della forza totale con altissima intensità.",
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
138
|
type: 'list',
|
|
139
139
|
items: [
|
|
140
140
|
'Zona di hovering (20 a 35 per cento): Controllo fine per passaggi ravvicinati.',
|
|
141
|
-
'Zona di crociera (35 a 65 per cento): Volo rettilineo equilibrato con consumi contenuti.',
|
|
141
|
+
'Zona di crociera (35 a 65 per cento): Volo rettilineo equilibrato con consumi contenuti ed elevata efficienza.',
|
|
142
142
|
'Zona di pieno gas (70 a 100 per cento): Massima spinta verticale con forze G elevate.',
|
|
143
143
|
],
|
|
144
144
|
},
|
|
@@ -149,7 +149,7 @@ const seoSections: SEOSection[] = [
|
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
151
|
type: 'paragraph',
|
|
152
|
-
html: 'Per droni con TWR superiore a 10 a 1 è opportuno abilitare la funzione Throttle PID Attenuation (TPA) in Betaflight per prevenire oscillazioni a pieno gas
|
|
152
|
+
html: 'Per droni con TWR superiore a 10 a 1 è opportuno abilitare la funzione Throttle PID Attenuation (TPA) in Betaflight per prevenire oscillazioni a pieno gas e preservare la stabilità.',
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
type: 'tip',
|
|
@@ -4,119 +4,119 @@ import type { SEOSection } from '../../../types';
|
|
|
4
4
|
import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
|
|
5
5
|
|
|
6
6
|
const slug = 'kalkulator-stosunku-ciagu-do-masy-drona-fpv';
|
|
7
|
-
const title = 'Kalkulator Stosunku
|
|
8
|
-
const description = 'Oblicz maksymalny
|
|
7
|
+
const title = 'Kalkulator Stosunku Ciągu do Masy i Telemetrii Lotu Drona FPV';
|
|
8
|
+
const description = 'Oblicz maksymalny ciąg statyczny, nieliniową krzywą gazu, przeciążenia pionowe G, punkt zawisu i czas przyspieszenia 0 do 100 dla dronów FPV.';
|
|
9
9
|
|
|
10
10
|
const ui = {
|
|
11
|
-
title: 'Kalkulator Stosunku
|
|
12
|
-
subtitle: 'Analizuj krzywe
|
|
11
|
+
title: 'Kalkulator Stosunku Ciągu do Masy Drona FPV',
|
|
12
|
+
subtitle: 'Analizuj krzywe ciągu, reakcję drążka gazu na żywo, siły przeciążenia i kategorie zwrotności',
|
|
13
13
|
presetsHeader: 'Szybkie Ustawienia',
|
|
14
14
|
customPreset: 'Niestandardowy',
|
|
15
15
|
whoop1sPreset: '1S TinyWhoop (65mm)',
|
|
16
16
|
freestyle35Preset: '4S Freestyle 3.5 Cala',
|
|
17
17
|
freestyle5Preset: '6S Freestyle 5 Cali Pro',
|
|
18
18
|
longrange7Preset: '6S Mountain LR 7 Cali',
|
|
19
|
-
cinelifter8Preset: '8S
|
|
20
|
-
specsHeader: 'Dane Drona i
|
|
21
|
-
auwGramsLabel: 'Masa
|
|
22
|
-
motorCountLabel: 'Konfiguracja
|
|
23
|
-
thrustPerMotorLabel: 'Maksymalny
|
|
24
|
-
propellerSizeLabel: '
|
|
25
|
-
propellerPitchLabel: 'Skok
|
|
26
|
-
bladeCountLabel: 'Liczba
|
|
27
|
-
blade2Option: '2
|
|
28
|
-
blade3Option: '3
|
|
29
|
-
blade4Option: '4
|
|
30
|
-
throttleStickHeader: 'Symulator
|
|
31
|
-
throttleStickLabel: 'Pozycja
|
|
32
|
-
snapIdleLabel: 'Bieg
|
|
19
|
+
cinelifter8Preset: '8S Ciężki Cinelifter X8',
|
|
20
|
+
specsHeader: 'Dane Drona i Napędu',
|
|
21
|
+
auwGramsLabel: 'Masa Całkowita z Baterią (g)',
|
|
22
|
+
motorCountLabel: 'Konfiguracja Silników',
|
|
23
|
+
thrustPerMotorLabel: 'Maksymalny Ciąg Statyczny na Silnik (g)',
|
|
24
|
+
propellerSizeLabel: 'Średnica Śmigła (cale)',
|
|
25
|
+
propellerPitchLabel: 'Skok Śmigła (cale)',
|
|
26
|
+
bladeCountLabel: 'Liczba Łopatek Śmigła',
|
|
27
|
+
blade2Option: '2 Łopatki (Dwułopatowe - Maksymalna Wydajność)',
|
|
28
|
+
blade3Option: '3 Łopatki (Trójłopatowe - Standard Freestyle)',
|
|
29
|
+
blade4Option: '4 Łopatki (Czterołopatowe - Maksymalny Chwyt)',
|
|
30
|
+
throttleStickHeader: 'Symulator Drążka Gazu na Żywo',
|
|
31
|
+
throttleStickLabel: 'Pozycja Drążka Gazu (%)',
|
|
32
|
+
snapIdleLabel: 'Bieg Jałowy (0%)',
|
|
33
33
|
snapHoverLabel: 'Punkt Zawisu',
|
|
34
34
|
snapCruiseLabel: 'Przelot (50%)',
|
|
35
|
-
snapPunchLabel: '
|
|
35
|
+
snapPunchLabel: 'Pełny Ciąg (100%)',
|
|
36
36
|
telemetryHeader: 'Telemetria Lotu FPV i Diagnostyka',
|
|
37
|
-
twrRatioLabel: 'Stosunek
|
|
37
|
+
twrRatioLabel: 'Stosunek Ciągu do Masy (TWR)',
|
|
38
38
|
hoverThrottleLabel: 'Pozycja Gazu w Zawisie',
|
|
39
|
-
currentThrustLabel: 'Aktualnie Wytwarzany
|
|
40
|
-
instantGForceLabel: 'Chwilowe
|
|
39
|
+
currentThrustLabel: 'Aktualnie Wytwarzany Ciąg',
|
|
40
|
+
instantGForceLabel: 'Chwilowe Przeciążenie Pionowe G',
|
|
41
41
|
zeroToHundredLabel: 'Czas 0 do 100 km/h w Punch',
|
|
42
|
-
recommendedCamAngleLabel: 'Zalecany
|
|
43
|
-
windResistanceLabel: '
|
|
44
|
-
totalMaxThrustLabel: '
|
|
45
|
-
maxPitchAngleLabel: 'Maksymalny
|
|
46
|
-
tuningHeader: 'Zalecenia
|
|
47
|
-
tpaRecommendationLabel: '
|
|
42
|
+
recommendedCamAngleLabel: 'Zalecany Kąt Kamery FPV',
|
|
43
|
+
windResistanceLabel: 'Prędkość Przebicia Wiatru',
|
|
44
|
+
totalMaxThrustLabel: 'Całkowity Maksymalny Ciąg Statyczny',
|
|
45
|
+
maxPitchAngleLabel: 'Maksymalny Kąt Pochylenia',
|
|
46
|
+
tuningHeader: 'Zalecenia Dotyczące Betaflight i Strojenia PID',
|
|
47
|
+
tpaRecommendationLabel: 'Tłumienie PID Gazu (TPA)',
|
|
48
48
|
dynamicIdleLabel: 'Zalecany Dynamic Idle',
|
|
49
49
|
propwashRiskLabel: 'Kontrola nad Turbulencjami Propwash',
|
|
50
|
-
tierUnderpoweredTitle: 'Zbyt
|
|
51
|
-
tierUnderpoweredDesc: 'TWR
|
|
52
|
-
tierCinematicTitle: '
|
|
53
|
-
tierCinematicDesc: 'TWR
|
|
50
|
+
tierUnderpoweredTitle: 'Zbyt Mały Napęd lub Ryzyko Znoszenia przez Wiatr',
|
|
51
|
+
tierUnderpoweredDesc: 'TWR poniżej 2 do 1 nie zapewnia wystarczającej siły do wyhamowania szybkiego opadania. Nadaje się tylko do lotów wewnątrz.',
|
|
52
|
+
tierCinematicTitle: 'Płynny Lot Filmowy',
|
|
53
|
+
tierCinematicDesc: 'TWR pomiędzy 2 do 1 a 4 do 1 gwarantuje łagodną kontrolę gazu i stabilne ujęcia bez drgań.',
|
|
54
54
|
tierFreestyleTitle: 'Sportowy i Zwrotny Freestyle',
|
|
55
|
-
tierFreestyleDesc: 'TWR
|
|
55
|
+
tierFreestyleDesc: 'TWR pomiędzy 4 do 1 a 8 do 1 daje natychmiastową reakcję na drążek i czyste manewry akrobacyjne.',
|
|
56
56
|
tierAcroProTitle: 'Wyczynowa Akrobacja i Freestyle Bando',
|
|
57
|
-
tierAcroProDesc: 'TWR
|
|
58
|
-
tierRacingExtremeTitle: 'Ekstremalne
|
|
59
|
-
tierRacingExtremeDesc: 'TWR
|
|
60
|
-
hudThrustCurveTitle: 'Nieliniowa Krzywa Reakcji
|
|
57
|
+
tierAcroProDesc: 'TWR pomiędzy 8 do 1 a 13 do 1 zapewnia błyskawiczne przyspieszenie pionowe i natychmiastowe tłumienie propwash.',
|
|
58
|
+
tierRacingExtremeTitle: 'Ekstremalne Wyścigi Dronów',
|
|
59
|
+
tierRacingExtremeDesc: 'TWR powyżej 13 do 1 dostarcza potężnej mocy niezbędnej na profesjonalnych torach wyścigowych FPV.',
|
|
60
|
+
hudThrustCurveTitle: 'Nieliniowa Krzywa Reakcji Ciągu',
|
|
61
61
|
hudHoverMarker: 'Punkt Zawisu',
|
|
62
|
-
hudCurrentStickMarker: 'Aktualny
|
|
63
|
-
hudGForceLabel: '
|
|
64
|
-
hudTiltAngleLabel: '
|
|
65
|
-
hudVectorPowerLabel: 'Telemetria
|
|
62
|
+
hudCurrentStickMarker: 'Aktualny Drążek',
|
|
63
|
+
hudGForceLabel: 'Siły G',
|
|
64
|
+
hudTiltAngleLabel: 'Kąt Kamery',
|
|
65
|
+
hudVectorPowerLabel: 'Telemetria Mocy na Żywo',
|
|
66
66
|
};
|
|
67
67
|
|
|
68
68
|
const faqItems = [
|
|
69
69
|
{
|
|
70
|
-
question: 'Jaki stosunek
|
|
71
|
-
answer: 'Dla
|
|
70
|
+
question: 'Jaki stosunek ciągu do masy jest najlepszy do freestyle FPV?',
|
|
71
|
+
answer: 'Dla dronów freestyle optymalny TWR wynosi od 8:1 do 12:1. Zapewnia to natychmiastową siłę potrzebną do wyhamowania swobodnego spadania i płynnych nawrotów.',
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
|
-
question: 'Jak nieliniowa
|
|
75
|
-
answer: 'Silniki bezszczotkowe
|
|
74
|
+
question: 'Jak nieliniowa charakterystyka gazu wpływa na zawis?',
|
|
75
|
+
answer: 'Silniki bezszczotkowe generują ciąg proporcjonalnie do kwadratu prędkości obrotowej. Z tego powodu punkt zawisu przypada zwykle między 20 a 35 procentem zakresu drążka.',
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
question: 'Dlaczego
|
|
79
|
-
answer: 'Drony o
|
|
78
|
+
question: 'Dlaczego kąt kamery FPV zależy od mocy drona?',
|
|
79
|
+
answer: 'Drony o wyższym TWR poruszają się z większą prędkością przelotową przy mocniejszym pochyleniu w przód. Aby horyzont pozostał w centrum gogli, piloci ustawiają kąt kamery od 35 do 50 stopni.',
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
|
-
question: 'Jak liczba
|
|
83
|
-
answer: '
|
|
82
|
+
question: 'Jak liczba łopatek śmigła zmienia właściwości lotne?',
|
|
83
|
+
answer: 'Śmigła dwułopatowe gwarantują najwyższą wydajność energetyczną i prędkość maksymalną. Trójłopatowe to złoty standard freestyle. Czterołopatowe zapewniają maksymalny chwyt i hamowanie.',
|
|
84
84
|
},
|
|
85
85
|
];
|
|
86
86
|
|
|
87
87
|
const howToSteps = [
|
|
88
88
|
{
|
|
89
|
-
name: '
|
|
90
|
-
text: 'Wpisz
|
|
89
|
+
name: 'Wybierz Profil lub Wprowadź Masę Drona',
|
|
90
|
+
text: 'Wpisz całkowitą masę startową drona wraz z baterią i kamerą w gramach.',
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
|
-
name: 'Skonfiguruj
|
|
94
|
-
text: '
|
|
93
|
+
name: 'Skonfiguruj Silniki i Śmigła',
|
|
94
|
+
text: 'Podaj liczbę silników, łopatek śmigła oraz maksymalny ciąg statyczny podany przez producenta.',
|
|
95
95
|
},
|
|
96
96
|
{
|
|
97
|
-
name: '
|
|
98
|
-
text: 'Przesuwaj
|
|
97
|
+
name: 'Dostosuj Pozycję Drążka Gazu',
|
|
98
|
+
text: 'Przesuwaj suwak gazu, aby obserwować na żywo generowane przeciążenia, wektory siły i punkt na krzywej.',
|
|
99
99
|
},
|
|
100
100
|
];
|
|
101
101
|
|
|
102
102
|
const seoSections: SEOSection[] = [
|
|
103
103
|
{
|
|
104
104
|
type: 'title',
|
|
105
|
-
text: 'Aerodynamika Stosunku
|
|
105
|
+
text: 'Aerodynamika Stosunku Ciągu do Masy w Dronach FPV',
|
|
106
106
|
level: 2,
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
109
|
type: 'paragraph',
|
|
110
|
-
html: 'Stosunek
|
|
110
|
+
html: 'Stosunek ciągu do masy (TWR) decyduje o przyspieszeniu pionowym i kontroli nad wielowirnikowcem. W wyścigach i akrobacji FPV odpowiedni zapas mocy pozwala pilotom wyciągać drona z pionowych nurkowań i manewrować tuż przy przeszkodach.',
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
113
|
type: 'title',
|
|
114
|
-
text: 'Klasyfikacja
|
|
114
|
+
text: 'Klasyfikacja Dronów FPV i Przykładowe Osiągi',
|
|
115
115
|
level: 2,
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
118
|
type: 'table',
|
|
119
|
-
headers: ['Platforma', 'Typowa Masa AUW', 'Docelowy TWR', '
|
|
119
|
+
headers: ['Platforma', 'Typowa Masa AUW', 'Docelowy TWR', 'Gaz w Zawisie', 'Czas 0 do 100 km/h', 'Kąt FPV'],
|
|
120
120
|
rows: [
|
|
121
121
|
['1S TinyWhoop (65mm)', '32g', '4.5 do 1', '35 procent', '1.20 s', '15 deg do 25 deg'],
|
|
122
122
|
['4S Freestyle 3.5"', '250g', '12.0 do 1', '24 procent', '0.28 s', '35 deg do 45 deg'],
|
|
@@ -127,34 +127,34 @@ const seoSections: SEOSection[] = [
|
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
129
|
type: 'title',
|
|
130
|
-
text: 'Nieliniowa
|
|
130
|
+
text: 'Nieliniowa Odpowiedź Przepustnicy i Krzywe Ciągu',
|
|
131
131
|
level: 2,
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
134
|
type: 'paragraph',
|
|
135
|
-
html: 'Silniki
|
|
135
|
+
html: 'Silniki elektryczne nie oddają ciągu liniowo w stosunku do sygnału sterującego. Aerodynamika łopat tworzy krzywą wykładniczą, w której ostatnie 20 procent skoku drążka dostarcza ponad 40 procent całkowitej siły ciągu.',
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
138
|
type: 'list',
|
|
139
139
|
items: [
|
|
140
|
-
'
|
|
141
|
-
'
|
|
142
|
-
'
|
|
140
|
+
'Strefa zawisu (20 do 35 procent gazu): Precyzyjna kontrola wysokości przy spokojnym locie.',
|
|
141
|
+
'Strefa przelotowa (35 do 65 procent gazu): Płynny lot ze zrównoważonym zużyciem energii.',
|
|
142
|
+
'Strefa pełnego ciągu (70 do 100 procent gazu): Ekstremalna dynamika i wysokie przeciążenia G.',
|
|
143
143
|
],
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
type: 'title',
|
|
147
|
-
text: '
|
|
147
|
+
text: 'Wybór Śmigieł i Strojenie Oprogramowania Betaflight',
|
|
148
148
|
level: 2,
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
151
|
type: 'paragraph',
|
|
152
|
-
html: '
|
|
152
|
+
html: 'Średnica, skok i geometria łopatek decydują o zamianie momentu obrotowego na ciąg statyczny i prędkość. Przy TWR przekraczającym 10:1 warto włączyć funkcję TPA w Betaflight, aby wyeliminować drgania przy pełnym otwarciu przepustnicy.',
|
|
153
153
|
},
|
|
154
154
|
{
|
|
155
155
|
type: 'tip',
|
|
156
|
-
title: '
|
|
157
|
-
html: '
|
|
156
|
+
title: 'Wskazówka Dotycząca Strojenia Betaflight TPA',
|
|
157
|
+
html: 'Dla mocnych napędów ustaw próg TPA na 1250 lub 1350 z wartością 0.65. Pozwoli to zachować pełną stabilność bez oscylacji podczas szybkich przelotów na pełnym gazie.',
|
|
158
158
|
},
|
|
159
159
|
];
|
|
160
160
|
|