The new rebar drawings generator



With the new release of the Powerpack for Revit 2022 we are launching the new rebar drawings generator.

In this post I am intending to explain the concept behind the tool, assumptions that were made in order to obtain the best results and at the end I will add some tips&tricks.

As you know, we already had a view generator in the Powerpack. There were 2 issues that were making the mechanism basically unusable:

  1. ​​​​​​​​​​​​​​The mechanism used an external Revit file that contained the drawing configurations. Therefore, there was no initial link between the user’s Revit project and our drawing template. Of course, our template could have been customized but it would had presumed some time.
  2. In order to work properly, the rebar cage needed to be generated with the Powerpack so that rebars could have roles. After the generation, the mechanism knew the roles of the bars and knew what to do with them.

We decided to stray from this approach and we established the main pillars the mechanism will be based on:

  1. The mechanism will be totally based on the user’s Revit Template.
  2. It will use the active project’s view templates, detail view types and rebar schedules. It will read the Multi-Rebar Annotation, Tags and Title blocks families.
  3. The rebar cage inside the element can be manually modelled or generated by the Powerpack.
  4. The section of the elements will not be an issue. The mechanism will work the same for cast-in-place or pre-cast elements.
  5. We will implement the mechanism is such a way that it will take account of the user’s browser organization sorting rules by inserting Revit’s View parameters also.
  6. We will be able to generate wall drawings also.

In a few words, this is how the mechanism works:

  1. Using the drawing manager, the user will make his own drawing configurations for each category of elements (Beams, Columns, Walls, Foundations)
  2. The user will run the command and he will select the elements.
  3. After the selection is made, the grouping algorithms will decide if the elements can be treated as a group or not.
  4. The configuration dialog will appear, and the user is able to change the configurations.
This image has an empty alt attribute; its file name is content
The drawing manager
This image has an empty alt attribute; its file name is content
Selection of elements
This image has an empty alt attribute; its file name is content
Create views dialog

Using the user’s Revit Template

This part of the implementation was easy-to-do. However, during the development we ran into the issue of multiple projects. We decided to not put the user to make the drawings configurations each time he starts a new project (Assuming that users have the same revit template).

We decided to create an .xml file that will contain all the configurations made by the user. This way, the settings will always be there when the user starts a new project. Of course, modifying the Revit template to a completely different one means that you should do the configuration again.

The .xml file is placed here: C:\Users\<User>\AppData\Local\Graitec\Advance Design modules\2022\Templates\Revit\DrawingConfigs

Furthermore, with this approach, the .xml file can be shared across the office. This way only one person needs to make the configurations.

Supported elements and Rebar cages​​​​​​​

​​​​​​​The mechanism will work the same for any Revit Family. We are not using any mapping mechanism. Any Loadable family will be supported. Model-In-Place elements are not supported.

We established that we needed to perform the drawings regardless of the method the rebar cage was obtained (by hand or generated by the Powerpack). In order to achieve this, we needed to use the Style of the rebar shape family.

Quick recap: The style of the shape can be Standard or Stirrup/Tie. There are no geometrical differences between these two, any rebar shape can be set as either of them. The difference comes from Revit’s rebar constraints mechanism. When placing a stirrup/tie bar, it will search for the nearest host rebar cover. Standard bars will additionally search for the stirrup bars handles. Basically, the Stirrup knows that it needs to tie Standard bars. This is especially helpful when modelling rebars by hand.

Thus, we are using the style of the rebar as an input parameter in order to know on which bars we are placing Multi-Rebar Annotation or for which bars we are generating bending details.

This is probably the most important point in order to achieve proper drawings.

Example:

This image has an empty alt attribute; its file name is content
Rebar shape styles

​​​​​​​Drawing manager dialog

We needed to let the user configure his drawings according to his Revit template and requirements. The dialog will manage the Annotations, Bending details (General page) and drawing configurations (Element category pages).

In the following I will explain all the options inside the dialog.

General page

  • Generate views only by default configuration – Checking this option will bypass the Create views dialog. The drawings will be generated according to the check at the left of the configuration in the left panel. It was intended to speed up the process.
  • Name – The name of the annotation configuration. It will be further used in the drawing configuration
  • Rebars – The rebars that the user wants to place Multi-Rebar Annotations on.
  • Rebar Presentation – How the users wants to show the rebars in the generated view. Examples: Central bar, three in the middle…
  • Multi-Rebar Annotation – The family that the user wants to use for this drawing. The list will contain all the MRA inside the project
  • Group MRA – If the elements has multiple distribution of the same rebar number you can group the MRA in order to obtain a single distribution symbol. Example: For a beam with stirrups distributed on 3 zones you can obtain 3 MRA or only 1 MRA.
  • Multiple Tag Family – On rebars that are not distributed, we are placing rebar tags using our own tag multiple bar command. The user needs to set what tag family he wants to use.
  • Bending detail family – What family the user wants for the generated bending details

Drawing configurations:

  • View type – what kind of drawing the users wants his configuration to contain. He can choose from a list that is different for each element category.
  • Revit view type – We used detail views for the drawings. The user can choose what detail type he wants for his drawings. We considered that this option might be used also for the browser organization. The list will contain all the detail view types in the model.
  • View Template – What view template the user wants to apply to the view. The list will contain all the view templates in the model.
  • View scale – At which scale the user wants to generate the drawing. If the view template has the scale included, the value in the dialog will be ignored.
  • Length ratio: Percentage of the length/height of the element at which the section/plan view/node detail will be generated.
  • Annotation – the annotation configuration that the user wants to use in the drawing. The list will contain the configurations from the General page
  • Bending detail – the bending detail configuration the user wants to apply to the view. The list will contain the configurations from the General page.
  • Rebar schedule category – what type of rebar schedule do you want to generate for the select element (Structural Rebar, Fabrics etc.)
  • Rebar schedule type – a template that will be used for the newly generated rebar schedules. The list will contain all the schedules inside the model according to the selected category.
  • Titleblock ​​​​​​​- A list of all the titleblocks in the model

