Find more posts tagged with
Sort by:
1 - 5 of
51
@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.
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
Can you tell purpose of matrix browser?