What Is New with the Autodesk Revit 2012 API?

Size: px
Start display at page:

Download "What Is New with the Autodesk Revit 2012 API?"

Transcription

1 Elizabeth Shulok Structural Integrators, LLC CP3870 Discover what is new in the Revit 2012 API. This class will introduce attendees to major new features in the API, such as extensible storage, worksharing, construction modeling, energy analysis, point clouds, and Performance Advisor, as well as major enhancements to existing functionality, including changes to the geometry, material, MEP, and analysis visualization framework APIs. Some minor changes and enhancements will be covered as well, along with information on how these changes may affect existing Revit add-ins being updated for Revit Learning Objectives At the end of this class, you will be able to: List the major enhancements to the Revit 2012 API List some of the minor enhancements to the Revit 2012 API Identify changes to the Revit API that may affect existing Revit add-in projects Define extensible storage and how it can be used List 5 new features of the geometry API About the Speaker Elizabeth is the founder and president of Structural Integrators, LLC, a software company based in Southern California that provides integration tools for the structural engineering industry. Prior to starting Structural Integrators in 2007, she spent nearly nine years as a software engineer at RAM International and Bentley Systems, specializing in interoperability issues. She has worked extensively with the Autodesk Revit API for nearly 7 years. shulok@structuralintegrators.com

2 Introduction Each new version of Revit brings an enormous amount of new features, enhancements and changes to the Revit API (Application Programming Interface) and Revit 2012 is no exception. There are more additions and changes to the API than can be covered in this class, but we will cover most of the new features. We ll start by examining the major new features that you may want to consider using in your Revit add-ins. Then we ll look at minor enhancements, updates which may require changes to your existing add-in code, and finally the extensive changes to the geometry portions of the API. Major New Features of the Revit 2012 API There are a number of major new features in the Revit 2012 API, some related to new features in Revit 2012, and some specific to the API. Worksharing Worksharing is a design method that allows multiple team members to work on the same project model at the same time. When worksharing is enabled, a Revit document can be subdivided into one or more worksets, which are subsets of elements in the project. Worksharing is not a new feature in Revit, but the addition of worksharing features in the API coincides with enhancements to the worksharing functionality in Revit, including new display modes. The Revit API now provides access to worksets, elements in worksets and visibility and display options related to worksharing. Worksets The Document class indicates whether worksharing is enabled for the document and provides access to the worksets if it is. Even if worksharing is not enabled, there will be one default workset for the document. The Workset class in the API provides information such as the name of the workset, the owner, the kind of workset, and whether it is editable. Worksets in the document can be filtered to retrieve a subset of worksets meeting certain criteria. Elements in Worksets Each element has a workset id to identify to which workset it belongs. You can obtain all of the elements in a given workset using filtering. The API also provides a worksharing utility class that can be used to get information such as checkout status of an element or whether the element is out of date with the central model. Visibility and Display The View class in the Revit API provides methods to get and set the visibility of worksets in that view. A workset s visibility is determined by default settings for the document, but its visibility can be overridden for a view to be visible or hidden. The default workset visibility settings for the document can also be set through the API. 2

3 In addition to setting the visibility for a view, you can also set the display mode for the view to display the checkout status for elements, the owner of each element, the worksets to which the elements belong, or model updates. And for each display mode, the graphics display settings (line color and fill color) can be set to configure how elements will be shown in different modes. These settings are common and shared by all users in the model. Point Clouds The ability to insert a point cloud file into a Revit model is a new feature in Revit The Revit API provides access to point clouds in two ways, via a Point Cloud Client API and a Point Cloud Engine API. The Client API allows you to create new point cloud instances, read and filter points, select subsets of the overall points, and select points to be highlighted or isolated. The Engine API allows you to create your own point cloud engine and process unsupported file formats (i.e. other than.pcg), providing points to Revit for the user to see. Figure 1: Imported point cloud file Client API Using the point cloud client API, you can create an instance of a point cloud in a document. The point cloud points will be served to the client from a point cloud engine. For a pcg file, this could be the built-in engine that comes with Revit. For other file formats, the point cloud client must 3

4 specify the point cloud engine to be used. This would be a 3 rd party point cloud engine that has been registered with Revit. Once created, you can iterate through all the points in the point cloud instance and filter them based on a set of planar boundaries. Selected points may either be highlighted on screen or isolated, so that the other points in the cloud are not displayed. Engine API A custom point cloud engine can be implemented to supply cloud points to Revit. A point cloud engine can be file-based or non-file-based. A file-based implementation requires that each point cloud be mapped to a single file on disk. Revit will allow users to create new point cloud instances in a document directly by selecting point cloud files whose extension matches the engine identifier. These files are treated as external links in Revit and may be reloaded and remapped when necessary from the Manage Links dialog. A non-file-based engine implementation may obtain point clouds from anywhere (e.g. from a database, from a server, or from one part of a larger aggregate file). Because there is no file that the user may select, Revit's user interface will not allow a user to create a point cloud of this type. Instead, the engine provider supplies a custom command to create and place point clouds of this type. The Manage Links dialog will show the point clouds of this type, but since there is no file associated with the point cloud, the user cannot manage, reload or remap point clouds of this type. Construction Modeling The Revit API allows elements to be divided into sub-parts or collected into assemblies to support construction modeling workflows, much the same way as can now be done with the Revit user interface. Both parts and assemblies can be independently scheduled, tagged, filtered, and exported. You can also divide a part into smaller parts. After creating an assembly type, you can place additional instances in the project and generate isolated assembly views. Figure 2: Wall divided into parts 4

5 Extensible Storage Until now, shared parameters were the only way to store custom data with Revit elements. This data could be made visible to the user in the element properties table. One drawback to shared parameters is that they could only be applied to certain categories. Custom data could not be stored with materials, for example. The Extensible Storage feature is unique to the Revit API, unlike Shared Parameters which can be edited through the Revit user interface. Extensible Storage is a huge improvement on the ability to store custom data with Revit elements. Unlike shared parameters, extensible storage can be assigned to any element in the Revit model, regardless of category. And since most things in the Revit document derive from the Element class, this means you can assign your own data to nearly any object in the document. To use the extensible storage feature, you first define a schema, which consists of one or more fields to be assigned to an object. Field types can be any of the basic types such as int, bool, string, as well as a GUID, and some Autodesk types including ElementId, XYZ and UV. A field also has a unit type assigned to it as well as a name and documentation. When defining a schema, the read and write access can be set separately, so that you can allow 3 rd party applications to read your schema, but not edit it. Once a schema is defined, an entity can be created from it and then assigned to an element in the document. The entity is stored with the element and can be retrieved later by any application with read access for the schema. The data assigned to the element is not visible inside Revit. Analysis Visualization Framework Enhancements The Revit API provides a mechanism for external analysis applications to easily display the results of their computation in the Revit model, referred to as the analysis visualization framework. In Revit 2012, this framework was improved to support multiple analysis results shown in the same view at the same time. The portion of the Revit API related to analysis visualization was modified to support multiple results and to keep track of which are visible in the view. Two new types of analysis data and results display were also added. Analysis results can now be shown as diagrams or vectors. 5

6 Figure 3: Diagram analysis results display Figure 4: Vector analysis results display 6

