This website uses local storage to ensure you get the best experience on our website.

Table of Contents

Bladed Aerofoil Data File Format

This article describes the file format for the aerofoil data. Aerofoil data defines the lift, drag and moment coefficient polars for a range of angles of attack. This document enables users to write a file such that it can be imported into the Bladed GUI via the Aerofoil window. The file is in ASCII human readable format.

The first 7 lines are key value pairs. Each line includes a key and a value that are tab separated. A carriage return and new line need to be specified at the end of each line.

Key word Value Unit Data type
REFNUM Name of foil data set. - String
XA Pitching moment centre from leading edge along chord line. Input is % of chord. % Double
THICK Thickness of chord. Input is % of chord. % Double
REYN Reynolds number. Dimensionless Double
DEPANG Deployment angle. Degrees Double
NAPLHA Number of data points defining lift, drag and moment coefficient polars. - Integer
NVALS Number of coefficients defined. - Integer

Following the first 7 lines, the polar data should be written to the file. The data needs to be a 2d array with NALPHA rows and (NVALS + 1) columns. The array is defined as follows:

Column 1 2 3 4
Data Angle of attack Lift coefficient Drag coefficient Moment coefficient
Unit Degrees Dimensionless Dimensionless Dimensionless
Data type Double Double Double Double

Each row should be written to the file in the following manner:

  • Each row of data (angle of attack and coefficients) is written as a tab separated list of doubles. A carriage return and new line need to be specified at the end of each line.

  • Once all rows have been written, the final line should read ENDSECTION and is terminated by a carriage return and new line.

An example of a file with all characters shown (tab separation, carriage return, new line) is provided below.

Example aerofoil file

Figure 1: Aerofoil data file format

Last updated 15-11-2024