@jjlmoya/utils-drones 1.30.0 → 1.31.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.
Files changed (36) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +2 -0
  3. package/src/entries.ts +4 -0
  4. package/src/index.ts +1 -1
  5. package/src/tests/locale_completeness.test.ts +1 -2
  6. package/src/tests/tool_validation.test.ts +2 -2
  7. package/src/tool/drone-motor-propeller-calculator/bibliography.astro +6 -0
  8. package/src/tool/drone-motor-propeller-calculator/bibliography.ts +12 -0
  9. package/src/tool/drone-motor-propeller-calculator/component.astro +109 -0
  10. package/src/tool/drone-motor-propeller-calculator/controller.ts +174 -0
  11. package/src/tool/drone-motor-propeller-calculator/dom-views.ts +78 -0
  12. package/src/tool/drone-motor-propeller-calculator/drone-motor-propeller-calculator.css +562 -0
  13. package/src/tool/drone-motor-propeller-calculator/entry.ts +27 -0
  14. package/src/tool/drone-motor-propeller-calculator/evaluator.ts +14 -0
  15. package/src/tool/drone-motor-propeller-calculator/i18n/de.ts +202 -0
  16. package/src/tool/drone-motor-propeller-calculator/i18n/en.ts +202 -0
  17. package/src/tool/drone-motor-propeller-calculator/i18n/es.ts +202 -0
  18. package/src/tool/drone-motor-propeller-calculator/i18n/fr.ts +202 -0
  19. package/src/tool/drone-motor-propeller-calculator/i18n/id.ts +192 -0
  20. package/src/tool/drone-motor-propeller-calculator/i18n/it.ts +192 -0
  21. package/src/tool/drone-motor-propeller-calculator/i18n/ja.ts +192 -0
  22. package/src/tool/drone-motor-propeller-calculator/i18n/ko.ts +192 -0
  23. package/src/tool/drone-motor-propeller-calculator/i18n/nl.ts +192 -0
  24. package/src/tool/drone-motor-propeller-calculator/i18n/pl.ts +192 -0
  25. package/src/tool/drone-motor-propeller-calculator/i18n/pt.ts +192 -0
  26. package/src/tool/drone-motor-propeller-calculator/i18n/ru.ts +192 -0
  27. package/src/tool/drone-motor-propeller-calculator/i18n/sv.ts +192 -0
  28. package/src/tool/drone-motor-propeller-calculator/i18n/tr.ts +192 -0
  29. package/src/tool/drone-motor-propeller-calculator/i18n/zh.ts +192 -0
  30. package/src/tool/drone-motor-propeller-calculator/index.ts +11 -0
  31. package/src/tool/drone-motor-propeller-calculator/logic.test.ts +56 -0
  32. package/src/tool/drone-motor-propeller-calculator/logic.ts +108 -0
  33. package/src/tool/drone-motor-propeller-calculator/seo.astro +12 -0
  34. package/src/tool/drone-motor-propeller-calculator/storage.ts +26 -0
  35. package/src/tool/drone-motor-propeller-calculator/ui.ts +55 -0
  36. package/src/tools.ts +3 -0