Revit View parameters and Browser organization

This image has an empty alt attribute; its file name is content
Browser Organization

Advanced Revit projects are using a different browser organization rule. They are doing this with a combination of Revit View Parameters. We decided that the drawings should not be randomly generated and should take advantage of the user’s browser organization.

In order to do this, we needed to read the project’s view parameters and include them in our drawing configurations.

This image has an empty alt attribute; its file name is content
Add Revit View Parameters

First you need to add them into the drawing manager by clicking on the “Manage” button. Some parameters might be included in the view templates definition, so you do not need to include all of them. After adding them in the drawing manager, for each configuration, at the end of the table, new columns will be added.

This image has an empty alt attribute; its file name is content
Revit View parameters added to the configuration table

If you want all your drawings to have the same value for a parameter, you should insert the value into the drawing manager. However, if your values differ for each element, you should insert them into the Create Views dialog.

Grouping algorithms

Users have different ways of modelling in Revit so we needed to develop some connection algorithms that will allow us to group elements. Each element category needed to have its own grouping algorithms. Also, the grouping was made accordingly to the desired drawings.

We also took account of the design groups made in the Powerpack. Thus, if there are Multi-Span Beams or groups of Walls the user will need to select only one element inside the group.

Beams

For individual beams to be treated as a group they need to fulfill these two conditions:

  1. They need to share a node.​​​​​​​
This image has an empty alt attribute; its file name is content
Connected node in order to treat beams as a group
  1. Their axis need to be coplanar.
This image has an empty alt attribute; its file name is content
Different examples for beam groups.

​​​​​​​Grouping will allow the user to generate a full-beam elevation of elevation per each span. Sections will be placed for each span.

Columns

There are users that model columns individually for each level or who model them throughout the full height of the building. We needed to be able to obtain full column elevation. We also support slanted columns.

To be treated as a group, columns need to fulfill these conditions:

  1. They need to be concurrent.
  2. They need to share the same X and Y global coordinates
This image has an empty alt attribute; its file name is content
Column Groups

Walls

            Structural walls are usually complicated drawings. They contain a lot rebars and usually they need multiple types of drawings (plan views, node details, sections, elevations and so on)

            Wall groups are also different from the other element categories because they need to be grouped on 2 different planes. First they need to be grouped on the horizontal plane in order to obtain the plan view and then they need to be grouped on the Z direction in order to obtain the full elevation.

            The discussion regarding the manner of modeling walls is the same from the column. They can be modelled individually or through the full height of the building, so we needed to address this issue.

In order to treat them as a group they need to fulfill these conditions:

  • For proper plan views:
    1. They need to share the same Base Constraint, Base Offset, Top Constraint and Top Offset
    2. They need to share an edge
  • For proper elevation:
    1. They need to be concurrent
    2. They need to share an edge​​​​​​​
This image has an empty alt attribute; its file name is content
Wall groups

Final results:

This image has an empty alt attribute; its file name is content
Full beam elevation with sections
This image has an empty alt attribute; its file name is content
Wall drawings

Final Tips&Tricks

  1. Pay attention to rebar styles (Standard and Stirrup/Tie)
  2. I recommend making dedicated View Templates to each element category. This way you can automatically hide unwanted rebars or sections
  3. You can use multiple bending details tags
  4. You can use this tool also for the initial views the user needs to have in order to place the rebars. Generating drawings without multi-rebar annotations and bending details will be instantly done. You can use this in your advantage.

Graitec PowerPack – Split Rebar In Revit


Revit allows you to place bars in a structural element in a very flexible way. This gives a great flexibility for placing rebar in a host, or to model bars of any shaping. On the other hand, it also possible to model an unfeasible shape because basically, Revit do not contain many for constructive dispositions. However, some concepts exist such as concrete cover, which can be respected (with some additional tools when placing the bars).

Figure 1 – Concrete Cover boundaries

When it comes to the shape of the bar itself, Revit allows you to create bars with no length limit. Thus, it is possible to create very long bars, without taking in account a maximum bar length for example.

Figure 2 – Example of straight bar with a high value of length in Revit.

The PowerPack Detailing allows you to address this topic with the Split Rebar command.

From a bar set distribution, this command will allow the distribution to be split according to different method.

Figure 3 – Split bar command interface

Several options to configure the splitting of the bars are possible with this dialog box but two are mainly impacting on the result:

  1. The method of splitting bars with three options proposed.
Figure 4 – Split bar method

2. The method of connection for splitting bars with four options proposed

Figure 5 – Connection bar method available

In addition, an option will allow the user to create an alternate distribution after splitting the rebar set.

Figure 6 – Staggered option and preview

Whichever splitting method is chosen, it will be possible to choose the direction of the cut and manage the distribution of each segment.

Figure 7 – Example of setting with splitting direction

The possible configurations by this tool are therefore very important. It is just needed to select the rebar set to get the result.

Figure 8- Example of staggered repartition with lapped bars

ArchiWIZARD integration in Revit


ArchiWIZARD allows a link with all the BIM solutions on the market thanks to a direct import in IFC format, SketchUp format and in REVIT format. ArchiWIZARD is responsible for the automatic creation of the energy model (rooms, walls, bays, thermal bridges, environmental elements) from the 3D digital architectural model. This common energy model is used for all ArchiWIZARD’s simulation engines.

