NX is now available for students with a much lower price. (~$135) Parts created with this edition will be tagged, and the 2D plots will have watermarks on it. Some commenters stated that only CAD functionalities are available, though.
Monday, January 11, 2010
NX6 Student Edition available
NX is now available for students with a much lower price. (~$135) Parts created with this edition will be tagged, and the 2D plots will have watermarks on it. Some commenters stated that only CAD functionalities are available, though.
Thursday, December 17, 2009
Loading parts from your last session when opening NX
Friday, June 26, 2009
Using revisions in native NX
assembly1__01.prt
|_mypart1234__01.prt
|_otherpart1235__01.prt
The numbering scheme here is, "partnumber__revisionID.prt"
Suppose you open mypart1234_01.prt without the assembly, and save it as mypart1234__02.prt. Normally, you would need to open the assembly, and replace the 01 revision with 02.
With the revision logic setup, if your load options say "load latest" and "allow substitution", mypart1234__02 will load automatically without doing the part replacement..
How do we set it up?
First open your customer defaults. Go to Assemblies - Site Standards - Part Name Versions.
Fill this window :
Full Part File Name Format :
([a-hj-np-z0-9A-Z]+)(__([0-9][0-9]))
Version independent section of part file name
\1
Part File Name Match
\1(__([0-9][0-9]))
Version section of the part file name match
\2
Version type
Alphanumeric
What we say here, is that the full part name (mypart1234__01) consists of any number of small/capital letters/numbers followed by a double underscore, and a 2 digit numeric revision ID. The way we say it is, "Regular Expressions", a very detailed method of specifying patterns like these.
Now that you've set your customer defaults, next step is making sure that your load options say "load latest" and "allow substitution". Also, you should not be using "As Saved". Instead, you can load from a folder or search directories.
How it works is, when you are loading the component mypart1234__02, NX knows that the part name portion is mypart1234, and the revision is 02. Listing all the parts that matches the pattern mypart1234__
It seems this functionality has been available for a long time, only to be found in the depths of your UGDOCS installation..
Monday, June 15, 2009
Hole Table functionality without the Mold Wizard license
Tuesday, March 24, 2009
Free NX CAST training access for students
I'm not sure for how long this has been available : if you are a student, you can freely access the CAST training system for NX. CAST is basically a very helpful set of tutorial based training that covers modeling, assemblies, drafting, machining, simulation, etc. (the abbreviation CAST stands for Computer Aided Self Teach)You'll need an email address that ends with ".edu", ".ed", ".ac.uk" to register:
http://castedu.ugs.com/review/freeAccess.shtml
If you're not a student, but want to get some information how to obtain CAST, here's where you can.
Existing CAST owners : here's a tool that will help you to create your own set of trainings: http://cast.ugs.com/ccb/index.shtml
Tuesday, October 7, 2008
Find out which dimensions were manually typed

