hexagon logo

I am trying to modify a property (without changes) and looking to get the last string for application region. I know it most likely is a solid but cannot find the PCL for it.

It is related to changing the analysis preference and then the export to other solver fails.
This requires that a huge amount (1500 in this model) of properties have to go through the process of modify+apply (no changes)
Parents
  • Hi,
    I was thinking about an easy way to filter that list but came up with nothing elegant.
    Another way to do this and maybe this is an easier way to implement:
    string appreg[virtual]
    string prop_names[32](1)
    integer nprops
    prop_names(1)="stuf"
    $ that name stuf is my property set name
    nprops=1
    list_create_ent_att_ep_name(nprops,prop_names, 3, ["Curve","Surface","Solid"], appreg)
     
    to get the "geometry" and for FEM Elements
    list_create_ent_att_ep_name(nprops,prop_names, 1, ["Element"], appreg)
     
    cheers
    Arthur
Reply
  • Hi,
    I was thinking about an easy way to filter that list but came up with nothing elegant.
    Another way to do this and maybe this is an easier way to implement:
    string appreg[virtual]
    string prop_names[32](1)
    integer nprops
    prop_names(1)="stuf"
    $ that name stuf is my property set name
    nprops=1
    list_create_ent_att_ep_name(nprops,prop_names, 3, ["Curve","Surface","Solid"], appreg)
     
    to get the "geometry" and for FEM Elements
    list_create_ent_att_ep_name(nprops,prop_names, 1, ["Element"], appreg)
     
    cheers
    Arthur
Children
No Data