Skip to content

Commit 2d82c0b

Browse files
committed
fixing tests
1 parent 3898afa commit 2d82c0b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

pyNastran/bdf/cards/aero/zona.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def _convert_aesurf_aelist(self):
376376
for unused_aesurf_name, aesurfi in sorted(model.aesurf.items()):
377377
aelist, aesurfi2 = aesurfi.convert_to_nastran(model, aesurf_id, aelist_id)
378378
aelists[aelist.sid] = aelist
379-
aesurf[aesurfi2.aesid] = aesurfi2
379+
aesurf[aesurfi2.aesurf_id] = aesurfi2
380380
aesurf_id += 1
381381
aelist_id += 1
382382
return aesurf, aelists

pyNastran/op2/tables/ogf_gridPointForces/ogf_objects.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1695,7 +1695,7 @@ def _build_unique_dataframe(self, headers: list[str]):
16951695
data_frame = df1.join([df2, df3])
16961696
#print(data_frame)
16971697
return data_frame
1698-
1698+
16991699
def _build_dataframe(self):
17001700
"""::
17011701
major-axis - the axis
@@ -1985,12 +1985,12 @@ def write_f06(self, f06_file, header=None, page_stamp='PAGE %s',
19851985
#str(self.data.shape), itime, str(ieids)))
19861986

19871987
#[t1, t2, t3, r1, r2, r3]
1988-
t1 = self.data[itime, :, 0]
1989-
t2 = self.data[itime, :, 1]
1990-
t3 = self.data[itime, :, 2]
1991-
r1 = self.data[itime, :, 3]
1992-
r2 = self.data[itime, :, 4]
1993-
r3 = self.data[itime, :, 5]
1988+
#t1 = self.data[itime, :, 0]
1989+
#t2 = self.data[itime, :, 1]
1990+
#t3 = self.data[itime, :, 2]
1991+
#r1 = self.data[itime, :, 3]
1992+
#r2 = self.data[itime, :, 4]
1993+
#r3 = self.data[itime, :, 5]
19941994

19951995
zero = ' '
19961996
for (nid, eid, ename, t1i, t2i, t3i, r1i, r2i, r3i) in zip(

pyNastran/op2/writer/edt_writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ def write_aesurf(model: Union[BDF, OP2Geom], name: str,
895895

896896
#print(aesurf.get_stats())
897897
data = [
898-
aesurf.aesid, label_bytes,
898+
aesurf.aesurf_id, label_bytes,
899899
aesurf.cid1, aesurf.aelist_id1,
900900
cid2, aelist_id2,
901901
aesurf.eff, ldw_int,

0 commit comments

Comments
 (0)