Model.mechexportdaf#

Model.mechexportdaf(filename)#

Exports the dummy angle file for the current dummy.

The mechanism must have the enabled flag set to true for this to be possible.

Parameters:

filename (hwString) – The full name and path of the file to export.

Example#

Export the current dummy DAF file as “C:/temp/dummy.daf”#
import hm
import hm.entities as ent

model = hm.Model()

model.mechexportdaf(filename="C:/temp/dummy.daf")