LVModelFeasibilityReport:

--------------------------------------------------------------------------
   Compute the feasibility of all models in the LVDatabase.csv
   
   Returns an array of logicals indicating pass (1) or fail (0) for each
   condition:
     1. Thrust to weight ratio at takeoff. 
         Must be above opts.minThrustToWeight
     2. Total delta-v. 
         Must be below opts.maxDeltaV

   Since verstion 2015.1
--------------------------------------------------------------------------
   Form:
   feas = LVModelFeasibilityReport( dBFile, opts )
--------------------------------------------------------------------------

   ------
   Inputs
   ------
   dBFile  (:)     Name of database file to load. Default: LVDatabase.csv
   opts    (.)     Options. Default values used if not entered. To get
                     default values type: LVModelFeasibility('opts');

   -------
   Outputs
   -------
   feas    (N,:)   Feasibility array. Array of logicals (0,1). 
                   N columns for N launch vehicles in database.

--------------------------------------------------------------------------

Children:

Common: Interface/ReadCSVTable
LaunchVehicle: LVDatabase/FormatRocketDB
LaunchVehicle: VehicleModels/LVModelFeasibility