i am using below script in hypermesh 2025.1 , Abaqus as my solver profile. after running i see nothing is shown as output .
import hm
import hm.entities as ent
import prettytable as pt
model = hm.Model()
Create a collection of all properties in the model
prop_data = list()
props = hm.Collection(model, ent.Property)
Printing a table of properties and their respective material if exist
for p in props:
prop_name = property.name
prop_cardimage = property.cardimage
if prop_cardimage == "SHELLSECTION":
prop_thickness = property.TK
else:
prop_thickness = "-"
prop_data.append(
[
prop_name,
prop_id,
prop_cardimage,
prop_thickness,
]
)
tab = pt.PrettyTable(
[
"Prop Name",
"Prop Cardimage",
"Prop Thickness",
]
)
tab.add_rows(prop_data)
print(tab)
any changes to be made in the script and where i can see the API specific to abaqus solver profile