Source code for gemseo.problems.mdo.sellar.base_sellar
# Copyright 2021 IRT Saint Exupéry, https://www.irt-saintexupery.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 3 as published by the Free Software Foundation.
#
# 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""A base class for the disciplines of the customizable Sellar MDO problem."""
from __future__ import annotations
from typing import TYPE_CHECKING
from typing import ClassVar
from gemseo.core.discipline import Discipline
from gemseo.problems.mdo.sellar.utils import get_initial_data
if TYPE_CHECKING:
from gemseo.typing import RealArray
[docs]
class BaseSellar(Discipline):
"""A base class for the disciplines of the customizable Sellar MDO problem."""
_INPUT_NAMES: ClassVar[tuple[str]]
"""The names of the inputs."""
_OUTPUT_NAMES: ClassVar[tuple[str]]
"""The names of the outputs."""
_n: int
"""The size of the local design variables and coupling variables."""
def __init__(self, n: int = 1) -> None:
"""
Args:
n: The size of the local design variables and coupling variables.
""" # noqa: D107 D205 D205 D212 D415
super().__init__()
self._n = n
default_input_data = get_initial_data(self._INPUT_NAMES, n)
self.io.input_grammar.update_from_data(default_input_data)
self.io.output_grammar.update_from_data(get_initial_data(self._OUTPUT_NAMES, n))
self.io.input_grammar.defaults = default_input_data
@staticmethod
def _get_n_samples(*args: RealArray) -> int:
"""Return the number of samples in the case of vectorization.
Args:
*args: The values of the variables.
Returns:
The number of samples.
"""
return max(len(arg) for arg in args)