7 Detailed Energy Analysis Model The Revit API provides the ability to obtain and analyze the contents of a project's detailed energy analysis model. The Export to gbxml and the Heating and Cooling Loads features produce an analytical thermal model from the physical model of a building. The analytical thermal model is composed of spaces, zones and planar surfaces that represent the actual volumetric elements of the building. After creating an energy analysis detail model, the API provides access to information on those spaces, zones, and surfaces. Conceptual Energy Analysis Elements and objects created by Revit to perform energy analyses on conceptual design models are available through the Revit API. The main class associated with conceptual energy analysis, MassEnergyAnalyticalModel, associates a mass instance with energy analytical model data and geometry. The API contains other related classes to provide access to the conceptual representation of an occupiable floor (Mass Floor) in a conceptual building model, conceptual representations of individually heated and cooled sub-volumes of a building, and data about a face in the MassEnergyAnalyticalModel element, such as the material value, and dimensions of auto-generated elements such as sill height, and skylight width. Performance Adviser The new performance adviser feature of the Revit API is designed to analyze a document and flag for the user any elements and/or settings that may cause performance degradation. The Performance Adviser command executes a set of rules and displays their result in a standard review warnings dialog. For an example of how this might be used, look at the PerformanceAdviserControl project in the Revit API SDK Samples folder, which demonstrates the implementation of a custom rule used to identify any doors in the document that are faceflipped. Customizing IFC Export The default IFC Export in Revit can now be customized by 3 rd party add-ins using the IExporterIFC interface which is registered with the Revit session. When a custom IFC exporter is registered with Revit, it will be used both when the user invokes an export to IFC from the user interface as well as from the API. When invoking an IFC export from the API, options similar to the export options available to the user from the Export IFC dialog box can be set programmatically. A custom IFC Export may be useful for regions that are developing their own flavors of IFC. A custom IFC export would be able to support those flavors by extracting the extra information out of the model and putting it into the IFC file. MEP API Enhancements A number of enhancements have been added concerning features specific to MEP. One important enhancement to the API is access to many of the Mechanical Settings found on this dialog box in Revit MEP: 7

8 Figure 5: Mechanical Settings Settings under Pipe Settings, Sizes, and Slopes are all available to read and write via the Revit API. Another useful feature in the API is the ability to put placeholder elements into a system when the exact design of the layout is not yet know. Using placeholder ducts and pipes can allow for a well-connected system while the design is still unknown. Placeholder ducts and pipes can later be converted to actual ducts and pipes via the API. The last major new feature of the MEP portion of the Revit API is the ability to access and create duct and pipe insulation and lining as separate objects associated with ducts and pipes. Minor Changes to the API Many minor changes and enhancements were added to the Revit API for the 2012 release. Although not as extensive as the major changes, some of these minor enhancements are quite significant. Custom Ribbon Tab Previously, ribbon panels and controls could only be added to the Add-Ins or Analyze tab. With Revit 2012, you can now add new ribbon tabs. To ensure that the standard Revit ribbon tabs remain visible, only 20 custom ribbon tabs can be added to a Revit session. Figure 6: New Ribbon Tab with one Panel and some simple Controls 8

9 DB-Level Applications Starting with Revit 2012, you can now create database-level add-ins that do not add anything to the Revit user interface. A db-level add-in can respond to the OnStartup and OnShutdown events for Revit, at which time they can register events or updaters for the Revit session. Document and View enhancements Several enhancements have been made to both the Document and View classes in the API. A document can now be opened and made the active document via the API. And the preview image settings of a document can now be accessed programmatically. For the first time, the active view can be set from the API, although it must be a view of the active document and cannot be inside a transaction. And it is now also possible to control the initial view settings when a model is opened. Linked Files The Revit API can now determine which elements in Revit are references to external files ("linked files") and can make some modifications to how Revit loads external files. Specifically, you can get the path to external files as well as the file type. You can also determine if the file was loaded, unloaded, or not found the last time the main Revit document was opened. The TransmissionData class allows you to examine the external file data in a closed Revit document and to modify the path and load-state information for that data. Although you can modify the path from which to open the external file and change the state from loaded to unloaded (and vice-versa), you cannot use this class to add or remove links from the document. 2-click Pick Option for Selection A new option has been added to allow the user to specify a rectangular area of the screen. Unlike the existing option to allow the user to pick elements in a rectangle, this new method, PickBox() does not return the set of selected elements. Instead, it returns a class that contains the two XYZ points the user selected on screen. One example of a use for this option is to use the picked points to determine a set of point cloud points to select for highlighting on screen. Dynamic Update Framework Changes The dynamic update framework has been updated to allow a registered Updater to be optional. Previously, if an Updater had been associated with a document and that document was opened when the updater was no longer available (on another computer, for example, where the add-in that registered the Updater is not installed), the user would receive a warning. Optional Updaters will not trigger such a warning. The user will still receive this warning if a document is modified by a non-optional Updater and later opened with the Updater is not available. 9

10 Figure 7: Missing Third Party (Non-optional) Updater Allow/Disallow Wall End Joins Whether a wall allows or disallows end joins is now accessible via the API. If joins exist at the end of a wall and joins are disallowed, the walls will become disjoint. If joins are disallowed for the end of the wall, and then the setting is changed to allow the joins, the wall will automatically join to its neighbors, if there are any. Pin/Unpin Elements Previously, an element s pinned status was read-only. Now, an element can be set to pinned or unpinned via the API. Filtering Enhancements Several enhancements have been made to the element filtering capabilities in the Revit API. There is now an option to check if a specific element passes a filter, which can be useful if you have an element and want to know if it meets certain conditions. New types of filters have been added. A multi-category filter which allows you to find elements whose category matches any of a given set of categories and a multi-class filter which allows you find elements whose class type matches any of a given set of classes. Two geometric filters have been added as well that allow you to filter elements by intersection. One finds all elements that intersect a given element while another will find all elements that intersect a given solid. For example, you could create a cylinder centered at the end of a wall to find other walls in close proximity, even if the walls are not joined. 10

11 Changes that may affect existing add-ins There are several changes that impact existing functionality in the Revit API. Some of these changes will prevent an existing add-in from compiling once you reference the new API. Some may not be apparent until you run your code..net 4.0 The Revit API now runs with the.net 4.0 runtime. This requires your add-ins to be targeted to.net 3.5 or.net 4.0 and to be run in Visual Studio 2010 in order to debug them. Add-ins compiled with Visual Studio 2008 will run normally outside of the debugging environment. Regeneration Mode Automatic regeneration mode is no longer an option. This means you no longer have to include the RegenerationMode attribute on your add-ins. The result is that add-ins must use manual regeneration when necessary by calling the Document.Regenerate() method. Since this call can be time-consuming, it is best to only call it when necessary. Once case is when accessing the geometric representation of an element. Attempting to access Element.Geometry for a newly created or modified element will throw an exception if the element has not been regenerated first by performing a manual regeneration on the document. VendorID The.addin manifest file now requires a vendor ID property. The VendorId is a string conforming to the Autodesk vendor ID standards. Prior to using a VendorID, you must register your vendor id string with Autodesk at An error will be shown if the addin manifest file does not contain this required property for an add-in entry. An optional vendor description property has also been added, which can be used to list the vendor s legal name or any other relevant information about the vendor. Event changes There have been some minor changes related to events. Some event properties have been replaced with methods or the type of the property has changed. For some of the UI Events, the sender has changed from ControlledApplication to UIControlledApplication or from Application to UIApplication. If your add-ins subscribe to events, you ll want to look more closely at these changes. JournalData and Library Paths These are minor changes, but if you access the journal data or the paths to library content, you will need to update your code. The property ExternalCommandData.Data has been replaced with ExternalCommandData.JournalData and is now an IDictionary<String, String> rather than a StringStringMap class. The Application.LibraryPaths property is also obsolete. It has been replaced with get and set methods and the returned value is now of type IDictionary<String, String>. 11

