@jjlmoya/utils-drones 1.30.0 → 1.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/category/i18n/en.ts +1 -1
- package/src/category/i18n/fr.ts +1 -1
- package/src/category/index.ts +2 -0
- package/src/components/PreviewNavSidebar.astro +116 -116
- package/src/components/PreviewToolbar.astro +143 -143
- package/src/data.ts +1 -1
- package/src/entries.ts +4 -0
- package/src/env.d.ts +1 -1
- package/src/index.ts +1 -1
- package/src/layouts/PreviewLayout.astro +118 -118
- package/src/pages/[locale].astro +251 -251
- package/src/pages/index.astro +4 -4
- package/src/tests/faq_count.test.ts +1 -1
- package/src/tests/locale_completeness.test.ts +1 -2
- package/src/tests/mocks/astro_mock.js +1 -1
- package/src/tests/no_h1_in_components.test.ts +1 -1
- package/src/tests/tool_validation.test.ts +17 -17
- package/src/tool/antenna-length-calculator/bibliography.astro +6 -6
- package/src/tool/antenna-length-calculator/component.astro +329 -329
- package/src/tool/antenna-length-calculator/seo.astro +15 -15
- package/src/tool/drone-battery-c-rating-calculator/i18n/de.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/en.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/es.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/id.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/ja.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/ko.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/nl.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/pl.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/ru.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/sv.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/tr.ts +192 -192
- package/src/tool/drone-battery-c-rating-calculator/i18n/zh.ts +192 -192
- package/src/tool/drone-flight-time/component.astro +187 -187
- package/src/tool/drone-flight-time/seo.astro +15 -15
- package/src/tool/drone-motor-propeller-calculator/bibliography.astro +6 -0
- package/src/tool/drone-motor-propeller-calculator/bibliography.ts +12 -0
- package/src/tool/drone-motor-propeller-calculator/component.astro +109 -0
- package/src/tool/drone-motor-propeller-calculator/controller.ts +174 -0
- package/src/tool/drone-motor-propeller-calculator/dom-views.ts +78 -0
- package/src/tool/drone-motor-propeller-calculator/drone-motor-propeller-calculator.css +562 -0
- package/src/tool/drone-motor-propeller-calculator/entry.ts +27 -0
- package/src/tool/drone-motor-propeller-calculator/evaluator.ts +14 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/de.ts +202 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/en.ts +202 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/es.ts +202 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/fr.ts +202 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/id.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/it.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/ja.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/ko.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/nl.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/pl.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/pt.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/ru.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/sv.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/tr.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/i18n/zh.ts +192 -0
- package/src/tool/drone-motor-propeller-calculator/index.ts +11 -0
- package/src/tool/drone-motor-propeller-calculator/logic.test.ts +56 -0
- package/src/tool/drone-motor-propeller-calculator/logic.ts +108 -0
- package/src/tool/drone-motor-propeller-calculator/seo.astro +15 -0
- package/src/tool/drone-motor-propeller-calculator/storage.ts +26 -0
- package/src/tool/drone-motor-propeller-calculator/ui.ts +55 -0
- package/src/tool/gps-coordinates-converter/component.astro +275 -275
- package/src/tool/gps-coordinates-converter/seo.astro +15 -15
- package/src/tools.ts +3 -0
|
@@ -1,192 +1,192 @@
|
|
|
1
|
-
import type { DroneBatteryCRatingCalculatorLocaleContent } from '../entry';
|
|
2
|
-
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
-
import type { SEOSection } from '../../../types';
|
|
4
|
-
import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
|
|
5
|
-
|
|
6
|
-
const slug = 'drone-battery-c-rating-calculator';
|
|
7
|
-
const title = 'Drone LiPo Battery C Rating and Continuous Discharge Calculator';
|
|
8
|
-
const description = 'Calculate continuous discharge current, realistic C rating, voltage sag, and flight safety for drone LiPo batteries based on internal resistance and quadcopter motor draw.';
|
|
9
|
-
|
|
10
|
-
const ui = {
|
|
11
|
-
title: 'Drone LiPo Battery C Rating Calculator',
|
|
12
|
-
subtitle: 'Analyze realistic continuous discharge, burst requirements, and voltage sag for quadcopters',
|
|
13
|
-
lipoSpecsHeader: 'Battery Specifications',
|
|
14
|
-
capacityLabel: 'Capacity (mAh)',
|
|
15
|
-
claimedCRatingLabel: 'Claimed C Rating',
|
|
16
|
-
cellCountLabel: 'Cell Count (Series)',
|
|
17
|
-
chemistryLabel: 'Battery Chemistry',
|
|
18
|
-
internalResistanceLabel: 'Internal Resistance per Cell (mΩ)',
|
|
19
|
-
quadSpecsHeader: 'Quadcopter Power Draw',
|
|
20
|
-
motorCountLabel: 'Motor Count',
|
|
21
|
-
peakMotorCurrentLabel: 'Peak Motor Current (Amps)',
|
|
22
|
-
auxCurrentLabel: 'Auxiliary Draw (VTX, FC, Cam) (Amps)',
|
|
23
|
-
presetSelectLabel: 'Quick Setup Presets',
|
|
24
|
-
customPreset: 'Custom Setup',
|
|
25
|
-
whoopPreset: '1S TinyWhoop',
|
|
26
|
-
freestyle5Preset: '6S 5-Inch Freestyle',
|
|
27
|
-
cinewhoopPreset: '4S 3-Inch CineWhoop',
|
|
28
|
-
longRange7Preset: '6S 7-Inch Long Range',
|
|
29
|
-
racing5Preset: '6S 5-Inch Racing',
|
|
30
|
-
resultsHeader: 'Power and Performance Analysis',
|
|
31
|
-
claimedMaxCurrentLabel: 'Claimed Max Current',
|
|
32
|
-
realisticCRatingLabel: 'Realistic Continuous C Rating',
|
|
33
|
-
realisticMaxCurrentLabel: 'Realistic Continuous Current',
|
|
34
|
-
totalPeakDrawLabel: 'Total Peak Power Draw',
|
|
35
|
-
voltageSagLabel: 'Estimated Voltage Sag',
|
|
36
|
-
sagNominalVoltageLabel: 'Nominal Voltage Under Load',
|
|
37
|
-
flightTimeFullThrottleLabel: 'Full Throttle Runtime',
|
|
38
|
-
flightTimeHoverLabel: 'Estimated Hover Runtime',
|
|
39
|
-
safetyStatusLabel: 'Battery Safety Rating',
|
|
40
|
-
statusOptimalTitle: 'Safe and Optimal Battery Match',
|
|
41
|
-
statusOptimalDesc: 'Your battery can comfortably supply peak current with minimal heat generation and minimal voltage sag. Extended cell lifespan expected.',
|
|
42
|
-
statusWarningTitle: 'Moderate Thermal and Voltage Stress',
|
|
43
|
-
statusWarningDesc: 'Peak current draw is close to the realistic battery limit. Expect noticeable voltage sag under full throttle punches.',
|
|
44
|
-
statusDangerTitle: 'High Overcurrent and Sag Risk',
|
|
45
|
-
statusDangerDesc: 'Quadcopter peak draw exceeds realistic battery capabilities. High risk of heavy voltage sag, cell overheating, and premature battery degradation.',
|
|
46
|
-
lipoVisualizerTitle: 'Live LiPo Status Visualizer',
|
|
47
|
-
cellVoltageLabel: 'Cell Voltage',
|
|
48
|
-
batteryHealthLabel: 'Battery Stress Status',
|
|
49
|
-
burstRatingRequiredLabel: 'Required Burst C Rating',
|
|
50
|
-
currentRatioLabel: 'Power Margin Load Ratio',
|
|
51
|
-
};
|
|
52
|
-
|
|
53
|
-
const faqItems = [
|
|
54
|
-
{
|
|
55
|
-
question: 'What is C rating in drone LiPo batteries?',
|
|
56
|
-
answer: 'The C rating represents the maximum continuous discharge rate relative to the battery capacity. For example, a 1500mAh battery rated at 100C can theoretically supply 150 Amps.',
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
question: 'Why is claimed C rating often higher than actual performance?',
|
|
60
|
-
answer: 'Manufacturers frequently advertise burst or marketing C ratings measured under non-repeatable conditions. Actual continuous output depends heavily on internal resistance per cell.',
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
question: 'How does internal resistance affect voltage sag and heat?',
|
|
64
|
-
answer: 'Higher internal resistance acts as an unwanted resistor inside each cell. Under heavy current draw, this resistance causes voltage drop (sag) and dissipates heat, reducing power efficiency.',
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
question: 'How can I prevent voltage sag during freestyle maneuvers?',
|
|
68
|
-
answer: 'Use high-quality low-IR cells, select an appropriate C rating margin of at least 15 percent above peak quadcopter draw, and avoid flying below 3.5V per cell at rest.',
|
|
69
|
-
},
|
|
70
|
-
];
|
|
71
|
-
|
|
72
|
-
const howToSteps = [
|
|
73
|
-
{
|
|
74
|
-
name: 'Select Preset or Enter Battery Specifications',
|
|
75
|
-
text: 'Input the battery capacity in mAh, claimed C rating, cell series count, and average internal resistance per cell.',
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
name: 'Configure Quadcopter Power Draw',
|
|
79
|
-
text: 'Enter the number of motors, maximum per-motor current draw at full throttle, and auxiliary system consumption.',
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
name: 'Review Safety Status and Realistic Amperage',
|
|
83
|
-
text: 'Compare the realistic continuous amperage against the quadcopter peak current draw to verify safe operation.',
|
|
84
|
-
},
|
|
85
|
-
];
|
|
86
|
-
|
|
87
|
-
const seoSections: SEOSection[] = [
|
|
88
|
-
{
|
|
89
|
-
type: 'title',
|
|
90
|
-
text: 'Understanding Drone LiPo C Rating and Real Power Output',
|
|
91
|
-
level: 2,
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
type: 'paragraph',
|
|
95
|
-
html: 'Choosing the correct LiPo battery for an FPV drone or RC aircraft requires understanding the relationship between battery capacity, C rating, and motor current consumption. While battery manufacturers frequently state C ratings of 100C or 150C, real-world continuous discharge capabilities are bounded by internal resistance and thermal dissipation limits. This calculator evaluates realistic continuous discharge amperage, providing drone pilots with accurate power headroom predictions.',
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
type: 'title',
|
|
99
|
-
text: 'Comparison of RC Battery Chemistries',
|
|
100
|
-
level: 2,
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
type: 'table',
|
|
104
|
-
headers: ['Chemistry', 'Nominal V', 'Max Cell V', 'Energy Density', 'Peak Discharge', 'Best Use Case'],
|
|
105
|
-
rows: [
|
|
106
|
-
['LiPo (Standard)', '3.7V', '4.20V', 'High', '100C - 150C', '5-Inch Freestyle and Racing FPV'],
|
|
107
|
-
['LiHV (High Voltage)', '3.8V', '4.35V', 'Very High', '80C - 120C', 'TinyWhoops and Micro Quads'],
|
|
108
|
-
['Li-Ion (18650/21700)', '3.6V', '4.20V', 'Maximum', '15C - 35C', '7-Inch Long Range Endurance'],
|
|
109
|
-
['LiFePO4', '3.3V', '3.65V', 'Moderate', '30C - 50C', 'Ground Stations and Field Chargers'],
|
|
110
|
-
],
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
type: 'title',
|
|
114
|
-
text: 'Impact of Voltage Sag and Internal Resistance on Quadcopter Performance',
|
|
115
|
-
level: 2,
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
type: 'paragraph',
|
|
119
|
-
html: 'Voltage sag is the sudden drop in battery voltage experienced under heavy throttle acceleration. As current passes through the internal resistance of each cell, energy is converted into heat instead of thrust. A battery with higher internal resistance will suffer severe sag, triggering low voltage warnings on the FPV OSD telemetric display even when battery capacity remains high. Monitoring cell resistance in milliohms is essential for diagnosing aging or degraded LiPo packs.',
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
type: 'list',
|
|
123
|
-
items: [
|
|
124
|
-
'Low Internal Resistance (1-4 mΩ per cell): Excellent punch, minimal sag, cool running temperatures.',
|
|
125
|
-
'Moderate Internal Resistance (5-10 mΩ per cell): Standard freestyle performance, slight sag under full throttle.',
|
|
126
|
-
'High Internal Resistance (>12 mΩ per cell): Noticeable power loss, severe sag, battery gets hot quickly.',
|
|
127
|
-
],
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
type: 'title',
|
|
131
|
-
text: 'Optimizing Battery Selection for Freestyle Racing and Long Range Drones',
|
|
132
|
-
level: 2,
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
type: 'paragraph',
|
|
136
|
-
html: 'Different quadcopter flight styles impose vastly different discharge requirements on LiPo cells. 5-inch FPV freestyle and racing rigs produce short, high-intensity current spikes exceeding 120 Amps total draw. In contrast, 7-inch long-range endurance drones rely on steady, low-amperage cruise profiles where energy density and battery weight take priority. Utilizing this calculator ensures that your power train matches your battery specs perfectly, extending pack life and preventing unexpected mid-air brownouts.',
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
type: 'tip',
|
|
140
|
-
title: 'LiPo Storage and Maintenance Guidelines',
|
|
141
|
-
html: 'Always store your LiPo batteries at 3.80V to 3.85V per cell when not in use. Leaving packs fully charged for more than 48 hours permanently increases internal resistance, degrades capacity, and reduces peak discharge performance.',
|
|
142
|
-
},
|
|
143
|
-
];
|
|
144
|
-
|
|
145
|
-
const schemas: DroneBatteryCRatingCalculatorLocaleContent['schemas'] = [
|
|
146
|
-
{
|
|
147
|
-
'@context': 'https://schema.org',
|
|
148
|
-
'@type': 'FAQPage',
|
|
149
|
-
mainEntity: faqItems.map((item) => ({
|
|
150
|
-
'@type': 'Question',
|
|
151
|
-
name: item.question,
|
|
152
|
-
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
153
|
-
})),
|
|
154
|
-
} as WithContext<FAQPage>,
|
|
155
|
-
{
|
|
156
|
-
'@context': 'https://schema.org',
|
|
157
|
-
'@type': 'HowTo',
|
|
158
|
-
name: title,
|
|
159
|
-
description,
|
|
160
|
-
step: howToSteps.map((s, index) => ({
|
|
161
|
-
'@type': 'HowToStep',
|
|
162
|
-
position: index + 1,
|
|
163
|
-
name: s.name,
|
|
164
|
-
text: s.text,
|
|
165
|
-
})),
|
|
166
|
-
} as WithContext<HowTo>,
|
|
167
|
-
{
|
|
168
|
-
'@context': 'https://schema.org',
|
|
169
|
-
'@type': 'SoftwareApplication',
|
|
170
|
-
name: title,
|
|
171
|
-
description,
|
|
172
|
-
applicationCategory: 'UtilityApplication',
|
|
173
|
-
operatingSystem: 'All',
|
|
174
|
-
offers: {
|
|
175
|
-
'@type': 'Offer',
|
|
176
|
-
price: '0',
|
|
177
|
-
priceCurrency: 'USD',
|
|
178
|
-
},
|
|
179
|
-
} as WithContext<SoftwareApplication>,
|
|
180
|
-
];
|
|
181
|
-
|
|
182
|
-
export const content: DroneBatteryCRatingCalculatorLocaleContent = {
|
|
183
|
-
slug,
|
|
184
|
-
title,
|
|
185
|
-
description,
|
|
186
|
-
ui,
|
|
187
|
-
seo: seoSections,
|
|
188
|
-
faq: faqItems,
|
|
189
|
-
howTo: howToSteps,
|
|
190
|
-
bibliography: BIBLIOGRAPHY_ITEMS,
|
|
191
|
-
schemas,
|
|
192
|
-
};
|
|
1
|
+
import type { DroneBatteryCRatingCalculatorLocaleContent } from '../entry';
|
|
2
|
+
import type { WithContext, SoftwareApplication, FAQPage, HowTo } from 'schema-dts';
|
|
3
|
+
import type { SEOSection } from '../../../types';
|
|
4
|
+
import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'drone-battery-c-rating-calculator';
|
|
7
|
+
const title = 'Drone LiPo Battery C Rating and Continuous Discharge Calculator';
|
|
8
|
+
const description = 'Calculate continuous discharge current, realistic C rating, voltage sag, and flight safety for drone LiPo batteries based on internal resistance and quadcopter motor draw.';
|
|
9
|
+
|
|
10
|
+
const ui = {
|
|
11
|
+
title: 'Drone LiPo Battery C Rating Calculator',
|
|
12
|
+
subtitle: 'Analyze realistic continuous discharge, burst requirements, and voltage sag for quadcopters',
|
|
13
|
+
lipoSpecsHeader: 'Battery Specifications',
|
|
14
|
+
capacityLabel: 'Capacity (mAh)',
|
|
15
|
+
claimedCRatingLabel: 'Claimed C Rating',
|
|
16
|
+
cellCountLabel: 'Cell Count (Series)',
|
|
17
|
+
chemistryLabel: 'Battery Chemistry',
|
|
18
|
+
internalResistanceLabel: 'Internal Resistance per Cell (mΩ)',
|
|
19
|
+
quadSpecsHeader: 'Quadcopter Power Draw',
|
|
20
|
+
motorCountLabel: 'Motor Count',
|
|
21
|
+
peakMotorCurrentLabel: 'Peak Motor Current (Amps)',
|
|
22
|
+
auxCurrentLabel: 'Auxiliary Draw (VTX, FC, Cam) (Amps)',
|
|
23
|
+
presetSelectLabel: 'Quick Setup Presets',
|
|
24
|
+
customPreset: 'Custom Setup',
|
|
25
|
+
whoopPreset: '1S TinyWhoop',
|
|
26
|
+
freestyle5Preset: '6S 5-Inch Freestyle',
|
|
27
|
+
cinewhoopPreset: '4S 3-Inch CineWhoop',
|
|
28
|
+
longRange7Preset: '6S 7-Inch Long Range',
|
|
29
|
+
racing5Preset: '6S 5-Inch Racing',
|
|
30
|
+
resultsHeader: 'Power and Performance Analysis',
|
|
31
|
+
claimedMaxCurrentLabel: 'Claimed Max Current',
|
|
32
|
+
realisticCRatingLabel: 'Realistic Continuous C Rating',
|
|
33
|
+
realisticMaxCurrentLabel: 'Realistic Continuous Current',
|
|
34
|
+
totalPeakDrawLabel: 'Total Peak Power Draw',
|
|
35
|
+
voltageSagLabel: 'Estimated Voltage Sag',
|
|
36
|
+
sagNominalVoltageLabel: 'Nominal Voltage Under Load',
|
|
37
|
+
flightTimeFullThrottleLabel: 'Full Throttle Runtime',
|
|
38
|
+
flightTimeHoverLabel: 'Estimated Hover Runtime',
|
|
39
|
+
safetyStatusLabel: 'Battery Safety Rating',
|
|
40
|
+
statusOptimalTitle: 'Safe and Optimal Battery Match',
|
|
41
|
+
statusOptimalDesc: 'Your battery can comfortably supply peak current with minimal heat generation and minimal voltage sag. Extended cell lifespan expected.',
|
|
42
|
+
statusWarningTitle: 'Moderate Thermal and Voltage Stress',
|
|
43
|
+
statusWarningDesc: 'Peak current draw is close to the realistic battery limit. Expect noticeable voltage sag under full throttle punches.',
|
|
44
|
+
statusDangerTitle: 'High Overcurrent and Sag Risk',
|
|
45
|
+
statusDangerDesc: 'Quadcopter peak draw exceeds realistic battery capabilities. High risk of heavy voltage sag, cell overheating, and premature battery degradation.',
|
|
46
|
+
lipoVisualizerTitle: 'Live LiPo Status Visualizer',
|
|
47
|
+
cellVoltageLabel: 'Cell Voltage',
|
|
48
|
+
batteryHealthLabel: 'Battery Stress Status',
|
|
49
|
+
burstRatingRequiredLabel: 'Required Burst C Rating',
|
|
50
|
+
currentRatioLabel: 'Power Margin Load Ratio',
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
const faqItems = [
|
|
54
|
+
{
|
|
55
|
+
question: 'What is C rating in drone LiPo batteries?',
|
|
56
|
+
answer: 'The C rating represents the maximum continuous discharge rate relative to the battery capacity. For example, a 1500mAh battery rated at 100C can theoretically supply 150 Amps.',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
question: 'Why is claimed C rating often higher than actual performance?',
|
|
60
|
+
answer: 'Manufacturers frequently advertise burst or marketing C ratings measured under non-repeatable conditions. Actual continuous output depends heavily on internal resistance per cell.',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
question: 'How does internal resistance affect voltage sag and heat?',
|
|
64
|
+
answer: 'Higher internal resistance acts as an unwanted resistor inside each cell. Under heavy current draw, this resistance causes voltage drop (sag) and dissipates heat, reducing power efficiency.',
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
question: 'How can I prevent voltage sag during freestyle maneuvers?',
|
|
68
|
+
answer: 'Use high-quality low-IR cells, select an appropriate C rating margin of at least 15 percent above peak quadcopter draw, and avoid flying below 3.5V per cell at rest.',
|
|
69
|
+
},
|
|
70
|
+
];
|
|
71
|
+
|
|
72
|
+
const howToSteps = [
|
|
73
|
+
{
|
|
74
|
+
name: 'Select Preset or Enter Battery Specifications',
|
|
75
|
+
text: 'Input the battery capacity in mAh, claimed C rating, cell series count, and average internal resistance per cell.',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Configure Quadcopter Power Draw',
|
|
79
|
+
text: 'Enter the number of motors, maximum per-motor current draw at full throttle, and auxiliary system consumption.',
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
name: 'Review Safety Status and Realistic Amperage',
|
|
83
|
+
text: 'Compare the realistic continuous amperage against the quadcopter peak current draw to verify safe operation.',
|
|
84
|
+
},
|
|
85
|
+
];
|
|
86
|
+
|
|
87
|
+
const seoSections: SEOSection[] = [
|
|
88
|
+
{
|
|
89
|
+
type: 'title',
|
|
90
|
+
text: 'Understanding Drone LiPo C Rating and Real Power Output',
|
|
91
|
+
level: 2,
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
type: 'paragraph',
|
|
95
|
+
html: 'Choosing the correct LiPo battery for an FPV drone or RC aircraft requires understanding the relationship between battery capacity, C rating, and motor current consumption. While battery manufacturers frequently state C ratings of 100C or 150C, real-world continuous discharge capabilities are bounded by internal resistance and thermal dissipation limits. This calculator evaluates realistic continuous discharge amperage, providing drone pilots with accurate power headroom predictions.',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
type: 'title',
|
|
99
|
+
text: 'Comparison of RC Battery Chemistries',
|
|
100
|
+
level: 2,
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
type: 'table',
|
|
104
|
+
headers: ['Chemistry', 'Nominal V', 'Max Cell V', 'Energy Density', 'Peak Discharge', 'Best Use Case'],
|
|
105
|
+
rows: [
|
|
106
|
+
['LiPo (Standard)', '3.7V', '4.20V', 'High', '100C - 150C', '5-Inch Freestyle and Racing FPV'],
|
|
107
|
+
['LiHV (High Voltage)', '3.8V', '4.35V', 'Very High', '80C - 120C', 'TinyWhoops and Micro Quads'],
|
|
108
|
+
['Li-Ion (18650/21700)', '3.6V', '4.20V', 'Maximum', '15C - 35C', '7-Inch Long Range Endurance'],
|
|
109
|
+
['LiFePO4', '3.3V', '3.65V', 'Moderate', '30C - 50C', 'Ground Stations and Field Chargers'],
|
|
110
|
+
],
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'title',
|
|
114
|
+
text: 'Impact of Voltage Sag and Internal Resistance on Quadcopter Performance',
|
|
115
|
+
level: 2,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'paragraph',
|
|
119
|
+
html: 'Voltage sag is the sudden drop in battery voltage experienced under heavy throttle acceleration. As current passes through the internal resistance of each cell, energy is converted into heat instead of thrust. A battery with higher internal resistance will suffer severe sag, triggering low voltage warnings on the FPV OSD telemetric display even when battery capacity remains high. Monitoring cell resistance in milliohms is essential for diagnosing aging or degraded LiPo packs.',
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
type: 'list',
|
|
123
|
+
items: [
|
|
124
|
+
'Low Internal Resistance (1-4 mΩ per cell): Excellent punch, minimal sag, cool running temperatures.',
|
|
125
|
+
'Moderate Internal Resistance (5-10 mΩ per cell): Standard freestyle performance, slight sag under full throttle.',
|
|
126
|
+
'High Internal Resistance (>12 mΩ per cell): Noticeable power loss, severe sag, battery gets hot quickly.',
|
|
127
|
+
],
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
type: 'title',
|
|
131
|
+
text: 'Optimizing Battery Selection for Freestyle Racing and Long Range Drones',
|
|
132
|
+
level: 2,
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
type: 'paragraph',
|
|
136
|
+
html: 'Different quadcopter flight styles impose vastly different discharge requirements on LiPo cells. 5-inch FPV freestyle and racing rigs produce short, high-intensity current spikes exceeding 120 Amps total draw. In contrast, 7-inch long-range endurance drones rely on steady, low-amperage cruise profiles where energy density and battery weight take priority. Utilizing this calculator ensures that your power train matches your battery specs perfectly, extending pack life and preventing unexpected mid-air brownouts.',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
type: 'tip',
|
|
140
|
+
title: 'LiPo Storage and Maintenance Guidelines',
|
|
141
|
+
html: 'Always store your LiPo batteries at 3.80V to 3.85V per cell when not in use. Leaving packs fully charged for more than 48 hours permanently increases internal resistance, degrades capacity, and reduces peak discharge performance.',
|
|
142
|
+
},
|
|
143
|
+
];
|
|
144
|
+
|
|
145
|
+
const schemas: DroneBatteryCRatingCalculatorLocaleContent['schemas'] = [
|
|
146
|
+
{
|
|
147
|
+
'@context': 'https://schema.org',
|
|
148
|
+
'@type': 'FAQPage',
|
|
149
|
+
mainEntity: faqItems.map((item) => ({
|
|
150
|
+
'@type': 'Question',
|
|
151
|
+
name: item.question,
|
|
152
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
153
|
+
})),
|
|
154
|
+
} as WithContext<FAQPage>,
|
|
155
|
+
{
|
|
156
|
+
'@context': 'https://schema.org',
|
|
157
|
+
'@type': 'HowTo',
|
|
158
|
+
name: title,
|
|
159
|
+
description,
|
|
160
|
+
step: howToSteps.map((s, index) => ({
|
|
161
|
+
'@type': 'HowToStep',
|
|
162
|
+
position: index + 1,
|
|
163
|
+
name: s.name,
|
|
164
|
+
text: s.text,
|
|
165
|
+
})),
|
|
166
|
+
} as WithContext<HowTo>,
|
|
167
|
+
{
|
|
168
|
+
'@context': 'https://schema.org',
|
|
169
|
+
'@type': 'SoftwareApplication',
|
|
170
|
+
name: title,
|
|
171
|
+
description,
|
|
172
|
+
applicationCategory: 'UtilityApplication',
|
|
173
|
+
operatingSystem: 'All',
|
|
174
|
+
offers: {
|
|
175
|
+
'@type': 'Offer',
|
|
176
|
+
price: '0',
|
|
177
|
+
priceCurrency: 'USD',
|
|
178
|
+
},
|
|
179
|
+
} as WithContext<SoftwareApplication>,
|
|
180
|
+
];
|
|
181
|
+
|
|
182
|
+
export const content: DroneBatteryCRatingCalculatorLocaleContent = {
|
|
183
|
+
slug,
|
|
184
|
+
title,
|
|
185
|
+
description,
|
|
186
|
+
ui,
|
|
187
|
+
seo: seoSections,
|
|
188
|
+
faq: faqItems,
|
|
189
|
+
howTo: howToSteps,
|
|
190
|
+
bibliography: BIBLIOGRAPHY_ITEMS,
|
|
191
|
+
schemas,
|
|
192
|
+
};
|