Figure 1 – Environment ArchiWIZARD

A. REVIT model import
ArchiWIZARD has a standalone version and a direct ArchiWIZARD plug-in in REVIT.
The 3D model is exported by the geometric analysis in the ArchiWIZARD standalone version, and with the REVIT energy model in the ArchiWIZARD plugin of REVIT (process called BIM import).

Figure 2 – Two types of import

• Geometric analysis Import:
This is a simple geometry analysis of the 3D model. ArchiWIZARD will detect these closed volumes and it creates the project walls accordingly.
This geometric analysis will be used to generate an energy model adapted to the module used in ArchiWIZARD (Real-time module, STD module, Regulatory modules, etc.).

Figure 3 – Import by geometric analysis

• REVIT BIM import:
This feature can only be used in the ArchiWIZARD version integrated with the plug-in REVIT software and allows to generate an energy model based on parameters (location, wall compositions, materials and their thermal properties, name and room dimensions, among others ) from REVIT energy model and, of course, to get access to all ArchiWIZARD features.

Figure 4 – REVIT energy model preview in gbXML

B. Real time data synchronization
ArchiWIZARD and REVIT models are linked and some properties like thermal properties are synchronized in real time without having to synchronize.

Figure 5 – Parameter synchronization in real time
  • Display results in REVIT

Some ArchiWIZARD results may be displayed in the current Revit view such as light range, light comfort or thermal loads EN12831.

Figure 6 – ArchiWIZARD solar imagery generated in REVIT view

D. Access to all ArchiWIZARD features and interface

All ArchiWIZARD functionalities are accessible and operational in the Revit environment via the control ribbon.

Figure 7 – ArchiWIZARD control ribbon in REVIT view

Working with the ArchiWIZARD plugin gives access to both software simultaneously. The constant exchange of information in this BIM environment allows to optimally enrich REVIT’s 3D model as well as the ArchiWIZARD’s thermal model.

Join BIM WORKFLOW WEEK!


BIM WORKFLOW WEEK is an online event organized by GRAITEC for structural engineers and detailers. Nowadays, you can streamline your BIM workflows using Graitec and Autodesk technologies together. Bridge the gap between all stakeholders and discover how you can develop and improve your construction projects in a digital thread!

Each day we will run a webinar to show how easy it is to streamline your daily work! We show how to apply a complete BIM workflow from design to detailing on all your projects during the webinars! Don’t wait and register today!

BIM WORKFLOW WEEK AGENDA:

Monday – 15/03/2021 – CREATE YOUR BIM MODELS WITH REVIT AND SIMULATE THEM WITH ADVANCE DESIGN

Are you a structural engineering company doing construction projects with Revit® from Autodesk in a BIM environment? In this webinar, we will propose you a way to streamline your projects, starting to CREATE BIM data in Revit, exporting it to Advance Design to SIMULATE your building and synchronize back in Revit all changes. Discover how easy it is to link Autodesk Revit and Graitec Advance design to simulate and optimize your steel an concrete projects.

Tuesday – 16/03/2021 – ENRICH YOUR 3D BIM REVIT MODEL WITH ANALYTICAL DATA AND RESULTS USING ADVANCE DESIGN

In this webinar, we will go deeper in the integration between Autodesk Revit and Advance Design: exchanging and synchronizing geometrical data is a good point but is not enough to enable a real BIM structural workflow. During this session, you will discover how to enrich your Revit model with finite element results and theoretical reinforcement values using Advance Design with an effective synchronisation mechanism controlled by the user!

Wednesday – 17/03/2021 – APPLY AN EFFECTIVE BIM WORKFLOW FOR ALL YOUR REBAR PROJECTS IN REVIT!

In this BIM era, it’s time for you to manage your rebar projects with 3D models using Autodesk Revit®! Join us to this webinar and discover how you can use the Autodesk platform and Advance Design together to produce 3D Design-driven rebar cages for Beams-Columns-Footings-Slabs-Walls & Shear Walls, automate the drawing views creation with all tags and annotations, produce final drawings and manage in real time all your rebar projects!

Thursday – 18/03/2021 – STEEL CONNECTIONS DESIGN REINVENTED FOR ADVANCE STEEL USERS!

If you’re a structural engineer or a steel detailer using Advance Steel and want to save time, cost and reduce your carbon footprint, Graitec now offers a solution to complement and optimise your current workflow. To facilitate analysing these complex 3D steel connections, Advance Steel joints can now be exported to Graitec Advance Design Connection!

Friday – 19/03/2021 – APPLY A COMPLETE BIM WORKFLOWS FROM DESIGN TO DETAILING ON ALL YOUR STEEL PROJECTS!

In this webinar, we will go through a complete BIM workflow from design to detailing using Autodesk Advance Steel and Graitec Advance Design together. You will discover how easy it is to design and optimise a steel structure with Graitec Advance Design, including steel joints. Then, we will end by exporting the model to Advance steel to create drawings, BOM lists and CNC files fir the fabrication.

Graitec PowerPack – Reinforce and Design Multispan Beams in Revit


As a very common assumption for numeric models made In Revit, multispan beams are modelized as a series of colinear individual beams.

Thus, it’s make it easier for users to produce the formwork drawings, especially when placing beam tags which could include a mark number. This mark number (visible on the identity data in Revit Properties windows) could be set as unique per element, depending the codification rules of the project. It is possible to place the same value for several objects but in this case, the number indicated in the tag will be the same for all objects containing the same mark number.

Figure 1 – Mark Number filled in Revit

In addition, for quantity take off, bill of materials trough Revit schedules, it is more practical and accurate to create several single beams for each span in Revit, rather than one single very long beam.