12 Material Changes and Property Sets The Revit 2012 changes related to materials impacts the API as well. When compiling a project that works with materials for the first time in Revit 2012, the first thing you will find is that material specific classes such as MaterialSteel or MaterialWood, which were derived from the Material class, are now obsolete. Material-specific classes such as MaterialSteel, had class properties to access certain material properties, such as minimum yield stress. Now these properties must be retrieved using built in parameters on the base Material class. Another significant change is that materials can now reuse property sets which can be referenced by more than one material. When reading material information for an element, you must now first determine if the material properties are by property set or have been set independently. If they are by property set, the individual material properties must be retrieved from the property set; otherwise they can still be retrieved from the material itself. This change will not be trigger a compiler error, but when running an add-in that hasn t been updated to consider property sets, you will get undesirable results if accessing a material using a property set. Below is some code to read in some steel material properties using the Revit 2011 API: Figure 8: Material code using Revit 2011 API To accomplish the same thing using the Revit 2012 API, the code is: 12

13 Figure 9: Material code using Revit 2012 API CompoundStructure The CompoundStructure class, which describes the internal structure of a wall, floor, roof or ceiling, has been replaced. Previously, this class was read-only and did not provide support for the settings related to vertical regions, sweeps, and reveals. The new CompoundStructure class supports read and modification of all of the structure information including vertical regions, sweeps, and reveals. The CompoundStructureLayer class has been replaced for similar reasons. Since these classes have been replaced, not simply updated with certain properties and methods, any add-in that used these classes will fail to compile. In many cases, the changes are easy to identify and accommodate in the code. For example, some properties in CompoundStructure have been replaced with get and set methods. AnalyticalModel The AnalyticalModel class is now derived from the Element class. This change requires a regeneration before the AnalyticalModel of a newly created structural element can be obtained. You may also have noticed in the Revit Structure user interface, that analytical properties for structural elements are now accessed from a drop down box on the properties window. 13

14 Figure 10: Analytical properties of a column Properties only visible when viewing the analytical properties of a structural element are now available from the structural element s AnalyticalModel. For example, the end releases for beams, columns, and braces, used to be retrieved as built-in parameters from the FamilyInstance class. Now, you must retrieve the end releases from the AnalyticalModel class. Because the data is retrieved using built-in parameters rather than class properties, this change would not be apparent at compile time, but would show up at run time if not addressed. Rebar Changes Many changes have been made related to rebar to simplify this part of the API and to make it more consistent with the user interface. RebarShape is no longer modifiable. Instead of changing a RebarShape, you can create a new one based on the existing one. This change has resulting in several changes to the API, including new methods and methods that have been deprecated. Hook angle, hook orientation, and style can no longer be set except at creation. There are several other changes, mostly related to creation of rebar. LinePattern and FillPattern The LinePattern and FillPattern classes have been replaced. The old classes represented not only the line pattern or fill pattern itself, but also the element that contained it. The LinePattern class now represents the line pattern only, while LinePatternElement represents the element containing the line pattern. This LinePattern class provides access to the pattern name and the list of segments that make up the pattern. The line segments define a repeating pattern of dashes and dots for the line pattern. Settings.LinePatterns has been removed. You can now use filtering on the class LinePatternElement. 14

15 Similarly, the FillPattern class now represents the fill pattern only, while FillPatternElement represents the element containing the fill pattern. The FillPattern class provides access to the pattern name and the set of grids that make up the pattern. There is also a FillGrid class that represents a grid line in a fill pattern. Settings.FillPatterns has been removed. And similar to with LinePatterns, FillPatterns can be obtained by filtering on the FillPatternElement class. Save and Close API Changes The behavior of closing or saving a document has changed. Previously, it would prompt the user to pick a target path name if the document's path name was not already set, or if the target file was read-only. Now it will throw an exception if the document's path name is not yet set, or if the saving target file is read-only. A new Save method has been added to allow you to specify a temporary id to use to generate the file preview. The behavior of performing a save as of the document has changed. Previously, it would prompt the user before overwriting another file. Now an exception will be thrown in that situation. A new SaveAs method has been added to the Document class that allows you to save a document, and encapsulates the options to rename the document in session, overwrite an existing file (if it exists), and temporarily assign a view id to use to generate the file preview. Some save methods have been added to the UIDocument as well. Unlike the save or close methods in the Document class, these do provide a means for interacting with the user. A SaveAs method has been added to the UIDocument class that saves the document to a file name and path obtained from the Revit user (via the "Save As" dialog). And a SaveAndClose method has been added that closes the document after saving it. If the document's path name has not been set the "Save As" dialog will be shown to the Revit user to set its name and location. Reference class The Reference class has been renovated to be more closely aligned with the native Revit class it wraps. Because of this change, References will no longer carry information on the document, element, or geometry object from which it was obtained. Some properties of the Reference class are now obsolete and alternate methods are available to retrieve the information. The method Document.FindReferencesByDirection(), which was used to populate the now obsolete Transform and ProximityParameter properties of Reference, should be replaced with Document.FindReferencesWithContextByDirection(). This new method returns a list of ReferenceWithContext objects. Each ReferenceWithContext has a Proximity property and a GetInstanceTransform() method to replace the obsolete properties of the Reference class. 15

16 The obsolete properties and methods have simply been marked obsolete in the API and will not prevent existing add-ins from compiling or running in Revit But they will be removed in a future version at which point your add-ins should be updated. Move, Mirror, Rotate, Array Some Document methods to modify elements have been replaced. Move(), Rotate(), Array() and Mirror() are obsolete. An ElementTransformUtils class is now provided with overloaded methods that can move, rotate, mirror and array elements in the document. The array methods are broken down into some for linear arrays and some for radial arrays. The new utility class also has an overloaded Copy method that allows you to copy and translate one or more physical elements and place the newly copied elements by applying the given translation vector. Changes to the Geometry API The Geometry API refers to the aspects of the Revit API that are geometry-related. There isn t a geometry class or namespace, but the Revit API contains many classes related to geometry and graphic-related types used to describe the graphical representation in the API which are collectively referred to as the Geometry API. Many of the enhancements are the addition of utility classes for various geometric applications. Analysis of Room and Space Geometry The Revit API now provides access to 3D spatial elements like rooms and spaces. You can use the API to calculate the geometry of a spatial element and obtain the relationships between the geometry and the element's boundary elements. You can obtain the sub-faces related to the room bounding elements that define the spatial element face from the results of calculating the geometry. Extrusion Analysis of a Solid A new utility class called ExtrusionAnalyzer allows you to attempt to fit a given piece of geometry into the shape of an extrusion. The utility class can be used to calculate the base profile of the extruded solid aligned to the input plane. You can also identify all faces from the original geometry which do and do not align with the faces of the calculated extrusion. This could be useful to figure out if a wall, for example, has a slanted join at the top as would be the case if there is a join with a roof. If a face is unaligned, something is joined to the geometry that is affecting it. In the case of a non-aligned face, you can use the ExtrusionAnalyzer to determine the element that produced the non-aligned face. Boolean Operations A new BooleanOperationsUtils utility class provides methods for combining a pair of solid geometry objects. This class can be used to either take a copy of the input solids and produce a new solid as a result or to perform the boolean operation directly on the first input solid. In either case, you have the option to perform a Union, Difference, or Intersect of the two solids. 16

