CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Mesh Generation & Pre-Processing Software > Pointwise & Gridgen

Importing .STEP files

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By dgarlisch

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 30, 2017, 23:13
Default Importing .STEP files
  #1
New Member
 
Nilanka Ekanayake
Join Date: Jun 2017
Posts: 9
Rep Power: 8
nilanka is on a distinguished road
Hi,

I got a step file with a sphere inside a channel. But when I import as a database the following step file, the internal surfaces (sphere) won't import properly in Pointwise. Are there any properties that I should change when importing such file?
nilanka is offline   Reply With Quote

Old   August 31, 2017, 20:22
Default
  #2
Senior Member
 
David Garlisch
Join Date: Jan 2013
Location: Fidelity Pointwise, Cadence Design Systems (Fort Worth, Texas Office)
Posts: 307
Rep Power: 14
dgarlisch is on a distinguished road
Quote:
Originally Posted by nilanka View Post
Hi,

I got a step file with a sphere inside a channel. But when I import as a database the following step file, the internal surfaces (sphere) won't import properly in Pointwise. Are there any properties that I should change when importing such file?
Can you attach the file?
dgarlisch is offline   Reply With Quote

Old   August 31, 2017, 20:26
Default
  #3
New Member
 
Nilanka Ekanayake
Join Date: Jun 2017
Posts: 9
Rep Power: 8
nilanka is on a distinguished road
Sorry, the file is attached.
Attached Files
File Type: zip test3.step.zip (3.9 KB, 9 views)
nilanka is offline   Reply With Quote

Old   September 1, 2017, 11:41
Default
  #4
Senior Member
 
David Garlisch
Join Date: Jan 2013
Location: Fidelity Pointwise, Cadence Design Systems (Fort Worth, Texas Office)
Posts: 307
Rep Power: 14
dgarlisch is on a distinguished road
I am fairly sure this STEP file is bad.

