Salome HOME
52566]: TC7.5.0: Empty group of Balls at Diameter Equal to filter
[modules/smesh.git] / src / Tools / blocFissure / exemple.py
1 # -*- coding: utf-8 -*-
2
3 import os
4 from blocFissure import gmu
5 from blocFissure.gmu import initLog
6 initLog.setDebug()
7 #initLog.setVerbose()
8
9 from blocFissure.casStandard import casStandard
10
11 dicoParams = dict(nomCas            = 'angleCube',
12                   maillageSain      = os.path.join(gmu.pathBloc, 'materielCasTests/CubeAngle.med'),
13                   brepFaceFissure   = os.path.join(gmu.pathBloc, "materielCasTests/CubeAngleFiss.brep"),
14                   edgeFissIds       = [4],
15                   lgInfluence       = 20,
16                   meshBrep          = (5,10),
17                   rayonPipe         = 5,
18                   lenSegPipe        = 2.5,
19                   nbSegRad          = 5,
20                   nbSegCercle       = 32,
21                   areteFaceFissure  = 10)
22
23 execInstance = casStandard(dicoParams)