Quantcast
Channel: NX Design Forum topics
Viewing all 5175 articles
Browse latest View live

How to hide part names in the motion navigator

$
0
0

Hi guys,

 

I am using NX 11 and I programed a motion simulation with animation but in the video you can still see the names of the part files (see image attached). Can someone please tell me how to hide them in the motion navogator or at least in the video? I can't seem to figure it out on my own...

 

Thanks!


Editing attributes in BOM (Parts List)

$
0
0

Hello

This functionality is in Autodesk Inventor and it is very usefull.

 Now I am using NX11 (no TC)

Can I type custom attributes for parts (or modifications) in NX from BOM, parts list?

 

It is much more convenient to type data in a BOM or parts list table than to edit these parameters in individual parts. Of course, changing the values in the parts list automatically changes the attributes in Parts.

 

I don't want to change material or mass attributes. The goal is to modify the custom attributes .

Notes, manufacture technology, supplier, status.

 

This functionality in Autodesk Inventor is very convenient.

 

sketch spline and class A surfacing

$
0
0
I have been taught many times by people in this forum to create splines outside sketcher. As I learn more and more about class A workflow, I come to understand that they are quite right and a class A guy generally avoids using sketcher for creating splines. 
 
Is this understanding correct? 
 
And what is the right time to create a spline in sketcher? (If this is a very silly question, please simply ignore it.)
 
Thanks for your comments!

reference curves vs. non-ref curves

$
0
0
In sketcher, curves can be set as "reference curves" and then displayed in a difference way. And each sketch has a setting option "Display Reference Curves".
 
In NX documentation, it is stated that "Downstream commands do not use reference curves."
 
But I find that in fact reference curves CAN be used by downstream commands (shown in the image below).
 
What's the key difference between reference curves and non-reference curves in sketch?
 
Thanks!
 
Image.png

backup NX settings completely

$
0
0
In a previous thread, many people contributed almost complete information on Preferences and Customer Defaults.
 
This post is about backup NX settings completely.
 
In my daily work I often save and backup the role file, which contains all my interface settings.
 
And I know that all the "part-specific" settings are stored in specific part files, and need not to be worried about.
 
Is there a reliable way to backup all the other NX settings, including "session-specific" settings and those stored in Windows registry?
 
I can think of exporting the Windows registry node "HKEY_CURRENT_USER\Software\Unigraphics Solutions\NX\11.0" and re-importing the exported registry file in the future. Is this a reliable way to restore all the other settings?
 
Thanks!

"Dynamic Update Mode > Continuous" fails?

$
0
0
As shown below, Line_2 starts from the the end of Line_1.
 
During the process of editing Line_1, I expect Line_2 to move dynamically along with the end of Line_1
But in fact, Line_2 only updates after I ok the Line_1 editing dialog.
 
Is my understanding of "Dynamic Update Mode > Continuous" wrong? Or do I miss something important?
 
Thanks!
 
Image.png

Image.png
 
Image.png

Dynamic Update Mode > Continuous

$
0
0
As shown below, Line_2 starts from the the end of Line_1.
 
During the process of editing Line_1, I expect Line_2 to move dynamically along with the end of Line_1
But in fact, Line_2 only updates after I ok the Line_1 editing dialog.
 
Is my understanding of "Dynamic Update Mode > Continuous" wrong? Or do I miss something important?
 
Thanks!
 
Image.png

Image.png
 
Image.png

expression types: Point, Vector, List

$
0
0
Measure Length produces a Length expression, which can be directly used in other expressions.
 
Measure Point produces a Point expression.
 
Q1: How can I use the Point expression, e.g. extracting the X/Y/Z?
 
Q2: Where can I find more information on the expression types PointVector and List?
 
Thanks!
 
Image.png
 
Image.png

create a point in a datum CSYS associatively

$
0
0

I attempted to create a point in a datum CSYS associatively, but failed:

 

  1. create "myCSYS" at "point.0"
  2. set "myCSYS" as WCS
  3. create "point.1" by specifying XC/YC/ZC

How can I do it? Thanks!

 

Image.png

 

Image.png 

 

Image.png

Turn off auto dimensioning?

$
0
0

While in the Sketch Task Environment, and with "Continuous Auto Dimensioning" off, I've noticed that NX will still generate a dimension for an entity (like a line) if I type in a length value. If I don't type a value, it doesn't do that.  Is this normal behavior? Is there a way to disable it, if I want?  Thanks.

