Define Package

Sometimes spools are only a piece of the workflow. Whether it's packaging multi-trade racks or entire electrical rooms, often multiple spools need to be packaged and assembled as one. Prefab Packages makes this process seamless by allowing the user to quickly define multiple spools to a package and create deliverables right from the model. 

NOTE: The Create/Define Package's predefined selection filter can be modified via the Selection Configuration. Please see the link in the Relevant Articles below.

  1. Package Name - The value specified will be applied to all elements selected to be included in the package. While the name may be alphanumeric, it must end with a numeric value.
  2. Create Sheets(s) on Finish - If enabled, eVolve will create the sheets for the defined packages(s) on finish using the title-block defined in step 3. If disabled, the package sheets may be created within the Prefab Manager.
  3. Title Block - If Create Sheet(s) on Finish is enabled, the selected Title Block will be applied to all defined packages.
  4. Title Block Type - If applicable, this field is used to define the type of the selected title block family.
  5. Open Created Sheet(s) - if enabled, all created sheets will open after completing the session.

    NOTE: Packages may be defined and created at the same time, or they may be defined the created through the Prefab Manager.

Naming Packages

Package names may be automatically generated by utilizing the parameters of the elements contained within the package. While users can specify a value to apply to a defined package, the Package Name dialog is also a menu containing Revit and eVolve parameters. The parameters may be appended or chained together to provide a more descriptive name.

The bolded value below will generate the following spool names

Electrical Examples

  • <eE_ConduitRun_System> - <eV_LBS_Id> - 01
    • Branch - L1A-01
    • Feeder - L2B -02
    • Fire Alarm - L3C -03

Mechanical Examples

  • <eM_Service Name> - <eM_Service Type> - 01
    • Return Air 2wg - Rectangular Duct -01
    • Return Air 2wg - Rectangular Duct -02
    • Return Air 2wg - Round Duct -03

Defining a Package

  1. From the eVolve ribbon, in the Prefabrication panel, click Define Package.
  2. From the Create/Define Package window, enter a package name, select desired options, and click OK.
  3. From the drawing area, using a window selection or crossing window selection, chose the desired elements to include in the package and click Finish from the Options Bar.
  4. Continue to select elements for other packages or click Finish in the Options Bar to complete the session.

Managing Packages

Once created, there are various ways to monitor and maintain packages within a model.

All package information is contained within shared parameters that are visible from the Revit Properties Panel. This allows for view filters, as well as Element Filters, to quickly be created for finding and displaying package information.

This information is also available within the Spool Manager.

 

Warnings

This product is currently in beta. As such, there are some best practices and limitations that must be followed for the proper experience.

  1. There can not be multiple types of the same view on a prefab sheet. (i.e. two plan views)
  2. Ensure package parameters are unchecked in any view templates used for prefab views.
    • Attached is a code snippet that can be used to accomplish this for all templates. See the video for more information.
Code Snippet
public void TurnOffPackageParams()
{
var doc = this.Document;
using (var ts = new Transaction(doc, "Prefab Parameters Off"))
{
ts.Start();
var viewTemplates = new FilteredElementCollector(doc)
.OfClass(typeof(View))
.Cast<View>()
.Where(v => v.IsTemplate);
foreach (var viewTemplate in viewTemplates)
{
var packagParmIds = new List<ElementId>();
packagParmIds.AddRange(from Parameter p in viewTemplate.Parameters
where p.Definition.Name.Contains("eV_Package")
select p.Id);
viewTemplate.SetNonControlledTemplateParameterIds(packagParmIds);
}
ts.Commit();
}
}
  1. Ensure there is not default plan view template in the project. This will override the chosen view template from the prefab sheet.

TIP: Remember to stretch schedules to match the size needed on the sheet before saving them as a view template

Relevant Articles


How did we do?


Powered by HelpDocs (opens in a new tab)