Figure 2 – Example of multispan beams, with two different mark numbers.

Graitec PowerPack propose through the Main bars command, a powerful wizard dedicated to reinforce structural elements such as columns, footing, walls or beams. This wizard proposes advance settings to define directly a full and complete 3D rebar cage instead of placing the bars one per one.

Figure 3 – Main bars command interface applied to beam.
Figure 4 – Example of reinforced beams generated with Main bars command

Nevertheless, to be reinforced as multispan beams, colinear beams should be consider as one, especially for the connection between to beams if we want to generate the appropriate reinforcement including a good management of the area connecting the two beams.

So, at this stage, users are often dealing with a dilemma between having on one hand a right formwork model composed of individual beams (enabling a good numbering identification for tags and good formwork quantities) and the other hand, having a long single beam for all the spans (which will be closer better to prepare the reinforcement part and not practical for the formwork model management).

To satisfy all requirements for having a good formwork model and a good model, compliancy with our tools to generate the appropriate rebar cage, Graitec PowerPack propose a specific command named MultiSpan Beam.

Figure 5 – MultiSpan Beam command

This command will create a specific shared parameter (named “G.Beam Continuity Group”) to all individual beams supposed to be part of the same multispan serie.

It will assign the same value for this shared parameter so that the Main bar command (dedicated to create the rebar cage) will understand that this group of beams as to be consider as one multispan beam. Users just have to launch the command and select the beam belonging to the same multispan serie.

Figure 6 – MultiSpan Beam name in Revit properties

Once the selection of beam is done and validated, we can see in the dialog box all the beams which are going to be group in a reinforcement point of view. The Mark Number is indicated as well, and it is still possible to adjust the selection by removing elements or adding new ones.

Figure 7 – Multispan Beam definition

With this command, users could keep continue to model beams as individual beams and then, will be able to use our Main Bar command as a 3D rebar cage generator. The reinforcement of a selection of beams will be then consider as multispan. Main Bar will automatically detect the spans and users could switch to one span to another one, to define the reinforcement for each span individually.

Figure 8 – Main bar command launch on a multispan beam

With this command, the right reinforcement will be then generated for the extremities of the span and for each connections of the intermediate beams composing the span.

Figure 9 –Multispan beam reinforced with Main bars command

This notion could be also use for Graitec structural Design engine embedded in Revit, centralized in the ribbon PowerPack Design. The purpose of those tools is to launch design directly in Revit.

Figure 10 – Geometry command from PowerPack Design tab

The command Geometryopen a dialog bow where each span corresponding to each individual beam are visible and recognized correctly by the software. Here, users could change section and control the geometry of each span without affecting and modifying the whole span. Thanks to this, after selecting just one beam and using the Calculate command from the PowerPack Design tab, the software will calculate the complete multispan beam with the adapted reinforcement assumptions and generate the full rebar cage.

Figure 7 – Reinforcement for multispan beam, generated by design input and calculate command from PowerPack Design tab

Multispan Beam is a very practical command, easy to implement in your current workflow and which will really speed up the 3D rebar cage reinforcement generation based on your custom formwork model.

Synchronization of Advance Design model with Revit via Graitec BIM Connect


The calculated structure can be synchronised with the Revit input model; to do this you export the model from Graitrec’s structural analysis software, Advance Design, using BIM Connect. Then select the synchronisation option in Revit and indicate the location of the exported file. The software generates a list of all elements, creating a breakdown of added, changed and deleted elements.

After reviewing the changes that have occurred in relation to the calculation, you can accept, ignore or remove the changes from the sync list. Once the changes are accepted, the model in Autodesk Revit will update.

In Revit, using the PowerPack Design module, it is also possible to design foundations together with the calculation of the reinforcement, based on given conditions. After the calculations, reinforcement drawings can be generated automatically. Most of the drawing’s components such as sections, their location, used labels, dimension lines or lists/bar schedules can be saved by the user in a template which is a native Revit file. From this, PowerPack will generate the drawings.

It remains to define the steel connections. This can be done directly in Revit or using Dynamo, but for the sake of shop drawings, it is suggested to export the model to Advance Steel. The connection calculations themselves can be carried out in Advance Design structural analysis software, using the Steel Connection Designer module.

Learn more about Advance Design!

Graitec Brings the Future of Making-Rebar in Revit to Autodesk University 2018


GRAITEC, an international BIM and CAD software developer with more than 30 years expertise in AEC, and Autodesk® Platinum Partner is proud to announce that one of its online courses made the short list of trending classes at Autodesk University.

The Future of Making-Rebar in Revit session is among the most viewed course this month, and it provides an in-depth view on automating the modeling, detailing and scheduling of structural elements within Revit in one connected workflow.

The course delivers a both engaging and comprehensive session, showing how intelligent BIM data in a connected workflow can enable structural elements (such as footings, columns, and beams) to be automatically modeled, detailed, and scheduled using Revit software.

The session includes four key learning points:

  • Connected structural BIM workflow
  • Benefits of intelligent BIM data
  • Detailed 3D rebar cages in Revit
  • A more automated finish with the use of default or custom Revit families.

The main focus lies on a more automated creation of designed 3D reinforcement cages in Revit software, with the use of default or custom structural Revit families. The course also explores the configuration of automated drawings, views, bar scheduled and design reports using standard Revit families.

Access the link below to change the way you approach designing rebar in Revit:

Graitec: The Future of Making-Rebar in Revit

Graitec Brings the Future of Making-Rebar in Revit to Autodesk University 2018

 

GRAITEC Launch Advance PowerPack for Autodesk® Revit® 2018


