This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from math import * | |
| s = float(input('Coefficient de sécurité\n')) | |
| d = float(input('Diaemetre filetage M [mm] (cf tableau)\n')) | |
| seq = float(input('Section resistante [mm^2] (cf tableau)\n')) | |
| n = float(input('Effort presseur [N]\n')) | |
| s_qual = int(input('1er chiffre vis (S)\n')) | |
| y_qual = int(input('2nd chiffre vis (Y)\n')) | |
| re = s_qual*y_qual*10 | |
| fmax = 0.9*re*seq |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from math import * |