Download this example as a Jupyter notebook or a Python script.


Performing a Part Impacted Substances Query#

A Part Impacted Substances Query is used to determine the substances associated with a part that are impacted by one or more defined legislations. The part record can represent either a single component, a subassembly, or a finished product, and therefore the substances can be associated with either the part record itself, or any other record that the part directly or indirectly references.

This example shows how to perform an Impacted Substance query on part records, and how to process the results.

Connecting to Granta MI#

Import the Connection class and create the connection. See the Getting Started example for more details.

[1]:
from ansys.grantami.bomanalytics import Connection

server_url = "http://my_grantami_server/mi_servicelayer"
cxn = Connection(server_url).with_credentials("user_name", "password").connect()

Building and Running the Query#

The query is assembled by providing lists of part references and legislations of interest. The query will return the substances that are present in the specified parts and are impacted by the specified legislations.

In this example, the ‘Drill’ part will be used. In contrast to the Material version of this query shown in a previous example, the Drill part does not reference any substances directly. Instead, it references sub-components, which in turn reference materials, which then reference substances. The Part Impacted Substances Query flattens all these layers of complexity and aggregates them together into a single list.

First specify some constants that contain the part and legislation references we will use.

[2]:
DRILL = "DRILL"
WING = "asm_flap_mating"
SIN_LIST = "SINList"
REACH = "Candidate_AnnexXV"

Next, import the queries module and build the query with the references in the previous cell.

[3]:
from ansys.grantami.bomanalytics import queries

part_query = (
    queries.PartImpactedSubstancesQuery()
    .with_part_numbers([DRILL, WING])
    .with_legislation_ids([SIN_LIST, REACH])
)

Finally, run the query. Passing a PartImpactedSubstancesQuery object to the Connection.run() method returns a PartImpactedSubstancesQueryResult object.

[4]:
part_result = cxn.run(part_query)
part_result
[4]:
<PartImpactedSubstancesQueryResult: 2 PartWithImpactedSubstances results>

A PartImpactedSubstancesQueryResult object contains three properties: impacted_substances_by_part, impacted_substances_by_legislation and impacted_substances. They provide different views of the impacted substances at different levels of granularity.

Results Grouped by Part#

This property is structured first as a list of PartWithImpactedSubstancesResult objects, each of which contains a dictionary of lists of ImpactedSubstance objects keyed by legislation, or a single flat list of all substances.

We can simplify the structure because we are only using Part Numbers. First, create a dictionary that maps Part Numbers to lists of substances impacted by the ‘SIN List’.

[5]:
substances_by_part = {}
for part in part_result.impacted_substances_by_part:
    part_substances = part.substances_by_legislation[SIN_LIST]
    substances_by_part[part.part_number] = part_substances

Then use the tabulate package to print a table of the substances and their quantities for the wing assembly only.

[6]:
from tabulate import tabulate

rows = [(substance.cas_number, substance.max_percentage_amount_in_material)
        for substance in substances_by_part[WING]]

print(f'Substances impacted by "{SIN_LIST}" in "{WING}"')
print(tabulate(rows, headers=["CAS Number", "Amount (wt. %)"]))
Substances impacted by "SINList" in "asm_flap_mating"
CAS Number    Amount (wt. %)
------------  ----------------
872-50-4

Results Grouped by Legislation#

This property merges the results across all parts, returning a single dictionary of legislations that contain all impacted substances for all parts.

As before, use the tabulate package to print a table of substances. This time we are including substances in all parts, but only those on the SIN List.

[7]:
part_substances_sin = part_result.impacted_substances_by_legislation[SIN_LIST]
rows = [(substance.cas_number, substance.max_percentage_amount_in_material)
        for substance in part_substances_sin]
print(f'Substances impacted by "{SIN_LIST}" in all parts (5/{len(rows)})')
print(tabulate(rows[:5], headers=["CAS Number", "Amount (wt. %)"]))
Substances impacted by "SINList" in all parts (5/80)
CAS Number    Amount (wt. %)
------------  ----------------
11113-75-0
12035-71-1
12068-61-0
12142-88-0
13775-54-7

Results as a Flat List#

This property reduces the granularity further, producing a single flattened list of substances across all legislations and for all parts.

Use the tabulate package to print a third table of substances. Because we are using the impacted_substances property, we only have one list of ImpactedSubstance objects, which covers both legislations and both the parts specified above.

[8]:
part_substances_all = part_result.impacted_substances
rows = [(substance.cas_number, substance.max_percentage_amount_in_material)
        for substance in part_substances_all]
print(f'Impacted substances across all legislations in "DRILL" (5/{len(rows)})')
print(tabulate(rows[:5], headers=["CAS Number", "Amount (wt. %)"]))
Impacted substances across all legislations in "DRILL" (5/129)
CAS Number    Amount (wt. %)
------------  ----------------
11113-75-0
12035-71-1
12068-61-0
12142-88-0
13775-54-7