Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveDoyle2 committed Oct 7, 2024
1 parent 3898afa commit 2d82c0b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pyNastran/bdf/cards/aero/zona.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def _convert_aesurf_aelist(self):
for unused_aesurf_name, aesurfi in sorted(model.aesurf.items()):
aelist, aesurfi2 = aesurfi.convert_to_nastran(model, aesurf_id, aelist_id)
aelists[aelist.sid] = aelist
aesurf[aesurfi2.aesid] = aesurfi2
aesurf[aesurfi2.aesurf_id] = aesurfi2
aesurf_id += 1
aelist_id += 1
return aesurf, aelists
Expand Down
14 changes: 7 additions & 7 deletions pyNastran/op2/tables/ogf_gridPointForces/ogf_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -1695,7 +1695,7 @@ def _build_unique_dataframe(self, headers: list[str]):
data_frame = df1.join([df2, df3])
#print(data_frame)
return data_frame

def _build_dataframe(self):
"""::
major-axis - the axis
Expand Down Expand Up @@ -1985,12 +1985,12 @@ def write_f06(self, f06_file, header=None, page_stamp='PAGE %s',
#str(self.data.shape), itime, str(ieids)))

#[t1, t2, t3, r1, r2, r3]
t1 = self.data[itime, :, 0]
t2 = self.data[itime, :, 1]
t3 = self.data[itime, :, 2]
r1 = self.data[itime, :, 3]
r2 = self.data[itime, :, 4]
r3 = self.data[itime, :, 5]
#t1 = self.data[itime, :, 0]
#t2 = self.data[itime, :, 1]
#t3 = self.data[itime, :, 2]
#r1 = self.data[itime, :, 3]
#r2 = self.data[itime, :, 4]
#r3 = self.data[itime, :, 5]

zero = ' '
for (nid, eid, ename, t1i, t2i, t3i, r1i, r2i, r3i) in zip(
Expand Down
2 changes: 1 addition & 1 deletion pyNastran/op2/writer/edt_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ def write_aesurf(model: Union[BDF, OP2Geom], name: str,

#print(aesurf.get_stats())
data = [
aesurf.aesid, label_bytes,
aesurf.aesurf_id, label_bytes,
aesurf.cid1, aesurf.aelist_id1,
cid2, aelist_id2,
aesurf.eff, ldw_int,
Expand Down

0 comments on commit 2d82c0b

Please sign in to comment.