MissileFourPointAerodynamic#
- class ansys.stk.core.stkobjects.aviator.MissileFourPointAerodynamic#
Class defining the FourPoint aerodynamic strategy in the Missile.
Overview#
Validate the lift design points - ensure the choices do not result in a singular system of equations. |
|
Validate the drag design points - ensure the choices do not result in a singular system of equations. |
|
Get or set and validates the maximum, max range and max endurance AOA values for the aircraft. |
Get or set the Mach for the first design point. |
|
Get or set the AOA for the first design point. |
|
Get or set the lift coefficient for the first design point. |
|
Get or set the drag coefficient for the first design point. |
|
Get or set the Mach for the second design point. |
|
Get or set the AOA for the second design point. |
|
Get or set the lift coefficient for the second design point. |
|
Get or set the drag coefficient for the second design point. |
|
Get or set the Mach for the third design point. |
|
Get or set the AOA for the third design point. |
|
Get or set the lift coefficient for the third design point. |
|
Get or set the drag coefficient for the third design point. |
|
Get or set the Mach for the fourth design point. |
|
Get or set the AOA for the fourth design point. |
|
Get or set the lift coefficient for the fourth design point. |
|
Get or set the drag coefficient for the fourth design point. |
|
Get or set the aerodynamic reference area for the aircraft. |
|
Get the maximum AOA for the aircraft. |
|
Get the maximum endurance AOA for the aircraft. |
|
Get the maximum range AOA for the aircraft. |
Import detail#
from ansys.stk.core.stkobjects.aviator import MissileFourPointAerodynamic
Property detail#
- property MissileFourPointAerodynamic.cl_1: float#
Get or set the lift coefficient for the first design point.
- property MissileFourPointAerodynamic.cd_1: float#
Get or set the drag coefficient for the first design point.
- property MissileFourPointAerodynamic.mach_2: float#
Get or set the Mach for the second design point.
- property MissileFourPointAerodynamic.cl_2: float#
Get or set the lift coefficient for the second design point.
- property MissileFourPointAerodynamic.cd_2: float#
Get or set the drag coefficient for the second design point.
- property MissileFourPointAerodynamic.cl_3: float#
Get or set the lift coefficient for the third design point.
- property MissileFourPointAerodynamic.cd_3: float#
Get or set the drag coefficient for the third design point.
- property MissileFourPointAerodynamic.mach_4: float#
Get or set the Mach for the fourth design point.
- property MissileFourPointAerodynamic.cl_4: float#
Get or set the lift coefficient for the fourth design point.
- property MissileFourPointAerodynamic.cd_4: float#
Get or set the drag coefficient for the fourth design point.
- property MissileFourPointAerodynamic.s_reference: Any#
Get or set the aerodynamic reference area for the aircraft.
Method detail#
- MissileFourPointAerodynamic.validate_lift_design_points(self, d_mach_1: float, d_aoa_1: Any, d_mach_2: float, d_aoa_2: Any, d_mach_3: float, d_aoa_3: Any, d_mach_4: float, d_aoa_4: Any) bool #
Validate the lift design points - ensure the choices do not result in a singular system of equations.
- MissileFourPointAerodynamic.validate_drag_design_points(self, d_mach_1: float, d_c_l_1: float, d_mach_2: float, d_c_l_2: float, d_mach_3: float, d_c_l_3: float, d_mach_4: float, d_c_l_4: float) bool #
Validate the drag design points - ensure the choices do not result in a singular system of equations.