Bentley Communities
Bentley Communities
  • Site
  • User
  • Site
  • Search
  • User
  • Welcome
  • Products
  • Support
  • About
  • More
  • Cancel
AutoPLANT | AXSYS | OpenPlant | PlantWise
  • Product Communities
  • More
AutoPLANT | AXSYS | OpenPlant | PlantWise
AutoPLANT | AXSYS | OpenPlant | PlantWise Wiki How to Calculate BOP (Bottom Of Pipe) in OpenPlant Modeler
    • Sign in
    • -Plant Design and Engineering - Wiki
      • OpenPlant Product Compatibility
      • +CONNECT Services - OpenPlant
      • +OpenPlant Modeler CONNECT
      • +OpenPlant PID CONNECT
      • +OpenPlant Isometrics Manager CONNECT
      • +OpenPlant Orthographics Manager CONNECT
      • +OpenPlant Support Engineering CONNECT
      • +OpenPlant Project Administrator CONNECT
      • -OpenPlant Modeler v8i
        • +Component - OpenPlant Modeler
        • +Drawing Generation- OpenPlant Modeler
        • +Errors, Logs, Messages, Crashes - OpenPlant Modeler
        • +Import/Export- OpenPlant Modeler
        • +Installation - OpenPlant Modeler
        • +OpenPlant HVAC-OpenPlant Modeler
        • OpenPlant Modeler [FAQ]
        • +OpenPlant Specification Generator
        • +ProjectWise - OpenPlant Modeler
        • +Properties - OpenPlant Modeler
        • +Release Notes - OpenPlant Modeler
        • -Schema - OpenPlant Modeler
          • +Fundamentals - Basics of Class Editor Schemas
          • How to Add a New Category with a Pull Down in from Class Editor
          • How to Add Custom Associated Items As Root Nodes In The Item Browser
          • How to Add Existing/New Equipment Class in Custom Component Builder
          • How to add FUSION_WELD joint in OPM
          • How to Add New Class on Notes in OpenPlant Modeler
          • How to Add New Insulation Material in OpenPlant Modeler
          • How to Calculate BOP (Bottom Of Pipe) in OpenPlant Modeler
          • How to Create a Custom Joint
          • How to Define Default Weld Type
          • How to Get Customized Bend Point Radius Data in OpenPlant Modeler
          • +How to Make PLANT_AREA a Non-Graphical Root Object
          • How to Manage Joints with Different End Preparations
          • How to Populate Project Name on EC Property
          • How to Use Display Label as Property Value in OpenPlant Modeler
          • Moving from OPM SS5 Refresh (383) to OPM SS5 Refresh (404) in standalone mode
          • To Add Plate Type Flange Class Component in OpenPlant Modeler
          • To Customize Equipment Tag Name in OpenPlant Modeler
        • +Settings/Attributes - OpenPlant Modeler
        • +Structural Modeling Components (SMC)- OpenPlant Modeler
        • +Tasks - OpenPlant Modeler
        • +Training - OpenPlant Modeler
      • +OpenPlant Isometrics Manager v8i
      • +OpenPlant Project Administrator v8i
      • +OpenPlant PID v8i
      • +OpenPlant Orthographics Manager v8i
      • +OpenPlant Support Engineering v8i
      • +OpenPlant ModelServer v8i
      • +OpenPlant Reporting v8i
      • +Bentley AutoPLANT
      • +Bentley Navigator
      • +Bentley PlantSpace
      • +Plant Project Tools
    • i-model Composition Service for S3D

     
     Questions about this article, topic, or product? Click here. 

    How to Calculate BOP (Bottom Of Pipe) in OpenPlant Modeler

    Applies To

    Product(s):

    OpenPlant Modeler

    Version(s):

    08.11.11.xxx

    Environment:

    Windows 7/8.1/10 (64 bit)

    Area:

    Properties

    Subarea:

    Original Author:

    Harpreet Singh, Bentley Product Advantage Group

    Background

    Bottom of Pipe (BOP) is often needed by designers to know the elevation at which the pipe wall ends/starts.

    CASE 1: To calculate the BOP

    For this first we need to add calculated property in the schemas under Class PIPE which will calculate the Bottom of Pipe automatically based on the formula Z-OD/2-Insulation thickness.

    Where Z=Elevation of pipe centerline
                OD= Outside Diameter of pipe

    CASE 2: To calculate the BOP at the location of Support

    At times the user might want to know the BOP at the point where a support has been placed on the pipe.

    Depending on user requirement if there is an insulation on Pipe, user might want to consider reducing the value of BOP at support’s location with a fixed value like 100 instead of the actual value of insulation thickness.

    The formula to be used in this case would be Z-OD/2-100

    If there is no insulation the formula to be used would be Z-OD/2

    Where, Z=Elevation of pipe centerline on which support is placed
                OD= Outside Diameter of pipe|

    CASE 1: Calculation of Bottom Of Pipe (BOP)

    Steps to Accomplish

    User need to map Pipe OD from the spec to OUTSIDE_DIAMETER property on PIPE class, as it is not mapped by default:

    1. Open OpenPlant_CustomAttributes.08.11 schema in class editor.



    2. Open OpenPlant_3D.01.07 schema & supplement it with OpenPlant_3D_Supplemental_Modeling.01.07 schema.



    3. Go to PIPE class and select its OUTSIDE_DIAMETER property (If it is Overridden - Click on Override).

    4. Add a custom attribute OPENPLANT_PHYSICAL_CATALOGUE_PROPERTY_MAP on this property.




    5. Add PIPE_OD_M in property name field as shown below in the picture.



      Assuming the Horizontal Pipe:

    1. Add a new Property BOP_M on PIPE class.

    2. Add custom attribute ‘Calculated ECProperty Specification’ on it.




    3. Add this expression as shown below in the picture:

      ((this.TRANSFORMATION_MATRIX.M11/1000 - this.OUTSIDE_DIAMETER/2 - this.INSULATION_THICKNESS)+0.5)\1



         4.  Save the changes in schema and verify the results in OpenPlant Modeler


               Note that in all calculations 1000 is hardcoded value, which should be changed to the current UOR used in your dgn files/project. 1000 per millimeter is default for a Metric project.

    CASE 2: Calculation Of Bottom Of Pipe (BOP) at the location of Support

    Steps to Accomplish

    First user needs to map Pipe OD from the spec to OUTSIDE_DIAMETER property on PIPE class, as it is not mapped by default:

    1. Open OpenPlant_CustomAttributes.08.11 schema in class editor.

    2. Open OpenPlant_3D.01.07 schema & supplement it with OpenPlant_3D_Supplemental_Modeling.01.07 schema.

    3. Go to PIPE class and select its OUTSIDE_DIAMETER property.

    4. Add a custom attribute OPENPLANT_PHYSICAL_CATALOGUE_PROPERTY_MAP on this property.

    5. Add PIPE_OD_M in property name field as shown below in the picture.



      Once OUTSIDE_DIAMETER is mapped with PIPE_OD_M,

    6. Go to Support Class --> Properties --> Add a Property named BOP

      Make Sure the property BOP is of type 'String'

    7. Add custom attribute ‘Calculated ECProperty Specification' on it.

    8. Add this expression as shown below in the picture:

      IIF(this.GetRelatedInstance("DEVICE_HAS_SUPPORT:1:PIPING_COMPONENT").INSULATION_THICKNESS>"0", (this.TRANSFORMATION_MATRIX.M11/1000)-(this.GetRelatedInstance("DEVICE_HAS_SUPPORT:1:PIPING_COMPONENT").OUTSIDE_DIAMETER)/2-100,(this.TRANSFORMATION_MATRIX.M11/1000)-(this.GetRelatedInstance("DEVICE_HAS_SUPPORT:1:PIPING_COMPONENT").OUTSIDE_DIAMETER/2))



    9. Save All Changes. Launch OpenPlant Modeler to Verify Result.


              

              Note- In all calculations 1000 is hardcoded value, which should be changed to the current UOR used in your dgn files/project. 1000 per millimeter is default for a Metric project. 

    See Video

    • OpenPlant Modeler
    • Show
    • calculate
    • Customization
    • Bottom Of Pipe
    • BOP
    • Share
    • History
    • More
    • Cancel
    • Harpreet Singh Created by Bentley Colleague Harpreet Singh
    • When: Mon, Apr 14 2014 8:31 AM
    • Jaya Tiwari Last revision by Jaya Tiwari
    • When: Thu, Jun 28 2018 7:06 AM
    • Revisions: 13
    • Comments: 2
    Anonymous
    Parents
    • Harpreet Singh
      Offline Harpreet Singh over 3 years ago

      Hi Dominic,

      Transformation Matrix position M11 refers to Z coordinate (Elevation) of pipe centerline. You can also check this in the Miscellaneous Category in element information dialog.

      Regards,

      Harpreet

      • Cancel
      • Up 0 Down
      • Reply
      • More
      • Cancel
    Comment
    • Harpreet Singh
      Offline Harpreet Singh over 3 years ago

      Hi Dominic,

      Transformation Matrix position M11 refers to Z coordinate (Elevation) of pipe centerline. You can also check this in the Miscellaneous Category in element information dialog.

      Regards,

      Harpreet

      • Cancel
      • Up 0 Down
      • Reply
      • More
      • Cancel
    Children
    No Data
    Recommended
    Related
    Communities
    • Home
    • Getting Started
    • Community Central
    • Products
    • Support
    • Secure File Upload
    • Feedback
    Support and Services
    • Home
    • Product Support
    • Downloads
    • User Management
    • Licensing Manager
    Training and Learning
    • Home
    • About Bentley Institute
    • My Learning History
    • Reference Books
    Social Media
    •    LinkedIn
    •    Facebook
    •    Twitter
    •    YouTube
    •    RSS Feed
    •    Email

    © 2019 Bentley Systems, Incorporated  |  Contact Us  |  Privacy |  Terms of Use  |  Cookies