move a point as moving a pole in Studio Spline?

$
0
0
Studio Spline provides great capability of handling spline poles in 3D space.
 
Is it possible to devise certain workaround to move a Point feature in a similar way?
 
Thanks!
 
Image.png

Computer updated how to set the license ?

$
0
0

Hello

3 year computer leasing ended again and I'm now with a new PC Win10 (from Win7).

How to set NX license to the new computer from environment variables or so ?

TC launches normally.

 

NOLICENSES.jpg

Export STEP from NX 12

$
0
0

Hallo to all,

 

i have a problem with exporting a STEP data from NX.

 

What i do is, export, STEP (214), and when everything is done, when i try to import STP data, one part of the assembly is missing. Could someone help my with this problem?

 

I would really appreciate any kind of help!

 

Best regards,

Milica

Edit of the balloon type

$
0
0

Hi,

after inserting the balloon, it's not more possible to edit the form type. Also on NX12.

Exist an ER to be addressed?

Part Family Attributes in Assembly Instance

$
0
0

Hello,

So, I have a part family component with a few user attributes as follow:
attrs.JPG

 

My idea is read and change those parameters for each instance in one assembly. 
First I have the following journal to read those attributes, but I don't know why it's not working. What i'm doing wrong?

Inherited parameters like TOOL_ID I can read with no problem, but custom ones shows as "not existent"

Option Strict Off
Imports System
Imports System.Collections.Generic
Imports System.Windows.Forms
Imports NXOpen
Imports NXOpen.UF
Imports NXOpenUI
Module NXJournal
Sub Main
Dim theSession As Session = Session.GetSession()
Dim workPart As Part = theSession.Parts.Work
Dim displayPart As Part = theSession.Parts.Display
Dim lw As ListingWindow = theSession.ListingWindow
Dim mySelectedObject As NXObject
Dim answer,answer2 As String
lw.Open
'Continue prompting for a selection until the user
'  presses Cancel or Back.
'SelectComponent
answer = ""
answer2 = "" 
Do Until SelectComponent("Hey, select something", _
                       mySelectedObject) = Selection.Response.Cancel

	Dim attributeName As New List(Of String) 

	 attributeName.Add("TOOL_ID")
	attributeName.Add("THD_SIZE/P")
	attributeName.Add("STD_SCR_LG")
	attributeName.Add("DB_PART_NO")
	attributeName.Add("DB_PART_DESC")
	attributeName.Add("C_id")
	attributeName.Add("C_angle")
	attributeName.Add("C_diam")
	attributeName.Add("C_state")
	attributeName.Add("C_stk")
	attributeName.Add("C_valve")
	attributeName.Add("S_id")
	attributeName.Add("S_type")
	attributeName.Add("S_size")
	attributeName.Add("S_model")	

      	Dim attributeInfo As New List(Of String)

		 
dim i as integer 

	for each atri as String in attributeName	
		i= attributeName.IndexOf (atri)
  	Try 
 		attributeInfo.Add(mySelectedObject.GetUserAttribute(attributeName(i), NXObject.AttributeType.String, -1).StringValue)
		lw.WriteLine(attributeName(i) & ": " & attributeInfo(i))

	Catch ex As Exception
		lw.WriteLine("The following attribute doesn't exist: " & atri)
	End Try
	next

Loop
 
lw.Close
 
End Sub

 
Function SelectComponent(ByVal prompt As String, ByRef selObj as TaggedObject) As Selection.Response
 
	Dim theUI as UI = UI.GetUI
	Dim theUfSession As UFSession = UFSession.GetUFSession()
	Dim title As String = "Select a component"
	Dim includeFeatures As Boolean = False
	Dim keepHighlighted As Boolean = False
	Dim selAction As Selection.SelectionAction = Selection.SelectionAction.ClearAndEnableSpecific
	Dim cursor As Point3d
	Dim scope As Selection.SelectionScope = Selection.SelectionScope.AnyInAssembly
	Dim selectionMask_array(0) As Selection.MaskTriple
 
	With selectionMask_array(0)
		.Type = UFConstants.UF_component_type
		.Subtype = UFConstants.UF_instance_type
	End With

 	 theUfSession.Ui.SetCursorView(0)
	Dim resp as Selection.Response = theUI.SelectionManager.SelectTaggedObject(prompt, _
		title, scope, selAction, _
		includeFeatures, keepHighlighted, selectionMask_array, _
		selobj, cursor)
	If resp = Selection.Response.ObjectSelected OrElse resp = Selection.Response.ObjectSelectedByName Then
		Return Selection.Response.Ok
	Else
		Return Selection.Response.Cancel
	End If
 