17 GeometryCreationUtilities The Revit API now has a GeometryCreationUtilities class that allows you to create solid geometry from input curves, such as: Extrusion Revolution Sweep Blend SweptBlend The resulting geometry is not added to the document as a part of any element. However, you may use the created Solid, and its constituent faces and edges, in several ways: As the input face(s) to the methods in the Analysis Visualization framework As the input solid to finding 3D elements by intersection using filtering As one or more of the inputs to a Boolean operation As a part of a geometric calculation FaceSplitter A FaceSplitter class has been added to the Revit API, representing the element produced by a Split Face operation. Use this class to identify the element whose face was split by the element. You can also access the faces created by the split. Getting Faces The new HostObjectUtils utility class provides methods to quickly locate the faces of a given roof, floor, or wall which act as the exterior or interior boundary of the object's CompoundStructure. Top and bottom faces are applicable to roofs and floors. Side faces are applicable to walls. Get Original Geometry The FamilyInstance class, which represents beams, column, braces and footings, now has a method called GetOriginalGeometry() which will return the geometry of the member before it is modified by joins, cuts, coping, extensions, or other post-processing. PolyLine A new geometry object called a PolyLine is exposed through the API. The PolyLine represents a set of coordinate points forming contiguous line segments. Typically this type of geometry would be seen in geometry imported from other formats (such as DWG). 17

18 Resources There are a number of great resources to help you work with the Revit API. Revit Software Development Kit The Revit SDK should be your first resource for information on the Revit API. You can install the Revit SDK from the Revit 2012 installer. Figure 11: Install Revit SDK from Revit installer Once installed, you will find a RevitAPI.chm file in the main folder. Be sure to read through the What s New section of the Revit API Help file. The SDK also includes numerous sample projects, usually including major new features if you need ideas on how to use them. Revit API Dev Guide The Revit API Dev Guide used to be provided with the Revit SDK as a pdf file. The Revit API Dev Guide is now on the Autodesk WikiHelp website at: 18

19 Figure 12: API Dev Guide on WikiHelp The Building Coder Jeremy Tammik s blog The Building Coder is all about the Revit API. Jeremy is a member of the AEC workgroup of the Autodesk Developer Network ADN DevTech team who, among other things, provides developer support to ADN members. When he gets interesting or technical questions, he posts them to his blog along with the solution. He also posts information on changes to the API for new versions of Revit, so it is a good place to go when learning about new features of the API. 19

Introduction to Autodesk Revit Structure

Introduction to Autodesk Revit Structure 11/30/2005-5:00 pm - 6:30 pm Room:N. Hemispheres (Salon E2) (Dolphin) Walt Disney World Swan and Dolphin Resort Orlando, Florida Nicolas Mangon - Autodesk SD35-1 This year, Autodesk is introducing the

More information

Update Enhancement List

Update Enhancement List AUTODESK REVIT 2015 Update Enhancement List * Indicates an issue that was reported by a Revit user. ** Indicates an issue resolved within the Multi-Category Schedules Hotfix for Autodesk Revit 2015 Update

More information

Autodesk REVIT (Architecture) Mastering

Autodesk REVIT (Architecture) Mastering Autodesk REVIT (Architecture) Mastering Training details DESCRIPTION Revit software is specifically built for Building Information Modeling (BIM), empowering design and construction professionals to bring

More information

Autodesk Revit Structure Autodesk

Autodesk Revit Structure Autodesk Autodesk Revit Structure 2011 What s New Top Features Autodesk Revit Structure 2011 Software Enhanced Design Features Fit and Finish Slanted columns Beam systems and trusses Concrete clean-up Concrete

More information

Effective Collaboration using Autodesk Revit Structure and Autodesk Building Systems

Effective Collaboration using Autodesk Revit Structure and Autodesk Building Systems AUTODESK REVIT STRUCTURE AUTODESK BUILDING SYSTEMS Effective Collaboration using Autodesk Revit Structure and Autodesk Building Systems This white paper explains how structural engineers using Autodesk

More information

Update Enhancement List

Update Enhancement List AUTODESK REVIT 2013 Update Enhancement List Improvements made in Update 3 build (20130531_2115): Improves stability when using Hardware Acceleration, Graphics Mode. Improves stability when opening projects

More information

Revit Architecture Syllabus Total duration: 80 hours (Theory 40 Hours + Lab 40 Hours)

Revit Architecture Syllabus Total duration: 80 hours (Theory 40 Hours + Lab 40 Hours) Faculty Start Date End Date No of Students Revit Architecture Syllabus Total duration: 80 hours (Theory 40 Hours + Lab 40 Hours) Introduction About BIM Introduction to Autodesk Revit Architecture Revit

More information

Update Enhancement List

Update Enhancement List AUTODESK REVIT 2015 Update Enhancement List * Indicates an issue that was reported by a Revit user. Improvements made in Update Release 14 Revit 2015 build: 20160512_1515 Revit 2015 R2 build: 20160512_0715

More information

What's New in Autodesk Revit Structure 2013? Rebecca Frangipane - KJWW Engineering Consultants

What's New in Autodesk Revit Structure 2013? Rebecca Frangipane - KJWW Engineering Consultants Rebecca Frangipane - KJWW Engineering Consultants SE1485 This class will cover the new features for Autodesk Revit Structure 2013 software. We will examine new features for creating and manipulating parts,

More information

Getting Along: Coordinating Architectural and Structural Design with Autodesk Revit Structure

Getting Along: Coordinating Architectural and Structural Design with Autodesk Revit Structure 11/30/2005-8:00 am - 9:30 am Room:N. Hemispheres (Salon A2) (Dolphin) Walt Disney World Swan and Dolphin Resort Orlando, Florida Getting Along: Coordinating Architectural and Structural Design with Autodesk

More information

Virginia Western Community College ARC 221 Architectural CAD Applications Software I

Virginia Western Community College ARC 221 Architectural CAD Applications Software I Virginia Western Community College ARC 221 Architectural CAD Applications Software I Prerequisites CAD 241 Course Description Teaches the principles and techniques of architectural drawing practices through

More information

What's New GRAITEC Advance PowerPack 2016

What's New GRAITEC Advance PowerPack 2016 What's New GRAITEC Advance PowerPack 2016 Table of contents WELCOME TO GRAITEC POWERPACK FOR REVIT... 5 NEWS... 6 Managers... 6 1: Family Manager... 6 BIM Connect... 7 1: Compliancy with Autodesk Revit

More information

GstarCAD Complete Features Guide

GstarCAD Complete Features Guide GstarCAD 2017 Complete Features Guide Table of Contents Core Performance Improvement... 3 Block Data Sharing Process... 3 Hatch Boundary Search Improvement... 4 New and Enhanced Functionalities... 5 Table...

More information

Massing for Revit MEP. Simon Whitbread

Massing for Revit MEP. Simon Whitbread TM Massing for Revit MEP Simon Whitbread Got Your Attention? Good! The Wire Frame Model 1. Open the existing file: C:\RTCAUS2011\20-Massing for Revit MEP\01 Massing for Revit MEP.rvt 2. Open the Level

More information

EDSL Guide for Revit gbxml Files

EDSL Guide for Revit gbxml Files EDSL Guide for Revit gbxml Files Introduction This guide explains how to create a Revit model in such a way that it will create a good gbxml file. Many geometry issues with gbxml files can be fixed within

More information

Using Autodesk Ecotect Analysis and Building Information Modeling

Using Autodesk Ecotect Analysis and Building Information Modeling Autodesk Ecotect Analysis 2010 Using Autodesk Ecotect Analysis and Building Information Modeling This document helps you to get the most from Autodesk Ecotect Analysis software and building information

More information

REVIT ARCHITECTURE 2016

