0
0
Pcb-designHow-ToBeginner · 4 min read

How to Select Propeller for Drone: Key Factors and Example

To select a propeller for a drone, choose the right size (diameter) and pitch based on your drone's motor specifications and desired flight characteristics. Larger propellers provide more lift but need more power, while pitch affects speed and efficiency. Always match the propeller to your motor's recommended limits for safe and efficient flight.
📐

Syntax

The basic parameters to select a drone propeller are:

  • Size (Diameter): Length of the propeller in inches, e.g., 10".
  • Pitch: The distance the propeller would move forward in one rotation, e.g., 4.5".
  • Motor KV Rating: Motor speed constant, which helps determine suitable propeller size.
  • Number of Blades: Usually 2 or 3 blades, affecting thrust and efficiency.

Example syntax to define a propeller in code:

propeller = {
  "size": 10,
  "pitch": 4.5,
  "blades": 2
}
python
propeller = {
  "size": 10,
  "pitch": 4.5,
  "blades": 2
}
💻

Example

This example shows how to select a propeller based on motor KV and desired thrust using Python code.

python
def select_propeller(motor_kv, battery_voltage):
    # Calculate max RPM
    max_rpm = motor_kv * battery_voltage

    # Simple rules for propeller size based on RPM
    if max_rpm > 10000:
        size = 5  # smaller prop for high RPM motors
        pitch = 3
    elif max_rpm > 7000:
        size = 7
        pitch = 4.5
    else:
        size = 10
        pitch = 5

    return {"size": size, "pitch": pitch, "blades": 2}

# Example usage
motor_kv = 920
battery_voltage = 11.1  # 3S LiPo battery
prop = select_propeller(motor_kv, battery_voltage)
print(f"Selected propeller: {prop['size']} inch, pitch {prop['pitch']} inch, {prop['blades']} blades")
Output
Selected propeller: 10 inch, pitch 5 inch, 2 blades
⚠️

Common Pitfalls

Common mistakes when selecting drone propellers include:

  • Choosing a propeller too large for the motor, causing motor overload and overheating.
  • Using a pitch that is too high, which can reduce flight time and strain the motor.
  • Ignoring the number of blades, which affects thrust and efficiency.
  • Not matching propeller specifications with the drone's frame size and battery capacity.

Always check motor manufacturer recommendations and test propellers carefully.

python
wrong_propeller = {"size": 15, "pitch": 8, "blades": 3}  # Too large and aggressive
correct_propeller = {"size": 10, "pitch": 5, "blades": 2}  # Balanced choice

print("Wrong propeller may cause motor damage.")
print("Correct propeller ensures safe and efficient flight.")
Output
Wrong propeller may cause motor damage. Correct propeller ensures safe and efficient flight.
📊

Quick Reference

ParameterDescriptionTypical Values
Size (Diameter)Length of propeller in inches5 to 15 inches
PitchDistance propeller moves forward per rotation3 to 8 inches
BladesNumber of blades on propeller2 or 3 blades
Motor KVMotor speed constant (RPM per volt)700 to 1500 KV
Battery VoltageVoltage of drone battery7.4V (2S) to 22.2V (6S)

Key Takeaways

Match propeller size and pitch to your motor's KV and battery voltage for safe operation.
Larger propellers provide more lift but require more power and can strain motors.
Pitch affects speed and efficiency; higher pitch means faster but less efficient flight.
Use 2 or 3 blades depending on desired thrust and efficiency balance.
Always follow motor and frame manufacturer recommendations to avoid damage.