@@ -0,0 +1,192 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { SEOSection } from '../../../types';
3
+ import type { DroneMotorPropellerLocaleContent } from '../entry';
4
+ import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
5
+
6
+ const slug = 'drone-motor-propeller-calculator';
7
+ const title = 'ドローンモーター・プロペラ推力計算ツール';
8
+ const description = 'KV値、バッテリー voltage、プロペラ形状、機体重量からドローンの推力、負荷回転数、ピッチ speed、消費電力および電流を推定します。';
9
+
10
+ const ui = {
11
+ "presetsHeader": "フライトプロファイルを選択",
12
+ "presetTinyCruiser": "軽量マイクロクルーザー 3.5インチ",
13
+ "presetFreestyle": "フリースタイル 5インチ",
14
+ "presetLongRange": "ロングレンジ 7インチ",
15
+ "presetCinelifter": "シネリフター 8モーター",
16
+ "unitHeader": "表示単位",
17
+ "metricUnit": "メートル法",
18
+ "imperialUnit": "ヤード・ポンド法",
19
+ "setupHeader": "パワートレインとフレーム",
20
+ "motorKvLabel": "モーターKV値 (RPM/V)",
21
+ "batteryVoltageLabel": "バッテリー電圧",
22
+ "propDiameterLabel": "プロペラ直径",
23
+ "propPitchLabel": "プロペラピッチ",
24
+ "bladeCountLabel": "ブレード数",
25
+ "motorCountLabel": "モーター数",
26
+ "droneWeightLabel": "飛行総重量 (RTF)",
27
+ "benchDataHeader": "メーカー測定データ",
28
+ "benchThrustLabel": "モーターあたりの推力",
29
+ "benchVoltageLabel": "測定電圧",
30
+ "optionalLabel": "任意",
31
+ "twoBlades": "2枚羽根",
32
+ "threeBlades": "3枚羽根",
33
+ "fourBlades": "4枚羽根",
34
+ "twoMotors": "2モーター",
35
+ "fourMotors": "4モーター",
36
+ "sixMotors": "6モーター",
37
+ "eightMotors": "8モーター",
38
+ "resultsHeader": "推力・揚力バランス",
39
+ "estimatedLabel": "物理モデル推定値。",
40
+ "benchBasedLabel": "ベンチマーク調整済み。",
41
+ "loadedRpmLabel": "負荷回転数",
42
+ "pitchSpeedLabel": "理論ピッチスピード",
43
+ "thrustPerMotorLabel": "モーター単体推力",
44
+ "totalThrustLabel": "静止合計推力",
45
+ "totalPowerLabel": "推定消費電力",
46
+ "totalCurrentLabel": "推定消費電流",
47
+ "thrustMarginLabel": "揚力マージン",
48
+ "hoverThrottleLabel": "ホバリングスロットル",
49
+ "sceneCaption": "負荷時プロペラ回転速度",
50
+ "underpoweredStatus": "マージン不足",
51
+ "workableStatus": "実用マージon",
52
+ "headroomStatus": "十分なマージン",
53
+ "underpoweredAdvice": "合計推力が機体重量の2倍未満です。風に対する耐性や急速な姿勢制御回復力が低下する可能性があります。",
54
+ "workableAdvice": "通常飛行に適したマージンです。計算結果を信頼する前に長時間のホバリング後にモーターとESCの温度を確認してください。",
55
+ "headroomAdvice": "十分な静止揚力マージンがあります。制御応答性が向上しますが、ESCやバッテリーへの負荷が大きくなります。",
56
+ "sourceNote": "測定データは推力のみを補正します。電力と電流はモデル推定値です。",
57
+ "modelSourceNote": "測定データなし。物理係数モデルを使用。",
58
+ "manufacturerNote": "可能な限り同一のモーターとプロペラのベンチマークデータをご利用ください。",
59
+ "modelNote": "静止推力、電力、電流は推定値です。実際の性能は空気密度やモーター損失に依存します。",
60
+ "safetyNote": "飛行前に実際の推力スタンドで電流と温度を確認してください。",
61
+ "thrustAxisLabel": "推力方向",
62
+ "weightAxisLabel": "機体重量",
63
+ "clearBenchData": "測定データをクリア"
64
+ };
65
+
66
+ const faq = [
67
+ {
68
+ "question": "このドローンモーター・プロペラ計算ツールで何が計算できますか?",
69
+ "answer": "KV値、電圧、プロペラサイズ、重量から負荷回転数、ピッチスピード、モーター単体および合計推力、消費電力、電流を推定します。"
70
+ },
71
+ {
72
+ "question": "ドローンモーターとプロペラの最適な組み合わせ方は?",
73
+ "answer": "メーカー推奨のKV値とプロペラサイズから始め、合計推力と機体重量を比較し、推力スタンドで電流と温度を測定します。"
74
+ },
75
+ {
76
+ "question": "なぜメーカーの測定データの方が高精度なのですか?",
77
+ "answer": "実際のプロペラ形状や空力損失が含まれているためです。ツールはそのデータを指定電圧に合わせてスケールします。"
78
+ },
79
+ {
80
+ "question": "プロペラサイズは推力にどう影響しますか?",
81
+ "answer": "静止推力は直径と回転数に大きく依存します。大口径プロペラはより多くの空気を動かせますが、より高いトルクが必要です。"
82
+ },
83
+ {
84
+ "question": "このツールで飛行の安全性が保証されますか?",
85
+ "answer": "いいえ。設計の計画用ツールです。初飛行の前にテストスタンドで実際の電流と温度を確認してください。"
86
+ }
87
+ ];
88
+
89
+ const howTo = [
90
+ {
91
+ "name": "フライトプロファイルを選択",
92
+ "text": "プリセットを選択して、KV値、電圧、プロペラ、重量の標準的な初期値を読み込みます。"
93
+ },
94
+ {
95
+ "name": "フレームとプロペラのスペックを入力",
96
+ "text": "飛行総重量とモーター・プロペラの仕様を入力します。メートル法とヤード・ポンド法を切り替え可能です。"
97
+ },
98
+ {
99
+ "name": "測定データを追加",
100
+ "text": "ベンチマークデータがある場合は、推力と測定電圧を入力してモデルを較正します。"
101
+ }
102
+ ];
103
+
104
+ const seo: SEOSection[] = [
105
+ {
106
+ type: 'title',
107
+ text: 'ドローンモーターとプロペラの適合原理',
108
+ level: 2,
109
+ },
110
+ {
111
+ type: 'paragraph',
112
+ html: 'モーターとプロペラの組み合わせは、回転数、直径、ピッチ、電圧、トルクのバランスです。このツールは静止揚力と電気的負荷を評価します。',
113
+ },
114
+ {
115
+ type: 'title',
116
+ text: '表示される計算結果',
117
+ level: 2,
118
+ },
119
+ {
120
+ type: 'table',
121
+ headers: ["項目","意味"],
122
+ rows: [["負荷回転数","無負荷KV推定値に負荷係数を適用したRPM"],["静止推力","モーター単体推力および全体の合計揚力"],["揚力マージン","飛行総重量に対する合計静止推力の比率"],["電力と電流","指定電圧における推定消費電力とアンペア数"]],
123
+ },
124
+ {
125
+ type: 'title',
126
+ text: '計算ツールの使い方',
127
+ level: 2,
128
+ },
129
+ {
130
+ type: 'list',
131
+ items: ["モーターKV値とバッテリー電圧を入力。","プロペラ直径、ピッチ、ブレード数、モーター数を選択。","必要に応じてメーカーのベンチマークデータを追加。","飛行前にテストスタンドで電流と温度を検証。"],
132
+ },
133
+ {
134
+ type: 'title',
135
+ text: '実測データの重要性',
136
+ level: 2,
137
+ },
138
+ {
139
+ type: 'paragraph',
140
+ html: 'プロペラの推力は空気密度やブレード形状に依存します。実測データを使用することで高精度な補正が可能です。',
141
+ },
142
+ {
143
+ type: 'tip',
144
+ title: 'テスト手順のヒント',
145
+ html: '初飛行の前にテストスタンドで各スロットル位置での電流と温度を測定してください。',
146
+ },
147
+ ];
148
+
149
+ const schemas: DroneMotorPropellerLocaleContent['schemas'] = [
150
+ {
151
+ '@context': 'https://schema.org',
152
+ '@type': 'FAQPage',
153
+ mainEntity: faq.map((item) => ({
154
+ '@type': 'Question',
155
+ name: item.question,
156
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
157
+ })),
158
+ } as WithContext<FAQPage>,
159
+ {
160
+ '@context': 'https://schema.org',
161
+ '@type': 'HowTo',
162
+ name: title,
163
+ description,
164
+ step: howTo.map((step, index) => ({
165
+ '@type': 'HowToStep',
166
+ position: index + 1,
167
+ name: step.name,
168
+ text: step.text,
169
+ })),
170
+ } as WithContext<HowTo>,
171
+ {
172
+ '@context': 'https://schema.org',
173
+ '@type': 'SoftwareApplication',
174
+ name: title,
175
+ description,
176
+ applicationCategory: 'UtilityApplication',
177
+ operatingSystem: 'All',
178
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
179
+ } as WithContext<SoftwareApplication>,
180
+ ];
181
+
182
+ export const content: DroneMotorPropellerLocaleContent = {
183
+ slug,
184
+ title,
185
+ description,
186
+ ui,
187
+ seo,
188
+ faq,
189
+ bibliography: BIBLIOGRAPHY_ITEMS,
190
+ howTo,
191
+ schemas,
192
+ };
@@ -0,0 +1,192 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { SEOSection } from '../../../types';
3
+ import type { DroneMotorPropellerLocaleContent } from '../entry';
4
+ import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
5
+
6
+ const slug = 'drone-motor-propeller-calculator';
7
+ const title = '드론 모터 및 프로펠러 추력 계산기';
8
+ const description = 'KV 값, 배터리 전압, 프로펠러 규격 및 드론 무게를 바탕으로 모터 추력, 부하 RPM, 피드 스피드, 소비 전력 및 전류를 추정합니다.';
9
+
10
+ const ui = {
11
+ "presetsHeader": "비행 프로필 선택",
12
+ "presetTinyCruiser": "경량 마이크로 크루저 3.5인치",
13
+ "presetFreestyle": "프리스타일 5인치",
14
+ "presetLongRange": "롱레인지 7인치",
15
+ "presetCinelifter": "시네리프터 8모터",
16
+ "unitHeader": "표시 단위",
17
+ "metricUnit": "미터법",
18
+ "imperialUnit": "야드파운드법",
19
+ "setupHeader": "파워트레인 및 기체",
20
+ "motorKvLabel": "모터 KV (RPM/V)",
21
+ "batteryVoltageLabel": "배터리 전압",
22
+ "propDiameterLabel": "프로펠러 직경",
23
+ "propPitchLabel": "프로펠러 피치",
24
+ "bladeCountLabel": "날개 수",
25
+ "motorCountLabel": "모터 수",
26
+ "droneWeightLabel": "비행 이륙 중량 (RTF)",
27
+ "benchDataHeader": "제조사 벤치 테스트 데이터",
28
+ "benchThrustLabel": "모터당 추력",
29
+ "benchVoltageLabel": "테스트 전압",
30
+ "optionalLabel": "선택사항",
31
+ "twoBlades": "2엽",
32
+ "threeBlades": "3엽",
33
+ "fourBlades": "4엽",
34
+ "twoMotors": "2모터",
35
+ "fourMotors": "4모터",
36
+ "sixMotors": "6모터",
37
+ "eightMotors": "8모터",
38
+ "resultsHeader": "추력 및 양력 균형",
39
+ "estimatedLabel": "물리 모델 추정치.",
40
+ "benchBasedLabel": "벤치 데이터 교정됨.",
41
+ "loadedRpmLabel": "부하 회전수",
42
+ "pitchSpeedLabel": "이론 피치 속도",
43
+ "thrustPerMotorLabel": "모터당 추력",
44
+ "totalThrustLabel": "총 정적 추력",
45
+ "totalPowerLabel": "추정 소비 전력",
46
+ "totalCurrentLabel": "추정 소비 전류",
47
+ "thrustMarginLabel": "양력 마진",
48
+ "hoverThrottleLabel": "호버링 스로틀",
49
+ "sceneCaption": "부하 시 프로펠러 회전 속도",
50
+ "underpoweredStatus": "마진 부족",
51
+ "workableStatus": "사용 가능한 마진",
52
+ "headroomStatus": "충분한 마진",
53
+ "underpoweredAdvice": "총 추력이 이륙 중량의 2배 미만입니다. 바람이나 배터리 전압 강하 시 제어력이 제한될 수 있습니다.",
54
+ "workableAdvice": "일반 비행에 적합한 실용적인 마진입니다. 실제 비행 전 장시간 호버링 후 모터와 ESC 온도를 확인하세요.",
55
+ "headroomAdvice": "충분한 정적 양력 마진을 확보했습니다. 제어 응답성이 뛰어나지만 ESC와 배터리에 더 많은 전류 부담을 줍니다.",
56
+ "sourceNote": "테스트 데이터는 추력만 교정하며 전력과 전류는 모델 추정치입니다.",
57
+ "modelSourceNote": "테스트 데이터 없음. 투명 물리 계수 모델 사용.",
58
+ "manufacturerNote": "가급적 동일한 모터와 프로펠러의 제조사 벤치 데이터를 사용하세요.",
59
+ "modelNote": "정적 추력, 전력, 전류는 추정치입니다. 실제 성능은 공기 밀도와 손실에 따라 달라집니다.",
60
+ "safetyNote": "비행 전 추력 스탠드에서 실제 전류와 온도를 확인하세요.",
61
+ "thrustAxisLabel": "추력 방향",
62
+ "weightAxisLabel": "드론 무게",
63
+ "clearBenchData": "테스트 데이터 삭제"
64
+ };
65
+
66
+ const faq = [
67
+ {
68
+ "question": "이 드론 모터 및 프로펠러 계산기는 무엇을 추정하나요?",
69
+ "answer": "KV, 전압, 프로펠러 및 무게 정보를 통해 부하 RPM, 피치 속도, 모터당 및 총 정적 추력, 소비 전력 및 전류를 추정합니다."
70
+ },
71
+ {
72
+ "question": "드론 모터와 프로펠러를 어떻게 매칭해야 하나요?",
73
+ "answer": "제조사 권장 사양으로 시작하여 총 추력과 이륙 중량을 비교하고, 비행 전 테스트 스탠드에서 전류와 온도를 검증하세요."
74
+ },
75
+ {
76
+ "question": "왜 제조사 벤치 데이터가 물리 모델보다 정확한가요?",
77
+ "answer": "실제 프로펠러 형상과 손실이 반영되어 있기 때문입니다. 계산기는 이 데이터를 선택한 전압에 맞게 보정합니다."
78
+ },
79
+ {
80
+ "question": "프로펠러 크기가 추력에 어떤 영향을 미치나요?",
81
+ "answer": "정적 추력은 직경과 회전수에 크게 의존합니다. 직경이 클수록 더 많은 공기를 밀어내지만 더 높은 토크가 필요합니다."
82
+ },
83
+ {
84
+ "question": "이 계산기로 안전한 비행이 보장되나요?",
85
+ "answer": "아니요. 설계 기획용 도구입니다. 첫 비행 전 테스트 스탠드에서 실제 전류와 온도를 검증하세요."
86
+ }
87
+ ];
88
+
89
+ const howTo = [
90
+ {
91
+ "name": "비행 프로필 선택",
92
+ "text": "프리셋을 선택하여 KV, 전압, 프로펠러 및 무게의 적절한 초기값을 로드합니다."
93
+ },
94
+ {
95
+ "name": "기체 및 프로펠러 정보 입력",
96
+ "text": "비행 이륙 중량과 모터/프로펠러 사양을 미터법 또는 야드파운드법으로 입력합니다."
97
+ },
98
+ {
99
+ "name": "측정 데이터 추가",
100
+ "text": "벤치 테스트 데이터가 있는 경우 측정 추력과 전압을 입력하여 모델을 교정합니다."
101
+ }
102
+ ];
103
+
104
+ const seo: SEOSection[] = [
105
+ {
106
+ type: 'title',
107
+ text: '드론 모터 및 프로펠러 매칭 원리',
108
+ level: 2,
109
+ },
110
+ {
111
+ type: 'paragraph',
112
+ html: '모터와 프로펠러의 조합은 회전수, 직경, 피치, 전압 및 토크 간의 균형입니다. 이 도구는 정적 양력과 전기적 부하를 산출합니다.',
113
+ },
114
+ {
115
+ type: 'title',
116
+ text: '계산기 출력 항목',
117
+ level: 2,
118
+ },
119
+ {
120
+ type: 'table',
121
+ headers: ["항목","의미"],
122
+ rows: [["부하 회전수","무부하 KV 추정치에 부하 요소를 적용한 RPM"],["정적 추력","모터 단체 추력 및 전체 총 양력"],["양력 마진","이륙 중량 대비 총 정적 추력 비율"],["전력 및 전류","선택한 전압에서의 추정 전기 소비량"]],
123
+ },
124
+ {
125
+ type: 'title',
126
+ text: '계산기 사용 방법',
127
+ level: 2,
128
+ },
129
+ {
130
+ type: 'list',
131
+ items: ["모터 KV 및 배터리 전압 입력.","프로펠러 직경, 피치, 날개 수 및 모터 수 선택.","필요시 제조사 벤치 테스트 데이터 추가.","비행 전 테스트 스탠드에서 전류와 온도 검증."],
132
+ },
133
+ {
134
+ type: 'title',
135
+ text: '실측 데이터의 중요성',
136
+ level: 2,
137
+ },
138
+ {
139
+ type: 'paragraph',
140
+ html: '프로펠러 추력은 공기 밀도와 형상에 따라 달라집니다. 실측 데이터를 사용하면 가장 정확한 교정이 가능합니다.',
141
+ },
142
+ {
143
+ type: 'tip',
144
+ title: '테스트 팁',
145
+ html: '첫 비행 전 테스트 스탠드에서 각 스롯틀별 전류와 온도를 측정하세요.',
146
+ },
147
+ ];
148
+
149
+ const schemas: DroneMotorPropellerLocaleContent['schemas'] = [
150
+ {
151
+ '@context': 'https://schema.org',
152
+ '@type': 'FAQPage',
153
+ mainEntity: faq.map((item) => ({
154
+ '@type': 'Question',
155
+ name: item.question,
156
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
157
+ })),
158
+ } as WithContext<FAQPage>,
159
+ {
160
+ '@context': 'https://schema.org',
161
+ '@type': 'HowTo',
162
+ name: title,
163
+ description,
164
+ step: howTo.map((step, index) => ({
165
+ '@type': 'HowToStep',
166
+ position: index + 1,
167
+ name: step.name,
168
+ text: step.text,
169
+ })),
170
+ } as WithContext<HowTo>,
171
+ {
172
+ '@context': 'https://schema.org',
173
+ '@type': 'SoftwareApplication',
174
+ name: title,
175
+ description,
176
+ applicationCategory: 'UtilityApplication',
177
+ operatingSystem: 'All',
178
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
179
+ } as WithContext<SoftwareApplication>,
180
+ ];
181
+
182
+ export const content: DroneMotorPropellerLocaleContent = {
183
+ slug,
184
+ title,
185
+ description,
186
+ ui,
187
+ seo,
188
+ faq,
189
+ bibliography: BIBLIOGRAPHY_ITEMS,
190
+ howTo,
191
+ schemas,
192
+ };
@@ -0,0 +1,192 @@
1
+ import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
2
+ import type { SEOSection } from '../../../types';
3
+ import type { DroneMotorPropellerLocaleContent } from '../entry';
4
+ import { BIBLIOGRAPHY_ITEMS } from '../bibliography';
5
+
6
+ const slug = 'rekenmachine-dronemotor-en-propeller';
7
+ const title = 'Drone Motor en Propeller Calculator';
8
+ const description = 'Schat de stuwkracht, RPM onder belasting, spoedsnelheid, vermogen en stroomsterkte van dronemotoren op basis van KV, spanning, propellergeometrie en gewicht.';
9
+
10
+ const ui = {
11
+ "presetsHeader": "Kies een vliegprofiel",
12
+ "presetTinyCruiser": "Micro cruiser 3.5 inch",
13
+ "presetFreestyle": "Freestyle 5 inch",
14
+ "presetLongRange": "Long range 7 inch",
15
+ "presetCinelifter": "Cinelifter 8 motoren",
16
+ "unitHeader": "Weergave-eenheden",
17
+ "metricUnit": "Metrisch",
18
+ "imperialUnit": "Imperiaal",
19
+ "setupHeader": "Aandrijving en frame",
20
+ "motorKvLabel": "Motor KV (RPM/V)",
21
+ "batteryVoltageLabel": "Accuspanning",
22
+ "propDiameterLabel": "Propellerdiameter",
23
+ "propPitchLabel": "Propellerspoed",
24
+ "bladeCountLabel": "Aantal bladen",
25
+ "motorCountLabel": "Aantal motoren",
26
+ "droneWeightLabel": "Vliegklaar gewicht (RTF)",
27
+ "benchDataHeader": "Testpunt fabrikant",
28
+ "benchThrustLabel": "Stuwkracht per motor",
29
+ "benchVoltageLabel": "Testspanning",
30
+ "optionalLabel": "Optioneel",
31
+ "twoBlades": "2 bladen",
32
+ "threeBlades": "3 bladen",
33
+ "fourBlades": "4 bladen",
34
+ "twoMotors": "2 motoren",
35
+ "fourMotors": "4 motoren",
36
+ "sixMotors": "6 motoren",
37
+ "eightMotors": "8 motoren",
38
+ "resultsHeader": "Stuwkracht en draagvermogen",
39
+ "estimatedLabel": "Fysische schatting.",
40
+ "benchBasedLabel": "Gecalibreerd op testbank.",
41
+ "loadedRpmLabel": "Snelheid onder belasting",
42
+ "pitchSpeedLabel": "Theoretische spoedsnelheid",
43
+ "thrustPerMotorLabel": "Stuwkracht per motor",
44
+ "totalThrustLabel": "Totale statische stuwkracht",
45
+ "totalPowerLabel": "Geschat vermogen",
46
+ "totalCurrentLabel": "Geschatte stroomsterkte",
47
+ "thrustMarginLabel": "Draagvermogen marge",
48
+ "hoverThrottleLabel": "Hover gasniveau",
49
+ "sceneCaption": "propellersnelheid onder belasting",
50
+ "underpoweredStatus": "Lage marge",
51
+ "workableStatus": "Bruikbare marge",
52
+ "headroomStatus": "Ruime marge",
53
+ "underpoweredAdvice": "De totale stuwkracht is minder dan het dubbele van het vlieggewicht. Verwacht beperkte herstelkracht en weinig windtolerantie.",
54
+ "workableAdvice": "Praktische reserve voor een normale vlucht. Controleer de temperatuur van de motoren en ESCs na langdurig hoveren.",
55
+ "headroomAdvice": "Royaal statisch draagvermogen. Verbetert de controle direct maar vraagt meer stroom van de regelaars.",
56
+ "sourceNote": "Een testpunt kalibreert alleen de stuwkracht. Vermogen en stroom blijven schattingen.",
57
+ "modelSourceNote": "Geen testpunt. Gebruikt het theoretische natuurkundige model.",
58
+ "manufacturerNote": "Gebruik bij voorkeur een testpunt gemeten met dezelfde motor en propeller.",
59
+ "modelNote": "Stuwkracht, vermogen en stroom zijn schattingen. Echte resultaten hangen af van luchtdichtheid en verliezen.",
60
+ "safetyNote": "Gebruik deze calculator nooit als vervanging voor een echte testbank. Controleer elektrische limieten voor de vlucht.",
61
+ "thrustAxisLabel": "Stuwrichting",
62
+ "weightAxisLabel": "Drone gewicht",
63
+ "clearBenchData": "Testpunt wissen"
64
+ };
65
+
66
+ const faq = [
67
+ {
68
+ "question": "Wat berekent deze drone motor en propeller calculator?",
69
+ "answer": "Het schat RPM onder belasting, spoedsnelheid, stuwkracht per motor en totaal, vermogen en stroomsterkte op basis van KV, spanning, propeller en gewicht."
70
+ },
71
+ {
72
+ "question": "Hoe stem ik een dronemotor af op een propeller?",
73
+ "answer": "Begin met de aanbevelingen van de fabrikant. Vergelijk de totale stuwkracht met het vlieggewicht en test stroom en temperatuur op een testbank."
74
+ },
75
+ {
76
+ "question": "Waarom is een testpunt van de fabrikant nauwkeuriger?",
77
+ "answer": "Het houdt rekening met de exacte propellergeometrie en verliezen. De tool schaalt de stuwkracht naar de gekozen spanning."
78
+ },
79
+ {
80
+ "question": "Hoe beïnvloedt de propellergrootte de stuwkracht?",
81
+ "answer": "Statische stuwkracht hangt sterk af van diameter en toerental. Een grotere propeller verplaatst meer lucht maar vereist meer koppel."
82
+ },
83
+ {
84
+ "question": "Garanteert deze calculator een veilige vlucht?",
85
+ "answer": "Nee. Het is een planningsinstrument. Controleer stroom, temperatuur en stuwkracht op een testbank voor de eerste vlucht."
86
+ }
87
+ ];
88
+
89
+ const howTo = [
90
+ {
91
+ "name": "Kies een vliegprofiel",
92
+ "text": "Selecteer een preset om gepaste startwaarden voor KV, spanning, propeller en gewicht te laden."
93
+ },
94
+ {
95
+ "name": "Voer frame en propellergegevens in",
96
+ "text": "Voer het vlieggewicht en de specificaties in metrische of imperiale eenheden in."
97
+ },
98
+ {
99
+ "name": "Voeg een meetpunt toe",
100
+ "text": "Als u testbankgegevens heeft, voer dan stuwkracht en testspanning in om het model te kalibreren."
101
+ }
102
+ ];
103
+
104
+ const seo: SEOSection[] = [
105
+ {
106
+ type: 'title',
107
+ text: 'Principes van drone motor en propeller afstemming',
108
+ level: 2,
109
+ },
110
+ {
111
+ type: 'paragraph',
112
+ html: 'De combinatie van motor en propeller vormt een balans tussen toerental, diameter, spoed, spanning en koppel. Deze tool schat de statische draagkracht en elektrische belasting.',
113
+ },
114
+ {
115
+ type: 'title',
116
+ text: 'Getoonde resultaten',
117
+ level: 2,
118
+ },
119
+ {
120
+ type: 'table',
121
+ headers: ["Resultaat","Betekenis"],
122
+ rows: [["Snelheid onder belasting","Onbelast RPM schatting verminderd met belastingsfactor"],["Statische stuwkracht","Stuwkracht per motor en totale draagkracht"],["Draagvermogen marge","Totale statische stuwkracht vergeleken met vlieggewicht"],["Vermogen en stroom","Geschat elektrisch verbruik onder de gekozen spanning"]],
123
+ },
124
+ {
125
+ type: 'title',
126
+ text: 'Hoe de calculator te gebruiken',
127
+ level: 2,
128
+ },
129
+ {
130
+ type: 'list',
131
+ items: ["Voer motor KV en accuspanning in.","Kies diameter, spoed, aantal bladen en motoren.","Voeg optioneel meetgegevens van de fabrikant toe.","Controleer stroom en temperatuur op de testbank voor de vlucht."],
132
+ },
133
+ {
134
+ type: 'title',
135
+ text: 'Belang van testgegevens',
136
+ level: 2,
137
+ },
138
+ {
139
+ type: 'paragraph',
140
+ html: 'Propellerstuwkracht hangt af van de luchtdichtheid en vorm. Een echt testpunt biedt de nauwkeurigste kalibratie.',
141
+ },
142
+ {
143
+ type: 'tip',
144
+ title: 'Testplan instellen',
145
+ html: 'Voer een testbanktest uit en meet stroom en temperatuur voor het eerste gebruik.',
146
+ },
147
+ ];
148
+
149
+ const schemas: DroneMotorPropellerLocaleContent['schemas'] = [
150
+ {
151
+ '@context': 'https://schema.org',
152
+ '@type': 'FAQPage',
153
+ mainEntity: faq.map((item) => ({
154
+ '@type': 'Question',
155
+ name: item.question,
156
+ acceptedAnswer: { '@type': 'Answer', text: item.answer },
157
+ })),
158
+ } as WithContext<FAQPage>,
159
+ {
160
+ '@context': 'https://schema.org',
161
+ '@type': 'HowTo',
162
+ name: title,
163
+ description,
164
+ step: howTo.map((step, index) => ({
165
+ '@type': 'HowToStep',
166
+ position: index + 1,
167
+ name: step.name,
168
+ text: step.text,
169
+ })),
170
+ } as WithContext<HowTo>,
171
+ {
172
+ '@context': 'https://schema.org',
173
+ '@type': 'SoftwareApplication',
174
+ name: title,
175
+ description,
176
+ applicationCategory: 'UtilityApplication',
177
+ operatingSystem: 'All',
178
+ offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
179
+ } as WithContext<SoftwareApplication>,
180
+ ];
181
+
182
+ export const content: DroneMotorPropellerLocaleContent = {
183
+ slug,
184
+ title,
185
+ description,
186
+ ui,
187
+ seo,
188
+ faq,
189
+ bibliography: BIBLIOGRAPHY_ITEMS,
190
+ howTo,
191
+ schemas,
192
+ };