Announcements

Announcement: We’re aware of an issue affecting starting a new topic from category pages and creating new blog posts. New topics can still be started directly from the relevant board. Learn more here.

IFC with exactly same export options are showing in different rotations in Model coordination view

IFC with exactly same export options are showing in different rotations in Model coordination view

Naumanen
Contributor Contributor
593 Views
1 Reply
Message 1 of 2

IFC with exactly same export options are showing in different rotations in Model coordination view

Naumanen
Contributor
Contributor

Hi all. 

We are having an issue where two ifc files of the same building, exported with the same options from Tekla, are showing in different rotations in the Model coordination view. We want to show our buildings in true north. 

 

Naumanen_0-1726143927866.pngNaumanen_0-1726143927866.png

 

We have been testing this out and this ifc is showing correctly in every other ifc viewer except in ACC. 

 

Any idea what could be the reason for this behavior and how to fix this?

0 Likes
Accepted solutions (1)
594 Views
1 Reply
Reply (1)
Message 2 of 2

Naumanen
Contributor
Contributor
Accepted solution

Hi all.

 

I solved this problem by writing a program in Visual Studio which compares two .txt-files. It seems there was a weird difference on the lines 10 and 11. The ifc which worked fine had the lines: 

#10= IFCAXIS2PLACEMENT3D(#6,#9,#7);

#11= IFCDIRECTION((0.,1.));

And those which didn't work had the lines:

#10= IFCAXIS2PLACEMENT3D(#6,#9,#7);

#11= IFCDIRECTION((0.569279523430877,0.822144041030715));

 

So I just edited the text-files, replaced the row 11 with the text IFCDIRECTION((0.,1.));, saved as ifc file and uploaded into Autodesk Construction Cloud and now they are working as intended. 

 

Hopefully this will help anyone facing similar issues.