If you look at the appropriate section in the STEP file, you will see that the sphere (entity #352) is used as part of a face (entity #347).

Code:
#345 = ORIENTED_CLOSED_SHELL('',*,#346,.F.);
#346 = CLOSED_SHELL('',(#347));
#347 = ADVANCED_FACE('',(#348),#352,.T.);
#348 = FACE_BOUND('',#349,.T.);
#349 = VERTEX_LOOP('',#350);
#350 = VERTEX_POINT('',#351);
#351 = CARTESIAN_POINT('',(2.5,1.,0.9));
#352 = SPHERICAL_SURFACE('',#353,0.1);
#353 = AXIS2_PLACEMENT_3D('',#354,#355,#356);
#354 = CARTESIAN_POINT('',(2.5,1.,1.));
#355 = DIRECTION('',(0.,0.,1.));
#356 = DIRECTION('',(1.,0.,0.));
However, the face's trim loop (entity #349) is a single point (entity #350)! This results in a degenerate trimmed face with zero area.

This nonsensical entity is discarded during import.

The sphere is located at (2.5, 1, 1) with a radius of 0.1. I have attached several files with this sphere added back in.

The pw file was created with V18.0R3. If your Pointwise version is older and it can't read the pw file, import the NMB database file. If that won't work, import the IGES file.
Attached Files
File Type: zip test3-fixed.zip (22.6 KB, 3 views)
dgarlisch is offline   Reply With Quote

Old   September 1, 2017, 22:25
Default
  #5
New Member
 
Nilanka Ekanayake
Join Date: Jun 2017
Posts: 9
Rep Power: 8
nilanka is on a distinguished road
Many thanks.

I've been able to open the .pw ! Did you create the geo directly in pw using shapes? I had some trouble when placing the sphere in the correct location using the translation tool. I'll try point placement option.

The geometry I actually created is a channel flow, with a spherical portion removed from it (using a boolean operation). May be that would have been the issue.

Again thank.
nilanka is offline   Reply With Quote

Old   September 5, 2017, 10:53
Default
  #6
Senior Member
 
David Garlisch
Join Date: Jan 2013
Location: Fidelity Pointwise, Cadence Design Systems (Fort Worth, Texas Office)
Posts: 307
Rep Power: 14
dgarlisch is on a distinguished road
Quote:
Did you create the geo directly in pw using shapes?
Yes, I used Create, Draw Shapes, Sphere... to create the sphere surface.
In the task panel:
  • In the Entity Type section, select Database
  • In the Point Placement section, set the sphere center point to 2.5 1 1
  • In the Shape Parameters section, set Radius to 0.1
  • Alter the various angle settings if you do not want a full sphere

By default, the sphere is aligned to the current view, if the alignment is important, you can change it using the various buttons in the Mode section.

Quote:
The geometry I actually created is a channel flow, with a spherical portion removed from it (using a boolean operation). May be that would have been the issue?
I don't think so. STEP and Pointwise are capable of handling closed solid bodies with internal holes (swiss cheese).
nilanka likes this.
dgarlisch is offline   Reply With Quote

Old   September 7, 2017, 03:34
Default
  #7
New Member
 
Nilanka Ekanayake
Join Date: Jun 2017
Posts: 9
Rep Power: 8
nilanka is on a distinguished road
Thank you.

Again, If I need to create a sphere with a 0.0001 radius (in m scale directly) how to do it since the minimum allowable length is 0.002. Anything to do with the tolerance?

Another problem related to boundary layer thickness adjustment in T-Rex. I would like to have different meshes with several boundary layers. But when I apply T-rex for the block, I am not sure which parameters that I should use to vary those. The Max. Layers/Full layers didn't help me much to specify the required boundary layer thickness.

Compressed .pw that I am working is exceeding the size, hence uploaded the STEP file that I am using.
Attached Images
File Type: png boundary_layer.png (30.4 KB, 10 views)
Attached Files
File Type: zip 0_channel_halfsphere_new.step.zip (4.6 KB, 4 views)
nilanka is offline   Reply With Quote

Old   September 7, 2017, 11:01
Default
  #8
Senior Member
 
David Garlisch
Join Date: Jan 2013
Location: Fidelity Pointwise, Cadence Design Systems (Fort Worth, Texas Office)
Posts: 307
Rep Power: 14
dgarlisch is on a distinguished road
As with all computer floating point calculations, there is a finite dynamic range that can be represented internally before numerical round off errors start to erode the integrity of calculations. For Pointwise, this range is around seven orders of magnitude. That is, to get meaningful calculations:
SmallestValue >= LargestValue / 10e7
Pointwise has a setting called Model Size that defaults to 1000 units. So the smallest value would be around 1000/10e7 == 0.0001. The Model Size drives the precision supported for all grid and database options.

However, it doesn't stop there. In a typical mesh, the grid entities are usually several orders of magnitude smaller than the database surfaces they are attached to! So, to help prevent unintended numerical problems, various values (such as sphere radius) are limited (in the GUI only) to ranges compatible with the Model Size. To be specific:
  • The minimum dimension/radius in draw shapes is 2x the fit tolerance
  • The fit tolerance is 10x the same point tolerance

For most applications the default works fine. However, if your grid is going to have "very small" details such as a sphere with a 0.0001m radius, or very small initial grid spacing, the Model Size will need to be adjusted to a smaller value.

The Model Size will need to be set to 10.0 or less to get the numerical precision necessary for a radius of 0.0001.

It will also help overall precision, if you keep all database and grid entities centered around the global origin as much as possible. Building a mesh centered at (10e3, 10e3, 10e3) will waste numerical precision.

The Model Size value should be set BEFORE any grid or database entities are created or imported using File, Properties....

Also, there are Model Size options available when CAD file is imported into an empty file. Please see the user manual or GUI help for details.

I hope this helps.

Last edited by dgarlisch; September 7, 2017 at 15:12.
dgarlisch is offline   Reply With Quote

Old   September 7, 2017, 11:03
Default
  #9
Senior Member
 
David Garlisch
Join Date: Jan 2013
Location: Fidelity Pointwise, Cadence Design Systems (Fort Worth, Texas Office)
Posts: 307
Rep Power: 14
dgarlisch is on a distinguished road
As for your TRex questions, I will leave that to the grid experts on this forum. A club of which I am not a member.
dgarlisch is offline   Reply With Quote

Old   October 26, 2023, 10:16
Default problem while importing step files in pointwise
  #10
New Member
 
Join Date: Mar 2023
Posts: 1
Rep Power: 0
Guzu is on a distinguished road
I am trying to mesh my model using pointwise. But when I import it in pointwise, the pointwise couldn't import all surfaces of my model. (Its the aircraft model and the pointwise couldn't import the surface around pod). Is here anyone who can help me to solve this problem?
Guzu is offline   Reply With Quote

Reply

Tags
importing step files, pointwise


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Importing STL/STEP files, un-mesh? Miaoush ANSA 7 October 3, 2019 03:39
Importing multiple P3D grid files into Pointwise gsh Pointwise & Gridgen 6 January 27, 2017 18:34
importing blender files didn't work Marv enGrid 2 August 30, 2014 05:37
[General] Importing 1D Tecplot files to Paraview with Zones results in NA weirdtunguska ParaView 2 July 18, 2013 11:01
Importing mesh files from Ansys into Gambit Srinivas FLUENT 2 August 6, 2002 10:02


All times are GMT -4. The time now is 15:14.