How activate a module using TUI?
There is no possibility to activate the GUI of a certain module from SALOME TUI interface. However, it is possible to use the functions of the module in batch mode, for this: To activate Geometry module run SALOME via “runSALOME -t” command, then type in the terminal (start python interpreter): import salome, GEOM; salome.salome_init() geom = salome.lcc.FindOrLoadComponent(“FactoryServer”, “GEOM”) geom = geom._narrow(GEOM.GEOM_Gen) To activate Mesh module run SALOME via “runSALOME -t” command, then type in the terminal (start python interpreter): import salome, SMESH; salome.salome_init() mesh = salome.lcc.FindOrLoadComponent(“FactoryServer”, “SMESH”) mesh = mesh._narrow(SMESH.SMESH_Gen) To activate Post-Pro module run SALOME via “runSALOME –gui” command, then type in the terminal (start python interpreter): import salome, VISU; salome.salome_init() visu = salome.lcc.FindOrLoadComponent(“FactoryServer”, “VISU”) visu = visu._narrow(VISU.VISU_Gen) To activate Supervisor module run SALOM