Exporting 2D sketch to the form of data points into text file in NX 7.0
Exporting 2D sketch to the form of data points into text file in NX 7.0
(OP)
thread561-272761: Exporting Splin or Curve Data Points to a text or Excel File
I'm using UGS NX 7.0 version, and I have 2D sketches that are created from intersection curves. the 2D sketches are airfoil sections for a Transonic fan that are taken from different surfaces along the span of the blade.
from this thread: http://www.eng-tips.com/viewthread.cfm?qid=272761
JohnRBaker created a program that Discretize the airfoil section into equally spaces points. I'm currently using that program to do analysis on the blade.
the problem is that I need more resolution in terms of the number of points per sketch. right now the program makes a 1000 point per sketch which is not sufficient for the type of work I'm doing.
I was wondering if anyone can help me in obtaining a program that creates a 100,000 points instead of the 1000 points per sketch
I'm using UGS NX 7.0 version, and I have 2D sketches that are created from intersection curves. the 2D sketches are airfoil sections for a Transonic fan that are taken from different surfaces along the span of the blade.
from this thread: http://www.eng-tips.com/viewthread.cfm?qid=272761
JohnRBaker created a program that Discretize the airfoil section into equally spaces points. I'm currently using that program to do analysis on the blade.
the problem is that I need more resolution in terms of the number of points per sketch. right now the program makes a 1000 point per sketch which is not sufficient for the type of work I'm doing.
I was wondering if anyone can help me in obtaining a program that creates a 100,000 points instead of the 1000 points per sketch





RE: Exporting 2D sketch to the form of data points into text file in NX 7.0
John R. Baker, P.E.
Product 'Evangelist'
Product Engineering Software
Siemens PLM Software Inc.
Industry Sector
Cypress, CA
Siemens PLM:
UG/NX Museum:
To an Engineer, the glass is twice as big as it needs to be.
RE: Exporting 2D sketch to the form of data points into text file in NX 7.0
I have adapted your program to C# as a journal. There is no limit to the number of points and users can modify/enhance it to suit their own needs.
Attached is the C# version.
Suresh
www.technisites.com.au
RE: Exporting 2D sketch to the form of data points into text file in NX 7.0
I'm wondering if you can do a modification form me ( if you have time, if you don't then don't worry about it)
the program basically asks you to choose the pressure side and the suction side. for my case, I have only one surface for each airfoil which is the combined pressure and suction surfaces. I separate the two surfaces using a simple code in Matlab
so I was hoping that you can omit the option that asks you to select the second surface, since my second surface is precisely the same as the first one. this will help as I believe in speeding up the execution time. as I said if you are busy then don't worry about it, this modification is just a matter of convenience
RE: Exporting 2D sketch to the form of data points into text file in NX 7.0
I have updated the journal to ask only single curve. You can take a look at the code and modify it as required.
Suresh
www.technisites.com.au
RE: Exporting 2D sketch to the form of data points into text file in NX 7.0
John R. Baker, P.E.
Product 'Evangelist'
Product Engineering Software
Siemens PLM Software Inc.
Industry Sector
Cypress, CA
Siemens PLM:
UG/NX Museum:
To an Engineer, the glass is twice as big as it needs to be.
RE: Exporting 2D sketch to the form of data points into text file in NX 7.0