GRAITEC, an international BIM and CAD software developer for AEC, and Autodesk® Platinum Partner in US and across Europe, is delighted to announce the launch of Advance PowerPack for Autodesk® Revit® 2018, compatible with both Autodesk® Revit® 2017 and 2018.

GRAITEC is constantly improving its products to provide first-rate productivity tools for its valued customers, and the recent launch of the PowerPack for Autodesk® Revit® 2018 is no exception to this rule, as it delivers a set of new powerful tools, as well as several improvements to the existing toolset to help boost productivity in Revit®.

In version 2018 of the PowerPack, cleaning up your architectural background files before linking them to structural or MEP models has never been easier with the new Prepare Background Model command in the Files group.

The Link Background Model function is another powerful new tool, that links the architectural background file in the MEP or Structural model, allows users to transfer project standards from the linked file, enables copying scope boxes from the background file and make the link room-bounding.

The third new addition to the Files group is the Create Views command, which rapidly and efficiently creates views based on view templates, allowing multiple levels/view templates selection.

GRAITEC Launch Advance PowerPack for Autodesk Revit 2018
Prepare Background Model
GRAITEC Launch Advance PowerPack for Autodesk Revit 2018
Link Background Model
GRAITEC Launch Advance PowerPack for Autodesk Revit 2018
Create Views

One of the major changes in this version is the migration of the Reinforcement panel from PowerPack for Revit ribbon to the Reinforced Concrete BIM Designers application, as a result of users demand for a more compact reinforcement package, that includes calculation, cage generation, drawings, reports and detailing, from a single set of tools.

GRAITEC Launch Advance PowerPack for Autodesk Revit 2018

Another ribbon-related change involves the addition of the new category of structural modeling tools, used for verifying and correcting the analytical model of Revit projects and obtaining correct FEM results after exporting them into Advance Design.

The new tools in the set are used for resetting manual adjustments of analytical models (Reset Analytical Models), automatically trimming/extending the extremities of close objects (Trim or Extend), stretching the closest extremities of selected elements to a reference point (Stretch to Node), or indicating elements that seem to be connected but from a calculation point of view are not (Detect Errors).

GRAITEC Launch Advance PowerPack for Autodesk Revit 2018

Version 2018 also comes with two new modeling tools: Join & Unjoin Geometry, which automatically joins, unjoins or switches the join order of selected element categories, and Pipe insulation, which automatically assigns insulation to the systems based on parameters such as the outer or inner diameter, or assigns a specific value.

Other important improvements and news include the new interface in Russian, as well as the custom installation packages, which allow individual installation of certain PowerPack functionalities, such as Family manager, Link to Excel and Watermark Manager.

GRAITEC Launch Advance PowerPack for Autodesk Revit 2018

GRAITEC Launch Advance PowerPack for Autodesk Revit 2018

A full overview of Revit PowerPack 2018 new functionality can be found in the PowerPack for Revit 2018 What’s New document.

Joseph Pais, GRAITEC Products Director adds:We are constantly encouraged by the excellent feedback and productivity gains reported by Revit PowerPack users around the globe.
The latest enhancements and new functionality that Revit PowerPack 2018 delivers stem from the proactive and rapidly growing community of users. Our vision match with our customers will help make Graitec Revit PowerPack the most powerful set of productivity tools available for Revit users in keeping with our strategy to become a global leading BIM provider and combining Autodesk and GRAITEC technologies to deliver real benefits to customers
“.

Graitec Revit PowerPack Review Voted in Top Ten Content for 2016


Advance PowerPack for RevitWith BIM adoption in full swing in the UK and America and emerging mandates across Europe gearing towards Building Information Modelling, we are pleased to announce that our Graitec Advance PowerPack for Revit review on the Engineering.com website has been voted at 4th place in the top 10 Revit content 2016 by Revit News.

As an established international software developer of a variety of BIM tools, Construction software and Structural Design Analysis solutions, the Graitec Advance PowerPack for Revit has been made available with support in multiple languages and has been designed to deliver Revit users with powerful tools that enhance productivity for many day to day design and modelling tasks for example a Revit to Excel Link, Batch Export to DWG facility, Revit Family Manager, Renaming and numbering tool and so much more.

Achieving independent recognition for our software is very welcoming indeed as it shows we are continuing to provide productive solutions that meet our clients daily needs.

The Advance PowerPack for Revit is available free of charge for Graitec’s subscribers or can be purchased if required.

Try for free!

Free webinar: Link to Excel from Revit


Discover how you can bi-directionally link a schedule from Revit to Excel with the GRAITEC PowerPack for Revit!

As you may know, having the ability to bi-directionally link a schedule from Revit to Excel has always been extremely difficult and limited.

But with the linking tool in Revit, the user can now export a schedule from Revit and maintain a link to the file, giving the user the ability to make non-dimensional changes to the excel sheet and have the Revit parameters automatically update.

Join us on the 13th January 2017 at 3:30pm for a free webinar and learn about the Link to Excel feature and more in the GRAITEC PowerPack for Revit.

Find out more and register

Reinforced Concrete BIM Designers Webinars


Two upcoming FREE webinars exploring RC BIM Designers for Revit® and how they use BIM data to design 3D reinforcement.

Webinar | Next-gen Reinforced Concrete BIM Designers for Revit

BIM-Centric Solutions for Reinforced Concrete


In his article, BIM For Reinforced Concrete – It’s In The Details, Pawel Piechnick points to the delay in adopting Building Information Modeling (BIM) in the concrete industry, due mainly to the fragmented supply chain, involging the collaboration of several designers and suppliers for final product delivery.

With varied demands coming from Autodesk users regarding BIM-centric solutions for concrete – gaining more engineering information while coordinating with local building code requirements (engineers and designers), maximizing production and delivery while minimizing time spent with detailing and coordination with the field (fabricators), and planning optimization through access to accurate quantities in early project phases (contractors) – it is becoming clear that the industry is ready for a big change.

