Cycling – wide tyres can be quicker than thin tyres

See article on schwalbe website: http://www.schwalbetires.com/tech_info/rolling_resistance

Extract….

What exactly is rolling resistance?

Rolling resistance is the energy that is lost when the tire is rolling and the main reason for loss of energy is the constant deformation of the tire. In addition to rolling resistance, there are also other resistances that have to be overcome when riding a bicycle.

Air resistance rises squared with increased speed. At a straight-line speed of 20 km/h on the flat, air resistance is the main resistance force.

Energy is also required to accelerate. For instance, the weight of the wheels is of great importance when this mass has to be brought up to rotation.

When riding uphill, the main resisting force to overcome is the gradient resistance (descending force).

In addition to these, there are other friction resistances in the chain and all of the other moving parts. Yet in a well-serviced bicycle, these represent a very minor part of the total resistance.


Which factors affect rolling resistance?

Tire pressure, tire diameter, tire construction, tire tread and other factors all have an effect on rolling resistance. The higher the tire pressure, the less is tire deformation and thus the rolling resistance.

Small diameter tires have a higher rolling resistance at the same tire pressure, because tire deformation is proportionally more important, in other words the tire is “less round”. Wider tires roll better than narrow ones. This assertion generally generates skepticism, nevertheless at the same tire pressure a narrow tire deflects more and so deforms more.

Obviously, tire construction also has an effect on rolling resistance. The less material is used, the less material there is to deform. And the more flexible the material is, such as the rubber compound, the less energy is lost through deformation.

Generally, smooth treads roll better than coarse treads. Tall lugs and wide gaps usually have a detrimental effect on rolling resistance.


Why do wide tires roll better than narrow ones?

The answer to this question lies in tire deflection. Each tire is flattened a little under load. This creates a flat contact area.

At the same tire pressure, a wide and a narrow tire have the same contact area. A wide tire is flattened over its width whereas a narrow tire has a slimmer but longer contact area.

The flattened area can be considered as a counterweight to tire rotation. Because of the longer flattened area of the narrow tire, the wheel loses more of its “roundness” and produces more deformation during rotation. However, in the wide tire, the radial length of the flattened area is shorter, making the tire “rounder” and so it rolls better.


Why do Pros ride narrow tires if wide tires roll better?

Wide tires only roll better at the same inflation pressure, but narrow tires can be inflated to higher pressures than wide tires. However, they then obviously give a less comfortable ride. In addition to this, narrow tires have an advantage over wide ones at higher speeds, as they provide less air resistance.

Above all, a bicycle with narrow tires is much easier to accelerate because the rotating mass of the wheels is lower and the bicycle is much more agile. At constant speeds of around 20 km/h, the ride is better with wider tires. In practice, the energy saving is even greater than in theory as the elasticity of the tires absorbs road shocks, which would otherwise be transferred to the rider and so saves energy.


Which SCHWALBE tire has the lowest rolling resistance?

The rolling resistance of a tire should not be overestimated, as it is only a part of the total resistance. In addition, the correct inflation pressure has a much greater influence on rolling resistance than the tire structure.

In order to make a tire with very low rolling resistance, it is necessary to compromise on other important factors such as puncture protection or grip.

The following gives a rough overview of tires and their relative rolling resistance. A direct comparison is impossible though, as the tires have different widths and some are used with very different inflation pressures.

Typescript – how to access a global javascript function

There is a javascript function defined in the global namespace that must be accessed from typescript:


function testing123( p1, p2) {

// implementation omitted

}

In the typescript file define an extension to Window interface :


interface Window {

testing123(p1 : string, p2: number) : void;

}

In typescript file invoke the function like this:


...

window.testing123('test', 42);

...

c# Getting resourced enum value

public enum Employee
{
[Display(ResourceType = typeof(MyAssembly.Labels), Name = "Contractor")]
Contractor= 0,
[Display(ResourceType = typeof(MyAssembly.Labels), Name = "PAYE")]
Paye= 1
}

public static class EnumResourceHelper
{
public static string GetResourcedName(Type enumType, string name)
{
if (!typeof(Enum).IsAssignableFrom(enumType))
{
throw new ArgumentException("enumType must be an Enum");
}

var result = name;

var displayAttribute = enumType.GetField(name)
.GetCustomAttributes(inherit: false)
.OfType<DisplayAttribute>()
.FirstOrDefault();

if (displayAttribute != null)
{
result = displayAttribute.GetName();
}

return result;
}

public static string GetResourcedName<T>(T enumValue)
{
var name = Enum.GetName(typeof(T), enumValue);

if (string.IsNullOrWhiteSpace(name))
{
throw new ArgumentOutOfRangeException("enumValue", string.Format("{1} does not contain the value: {0}.", enumValue, typeof(T).ToString()));
}

return GetResourcedName(typeof(T), name);
}
}