@jjlmoya/utils-nautical 1.2.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 +75 -0
- package/src/category/i18n/en.ts +79 -0
- package/src/category/i18n/es.ts +79 -0
- package/src/category/i18n/fr.ts +79 -0
- package/src/category/index.ts +13 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +12 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +22 -0
- package/src/layouts/PreviewLayout.astro +117 -0
- package/src/pages/[locale]/[slug].astro +146 -0
- package/src/pages/[locale].astro +249 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/faq_count.test.ts +30 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/seo_length.test.ts +29 -0
- package/src/tests/tool_validation.test.ts +51 -0
- package/src/tool/endurance/bibliography.astro +14 -0
- package/src/tool/endurance/component.astro +310 -0
- package/src/tool/endurance/i18n/en.ts +243 -0
- package/src/tool/endurance/i18n/es.ts +249 -0
- package/src/tool/endurance/i18n/fr.ts +217 -0
- package/src/tool/endurance/index.ts +56 -0
- package/src/tool/endurance/logic.ts +36 -0
- package/src/tool/endurance/seo.astro +55 -0
- package/src/tool/endurance/style.css +333 -0
- package/src/tool/nauticalConverter/bibliography.astro +14 -0
- package/src/tool/nauticalConverter/component.astro +481 -0
- package/src/tool/nauticalConverter/i18n/en.ts +239 -0
- package/src/tool/nauticalConverter/i18n/es.ts +239 -0
- package/src/tool/nauticalConverter/i18n/fr.ts +239 -0
- package/src/tool/nauticalConverter/index.ts +57 -0
- package/src/tool/nauticalConverter/logic.ts +52 -0
- package/src/tool/nauticalConverter/seo.astro +52 -0
- package/src/tool/nauticalConverter/style.css +205 -0
- package/src/tool/sailArea/bibliography.astro +14 -0
- package/src/tool/sailArea/component.astro +418 -0
- package/src/tool/sailArea/i18n/en.ts +275 -0
- package/src/tool/sailArea/i18n/es.ts +275 -0
- package/src/tool/sailArea/i18n/fr.ts +275 -0
- package/src/tool/sailArea/index.ts +53 -0
- package/src/tool/sailArea/logic.ts +55 -0
- package/src/tool/sailArea/seo.astro +52 -0
- package/src/tool/sailArea/style.css +351 -0
- package/src/tool/speedConverter/bibliography.astro +14 -0
- package/src/tool/speedConverter/component.astro +125 -0
- package/src/tool/speedConverter/i18n/en.ts +271 -0
- package/src/tool/speedConverter/i18n/es.ts +271 -0
- package/src/tool/speedConverter/i18n/fr.ts +271 -0
- package/src/tool/speedConverter/index.ts +46 -0
- package/src/tool/speedConverter/logic.ts +48 -0
- package/src/tool/speedConverter/seo.astro +43 -0
- package/src/tool/speedConverter/style.css +239 -0
- package/src/tool/tideCalculator/bibliography.astro +14 -0
- package/src/tool/tideCalculator/component.astro +314 -0
- package/src/tool/tideCalculator/i18n/en.ts +203 -0
- package/src/tool/tideCalculator/i18n/es.ts +225 -0
- package/src/tool/tideCalculator/i18n/fr.ts +190 -0
- package/src/tool/tideCalculator/index.ts +50 -0
- package/src/tool/tideCalculator/logic.ts +73 -0
- package/src/tool/tideCalculator/seo.astro +61 -0
- package/src/tool/tideCalculator/style.css +310 -0
- package/src/tool/underKeel/bibliography.astro +14 -0
- package/src/tool/underKeel/component.astro +240 -0
- package/src/tool/underKeel/i18n/en.ts +193 -0
- package/src/tool/underKeel/i18n/es.ts +206 -0
- package/src/tool/underKeel/i18n/fr.ts +193 -0
- package/src/tool/underKeel/index.ts +49 -0
- package/src/tool/underKeel/logic.ts +83 -0
- package/src/tool/underKeel/seo.astro +46 -0
- package/src/tool/underKeel/style.css +312 -0
- package/src/tools.ts +25 -0
- package/src/types.ts +69 -0
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
|
+
|
|
4
|
+
const slug = 'sail-area-calculator';
|
|
5
|
+
const title = 'Sail Area and SA/D Ratio Calculator';
|
|
6
|
+
const description =
|
|
7
|
+
'Calculate the total sail area and sail area to displacement ratio of your boat. Nautical performance analysis based on I, J, P and E measurements.';
|
|
8
|
+
|
|
9
|
+
const ui: SailAreaUI = {
|
|
10
|
+
hullSectionLabel: 'Hull Data',
|
|
11
|
+
totalMassLabel: 'Displacement',
|
|
12
|
+
rigSystemLabel: 'Rig',
|
|
13
|
+
intendedUseLabel: 'Intended use',
|
|
14
|
+
rigGeometryLabel: 'Rig Geometry',
|
|
15
|
+
sailConfigLabel: 'Rig type',
|
|
16
|
+
genoaOverlapLabel: 'Genoa Overlap',
|
|
17
|
+
foqueLabel: 'Jib',
|
|
18
|
+
genovaLabel: 'Genoa',
|
|
19
|
+
sadRatioLabel: 'SA/D Ratio',
|
|
20
|
+
totalAreaLabel: 'Total area',
|
|
21
|
+
performanceLabel: 'Performance',
|
|
22
|
+
sloopLabel: 'Sloop (single mast)',
|
|
23
|
+
cutterLabel: 'Cutter (double headsail)',
|
|
24
|
+
ketchLabel: 'Ketch (two masts)',
|
|
25
|
+
cruiserLabel: 'Cruiser',
|
|
26
|
+
performanceTypeLabel: 'Performance',
|
|
27
|
+
racerLabel: 'Racer',
|
|
28
|
+
exportPdfLabel: 'GENERATE TECHNICAL REPORT',
|
|
29
|
+
faqTitle: 'Frequently Asked Questions',
|
|
30
|
+
bibliographyTitle: 'Bibliography',
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
const faq: SailAreaLocaleContent['faq'] = [
|
|
34
|
+
{
|
|
35
|
+
question: 'Why is my boat slow in light wind?',
|
|
36
|
+
answer: 'Your SA/D ratio is probably below 15, indicating a heavy displacement boat with little sail area relative to its weight. These boats need winds above 12 knots to sail lively.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
question: 'Should I empty the water tanks to improve performance?',
|
|
40
|
+
answer: 'Yes, lightening the boat directly improves the SA/D ratio because the actual displacement decreases. Emptying water and fuel tanks can reduce displacement by several hundred kilograms and significantly raise the ratio.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
question: 'What is the Roach on a sail?',
|
|
44
|
+
answer: 'The Roach is the convex curve of the leech (trailing edge) of the mainsail. It provides extra sail area beyond the base geometric triangle defined by P and E. Racing boats have aggressive Roach with rigid battens.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
question: 'How do I measure the real displacement of my boat?',
|
|
48
|
+
answer: 'The most reliable method is to use the loaded displacement (with all stores, water, fuel and crew aboard). The light ship displacement from the builder manual is usually optimistic. Use the actual displacement in your normal sailing conditions.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
question: 'Where can I find the I, J, P and E measurements for my boat?',
|
|
52
|
+
answer: 'You will find them in the owner manual, in ORC or IRC rating certificates, or in class certificate documentation. You can also measure them directly on board with a tape measure or by contacting the boatbuilder.',
|
|
53
|
+
},
|
|
54
|
+
];
|
|
55
|
+
|
|
56
|
+
const howTo: SailAreaLocaleContent['howTo'] = [
|
|
57
|
+
{
|
|
58
|
+
name: 'Select the rig type',
|
|
59
|
+
text: 'Choose between Sloop (single mast), Cutter (jib and staysail) or Ketch (mizzen mast). This determines how total sail area is calculated.',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: 'Enter the displacement',
|
|
63
|
+
text: 'Use the actual loaded displacement of your boat in kg or lbs. This figure is key for the SA/D ratio calculation.',
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
name: 'Measure the rig geometry',
|
|
67
|
+
text: 'Enter the P (mast height), E (boom), I (foretriangle height) and J (foretriangle base) measurements in metres or feet.',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Adjust the genoa overlap',
|
|
71
|
+
text: 'Move the slider to indicate your genoa overlap: 100% is a non-overlapping jib, 130% is a standard genoa, 155% is a large overlap genoa.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Interpret the SA/D ratio',
|
|
75
|
+
text: 'A ratio between 16 and 20 is a balanced cruiser. Above 20 the boat will be very lively in light wind but demanding in fresh conditions.',
|
|
76
|
+
},
|
|
77
|
+
];
|
|
78
|
+
|
|
79
|
+
const bibliography: SailAreaLocaleContent['bibliography'] = [
|
|
80
|
+
{
|
|
81
|
+
name: 'Society of Naval Architects and Marine Engineers - SNAME',
|
|
82
|
+
url: 'https://www.sname.org/',
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: 'ORC - Offshore Racing Congress',
|
|
86
|
+
url: 'https://orc.org/',
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: 'Elvstrom Sailmakers - Sail Manual',
|
|
90
|
+
url: 'https://www.elvstromsails.com/',
|
|
91
|
+
},
|
|
92
|
+
];
|
|
93
|
+
|
|
94
|
+
const seo: SailAreaLocaleContent['seo'] = [
|
|
95
|
+
{
|
|
96
|
+
type: 'title',
|
|
97
|
+
text: 'Sail Area Calculator: Complete Guide to Performance and Ratios',
|
|
98
|
+
level: 2,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
type: 'paragraph',
|
|
102
|
+
html: 'Sail area is the aerodynamic engine of any sailing vessel. It determines how much wind energy the boat can capture and, combined with its displacement, defines its nautical character: whether it will be a slow cruiser or a twitchy racing machine. Calculating this value correctly is the first step to understanding the behaviour of any sailboat.',
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'paragraph',
|
|
106
|
+
html: 'Sailing involves a constant dance between the force of the wind on the sails and the resistance of the water on the hull. The <strong>Sail Area / Displacement ratio (SA/D)</strong> captures this relationship in a single number that allows boats of any length and displacement to be compared on equal terms.',
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'stats',
|
|
110
|
+
items: [
|
|
111
|
+
{ label: 'Ideal Cruiser Ratio', value: '15-18', icon: 'mdi:anchor' },
|
|
112
|
+
{ label: 'Racing Boats', value: '+24', icon: 'mdi:sailing' },
|
|
113
|
+
{ label: 'Margin of Error', value: '5-10%', icon: 'mdi:alert-circle-outline' },
|
|
114
|
+
],
|
|
115
|
+
columns: 3,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'title',
|
|
119
|
+
text: 'What is the SA/D Ratio used for?',
|
|
120
|
+
level: 3,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'paragraph',
|
|
124
|
+
html: 'The <strong>Sail Area / Displacement</strong> ratio is a diagnostic tool that allows you to predict boat behaviour before setting sail. A low ratio indicates a robust and safe but slow boat in light winds; a high ratio offers speed and a sense of flying but demands greater crew skill when the wind picks up. Neither is superior to the other: it all depends on the type of sailing intended.',
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'title',
|
|
128
|
+
text: 'SA/D Ratio Reference Table',
|
|
129
|
+
level: 4,
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
type: 'table',
|
|
133
|
+
headers: ['Ratio', 'Boat Type', 'Behaviour at Sea'],
|
|
134
|
+
rows: [
|
|
135
|
+
['< 14', 'Heavy Displacement / Cargo Vessel', 'Stable, slow, needs sustained wind'],
|
|
136
|
+
['14 - 16.5', 'Offshore Passage Cruiser', 'Balanced, comfortable, good upwind'],
|
|
137
|
+
['16.5 - 20', 'Standard Marina Cruiser', 'Lively in breeze, manageable, versatile'],
|
|
138
|
+
['20 - 25', 'Performance Cruiser / Sport', 'Fast, demanding, exciting in light air'],
|
|
139
|
+
['> 25', 'Racer / Extreme Sport', 'Very fast, nervous, requires expert crew'],
|
|
140
|
+
],
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Technical Glossary of Measurements (I, J, P, E)',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'glossary',
|
|
149
|
+
items: [
|
|
150
|
+
{
|
|
151
|
+
term: 'I (Foretriangle Height)',
|
|
152
|
+
definition: 'Vertical distance from the deck to the point where the jib halyard attaches at the mast. Defines the height of the foretriangle.',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
term: 'J (Foretriangle Base)',
|
|
156
|
+
definition: 'Horizontal distance from the mast to the stem (bow of the boat). Defines the base of the foretriangle where headsails are furled or hanked.',
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
term: 'P (Mast Height)',
|
|
160
|
+
definition: 'Distance from the deck to the mainsail halyard sheave at the top of the mast. Defines the height of the mainsail.',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
term: 'E (Boom Length)',
|
|
164
|
+
definition: 'Distance from the mast to the mainsail clew at the end of the boom. Defines the base of the mainsail.',
|
|
165
|
+
},
|
|
166
|
+
],
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: 'title',
|
|
170
|
+
text: 'Nautical Exam Calculations (Yachtmaster)',
|
|
171
|
+
level: 3,
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
type: 'paragraph',
|
|
175
|
+
html: 'Sail area calculation and the SA/D ratio form part of the syllabus for <strong>Yachtmaster</strong> and coastal skipper examinations. Understanding rig geometry and its relationship with displacement is essential for making safety decisions at sea: reefing in time, choosing the right genoa or estimating boat behaviour ahead of a squall.',
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
type: 'tip',
|
|
179
|
+
title: 'Downwind Sails and Safety',
|
|
180
|
+
html: 'For ocean or long-distance passage sailing, an SA/D ratio between 16 and 18 offers the best balance between speed and safety. Boats with ratios above 22 may need reefing in winds of only Force 4-5.',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'title',
|
|
184
|
+
text: 'How Does Genoa Overlap Affect Performance?',
|
|
185
|
+
level: 4,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
type: 'paragraph',
|
|
189
|
+
html: 'The <strong>genoa</strong> is the largest headsail, whose clew is positioned behind the mast, "overlapping" the mainsail. The overlap percentage indicates how much longer the perpendicular to the luff (LP) is compared to the J distance. A 150% genoa has an LP equivalent to 150% of J, providing much greater sail area than a simple non-overlapping jib.',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
type: 'comparative',
|
|
193
|
+
items: [
|
|
194
|
+
{
|
|
195
|
+
title: 'Dacron (Cruising)',
|
|
196
|
+
description: 'Classic material for cruising sails. Robust and easy to maintain.',
|
|
197
|
+
points: [
|
|
198
|
+
'High durability and UV resistance',
|
|
199
|
+
'Low maintenance cost',
|
|
200
|
+
'More weight and stretch under load',
|
|
201
|
+
'Ideal for coastal and passage sailing',
|
|
202
|
+
],
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
title: 'Laminates (Racing)',
|
|
206
|
+
description: 'High-tech materials such as Kevlar, Spectra or Dyneema.',
|
|
207
|
+
highlight: true,
|
|
208
|
+
points: [
|
|
209
|
+
'Minimum stretch: maximum aerodynamic efficiency',
|
|
210
|
+
'Much lighter than Dacron',
|
|
211
|
+
'Higher cost and shorter service life',
|
|
212
|
+
'Essential on boats with SA/D ratio > 22',
|
|
213
|
+
],
|
|
214
|
+
},
|
|
215
|
+
],
|
|
216
|
+
columns: 2,
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
type: 'title',
|
|
220
|
+
text: 'Physics of Sailing and Stability',
|
|
221
|
+
level: 3,
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
type: 'paragraph',
|
|
225
|
+
html: 'Sail area generates a driving force but also a <strong>heeling moment</strong> that tends to capsize the boat. Stability is measured by the righting moment the boat can oppose to this heeling force. A high SA/D ratio in a boat with little ballast can be dangerous, while the same ratio in a boat with a deep heavy keel is perfectly manageable.',
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
type: 'paragraph',
|
|
229
|
+
html: 'To calculate real available power, naval architects use the <strong>Displacement-Length Ratio (DLR)</strong> in combination with the SA/D. Both ratios together precisely describe whether a boat is a sea tug or a racing planer.',
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
type: 'tip',
|
|
233
|
+
title: 'Stability and Safety',
|
|
234
|
+
html: 'Never evaluate SA/D in isolation. A sailboat with a ratio of 22 and a 90-degree righting angle is far safer than one with a ratio of 18 and a 60-degree righting angle. Always consult your boat stability curve.',
|
|
235
|
+
},
|
|
236
|
+
];
|
|
237
|
+
|
|
238
|
+
const schemas: SailAreaLocaleContent['schemas'] = [
|
|
239
|
+
{
|
|
240
|
+
'@context': 'https://schema.org',
|
|
241
|
+
'@type': 'SoftwareApplication',
|
|
242
|
+
name: title,
|
|
243
|
+
description,
|
|
244
|
+
applicationCategory: 'UtilityApplication',
|
|
245
|
+
operatingSystem: 'Web',
|
|
246
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
247
|
+
} as WithContext<SoftwareApplication>,
|
|
248
|
+
{
|
|
249
|
+
'@context': 'https://schema.org',
|
|
250
|
+
'@type': 'FAQPage',
|
|
251
|
+
mainEntity: faq.map((item) => ({
|
|
252
|
+
'@type': 'Question',
|
|
253
|
+
name: item.question,
|
|
254
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
255
|
+
})),
|
|
256
|
+
} as WithContext<FAQPage>,
|
|
257
|
+
{
|
|
258
|
+
'@context': 'https://schema.org',
|
|
259
|
+
'@type': 'HowTo',
|
|
260
|
+
name: `How to use: ${title}`,
|
|
261
|
+
step: howTo.map((s) => ({ '@type': 'HowToStep', name: s.name, text: s.text })),
|
|
262
|
+
} as WithContext<HowTo>,
|
|
263
|
+
];
|
|
264
|
+
|
|
265
|
+
export const content: SailAreaLocaleContent = {
|
|
266
|
+
slug,
|
|
267
|
+
title,
|
|
268
|
+
description,
|
|
269
|
+
ui,
|
|
270
|
+
seo,
|
|
271
|
+
faq,
|
|
272
|
+
bibliography,
|
|
273
|
+
howTo,
|
|
274
|
+
schemas,
|
|
275
|
+
};
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { SailAreaUI, SailAreaLocaleContent } from '../index';
|
|
3
|
+
|
|
4
|
+
const slug = 'calculadora-superficie-velica';
|
|
5
|
+
const title = 'Calculadora de Superficie Velica y Ratio SA/D';
|
|
6
|
+
const description =
|
|
7
|
+
'Calcula el area total de tus velas y el ratio superficie/desplazamiento. Analisis de rendimiento nautico basado en medidas I, J, P y E.';
|
|
8
|
+
|
|
9
|
+
const ui: SailAreaUI = {
|
|
10
|
+
hullSectionLabel: 'Datos del Casco',
|
|
11
|
+
totalMassLabel: 'Desplazamiento',
|
|
12
|
+
rigSystemLabel: 'Aparejo',
|
|
13
|
+
intendedUseLabel: 'Uso previsto',
|
|
14
|
+
rigGeometryLabel: 'Geometria del Aparejo',
|
|
15
|
+
sailConfigLabel: 'Tipo de aparejo',
|
|
16
|
+
genoaOverlapLabel: 'Solape del Genova',
|
|
17
|
+
foqueLabel: 'Foque',
|
|
18
|
+
genovaLabel: 'Genova',
|
|
19
|
+
sadRatioLabel: 'Ratio SA/D',
|
|
20
|
+
totalAreaLabel: 'Superficie total',
|
|
21
|
+
performanceLabel: 'Rendimiento',
|
|
22
|
+
sloopLabel: 'Sloop (un palo)',
|
|
23
|
+
cutterLabel: 'Cutter (doble proa)',
|
|
24
|
+
ketchLabel: 'Ketch (dos palos)',
|
|
25
|
+
cruiserLabel: 'Crucero',
|
|
26
|
+
performanceTypeLabel: 'Performance',
|
|
27
|
+
racerLabel: 'Regata',
|
|
28
|
+
exportPdfLabel: 'GENERAR INFORME TECNICO',
|
|
29
|
+
faqTitle: 'Preguntas Frecuentes',
|
|
30
|
+
bibliographyTitle: 'Referencias',
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
const faq: SailAreaLocaleContent['faq'] = [
|
|
34
|
+
{
|
|
35
|
+
question: '¿Por que mi barco es lento con poco viento?',
|
|
36
|
+
answer: 'Probablemente tu ratio SA/D es inferior a 15, lo que indica un barco de desplazamiento pesado con poca superficie velica en relacion a su peso. Estos barcos necesitan vientos de mas de 12 nudos para navegar con vivacidad.',
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
question: '¿Debo vaciar los tanques de agua para mejorar el rendimiento?',
|
|
40
|
+
answer: 'Si, aligerar el barco mejora directamente el ratio SA/D porque el desplazamiento real disminuye. Vaciar tanques de agua y combustible puede reducir el desplazamiento varios cientos de kilos y subir el ratio significativamente.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
question: '¿Que es el Roach en una vela?',
|
|
44
|
+
answer: 'El Roach es la curva convexa de la baluma (borde posterior) de la vela mayor. Aporta superficie velica extra mas alla del triangulo geometrico base definido por P y E. Los barcos de regata tienen Roach agresivos con batons rigidos.',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
question: '¿Como se mide el desplazamiento real de mi barco?',
|
|
48
|
+
answer: 'Lo mas fiable es usar el desplazamiento en carga (con todos los pertrechos, agua, combustible y tripulacion a bordo). El desplazamiento en rosca del manual del constructor suele ser optimista. Usa el desplazamiento real en las condiciones habituales de navegacion.',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
question: '¿Donde encuentro las medidas I, J, P y E de mi barco?',
|
|
52
|
+
answer: 'Las encontraras en el manual del propietario, en los certificados de rating ORC o IRC, o en la documentacion de los certificados de clase. Tambien puedes medirlas directamente a bordo con cinta metrica o consultando al astillero constructor.',
|
|
53
|
+
},
|
|
54
|
+
];
|
|
55
|
+
|
|
56
|
+
const howTo: SailAreaLocaleContent['howTo'] = [
|
|
57
|
+
{
|
|
58
|
+
name: 'Selecciona el tipo de aparejo',
|
|
59
|
+
text: 'Elige entre Sloop (un palo), Cutter (foque y trinqueta) o Ketch (palo de mesana). Esto determina como se calcula la superficie total.',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: 'Introduce el desplazamiento',
|
|
63
|
+
text: 'Usa el desplazamiento real en carga de tu barco en kg o lbs. Este dato es clave para el calculo del ratio SA/D.',
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
name: 'Mide la geometria del aparejo',
|
|
67
|
+
text: 'Introduce las medidas P (altura del palo), E (boma), I (altura del triangulo de proa) y J (base del triangulo de proa) en metros o pies.',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Ajusta el solape del genova',
|
|
71
|
+
text: 'Mueve el slider para indicar el solape de tu genova: 100% es un foque sin solape, 130% es un genova estandar, 155% es un genova de gran solape.',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
name: 'Interpreta el ratio SA/D',
|
|
75
|
+
text: 'Un ratio entre 16 y 20 es un crucero equilibrado. Por encima de 20 el barco sera muy vivo en poco viento pero exigente con viento fresco.',
|
|
76
|
+
},
|
|
77
|
+
];
|
|
78
|
+
|
|
79
|
+
const bibliography: SailAreaLocaleContent['bibliography'] = [
|
|
80
|
+
{
|
|
81
|
+
name: 'Sociedad de Arquitectos Navales - SNAME',
|
|
82
|
+
url: 'https://www.sname.org/',
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: 'ORC - Offshore Racing Congress',
|
|
86
|
+
url: 'https://orc.org/',
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: 'Elvstrom Sailmakers - Manual de Veleria',
|
|
90
|
+
url: 'https://www.elvstromsails.com/',
|
|
91
|
+
},
|
|
92
|
+
];
|
|
93
|
+
|
|
94
|
+
const seo: SailAreaLocaleContent['seo'] = [
|
|
95
|
+
{
|
|
96
|
+
type: 'title',
|
|
97
|
+
text: 'Calculadora de Superficie Velica: Guia Completa de Rendimiento y Ratios',
|
|
98
|
+
level: 2,
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
type: 'paragraph',
|
|
102
|
+
html: 'La superficie velica es el motor aerodinamico de cualquier embarcacion de vela. Determina cuanta energia del viento puede capturar el barco y, en combinacion con su desplazamiento, define su caracter nautico: si sera un crucero perezoso o una maquina de regata nerviosa. Calcular correctamente este valor es el primer paso para entender el comportamiento de cualquier velero.',
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
type: 'paragraph',
|
|
106
|
+
html: 'Navegar a vela implica una danza constante entre la fuerza del viento sobre las velas y la resistencia del agua sobre el casco. El <strong>ratio Superficie Velica / Desplazamiento (SA/D)</strong> captura esta relacion en un solo numero que permite comparar barcos de cualquier eslora y desplazamiento en igualdad de condiciones.',
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: 'stats',
|
|
110
|
+
items: [
|
|
111
|
+
{ label: 'Ratio Crucero Ideal', value: '15-18', icon: 'mdi:anchor' },
|
|
112
|
+
{ label: 'Barcos de Regata', value: '+24', icon: 'mdi:sailing' },
|
|
113
|
+
{ label: 'Margen de Error', value: '5-10%', icon: 'mdi:alert-circle-outline' },
|
|
114
|
+
],
|
|
115
|
+
columns: 3,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
type: 'title',
|
|
119
|
+
text: '¿Para que sirve calcular el Ratio SA/D?',
|
|
120
|
+
level: 3,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'paragraph',
|
|
124
|
+
html: 'El ratio <strong>Sail Area / Displacement</strong> es una herramienta de diagnostico que permite predecir el comportamiento del barco antes de zarpar. Un ratio bajo indica un barco robusto y seguro pero lento en poco viento; un ratio alto ofrece velocidad y sensacion de vuelo pero exige mayor habilidad en la tripulacion cuando el viento arrecia. Ninguno es superior al otro: todo depende del tipo de navegacion que se pretende realizar.',
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'title',
|
|
128
|
+
text: 'Tabla de Referencia de Ratios SA/D',
|
|
129
|
+
level: 4,
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
type: 'table',
|
|
133
|
+
headers: ['Ratio', 'Tipo de Barco', 'Comportamiento en el Mar'],
|
|
134
|
+
rows: [
|
|
135
|
+
['< 14', 'Desplazamiento Pesado / Barco de Carga', 'Estable, lento, requiere viento sostenido'],
|
|
136
|
+
['14 - 16.5', 'Crucero de Travesia Offshore', 'Equilibrado, comodo, buena mar de proa'],
|
|
137
|
+
['16.5 - 20', 'Crucero Estandar de Marina', 'Vivo con brisa, manejable, versatil'],
|
|
138
|
+
['20 - 25', 'Performance Cruiser / Sport', 'Rapido, exigente, emocionante con poco viento'],
|
|
139
|
+
['> 25', 'Regata / Sport Extremo', 'Muy rapido, nervioso, exige tripulacion experta'],
|
|
140
|
+
],
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
type: 'title',
|
|
144
|
+
text: 'Glosario Tecnico de Medidas (I, J, P, E)',
|
|
145
|
+
level: 3,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
type: 'glossary',
|
|
149
|
+
items: [
|
|
150
|
+
{
|
|
151
|
+
term: 'I (Altura del Foretriangulo)',
|
|
152
|
+
definition: 'Distancia vertical desde la cubierta hasta el punto donde se engancha la driza del foque en el palo. Define la altura del triangulo de proa.',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
term: 'J (Base del Foretriangulo)',
|
|
156
|
+
definition: 'Distancia horizontal desde el palo hasta la roda (proa del barco). Define la base del triangulo de proa donde van enrolladas o apareadas las velas de proa.',
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
term: 'P (Altura del Palo)',
|
|
160
|
+
definition: 'Distancia desde la cubierta hasta la polea de la driza de mayor en la cruceta superior o tope del palo. Define la altura de la vela mayor.',
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
term: 'E (Longitud del Boma)',
|
|
164
|
+
definition: 'Distancia desde el palo hasta el puno de escota de la vela mayor en el extremo del boma. Define la base de la vela mayor.',
|
|
165
|
+
},
|
|
166
|
+
],
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
type: 'title',
|
|
170
|
+
text: 'Calculos para Examenes Nauticos (PER y Patron de Yate)',
|
|
171
|
+
level: 3,
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
type: 'paragraph',
|
|
175
|
+
html: 'El calculo de superficie velica y el ratio SA/D forma parte del temario de los examenes del <strong>Patron de Embarcaciones de Recreo (PER)</strong> y del <strong>Patron de Yate</strong> en Espana. Comprender la geometria del aparejo y su relacion con el desplazamiento es fundamental para tomar decisiones de seguridad en la mar: reducir vela a tiempo, elegir el genova adecuado o estimar el comportamiento del barco ante una galerna.',
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
type: 'tip',
|
|
179
|
+
title: 'Velas de Portantes y Seguridad',
|
|
180
|
+
html: 'Para navegacion oceanic o de travesia larga, un ratio SA/D entre 16 y 18 ofrece el mejor equilibrio entre velocidad y seguridad. Barcos con ratios superiores a 22 pueden requerir rizos con vientos de solo Fuerza 4-5.',
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: 'title',
|
|
184
|
+
text: '¿Como afecta el Solape del Genova?',
|
|
185
|
+
level: 4,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
type: 'paragraph',
|
|
189
|
+
html: 'El <strong>genova</strong> es la vela de proa mas grande, cuyo punto de escota se situa detras del palo, "solapando" la vela mayor. El porcentaje de solape indica cuanto mas larga es la perpendicular al gratil (LP) respecto a la distancia J. Un genova del 150% tiene una LP equivalente al 150% de J, aportando una superficie velica muy superior a un simple foque.',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
type: 'comparative',
|
|
193
|
+
items: [
|
|
194
|
+
{
|
|
195
|
+
title: 'Dacron (Crucero)',
|
|
196
|
+
description: 'Material clasico para velas de crucero. Robusto y facil de mantener.',
|
|
197
|
+
points: [
|
|
198
|
+
'Alta durabilidad y resistencia UV',
|
|
199
|
+
'Bajo coste de mantenimiento',
|
|
200
|
+
'Mayor peso y stretch bajo carga',
|
|
201
|
+
'Ideal para navegacion de eslora y travesia',
|
|
202
|
+
],
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
title: 'Laminadas (Regata)',
|
|
206
|
+
description: 'Materiales de alta tecnologia como Kevlar, Spectra o Dyneema.',
|
|
207
|
+
highlight: true,
|
|
208
|
+
points: [
|
|
209
|
+
'Minimo stretch: maxima eficiencia aerodinamica',
|
|
210
|
+
'Mucho menor peso que el Dacron',
|
|
211
|
+
'Mayor coste y vida util mas corta',
|
|
212
|
+
'Imprescindible en barcos de ratio SA/D > 22',
|
|
213
|
+
],
|
|
214
|
+
},
|
|
215
|
+
],
|
|
216
|
+
columns: 2,
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
type: 'title',
|
|
220
|
+
text: 'Fisica de la Navegacion y Estabilidad',
|
|
221
|
+
level: 3,
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
type: 'paragraph',
|
|
225
|
+
html: 'La superficie velica genera una fuerza propulsora pero tambien un <strong>momento escorante</strong> que tiende a tumbar el barco. La estabilidad se mide por el par adrizante que el barco puede oponer a este momento. Un ratio SA/D alto en un barco con poco lastre puede ser peligroso, mientras que el mismo ratio en un barco con quilla profunda y pesada es perfectamente manejable.',
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
type: 'paragraph',
|
|
229
|
+
html: 'Para calcular la potencia real disponible, los arquitectos navales utilizan el <strong>Displacement-Length Ratio (DLR)</strong> en combinacion con el SA/D. Ambos ratios juntos describen con precision si un barco es un remolcador marino o un planeador de regata.',
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
type: 'tip',
|
|
233
|
+
title: 'Estabilidad y Seguridad',
|
|
234
|
+
html: 'Nunca evalues el SA/D de forma aislada. Un velero con ratio de 22 y un angulo de adrizado de 90 grados es mucho mas seguro que uno con ratio de 18 y angulo de adrizado de 60 grados. Consulta siempre la curva de estabilidad de tu barco.',
|
|
235
|
+
},
|
|
236
|
+
];
|
|
237
|
+
|
|
238
|
+
const schemas: SailAreaLocaleContent['schemas'] = [
|
|
239
|
+
{
|
|
240
|
+
'@context': 'https://schema.org',
|
|
241
|
+
'@type': 'SoftwareApplication',
|
|
242
|
+
name: title,
|
|
243
|
+
description,
|
|
244
|
+
applicationCategory: 'UtilityApplication',
|
|
245
|
+
operatingSystem: 'Web',
|
|
246
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
247
|
+
} as WithContext<SoftwareApplication>,
|
|
248
|
+
{
|
|
249
|
+
'@context': 'https://schema.org',
|
|
250
|
+
'@type': 'FAQPage',
|
|
251
|
+
mainEntity: faq.map((item) => ({
|
|
252
|
+
'@type': 'Question',
|
|
253
|
+
name: item.question,
|
|
254
|
+
acceptedAnswer: { '@type': 'Answer', text: item.answer },
|
|
255
|
+
})),
|
|
256
|
+
} as WithContext<FAQPage>,
|
|
257
|
+
{
|
|
258
|
+
'@context': 'https://schema.org',
|
|
259
|
+
'@type': 'HowTo',
|
|
260
|
+
name: `Como usar: ${title}`,
|
|
261
|
+
step: howTo.map((s) => ({ '@type': 'HowToStep', name: s.name, text: s.text })),
|
|
262
|
+
} as WithContext<HowTo>,
|
|
263
|
+
];
|
|
264
|
+
|
|
265
|
+
export const content: SailAreaLocaleContent = {
|
|
266
|
+
slug,
|
|
267
|
+
title,
|
|
268
|
+
description,
|
|
269
|
+
ui,
|
|
270
|
+
seo,
|
|
271
|
+
faq,
|
|
272
|
+
bibliography,
|
|
273
|
+
howTo,
|
|
274
|
+
schemas,
|
|
275
|
+
};
|