REVIT ARCHITECTURE 2016 Page 1 of 6 REVIT ARCHITECTURE 2016 Revit Architecture 2016: CREATE A CHAMFERED COLUMN COMPONENT About creating a chamfered column family typical to the Victorian cottage style. Add the column to your

More information

Analytical-Physical Modeling and Interoperability Propels BIM Advancements

Analytical-Physical Modeling and Interoperability Propels BIM Advancements Analytical-Physical Modeling and Interoperability Propels BIM Advancements A Bentley White Paper Raoul Karp, S.E. Vice President, Product Development Bentley Systems, Incorporated Josh Taylor, P.E. Senior

More information

CP5229: Seeing Data and More: The Analysis Visualization Framework in the Autodesk Revit API

CP5229: Seeing Data and More: The Analysis Visualization Framework in the Autodesk Revit API CP5229: Seeing Data and More: The Analysis Visualization Framework in the Autodesk Revit API Matt Mason IMAGINiT Technologies CP5229 The analysis visualization framework (AVF) is a fantastic new part of

More information

Powering BIM Capitalizing on Revit for Building Energy Modeling

Powering BIM Capitalizing on Revit for Building Energy Modeling Powering BIM Capitalizing on Revit for Building Energy Modeling David Butts BIM Specialist Gannett Fleming #dabutts7 Join the conversation #AU2016 Class summary In this session, we ll examine how to prepare

More information

Covers Autodesk Advance Steel fundamentals, so you become quickly productive with the software

Covers Autodesk Advance Steel fundamentals, so you become quickly productive with the software Covers Autodesk Advance Steel fundamentals, so you become quickly productive with the software Autodesk Advance Steel 2017 www.autodesk.com new Autodesk Advance Steel users. It is recommended that you

More information

Multi-Discipline Project Coordination with Autodesk Revit. Jim Stoneberger Avatech Solutions Neal O Neill Avatech Solutions

Multi-Discipline Project Coordination with Autodesk Revit. Jim Stoneberger Avatech Solutions Neal O Neill Avatech Solutions Multi-Discipline Project Coordination with Autodesk Revit Jim Stoneberger Avatech Solutions Neal O Neill Avatech Solutions Origins Internal Origin, (0,0,0 in Revit) Revit does have an internal Origin point

More information

Autodesk Revit MEP 2013

Autodesk Revit MEP 2013 Autodesk Revit MEP 2013 This document was last updated on March 22th, 2012. The following are Known Issues with this release: Assemblies When an assembly view is rotated, the crop region does not rotate

More information

Exercise Guide. Published: August MecSoft Corpotation

Exercise Guide. Published: August MecSoft Corpotation VisualCAD Exercise Guide Published: August 2018 MecSoft Corpotation Copyright 1998-2018 VisualCAD 2018 Exercise Guide by Mecsoft Corporation User Notes: Contents 2 Table of Contents About this Guide 4

More information

EXCITECH TOOLKIT for REVIT

EXCITECH TOOLKIT for REVIT EXCITECH TOOLKIT for REVIT Index 1. WHAT'S NEW?... 3 New in Kobi Toolkit for Revit 2018.1... 3 2. GET STARTED... 3 About Kobi Toolkit... 3 Installation... 3 User interface... 5 Activating licence... 6

More information

Table of Contents. What's New in GRAITEC Advance PowerPack 2018 WELCOME TO GRAITEC ADVANCE POWERPACK FOR REVIT NEWS... 5 IMPROVEMENTS...

Table of Contents. What's New in GRAITEC Advance PowerPack 2018 WELCOME TO GRAITEC ADVANCE POWERPACK FOR REVIT NEWS... 5 IMPROVEMENTS... What's New 2018 Table of Contents WELCOME TO GRAITEC ADVANCE POWERPACK FOR REVIT 2018... 4 NEWS... 5 1: Compliancy with Revit 2017 and Revit 2018... 5 2: Prepare Background Model... 5 3: Link Background

More information

Revit Architecture 2015 Basics

Revit Architecture 2015 Basics Revit Architecture 2015 Basics From the Ground Up Elise Moss Authorized Author SDC P U B L I C AT I O N S Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit

More information

Placing Spaces. Let Me Try! Before you begin. The following files are needed for this Let Me Try exercise: M_c04_archi_spaces_rmp2015.

Placing Spaces. Let Me Try! Before you begin. The following files are needed for this Let Me Try exercise: M_c04_archi_spaces_rmp2015. Placing Spaces Before you begin The following files are needed for this Let Me Try exercise: For Imperial: For Metric: c04_archi_spaces_2016.rvt M_c04_archi_spaces_rmp2015.rvt To access the files from

More information

StruSoft StruXML Revit Add-In Manual: Using Revit FEM-Design link

StruSoft StruXML Revit Add-In Manual: Using Revit FEM-Design link StruSoft StruXML Revit Add-In Manual: Using Revit FEM-Design link StruSoft AB Fridhemsvägen 22 SE-217 74, Malmö, Sweden www.strusoft.com Version: January 4th, 2017 Copyright Copyright 2017 by StruSoft.

More information

Midas Link for Revit Structure

Midas Link for Revit Structure Midas Gen Technical Paper Table of Contents Introduction Getting Started Send Model to midas Gen Update Model from midas Gen Applicable data for midas Link for Revit Structure What is Updated from midas

More information

Roundtable: Sell Your First Revit Plug-in on the Revit Exchange Store Saikat Bhattacharya Autodesk Stephen Preston - Autodesk

Roundtable: Sell Your First Revit Plug-in on the Revit Exchange Store Saikat Bhattacharya Autodesk Stephen Preston - Autodesk Roundtable: Sell Your First Revit Plug-in on the Revit Exchange Store Saikat Bhattacharya Autodesk Stephen Preston - Autodesk CP2300-R Do you have a cool Revit app/plug-in or a content that you would like

More information

StruSoft StruXML Revit Add-In Manual: Using Revit FEM-Design link

StruSoft StruXML Revit Add-In Manual: Using Revit FEM-Design link StruSoft StruXML Revit Add-In Manual: Using Revit FEM-Design link StruSoft AB Fridhemsvägen 22 SE-217 74, Malmö, Sweden www.strusoft.com Version: June 19th, 2017 Copyright Copyright 2017 by StruSoft. All

More information

User Interface Revit s user interface is adaptive, changing based on your selections and views. options. Room Tag Split Elements

User Interface Revit s user interface is adaptive, changing based on your selections and views. options. Room Tag Split Elements NU REVIT TUTORIAL Instructor: David Snell, AIA LEED AP BD+C Tutorial 1: 2016-01-25 Page 1 of 8 User Interface Revit s user interface is adaptive, changing based on your selections and views. Application

More information

Advanced Tips for Better Translation Autodesk Revit 2010 IES

Advanced Tips for Better Translation Autodesk Revit 2010 IES Advanced Tips for Better Translation Autodesk Revit 2010 IES IES Worldwide Support Series A. Chan and M. Farrell What is a gbxml? When you click on Set Model Properties, even though you are doing it within

More information

Known Issues Autodesk Revit Building 9.1

Known Issues Autodesk Revit Building 9.1 AUTODESK REVIT BUILDING 9.1 & 9 Known Issues Autodesk Revit Building 9.1 Windows 2000 Operating System If you are installing Revit Building 9.1 on a computer running Windows 2000, you must first run the

More information

Lighting Design and Analysis in Revit

Lighting Design and Analysis in Revit PRODUCT REVIEW By: Dan Stine Lighting Design and Analysis in Revit As the Building Information Modeling () movement continues to evolve or mature it is only natural that we now have more advanced features

