Post about upgrading tyres and tubes on my bike
All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 2m16s

This commit is contained in:
Lewis Dale 2024-06-28 11:28:02 +01:00
parent 48ddda3713
commit 2ca3d93ef9
5 changed files with 59 additions and 6 deletions

View File

@ -51,6 +51,7 @@ const markdownLib = markdownIt({
.use(markdownItFootnote) .use(markdownItFootnote)
.use(markdownitMark) .use(markdownitMark)
.use(markdownitAbbr) .use(markdownitAbbr)
.use(markdownItCallouts)
.use(markdownItEleventyImg, { .use(markdownItEleventyImg, {
imgOptions: { imgOptions: {
widths: [300, 600, 1000, 1440], widths: [300, 600, 1000, 1440],
@ -65,8 +66,7 @@ const markdownLib = markdownIt({
(max-width: 1440px) 1440px, (max-width: 1440px) 1440px,
100%` 100%`
} }
}) });
.use(markdownItCallouts);
markdownLib.renderer.rules.emoji = function(token, idx) { markdownLib.renderer.rules.emoji = function(token, idx) {
return `<span class="fa-li"><i class="fa-solid fa-${token[idx].markup}" aria-hidden="true"></i></span>`; return `<span class="fa-li"><i class="fa-solid fa-${token[idx].markup}" aria-hidden="true"></i></span>`;

View File

@ -0,0 +1,24 @@
---json
{
"title": "Upgrading my tyres and tubes",
"date": "2024-06-28T09:33:33.170Z",
"tags": [
"cycling",
"BikeTooter"
],
"excerpt": "After never really wanting to spend the extra money, I finally replaced my stock Continental Ultra Sport III tyres with Continental Grand Prix 5000, and I was blown away."
}
---
I've never really bought into the idea that spending ludicrous amounts of money on tyres for marginal gains was worth it. Up until now, I've been really happy with my 28mm Contintental Ultra Sport III tyres - according to [bicyclerollingresistance.com](https://www.bicyclerollingresistance.com/road-bike-reviews/continental-ultra-sport-iii-2020) they only have about 6 watts more rolling resistance compared to the Continental Grand Prix 5000's, but are a fraction of the price- I think I've paid about £15 per tyre previously. The ones that came stock on my Ribble Endurance SL Disc were 700x28c wire bead Ultra Sport IIIs, so the heavier option. They've been absolutely fine the whole time, I can't say I've struggled keeping up on club rides or anything like that.
But, given it was my birthday and I'm getting a new wheelset soon[^1], I thought I'd treat myself. I got a pair of [folding Continental GP 5000s for about £90](https://www.merlincycles.com/continental-gp5000-folding-tyres-with-2-free-inner-tubes-pair-129803.html). I also got some RideNow TPU inner tubes from AliExpress, which I got for £14 for a pack of 4. The inner tubes are _tiny_, but weren't too bad to fit either. Here's one of them next to the spare butyl inner tube that I kept in my saddle bag:
![Shows a folded pink TPU inner tube next to a black folded "normal" inner tube. The TPU tube is roughly a quarter of the size of the butyl one](./src/images/tpu_butyl_tubes.jpeg)
Once everything was fitted[^2] onto the wheels, I went for a quick ride to test them out. Holy shit, have I been missing out. The combination of the tyres and inner tubes have dropped something like 300g total from the weight of my wheels, added to the reduction in rolling resistance, just meant that the ride quality was superb. I've noticed a definite increase in my average speed, given that even on solo rides I've been able to maintain a 40+ kph pace over several kilometres, something I don't think I managed frequently before. The tyres feel grippier too, I'm more confident on cornering and on descents.
I think as a ratio of cost-to-benefit, this might have been one of the most effective upgrades I've made to my bike. I'm looking forward to my new wheels arriving too; the deeper rims, significant reduction in weight, and stiffness from carbon wheels should make for a really nice and comfortable ride.
[^1]: Once it appears on dry land following a voyage across the Indian Ocean
[^2]: I actually got my local bike shop to fit them because I'm lazy and he could get the logos lined up nicely

View File

@ -1,12 +1,42 @@
.callout { .callout {
background-color: var(--color-callout-bg); background-color: var(--color-callout-bg);
border: 5px solid var(--color-callout-border); border: 2px solid var(--color-callout-border);
border-radius: 10px; /* border-radius: 10px; */
color: var(--color-primary); color: var(--color-primary);
height: fit-content; height: fit-content;
padding: var(--space-size-xs); padding: var(--space-size-2xs);
text-align: center; text-align: center;
p { p {
margin: 0 auto; margin: 0 auto;
} }
.callout-title {
display: flex;
align-items: center;
gap: 0.5ch;
.callout-title-icon svg {
max-height: var(--text-size-s);
}
.callout-title-inner {
text-transform: capitalize;
}
> * {
display: flex;
align-items: center;
height: fit-content;
}
}
.callout-content {
text-align: initial;
margin-top: var(--space-size-xs);
p {
margin: 0;
}
}
} }

View File

@ -154,5 +154,4 @@ img, picture {
max-width: 100%; max-width: 100%;
height: auto; height: auto;
object-fit: cover; object-fit: cover;
width: auto;
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 MiB