- UGII_CLOSE_UNDO_MODE=CHECK
Friday, April 25, 2008
Undo memory management
Thursday, April 24, 2008
2008 Customer survey for NX
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