How to export ifc4 with multilayer walls parameter ? #130
-
I need to export a file.ifc4 with multilayer walls parameter. In the user interface it is possible but i like to do it with the BIM-Controller. |
Beta Was this translation helpful? Give feedback.
Answered by
Brunner246
Mar 1, 2024
Replies: 1 comment 1 reply
-
Hi, The options for the multilayer wall are not implemented yet. But we can add them. General usage example import cadwork
import bim_controller
import element_controller
ifc_options = bim_controller.get_ifc_options() # or create an empty object => cadwork.ifc_options()
ifc_options_lod = ifc_options.get_ifc_options_level_of_detail()
ifc_options_lod.get_cut_drillings()
ifc_options_lod.set_cut_drillings(True)
ifc_options_lod.get_cut_drillings()
ifc_options_lod.set_export_vba_drillings(True)
ifc_options_lod.set_export_vba_components(True)
element_ids = element_controller.get_active_identifiable_element_ids()
bim_controller.export_ifc4_silently_with_options(element_ids, r"C:\Users\Doe\Downloads\test.ifc", ifc_options) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
voja5
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
The options for the multilayer wall are not implemented yet. But we can add them.
General usage example