Creating the Reports for the Performance Data

The propeller performance data consists of the advance coefficient, the thrust coefficient, the torque coefficient, and the open water efficiency.

For this case, a custom field function that specifies the value of density is provided for you.

Thrust Coefficient

The thrust coefficient, KT, is defined as:

KT=Tρn2D4
(5257)
where:
  • T is the thrust that is generated by the propeller
  • ρ is the density of water
  • n is the rate of revolution of the propeller
  • D is the propeller diameter

In order to calculate this value, you must first calculate the thrust that the propeller generates. Create the report for the thrust:

  1. Right-click Reports and select New > Flow / Energy > Force.
  2. Rename this report to T.
  3. Select the T report and set the following properties:
    Property Setting
    Direction [1.0, 0.0, 0.0]
    Parts [Rotating Region: Blades, Rotating Region: Hub]
  4. Right-click Reports and select New > User > Expression.
  5. Rename this report to KT.
  6. Select the KT report and set Definition to $TReport/($rho*pow($n,2)*pow($D,4)).

Torque Coefficient

The torque coefficient, KQ, is defined as:

KQ=Qρn2D5
(5258)
where:
  • Q is the torque that is generated by the propeller
  • ρ is the density of water
  • n is the rate of revolution of the propeller
  • D is the propeller diameter

In order to calculate this value, you must first calculate the torque that the propeller generates. Create the report for the torque:

  1. Right-click Reports and select New > Flow / Energy > Moment.
  2. Rename this report to Q.
  3. Select the Q report and set the following properties:
    Property Setting
    Axis [-1.0, 0.0, 0.0]
    Parts [Rotating Region: Blades, Rotating Region: Hub]
  4. Right-click Reports and select New > Expression.
  5. Rename this report to KQ.
  6. Select the KQ report and set Definition to $QReport/($rho*pow($n,2)*pow($D,5)).

Open Water Efficiency

The open water efficiency, ηO, is defined as:

ηO=J2πKTKQ
(5259)
where:
  • J is the advance coefficient
  • KT is the thrust coefficient
  • KQ is the torque coefficient

Create the report for the open water efficiency:

  1. Right-click Reports and select New > Expression.
  2. Rename this report to J.
  3. Select the J report and set Definition to $J.
  4. Right-click Reports and select New > Expression.
  5. Rename this report to hO.
  6. Select the hO report and set Definition to ($KTReport/$KQReport)*($JReport/(2*3.1428571429)).