End Function

End Module

Thanks in advance


Plot with HP T120 or T520 (PCL3)

$
0
0

Hi, I'm having a problem.

 

At the time of plotting with my HP T120 from the NX the printable area is reduced to 8.5x11 ", the plotter has a tray for A4 and A3 sheets as well as 24" roll loading, in any of the formats I try to print on Printable area is always the same.

 

Attached shows plotting on an A3 sheet (the drawing should enter an A4 sheet) and plotter properties and settings.

 

Some of the tests that I have already done is to modify the margins and even eliminate them, without achieving any improvement.

 

Thank you very much, and apologize if it is poorly written, eh translated the text with a Google translator.

 

 

unnamed.png1.JPG   2.JPG  3.JPG  4.JPG     7.JPG    5.JPG


6.JPG

 

offset in a datum CSYS associatively

$
0
0
In the previous thread,  taught a great technique of creating a Point by Rectangular Offset. This is really very helpful.
 
One limitation of the functionality is that, the offset direction is always based on the absolute CSYS.
 
Is there any workaround to do the offset in a spcified datum CSYS, especially a CSYS that is not parallel to the absolute CSYS?
 
I know that I can use a Pattern Geometry for later rotation of the offset objects. But it would make the model very messy.
 
Thanks for your comments!

Component States, cuts and holes created at assembly levels where they need to be....

$
0
0

Hello all!

 

I am new on here, and excited for our company to be a part of the NX community. I just got back from the great PLM world, and thought I would try this out.

 

This is a real life case of....'We could use advice' What are others doing out there for this? Here is the question and application:

 

[First let me state, we are newer to NX. We designed aircraft in the past in Creo. Regardless, this is NX, and we are hoping it handles mfg states,.....things much better in this regard.]

 

So picture a simple bracket, that has small holes in it. In the real world (mfg), this bracket is placed on a structure member, and then "match Drilled" durring final assembly on the floor, (meaning with a bigger holes), to some strut or piece of structure. That structure piece (mating piece) now also has holes in it (at that level in time). So that basically 'alters' two parts right?

 

We want to simulate this process in the CAD world. We want to have assembly level holes, or cuts to exist where they need to be AT THE LEVELthey need to be in the NX assembly. If you open the part it has smaller holes, if you open it in the context of its assembly, it has larger holes...etc. right?


So to recap:

Parts by themselves, when modeled, purchased etc in a bag, have small holes.

When we assemble, we match drill, to bigger holes (now modifying it) at a certain stage in the process.....

 

So we are looking for "Component States" and how you people out there deal with this at various levels of an assembly. We are VERY interested in ANY feedback on what peopel are doing for this. MFG states in CAD has plagued a lot of my past engineering jobs, and always had ideas that CAD, well, simply could not satisfy. So, over to you guys!  Help us out? thoughts? Techniques?

 

Thanks again ya'all!

 

Z

NX12 does plethora of drawing view updates

$
0
0

Hello everyone!

I started making a number of complex drawings with NX12 and noticed that it makes very many unncessary view updates. Practically everything I do with any view causes all other views to update. I move one of the views - all other views update. I start a Base View dialog and chage view - all views on the sheet update. I create a projected view - all views update. I haven't done drawings in NX for quite a while but I don't remember that behaviour. What's going on? Any ideas?

bug with expression?

$
0
0
Recently I'm facing a very annoying issue. Is this a bug? Thanks!
 
Image.pngget expression name   >>>   Image.pngcopy to clipboard
Image.pngedit value   >>>   image.pngtype "-", paste and press "Enter"Image.pngerror message
Image.pngok the error message, and type "-" and paste again, success
 
After this operation, pasting "p9_z" would not causing any error.
 
But if you change the "p9_z" expression to a new name, e.g. "p9_zz",  the first time pasting "p9_zz" would lead to the error message again.
Viewing all 5175 articles
Browse latest View live