Skip to content

Commit

Permalink
0708
Browse files Browse the repository at this point in the history
  • Loading branch information
tian50 committed Jul 8, 2021
1 parent bd6eeb7 commit ab01569
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions msgpi/io/iovabs.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,11 @@ def readVABSOutHomo(fn, scrnout=True):
keywordsIndex['mc'] = ln
elif 'mass per unit span' in line:
bp.mu = float(line.split()[-1])
elif 'i11' in line:
elif 'inertia i11' in line:
bp.i11 = float(line.split()[-1])
elif 'i22' in line:
elif 'inertia i22' in line:
bp.i22 = float(line.split()[-1])
elif 'i33' in line:
elif 'inertia i33' in line:
bp.i33 = float(line.split()[-1])
elif 'principal inertial axes rotated' in line:
line = line.split()
Expand Down

0 comments on commit ab01569

Please sign in to comment.