Model.exportbif#
- Model.exportbif(filename)#
Exports the current database to Medina .bif format. Currently only nodes, elements, node sets and element sets are supported.
- Parameters:
filename (hwString) – The full path and file name to export to.
Example#
Export to a file named “ C:/temp / test.bif “#import hm import hm.entities as ent model = hm.Model() model.exportbif(filename="C:/temp/test.bif")