More information

Autodesk Revit 6. Preview Guide. Contents

Autodesk Revit 6. Preview Guide. Contents Autodesk Revit 6 Preview Guide Contents Contents... 1 Welcome to Autodesk Revit... 3 About This Guide... 3 Autodesk Revit Terms... 3 What s New for 6.0... 4 Multi-user Element Borrowing... 4 Design Options...

More information

Cross-Discipline Coordination in Autodesk s Revit Platform

Cross-Discipline Coordination in Autodesk s Revit Platform Cross-Discipline Coordination in Autodesk s Revit Platform Matt Dillon The DC CADD Company, Inc. AB214-4 The Revit platform offers many opportunities and tools for coordination that have not been possible

More information

Conceptual Design Modeling in Autodesk Revit Architecture 2010

Conceptual Design Modeling in Autodesk Revit Architecture 2010 Autodesk Revit Architecture 2010 Conceptual Design Modeling in Autodesk Revit Architecture 2010 In building design, visualizing a form in the earliest stages enhances a designer s ability to communicate

More information

AutoCAD 2013 Tutorial - Second Level: 3D Modeling

AutoCAD 2013 Tutorial - Second Level: 3D Modeling AutoCAD 2013 Tutorial - Second Level: 3D Modeling Randy H. Shih SDC PUBLICATIONS Schroff Development Corporation Better Textbooks. Lower Prices. www.sdcpublications.com Visit the following websites to

More information

All In the Family: Creating Parametric Components In Autodesk Revit

All In the Family: Creating Parametric Components In Autodesk Revit All In the Family: Creating Parametric Components In Autodesk Revit Matt Dillon D C CADD AB4013 The key to mastering Autodesk Revit Architecture, Revit MEP, or Revit Structure is the ability to create

More information

Command Name Icon Short cut Ribbon Panel Command Name Icon Short cut Ribbon Panel. Truss Home Structure Load Family Insert Load from Library

Command Name Icon Short cut Ribbon Panel Command Name Icon Short cut Ribbon Panel. Truss Home Structure Load Family Insert Load from Library Beam BM Home Structure Insert from File Insert Import Structural Wall WA Home Structure Image Insert Import Structural Column CL Home Structure Manage Images Insert Import Structural Floor SB Home Structure

More information

Lesson 1 Parametric Modeling Fundamentals

Lesson 1 Parametric Modeling Fundamentals 1-1 Lesson 1 Parametric Modeling Fundamentals Create Simple Parametric Models. Understand the Basic Parametric Modeling Process. Create and Profile Rough Sketches. Understand the "Shape before size" approach.

More information

Trademarks. Copyright 2018 by StruSoft. All rights reserved.

Trademarks. Copyright 2018 by StruSoft. All rights reserved. StruSoft AB Fridhemsvägen 22 SE-217 74, Malmö, Sweden www.strusoft.com Version: June 28th, 2018 Copyright 2018 by StruSoft. All rights reserved. Content of this publication may not be reproduced or transmitted

More information

Design Integration Using Autodesk Revit 2020

Design Integration Using Autodesk Revit 2020 Daniel John Stine AIA, CSI, CDT Design Integration Using Autodesk Revit 2020 Architecture, Structure and MEP SDC P U B L I C AT I O N S Better Textbooks. Lower Prices. www.sdcpublications.com ACCESS CODE

More information

Tekla Structures 2017i. Release notes. September Trimble Solutions Corporation

Tekla Structures 2017i. Release notes. September Trimble Solutions Corporation Tekla Structures 2017i Release notes September 2017 2017 Trimble Solutions Corporation Contents 1 Tekla Structures 2017i release notes...5 1.1 Spiral beams... 6 Spiral beams in the model...6 Spiral beams

More information

The first fully-integrated Add-in lighting software for Autodesk Revit

The first fully-integrated Add-in lighting software for Autodesk Revit Page 1 The first fully-integrated Add-in lighting software for Autodesk Revit Introduction The growth of BIM (Building Information Modeling) software is exploding and in many architectural design and engineering

More information

Tekla Structures and Autodesk Revit useful geometry exchange

Tekla Structures and Autodesk Revit useful geometry exchange Tekla Structures and Autodesk Revit useful geometry exchange General guidance: Updated: 2nd June, 2014 (New material is starred) David Lash Engineering Segment FROM Autodesk Revit Architectural to Tekla

More information

Questions and Answers

Questions and Answers Autodesk Ecotect Analysis 2010 Questions and Answers This document addresses common questions about Autodesk Ecotect Analysis software s technical capabilities and design process. Contents 1. General Product

More information

IESVE Plug-in for Trimble SketchUp Version 3 User Guide

IESVE Plug-in for Trimble SketchUp Version 3 User Guide IES Virtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced in any form without the express agreement of

More information

Tips and tricks. AutoCAD 2010

Tips and tricks. AutoCAD 2010 Tips and tricks AutoCAD 2010 Parametric Drawing Powerful new parametric drawing functionality in AutoCAD 2010 enables you to dramatically increase productivity by constraining drawing objects based on

More information

Structural & Thermal Analysis Using the ANSYS Workbench Release 12.1 Environment

Structural & Thermal Analysis Using the ANSYS Workbench Release 12.1 Environment ANSYS Workbench Tutorial Structural & Thermal Analysis Using the ANSYS Workbench Release 12.1 Environment Kent L. Lawrence Mechanical and Aerospace Engineering University of Texas at Arlington SDC PUBLICATIONS

More information

Design Integration Using Autodesk Revit 2017 Architecture, Structure and MEP

Design Integration Using Autodesk Revit 2017 Architecture, Structure and MEP Daniel John Stine CSI, CDT Design Integration Using Autodesk Revit 2017 Architecture, Structure and MEP SDC P U B L I C AT I O N S Better Textbooks. Lower Prices. www.sdcpublications.com ACCESS CODE UNIQUE

More information

Autodesk Revit Architecture Training Course Outlines

Autodesk Revit Architecture Training Course Outlines Autodesk Revit Architecture Training Course Outlines Description Duration 8 Days (5 classroom + 3 online) The aim of the Autodesk Revit Architecture Professional course is to teach delegates the principles

More information

Compartment and Access

Compartment and Access Compartment and Access Page 1 Preface Using This Guide What's New? Getting Started Entering the Workbench Set Correct Working Units and Grid Saving Documents User Tasks Creating/Modifying Wall Systems

More information

Fast Content for AutoCAD MEP 2015

Fast Content for AutoCAD MEP 2015 David Butts Gannett Fleming MP6393 AutoCAD MEP 2015 software, a world-class design and drafting application, is the Zen master of mechanical, electrical, and plumbing design software. The software continues

More information

Tutorial Second Level

Tutorial Second Level AutoCAD 2018 Tutorial Second Level 3D Modeling Randy H. Shih SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following websites to learn

More information

3 AXIS STANDARD CAD. BobCAD-CAM Version 28 Training Workbook 3 Axis Standard CAD

3 AXIS STANDARD CAD. BobCAD-CAM Version 28 Training Workbook 3 Axis Standard CAD 3 AXIS STANDARD CAD This tutorial explains how to create the CAD model for the Mill 3 Axis Standard demonstration file. The design process includes using the Shape Library and other wireframe functions

More information

ANALYSIS OF PROCEDURES AND WORKFLOW FOR CONDUCTING ENERGY ANALYSIS USING AUTODESK REVIT, GBXML AND TRACE 700. Shariq Ali 1

