flow360.BETDiskSectionalPolar#
- class BETDiskSectionalPolar[source]#
Bases:
Flow360BaseModel
BETDiskSectionalPolar
class for setting upBETDisk.sectional_polars
forBETDisk
. There are two variables, โlift_coeffsโ and โdrag_coeffsโ, need to be set up as 3D arrays (implemented as nested lists). The first index of the array corresponds to theBETDisk.mach_numbers
of the specified polar data. The second index of the array corresponds to theBETDisk.reynolds_numbers
of the polar data. The third index corresponds to theBETDisk.alphas
. The value specifies the lift or drag coefficient, respectively.Example
Define
BETDiskSectionalPolar
at one single radial location.lift_coeffs
anddrag_coeffs
are lists with the dimension of 3 x 2 x 2, corresponding to 3BETDisk.mach_numbers
by 2BETDisk.reynolds_numbers
by 2BETDisk.alphas
.>>> lift_coeffs = [[[0.1, 0.2], [0.3, 0.4]], [[0.5, 0.6], [0.7, 0.8]], [[0.9, 1.0], [1.1, 1.2]]] >>> drag_coeffs = [[[0.01, 0.02], [0.03, 0.04]], [[0.05, 0.06], [0.07, 0.08]], [[0.09, 0.1], [0.11, 0.12]]] >>> fl.BETDiskSectionalPolar( ... lift_coeffs=lift_coeffs, ... drag_coeffs=drag_coeffs ... )