fastga.models.aerodynamics.components.vt.compute_cn_yaw_rate_vt module
- class fastga.models.aerodynamics.components.vt.compute_cn_yaw_rate_vt.ComputeCnYawRateVerticalTail(**kwargs)[source]
Bases:
openmdao.core.explicitcomponent.ExplicitComponentComputation of the increase in yaw rate due to a yaw rate. The coefficient depends on the angle of attack so the same remark as in ..compute_cy_yaw_rate. holds. The convention from [Ros85b] are used, meaning that for lateral derivative, the reference length is the wing span. Another important point is that, for the derivative with respect to yaw and roll, the rotation speed are made dimensionless by multiplying them by the wing span and dividing them by 2 times the airspeed.
Based on [Ros85b] section 10.2.8
Store some bound methods so we can detect runtime overrides.
- compute(inputs, outputs, discrete_inputs=None, discrete_outputs=None)[source]
Compute outputs given inputs. The model is assumed to be in an unscaled state.
- Parameters
inputs (Vector) – Unscaled, dimensional input variables read via inputs[key].
outputs (Vector) – Unscaled, dimensional output variables read via outputs[key].
discrete_inputs (dict or None) – If not None, dict containing discrete input values.
discrete_outputs (dict or None) – If not None, dict containing discrete output values.
- compute_partials(inputs, partials, discrete_inputs=None)[source]
Compute sub-jacobian parts. The model is assumed to be in an unscaled state.
- Parameters
inputs (Vector) – Unscaled, dimensional input variables read via inputs[key].
partials (Jacobian) – Sub-jac components written to partials[output_name, input_name]..
discrete_inputs (dict or None) – If not None, dict containing discrete input values.