Part UploadA part from an ECAD Library can be classified into more than one part family in 3DEXPERIENCE as shown in this example XML code. Example 1: all parts coming from the ECAD library “ECAD_IC” will be multiclassified into two part families, “ASIC” from Libarary1 and “DIODE” from Libarary2, in 3DEXPERIENCE. <?xml version="1.0" encoding="UTF-8"?> <pemapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="mapping-schema.xsd" version="1.0"> <namespace> <modify value="description" name="DESCR" target="attribute.name"/> <class value="ECAD_IC"> <removeSpecialAttribute target="attribute" name="class.name"/> <setSpecialAttribute value="/Library1/IC/ASIC|/Library2/IC" name="part.interface.name"/> </class> </namespace> </pemapping> Example 2: all parts coming from the ECAD library “als” will be multiclassified into two part families, “ALS" and "ALS TEST” in 3DEXPERIENCE. An attribute check is performed. If the attribute “SymCount” with value “1” exists, then parts are classified to the 3DEXPERIENCE part family “IC." The parts are multiclassified into three part families in 3DEXPERIENCE. <?xml version="1.0" encoding="UTF-8"?> <pemapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="mapping-schema.xsd" version="1.0"> <namespace> <class value="als"> <modify value="Part" target="class.name"/> <removeSpecialAttribute target="attribute" name="class.name"/> <setSpecialAttribute value="/Libarar1/IC/ALS|Library1/IC/ALS TEST" name="part.interface.name"/> <attribute name="SymCount" value="1"> <specialAttribute name="part.interface.name" value="(Library1/IC/ALS)([|]) (Library1/IC/ALS.*)" regexpid="v"> <setSpecialAttribute value="${v.value[0]}| Library1/IC" name="part.interface.name"/> </specialAttribute> </attribute> </class> <modify value="Part Name" name="Part_Name" target="attribute.name"/> <modify value="Path" name="Path" target="attribute.name"/> <modify value="Tkl" name="Tkl" target="attribute.name"/> <modify value="Symbol" name="SymCount" target="attribute.name"/> </namespace> </pemapping> Part DownloadA part from part family in 3DEXPERIENCE an ECAD Library can be classified into more than one as shown in this example XML code. Example: all parts coming from the 3DEXPERIENCE Part Family “DIODE” will be multiclassified into two ECAD libraries, ECAD_DIODE1 and ECAD_DIODE2. <?xml version="1.0" encoding="UTF-8"?> <pemapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="mapping-schema.xsd" version="1.0"> <namespace> <modify name="ECADVALUE" value="VALUE" target="attribute.name" /> <modify name="description" value="DESCR" target="attribute.name" /> <specialAttribute value="/Library1/DIODE" name="part.interface.name"> <modify value="ECAD_DIODE1" target="class.name" /> </specialAttribute> <duplicate> <specialAttribute value="/Library1/DIODE" name="part.interface.name"> <modify value="ECAD_DIODE2" target="class.name" /> </specialAttribute> </duplicate> </namespace> </pemapping> |