我遵循了View your models tutorial。 IFC到SVF的转换效果很好。但是,转换为构造后,缺少一些必要的元素。另据SO question称,IfcSpaces被忽略,但wish is already known to the development team。
不幸的是,我找不到关于开孔和SVF的任何信息。因此,IfcOpeningElement也会被转换忽略吗?
谢谢。
答案 0 :(得分:0)
Forge模型衍生服务从设计文件中提取“几何的常见类型”,并且房间/空间显然不在该组中。工程团队不断根据客户需求(例如,有new option for extracting Revit rooms)增加对其他提取数据的支持,因此,如果有多个客户也要求IfcOpeningElement
,我们将进行调查。
同时,请注意,对于模型衍生服务输出中缺少的任何IFC数据,您始终可以将Design Automation服务与Revit一起使用并自己提取这些数据。
答案 1 :(得分:0)
Forge引入了一项新功能,该功能用于翻译文件,在输出的高级选项中带有空格选项和打开元素:https://forge.autodesk.com/en/docs/model-derivative/v2/reference/http/job-POST/ 在“ SVF输出案例1:输入文件类型为IFC”下查看详细说明。
为IFC文件激活了IfcSpace和IfcOpeningElement的示例请求正文:
json_encode([
'input' => [
'urn' => 'urlsafe_base64_encoded_urn'
],
'output' => [
'formats' => [[
'type' => 'svf',
'views' => ['2d', '3d'],
'advanced' => [
'conversionMethod' => 'modern', // has to be modern for new options
'buildingStoreys' => 'show', // adds IfcBuildingStoreys to model
'spaces' => 'show', // adds IfcSpace to model
'openingElements' => 'show' // adds IfcOpeningElement to model
]
]]
]
]);
编辑:根据Petr Broz的评论将's'添加到openingElements。