*deletemassthicknesstable()

Deletes the element mass/thickness table.

Syntax

*deletemassthicknesstable ()

Type

HyperMesh Template Command

Description

Deletes the element mass/thickness table created by *populatemassthicknesstable().

This command must be inside either a *components() or *elements() block and should be called in the *after() section. It must be preceded by a call to *populatemassthicknesstable().

Example

To write out the mass of every component in the format

id,"name",mass

*components("","")
*before()
*populatemassthicknesstable()
*format()
*field(integer,id,0)
*string(",")
*field(quotedstring,name,0)
*string(",")
*field(real,mass,0)
*end()
*after()
*deletemassthicknesstable()
*output()

Version History

11.0