"""
Estimation of static margin
"""
# This file is part of FAST-OAD_CS25
# Copyright (C) 2022 ONERA & ISAE-SUPAERO
# FAST is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import fastoad.api as oad
import numpy as np
import openmdao.api as om
from fastoad.module_management.constants import ModelDomain
[docs]
@oad.RegisterOpenMDAOSystem(
"fastoad.handling_qualities.static_margin", domain=ModelDomain.HANDLING_QUALITIES
)
class ComputeStaticMargin(om.ExplicitComponent):
"""
Computation of static margin i.e. difference between CG ratio and neutral
point.
"""
[docs]
def initialize(self):
self.options.declare("target", types=float, allow_none=True, default=None)
[docs]
def setup(self):
self.add_input("data:weight:aircraft:CG:aft:MAC_position", val=np.nan, units="unitless")
self.add_input("data:aerodynamics:high_speed:neutral_point:x", val=np.nan, units="unitless")
self.add_output("data:handling_qualities:static_margin", units="unitless")
[docs]
def setup_partials(self):
self.declare_partials("*", "*", method="fd")
[docs]
def compute(self, inputs, outputs, discrete_inputs=None, discrete_outputs=None):
cg_ratio = inputs["data:weight:aircraft:CG:aft:MAC_position"]
ac_ratio = inputs["data:aerodynamics:high_speed:neutral_point:x"]
outputs["data:handling_qualities:static_margin"] = ac_ratio - cg_ratio