leal26 / AeroPy

Python interface for XFOIL. The objective of this library is to be able to be able to call XFOIL from Python iteratively for any simulation in a total of 4 lines total.
MIT License
60 stars 30 forks source link

Add the ability to set ncrit for xfoil calculations #23

Open JeanMRog opened 3 years ago

JeanMRog commented 3 years ago

ncrit is a key parameter of xfoil it is important to be able to set it, the default value of 9 is not always the most adequate setting depending of the usage. gliders will look at values of 10 and above foil in water will look at values around 3.

inse0918 commented 4 months ago

add this lines after defining mach number line like below screenshot

    # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    #    Defining N-crit Number in VPAR
    # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    # issueCmd('MACH {!s}'.format(Mach))
    # Defining the N-Crit Number in Viscous Setting
    issueCmd('VPAR')
    issueCmd('n')
    # Defining N-Crit number
    issueCmd('%f' % Ncrit)
    issueCmd('')

image