/usr/lib/aster/Messages/mecanonline8.py is in code-aster 11.5.0+dfsg2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | # coding=utf-8
# CONFIGURATION MANAGEMENT OF EDF VERSION
# ======================================================================
# COPYRIGHT (C) 1991 - 2012 EDF R&D WWW.CODE-ASTER.ORG
# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
# (AT YOUR OPTION) ANY LATER VERSION.
#
# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
# WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
#
# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
# 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
# ======================================================================
# Attention a ne pas faire de retour à la ligne !
cata_msg = {
1 : _(u"""
Statistiques sur tout le transitoire
* Nombre de pas de temps : %(i1)d
* Nombre d'itérations de Newton : %(i2)d
* Nombre d'intégrations du comportement : %(i3)d
* Nombre de factorisations de la matrice : %(i4)d
* Nombre de résolutions de systèmes linéaires : %(i5)d
"""),
2 : _(u""" * Nombre d'itérations de recherche linéaire : %(i1)d"""),
3 : _(u""" * Nombre d'itérations du solveur FETI : %(i1)d"""),
10 : _(u""" * Nombre d'itérations de résolution contact : %(i1)d"""),
11 : _(u""" * Nombre d'appariements : %(i1)d"""),
22 : _(u""" * Nombre de boucles de frottement : %(i1)d"""),
23 : _(u""" * Nombre de boucles de contact : %(i1)d"""),
30 :_(u"""
Statistiques du contact sur tout le transitoire
"""),
50 : _(u"""
Temps CPU consommé dans le transitoire : %(k1)s
"""),
51 : _(u""" * Temps assemblage matrice : %(k1)s"""),
52 : _(u""" * Temps construction second membre : %(k1)s"""),
53 : _(u""" * Temps total factorisation matrice : %(k1)s"""),
54 : _(u""" * Temps total intégration comportement : %(k1)s"""),
55 : _(u""" * Temps total résolution K.U=F : %(k1)s"""),
56 : _(u""" * Temps résolution contact : %(k1)s"""),
57 : _(u""" * Temps construction matrices contact : %(k1)s"""),
64 : _(u""" * Temps construction vecteurs contact : %(k1)s"""),
58 : _(u""" * Temps préparation données contact : %(k1)s"""),
59 : _(u""" * Temps frottement : %(k1)s"""),
60 : _(u""" * Temps contact : %(k1)s"""),
61 : _(u""" * Temps appariement contact : %(k1)s"""),
62 : _(u""" * Temps post-traitement (contact, flambement) : %(k1)s"""),
63 : _(u""" * Temps autres opérations : %(k1)s"""),
70 : _(u""" dont temps "perdu" dans les découpes : %(k1)s -> la liste d'instant est efficace à %(r1).1f %%"""),
}
|