Hi all! New to the forum and need your help. I'm new to PROE but have been given the task of trying to automate the design. Read a lot on pro/program so I know the basics. I've been scratching my head on this one for couple of days already. I'll keep this short as possible.
I have sub assembly called "inboard_housing"
another sub assembly called "rotor"
Than I have a assembly called "seal" which consist of the two previous subassembly.
What I need to do is pass a parameter from the assembly to the subassembly.
This is just some of the parameter I need.
INPUT
MOUNT_TYPE NUMBER
"MOUNTING FASTENER TYPE (1=STUDS, 2=HEX_BOLT, 3=SOCKET_CAP)"
PURGE_NUM NUMBER
"NUMBER OF PURGE (2=TWO, 3=THREE, 4=FOUR)"
SHAFT_OD NUMBER
"Shaft dia?"
END INPUT
RELATIONS
END RELATIONS
EXECUTE PART INBOARD_HOUSING
MOUNT_TYPE = MOUNT_TYPE
PURGE_NUM = PURGE_NUM
SHAFT_OD = SHAFT_OD
END EXECUTE
I needed to pass those parameter to both subassembly. I'm not exactly sure what i need to put in the subassembly, part or Assembly. I can make it work if I put the parameter in the subassembly but when I regenerated at the assmebly it prompt me for inboard_housing parameter than it promt me for rotor asking for the same parameter for both subassembly. I just want it to prompt me once since they are the same parameter. Thank You for Your assistance.
I have sub assembly called "inboard_housing"
another sub assembly called "rotor"
Than I have a assembly called "seal" which consist of the two previous subassembly.
What I need to do is pass a parameter from the assembly to the subassembly.
This is just some of the parameter I need.
INPUT
MOUNT_TYPE NUMBER
"MOUNTING FASTENER TYPE (1=STUDS, 2=HEX_BOLT, 3=SOCKET_CAP)"
PURGE_NUM NUMBER
"NUMBER OF PURGE (2=TWO, 3=THREE, 4=FOUR)"
SHAFT_OD NUMBER
"Shaft dia?"
END INPUT
RELATIONS
END RELATIONS
EXECUTE PART INBOARD_HOUSING
MOUNT_TYPE = MOUNT_TYPE
PURGE_NUM = PURGE_NUM
SHAFT_OD = SHAFT_OD
END EXECUTE
I needed to pass those parameter to both subassembly. I'm not exactly sure what i need to put in the subassembly, part or Assembly. I can make it work if I put the parameter in the subassembly but when I regenerated at the assmebly it prompt me for inboard_housing parameter than it promt me for rotor asking for the same parameter for both subassembly. I just want it to prompt me once since they are the same parameter. Thank You for Your assistance.