This trick is from SFBMail, and is applicable to NX3 and higher.
When you give an "Information - Other - ObjectSpecific" command, you'll see that there's an option to find out 'Dimensions with Manual Text'. This way you can easily highlight dimension texts with manual text when you're reviewing a technical drawing.
Thursday, July 3, 2008
Exposing NX attributes to Windows Explorer
-Click on Start - Run... and type the following :
regsvr32 "C:\Program Files\UGS\NX 5.0\UGII\ugpropext.dll"
-You'll see that the dll has been registered successfully.
-Log off and logon again (or just end the 'explorer.exe' task and create a new one if you're as lazy as me)
I've tried this with NX4.0.4 and NX5.0.4 successfully.
Monday, June 30, 2008
NX6 is ready for download
Saturday, May 3, 2008
GRIP code library
http://www.plmworldgroups.org/grip/main_index_s.html
If you're a beginner though, it is highly suggested to have a look at the Journaling capabilities of NX with your own language preference : Visual Basic.NET, C++ or Java. For journaling, PLMWorld has a library here.
Friday, April 25, 2008
Undo memory management
Thursday, April 24, 2008
2008 Customer survey for NX
This year's voting process has begun.For those who haven't heard CIP before, it's a voting system to prioritize the Enhancement Requests for the software. If you have an active maintenance, go ahead and vote !
http://www.plm.automation.siemens.com/CIP/CIP.asp
Synchronous Technology is launched
Synchronous Technology seems to be an addition to these modeling techniques. At first it might sound like "Direct Modeling" which is already there in NX, but it actually is much more than that.
What it does is that when you make a change, the kernel examines the obvious dependencies the change will affect (like being tangent, concentric, parallel, etc) and tries to preserve them while honoring the parametric structure at the same time, thus the name `synchronous technology`.
What is the benefit ? You can for example use the section view curves to drive the model itself ! I know this sounds quite promising, but you can see this from this launch video here.
Next versions of both NX and SolidEdge will benefit from this new layer of tools, sitting on top of Parasolid and D-Cubed technology. A more technical description can be found in this white paper (registration required)
Monday, April 21, 2008
Change sketch dimensions in Drafting
What it means, is that if you change a drafting dimension of a line from 50 to 55 mm in drafting , you'll only get a warning that the associativity between the dimension and the geometry will be lost, and your line length will remain unchanged.
Normally this really is not a problem in NX, as switching between applications like modeling and drafting is quite easy. But if you are switching to NX from another CAD application, you might want to try this approach :
- set UGII_DRAFT_EXPRESSIONS_OK = 1
- create a sketch
- create a view of the model in drafting
- select Insert -> Feature Parameters command, and place the sketch dimensions into your view
- Hit CTRL + E (expressions) and select a dimension of the sketch. You'll be able to modify and update without having to go back to modeling.
Sunday, April 20, 2008
Duplicating a drawing sheet
- Save your part
- Launch `File - Export - Part`.
- Select Part Specification : Existing
- Select "Specify Part" and choose your workpart from your list.
Tuesday, April 1, 2008
Automated installation of NX5
Assuming that you have NX4 installed, and you want to install NX5.0.4, here's a sample script :
(be sure to copy / paste the text into a blank text file, as there might be autobreaks in place)
@ ---- COPY START FROM HERE
@echo off
start /wait msiexec /qn /i "D:\nx5_setup\ISScript10.msi"
echo NX4 translators are being uninstalled...
start /wait msiexec /qn /x "D:\nx4_setup\translators040\UGS NX 4.0 Translators.msi"
echo NX4 is ...
start /wait msiexec /qn /x "D:\nx4_setup\nx040\UGS NX 4.0.msi"
echo NX5 and translators are being installed...
start /wait msiexec /qn /i "D:\nx5_setup\UGS NX 5.0.msi" ADDLOCAL="all" INSTALLDIR="C:\UGS\NX5" LICENSESERVER=28000@license_server
echo Updating NX to 5.0.4 ...
cd /D D:\ugs_update0504
start /wait xcopy D:\ugs_update0504\*.* "C:\UGS\NX5" /E /F /H /Y /R >NUL
echo updating Visual C++ libraries ...
start /wait D:\ugs_update0504\vcredist_x86.exe /q:a /c:"msiexec /i vcredist.msi /qn" >NUL 2>&1
echo NX5 setup complete
pause
@ ---- COPY END HERE
Monday, February 18, 2008
Automatically execute macros on NX startup
Append -key:macroname.macro to your startup command. This might be ugii.bat, or the router itself.
Saturday, January 12, 2008
Rotate, zoom, pan with F keys
If you have an I-DEAS background and you're using NX now, this environment setting is definitely for you. Most ex-IDEAS users I've seen complain that (well they complain about a lot of things) the rotate/zoom/pan stuff in NX is 'different'. *To have the same usability, set UGII_FKEY_DYNAMICS=1, and you'll have the F1, F2, F3, F4 keys working just like they did in I-DEAS: Zoom, rotate, pan, etc.
*: If you haven't used I-DEAS before and you like these, then all I can say is that you've gone to The Dark Side.
Software Field Bulletin (SFBMail)
Just navigate to http://support.ugs.com/mailman/listinfo/sfbmail and enter your mail address to receive the updates. It's helpful to see a notification that a patch you've been waiting for is out.
NX5 on Ubuntu x64
Tuesday, January 8, 2008
Renaming components outside of NX
- Rename the part in windows
- Open the parent of this component
- Click OK for the warning saying that the component couldn't be found/loaded
- Open As.. or Substitute the component with the new one.
Instead, there's a command line utility under UGII directory called ug_edit_part_names.exe, which changes the reference of the renamed part in the parent. The good thing is that you don't need to actually load the parts to save the changes.
Suppose the assembly structure is like this :
assy
..|---part1
..|---part2
..|---part3
.......|---part3a
.......|---part3b ---> part3_renamed
If you need to rename part3b into part3_renamed ; here's the syntax :
ug_edit_part_names part3.prt -o part3.prt -change_name part3b.prt part3_renamed.prt
I must note that this tool does not rename the file itself, it merely updates the referencing parent. So you need to rename the file yourself at the O/S level.
There are some more uses;
ug_edit_part_names assy.prt -o assy.prt -upper_name will make all the components uppercase. Try ug_edit_part_names -examples for a few more usage examples including querying / changing the last known whereabouts of a component.
This could be used along with ugpc to rename components in a batch process, in case the clone assembly's renaming features are not fit for your needs.


