Logical If Statement
Logical If Statement
(OP)
Hi,
I´m trying to use a logical if statement to link arrangements in a plate modeling.
When modeling, in dimension p1, I want to have the value 5 of my square side plate if my arrangement is set to arrangement 1.
And I want the value to be 10 if my arrangement is set to arrangement 2.
Is that possible?
I´m trying to use a logical if statement to link arrangements in a plate modeling.
When modeling, in dimension p1, I want to have the value 5 of my square side plate if my arrangement is set to arrangement 1.
And I want the value to be 10 if my arrangement is set to arrangement 2.
Is that possible?





RE: Logical If Statement
Note that this will set p1=10 for any value other than 1.
RE: Logical If Statement
RE: Logical If Statement
Assuming your assembly hierarchy is set up like this:
>Assembly
>>plate
You should be able to run the journal, then create the following expression in the assembly:
Name = "plate"::p1
Formula = If(Active_Arrangement = "Arrangement 1") Then (5) Else (10)
Daniel Sikes
Design Engineer
Young Touchstone
NX 8.0.3.4
RE: Logical If Statement
RE: Logical If Statement