Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

EMN/EMP file generation from Mentor (multiple heights)

  • Thread starter Thread starter markkraz
  • Start date Start date
M

markkraz

Guest
Hey folks. We do MCAD/ECAD back and forth between the ME and PCB Layout teams and there's a specific part that would be great to see as multiple heights on MCAD import into Pro/E. What I mean is the part itself looks a bit like a set of stairs going up away from the board. I've never seen an EMP generated part created that's anything besides a simple box or a cylinder. Does anyone know if that's even possible? In the component library in Mentor there are 3 heights set in the placement outline, but only the tallest one is coming through. I know it's an export issue since the EMP file only has one height assigned.

Does anyone have any experience with this?
 
Absolutely. You need to set up an ecad_hint.map file. What this does is it maps your ecad parts to your mcad parts.

Something like this ought to be fine. Put it in a text file called ecad_hint.map in your working directory along with a model of your steps. Make sure the co-ordinate systems match: X and Y for the component base and Z pointing up. Change the variables MENTOR_EXPORT_NAME and PROE_PART_NAME. The asterisk in ECAD_ALT_NAME means to ignore that value. Change it if you want it matching.

map_objects_by_name->
ECAD_NAME "MENTOR_EXPORT_NAME"
ECAD_ALT_NAME "*"
ECAD_TYPE ""
MCAD_NAME "PROE_PART_NAME"
MCAD_TYPE "PART"
MCAD_LAYER "ECAD"
END
#
 

Part and Inventory Search

Sponsor

Back
Top