Accurate Calculation of PBCOR from Core Features with ML

Accurate Calculation of PBCOR from Core Features with ML

Written by: Brian Laposa

|

|

|

Time to read 3 min

Technical Summary

Derivation of the Paddle Performance Calculator Logic

Date: July 15, 2025

Objective

To develop a reliable, data-driven calculator to predict a pickleball paddle's Coefficient of Restitution (PBCOR) based on its physical design parameters. This tool is intended to aid in the research and development process by providing performance estimates without requiring constant, expensive lab testing.

1. Data Source and Extraction

The foundation of this project was empirical data sourced from the "PPL Paddle Performance Trends" PDF document. Key performance metrics were manually extracted from the bar charts on pages 3 ("Traditional Paddle PBCOR vs ADF, Thickness and MOI") and 5 ("Foam Core Paddles").

This process yielded a structured dataset with 15 distinct data points, each containing the following features:

  • PBCOR: The target variable representing the paddle's coefficient of restitution.
  • ADF (Average Deflection Force): A measure of the paddle's face stiffness in pounds (lb).
  • Thickness: The core thickness of the paddle in millimeters (mm).
  • MOI (Moment of Inertia): A measure of the paddle's resistance to rotational acceleration in oz*in².

2. Exploratory Modeling and Feature Analysis

An iterative modeling process was undertaken using multiple linear regression to determine the relationship between the physical features and the resulting PBCOR.

Initial Models & Key Finding:

Initial attempts to predict PBCOR using only MOI and Thickness proved highly ineffective. A model incorporating these two features, along with a combined "interaction" feature (MOI * Thickness), could only explain about 13.4% of the variance in the performance data (R-squared ≈ 0.134). This confirmed the PDF's claim that these features are not primary performance drivers on their own.

 

 

The Breakthrough Model:

A new model was developed that included ADF (stiffness) alongside MOI and Thickness. The inclusion of this single variable dramatically improved the model's predictive power. The final, most accurate predictive formula was determined to be:

PBCOR = (0.000649 * MOI) - (0.014622 * Thickness) - (0.002673 * ADF) + 0.346215

The R-squared value for this model was 0.825, indicating that this formula can explain approximately 82.5% of the performance variation in the dataset. This confirmed that a paddle's stiffness is the most critical factor in determining its coefficient of restitution.

3. Development of a Practical Proxy for ADF

A significant practical challenge is that ADF is a lab-measured value, making it difficult to use in a day-to-day design environment. To overcome this, a method was derived to calculate ADF using a simple, in-house physical test. The derivation is based on the physical principle of stiffness (Stiffness = Force / Deflection) and the known parameters of the official USAP test protocol:

  1. Known Force: The standard test applies a 5 lb load to the paddle face.
  2. Known Standard Deflection: The official ADF value is calculated relative to a standard deflection distance of 0.0625 inches.
  3. Measured Variable: A simple in-house test can measure the actual deflection (d) of a paddle in inches under the 5 lb load.

Using these knowns, the formula to convert a measured deflection (d) into an ADF value was derived:

ADF (lb) = (5 lb * 0.0625 in) / d (in) = 0.3125 / d (in)

4. Synthesis of Final Calculator Logic

The final calculator logic combines the predictive model with the practical ADF proxy. This creates a two-step process that allows a designer at Coretek to estimate a paddle's performance using a simple physical measurement.

Step 1: Determine ADF from a physical test.

  • Apply a 5 lb load to the center of the paddle face. (as is done when certifying all paddles by procedure).
  • Measure the resulting deflection (d) in inches.
  • Calculate ADF using the proxy formula: ADF = 0.3125 / d.

Step 2: Predict PBCOR using the calculated ADF.

  • Input the calculated ADF, along with the known MOI and Thickness of the paddle, into the final predictive formula.
  • The result is the estimated PBCOR for the paddle design.

Conclusion

This systematic process of data extraction, iterative statistical modeling, and logical derivation has produced a robust and scientifically-grounded calculator. By leveraging a simplified physical test to create a proxy for the most critical performance variable (ADF) we can simulate PBCOR based on a known feature.

Tool

© 2025 Coretek Pickleball LLC. Confidential Technical Document.

Leave a comment