image_2.jpg (1012×650)

Pawel goes on to say that Autodesk’s strategy for reinforced concrete involves integrating steel reinforcement detailing with the structural design process, as well as the detailing process, resulting in more accurate documentation, as well as connected, end-to-end workflows. Autodesk Revit is a clear example, as a model authoring platform supporting BIM workflows for any discipline or trade.

Autodesk’s strategy is completed by partnerships with technical partners who have a record in delivering rebar design-to-detailing-solutions for users in the concrete industry still working with traditional 2D CAD platforms. Software developers such as SOFiSTiK, aSa and Graitec are providing Revit based tools adapted to local standard requirements, process automation, and advanced productivity requirements, and are rebuilding on Revit so they can provide their customers and future reinforced concrete partners a more collaborative BIM environment.

Carl Spalding, GRAITEC Product Strategy Director, thinks that the concrete industry is about to change “thanks to the global adoption of BIM, advances in software technology and countless lessons learnt”.

The main advantages of BIM-centric solutions for the concrete industry:

  • combining 2D documentation versatility with the higher level of fidelity and accuracy of 3D modeling of steel reinforcement and concrete accessories;
  • reducing clashes both in the preconstruction and site execution project phases (through detailing with clash prevention);
  • transitioning from design to detailed models, following local code requirements and automating the process of making changes;
  • and increasing transparency and model information quality from bidding to procurement.

Read full article “BIM For Reinforced Concrete – It’s In The Details”

GRAITEC upcoming construction & BIM webinars


Autodesk Advance Steel & Plant 3D workflows, Revit Lt Vs. 2D, BIM for Infrastructure and Revit 360 collaboration – Register today!

 

Advance Steel and Plant 3D Workflow Webinar

This webinar will focus upon the interaction between Autodesk Advance Steel and Autodesk Plant 3D. Learn how existing plant structures can be used as a reference and then transferred to Advance Steel for additional steelwork to be added.

Explore the options to link your Advance Steel model with your plant project.

Webinar Host: John Bennett

Date: 21st September 2016

Time: 4:00 PM – 5:00 PM BST

Click here to find out more and to register!

 

Revit LT vs. 2D Webinar

This webinar will introduce users to working in a more intelligent way. Replacing lines, and circles with ‘real-world’ components that interact with its surrounding environment.

We will also look at the benefits of modelling the whole building rather than working on isolated areas, which can introduce potential errors.

Webinar Host: Simon Dickinson

Date: 22nd September 2016

Time: 10:00 AM – 11:00 AM

Click here to find out more and to register!

 

BIM for Infrastructure Webinar

This session will look at the workflows between early concept through to finished design; as well as focusing on the advantages of using Infraworks and Civil3D.

Ian Robinson will highlight the ease of looking at different design options using real-world data such as georeferenced data. This will allow the user to consider potential issues such as flooding.

Webinar Host: Ian Robinson

Date: 23rd September 2016

Time: 10:00 AM – 11:00 AM

Click here to find out more and to register!

 

Revit 360 Collaboration Webinar

This webinar will look at the new cloud subscription service that enables users to centralise their models via. The cloud.

The tool will keep all parties connected in real time using the communicator tool.

Webinar Host: Simon Dickinson

Date: 28th October 2016

Time: 10:00 AM – 11:00 AM

Click here to find out more and to register!

Gareth Spencer, on the GRAITEC Advance PowerPack for Revit in AUGIWorld


AUGIWorld is the official magazine of Autodesk User Group International (AUGI), distributed on a monthly basis to all AUGI members around the world.

In the June 2016 edition, Gareth Spencer, BIM Consultant working for GRAITEC and certified professional in Revit Architecture and Structure, presents the advantages of using GRAITEC Advance PowerPack for Revit for enhancing concrete detailing. Gareth explains the necessity of modeling reinforcement in the 3D Revit model, and introduces the GRAITEC Advance PowerPack for Revit as a versatile add-on for Revit, which can help users work more efficiently.

Gareth Spencer, on the GRAITEC Advance PowerPack for Revit in AUGIWorld

Gareth presents some of the most useful tools in PowerPack, such as:

  • Rebar Visibility, used for changing the view’s visibility state, so as to show rebar unobscured and/or as solids in 3D views, or for hiding certain elements;

Gareth Spencer, on the GRAITEC Advance PowerPack for Revit in AUGIWorld

  • Copy Rebar, allowing users to select element rebar, and then copy it to an identical or similar element with no reinforcement assigned;
  • Transversal Distribution, which automatically generates transversal rebar sets with multiple spacing for linear elements.
  • Trim/Extend, used for adjusting the created reinforcement to the shape and particularities of the host element, in a quick and intelligent manner.

These useful new tools are complemented by several commands and functionalities for increasing productivity while working in Autodesk Revit:

  • Family Manager, used for managing Revit families (by searching, selecting or filtering family lists to select the desired families to be imported in a project), either on a local computer, or in a company network;

Gareth Spencer, on the GRAITEC Advance PowerPack for Revit in AUGIWorld

  • Family Exporter, allowing users to select and export all families at once, or select desired families from the list;
  • Auto Section Box, which automatically creates a 3D view of the selected elements, and even duplicates it;
  • Dimension Annotations, a set of tools for automatic generation of dimension lines for overall dimensions, grids, external geometry, structural, and openings.

Read the full review here, on page 14

For Less Than $150 – the GRAITEC PowerPack for Revit® is a No Brainer


