Skip to content

Releases: domhnallmorr/NASTRAN_Reader

V0.6.7

17 Aug 16:37
Compare
Choose a tag to compare
V0.6.7 Pre-release
Pre-release

Added get_grid_coordinates method to BdfFile class.

V0.6.6

09 Aug 07:14
Compare
Choose a tag to compare
V0.6.6 Pre-release
Pre-release

Any fields that are a string data type now have trailing and leading whitespace removed.

V0.6.5

28 Jul 16:07
Compare
Choose a tag to compare
V0.6.5 Pre-release
Pre-release

Add handling for if 2nd line of pbeam is not provided (short field only)

V0.6.4

31 Mar 09:19
Compare
Choose a tag to compare
V0.6.4 Pre-release
Pre-release

Added support for CSHEAR card (short field only).

V0.6.3

30 Mar 15:39
Compare
Choose a tag to compare
V0.6.3 Pre-release
Pre-release

Added class variable "unsupported_cards" in an attempt to track any cards that were not processed.

V0.6.2

30 Mar 13:57
Compare
Choose a tag to compare
V0.6.2 Pre-release
Pre-release

Fixed blank line continuation marker bug.
For example, in the example below, the second line (+) is no treated as a blank second line. Previously it was ignored completely.

PBEAM 21010200 7401279 .6893 .1169 .5746 .004
+
YES 1. .6893 .1169 .5746 .004

V0.6.1

30 Mar 08:35
Compare
Choose a tag to compare
V0.6.1 Pre-release
Pre-release

Exception will now be raised if PCOMP in long field format is found.

V0.6.0

29 Mar 15:04
Compare
Choose a tag to compare
V0.6.0 Pre-release
Pre-release

Added PROD support (short field only).
Exception will now be raised if long field PSHELL is found (long field not support yet).

V0.5.3

29 Mar 10:40
Compare
Choose a tag to compare
V0.5.3 Pre-release
Pre-release

Added handling for continuation markers

In the example below, the second line of the PBEAM entry actually refers to the 3rd line, 2nd line is skipped as indicated by the continuation marker.

"PBEAM 2000003 2000004 9.5300012.1200012.12000 24.24000"
"+ YESA 1.0 7.2400007.6800007.680000 15.36000"

Handling for this is done at the end of the "get_card_lines" method.

V0.5.2

29 Mar 10:00
Compare
Choose a tag to compare
V0.5.2 Pre-release
Pre-release

Added handling for double precession character in real values.
for example "De+02" can be present and was previously causing an error when converting to a float.
The D is now removed.