header
logo Persalys
fr en

Persalys 15.1 release

12/01/2024

The new version of Persalys 15.1 is now available with a few number of fixes and improvements:

  • Metamodel: Once created, the metamodel can now be exported to Python. Simply right-click on the metamodel in the tree, and a python file and an xml file will be saved. The xml file corresponds to the OpenTURNS Study object. The Python file contains the code for reading the contents of the xml file:

image export meta
                       
        #!/usr/bin/env python
        import openturns as ot
        import os

        metamodel = ot.Function()
        study = ot.Study()
        dirname = os.path.dirname(__file__)
        fn = os.path.join(dirname, 'métamodèle_0.xml')
        study.setStorageManager(ot.XMLStorageManager(fn))
        study.load()
        study.fillObject('metamodel', metamodel)
                        
                    
  • FMI model: the calculation time for an evaluation is added and the ability to import FMU ME and CS files.
  • Installer file: creation of a new, more robust Windows executable with a new way of managing language selection. Further information can be found in the forum.