从 IFC 转换为 SVF 后,IfcOpeningElements 在 Autodesk Forge 中可用吗?

Are IfcOpeningElements available in Autodesk Forge after conversion from IFC to SVF?

我关注了View your models tutorial. IFC to SVF conversion works reasonably well. However, some essential elements are missing after conversion for construction. According to another SO question IfcSpaces are ignored but the the wish is already known to the development team.

很遗憾,我找不到任何关于职位空缺和 SVF 的信息。因此,转换也会忽略 IfcOpeningElements 吗?

谢谢。

Forge 模型衍生服务从设计文件中提取“常见几何类型”,rooms/spaces 显然不在该组中。工程团队不断根据客户需求添加对额外提取数据的支持(例如,有一个 new option for extracting Revit rooms),因此如果有多个客户也要求 IfcOpeningElement,我们将进行调查。

同时,请注意,对于模型衍生服务输出中遗漏的任何 IFC 数据,您始终可以将设计自动化服务与 Revit 结合使用并自行提取此数据。

Forge 在输出的高级选项中引入了一个用于翻译带有空格和打开元素选项的文件的新功能:https://forge.autodesk.com/en/docs/model-derivative/v2/reference/http/job-POST/ 在 'SVF Output Case 1: Input file type is 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。