ANALYSIS OF PROCEDURES AND WORKFLOW FOR CONDUCTING ENERGY ANALYSIS USING AUTODESK REVIT, GBXML AND TRACE 700. Shariq Ali 1 ANALYSIS OF PROCEDURES AND WORKFLOW FOR CONDUCTING ENERGY ANALYSIS USING AUTODESK REVIT, GBXML AND TRACE 700 Shariq Ali 1 1 URS Corporation, Cleveland, Ohio ABSTRACT GbXML came into use relatively recently

More information

Elise Moss Revit Architecture 2017 Basics From the Ground Up SDC. Better Textbooks. Lower Prices.

Elise Moss Revit Architecture 2017 Basics From the Ground Up SDC. Better Textbooks. Lower Prices. Elise Moss Revit Architecture 2017 Basics From the Ground Up SDC P U B L I C AT I O N S Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following websites

More information

10.1 Overview. Section 10.1: Overview. Section 10.2: Procedure for Generating Prisms. Section 10.3: Prism Meshing Options

10.1 Overview. Section 10.1: Overview. Section 10.2: Procedure for Generating Prisms. Section 10.3: Prism Meshing Options Chapter 10. Generating Prisms This chapter describes the automatic and manual procedure for creating prisms in TGrid. It also discusses the solution to some common problems that you may face while creating

More information

Design Integration Using Autodesk Revit 2015

Design Integration Using Autodesk Revit 2015 Design Integration Using Autodesk Revit 2015 Architecture, Structure and MEP Multimedia Disc Daniel John Stine CSI, CDT SDC P U B L I C AT I O N S Better Textbooks. Lower Prices. www.sdcpublications.com

More information

Working with Neutral Format Surface and Solid Models in Autodesk Inventor

Working with Neutral Format Surface and Solid Models in Autodesk Inventor Working with Neutral Format Surface and Solid Models in Autodesk Inventor JD Mather Pennsylvania College of Technology Session ID ML205-1P In this class we will learn how to utilize neutral format data

More information

Boolean Component. Chapter 1. Boolean Operations

Boolean Component. Chapter 1. Boolean Operations Chapter 1. Boolean Component Component: The Boolean Component (BOOL), in the bool directory, performs Boolean operations on the model topology of bodies, first finding the intersections between bodies,

More information

Structural & Thermal Analysis using the ANSYS Workbench Release 11.0 Environment. Kent L. Lawrence

Structural & Thermal Analysis using the ANSYS Workbench Release 11.0 Environment. Kent L. Lawrence ANSYS Workbench Tutorial Structural & Thermal Analysis using the ANSYS Workbench Release 11.0 Environment Kent L. Lawrence Mechanical and Aerospace Engineering University of Texas at Arlington SDC PUBLICATIONS

More information

Revit Modeling Guideline

Revit Modeling Guideline January 1 Revit Modeling Guideline 1 Table of Contents Complex foundation elements... 3 Steel elements and reference lines... 4 Architectural walls... 5 Basic walls with complex geometry... 5 Slanted walls...

More information

Course Title: Assembly Tips and Techniques in Autodesk Inventor

Course Title: Assembly Tips and Techniques in Autodesk Inventor Las Vegas, Nevada, December 3 6, 2002 Speaker Name: Neil Munro Course Title: Assembly Tips and Techniques in Autodesk Inventor Course ID: MA41-2 Course Outline: Investigate bottom-up, top-down, and middle-out

More information

Autodesk Conceptual Design Curriculum 2011 Student Workbook Unit 2: Parametric Exploration Lesson 1: Parametric Modeling

Autodesk Conceptual Design Curriculum 2011 Student Workbook Unit 2: Parametric Exploration Lesson 1: Parametric Modeling Autodesk Conceptual Design Curriculum 2011 Student Workbook Unit 2: Parametric Exploration Lesson 1: Parametric Modeling Overview: Parametric Modeling In this lesson, you learn the basic principles of

More information

Newforma Project Information Link Quick Reference Guide

Newforma Project Information Link Quick Reference Guide Newforma Project Information Link Quick Reference Guide This topic provides a reference for Newforma Project Information Link. Purpose Newforma Project Information Link enables you to make a connection

More information

Revit MEP 2013 Overview Day 1. William Johnson Senior MEP/AEC Application Specialist

Revit MEP 2013 Overview Day 1. William Johnson Senior MEP/AEC Application Specialist Revit MEP 2013 Overview Day 1 William Johnson Senior MEP/AEC Application Specialist CLASS SCHEDULE 9:00am Training Starts 10:30am 10:45am Morning Break 12:00pm 1:00pm Lunch Break 2:30pm 2:45pm Afternoon

More information

Beyond the Limits: Using Autodesk Revit and Navisworks Manage for Design Collaboration on Large-Scale Projects

Beyond the Limits: Using Autodesk Revit and Navisworks Manage for Design Collaboration on Large-Scale Projects Beyond the Limits: Using Autodesk Revit and Navisworks Manage for Design Collaboration on Large-Scale Projects Joseph Huang MWH Global Luther Lampkin MWH Global SE4259 This class covers best practices

More information

More Practical Dynamo: Practical Uses for Dynamo Within Revit

More Practical Dynamo: Practical Uses for Dynamo Within Revit AS10613 & AS13937 More Practical Dynamo: Practical Uses for Dynamo Within Revit MARCELLO SGAMBELLURI, BIM DIRECTOR JOHN A. MARTIN & ASSOCIATES Learning Objectives Learn how to program using visual programming.

More information

May the Force Be With You: Autodesk Revit Tips and Tricks

May the Force Be With You: Autodesk Revit Tips and Tricks May the Force Be With You: Autodesk Revit Tips and Tricks David Cohn AB122-1R Do you want to become a Revit master? In this fun and informative class, you ll learn a host of Revit tips and tricks that

More information

IES <Virtual Environment> Live e-training. Trainee notes. <VE Compliance> UK Dwellings. Version 6.0

IES <Virtual Environment> Live e-training. Trainee notes. <VE Compliance> UK Dwellings. Version 6.0 IES Live e-training Trainee notes UK Dwellings Version 6.0 Introduction These training notes are to be used in conjunction with your UK Dwellings training. In this

More information

What s New Topics in 3.5.1: 1. User Interface 5. Reference Geometry 2. Display 6. Sketch 3. livetransfer 7. Surface / Solid 4. Scan Tools 8.

What s New Topics in 3.5.1: 1. User Interface 5. Reference Geometry 2. Display 6. Sketch 3. livetransfer 7. Surface / Solid 4. Scan Tools 8. ]^ New Release Turning Measured Points into Solid Models What s New Topics in 3.5.1: 1. User Interface 5. Reference Geometry 2. Display 6. Sketch 3. livetransfer 7. Surface / Solid 4. Scan Tools 8. Measure

More information

1. WELDMANAGEMENT PRODUCT

1. WELDMANAGEMENT PRODUCT Table of Contents WeldManagement Product.................................. 3 Workflow Overview........................................ 4 Weld Types.............................................. 5 Weld

More information

REVIT MODELING INDIA. Best Practices of Revit Family. Creation. Author: Premal Kayasth BIM Evangelist.

REVIT MODELING INDIA. Best Practices of Revit Family. Creation. Author: Premal Kayasth BIM Evangelist. REVIT MODELING INDIA Best Practices of Revit Family Creation Author: Premal Kayasth BIM Evangelist Introduction: The white paper aims at defining best practices and procedures to be considered at the time

More information

Basic Modeling 1 Tekla Structures 12.0 Basic Training September 19, 2006

