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

From ATTWiki
Jump to: navigation, search
(How Wrong Scales in STEP Files Impact VTube)
(How Wrong Scales in STEP Files Affect VTube)
 
Line 2: Line 2:
  
 
==How Wrong Scales in STEP Files Affect VTube==
 
==How Wrong Scales in STEP Files Affect VTube==
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.
+
After an import of a STEP model of a tube. 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.
 
<br><br>
 
<br><br>
 
For example, this STEP file imported the following values:<br><br>
 
For example, this STEP file imported the following values:<br><br>

Latest revision as of 18:27, 12 July 2016

Contents

How Wrong Scales in STEP Files Affect VTube

After an import of a STEP model of a tube. 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(.MILLI.,.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