Matrix Browser

Punith
Punith Altair Community Member
edited October 2020 in Community Q&A

Hello all,

I need a help regarding Matrixbrowser. I am not able to get the area of the surfaces in Matrixbrowser. I see that area can be calculated only based on elements. Any inputs or alternative options available on this. Please help me.

 

Thanks and regards,

Punith

Answers

  • tinh
    tinh Altair Community Member
    edited February 2019

    Can you tell purpose of matrix browser?

  • Punith
    Punith Altair Community Member
    edited February 2019

    @tinh Hello Tinh its a tool from Altair to run the scripts with excel compatibility. With this tool you can organize your components and model and quickly run the simulation. 

  • tinh
    tinh Altair Community Member
    edited February 2019

    Do you have any demostration clip?

  • Punith
    Punith Altair Community Member
    edited February 2019

    you can find it in youtube.

  • tinh
    tinh Altair Community Member
    edited February 2019

    because surfaces do not have data name 'area', so you must calculate it.

    populate a column with data name 'surfaces'

    create a user data with type 'procedure' and calculate area as:

     

     set col_data {}  foreach surf_list [::MatrixBrowser::getColumn surfaces] {      set area 0      foreach surf_id $surf_list {set area [expr $area+[hm_getareaofsurface surfs $surf_id]]}      lappend col_data $area  }  return $col_data