"""
Estimation of geometry of vertical tail
"""
# This file is part of FAST-OAD_CS25
# Copyright (C) 2024 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 openmdao.api as om
from .components import (
ComputeVTChords,
ComputeVTClalpha,
ComputeVTDistance,
ComputeVTLocalPositions,
ComputeVTMAC,
ComputeVTSweep,
)
from .vt_global_positions import VTChordGlobalPositions
from ...constants import (
SERVICE_FUSELAGE_CNBETA,
SERVICE_VERTICAL_TAIL_GEOMETRY,
)
[docs]
@oad.RegisterSubmodel(
SERVICE_VERTICAL_TAIL_GEOMETRY, "fastoad.submodel.geometry.vertical_tail.legacy"
)
class ComputeVerticalTailGeometry(om.Group):
"""Vertical tail geometry estimation"""
[docs]
def setup(self):
self.add_subsystem(
"fuselage_cnbeta",
oad.RegisterSubmodel.get_submodel(SERVICE_FUSELAGE_CNBETA),
promotes=["*"],
)
self.add_subsystem("vt_aspect_ratio", ComputeVTDistance(), promotes=["*"])
self.add_subsystem("vt_clalpha", ComputeVTClalpha(), promotes=["*"])
self.add_subsystem("vt_chords", ComputeVTChords(), promotes=["*"])
self.add_subsystem("vt_mac", ComputeVTMAC(), promotes=["*"])
self.add_subsystem("vt_sweep", ComputeVTSweep(), promotes=["*"])
self.add_subsystem("vt_local_positions", ComputeVTLocalPositions(), promotes=["*"])
self.add_subsystem("global_positions", VTChordGlobalPositions(), promotes=["*"])