Interface Airfoil

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.List<java.awt.geom.Point2D> getCamber()
      Returns a list of points containing the camber line of the airfoil.
      java.util.List<java.awt.geom.Point2D> getLower()
      Returns a list of points containing the abscissas (X coordinate) and ordinates (Y coordinate) of the points defining the lower surface of the airfoil.
      java.util.List<java.lang.Double> getLowerYp()
      Returns a list containing the slope (dy/dx) of the lower surface of the airfoil at each ordinate.
      java.util.List<java.awt.geom.Point2D> getUpper()
      Returns a list of points containing the abscissas (X coordinate) and ordinates (Y coordinate) of the points defining the upper surface of the airfoil.
      java.util.List<java.lang.Double> getUpperYp()
      Returns a list containing the slope (dy/dx) of the upper surface of the airfoil at each ordinate.
    • Method Detail

      • getUpper

        java.util.List<java.awt.geom.Point2D> getUpper()
        Returns a list of points containing the abscissas (X coordinate) and ordinates (Y coordinate) of the points defining the upper surface of the airfoil.
      • getLower

        java.util.List<java.awt.geom.Point2D> getLower()
        Returns a list of points containing the abscissas (X coordinate) and ordinates (Y coordinate) of the points defining the lower surface of the airfoil.
      • getCamber

        java.util.List<java.awt.geom.Point2D> getCamber()
        Returns a list of points containing the camber line of the airfoil.
      • getUpperYp

        java.util.List<java.lang.Double> getUpperYp()
        Returns a list containing the slope (dy/dx) of the upper surface of the airfoil at each ordinate.
      • getLowerYp

        java.util.List<java.lang.Double> getLowerYp()
        Returns a list containing the slope (dy/dx) of the lower surface of the airfoil at each ordinate.