Tire Sizing (vehicle-design/sizing/tire-sizing)
Use when the task is selecting the tires for the landing gear at the
conceptual level: the static load per tire, the tire diameter and
width estimates, the number of tires, the inflation pressure, and the
footprint and rolling radius that come out of the load.
Domain quick reference
- The static load per tire is the gear load share of the takeoff
weight divided by the number of tires on that gear. Worked: a
78,000 kg transport with 0.95 of the weight on the main gear and 4
main tires carries 78000 * 0.95 / 4 = 18,525 kg per tire, which is
40,841 lb.
- Tire diameter and width are estimated with power law fits of the
form dimension = coeff * loadexponent on the load per tire in
pounds. Representative class-I fit values: diameter = 1.63 *
P0.315 and width = 0.40 * P**0.36, giving 46.2 in (1174 mm)
diameter and 18.3 in (464 mm) width at 40,841 lb. The fits are
estimates: the final tire comes from the tire catalog and the wheel
rating.
- The footprint contact area is the load per tire divided by the
inflation pressure: 40,841 lb at 200 psi gives 204.2 sq in. Main
tire inflation pressures for transports commonly fall in the 150 to
220 psi band.
- The rolling radius is half the tire diameter: 23.1 in (587 mm) for
the 46.2 in tire.
- The required number of tires on a gear is the gear load total
divided by the maximum load capacity per tire, rounded up: 163,363
lb on the main gear at 45,000 lb per tire gives 4 tires.
- Nose gear worked example: 0.10 of the weight and 2 nose tires give
3,900 kg per tire (8,598 lb) and a 28.3 in (719 mm) diameter tire.
- Tire and wheel selection sits in the FAR-25 / CS-25 context,
including the wheel and tire rating and landing gear drop test
requirements (25.723, 25.733, 25.735).
Workflow
- Collect the takeoff weight, the gear load share fraction (for
example 0.95 main gear and 0.10 nose gear), the number of tires on
the gear, and the inflation pressure.
- Compute the load per tire with static_load_per_tire(mtow_kg,
gear_fraction, n_tires) and convert it to pounds with kg_to_lb.
- Estimate the dimensions with tire_diameter_inches(load_lb) and
tire_width_inches(load_lb).
- Select the tire count with required_number_of_tires(gear_load_lb,
max_load_per_tire_lb) from the gear load total and the catalog
capacity.
- Compute the footprint with footprint_area_sqin(load_lb,
pressure_psi) and the rolling radius with
rolling_radius_inches(diameter_in).
- Close with the catalog check: pick the catalog tire whose rating
covers the static load per tire at the selected pressure.
Pitfalls
- Routing strut load distribution here: the CG-based nose and main
gear load share, the shock absorber stroke, and the tire rating
margin check against an existing tire belong to the
landing-gear-sizing sub-skill; this leaf starts from the per-tire
static load and selects the tire itself.
- Routing ground handling questions here: braking friction,
cornering, and traction coefficients belong to the performance
leaves, not to tire geometry sizing.
- Treating the power law fit as a catalog value: the fit is a class-I
estimate; the final tire must come from the tire catalog with the
rating checked against the static load per tire.
- Mixing units: the fits are pound-inch curve fits; convert kg to lb
(1 kg = 2.20462 lb) and inches to mm (1 in = 25.4 mm) before
comparing with a metric catalog.
- Rounding the tire count down: the required number of tires rounds
up; a fractional division result means one more tire is needed.
- A gear fraction above 1: one gear cannot carry more than the total
weight; the logic raises ValueError instead of guessing.
- Passing a zero load, a zero pressure, or a non-integer tire count:
the logic raises ValueError.
Behavior contract (gate 3)
The load split, power law dimension fits, footprint, rolling radius,
and tire count logic are exercised by the gate 3 contract test:
scripts/test_tire_sizing.py against scripts/tire_sizing_logic.py
(stdlib unittest, offline). Run:
python3 scripts/test_tire_sizing.py
Compliance
- Standards referenced, not reproduced: FAR-25 is US government work
(public domain) and CS-25 is a free EASA download; the wheel and
tire rating and landing gear drop test requirements frame the tire
sizing context, and the power law fits are common conceptual design
methodology, summary-only per standards-map.yaml.
- compliance: STANDARDS-REF, gated: false.
1---2name: tire-sizing3description: Use when you must size the tires for an aircraft landing gear at the conceptual level: split the static load per tire from the takeoff weight, the gear load share, and the tire count, compute the tire diameter and width with the power law fit, select the number of tires from the load capacity per tire, set the inflation pressure, and compute the footprint contact area and the rolling radius. Produces the tire dimensions, the required tire count, and the footprint that gate the landing gear configuration. Trigger: tire sizing, tire diameter, tire width, static load per tire, number of tires, inflation pressure, footprint, rolling radius.4license: Apache-2.05---6# Tire Sizing (vehicle-design/sizing/tire-sizing)78Use when the task is selecting the tires for the landing gear at the9conceptual level: the static load per tire, the tire diameter and10width estimates, the number of tires, the inflation pressure, and the11footprint and rolling radius that come out of the load.1213## Domain quick reference1415- The static load per tire is the gear load share of the takeoff16 weight divided by the number of tires on that gear. Worked: a17 78,000 kg transport with 0.95 of the weight on the main gear and 418 main tires carries 78000 * 0.95 / 4 = 18,525 kg per tire, which is19 40,841 lb.20- Tire diameter and width are estimated with power law fits of the21 form dimension = coeff * load**exponent on the load per tire in22 pounds. Representative class-I fit values: diameter = 1.63 *23 P**0.315 and width = 0.40 * P**0.36, giving 46.2 in (1174 mm)24 diameter and 18.3 in (464 mm) width at 40,841 lb. The fits are25 estimates: the final tire comes from the tire catalog and the wheel26 rating.27- The footprint contact area is the load per tire divided by the28 inflation pressure: 40,841 lb at 200 psi gives 204.2 sq in. Main29 tire inflation pressures for transports commonly fall in the 150 to30 220 psi band.31- The rolling radius is half the tire diameter: 23.1 in (587 mm) for32 the 46.2 in tire.33- The required number of tires on a gear is the gear load total34 divided by the maximum load capacity per tire, rounded up: 163,36335 lb on the main gear at 45,000 lb per tire gives 4 tires.36- Nose gear worked example: 0.10 of the weight and 2 nose tires give37 3,900 kg per tire (8,598 lb) and a 28.3 in (719 mm) diameter tire.38- Tire and wheel selection sits in the FAR-25 / CS-25 context,39 including the wheel and tire rating and landing gear drop test40 requirements (25.723, 25.733, 25.735).4142## Workflow43441. Collect the takeoff weight, the gear load share fraction (for45 example 0.95 main gear and 0.10 nose gear), the number of tires on46 the gear, and the inflation pressure.472. Compute the load per tire with static_load_per_tire(mtow_kg,48 gear_fraction, n_tires) and convert it to pounds with kg_to_lb.493. Estimate the dimensions with tire_diameter_inches(load_lb) and50 tire_width_inches(load_lb).514. Select the tire count with required_number_of_tires(gear_load_lb,52 max_load_per_tire_lb) from the gear load total and the catalog53 capacity.545. Compute the footprint with footprint_area_sqin(load_lb,55 pressure_psi) and the rolling radius with56 rolling_radius_inches(diameter_in).576. Close with the catalog check: pick the catalog tire whose rating58 covers the static load per tire at the selected pressure.5960## Pitfalls6162- Routing strut load distribution here: the CG-based nose and main63 gear load share, the shock absorber stroke, and the tire rating64 margin check against an existing tire belong to the65 landing-gear-sizing sub-skill; this leaf starts from the per-tire66 static load and selects the tire itself.67- Routing ground handling questions here: braking friction,68 cornering, and traction coefficients belong to the performance69 leaves, not to tire geometry sizing.70- Treating the power law fit as a catalog value: the fit is a class-I71 estimate; the final tire must come from the tire catalog with the72 rating checked against the static load per tire.73- Mixing units: the fits are pound-inch curve fits; convert kg to lb74 (1 kg = 2.20462 lb) and inches to mm (1 in = 25.4 mm) before75 comparing with a metric catalog.76- Rounding the tire count down: the required number of tires rounds77 up; a fractional division result means one more tire is needed.78- A gear fraction above 1: one gear cannot carry more than the total79 weight; the logic raises ValueError instead of guessing.80- Passing a zero load, a zero pressure, or a non-integer tire count:81 the logic raises ValueError.8283## Behavior contract (gate 3)8485The load split, power law dimension fits, footprint, rolling radius,86and tire count logic are exercised by the gate 3 contract test:87scripts/test_tire_sizing.py against scripts/tire_sizing_logic.py88(stdlib unittest, offline). Run:89python3 scripts/test_tire_sizing.py9091## Compliance9293- Standards referenced, not reproduced: FAR-25 is US government work94 (public domain) and CS-25 is a free EASA download; the wheel and95 tire rating and landing gear drop test requirements frame the tire96 sizing context, and the power law fits are common conceptual design97 methodology, summary-only per standards-map.yaml.98- compliance: STANDARDS-REF, gated: false.