/usr/lib/aster/Cata/ops.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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 | # coding=utf-8
# ======================================================================
# COPYRIGHT (C) 1991 - 2013 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.
# ======================================================================
# person_in_charge: mathieu.courtois at edf.fr
# Modules Python
import sys
import os
import os.path as osp
import traceback
import cPickle as pickle
import re
from math import sqrt, pi, atan2, tan, log, exp
from glob import glob
# Modules Eficas
import Accas
from Accas import ASSD
from Noyau.ascheckers import CheckLog
from Noyau.N_info import message, SUPERV
from Noyau.N_types import force_list
try:
import aster
import aster_core
aster_exists = True
# Si le module aster est présent, on le connecte
# au JDC
import Build.B_CODE
Build.B_CODE.CODE.codex=aster
from Utilitai.Utmess import UTMESS, MessageLog
except:
aster_exists = False
def commun_DEBUT_POURSUITE(jdc, PAR_LOT, IMPR_MACRO, CODE, DEBUG, IGNORE_ALARM, LANG, INFO):
"""Fonction sdprod partie commune à DEBUT et POURSUITE.
(on stocke un entier au lieu du logique)
"""
jdc.set_par_lot(PAR_LOT, user_value=True)
jdc.impr_macro = int(IMPR_MACRO == 'OUI')
jdc.jxveri = int(CODE != None or (DEBUG != None and DEBUG['JXVERI'] == 'OUI'))
jdc.sdveri = int(DEBUG != None and DEBUG['SDVERI'] == 'OUI')
jdc.fico = None
jdc.sd_checker = CheckLog()
jdc.info_level = INFO
jdc.hist_etape = (DEBUG != None and DEBUG['HIST_ETAPE'] == 'OUI')
if CODE != None:
jdc.fico = CODE['NOM']
if aster_exists:
if LANG:
from Execution.i18n import localization
localization.install(LANG)
# pb en cas d'erreur dans FIN : appeler reset_print_function dans traiter_fin_exec ?
#from functools import partial
#asprint = partial(aster.affiche, 'MESSAGE')
#message.register_print_function(asprint)
# ne faire qu'une fois
if not hasattr(jdc, 'msg_init'):
# messages d'alarmes désactivés
if IGNORE_ALARM:
if not type(IGNORE_ALARM) in (list, tuple):
IGNORE_ALARM = [IGNORE_ALARM]
for idmess in IGNORE_ALARM:
MessageLog.disable_alarm(idmess)
# en POURSUITE, conserver le catalogue de comportement picklé
if not hasattr(jdc, 'catalc'):
from Comportement import catalc
jdc.catalc = catalc
jdc.msg_init = True
def DEBUT(self, PAR_LOT, IMPR_MACRO, CODE, DEBUG, IGNORE_ALARM, LANG, INFO, **args):
"""
Fonction sdprod de la macro DEBUT
"""
# La commande DEBUT ne peut exister qu'au niveau jdc
if self.jdc is not self.parent :
raise Accas.AsException("La commande DEBUT ne peut exister qu'au niveau jdc")
commun_DEBUT_POURSUITE(self.jdc, PAR_LOT, IMPR_MACRO, CODE, DEBUG, IGNORE_ALARM, LANG, INFO)
suppr = False
for fname in glob('pick.*') + glob('glob.*'):
try:
UTMESS('I', 'SUPERVIS_4', valk=fname)
os.remove(fname)
suppr = True
except OSError:
UTMESS('A', 'SUPERVIS_5', valk=fname)
if suppr:
UTMESS('I', 'SUPERVIS_6')
def build_debut(self,**args):
"""
Fonction ops pour la macro DEBUT
"""
self.jdc.UserError=self.codex.error
if self.jdc.par_lot == 'NON' :
self.jdc._Build()
# On execute la fonction debut pour initialiser les bases
# Cette execution est indispensable avant toute autre action sur ASTER
# op doit être un entier car la fonction debut appelle GCECDU qui demande
# le numéro de l'operateur associé (getoper)
self.definition.op=0
self.set_icmd(1)
self.codex.debut(self)
# On remet op a None juste apres pour eviter que la commande DEBUT
# ne soit executée dans la phase d'execution
self.definition.op=None
return 0
def POURSUITE(self, PAR_LOT, IMPR_MACRO, CODE, DEBUG, IGNORE_ALARM, LANG, INFO, **args):
"""
Fonction sdprod de la macro POURSUITE
"""
# La commande POURSUITE ne peut exister qu'au niveau jdc
if self.jdc is not self.parent :
raise Accas.AsException("La commande POURSUITE ne peut exister qu'au niveau jdc")
commun_DEBUT_POURSUITE(self.jdc, PAR_LOT, IMPR_MACRO, CODE, DEBUG, IGNORE_ALARM, LANG, INFO)
self.jdc.set_poursuite(True)
if self.codex:
base = 'glob.1'
if aster_exists:
repglob = aster_core.get_option("repglob")
bhdf = osp.join(repglob, 'bhdf.1')
base = osp.join(repglob, 'glob.1')
if not osp.isfile(base) and not osp.isfile(bhdf):
UTMESS('F','SUPERVIS_89')
# Le module d'execution est accessible et glob.1 est present
# Pour eviter de rappeler plusieurs fois la sequence d'initialisation
# on memorise avec l'attribut fichier_init que l'initialisation
# est réalisée
if hasattr(self,'fichier_init'):return
self.fichier_init='glob.1'
self.jdc.initexec()
# le sous programme fortran appelé par self.codex.poursu demande le numéro
# de l'operateur (GCECDU->getoper), on lui donne la valeur 0
self.definition.op=0
self.codex.poursu(self)
# Par la suite pour ne pas executer la commande pendant la phase
# d'execution on le remet à None
self.definition.op = None
self.g_context = {}
# Il peut exister un contexte python sauvegardé sous forme pickled
# On récupère ces objets après la restauration des concepts pour que
# la récupération des objets pickled soit prioritaire.
# On vérifie que les concepts relus dans glob.1 sont bien tous
# presents sous le même nom et du même type dans pick.1
# Le contexte est ensuite updaté (surcharge) et donc enrichi des
# variables qui ne sont pas des concepts.
# On supprime du pickle_context les concepts valant None, ca peut
# être le cas des concepts non executés, placés après FIN.
UTMESS('I', 'SUPERVIS2_1', valk='pick.1')
pickle_context = get_pickled_context()
if pickle_context == None:
UTMESS('F', 'SUPERVIS_86')
return
self.jdc.restore_pickled_attrs(pickle_context)
# vérification cohérence pick/base
savsign = self.jdc._sign
newsign = self.jdc.signature(base)
if args.get('FORMAT_HDF') == 'OUI':
UTMESS('I', 'SUPERVIS_71')
elif newsign != savsign:
UTMESS('A', 'SUPERVIS_69', valk=(savsign, newsign),
vali=self.jdc.jeveux_sysaddr)
else:
UTMESS('I', 'SUPERVIS_70', valk=newsign, vali=self.jdc.jeveux_sysaddr)
from Cata.cata import entier
from Noyau.N_CO import CO
interrupt = []
count = 0
UTMESS('I', 'SUPERVIS_65')
for elem, co in pickle_context.items():
if isinstance(co, ASSD):
count += 1
typnam = co.__class__.__name__
# on rattache chaque assd au nouveau jdc courant (en poursuite)
co.jdc = self.jdc
co.parent = self.jdc
# le marquer comme 'executed'
i_int = ''
if co.executed != 1:
interrupt.append((co.nom, typnam))
i_int = 'exception'
co.executed = 1
UTMESS('I', 'SUPERVIS_66', valk=(co.nom, typnam.lower(), i_int))
# pour que sds_dict soit cohérent avec g_context
self.jdc.sds_dict[elem] = co
if elem != co.nom:
name = re.sub('_([0-9]+)$', '[\\1]', co.nom)
if self.jdc.info_level > 1:
UTMESS('I', 'SUPERVIS2_3',
valk=(elem, type(co).__name__.upper()))
UTMESS('A', 'SUPERVIS_93', valk=(elem, "del %s" % name))
del pickle_context[elem]
continue
if co == None:
del pickle_context[elem]
if count == 0:
UTMESS('I', 'SUPERVIS_67')
for nom, typnam in interrupt:
UTMESS('I', 'SUPERVIS_76', valk=(nom, typnam))
if not interrupt:
UTMESS('I', 'SUPERVIS_72')
if self.jdc.info_level > 1:
keys = pickle_context.keys()
keys.sort()
for key in keys:
try:
value = str(pickle_context[key])
if len(value) > 1000:
value = value[:1000] + '...'
valk = key, value
except:
valk = key, '...'
UTMESS('I', 'SUPERVIS_73', valk=valk)
self.g_context.update(pickle_context)
return
else:
# Si le module d'execution n est pas accessible ou glob.1 absent on
# demande un fichier (EFICAS)
# Il faut éviter de réinterpréter le fichier à chaque appel de
# POURSUITE
if hasattr(self,'fichier_init'):
return
self.make_poursuite()
def get_pickled_context():
"""
Cette fonction permet de réimporter dans le contexte courant du jdc (jdc.g_context)
les objets python qui auraient été sauvegardés, sous forme pickled, lors d'une
précédente étude. Un fichier pick.1 doit être présent dans le répertoire de travail
"""
fpick = 'pick.1'
if not osp.isfile(fpick):
return None
# Le fichier pick.1 est présent. On essaie de récupérer les objets python sauvegardés
context={}
try:
file=open(fpick, 'rb')
# Le contexte sauvegardé a été picklé en une seule fois. Il est seulement
# possible de le récupérer en bloc. Si cette opération echoue, on ne récupère
# aucun objet.
context = pickle.load(file)
file.close()
except:
# En cas d'erreur on ignore le contenu du fichier
traceback.print_exc()
return None
return context
def POURSUITE_context(self,d):
"""
Fonction op_init de la macro POURSUITE
"""
# self représente la macro POURSUITE ...
d.update(self.g_context)
# Une commande POURSUITE n'est possible qu'au niveau le plus haut
# On ajoute directement les concepts dans le contexte du jdc
def build_poursuite(self,**args):
"""
Fonction ops pour la macro POURSUITE
"""
# Pour POURSUITE on ne modifie pas la valeur initialisee dans ops.POURSUITE
# Il n y a pas besoin d executer self.codex.poursu (c'est deja fait dans
# la fonction sdprod de la commande (ops.POURSUITE))
self.set_icmd(1)
self.jdc.UserError = self.codex.error
return 0
def INCLUDE(self, UNITE, DONNEE, **args):
"""Fonction sd_prod pour la macro INCLUDE"""
if not (UNITE or DONNEE) or hasattr(self, '_mark'):
return
self._mark = 1
if self.jdc and self.jdc.par_lot == 'NON':
# On est en mode commande par commande, on appelle la methode speciale
self.Execute_alone()
if UNITE:
fname = 'fort.%s' % UNITE
else:
fname = DONNEE
if aster_exists:
repdex = aster_core.get_option('repdex')
fname = osp.join(repdex, fname)
try:
self.make_include(fname=fname)
except Accas.AsException:
if aster_exists:
UTMESS('F+', 'FICHIER_1', valk=fname)
UTMESS('F', 'FICHIER_2')
raise
def INCLUDE_context(self,d):
"""Fonction op_init pour macro INCLUDE"""
ctxt = self.g_context
d.update(ctxt)
def build_include(self,**args):
"""Fonction ops de la macro INCLUDE appelée lors de la phase de Build"""
# Pour presque toutes les commandes (sauf FORMULE et POURSUITE)
# le numéro de la commande n est pas utile en phase de construction
# La macro INCLUDE ne sera pas numérotée (incrément=None)
ier=0
self.set_icmd(None)
# On n'execute pas l'ops d'include en phase BUILD car il ne sert a rien.
#ier=self.codex.opsexe(self,1)
return ier
def _detr_list_co(self, context):
"""Utilitaire pour DETRUIRE"""
list_co = set()
# par nom de concept (typ=assd)
for mc in self['CONCEPT'] or []:
list_co.update(force_list(mc["NOM"]))
# par chaine de caractères (typ='TXM')
for mc in self['OBJET'] or []:
# longueur <= 8, on cherche les concepts existants
for nom in force_list(mc['CHAINE']):
assert type(nom) in (str, unicode), 'On attend une chaine de caractères : %s' % nom
if len(nom.strip()) <= 8:
if self.jdc.sds_dict.get(nom) != None:
list_co.add(self.jdc.sds_dict[nom])
elif context.get(nom) != None:
list_co.add(context[nom])
#else uniquement destruction des objets jeveux
return list_co
def DETRUIRE(self, CONCEPT, OBJET, **args):
"""Fonction OPS pour la macro DETRUIRE : exécution réelle."""
# pour les formules, il ne faut pas vider l'attribut "parent_context" trop tôt
for co in _detr_list_co(self, {}):
co.supprime(force=True)
self.set_icmd(1)
ier = self.codex.opsexe(self, 7)
return ier
def build_detruire(self, d):
"""Fonction op_init de DETRUIRE."""
# d est le g_context du jdc ou d'une macro
#message.debug(SUPERV, "id(d) : %s", id(d))
for co in _detr_list_co(self, d):
assert isinstance(co, ASSD), 'On attend un concept : %s (type=%s)' % (co, type(co))
nom = co.nom
#message.debug(SUPERV, "refcount_1(%s) = %d", nom, sys.getrefcount(co))
# traitement particulier pour les listes de concepts, on va mettre à None
# le terme de l'indice demandé dans la liste :
# nomconcept_i est supprimé, nomconcept[i]=None
i = nom.rfind('_')
if i > 0 and not nom.endswith('_'):
concept_racine = nom[:i]
if d.has_key(concept_racine) and type(d[concept_racine]) is list:
try:
num = int(nom[i+1:])
d[concept_racine][num] = None
except (ValueError, IndexError):
# cas : RESU_aaa ou (RESU_8 avec RESU[8] non initialisé)
pass
# pour tous les concepts :
if d.has_key(nom):
del d[nom]
if self.jdc.sds_dict.has_key(nom):
del self.jdc.sds_dict[nom]
# "suppression" du concept
co.supprime()
# On signale au parent que le concept n'existe plus après l'étape self
self.parent.delete_concept_after_etape(self, co)
# marque comme détruit == non executé
co.executed = 0
def build_procedure(self,**args):
"""
Fonction ops de la macro PROCEDURE appelée lors de la phase de Build
"""
ier=0
# Pour presque toutes les commandes (sauf FORMULE et POURSUITE)
# le numéro de la commande n est pas utile en phase de construction
# On ne numérote pas une macro PROCEDURE (incrément=None)
self.set_icmd(None)
#ier=self.codex.opsexe(self,3)
return ier
def build_DEFI_FICHIER(self,**args):
"""
Fonction ops de la macro DEFI_FICHIER
"""
self.set_icmd(1)
ier = self.codex.opsexe(self, 26)
return ier
def build_formule(self, d):
"""Fonction ops de FORMULE."""
NOM_PARA = self.etape['NOM_PARA'] or ''
VALE = self.etape['VALE']
VALE_C = self.etape['VALE_C']
if type(NOM_PARA) not in (list, tuple):
NOM_PARA = [NOM_PARA, ]
for para in NOM_PARA:
if para.strip() != para:
raise Accas.AsException("nom de paramètre invalide (contient des blancs)" \
" : %s" % repr(para))
if self.sd == None:
return
if VALE != None :
texte = ''.join(VALE.splitlines())
elif VALE_C != None :
texte = ''.join(VALE_C.splitlines())
self.sd.setFormule(NOM_PARA, texte.strip())
def build_gene_vari_alea(self, d):
"""Fonction ops de la macro GENE_VARI_ALEA."""
from Utilitai.Utmess import UTMESS
a = self.etape['BORNE_INF']
moyen = self.etape['VALE_MOY' ]
TYPE = self.etape['TYPE']
if self['INIT_ALEA'] is not None:
jump = self.etape['INIT_ALEA' ]
self.iniran(jump)
if TYPE == 'EXP_TRONQUEE':
b = self.etape['BORNE_SUP']
if a >= b:
UTMESS('F', 'PROBA0_1', valr=[a, b])
elif moyen <= a or moyen >= b:
UTMESS('F', 'PROBA0_2', valr=[a, moyen, b])
k = 1. / (moyen - a)
if exp(-b * k) < 1.e-12:
UTMESS('F', 'PROBA0_3')
# résolution par point fixe
eps = 1.E-4
nitmax = 100000
test = 0.
while abs((test - k) / k) > eps:
test = k
k = 1. / (moyen - (a * exp(-a * k) - b * exp(-b * k)) / \
(exp(-a * k) - exp(-b * k)))
# génération de la variable aléatoire
alpha = exp(-a * k) - exp(-b * k)
self.sd.valeur = -(log(exp(-a * k) - alpha * self.getran()[0])) / k
elif TYPE == 'EXPONENTIELLE':
if moyen <= a:
UTMESS('F', 'PROBA0_4', valr=[moyen, a])
v = moyen - a
u = self.getran()[0]
x = -log(1 - u)
self.sd.valeur = a + v * x
elif TYPE == 'GAMMA':
delta = self.etape['COEF_VAR' ]
if moyen <= a:
UTMESS('F', 'PROBA0_4', valr=[moyen, a])
v = moyen - a
alpha = 1. / delta**2
if alpha <= 1.:
UTMESS('F', 'PROBA0_5')
gamma2 = alpha - 1.
gamm1 = 1. / gamma2
beta = sqrt(2. * alpha - 1.)
beta2 = 1. / beta**2
f0 = 0.5 + (1. / pi) * atan2(-gamma2 / beta, 1.)
c1 = 1. - f0
c2 = f0 - 0.5
vref = 0.
vv = -1.
while -vv > vref:
u = self.getran()[0]
gamdev = beta * tan(pi * (u * c1 + c2)) + gamma2
unif = self.getran()[0]
if unif < 0.:
UTMESS('F', 'PROBA0_6')
vv = -log(unif)
vref = log(1 + beta2 * ((gamdev - gamma2)**2)) \
+ gamma2 * log(gamdev * gamm1) - gamdev + gamma2
if vv <= 0.:
UTMESS('F', 'PROBA0_7')
self.sd.valeur = a + v * delta**2 * gamdev
|