【问题标题】:Are IfcOpeningElements available in Autodesk Forge after conversion from IFC to SVF?从 IFC 转换为 SVF 后,Autodesk Forge 中是否可以使用 IfcOpeningElements?
【发布时间】:2020-07-22 11:19:02
【问题描述】:

我关注了View your models tutorial。 IFC 到 SVF 的转换工作得相当好。但是,在施工转换后缺少一些基本要素。根据另一个SO question IfcSpaces 被忽略但wish is already known to the development team

很遗憾,我找不到任何关于开口和 SVF 的信息。因此,IfcOpeningElements 是否也会被转换忽略?

谢谢。

【问题讨论】:

    标签: autodesk-forge ifc


    【解决方案1】:

    Forge Model Derivative 服务从设计文件中提取“通用几何类型”,而房间/空间显然不在该组中。工程团队会根据客户需求(例如,有一个new option for extracting Revit rooms)不断增加对额外提取数据的支持,因此如果有多个客户也要求IfcOpeningElements,我们会进行调查。

    同时,请注意,对于模型衍生服务输出中缺少的任何 IFC 数据,您始终可以将设计自动化服务与 Revit 一起使用并自行提取这些数据。

    【讨论】:

      【解决方案2】:

      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。

      【讨论】:

      • 请注意,它应该是openingElements,而不是openingElement。正在修复的文档中有一个错字。
      猜你喜欢
      • 2020-02-13
      • 2021-10-19
      • 2021-06-01
      • 1970-01-01
      • 2021-08-08
      • 2018-01-12
      • 2019-10-26
      • 2020-09-30
      • 1970-01-01
      相关资源
      最近更新 更多