getResults ( )

getResults ( idx )

Boundary Layer Card

Arguments none - will return the content of the first table

idx - the index of the table to be returned. The index is 0-based.

 
Description Returns the content of the detailed results table with a boundary layer results in form of a two-dimensional String[][] array.
Remarks The output contains the content of the cells of the results table in the center of the card, complete with all title cells. You can query the size of the returned table by using a construct like

var v = BoundaryLayer.getResults();
var rows = v.length;      // rows are addressed by first index
var columns= v[0].length; // columns are addressed by second index
d_1 = v[2][3];            // the delta_1 value at the trailing edge


You must execute an Analyze() command to set the required parameters like angle of attack range before using this command.
The returned array is identical to the data obtained by copying the table using the context menu.