{"id":56,"date":"2016-04-28T01:02:59","date_gmt":"2016-04-28T01:02:59","guid":{"rendered":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/"},"modified":"2019-07-10T15:11:08","modified_gmt":"2019-07-10T15:11:08","slug":"modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings","status":"publish","type":"post","link":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/","title":{"rendered":"Modifying AutoCAD Plant 3D to allow connections with different ratings and facings"},"content":{"rendered":"<p>Recently I was asked by a customer to come up with a simple way to allow raised-faced (RF) flanges and flat-faced flanges to connect in AutoCAD Plant 3D.&#160; The way to do this is to modify the software to treat different values as being equivalent for the purposes of validating and making connections between components. Here are the steps to make these modifications:<\/p>\n<ol>\n<li>Open Project Setup within the project which is going to contain these changes<\/li>\n<li>Within Project Setup, navigate to &quot;Plant 3D DWG Settings &gt; Piping Connection Settings&quot;<\/li>\n<li>Under &quot;Simple Joints&quot; highlight the &quot;Flanged joint&quot; and select the &quot;Modify&quot; button<br \/> <a class=\"asset-img-link\" href=\"http:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201bb08ef622b970d-pi\"><img decoding=\"async\" alt=\"RF-FF1\" class=\"asset  asset-image at-xid-6a00d835007d0b69e201bb08ef622b970d img-responsive\" src=\"https:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201bb08ef622b970d-320wi\" title=\"RF-FF1\" \/><\/a>\n<\/li>\n<li>Within the&#160;&quot;Modify Joint&quot; dialog for&#160;the &quot;Flanged joint&quot;, highlight the&#160;&quot;Facing&quot; property match in the middle of the dialog and select&#160;the &quot;Matching Values&quot; button.&#160; This will allow you to specify values for the selected property&#160;that should be considered equivalent by the software.<br \/> <a class=\"asset-img-link\" href=\"http:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201b8d1d58d99970c-pi\"><img decoding=\"async\" alt=\"RF-FF2\" class=\"asset  asset-image at-xid-6a00d835007d0b69e201b8d1d58d99970c img-responsive\" src=\"https:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201b8d1d58d99970c-320wi\" title=\"RF-FF2\" \/><\/a>\n<\/li>\n<li>Next, provide the matching values that you want to specify &#8211; in this case we want the software to treat RF and FF as matching property values so input them separated&#160;with a comma and then select the &quot;OK&quot;&#160;button.<br \/> <a class=\"asset-img-link\" href=\"http:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201bb08ef62ea970d-pi\"><img decoding=\"async\" alt=\"RF-FF3\" class=\"asset  asset-image at-xid-6a00d835007d0b69e201bb08ef62ea970d img-responsive\" src=\"https:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201bb08ef62ea970d-500wi\" title=\"RF-FF3\" \/><\/a><br \/>If you wanted to allow two pressure classes to be considered equivalent (e.g ASME 125 LB and 150 LB&#160;classes) you would have selected that property and input the values &quot;125&quot; and &quot;150&quot; separated by a comma (note: a single space after the comma is acceptable).<\/li>\n<li>Now select the &quot;Modify&quot; button to close the &quot;Modify Joint&quot; dialog.<\/li>\n<\/ol>\n<p>This will now work for projects where you have the choice of FF and RF flanges, but what if your spec also has a third facing choice like ring-type joint (RTJ)?&#160;With this third facing type,&#160;you <em>do not<\/em> want it&#160;to be treated as matching with RF and FF flanges but you do want to connect with other RTJ facings. As it stands with our current customization our facings must be either RF or FF to be considered matching.&#160; To add the extra validation to allow other facings to connect we need to modify the <strong>DefaultConnectorsConfig.xml<\/strong> file located in the project&#039;s root folder.&#160; I use the &quot;firstobject XML Editor&quot; (www.firstobject.com) for editing these files and always recommend to the&#160;person modifying AutoCAD Plant 3D&#160;project configuration files&#160;to make a backup copy of the file before editing it.&#160;<\/p>\n<p><strong><em>Warning<\/em><\/strong>: if you are not comfortable editing xml files it is probably best that you perform the steps below on a non-production test project before implementing in a working environment.<\/p>\n<ol>\n<li>Open <strong>DefaultConnectorsConfig.xml<\/strong>&#160;for editing<\/li>\n<li>Find the line that reads &lt;Joint Name=&quot;Flanged&quot;&gt;, below this are the lines which define how simple flanged joints behave.<\/li>\n<li>Several lines down there is a line that begins with &lt;MatchCondition&gt; and this is the line that we will need to modify.&#160; The default line simply checks for matching conditions between the NomimalDiameter, PressureClass and Facing properties of the two components (facing property match&#160;shown in <span style=\"color: #ff0000\">red<\/span>):\n<p>&#160;&#160;&#160;<span style=\"color: #00bfbf\">&#160;&lt;MatchCondition&gt;<\/span>E1.NominalDiameter=E2.NominalDiameter AND E1.PressureClass=E2.PressureClass <span style=\"color: #ff0000\">AND E1.Facing=E2.Facing<\/span><span style=\"color: #00bfbf\">&lt;\/MatchCondition&gt;<\/span><\/p>\n<p>However, we modified this flange connection in steps 1 through 6 in the preceding section using Project Setup, so your line probably looks like this:<\/p>\n<p>&#160;&#160;&#160;&#160;<span style=\"color: #00bfbf\">&lt;MatchCondition&gt;<\/span>E1.NominalDiameter=E2.NominalDiameter AND E1.PressureClass=E2.PressureClass <span style=\"color: #ff0000\">AND (E1.Facing IN (&#039;RF&#039;, &#039;FF&#039;) AND E2.Facing IN (&#039;RF&#039;, &#039;FF&#039;))<\/span> <span style=\"color: #00bfbf\">&lt;\/MatchCondition&gt;<\/span><\/p>\n<p>Now, what we need to do is modify this line to be a hybrid of these two so that we have a conditional &quot;OR&quot; statement for the matching of the &quot;Facing&quot; property.&#160; The final conditional statement for the facing matching is shown&#160;in <strong><span style=\"color: #ff0000\">bold red<\/span> <\/strong>below (be sure to note the extra parentheses surrounding the entire statement:<\/p>\n<p><span style=\"color: #00bfbf\">&lt;MatchCondition&gt;<\/span>E1.NominalDiameter=E2.NominalDiameter AND E1.PressureClass=E2.PressureClass AND <span style=\"color: #ff0000\"><strong>((E1.Facing IN (&#039;RF&#039;, &#039;FF&#039;) AND E2.Facing IN (&#039;RF&#039;, &#039;FF&#039;)) OR E1.Facing=E2.Facing)<\/strong><\/span><span style=\"color: #00bfbf\">&lt;\/MatchCondition&gt;<\/span><\/li>\n<li>Save the DefaultConnectorsConfig.xml file but leave it open for the next steps.<\/li>\n<\/ol>\n<p>This completes the necessary modifications for a simple joint &#8211; connecting two components with a set of fasteners or a joint (like a Buttweld).&#160; Next, we need to make similar modifications to the &quot;Compound joint&quot; that is called &quot;Auto flange joint&quot;. Compound joints are used when additional components are needed to make a connection.&#160; An example of this is when you &quot;drop&quot; a flanged valve onto a section of pipe.&#160; The software evaluates the&#160;compound joint options and will insert a flange in-between the ends of the flanged valve and the pipe.<\/p>\n<ol>\n<li>With the <strong>DefaultConnectorsConfig.xml<\/strong> file still open, search within it for the line that begins with &lt;Joint Name=&quot;AutoFlange&quot;&gt;<\/li>\n<li>Look&#160;several lines below it for the line that starts with &lt;Filter&gt; and reads something like this (note the facing match condition shown again in <span style=\"color: #ff0000\">red<\/span>):\n<p>&#160;&#160;&#160;<span style=\"color: #00bfbf\"> &lt;Filter&gt;<span style=\"color: #111111\">C1.NominalDiameter=E1.NominalDiameter AND C2.NominalDiameter=E2.NominalDiameter <span style=\"color: #ff0000\">AND C1.Facing=E1.Facing<\/span> AND C1.EndType=&#039;FL&#039; AND C1.PressureClass=E1.PressureClass<\/span>&lt;\/Filter&gt;<br \/><\/span><\/li>\n<li>Modify this line so that it not only checks for equivalent&#160;facings but also allows the RF=FF condition matching for this compound joint like we had in the simple joint.&#160; Your resulting line (facing match condition shown in red) should look like this:\n<p><span style=\"color: #00bfbf\">&lt;Filter&gt;<\/span>C1.NominalDiameter=E1.NominalDiameter AND C2.NominalDiameter=E2.NominalDiameter <span style=\"color: #ff0000\">AND ((C1.Facing IN (&#039;RF&#039;, &#039;FF&#039;) AND E1.Facing IN (&#039;RF&#039;, &#039;FF&#039;)) OR C1.Facing=E1.Facing)<\/span> AND C1.EndType=&#039;FL&#039; AND C1.PressureClass=E1.PressureClass<span style=\"color: #00bfbf\">&lt;\/Filter&gt;<\/p>\n<p><\/span><\/li>\n<li>Save <strong>DefaultConnectorsConfig.xml<\/strong> and exit the XML editor.&#160;<\/li>\n<\/ol>\n<p>You will probably need to close the AutoCAD Plant 3D project and re-open it to reload the&#160;XML file and test&#160;your connections.&#160;Congratulations on successfully modifying&#160;the connection matching criteria using both the user interface (Project Setup) and by directly modifying the XML file.&#160; Note that if you make changes to these connections with Project Setup after modifying the XML file directly you may lose those changes so (again, and always) keep a backup copy of your customized files and document the changes you have made to them.<\/p>\n<p>&#160;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently I was asked by a customer to come up with a simple way to allow raised-faced (RF) flanges and flat-faced flanges to connect in AutoCAD Plant 3D.&#160; The way to do this is to modify the software to treat different values as being equivalent for the purposes of validating and making connections between components.<\/p>\n","protected":false},"author":8825,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-56","post","type-post","status-publish","format-standard","hentry","category-plant-3d"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Modifying AutoCAD Plant 3D to allow connections with different ratings and facings - In the Pipes<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Modifying AutoCAD Plant 3D to allow connections with different ratings and facings - In the Pipes\" \/>\n<meta property=\"og:description\" content=\"Recently I was asked by a customer to come up with a simple way to allow raised-faced (RF) flanges and flat-faced flanges to connect in AutoCAD Plant 3D.&#160; The way to do this is to modify the software to treat different values as being equivalent for the purposes of validating and making connections between components.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/\" \/>\n<meta property=\"og:site_name\" content=\"In the Pipes\" \/>\n<meta property=\"article:published_time\" content=\"2016-04-28T01:02:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-07-10T15:11:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201bb08ef622b970d-320wi\" \/>\n<meta name=\"author\" content=\"Joel Harris\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Joel Harris\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/\"},\"author\":{\"name\":\"Joel Harris\",\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/#\\\/schema\\\/person\\\/828af3375f9b11ff4ddd2c3693124edb\"},\"headline\":\"Modifying AutoCAD Plant 3D to allow connections with different ratings and facings\",\"datePublished\":\"2016-04-28T01:02:59+00:00\",\"dateModified\":\"2019-07-10T15:11:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/\"},\"wordCount\":1067,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/in-the-pipes.typepad.com\\\/.a\\\/6a00d835007d0b69e201bb08ef622b970d-320wi\",\"articleSection\":[\"Plant 3D\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/\",\"url\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/\",\"name\":\"Modifying AutoCAD Plant 3D to allow connections with different ratings and facings - In the Pipes\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/in-the-pipes.typepad.com\\\/.a\\\/6a00d835007d0b69e201bb08ef622b970d-320wi\",\"datePublished\":\"2016-04-28T01:02:59+00:00\",\"dateModified\":\"2019-07-10T15:11:08+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/#\\\/schema\\\/person\\\/828af3375f9b11ff4ddd2c3693124edb\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/#primaryimage\",\"url\":\"https:\\\/\\\/in-the-pipes.typepad.com\\\/.a\\\/6a00d835007d0b69e201bb08ef622b970d-320wi\",\"contentUrl\":\"https:\\\/\\\/in-the-pipes.typepad.com\\\/.a\\\/6a00d835007d0b69e201bb08ef622b970d-320wi\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/2016\\\/04\\\/28\\\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Modifying AutoCAD Plant 3D to allow connections with different ratings and facings\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/#website\",\"url\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/\",\"name\":\"In the Pipes\",\"description\":\"Tips and Tricks from the Autodesk Product Support Team\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/#\\\/schema\\\/person\\\/828af3375f9b11ff4ddd2c3693124edb\",\"name\":\"Joel Harris\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2711b24027c49f5955c58994cd2ca6fc38e831b036a7c33aba4f67e5cd9a48ae?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2711b24027c49f5955c58994cd2ca6fc38e831b036a7c33aba4f67e5cd9a48ae?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2711b24027c49f5955c58994cd2ca6fc38e831b036a7c33aba4f67e5cd9a48ae?s=96&d=mm&r=g\",\"caption\":\"Joel Harris\"},\"url\":\"https:\\\/\\\/blogs.autodesk.com\\\/in-the-pipes\\\/author\\\/joel_harrisautodesk_com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Modifying AutoCAD Plant 3D to allow connections with different ratings and facings - In the Pipes","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/","og_locale":"en_US","og_type":"article","og_title":"Modifying AutoCAD Plant 3D to allow connections with different ratings and facings - In the Pipes","og_description":"Recently I was asked by a customer to come up with a simple way to allow raised-faced (RF) flanges and flat-faced flanges to connect in AutoCAD Plant 3D.&#160; The way to do this is to modify the software to treat different values as being equivalent for the purposes of validating and making connections between components.","og_url":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/","og_site_name":"In the Pipes","article_published_time":"2016-04-28T01:02:59+00:00","article_modified_time":"2019-07-10T15:11:08+00:00","og_image":[{"url":"https:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201bb08ef622b970d-320wi","type":"","width":"","height":""}],"author":"Joel Harris","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Joel Harris","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/#article","isPartOf":{"@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/"},"author":{"name":"Joel Harris","@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/#\/schema\/person\/828af3375f9b11ff4ddd2c3693124edb"},"headline":"Modifying AutoCAD Plant 3D to allow connections with different ratings and facings","datePublished":"2016-04-28T01:02:59+00:00","dateModified":"2019-07-10T15:11:08+00:00","mainEntityOfPage":{"@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/"},"wordCount":1067,"commentCount":0,"image":{"@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/#primaryimage"},"thumbnailUrl":"https:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201bb08ef622b970d-320wi","articleSection":["Plant 3D"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/","url":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/","name":"Modifying AutoCAD Plant 3D to allow connections with different ratings and facings - In the Pipes","isPartOf":{"@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/#primaryimage"},"image":{"@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/#primaryimage"},"thumbnailUrl":"https:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201bb08ef622b970d-320wi","datePublished":"2016-04-28T01:02:59+00:00","dateModified":"2019-07-10T15:11:08+00:00","author":{"@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/#\/schema\/person\/828af3375f9b11ff4ddd2c3693124edb"},"breadcrumb":{"@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/#primaryimage","url":"https:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201bb08ef622b970d-320wi","contentUrl":"https:\/\/in-the-pipes.typepad.com\/.a\/6a00d835007d0b69e201bb08ef622b970d-320wi"},{"@type":"BreadcrumbList","@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/2016\/04\/28\/modifying-autocad-plant-3d-to-allow-connections-with-different-ratings-and-facings\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blogs.autodesk.com\/in-the-pipes\/"},{"@type":"ListItem","position":2,"name":"Modifying AutoCAD Plant 3D to allow connections with different ratings and facings"}]},{"@type":"WebSite","@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/#website","url":"https:\/\/blogs.autodesk.com\/in-the-pipes\/","name":"In the Pipes","description":"Tips and Tricks from the Autodesk Product Support Team","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blogs.autodesk.com\/in-the-pipes\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/blogs.autodesk.com\/in-the-pipes\/#\/schema\/person\/828af3375f9b11ff4ddd2c3693124edb","name":"Joel Harris","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2711b24027c49f5955c58994cd2ca6fc38e831b036a7c33aba4f67e5cd9a48ae?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2711b24027c49f5955c58994cd2ca6fc38e831b036a7c33aba4f67e5cd9a48ae?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2711b24027c49f5955c58994cd2ca6fc38e831b036a7c33aba4f67e5cd9a48ae?s=96&d=mm&r=g","caption":"Joel Harris"},"url":"https:\/\/blogs.autodesk.com\/in-the-pipes\/author\/joel_harrisautodesk_com\/"}]}},"_links":{"self":[{"href":"https:\/\/blogs.autodesk.com\/in-the-pipes\/wp-json\/wp\/v2\/posts\/56","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blogs.autodesk.com\/in-the-pipes\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blogs.autodesk.com\/in-the-pipes\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blogs.autodesk.com\/in-the-pipes\/wp-json\/wp\/v2\/users\/8825"}],"replies":[{"embeddable":true,"href":"https:\/\/blogs.autodesk.com\/in-the-pipes\/wp-json\/wp\/v2\/comments?post=56"}],"version-history":[{"count":0,"href":"https:\/\/blogs.autodesk.com\/in-the-pipes\/wp-json\/wp\/v2\/posts\/56\/revisions"}],"wp:attachment":[{"href":"https:\/\/blogs.autodesk.com\/in-the-pipes\/wp-json\/wp\/v2\/media?parent=56"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blogs.autodesk.com\/in-the-pipes\/wp-json\/wp\/v2\/categories?post=56"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blogs.autodesk.com\/in-the-pipes\/wp-json\/wp\/v2\/tags?post=56"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}