Exporting PCF Files From Revit 2018 - Revit Official Blog
Exporting PCF Files From Revit 2018 - Revit Official Blog
Exporting PCF Files From Revit 2018 - Revit Official Blog
(5) Save 1 0
Revit 2018.0 has the ability to generate Piping Component Files (PCF) files from
fabrication level of detail piping models using a simple macro. PCF files are used
in the piping industry to automate a variety of process, such as stress analysis,
generation of documentation (such as isometrics), and even to automate shop
equipment.
The PCF creation engine in Revit 2018 is the same as what was historically in
Autodesk Fabrication CADmep, and used by some users to generate isometrics. As
long as you are using Fabrication (ITM) based piping components in Revit, you can
use a relatively simple macro to output the PCF file, which will include the pipe,
fittings, valves, and hangers. There are some limitations in our current output, for
example, we’re not presently outputting fluid information or pipe wall thickness.
Macro Creation
1. On the Manage tab > Macro panel > click Macro Manager.
2. In the Macro Manager window:
Select the Application tab.
On the right side, under Module, click Create.
3. In the Create a New Module window:
Enter the name MyPipingUtilities
Leave the Language as C#.
Click OK.
4. In the Macro Manager window:
On the right side, under Module, click Macro
5. In the Create a New Macro window:
1. Enter the name ExportSelectionToPCF
2. Click OK.
6. The SharpDevelop macro editing environment will open.
You are now ready to write the associated code.
1. Between the curly braces, copy and paste the following code:
Autodesk.Revit.DB.Fabrication.FabricationUtils.ExportToPCF(
this.ActiveUIDocument.Document,
this.ActiveUIDocument.Selection.GetElementIds().ToList(),
"C:\\temp\\somefile.pcf");
That’s it! One line of code (well, four lines to improve readability).
Sample Result
Once you have the PCF file generated, you can try it out in your targeted workflow.
I used the Plant 3D PCF to ISO feature to generate a single line isometric.