GRAITEC, international BIM and CAD software developer, announced today that following the rapid success of the PowerPack for Revit®, which has seen more than 3000 licences delivered worldwide in just over one year, GRAITEC has opted to reduce the annual subscription price of the PowerPack for Revit® to below $150 per user. This move comes as an effort to make the PowerPack for Revit® more accessible to a wider Revit® user-base and to further accelerate uptake of its Revit® add-on worldwide.

For Less Than $150 – the GRAITEC PowerPack for Revit® is a No Brainer

Carl Spalding, GRAITEC Product Strategy Director comments:The PowerPack for Revit® has proven more successful than we could have predicted. Our initial objective was to offer the PowerPack for Revit® as a loyalty benefit exclusively for our Revit® subscription customers. This remains the case today and continues to differentiate GRAITEC from other Autodesk resellers. However the demand from users outside the territories in which we operate – and those from where we do operate but are perhaps locked into contracts preventing them from switching their subscription – quickly identified that we were missing an opportunity to address the needs of a much wider user-base.

The current version of the PowerPack for Revit® offers over 60 practical tools covering a broad spectrum of basic and advanced everyday user-needs. With tools for browsing and loading families graphically, converting libraries of 3D CAD files to Revit® Families, quickly placing and displaying rebar in concrete elements, even password protecting your personal Revit® Families and so much more. Now every Revit® user across the board can easily identify one or more PowerPack tools that will address a laborious process.

Customers who have already purchased the PowerPack for Revit® will also benefit from the change as they will see their subscription fee reduced to the new price on the anniversary of their contract renewal.

GRAITEC Product Strategy Director continues:Revit® users from all disciplines are constantly looking for tools to help them become more productive. After trawling the web and narrowing the possible options to a handful, the final decision often comes down to price. We are confident that no other tool-kit for Revit®, or any combination of individual tools for the matter, comes close to the value offered by our PowerPack, not only in terms of its deliberately low price but more importantly, because of the variety and practicality of the quality tools offered.

Carl concludes: “GRAITEC is well known for its ambitious growth strategy and the PowerPack for Revit® is another example of how disrupting traditional practices and adding more emphasis on the value of customers is helping us move closer to our goal. Our aim is to deliver unrivalled solutions to real-world challenges, and in a way that we believe is almost impossible to replicate. The decision to revise the price of the PowerPack for Revit® will enable us to address the needs of more Revit® users and increase recognition of the GRAITEC brand worldwide. The new annual subscription fee of the PowerPack makes it a no-brainer for any Revit® user, regardless of the size, type or location of their company.

As an approved Autodesk developer partner, GRAITEC has created a wide range of add-ons for Autodesk products for over 25 years.

Useful Links:

Go Further with the Productivity Add-On for Revit®


Go Further with the Productivity Add-On for Revit®

PowerPack Tools for Revit®
ARRANGE YOUR WINDOWS ANY WAY YOU LIKE

Featured Tool:

Windows Control

Tile, cascade and arrange windows to your preference

Easily show all windows currently in use

Centre the view in all open windows

Adjust the displays and view various model plans

 

OVER 40 NEW REINFORCEMENT, MODELING
AND ANNOTATION TOOLS FOR REVIT®

TRY IT NOW

Comprehensive Range of Reinforcement Tools Now Available in the GRAITEC PowerPack for Revit®


GRAITEC, international BIM and CAD software developer for AEC, and Autodesk® Platinum Partner in US and across Europe, is delighted to announce the next instalment of the popular add-on for Autodesk® Revit®, GRAITEC Advance PowerPack, which now includes a considerable range of tools for reinforced concrete modelling and management.

Comprehensive Range of Reinforcement Tools Now Available in the GRAITEC PowerPack for Revit®

The PowerPack for Revit® includes many tools that generally aid daily practices making it very attractive for any Revit® user looking to save time and improve their experience, but the latest version of the PowerPack for Revit® includes even more general productivity tools aimed at improving every-day use that make it extremely hard for the even the most experienced Revit® user to ignore.

The biggest difference in this release however, is the introduction of an impressive range of practical tools and functionality around reinforced concrete modelling and documentation. GRAITEC clearly aims to strengthen its presence in the structural sector and, by delivering essential tools to manage rebar in Revit®, entice both users of traditional 2D RC systems and their Autodesk® Advance Concrete users to migrate seamlessly to Revit®.

Carl Spalding, GRAITEC Product Strategy Director, comments: “Revit® is widely recognised as the go-to product for BIM modelling and is fast becoming a robust multi-industry BIM platform. GRAITEC strategy is to become a leading worldwide BIM technology provider, combining our and Autodesk technologies to deliver real benefits to customers and accelerate BIM adoption around the world. These latest additions to the PowerPack for Revit® will bring speed and efficiency to modeling rebar in Revit® and make the world of BIM for reinforcement considerably more accessible to the market and Revit® community”.

In its short time, the PowerPack for Autodesk® Revit® from GRAITEC, has quickly become a well-established add-on, adopted by thousands of Revit® users worldwide and it is clear GRAITEC is committed to providing tools that hone in on the needs of Revit® users from all industries. Here are a few examples:

  • A slick window arranger which allows all active window views to tiled, easily adjusted and all views cantered.
  • Simple dialogue to change the visibility state showing or hiding reinforcement in an element.
  • Expand area reinforcement to slabs of any irregular shape in one operation.
  • Quickly create, explode, adjust and divide Rebar sets
  • Project browser allows you to quickly show or hide elements in the model by instance or category.
  • Password protect your Revit® families with a secure watermark with the Watermark Manager.
  • And many more…

More over the PowerPack tools are conveniently grouped into categories and saved on their own ribbon which can be easily accessed by switching between Ribbons using the dropdown menu “Ribbon Customization”.

