hexagon logo

I am working on Sol111 analysis, i want to extract the mass of the selected elements in F06 or op2 file . Which control need to define in FE deck or is there any other procedure to extract the mass of selected elements in output. Thanks.

I am working on Sol111 analysis, i want to extract the mass of the selected elements in F06 or op2 file .
Which control need to define in FE deck or is there any other procedure to extract the mass of selected elements in output.
Thanks.
Parents
  • Hi Venkatesh,
    you can use statements like below:
    SET 99 = 23,28,30,40,THRU,48
    ELSUM(EIDSUM)=99
     
    Set 99 is a group of elements id's, it is referencing to ELSUM case-control entry. EIDSUM can ensure that you are getting only a summary of masses of a group of elements in set 99
     
    If the number of elements is high, then use the pre-processor to create the SET
    This output is only available in f06
Reply
  • Hi Venkatesh,
    you can use statements like below:
    SET 99 = 23,28,30,40,THRU,48
    ELSUM(EIDSUM)=99
     
    Set 99 is a group of elements id's, it is referencing to ELSUM case-control entry. EIDSUM can ensure that you are getting only a summary of masses of a group of elements in set 99
     
    If the number of elements is high, then use the pre-processor to create the SET
    This output is only available in f06
Children
No Data