1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2013-2023 EDF
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
24 # -----------------------------------------------------------------------------
25 # --- satistiques maillage
27 def getGroupesRef(fichierMed):
28 fichier=fichierMed.replace('.med','_groupesRef.res')
30 text=open(fichier).read()
37 def getStatsMaillage(maillage,fichierMed):
43 fichier=fichierMed.replace('.med','.res')
44 if maillage is not None:
45 mesures = maillage.GetMeshInfo()
48 for i in range(len(mesures)):
49 txt += str(SMESH.EntityType._item(i))+ " " +str(mesures[SMESH.EntityType._item(i)]) + "\n"
51 from .utiles import writeFile
52 writeFile(fichier,txt)
55 def getStatsGroupes(maillage,fichierMedResult):
59 fichierGroupe=fichierMedResult.replace('.med','_groupesRef.res')
60 lGroups=getGroupesRef(fichierGroupe)
62 print("pas de Groupe de Reference ")
64 os.remove(fichierGroupe)
68 lGroupsSMESH=maillage.GetGroups()
69 for groupe in lGroupsSMESH :
70 groupeName= groupe.GetName()
71 if groupeName not in lGroups : continue
72 extension='_'+groupeName+'.res'
73 fichierStatGroupe=fichierGroupe.replace('_groupesRef.res',extension)
74 getStatsStatSurGroupes(maillage,groupe,fichierStatGroupe)
77 def getStatsStatSurGroupes(maillage,groupe,fichierStatGroupe):
78 mesures = maillage.GetMeshInfo(groupe)
81 for i in range(len(mesures)):
82 txt += str(SMESH.EntityType._item(i))+ " " +str(mesures[SMESH.EntityType._item(i)]) + "\n"
83 from .utiles import writeFile
84 writeFile(fichierStatGroupe,txt)