🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Get unique material List,optimize material list

User: "Ajinkya Gaikwad"
Altair Community Member
Updated by Ajinkya Gaikwad

Hi,

Is there any way to get unique list of materials from available materials based on E,Rho and NU values?

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "tinh"
    Altair Community Member
    Updated by tinh

    Depends on user profile

    With optistruct profile, filter mats by attributes named: E, Nu, Rho

    Example we will filter mats have below E NU RHO:

     

     

    set E 210.0

    set NU 0.3

    set RHO 7.9e-6

    *createmark mats 1 'equal to value' \$E $E

    *createmark mats 2 'equal to value' \$Nu $NU

    *markintersection mats 1 mats 2

    *createmark mats 2 'equal to value' \$Rho $RHO

    *markintersection mats 1 mats 2

    puts 'material list = [hm_getmark mats 1]'

     

    User: "Ajinkya Gaikwad"
    Altair Community Member
    OP
    Updated by Ajinkya Gaikwad

    Thanks A lot!