umvarma / pynastran

Automatically exported from code.google.com/p/pynastran
1 stars 0 forks source link

syntax errors in bdf.cards.properties.shell_backup.py #142

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Syntax errors in bdf.cards.properties.shell_backup.py r1945

"2Q66" is not a valid python token, probably a typo. Lines 94 and 95:

            Qb11 = Q11*cccc + 2*(Q12+2Q66)*ss*cc + Q22*ssss
                                     ^^^^

            Qb22 = Q11*ssss + 2*(Q12+2Q66)*ss*cc + Q22*cccc
                                     ^^^^

should probably be (?)

            Qb11 = Q11*cccc + 2*(Q12+2*Q66)*ss*cc + Q22*ssss
                                     ^^^^^

            Qb22 = Q11*ssss + 2*(Q12+2*Q66)*ss*cc + Q22*cccc
                                     ^^^^^

Original issue reported on code.google.com by jeffrey....@gmail.com on 19 Feb 2014 at 8:56

GoogleCodeExporter commented 9 years ago
The code has been fixed.  It's not ever called, so nothing to worry about.

Original comment by mesheb82 on 19 Feb 2014 at 9:04