Basic Modeling 1 Tekla Structures 12.0 Basic Training September 19, 2006 Tekla Structures 12.0 Basic Training September 19, 2006 Copyright 2006 Tekla Corporation Contents Contents 3 1 5 1.1 Start Tekla Structures 6 1.2 Create a New Model BasicModel1 7 1.3 Create Grids 10 1.4

More information

Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide

Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide Abstract After completing this workshop, you will have a basic understanding of editing 3D models using Autodesk Fusion 360 TM to

More information

BIM Diploma content ( included courses) : Training course Course Levels Duration Outputs Revit MEP

BIM Diploma content ( included courses) : Training course Course Levels Duration Outputs Revit MEP What is BIM? Autodesk BIM is an intelligent model-based process that helps owners and service providers achieve business results by enabling more accurate, accessible, and actionable insight throughout

More information

Piping Design. Site Map Preface Getting Started Basic Tasks Advanced Tasks Customizing Workbench Description Index

Piping Design. Site Map Preface Getting Started Basic Tasks Advanced Tasks Customizing Workbench Description Index Piping Design Site Map Preface Getting Started Basic Tasks Advanced Tasks Customizing Workbench Description Index Dassault Systèmes 1994-2001. All rights reserved. Site Map Piping Design member member

More information

Compartment and Access

Compartment and Access Compartment and Access Preface Using This Guide What's New? Getting Started Entering the Workbench Set Correct Working Units and Grid Saving Documents User Tasks Creating/Modifying Wall Systems Building

More information

December 22 nd MWF SIPs. User Guide

December 22 nd MWF SIPs. User Guide December 22 nd 2016 MWF SIPs User Guide Table of contents 1. Introduction... 3 1.1 Things to Know Before Starting... 3 1.1.1 Starting from a Template... 3 1.1.2 Material... 3 1.1.3 Creating Revit Wall

More information

Smart Hangers. Powerful solution for placing hangers in BIM model

Smart Hangers. Powerful solution for placing hangers in BIM model Powerful solution for placing hangers in BIM model Working with MEP elements Smart Hangers extension Autodesk Revit Architecture/Structure/MEP and Autodesk Revit BIM software Smart Hangers powerful solution

More information

Advance Steel: Working Well with Revit

Advance Steel: Working Well with Revit Advance Steel: Working Well with Revit Stephen Bessette Technical Specialist AEC Autodesk, Inc. Learning Objectives Become familiar with the Structural Connection Component within Revit Learn how to get

More information

3D ModelingChapter1: Chapter. Objectives

3D ModelingChapter1: Chapter. Objectives Chapter 1 3D ModelingChapter1: The lessons covered in this chapter familiarize you with 3D modeling and how you view your designs as you create them. You also learn the coordinate system and how you can

More information

Solid Bodies and Disjointed Bodies

Solid Bodies and Disjointed Bodies Solid Bodies and Disjointed Bodies Generally speaking when modelling in Solid Works each Part file will contain single solid object. As you are modelling, each feature is merged or joined to the previous

More information

Autodesk Inventor 2019 and Engineering Graphics

Autodesk Inventor 2019 and Engineering Graphics Autodesk Inventor 2019 and Engineering Graphics An Integrated Approach Randy H. Shih SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the

More information

Importing and Exporting FilesChapter1:

Importing and Exporting FilesChapter1: Importing and Exporting FilesChapter1: Chapter 1 You can use Revit Architecture to import and export various file types, including AutoCAD and AutoCAD Architecture DWG files to use as design aids. You

More information

COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 HAND OUT 1 : INTRODUCTION TO 3D

COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 HAND OUT 1 : INTRODUCTION TO 3D COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 INSTRUCTORS E-MAIL ADDRESS OFFICE HOURS Özgür Genca ozgurgenca@gmail.com part time Tuba Doğu tubadogu@gmail.com part time Şebnem Yanç Demirkan sebnem.demirkan@gmail.com

More information

REVIT SCIA ENGINEER LINK RELEASE NOTES

REVIT SCIA ENGINEER LINK RELEASE NOTES REVIT SCIA ENGINEER LINK RELEASE NOTES Contents Release Notes... 1 Version 2019 (Build 421): May 2018... 1... 1... 2 Version 2018.1 (Build 363): November 2017... 2... 2... 2 Version 2018 (Build 328): June

More information

Because After all These Years I Still Don t Get it!

Because After all These Years I Still Don t Get it! BILT North America 2017 Westin Harbour Castle Toronto August 3-5 Session 3.2 Shared Coordinates: Because After all These Years I Still Don t Get it! Class Description In an effort to reveal the system

More information

March 3 rd MWF MultiLayer. User Guide

March 3 rd MWF MultiLayer. User Guide March 3 rd 2018 MWF MultiLayer User Guide Table of contents 1. Introduction: The Project Settings Hub... 4 1.1 Wall Type Map... 5 1.2 Structural Templates... 5 1.1 Secondary Template... 5 1.2 Sheathing

More information

PARAMETRIC BIM WORKFLOWS

PARAMETRIC BIM WORKFLOWS Y. Ikeda, C. M. Herr, D. Holzer, S. Kaijima, M. J. Kim. M, A, Schnabel (eds.), Emerging Experience in Past, Present and Future of Digital Architecture, Proceedings of the 20th International Conference

More information

Tetra4D Reviewer. Version 5.1. User Guide. Details on how to use Tetra4D Reviewer.

Tetra4D Reviewer. Version 5.1. User Guide. Details on how to use Tetra4D Reviewer. Tetra4D Reviewer Version 5.1 User Guide Details on how to use Tetra4D Reviewer. ii Contents Chapter 1: Work area... 7 Looking at the work area... 7 Toolbars and toolbar presets... 8 About toolbars and

More information

Blocks reduce drawing size since multiple instances of a block are stored in one definition.

Blocks reduce drawing size since multiple instances of a block are stored in one definition. AGENDA: 1. Blocks and Controlling Block Properties 2. Creating and Inserting Blocks 3. Editing Blocks after Insertion 4. Storing Blocks Blocks A block is a collection of entities, grouped together and

More information

CADS Revit Scia Engineer Link Best Practices

CADS Revit Scia Engineer Link Best Practices CADS Revit Scia Engineer Link Best Practices Copyright 2013 Computer and Design Services Limited Contents Contents... 2 1 Installation... 4 2 Work Flow... 5 2.1 Revit Architecture Model to Scia Engineer

More information

Autodesk Revit MEP: Fast Families for Engineers David Butts Gannett Fleming

Autodesk Revit MEP: Fast Families for Engineers David Butts Gannett Fleming David Butts Gannett Fleming MP2531-L Once you start using Revit MEP, you find out that you need to learn how to create custom families and fast! This hands-on lab starts with the basics of creating custom

More information

BIM Diploma content ( included courses) : Training course Course Levels Duration Outputs Revi t Architecture

BIM Diploma content ( included courses) : Training course Course Levels Duration Outputs Revi t Architecture What is BIM? Autodesk BIM is an intelligent model-based process that helps owners and service providers achieve business results by enabling more accurate, accessible, and actionable insight throughout

More information

RhinoCAM-NEST 2018 Quick Start Guide MecSoft Corporation

RhinoCAM-NEST 2018 Quick Start Guide MecSoft Corporation 2 Table of Contents About RhinoCAM-NEST 3 Using this Guide 4 Useful Tips 5 About RhinoCAM-NEST 6 1 Running... RhinoCAM 6 2 About... the RhinoCAM Display 6 3 Launching... the NEST Module 7 Rectangular Nesting

More information