Difference between revisions of "Dealing with Incorrect STEP Linear Unit Scale"

From ATTWiki
Jump to: navigation, search
(How Wrong Scales Are Represented in STEP Files)
(How Wrong Scales Are Represented in STEP Files)
Line 9: Line 9:
  
 
<br><br>
 
<br><br>
 +
 +
The import required 28,539 loops which is much higher than normal.
 +
 +
 +
==How to Fix the STEP File in a Text Editor==
 +
Open the STEP file in a text editor and search for SI_UNIT.
 +
 +
In the import shown above the line with LENGTH_UNIT shows this:
 +
 +
<pre>
 +
#815=(LENGTH_UNIT()NAMED_UNIT(*)SI_UNIT($,.METRE.));
 +
</pre>
 +
 +
In this line, we can change the "$" character like this:
 +
 +
<pre>
 +
#815=(LENGTH_UNIT()NAMED_UNIT(*)SI_UNIT(.MILLE.,.METRE.));
 +
</pre>
 +
 +
Then save the file, then re-import the STEP file.
 +
 +
 +
==Import After Fix==
 +
 +
This is how the imported part shows now:
 +
 +
[[image:VTube-STEP_FixedScale.png|600px]]
 +
 +
<br><br>
 +
 +
=Other Pages=
 +
*

Revision as of 18:17, 12 July 2016

Contents

How Wrong Scales Are Represented in STEP Files

If you attempt to calculate a centerline and find that the calculation takes much longer than usual, and the resulting values are extremely large, then there is probably a problem in the original STEP file setup.

For example, this STEP file imported the following values:

VTube-STEP LargeScale.png



The import required 28,539 loops which is much higher than normal.


How to Fix the STEP File in a Text Editor

Open the STEP file in a text editor and search for SI_UNIT.

In the import shown above the line with LENGTH_UNIT shows this:

#815=(LENGTH_UNIT()NAMED_UNIT(*)SI_UNIT($,.METRE.));

In this line, we can change the "$" character like this:

#815=(LENGTH_UNIT()NAMED_UNIT(*)SI_UNIT(.MILLE.,.METRE.));

Then save the file, then re-import the STEP file.


Import After Fix

This is how the imported part shows now:

VTube-STEP FixedScale.png



Other Pages