Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How activate a module using TUI?

activate module Tui
0
Posted

How activate a module using TUI?

0

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

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123