// Copyright (C) 2007-2024 CEA, EDF, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library 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 library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // File : SALOME_Parametric.idl // Author : Renaud BARATE, EDF R&D // #ifndef _SALOME_Parametric_IDL_ #define _SALOME_Parametric_IDL_ /*! \brief This module contains type definitions for the communication between supervision codes and computation codes in parametric studies. */ module SALOME_TYPES { /*! \brief Structure describing a parameter that can be used for specific information exchange between the codes. */ struct Parameter { string name; string value; }; /*! \brief List of parameters. */ typedef sequence ParameterList; /*! \brief Type representing the value of a single variable exchanged between the codes (e.g. a force "F"). As the variables may be vectors (or even matrices), their value is represented as a sequence of real numbers. */ typedef sequence Variable; /*! \brief Type representing a state, i.e. a set containing the values of all the variables of interest. */ typedef sequence VariableSequence; /*! \brief Type representing a set of states. */ typedef sequence StateSequence; /*! \brief Type representing a time sequence, with a set of states for each time step. Hence it is represented as a sequence of StateSequence. */ typedef sequence TimeSequence; /*! \brief List of variable names. */ typedef sequence VarList; /*! \brief Structure describing the input of a computation code. */ struct ParametricInput { VarList inputVarList; VarList outputVarList; TimeSequence inputValues; ParameterList specificParameters; }; /*! \brief Structure describing the output of a computation code. */ struct ParametricOutput { TimeSequence outputValues; ParameterList specificOutputInfos; long returnCode; string errorMessage; }; }; #endif