Metadata-Version: 1.1
Name: SimulatorToFMU
Version: 1.0.0rc10
Summary: Package for exporting a Simulator as a Functional Mock-up Unit
Home-page: https://github.com/LBNL-ETA/SimulatorToFMU/
Author: Thierry S. Nouidui
Author-email: TSNouidui@lbl.gov
License: 3-clause BSD
Description: SimulatorToFMU
        --------------
        
        Overview
        ^^^^^^^^
        
        SimulatorToFMU is a software package written in Python which allows 
        users to export a memoryless Python-driven simulation program or script 
        as a Functional Mock-up Unit (FMU) for  
        model exchange or co-simulation using the Functional Mock-up Interface (FMI) 
        standard version 1.0 or 2.0 (https://www.fmi-standard.org).
        This FMU can then be imported into a variety of simulation programs 
        that support the import of Functional Mock-up Units.
        
        A memoryless Python-driven simulation program/script 
        is a simulation program which meets following requirements:
           
        - The simulation program/script can be invoked through a Python script.
        - The invocation of the simulation program/script is memoryless. That is, 
          the output of the simulation program at any invocation time ``t`` 
          depends only on the inputs at the time ``t``. 
        - The inputs and the outputs of the simulation program/script must be ``real`` numbers.
        
        .. note::
        
          SimulatorToFMU generates FMUs that use the Python 2.7/ C API for executing Python-driven simulation programs/scripts.
        
        Requirements
        ^^^^^^^^^^^^
        - `jinja2 <https://pypi.python.org/pypi/Jinja2>`_
        - `lxml <http://pypi.python.org/pypi/lxml>`_
        
        
        Installation
        ^^^^^^^^^^^^
        To install run
        
        .. code:: text
        
           pip install --user simulatortofmu
        
        For more information visit the development page at `https://github.com/LBNL-ETA/SimulatorToFMU <https://github.com/LBNL-ETA/SimulatorToFMU>`_
        
        The license is at `LICENSE.txt <https://github.com/tsnouidui/SimulatorToFMU/blob/master/simulatortofmu/LICENSE.txt>`_
        
        Help
        ^^^^
        
        - For support questions use the `SimulatorToFMU Forum <https://groups.google.com/forum/#!forum/simulatortofmu>`_
        - For bug reports use the `SimulatorToFMU GitHub Issues <https://github.com/LBNL-ETA/SimulatorToFMU/issues>`_
        
        
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
