1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2011-2016 EDF R&D
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 # Author : Guillaume Boulant (EDF)
22 import salome_pluginsmanager
25 from spadderPlugin import runSpadderPlugin
26 salome_pluginsmanager.AddFunction('PADDER mesher',
27 'Create a mesh with PADDER',
30 salome_pluginsmanager.logger.info('ERROR: PADDER mesher plug-in is unavailable')
34 from meshcut_plugin import MeshCut
35 salome_pluginsmanager.AddFunction('MeshCut',
36 'Cut a tetrahedron mesh by a plane',
40 salome_pluginsmanager.logger.info('ERROR: MeshCut plug-in is unavailable')
44 from yamsplug_plugin import YamsLct
45 salome_pluginsmanager.AddFunction('ReMesh with MGSurfOpt',
49 salome_pluginsmanager.logger.info('ERROR: MGSurfOpt plug-in is unavailable')
53 from MGCleanerplug_plugin import MGCleanerLct
54 salome_pluginsmanager.AddFunction('ReMesh with MGCleaner',
58 salome_pluginsmanager.logger.info('ERROR: MGCleaner plug-in is unavailable')
62 from blocFissure.ihm.fissureCoude_plugin import fissureCoudeDlg
63 salome_pluginsmanager.AddFunction('Meshed Pipe with a crack (blocFissure plugin)',
64 'Create a mesh with blocFissure tool',
67 salome_pluginsmanager.logger.info('ERROR: Meshed Pipe with a crack plug-in is unavailable')
70 from blocFissure.ihm.fissureGenerale_plugin import fissureGeneraleDlg
71 salome_pluginsmanager.AddFunction('Add a crack in a mesh (blocFissure plugin)',
72 'Insert a crack in an hexahedral mesh with blocFissure tool',
75 salome_pluginsmanager.logger.info('ERROR: Meshed Pipe with a crack plug-in is unavailable')
78 # ZCracks plugin requires the module EFICAS to be installed
79 # thus it is first tested if this module is available before
80 # adding the plugin to salome_pluginsmanager
83 from zcracks_plugin import ZcracksLct
84 salome_pluginsmanager.AddFunction('Run Zcrack',
88 salome_pluginsmanager.logger.info('ERROR: Zcrack plug-in is unavailable')