umvarma / pynastran

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

Nastran large field format printing not supported for various cards #98

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
more of a defect in nastran that needs to be worked around whenever i get 
around to it...
some cards may only have continuation markers in small field format (e.g. 
TSTEPNL, DLOAD) beyond line 1 (assuming small field format).  The point is test 
large field support a lot.

This is a list of cards that have this issue (there are probably many more):
TSTEPNL, DLOAD

if there are any more, add them to the list...

Original issue reported on code.google.com by mesheb82 on 18 Jul 2012 at 10:02

GoogleCodeExporter commented 9 years ago
that was probably incorrect...this should work

nFieldsMain = len(fields) - 1  # chop off the card name
nBDFLines = nFieldsMain // 8
if nFieldsMain % 8 != 0:
    nBDFLines += 1
nExtraFields = 8 * nBDFLines -  nFieldsMain
if nExtraFields:
    fields += [None] * nExtraFields

Original comment by mesheb82 on 2 Aug 2012 at 11:11

GoogleCodeExporter commented 9 years ago

Original comment by mesheb82 on 6 Aug 2012 at 10:59

GoogleCodeExporter commented 9 years ago

Original comment by mesheb82 on 10 May 2013 at 1:53

GoogleCodeExporter commented 9 years ago
done as far as I know

Original comment by mesheb82 on 9 Feb 2014 at 9:34