PowerPack for Revit® ribbon showing Reinforcement tools

PowerPack for Revit® ribbon showing General Modeling tools

Click here to view the full range of tools available in the PowerPack for Revit®.

A free trial version of the GRAITEC Advance PowerPack for Revit® is available to download from the GRAITEC PowerPack web page, and an updated trial version will also soon be available on the Autodesk Exchange App Store.

A full license of the PowerPack for Revit® can be purchased directly from your local GRAITEC office or representative and from the Autodesk Exchange App Store – when approved, or included as a no-cost benefit to customers who purchase or renew their Revit® subscription contracts through GRAITEC.

PowerPack for Revit – Boost your productivity!


GRAITEC PowerPack for Autodesk Revit

This Week Feature: Family Manager

Work faster and smarter
• Speed up loading of families in Revit® projects
• Choose families and types to be loaded
• Includes new GRAITEC library of families
• Just a few clicks to download and view family libraries

Download the Advance PowerPack now >>>

 

GRAITEC PowerPack for Revit® available on Autodesk Exchange App Store


GRAITEC, an international BIM and CAD software developer for AEC, and Autodesk® Platinum Partner across Europe, is delighted to announce its Advance PowerPack for Autodesk® Revit® 2016, now available to try and buy on the Autodesk Exchange App Store.

GRAITEC PowerPack for Revit® available on Autodesk Exchange App Store

GRAITEC Advance PowerPack for Autodesk® Revit® is packed with a wide range of powerful tools and utilities that deliver increased productivity and efficiency for Revit® users across all industries.

GRAITEC PowerPack for Revit® available on Autodesk Exchange App Store

The Autodesk Exchange App Store (also accessible from within the Autodesk product) is an extensive online market place for third-party add-ons and extensions to Autodesk products.

GRAITEC Advance PowerPack for Autodesk® Revit® is available as a free trial and to purchase as a 12 month desktop subscription from the Autodesk Exchange App Store. 24 and 36 month subscription options can be purchased directly from GRAITEC. Revit users can access a free trial of the PowerPack from the Autodesk Exchange Store here.

Carl Spalding, GRAITEC Product Strategy Director comments:Since its launch in early 2015, the Advance PowerPack for Autodesk® Revit® has continued to impress Revit® users worldwide with its unparalleled and unique array of tools. Now available directly from the Autodesk Exchange App Store, in English, Czech, French, German, Italian, Polish and Romanian, GRAITEC Advance PowerPack for Autodesk® Revit® is readily accessible to millions of Revit users worldwide.

GRAITEC customers (who hold a current Revit product subscription with GRAITEC) are advised to contact their GRAITEC office directly in order to get access their free PowerPack as part of their standard subscription contract.

An array of AEC and MFG webinars taking place at Graitec!


Protect your benefits - renew your Autodesk Maintenance Subscription today!

Graitec Ltd are running a number of free informative online webinars during October which all last approximately 90 minutes. If you are in the AEC or MFG industry then join us for one or more of these and bring along any software questions you may have.

To find out more on each webinar, head over to GRAITEC UK website and take a look at the events page.

Manufacturing Webinars

Autodesk Vault Professional 

Become an expert on everything to do with ‘bills of materials’ aka BOMs in Autodesk Vault Professional.

-> Date: 1st October 2015, 10 – 11:30am

-> Date: 27th October 2015, 10 – 11:30am

Autodesk Inventor 

Learn all about the advance shape description tool set (T-Spline technology) in Autodesk Inventor.

-> Date: 1st October 2015, 3 – 4:30pm

-> Date: 27th October 2015, 3 – 4:30pm

Autodesk Product Design Suite

Find out about the different Autodesk software programmes in the Product Design Suite and how they
fit in with Digital Prototyping.

-> Date: 16th October 2015, 3 – 4:30pm

-> Date: 19th October 2015, 3 – 4:30pm

Nastran In – CAD

Register for our Nastran In-CAD webinar and learn about simulation using design optimisation.

-> Date: 16th October 2015, 10 – 11:30am

Architectural, Engineering and Construction Webinars

Vehicle Tracking for BIM

Learn about key tools and features of the Autodesk Vehicle Tracking Software and how this can help you with comprehensive transportation analysis and design.

-> Date: 23rd October 2015, 3 – 4:30pm 

Infraworks 360 for BIM

Create, view, analyse and manage information using Infraworks 360. Learn about the tools and features of this software and how it integrates and assists with BIM.

-> Date: 23rd October 2015, 10 – 11:30am 

Revit Energy Analysis

Revit Energy Analysis is a cloud service where you can compare estimated energy and lifecycle costs. Learn all about this service in our free webinar.

->Date: 26th October 2015, 3 – 4:30pm 

Navisworks for BIM

We will be going over BIM Co-ordination, interoperability enhancements, real time navigation, measurement tools and much more in our Navisworks for BIM demo.

-> Date: 26th October 2015, 10 – 11:30am

BIM Software

Join us for this exclusive webinar and learn how the impressive breadth and depth of the Autodesk AEC Portfolio can help with the BIM Process.

-> Date: 19th October 2015, 10 – 11:30am 

(BIM) Building Information Modelling

BIM is transforming the way organisations work. In this webinar learn all about building information modelling, as well as the 2016 UK Government BIM Strategy.

-> Date: 21st October 2015, 3 – 4:30pm

Cross Industry Webinar

AutoCAD

In this webinar we will be going over numerous features of AutoCAD as well as what’s new in the 2016 software.

-> Date: 21st October 2015, 10 – 11:30am

 

Register your place on one of Graitec’s webinars today by clicking the button below and filling out the events form. 

Register Today