-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlauncher.py
362 lines (310 loc) · 21.3 KB
/
launcher.py
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
import os
import PySimpleGUI as sg
import csv
from scripts import solver
from itertools import product
from rich.console import Console
def charger_profile(adresse):
try:
with open(adresse, 'r') as file:
csvreader = csv.reader(file, delimiter=';')
column_count = len(next(csvreader)) #calcul du nombre de colonnes (nombres de paramètres à stocker pour chaque profilé)
dic_dim = {} #création dictionnaire des dimensions
for row in csvreader: #pour chaque ligne du csv
new_key = row[0] #on récupère la valeur de la première colonne qui est le nom du profilé
dic_dim[new_key] = [] #et on créé une liste qui va contenir les autres colonnes des valeurs
for column in range(column_count-1): #on ajoute à la liste spécifique à chaque profilé un paramètre dimensionnel (colonne)
dic_dim[new_key].append(row[column+1])
return(dic_dim)
except:
print('Pas de fichier liste à charger à l\'adresse', adresse)
def charger_torseur(adresse):
torseur = [] #création list
with open(adresse, 'r', encoding="utf-8-sig") as file:
csvreader = csv.reader(file, delimiter=';')
#row_count = sum(1 for row in csv_reader) #nombre de lignes (torseurs) à charger
for row in csvreader: #pour chaque ligne du csv
torseur_ligne = {'N':row[0], 'Fx':row[1], 'Fy':row[2], 'Mx':row[3], 'My':row[4], 'Mz':row[5]}
torseur.append(torseur_ligne)
return(torseur)
#Chargement des proprietes géométriques des profilés
dic_dim_IPE = charger_profile(os.path.dirname(os.path.realpath(__file__)) + "\\liste_profiles\\IPE-HE.csv")
dic_dim_IPN = charger_profile(os.path.dirname(os.path.realpath(__file__)) + "\\liste_profiles\\IPN.csv")
dic_dim_UPN = charger_profile(os.path.dirname(os.path.realpath(__file__)) + "\\liste_profiles\\UPN.csv")
dic_dim_UPE = charger_profile(os.path.dirname(os.path.realpath(__file__)) + "\\liste_profiles\\UPE-UAP.csv")
dic_dim_COR = charger_profile(os.path.dirname(os.path.realpath(__file__)) + "\\liste_profiles\\Cornieres.csv")
sg.theme('TanBlue')
col_parametres = [[sg.Text('Niveau RCCM'), sg.Listbox(values=('0AB', 'C', 'D'), default_values='0AB', size=(11, 3), key='-NIVEAU_RCCM-')],
[sg.Text('Type profilé'), sg.Listbox(values=('IPN', 'IPE-HE', 'UPN', 'UPE-UAP', 'Corniere', 'Rectangle', 'Tube', 'Personnalisé'), size=(11, 8), enable_events=True, key="-PROFILE-")],
[sg.Text('Longueur'), sg.Input(200, key='-LONGUEUR-', tooltip='mm', size=(10,1))],
[sg.Text('Coefficient de longueur K'), sg.Input(2, key='-KLONGUEUR-', tooltip='Valeur enveloppe usuelle : 2', size=(10,1))],
[sg.Text('Cmx'), sg.Input(1, key='-CMX-', tooltip='Valeur enveloppe : 1', size=(5,1)), sg.Text('Cmy'), sg.Input(1, key='-CMY-', tooltip='Valeur enveloppe : 1', size=(5,1))],
[sg.Frame('Torseur', [[sg.Text('N'), sg.Input(0, key='-TORSEUR_N-', tooltip='N', size=(10,1))],
[sg.Text('Fx'), sg.Input(0, key='-TORSEUR_FX-', tooltip='N', size=(10,1))],
[sg.Text('Fy'), sg.Input(0, key='-TORSEUR_FY-', tooltip='N', size=(10,1))],
[sg.Text('Mx'), sg.Input(0, key='-TORSEUR_MX-', tooltip='N.m', size=(10,1))],
[sg.Text('My'), sg.Input(0, key='-TORSEUR_MY-', tooltip='N.m', size=(10,1))],
[sg.Text('Mz'), sg.Input(0, key='-TORSEUR_MZ-', tooltip='N.m', size=(10,1))],
[sg.Checkbox('Itérer signes', enable_events=True, key='-ITER_SIGNS-')],
[sg.Checkbox('Torseur depuis liste', enable_events=True, key='-LISTE_TORSEUR-')],
[sg.Text(''), sg.FileBrowse(key='-adresse_torseur-', button_text = "Parcourir", disabled=True, file_types=(('CSV', '*.csv'),))]
],
element_justification='r')
],
[sg.Frame('Matériau', [[sg.Text('Sy'), sg.Input(235, key='-SY-', tooltip='MPa', size=(5,1))],
[sg.Text('Su'), sg.Input(340, key='-SU-', tooltip='MPa', size=(5,1))],
[sg.Text('E'), sg.Input(210000, key='-MODULE-', tooltip='MPa', size=(8,1))],
],
element_justification='r')
]
]
col_image = [
[sg.Image(key='-IMAGEPROFILE-')],
[sg.Text('Angle de rotation'), sg.Input(0, key='-ANGLEROT-', tooltip='Degrés, sens trigonométrique', size=(5,1))],
[sg.Text('Taille du maillage'), sg.Input(10, key='-MESH_SIZE-', size=(5,1))],
]
########################COLONNES MASQUEES / AFFICHEES SELON LES PROFILES###############################
col_IPN = [[sg.Combo(values=list(dic_dim_IPN), readonly=True, k='-LISTE_IPN-', size=(20,1), enable_events=True)],
[sg.Text('d, hauteur'), sg.Input(key='In_IPN_d', size=(5,1))],
[sg.Text('b, largeur'), sg.Input(key='In_IPN_b', size=(5,1))],
[sg.Text('t_f, épaisseur de l\'aile'), sg.Input(key='In_IPN_t_f', size=(5,1))],
[sg.Text('t_w, épaisseur de l\'ame'), sg.Input(key='In_IPN_t_w', size=(5,1))],
[sg.Text('r_r, rayon en racine'), sg.Input(key='In_IPN_r_r', size=(5,1))],
[sg.Text('r_f, rayon de l\'aile'), sg.Input(key='In_IPN_r_f', size=(5,1))],
[sg.Text('alpha, angle en degrés de l\'aile'), sg.Input(key='In_IPN_alpha', size=(5,1))],
[sg.Text('n_r, nombre de points de discrétisation des rayons'), sg.Input(15, key='In_IPN_n_r', size=(5,1))]
]
col_IPE = [[sg.Combo(values=list(dic_dim_IPE), readonly=True, k='-LISTE_IPE-', size=(20,1), enable_events=True)],
[sg.Text('d, hauteur'), sg.Input(key='In_IPE_d', size=(5,1))],
[sg.Text('b, largeur'), sg.Input(key='In_IPE_b', size=(5,1))],
[sg.Text('t_f, épaisseur de l\'aile'), sg.Input(key='In_IPE_t_f', size=(5,1))],
[sg.Text('t_w, épaisseur de l\'ame'), sg.Input(key='In_IPE_t_w', size=(5,1))],
[sg.Text('r, rayon en racine'), sg.Input(key='In_IPE_r', size=(5,1))],
[sg.Text('n_r, nombre de points de discrétisation du rayon'), sg.Input(15, key='In_IPE_n_r', size=(5,1))]
]
col_UPN = [[sg.Combo(values=list(dic_dim_UPN), readonly=True, k='-LISTE_UPN-', size=(20,1), enable_events=True)],
[sg.Text('d, hauteur'), sg.Input(key='In_UPN_d', size=(5,1))],
[sg.Text('b, largeur'), sg.Input(key='In_UPN_b', size=(5,1))],
[sg.Text('t_f, épaisseur de l\'aile'), sg.Input(key='In_UPN_t_f', size=(5,1))],
[sg.Text('t_w, épaisseur de l\'ame'), sg.Input(key='In_UPN_t_w', size=(5,1))],
[sg.Text('r_r, rayon en racine'), sg.Input(key='In_UPN_r_r', size=(5,1))],
[sg.Text('r_f, rayon de l\'aile'), sg.Input(key='In_UPN_r_f', size=(5,1))],
[sg.Text('alpha, angle en degrés de l\'aile'), sg.Input(key='In_UPN_alpha', size=(5,1))],
[sg.Text('n_r, nombre de points de discrétisation des rayons'), sg.Input(15, key='In_UPN_n_r', size=(5,1))]
]
col_UPE = [[sg.Combo(values=list(dic_dim_UPE), readonly=True, k='-LISTE_UPE-', size=(20,1), enable_events=True)],
[sg.Text('d, hauteur'), sg.Input(key='In_UPE_d', size=(5,1))],
[sg.Text('b, largeur'), sg.Input(key='In_UPE_b', size=(5,1))],
[sg.Text('t_f, épaisseur de l\'aile'), sg.Input(key='In_UPE_t_f', size=(5,1))],
[sg.Text('t_w, épaisseur de l\'ame'), sg.Input(key='In_UPE_t_w', size=(5,1))],
[sg.Text('r, rayon en racine'), sg.Input(key='In_UPE_r', size=(5,1))],
[sg.Text('n_r, nombre de points de discrétisation du rayon'), sg.Input(15, key='In_UPE_n_r', size=(5,1))]
]
col_Corniere = [[sg.Combo(values=list(dic_dim_COR), readonly=True, k='-LISTE_COR-', size=(20,1), enable_events=True)],
[sg.Text('d, hauteur'), sg.Input(key='In_COR_d', size=(5,1))],
[sg.Text('b, largeur'), sg.Input(key='In_COR_b', size=(5,1))],
[sg.Text('t, épaisseur'), sg.Input(key='In_COR_t', size=(5,1))],
[sg.Text('r_r, rayon en racine'), sg.Input(key='In_COR_r_r', size=(5,1))],
[sg.Text('r_t, rayon en pied'), sg.Input(key='In_COR_r_t', size=(5,1))],
[sg.Text('n_r, nombre de points de discrétisation du rayon'), sg.Input(15, key='In_COR_n_r', size=(5,1))]
]
col_Rectangle = [[sg.Text('d, hauteur'), sg.Input(key='In_REC_d', size=(5,1))],
[sg.Text('b, largeur'), sg.Input(key='In_REC_b', size=(5,1))],
[sg.Text('t, épaisseur'), sg.Input(key='In_REC_t', size=(5,1))],
[sg.Text('r_out, rayon extérieur'), sg.Input(key='In_REC_r_out', size=(5,1))],
[sg.Text('n_r, nombre de points de discrétisation du rayon'), sg.Input(15, key='In_REC_n_r', size=(5,1))]
]
col_Tube = [[sg.Text('d, diamètre extérieur'), sg.Input(key='In_TUB_d', size=(5,1))],
[sg.Text('t, épaisseur'), sg.Input(key='In_TUB_t', size=(5,1))],
[sg.Text('n, nombre de points de discrétisation des cercles'), sg.Input(key='In_TUB_n', size=(5,1))]
]
col_Personnalise = [[sg.Text('Adresse fichier dxf :'), sg.FileBrowse(key='-adresse_dxf-', button_text = "Parcourir", file_types=(('DXF', '*.dxf'),) )],
]
#############################FIN COLONNES SPECIFIQUES AU CHOIX DU PROFILE##########################
lig_Cal = [[sg.Push(), sg.Checkbox('Imprimer propriétés de section', key='-PRINT_PARAM-', tooltip='Imprimer dans la console les propriétés géométriques et mécaniques calculées'),
sg.Checkbox('Tracer résultats', enable_events=True, key='-DRAW_RESULTS-', tooltip='Afficher graphiquement les contraintes calculées')],
[sg.Push(), sg.Button('Quitter'), sg.Button('Calcul')]]
#########################################CREATION FENETRE####################################
layout = [[sg.Column(col_parametres, element_justification='r'),
sg.VSeperator(),
sg.Column(col_image, element_justification='r'),
sg.Column(col_IPN, element_justification='r', visible=False, key='col_IPN'),
sg.Column(col_IPE, element_justification='r', visible=False, key='col_IPE'),
sg.Column(col_UPN, element_justification='r', visible=False, key='col_UPN'),
sg.Column(col_UPE, element_justification='r', visible=False, key='col_UPE'),
sg.Column(col_Corniere, element_justification='r', visible=False, key='col_Corniere'),
sg.Column(col_Rectangle, element_justification='r', visible=False, key='col_Rectangle'),
sg.Column(col_Tube, element_justification='r', visible=False, key='col_Tube'),
sg.Column(col_Personnalise, element_justification='r', visible=False, key='col_Personnalise')
],
lig_Cal]
window = sg.Window('Dépouillement supports linéaires RCCM ZVI', layout, default_element_size=(40, 1), grab_anywhere=False, resizable=True)
##################################BOUCLE ATTENTE############################################
while True:
event, values = window.read()
if event in ('Quitter', None):
break
if event == "-PROFILE-": # un profilé a été selectionné
nom_profile = values["-PROFILE-"]
adresse_image = os.path.dirname(os.path.realpath(__file__)) + "\\images\\" + nom_profile[0] +".png"
try:
window['-IMAGEPROFILE-'].update(adresse_image)
except:
pass
#Effacer les colonnes éventuellement affichées lors d'une sélection
window['col_IPE'].update(visible=False)
window['col_IPN'].update(visible=False)
window['col_UPN'].update(visible=False)
window['col_UPE'].update(visible=False)
window['col_Corniere'].update(visible=False)
window['col_Rectangle'].update(visible=False)
window['col_Tube'].update(visible=False)
window['col_Personnalise'].update(visible=False)
#Afficher colonnes en fonction de la section
if nom_profile[0] == "IPN":
window['col_IPN'].update(visible=True)
if nom_profile[0] == "IPE-HE":
window['col_IPE'].update(visible=True)
if nom_profile[0] == "UPN":
window['col_UPN'].update(visible=True)
if nom_profile[0] == "UPE-UAP":
window['col_UPE'].update(visible=True)
if nom_profile[0] == "Corniere":
window['col_Corniere'].update(visible=True)
if nom_profile[0] == "Rectangle":
window['col_Rectangle'].update(visible=True)
if nom_profile[0] == "Tube":
window['col_Tube'].update(visible=True)
if nom_profile[0] == "Personnalisé":
window['col_Personnalise'].update(visible=True)
if event == "-LISTE_IPN-":
window['In_IPN_d'].update(value=dic_dim_IPN[values['-LISTE_IPN-']][0])
window['In_IPN_b'].update(value=dic_dim_IPN[values['-LISTE_IPN-']][1])
window['In_IPN_t_f'].update(value=dic_dim_IPN[values['-LISTE_IPN-']][2])
window['In_IPN_t_w'].update(value=dic_dim_IPN[values['-LISTE_IPN-']][3])
window['In_IPN_r_r'].update(value=dic_dim_IPN[values['-LISTE_IPN-']][4])
window['In_IPN_r_f'].update(value=dic_dim_IPN[values['-LISTE_IPN-']][5])
window['In_IPN_alpha'].update(value=dic_dim_IPN[values['-LISTE_IPN-']][6])
if event == "-LISTE_IPE-":
window['In_IPE_d'].update(value=dic_dim_IPE[values['-LISTE_IPE-']][0])
window['In_IPE_b'].update(value=dic_dim_IPE[values['-LISTE_IPE-']][1])
window['In_IPE_t_f'].update(value=dic_dim_IPE[values['-LISTE_IPE-']][2])
window['In_IPE_t_w'].update(value=dic_dim_IPE[values['-LISTE_IPE-']][3])
window['In_IPE_r'].update(value=dic_dim_IPE[values['-LISTE_IPE-']][4])
if event == "-LISTE_UPN-":
window['In_UPN_d'].update(value=dic_dim_UPN[values['-LISTE_UPN-']][0])
window['In_UPN_b'].update(value=dic_dim_UPN[values['-LISTE_UPN-']][1])
window['In_UPN_t_f'].update(value=dic_dim_UPN[values['-LISTE_UPN-']][2])
window['In_UPN_t_w'].update(value=dic_dim_UPN[values['-LISTE_UPN-']][3])
window['In_UPN_r_r'].update(value=dic_dim_UPN[values['-LISTE_UPN-']][4])
window['In_UPN_r_f'].update(value=dic_dim_UPN[values['-LISTE_UPN-']][5])
window['In_UPN_alpha'].update(value=dic_dim_UPN[values['-LISTE_UPN-']][6])
if event == "-LISTE_UPE-":
window['In_UPE_d'].update(value=dic_dim_UPE[values['-LISTE_UPE-']][0])
window['In_UPE_b'].update(value=dic_dim_UPE[values['-LISTE_UPE-']][1])
window['In_UPE_t_f'].update(value=dic_dim_UPE[values['-LISTE_UPE-']][2])
window['In_UPE_t_w'].update(value=dic_dim_UPE[values['-LISTE_UPE-']][3])
window['In_UPE_r'].update(value=dic_dim_UPE[values['-LISTE_UPE-']][4])
if event == "-LISTE_COR-":
window['In_COR_d'].update(value=dic_dim_COR[values['-LISTE_COR-']][0])
window['In_COR_b'].update(value=dic_dim_COR[values['-LISTE_COR-']][1])
window['In_COR_t'].update(value=dic_dim_COR[values['-LISTE_COR-']][2])
window['In_COR_r_r'].update(value=dic_dim_COR[values['-LISTE_COR-']][3])
window['In_COR_r_t'].update(value=dic_dim_COR[values['-LISTE_COR-']][4])
if event == "-DRAW_RESULTS-" or event == "-ITER_SIGNS-" or event=='-LISTE_TORSEUR-': #POPUP WARNING pour prévenir d'afficher 64 fois la fenêtre graphique de résultats en contraintes
if (values['-ITER_SIGNS-'] == True or values['-LISTE_TORSEUR-'] == True) and values['-DRAW_RESULTS-']==True:
sg.Popup('L\'affichage des contraintes est activée pour une série de calculs (itération des signes ou liste de torseurs)', title='Attention')
if event == "-LISTE_TORSEUR-":
if values['-LISTE_TORSEUR-'] == True:
window['-TORSEUR_N-'].update(disabled=True)
window['-TORSEUR_FX-'].update(disabled=True)
window['-TORSEUR_FY-'].update(disabled=True)
window['-TORSEUR_MX-'].update(disabled=True)
window['-TORSEUR_MY-'].update(disabled=True)
window['-TORSEUR_MZ-'].update(disabled=True)
window['-adresse_torseur-'].update(disabled=False)
else:
window['-TORSEUR_N-'].update(disabled=False)
window['-TORSEUR_FX-'].update(disabled=False)
window['-TORSEUR_FY-'].update(disabled=False)
window['-TORSEUR_MX-'].update(disabled=False)
window['-TORSEUR_MY-'].update(disabled=False)
window['-TORSEUR_MZ-'].update(disabled=False)
window['-adresse_torseur-'].update(disabled=True)
if event == "Calcul":
param_gene = {'niveau_RCCM':values['-NIVEAU_RCCM-'][0] ,'maille':values['-MESH_SIZE-'], 'L':values['-LONGUEUR-'], 'K':values['-KLONGUEUR-'],
'cmx':values['-CMX-'], 'cmy':values['-CMY-'], 'angle':values['-ANGLEROT-'],
'Sy':values['-SY-'], 'Su':values['-SU-'], 'E':values['-MODULE-'], 'impr_res':values['-PRINT_PARAM-'], 'trac_res':values['-DRAW_RESULTS-']}
for key, value in param_gene.items():
try:
param_gene[key]=float(value)
except:
pass
if nom_profile[0] == "IPN":
type_profile = "IH" #pour prise en compte limites de contraintes en flexion
param_geom = {'IPN_d':values['In_IPN_d'], 'IPN_b':values['In_IPN_b'], 'IPN_t_f':values['In_IPN_t_f'], 'IPN_t_w':values['In_IPN_t_w'],
'IPN_r_r':values['In_IPN_r_r'], 'IPN_r_f':values['In_IPN_r_f'], 'IPN_alpha':values['In_IPN_alpha'], 'IPN_n_r':values['In_IPN_n_r']}
section = solver.calcul_geom("IPN", param_geom, param_gene)
if nom_profile[0] == "IPE-HE":
type_profile ="IH"
param_geom = {'IPE_d':values['In_IPE_d'], 'IPE_b':values['In_IPE_b'], 'IPE_t_f':values['In_IPE_t_f'],
'IPE_t_w':values['In_IPE_t_w'], 'IPE_r':values['In_IPE_r'], 'IPE_n_r':values['In_IPE_n_r']}
section = solver.calcul_geom("IPE", param_geom, param_gene)
if nom_profile[0] == "UPN":
type_profile ="U"
param_geom = {'UPN_d':values['In_UPN_d'], 'UPN_b':values['In_UPN_b'], 'UPN_t_f':values['In_UPN_t_f'], 'UPN_t_w':values['In_UPN_t_w'],
'UPN_r_r':values['In_UPN_r_r'], 'UPN_r_f':values['In_UPN_r_f'], 'UPN_alpha':values['In_UPN_alpha'], 'UPN_n_r':values['In_UPN_n_r']}
section = solver.calcul_geom("UPN", param_geom, param_gene)
if nom_profile[0] == "UPE-UAP":
type_profile = "U"
param_geom = {'UPE_d':values['In_UPE_d'], 'UPE_b':values['In_UPE_b'], 'UPE_t_f':values['In_UPE_t_f'], 'UPE_t_w':values['In_UPE_t_w'],
'UPE_r':values['In_UPE_r'], 'UPE_n_r':values['In_UPE_n_r']}
section = solver.calcul_geom("UPE", param_geom, param_gene)
if nom_profile[0] == "Rectangle":
type_profile = "R"
param_geom = {'REC_d':values['In_REC_d'], 'REC_b':values['In_REC_b'], 'REC_t':values['In_REC_t'], 'REC_r_out':values['In_REC_r_out'], 'REC_n_r':values['In_REC_n_r']}
section = solver.calcul_geom("Rectangle", param_geom, param_gene)
if nom_profile[0] == "Corniere":
type_profile = "L"
param_geom = {'COR_d':values['In_COR_d'], 'COR_b':values['In_COR_b'], 'COR_t':values['In_COR_t'], 'COR_r_r':values['In_COR_r_r'],
'COR_r_t':values['In_COR_r_t'], 'COR_n_r':values['In_COR_n_r']}
section = solver.calcul_geom("Corniere", param_geom, param_gene)
if nom_profile[0] == "Tube":
type_profile = "T"
param_geom = {'TUB_d':values['In_TUB_d'], 'TUB_t':values['In_TUB_t'], 'TUB_n':values['In_TUB_n']}
section = solver.calcul_geom("Tube", param_geom, param_gene)
if nom_profile[0] == "Personnalisé":
type_profile = "P"
param_geom = {'adresse_dxf':values['-adresse_dxf-']} #envoi de l'adresse du fichier dxf dans le dictionnaire paramètres géométriques
section = solver.calcul_geom("Personnalisé", param_geom, param_gene)
#Chargement torseur
if values['-LISTE_TORSEUR-'] == False:
torseur = {'N':values['-TORSEUR_N-'], 'Fx':values['-TORSEUR_FX-'], 'Fy':values['-TORSEUR_FY-'],
'Mx':values['-TORSEUR_MX-'], 'My':values['-TORSEUR_MY-'], 'Mz':values['-TORSEUR_MZ-']}
torseur = [torseur]#conversion en liste de dictionnaire de torseurs
else:
torseur = charger_torseur(values['-adresse_torseur-'])
nb_torseurs = len(torseur) #nombre de torseurs différents à calculer
for index, torseur_i in enumerate(torseur): ###Transformation string en float pour entrée dans sectionproperties
for key, value in torseur_i.items():
try:
torseur[index][key]=float(value.replace("," , ".")) #gérer les decimaux exprimés avec des . ou de ,
except:
torseur[index][key]=0.0 #si cellule du torseur vide, mettre 0 pour éviter de garder un string
if values['-ITER_SIGNS-'] == True:
facteurs = list(product([1, -1], repeat=6))
else:
facteurs = [[1,1,1,1,1,1]]
ratio_max = 0 #Remise à zéro du dernier ratio max calculé
for i in range(nb_torseurs):
for k, v in enumerate(facteurs):
ratio = solver.calcul_contraintes(section, torseur[i], param_gene, type_profile, facteurs[k]) #Lance le calcul des contraintes, affiche la table et récupère le ratio max
if float(ratio) > float(ratio_max):
ratio_max = ratio
if (len(facteurs) * nb_torseurs) > 1: #si on teste plus d'une combinaison de facteurs ou de torseurs, on affiche le ratio max
console = Console()
if float(ratio_max) > 1:
console.print("Ratio maximal calculé : [red]"+ratio_max+"[/]")
else:
console.print("Ratio maximal calculé : [green]"+ratio_max+"[/]")
window.close()