I want to create a text file with the volumes and material properties of all the components in my model.
I'm using this code to extract the volume:
*createmark solids 1 all set solid_list [hm_getmark solids 1] foreach solid $solid_list { *createmark solids 1 $solid set vol [hm_getvolumeofsolid solid $solid] puts '$vol' }
How can I extract the density (rho), modulus of elasticity (E), and Poisson's ratio (nu) from my components?
Thanks.