getSummary ( )

Velocity Card

Arguments none  
Description Returns the content of the summary table in form of a two-dimensional String[][] array.
Remarks The output contains the content of the cells of the summary table in the upper right corner of the card, complete with all title cells. You can query the size of the returned table by using a construct like

var v = Velocity.getSummary();
var rows = v.length;      // rows are addressed by first index
var columns= v[0].length; // columns are addressed by second index
Cl = v[2][1];             // the first lift coefficient


You must execute an Analyze() command to set the required parameters like angle of attack range before using this command.
Performs the same action as the "Print..." button.