Generative Drafting Journaling. Preface Basic Tasks Glossary Index. Dassault Systèmes All rights reserved.

Size: px
Start display at page:

Download "Generative Drafting Journaling. Preface Basic Tasks Glossary Index. Dassault Systèmes All rights reserved."

Transcription

1 Generative Drafting Journaling Preface Basic Tasks Glossary Index Dassault Systèmes All rights reserved.

2 Preface The CATIA - Generative Drafting Journaling Guide has been designed to show you how to create drawing views starting from a CATIA script document. This book aims at illustrating the several stages of creation you may encounter. The information contained in this guide is specific to Version 5 Release 5 of the CATIA - Generative Drafting workbench, which operates in a WINDOWS or UNIX workstation environment under the AIX, IRIX, SUN OS and HP-UX operating system.

3 Basic Tasks CATDrawing Document Drawing Sheet Drawing View Drawing Basics

4 CATDrawing Document New CATDrawing Open CATDrawing

5 Create a CATDrawing Document Definition Creates a new drawing. Methods Documents.Add Creates a document object and adds it to the documents collection. This document becomes the active one, and a window is created to accomodate it which becomes the active window. Documents.Add ( idoctype ) as Document idoctype as String The type of the document to be created, here a CATDrawing. = "Drawing" CATIA.Documents.Add ( "Drawing" ) Running The Macro Open CATIA. Load the CreateCATDrawing1.CATScript macro. Run the macro.

6 Open a CATDrawing Document Definition Open an existing drawing. Methods Documents.Open Opens and reads a document stored in a file, displays it in a new window, adds the document to the documents collection and the window to the windows collection, and makes both the document and the window the active ones. Documents.Add ( ifilename ) as Document ifilename as String The string containing the document name and path to be opened. CATIA.Documents.Open ( "C:\DrawingDirectory\UserDrawing.CATDrawing" ) Running The Macro 1. Open CATIA. 2. Check in OpenCATDrawing1.CATScript the path to the Generative Drafting Journaling Guide directory sample. 3. Load the OpenCATDrawing1.CATScript macro. 4. Run the macro.

7 Drawing Sheet Sheet Detail Sheet

8 Sheet Definition The drawing sheet contains drawing views. Methods Activate Activates the drawing sheet. Activate UserSheet.Activate Add Creates a new drawing sheet and adds it to the DrawingSheets collection. Add ( isheetname ) as DrawingSheet isheetname as String The sheet name. UserSheets.Add ( SheetName ) ForceUpdate Updates the drawing sheet even is not necessary. ForceUpdate UserSheet.ForceUpdate GenerateDimensions Generates dimensions in all the drawing views of the drawing sheet from distance, length, angle, radius, and diameter 3D constraints. Only one dimension is generated for an existing constraint. GenerateDimensions UserSheet.GenerateDimensions

9 Item Gets a drawing sheet or detail sheet using its index or its name from the DrawingSheets collection. Item ( iindex ) as DrawingSheet iindex as Variant The sheet index (Long) or sheet name (String). PrintOut Set UserSheet = UserSheets.Item ( SheetIndex ) Prints the sheet according to thedrawing sheet page setup on the default printer. See PageSetup.ChooseBestOrientation, PageSetup.FitToPrinterFormat, PageSetup.FitToSheetFormat. PrintOut UserSheet.PrintOut PrintToFile Prints the drawing sheet according to the drawing sheet page setup in a file. See PageSetup.ChooseBestOrientation, PageSetup.FitToPrinterFormat, PageSetup.FitToSheetFormat.. PrintToFile ( ifilename ) ifilename as String The full file name, Remove UserSheet.PrintToFile ( SheetFileName ) Removes a drawing sheet or detail sheet using its index or its name from the DrawingSheets collection. Remove ( iindex ) iindex as Variant The sheet index (Long) or sheet name (String). UserSheets.Remove ( SheetIndex ) Update Updates the drawing sheet.

10 Update UserSheet.Update Properties ActiveSheet Gets the active drawing sheet of the drawing document. ActiveSheet as DrawingSheet UserActiveSheet = UserDrawingDocument.ActiveSheet DrawingSheet Dimensions an object as drawing sheet. Dim UserSheet as DrawingSheet DrawingSheets Dimensions an object as drawing sheets. Dim UserSheets as DrawingSheets Scale Gets or sets the drawing sheet scale. Scale as Double SheetScale = UserSheet.Scale UserSheet.Scale = Orientation Gets or sets the drawing sheet orientation. Orientation as Long = 0, the portrait orientation. = 1, the landscape orientation. = 2, the best orientation according to the print format.

11 SheetOrientation = UserSheet.Orientation UserSheet.Orientation = 0 PageSetup.Banner Gets or sets the drawing sheet printing banner. PageSetup.Banner as String Available variables are: $USER, the user name. $HOST, the workstation name. $SCALE, the print scale. $TIME, the print time. $DATE, the print date. $DAY, the print day. $MONTH, the print month. $YEAR, the print year. SheetPageSetupBanner = UserSheet.PageSetup.Banner UserSheet.PageSetup.Banner = "Printed by $USER at scale $SCALE on $MONTH/$DAY/$YEAR" PageSetup.BannerPosition Gets or sets the drawing sheet printing banner position. PageSetup.BannerPosition as Long = 0, the print has no banner. = 1, the banner is located along the bottom side of the print. = 2, the banner is located along the top side of the print. = 3, the banner is located along the left side of the print. = 4, the banner is located along the right side of the print. SheetPageSetupBannerPosition = UserSheet.PageSetup.BannerPosition UserSheet.PageSetup.BannerPosition = 2 PageSetup.ChooseBestOrientation Gets or sets the drawing sheet printing best orientation. See PageSetup.Orientation. PageSetup.ChooseBestOrientation as Boolean = True, the drawing sheet is oriented if needed according to the print format. = False, the drawing sheet keeps its current orientation. SheetPageSetupBestOrientation = UserSheet.PageSetup.ChooseBestOrientation UserSheet.PageSetup.ChooseBestOrientation = True

12 PageSetup.Bottom Gets or sets the drawing sheet printing lower left corner location with respect to the bottom of the sheet of paper. This is the distance of the document or the image to print lower left corner to the inner side of the bottom margin. PageSetup.Bottom as Float SheetPageSetupBottom = UserSheet.PageSetup.Bottom UserSheet.PageSetup.Bottom = 40.0 PageSetup.BottomMargin Gets or sets the drawing sheet printing bottom margin. The bottom margin is a strip in which nothing is printed, located at the bottom of the page. PageSetup.BottomMargin as Float SheetPageSetupBottomMargin = UserSheet.PageSetup.BottomMargin UserSheet.PageSetup.BottomMargin = 10.0 PageSetup.FitToPrinterFormat Gets or sets the drawing sheet printing "fit to printer format". PageSetup.FitToPrinterFormat as Boolean = True, the drawing sheet is fitted to the printer format. = False, the drawing sheet is not fitted to the printer format. SheetPageSetupFitToPrinterFormat = UserSheet.PageSetup.FitToPrinterFormat UserSheet.PageSetup.FitToPrinterFormat = True PageSetup.FitToSheetFormat Gets or sets the drawing sheet printing "fit to sheet format". PageSetup.FitToSheetFormat as Boolean = True, the drawing sheet is fitted to the sheet format. = False, the drawing sheet is not fitted to the sheet format. SheetPageSetupFitToSheetFormat = UserSheet.PageSetup.FitToSheetFormat UserSheet.PageSetup.FitToSheetFormat = True

13 PageSetup.Left Gets or sets the drawing sheet printing lower left corner location with respect to the left of the sheet of paper. This is the distance of the document or the image to print lower left corner to the inner side of the left margin. PageSetup.Left as Float SheetPageSetupLeft= UserSheet.PageSetup.Left UserSheet.PageSetup.Left = 40.0 PageSetup.LeftMargin Gets or sets the drawing sheet printing left margin. The left margin is a strip in which nothing is printed, located at the left of the page. PageSetup.LeftMargin as Float SheetPageSetupLeftMargin = UserSheet.PageSetup.LeftMargin UserSheet.PageSetup.LeftMargin = 10 PageSetup.Logo Gets or sets the drawing sheet printing logo file. PageSetup.Logo as String SheetPageSetupLogo = UserSheet.PageSetup.Logo UserSheet.PageSetup.Logo = LogoFilePath PageSetup.MaximumSize Gets or sets the drawing sheet printing maximum size with respect to the page size and margins. If true, this overrides the location properties, that is PageSetup.Left and PageSetup.Bottom, and the PageSetup.Zoom property values. PageSetup.MaximumSize as Boolean = True, the drawing sheet is printed with the maximum size. = False, the drawing sheet is not printed with the maximum size. SheetPageSetupMaximumSize = UserSheet.PageSetup.MaximumSize UserSheet.PageSetup.MaximumSize = True

14 PageSetup.Orientation Gets or sets the drawing sheet printing orientation. PageSetup.Orientation as Long = 0, the portrait orientation. = 1, the landscape orientation. = 2, the best orientation according to the print format. SheetPageSetupOrientation = UserSheet.PageSetup.Orientation UserSheet.PageSetup.Orientation = 0 PageSetup.PaperHeight Gets or sets the drawing sheet printing paper height. PageSetup.PaperHeight as Float SheetPageSetupPaperHeight = UserSheet.PageSetup.PaperHeight UserSheet.PageSetup.PaperHeight = 297 PageSetup.PaperSize Gets or sets the drawing sheet printing paper size. PageSetup.PaperSize as Long = 0, the US Letter format (8.5 x 11"). = 1, the Legal format (8.5 x 14"). = 2, the A0 ISO format (841 x 1189 mm). = 3, the A1 ISO format (594 x 841 mm). = 4, the A2 ISO format (420 x 594 mm). = 5, the A3 ISO format (297 x 420 mm. = 6, the A4 ISO format (210 x 297 mm). = 7, the A ANSI format (8.5 x 11"). = 8, the B ANSI format (11 x 17"). = 9, the C ANSI format (17 x 22"). = 10, the D ANSI format (22 x 34") = 11, the E ANSI format (34 x 44") = 12, the F ANSI format (28 x 40"). = 13, the customized format. SheetPageSetupPaperSize = UserSheet.PageSetup.PaperSize UserSheet.PageSetup.PaperSize = 2 PageSetup.PaperWidth Gets or sets the drawing sheet printing paper width.

15 PageSetup.PaperWidth as Float SheetPageSetupPaperWidth = UserSheet.PageSetup.PaperWidth UserSheet.PageSetup.PaperWidth = 210 PageSetup.Quality Gets or sets the drawing sheet printing quality PageSetup.Quality as Long = 0, the print quality is acceptable for drafts. = 1, the print quality is low. = 2, the print quality is medium. = 3, the print quality is high. SheetPageSetupQuality = UserSheet.PageSetup.Quality UserSheet.PageSetup.Quality = 3 PageSetup.RightMargin Gets or sets the drawing sheet printing right margin. The right margin is a strip in which nothing is printed, located at the right of the page. PageSetup.RightMargin as Float SheetPageSetupRightMargin = UserSheet.PageSetup.RightMargin UserSheet.PageSetup.RightMargin = 10 PageSetup.Rotation Gets or sets the drawing sheet printing rotation. The right margin is a strip in which nothing is printed, located at the right of the page. PageSetup.Rotation as Long = 0, the image is not rotated. = 1, the image is rotated of 90 degrees clockwise. = 2, the image is rotated of 180 degrees clockwise. = 3, the image is rotated of 270 degrees clockwise. SheetPageSetupRotation = UserSheet.PageSetup.Rotation UserSheet.PageSetup.Rotation = 0 PageSetup.TopMargin Gets or sets the drawing sheet printing top margin.

16 The top margin is a strip in which nothing is printed, located at the top of the page. PageSetup.TopMargin as Float SheetPageSetupTopMargin = UserSheet.PageSetup.TopMargin UserSheet.PageSetup.TopMargin = 10 PageSetup.Zoom Gets or sets the drawing sheet printing zoom. PageSetup.Zoom as Float SheetPageSetupZoom = UserSheet.PageSetup.Zoom UserSheet.PageSetup.Zoom = 3.0 PaperSize Gets or sets the drawing sheet paper size. PaperSize as Long = 0, the US Letter format (8.5 x 11"). = 1, the Legal format (8.5 x 14"). = 2, the A0 ISO format (841 x 1189 mm). = 3, the A1 ISO format (594 x 841 mm). = 4, the A2 ISO format (420 x 594 mm). = 5, the A3 ISO format (297 x 420 mm. = 6, the A4 ISO format (210 x 297 mm). = 7, the A ANSI format (8.5 x 11"). = 8, the B ANSI format (11 x 17"). = 9, the C ANSI format (17 x 22"). = 10, the D ANSI format (22 x 34") = 11, the E ANSI format (34 x 44") = 12, the F ANSI format (28 x 40"). = 13, the customized format. SheetPaperSize = UserSheet.PaperSize UserSheet.PaperSize = 2 ProjectionMethod Gets or sets the drawing sheet projection method. ProjectionMethod as Long = 0, the views are created using first angle standard. = 1, the views are created using third angle standard.

17 Sheets SheetProjectionMethod = UserSheet.ProjectionMethod UserSheet.ProjectionMethod = 0 Gets the collection of drawing sheets in the drawing document. Sheets as DrawingSheets Set UserDrawingSheets = UserDrawingDocument.Sheets Running The Macro 1. Open the Sheet1.CATDrawing document Load the Sheet1.CATScript macro. Run the macro.

18

19 Detail Sheet Definition The drawing detail sheet contains drawing views used as detail in another sheet. The drawing detail sheet line reuses Sheet methods and properties. Methods AddDetail Creates a new drawing detail sheet and adds it to the DrawingSheets collection. AddDetail ( idetailsheetname ) as DrawingSheet idetailsheetname as String The detail sheet name. IsDetail UserSheets.AddDetail ( UserDetailSheetName ) Gets if the sheet is a detail sheet. IsDetail as Boolean = True, the sheet is a detail sheet. = False, the sheet is not a detail sheet. SheetType = UserSheet.IsDetail SetAsDetail Sets a sheet as detail sheet. SetAsDetail UserSheet.SetAsDetail Running The Macro 1. Open the DetailSheet1.CATDrawing document.

20 2. Load the DetailSheet1.CATScript macro. 3. Run the macro.

21 Drawing View View

22 View Definition The drawing view. Methods Activate Activates the drawing view. Activate UserView.Activate Add Creates a new drawing view and adds it to the DrawingViews collection. Add ( iviewname ) as DrawingView iviewname as String The view name. UserViews.Add ( ViewName ) AlignedWithReferenceView Aligns the drawing view with the drawing reference view. See ReferenceView. AlignedWithReferenceView UserView.AlignedWithReferenceView ForceUpdate Updates the view even is not necessary. ForceUpdate

23 UserView.ForceUpdate IsGenerative Gets whether the drawing view has a generative behavior. IsGenerative as Boolean = True, the drawing view has a generative behavior. = False, the drawing view has not a generative behavior. ViewGenerative = UserView.IsGenerative Item Gets a drawing view using its index or its name from the DrawingViews collection. Item ( iindex ) as DrawingView iindex as Variant The view index (Long) or view name (String). Set UserView = UserViews.Item ( ViewIndex ) Remove Removes a drawing view using its index or its name from the DrawingViews collection. Remove ( iindex ) iindex as Variant The view index (Long) or view name (String). UserViews.Remove ( ViewIndex ) UnAlignedWithReferenceView Unaligns the drawing view with the drawing reference view. See ReferenceView. UnAlignedWithReferenceView UserView.UnAlignedWithReferenceView Update Updates the view.

24 Update UserView.Update Properties ActiveView Gets the active drawing view of the drawing sheet. ActiveView as DrawingView UserActiveView = UserSheet.ActiveView Angle Gets or sets the drawing view angle. Angle as Double ViewAngle = UserView.Angle UserView.Angle = DrawingView Dimensions an object as drawing view. Dim UserView as DrawingView DrawingViews Dimensions an object as drawing views. Dim UserViews as DrawingViews Factory2D Gets or sets the drawing view 2D factory.

25 Factory2D as Factory2D Set UserFactory2D = UserView.Factory2D FrameVisualization Gets or sets the drawing view frame visualization display. FrameVisualization as Boolean = True, the drawing view frame visualization is displayed. = False, the drawing view frame visualization is not displayed. ViewFrameVisualizationDisplay = UserView.FrameVisualization UserView.FrameVisualization = True GenerativeBehavior Gets the drawing view generative behavior. GenerativeBehavior as DrawingViewGenerativeBehavior Set ViewGenerativeBehavior = UserView.GenerativeBehavior GenerativeLinks Gets the drawing view generative links. GenerativeLinks as DrawingViewGenerativeLinks Set ViewGenerativelinks = UserView.GenerativeLinks GeometricElements Gets the drawing view geometric elements. GeometricElements as GeometricElements Set ViewGeometricElements = UserView.GeometricElements ReferenceView Gets or sets the drawing reference view.

26 ReferenceView as Double Scale UserReferenceView = UserView.ReferenceView UserView.ReferenceView = UserFrontView Gets or sets the drawing view scale. Scale as Double ViewScale = UserView.Scale UserView.Scale = Views Gets the collection of drawing views in the drawing sheet. Views as DrawingViews UserDrawingViews = UserSheet.Views x Gets or sets the drawing view X coordinate. x as Double ViewXCoordinate = UserView.x UserView.x = y Gets or sets the drawing view Y coordinate. y as Double ViewYCoordinate = UserView.y UserView.y =

27 Running The Macro 1. Open the View1.CATDrawing document Load the View1.CATScript macro. Run the macro.

28

29 Drawing Basics Properties Update

30 Properties Definition Drawing properties. Methods Properties DrawingDocument Dimensions an object as drawing document. Dim UserDrawingDocument as DrawingDocument Standard Gets or sets the drawing document standard. Standard as Long = 0, ANSI standard. = 1, ISO standard. = 2, JIS standard. UserDrawingSheets = UserDrawingDocument.Sheets

31 Update Definition Updates a drawing elements. Methods Update Updates the drawing document. Update UserDrawingDocument.Update

32 absolute position active view aligned section view associative detail view associativity attribute auxiliary view background sheet background view back-clipping bill of material breakout callout child view clipped view clipping profile cross hatching cut area cutting profile Glossary A A sheet coordinates. A view from which you create any element: another view or 2D dress-up. The view from which section views, section cuts and detail views will be created. This view generally corresponds to either the front view or the isometric view. A section view created from a cutting profile defined from non parallel planes. A detail view associated with a 3D element. In the Drafting workbench, the ability of child view(s) to follow the behavior of the parent view: moving, scaling. In the Drafting workbench, the graphical and/or geometrical properties inherited from 3D element. A view in a direction not necessarily vertical or horizontal. B A sheet dedicated to frames and title blocks. A sheet dedicated to frames and title blocks. A back-clipping removes all the elements behind a pre-defined plane. It can only be applied on an extracted view. Aback-clipping plane is a plane used for generating a back-clipping. A piece of information inserted into the active view of a CATDrawing document. For this, you can be either in the working view or in the background view. A breakout is a partially removed section which allows visualizing a particular element in the view. C A graphical representation of a cutting profile. A view generated from a parent view. A view modified via a clipping profile. A zone to be kept and visualized in a view. A symbolic representation in the form of a pattern used to display a cut area. The cut surfaces on a section view or section cut. A set of planes used to define a section view or section cut.

33 D datum feature An element defining a contacting surface on a part. datum target An element defining a contacting surface on a part and represented by spherical or pointed locating pins. design tree Area of the document window reserved for viewing the design specifications of a drawing, presented in the form of a tree structure. detail view A view corresponding to a zoomed particular area to be visualized. This area to be visualized is defined by a circle or a given polygon. The root feature. Sheets are aggregated in the drawing. Views are drawing aggregated in the sheets. dress-up A graphical attribute of a 2D element. F filter A restriction on elements to be cut in a section view or section cut, or elements to be seen in a projection view. front view A view created from a projection plane. This view is generally used as reference to create a projection view. I isometric view A 3D view that represents a part according to a given projection plane. This view allows a perspective visualization. L lock A locked view is a view in which any graphical modification of the generated 2D elements is forbidden. M main view The view which supports the geometry directly created in the sheet. O object In the Drafting workbench, there are two kinds of object: activated and selected. The view frame of an activated object is displayed in red. offset section view /cut A section view created from a cutting profile defined with several parallel planes. overlay In a multi-model context, all passive elements are called overlayed elements. P parent view A reference view from which another view is generated (for example a front view from which a section view will be created). The view frame of the parent view is displayed in red. Typically the front view is a parent view. See also child view. part A 3D entity obtained by combining different features in the Part Design workbench.

34 projection view section cut section profile section view simple breakout sheet standard template title block unspec breakout view frame A view created from an other view. S A view representing the intersection between the 3D geometry and the cutting profile. See cutting profile. In the Drafting workbench, a view representing the intersection between the 3D geometry and the cutting profile, and all the 3D geometry located behind the cutting profile. A simple breakout removes locally a sectioned part perpendicularly to the current view plane. You will then be able to visualize the remaining visible inside part. A set of views. Several sheets may be created in the Drafting workbench. The international conventions that are supported in the Drafting workbench: ANSI, ISO and JIS. T In the Drafting workbench, an object that is included in the document (for example, the title block). A frame which contains the title block. U An unspec breakout operation removes locally a 3D part. It allows visualizing the inside of a 3D part. It can only be applied to an extracted view. V A square or rectangular frame that contains the geometry and dimensions of the view.

35 Index A Activate, ActiveSheet ActiveView Add, AddDetail AlignedWithReferenceView Angle D Documents.Add Documents.Open DrawingDocument DrawingSheet DrawingSheets DrawingView DrawingViews F Factory2D ForceUpdate, FrameVisualization G GenerateDimensions GenerativeBehavior GenerativeLinks GeometricElements

36 I IsDetail IsGenerative Item, O Orientation P PageSetup.Banner PageSetup.BannerPosition PageSetup.Bottom PageSetup.BottomMargin PageSetup.ChooseBestOrientation PageSetup.FitToPrinterFormat PageSetup.FitToSheetFormat PageSetup.Left PageSetup.LeftMargin PageSetup.Logo PageSetup.MaximumSize PageSetup.Orientation PageSetup.PaperHeight PageSetup.PaperSize PageSetup.PaperWidth PageSetup.Quality PageSetup.RightMargin PageSetup.Rotation PageSetup.TopMargin PageSetup.Zoom PaperSize PrintOut PrintToFile ProjectionMethod

37 R ReferenceView Remove, S Scale, SetAsDetail Sheets Standard U UnAlignedWithReferenceView Update,, V Views X x Y y

Generative Drafting (ISO)

Generative Drafting (ISO) CATIA Training Foils Generative Drafting (ISO) Version 5 Release 8 January 2002 EDU-CAT-E-GDRI-FF-V5R8 1 Table of Contents (1/2) 1. Introduction to Generative Drafting Generative Drafting Workbench Presentation

More information

CATIA Instructor-led Live Online Training Program

CATIA Instructor-led Live Online Training Program Course Outline Introduction & Understanding to CATIA Environment Introduction & Understanding to CATIA interface Starting new file Understand the Sketcher workbench of CATIA V5 Start a new file in the

More information

Tutorial Guide to AutoCAD 2014

Tutorial Guide to AutoCAD 2014 Tutorial Guide to AutoCAD 2014 2D Drawing, 3D Modeling Shawna Lockhart SDC P U B L I C AT I O N S For Microsoft Windows Better Textbooks. Lower Prices. www.sdcpublications.com Visit the following websites

More information

Generative Drafting Overview What's New Getting Started User Tasks

Generative Drafting Overview What's New Getting Started User Tasks Generative Drafting Overview Conventions What's New Getting Started Defining the Drawing Sheet Part Drawing Opening a Part Creating a Front View Creating a Projection View Creating a Section View Creating

More information

Tutorial Guide to AutoCAD 2013

Tutorial Guide to AutoCAD 2013 Tutorial Guide to AutoCAD 2013 2D Drawing, 3D Modeling Shawna Lockhart SDC P U B L I C AT I O N S Schroff Development Corporation For Microsoft Windows Better Textbooks. Lower Prices. www.sdcpublications.com

More information

Tutorial Guide to AutoCAD 2015

Tutorial Guide to AutoCAD 2015 Tutorial Guide to AutoCAD 2015 2D Drawing, 3D Modeling Shawna Lockhart SDC P U B L I C AT I O N S For Microsoft Windows Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org)

More information

Functional Tolerancing and Annotations

Functional Tolerancing and Annotations Functional Tolerancing and Annotations Preface Getting Started Basic Tasks Advanced Tasks Workbench Description Customizing Glossary Index Dassault Systèmes 1994-2000. All rights reserved. Preface CATIA

More information

Getting Started. Before You Begin, make sure you customized the following settings:

Getting Started. Before You Begin, make sure you customized the following settings: Getting Started Getting Started Before getting into the detailed instructions for using Generative Drafting, the following tutorial aims at giving you a feel of what you can do with the product. It provides

More information

CATIA V5 Workbook Release V5-6R2013

CATIA V5 Workbook Release V5-6R2013 CATIA V5 Workbook Release V5-6R2013 Richard Cozzens SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following websites to learn more

More information

Mechanical Design. CATIA - 3D Functional Tolerancing and Annotations 2 (FTA) CATIA V5R20

Mechanical Design. CATIA - 3D Functional Tolerancing and Annotations 2 (FTA) CATIA V5R20 Mechanical Design CATIA - 3D Functional Tolerancing and Annotations 2 (FTA) CATIA V5R20 Mechanical Design CATIA - 3D Functional Tolerancing and Annotations Define and manage tolerance specifications and

More information

Table of Contents. Dedication Preface. Chapter 1: Introduction to CATIA V5-6R2015. Chapter 2: Drawing Sketches in the Sketcher Workbench-I.

Table of Contents. Dedication Preface. Chapter 1: Introduction to CATIA V5-6R2015. Chapter 2: Drawing Sketches in the Sketcher Workbench-I. Table of Contents Dedication Preface iii xvii Chapter 1: Introduction to CATIA V5-6R2015 Introduction to CATIA V5-6R2015 1-2 CATIA V5 Workbenches 1-2 System Requirements 1-4 Getting Started with CATIA

More information

Mechanical Design CATIA - Interactive Drafting 1 (ID1) CATIA V5R20

Mechanical Design CATIA - Interactive Drafting 1 (ID1) CATIA V5R20 Mechanical Design CATIA - Interactive Drafting 1 (ID1) CATIA V5R20 Mechanical Design CATIA - Interactive Drafting Address 2D design and drawing production requirements. Product overview Interactive Drafting

More information

COURSE CONTENTS FOR THE AVTS COURSES

COURSE CONTENTS FOR THE AVTS COURSES Revision: 00 LEARNING CONTENT Page 1 of 14 COURSE CONTENTS FOR THE AVTS COURSES AT CAD- CAM LAB, ATI, VIDYANAGAR, HYDERABAD Revision: 00 LEARNING CONTENT Page 2 of 14 III COURSE CODE CAD-01 IV COURSE TITLE

More information

Working With Drawing Views-I

Working With Drawing Views-I Chapter 12 Working With Drawing Views-I Learning Objectives After completing this chapter you will be able to: Generate standard three views. Generate Named Views. Generate Relative Views. Generate Predefined

More information

This section will take you through the process of drawing an oblique block. Your entire part, in all views, should look like Figure 1.

This section will take you through the process of drawing an oblique block. Your entire part, in all views, should look like Figure 1. Oblique Block Preface This section will take you through the process of drawing an oblique block. Your entire part, in all views, should look like Figure 1. Figure 1 68 / 3D Scripted Drawings: Oblique

More information

DRAFT Solid Edge ST4 Update Training Draft

DRAFT Solid Edge ST4 Update Training Draft DRAFT Solid Edge ST4 Update Training Draft Presented by: Steve Webb Topics Parts List Table Titles Column Headers Headers Merging Header Rotate Cell Aspect Ratio Cell Formatting Overriding Disabled Cells

More information

User Guide V10 SP1 Addendum

User Guide V10 SP1 Addendum Alibre Design User Guide V10 SP1 Addendum Copyrights Information in this document is subject to change without notice. The software described in this document is furnished under a license agreement or

More information

Education Curriculum Combined Specialist

Education Curriculum Combined Specialist Education Curriculum Combined Specialist Invest your time in imagining next generation designs. Here s what we will teach you to give shape to your imagination. CATIA Combined Specialist Course CATIA Mechanical

More information

1: INTRODUCTION TO AUTOCAD

1: INTRODUCTION TO AUTOCAD AutoCAD syllabus 1: INTRODUCTION TO AUTOCAD Starting AutoCAD AutoCAD Screen Components Drawing Area Command Window Navigation bar Status bar Invoking Commands in AutoCAD Keyboard Ribbon Application Menu

More information

Release Highlights for BluePrint-PCB Product Version 2.0.1

Release Highlights for BluePrint-PCB Product Version 2.0.1 Release Highlights for BluePrint-PCB Product Version 2.0.1 Introduction BluePrint Version 2.0.1 is a rolling release for BluePrint V2.0. BluePrint rolling releases are delivered as needed and allow us

More information

SOLIDWORKS 2015 and Engineering Graphics

SOLIDWORKS 2015 and Engineering Graphics SOLIDWORKS 2015 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 following

More information

Introduction to Autodesk Inventor for F1 in Schools (Australian Version)

Introduction to Autodesk Inventor for F1 in Schools (Australian Version) Introduction to Autodesk Inventor for F1 in Schools (Australian Version) F1 in Schools race car In this course you will be introduced to Autodesk Inventor, which is the centerpiece of Autodesk s Digital

More information

SolidWorks 95 User s Guide

SolidWorks 95 User s Guide SolidWorks 95 User s Guide Disclaimer: The following User Guide was extracted from SolidWorks 95 Help files and was not originally distributed in this format. All content 1995, SolidWorks Corporation Contents

More information

Designing in Context. In this lesson, you will learn how to create contextual parts driven by the skeleton method.

Designing in Context. In this lesson, you will learn how to create contextual parts driven by the skeleton method. Designing in Context In this lesson, you will learn how to create contextual parts driven by the skeleton method. Lesson Contents: Case Study: Designing in context Design Intent Stages in the Process Clarify

More information

and Engineering Graphics

and Engineering Graphics SOLIDWORKS 2018 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 following

More information

SolidWorks Part I - Basic Tools SDC. Includes. Parts, Assemblies and Drawings. Paul Tran CSWE, CSWI

SolidWorks Part I - Basic Tools SDC. Includes. Parts, Assemblies and Drawings. Paul Tran CSWE, CSWI SolidWorks 2015 Part I - Basic Tools Includes CSWA Preparation Material Parts, Assemblies and Drawings Paul Tran CSWE, CSWI SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered

More information

Creo Revolve Tutorial

Creo Revolve Tutorial Creo Revolve Tutorial Setup 1. Open Creo Parametric Note: Refer back to the Creo Extrude Tutorial for references and screen shots of the Creo layout 2. Set Working Directory a. From the Model Tree navigate

More information

Autodesk Inventor. In Engineering Design & Drafting. By Edward Locke

Autodesk Inventor. In Engineering Design & Drafting. By Edward Locke Autodesk Inventor In Engineering Design & Drafting By Edward Locke Engineering Design Drafting Essentials Working Drawings: Orthographic Projection Views (multi-view, auxiliary view, details and sections)

More information

Training Guide Basics

Training Guide Basics Training Guide Basics 2014, Missler Software. 7, Rue du Bois Sauvage F-91055 Evry, FRANCE Web: www.topsolid.com E-mail: info@topsolid.com All rights reserved. TopSolid Design Basics This information is

More information

Shaft Hanger - SolidWorks

Shaft Hanger - SolidWorks ME-430 INTRODUCTION TO COMPUTER AIDED DESIGN Shaft Hanger - SolidWorks BY: DR. HERLI SURJANHATA ASSIGNMENT Submit TWO isometric views of the Shaft Hanger with your report, 1. Shaded view of the trimetric

More information

Creo Parametric 4.0 Basic Design

Creo Parametric 4.0 Basic Design Creo Parametric 4.0 Basic Design Contents Table of Contents Introduction...1 Objective of This Textbook...1 Textbook Outline...2 Textbook Conventions...3 Exercise Files...3 System Configuration...4 Notes

More information

Part Design Fundamentals

Part Design Fundamentals Part Design Fundamentals 1 Course Presentation Objectives of the course In this course you will learn basic methods to create and modify solids features and parts Targeted audience New CATIA V5 Users 1

More information

Computer-Aided Three-Dimensional

Computer-Aided Three-Dimensional CATIA CORE TOOLS Computer-Aided Three-Dimensional Interactive Application MICHEL MICHAUD Mc Graw Hill New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi San Juan Seoul Singapore

More information

Top Down Assembly Modeling Release Wildfire 2.0

Top Down Assembly Modeling Release Wildfire 2.0 Top Down Assembly Modeling Release Wildfire 2.0 Note: Comprehensive Modeling Assignment This is a 30 point assignment as such takes the place of the final exam. Four Plate Mold Base, Inner Two Plates Begin

More information

Published on Online Documentation for Altium Products (http://www.altium.com/documentation)

Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Home > Draftsman Enhancements A New Era for Documentation Modified by Jason Howie on Dec 4, 2017 The Altium Designer

More information

Technical Drawing 101 with AutoCAD 2018

Technical Drawing 101 with AutoCAD 2018 Technical Drawing 101 with AutoCAD 2018 A Multidisciplinary Guide to Drafting Theory and Practice with Video Instruction Douglas Smith Antonio Ramirez Ashleigh Fuller SDC PUBLICATIONS Better Textbooks.

More information

Creo Parametric 2.0: Introduction to Solid Modeling. Creo Parametric 2.0: Introduction to Solid Modeling

Creo Parametric 2.0: Introduction to Solid Modeling. Creo Parametric 2.0: Introduction to Solid Modeling Creo Parametric 2.0: Introduction to Solid Modeling 1 2 Part 1 Class Files... xiii Chapter 1 Introduction to Creo Parametric... 1-1 1.1 Solid Modeling... 1-4 1.2 Creo Parametric Fundamentals... 1-6 Feature-Based...

More information

M TE S Y S LT U A S S A

M TE S Y S LT U A S S A Dress-Up Features In this lesson you will learn how to place dress-up features on parts. Lesson Contents: Case Study: Timing Chain Cover Design Intent Stages in the Process Apply a Draft Create a Stiffener

More information

A Concise Introduction to Engineering Graphics

A Concise Introduction to Engineering Graphics A Concise Introduction to Engineering Graphics Fourth Edition Including Worksheet Series A Timothy J. Sexton, Professor Department of Industrial Technology Ohio University BONUS Book on CD: TECHNICAL GRAPHICS

More information

Using Dynamic Views. Module Overview. Module Prerequisites. Module Objectives

Using Dynamic Views. Module Overview. Module Prerequisites. Module Objectives Using Dynamic Views Module Overview The term dynamic views refers to a method of composing drawings that is a new approach to managing projects. Dynamic views can help you to: automate sheet creation;

More information

Part 8: The Front Cover

Part 8: The Front Cover Part 8: The Front Cover 4 Earpiece cuts and housing Lens cut and housing Microphone cut and housing The front cover is similar to the back cover in that it is a shelled protrusion with screw posts extruding

More information

AECOsim Building Designer. Quick Start Guide. Chapter 2 Making the Mass Model Intelligent Bentley Systems, Incorporated.

AECOsim Building Designer. Quick Start Guide. Chapter 2 Making the Mass Model Intelligent Bentley Systems, Incorporated. AECOsim Building Designer Quick Start Guide Chapter 2 Making the Mass Model Intelligent 2012 Bentley Systems, Incorporated www.bentley.com/aecosim Table of Contents Making the Mass Model Intelligent...3

More information

Autodesk Inventor 2016

Autodesk Inventor 2016 Parametric Modeling with Autodesk Inventor 2016 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

ARC By default AutoCAD will draw an ARC through three selected points. Options can be set at the start and within the command.

ARC By default AutoCAD will draw an ARC through three selected points. Options can be set at the start and within the command. DFTG 1309 Final Review Notes I. Draw commands: LINE (draws a series of lines) Valid input: Pick button Cartesian coordinates Absolute (2,3) Relative rectangular (@2,3) Relative polar (@ 2

More information

Starting a 3D Modeling Part File

Starting a 3D Modeling Part File 1 How to Create a 3D Model and Corresponding 2D Drawing with Dimensions, GDT (Geometric Dimensioning and Tolerance) Symbols and Title Block in SolidWorks 2013-2014 By Edward Locke This tutorial will introduce

More information

Introduction to CATIA V5

Introduction to CATIA V5 Introduction to CATIA V5 Release 17 (A Hands-On Tutorial Approach) Kirstie Plantenberg University of Detroit Mercy SDC PUBLICATIONS Schroff Development Corporation www.schroff.com Better Textbooks. Lower

More information

n 4ce Professional Module

n 4ce Professional Module n 4ce Fact Sheet n 4ce Professional Module For the discerning user with specialist needs, n 4ce Professional provides extra facilities in Design and 3D presentations. Using the same platform as Lite, extra

More information

Prismatic Machining Preparation Assistant

Prismatic Machining Preparation Assistant Prismatic Machining Preparation Assistant Overview Conventions What's New Getting Started Open the Design Part and Start the Workbench Automatically Create All Machinable Features Open the Manufacturing

More information

Teach Yourself UG NX Step-by-Step

Teach Yourself UG NX Step-by-Step Teach Yourself UG NX Step-by-Step By Hui Zhang Ph.D., P.Eng. www.geocities.com/zhanghui1998 Table of Contents Chapter 1 Introduction... 1 1.1 UG NX User Interface... 1 1.2 Solid Modeling Fundamentals...

More information

Parametric Modeling with Creo Parametric 2.0

Parametric Modeling with Creo Parametric 2.0 Parametric Modeling with Creo Parametric 2.0 An Introduction to Creo Parametric 2.0 Randy H. Shih SDC PUBLICATIONS Schroff Development Corporation Better Textbooks. Lower Prices. www.sdcpublications.com

More information

Mechanical Design. CATIA - Weld Design 1 (WD1) CATIA V5R18

Mechanical Design. CATIA - Weld Design 1 (WD1) CATIA V5R18 Mechanical Design CATIA - Weld Design 1 (WD1) CATIA V5R18 Mechanical Design CATIA - Weld Design Design advanced welded products based on process definition and rules. Product overview CATIA - Weld Design

More information

Parametric Modeling. with. Autodesk Inventor Randy H. Shih. Oregon Institute of Technology SDC

Parametric Modeling. with. Autodesk Inventor Randy H. Shih. Oregon Institute of Technology SDC Parametric Modeling with Autodesk Inventor 2009 Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS Schroff Development Corporation www.schroff.com Better Textbooks. Lower Prices. iii Table of

More information

Engineering Working Drawings Basics

Engineering Working Drawings Basics Engineering Working Drawings Basics Engineering graphics is an effective way of communicating technical ideas and it is an essential tool in engineering design where most of the design process is graphically

More information

TUTORIAL 4: Combined Axial and Bending Problem Sketch Path Sweep Initial Project Space Setup Static Structural ANSYS

TUTORIAL 4: Combined Axial and Bending Problem Sketch Path Sweep Initial Project Space Setup Static Structural ANSYS TUTORIAL 4: Combined Axial and Bending Problem In this tutorial you will learn how to draw a bar that has bends along its length and therefore will have both axial and bending stresses acting on cross-sections

More information

Graz University of Technology CATIA V5. Basic Training. CAx in Automotive and Engine Technology Dipl.-Ing. Dr.techn.

Graz University of Technology CATIA V5. Basic Training. CAx in Automotive and Engine Technology Dipl.-Ing. Dr.techn. CATIA V5 Basic Training CAx in Automotive and Engine Technology 313.067 Dipl.-Ing. Dr.techn. Michael Lang Preface The present script includes an introduction of the main features in the 3D design software

More information

Lesson 4 Holes and Rounds

Lesson 4 Holes and Rounds Lesson 4 Holes and Rounds 111 Figure 4.1 Breaker OBJECTIVES Sketch arcs in sections Create a straight hole through a part Complete a Sketched hole Understand the Hole Tool Use Info to extract information

More information

Below are the desired outcomes and usage competencies based on the completion of Project 4.

Below are the desired outcomes and usage competencies based on the completion of Project 4. Engineering Design with SolidWorks Project 4 Below are the desired outcomes and usage competencies based on the completion of Project 4. Project Desired Outcomes: An understanding of the customer s requirements

More information

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE. Introduction to Computers and AutoCAD

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE. Introduction to Computers and AutoCAD SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE COURSE TITLE: Introduction to Computers and CODE NO. : SEMESTER: 2 PROGRAM: AUTHOR: Civil Engineering Technician Construction

More information

Mechanical Drawing. Unit 2 Study Guide for Chapters 6-10

Mechanical Drawing. Unit 2 Study Guide for Chapters 6-10 Mechanical Drawing Unit 2 Study Guide for Chapters 6-10 Chapter 6 Multiview Drawing Section 6.1 Understanding Orthographic Projection A. Technical Drawing: How can a technical drawing give more accurate

More information

Principles and Practice:

Principles and Practice: Principles and Practice: An Integrated Approach to Engineering Graphics and AutoCAD 2014 Randy H. Shih Multimedia Disc SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Video presentations

More information

Custom Pillow Block Design Protrusion, Cut, Round, Draft (Review) Drawing (Review) Inheritance Feature (New) Creo 2.0

Custom Pillow Block Design Protrusion, Cut, Round, Draft (Review) Drawing (Review) Inheritance Feature (New) Creo 2.0 Custom Pillow Block Design Protrusion, Cut, Round, Draft (Review) Drawing (Review) Inheritance Feature (New) Creo 2.0 Rotatable pdf files: Casting Machining Grease Fitting Boss The general design of the

More information

Alternatively, the solid section can be made with open line sketch and adding thickness by Thicken Sketch.

Alternatively, the solid section can be made with open line sketch and adding thickness by Thicken Sketch. Sketcher All feature creation begins with two-dimensional drawing in the sketcher and then adding the third dimension in some way. The sketcher has many menus to help create various types of sketches.

More information

This section will take you through the process of drawing a fixture base. Your entire part, in all views, should look like Figure 1.

This section will take you through the process of drawing a fixture base. Your entire part, in all views, should look like Figure 1. Fixture Base Preface This section will take you through the process of drawing a fixture base. Your entire part, in all views, should look like Figure 1. Figure 1 92 / Scripted 3D Drawings: Fixture Base

More information

Project EAST Course Outline

Project EAST Course Outline Project EAST Course Outline Classroom 1 Orientation 5 Philosophy East Philosophy ROP Philosophy Working As A Team Interpersonal Skills Communication Role of the Team Team Goals and Success Responsibility

More information

Modeling Basic Mechanical Components #1 Tie-Wrap Clip

Modeling Basic Mechanical Components #1 Tie-Wrap Clip Modeling Basic Mechanical Components #1 Tie-Wrap Clip This tutorial is about modeling simple and basic mechanical components with 3D Mechanical CAD programs, specifically one called Alibre Xpress, a freely

More information

CMI User Day - Product Strategy

CMI User Day - Product Strategy CMI User Day - Product Strategy CMI User Day 2003 New Orleans, USA CMI User Day 2003 New Orleans, USA Tino Schlitt T-Systems PLM Solutions CATIA Metaphase Interface - Overview Integration of CATIA V4 /

More information

Dharmapuri LAB MANUAL. : B.E. - Civil Engineering Year & Semester : I Year / II Semester

Dharmapuri LAB MANUAL. : B.E. - Civil Engineering Year & Semester : I Year / II Semester Dharmapuri 636 703 LAB MANUAL Regulation : 2013 Branch : B.E. - Civil Engineering Year & Semester : I Year / II Semester CE6261-COMPUTER AIDED DRAFTING AND MODELLING LABORATORY ICAL ENG VVIT DEPARTMENT

More information

Drafting Skills. Use basic measurement systems Apply the elements of the English/Imperial system and the metric system.

Drafting Skills. Use basic measurement systems Apply the elements of the English/Imperial system and the metric system. CADD s Fundamental Drafting s Drafting s 1(a) Use drawing media and related drafting materials. Identify the characteristics and types of vellum, mylar, plotting pens, plotting pencils, ink and toner cartridges.

More information

Principles and Practice

Principles and Practice Principles and Practice An Integrated Approach to Engineering Graphics and AutoCAD 2016 Randy H. Shih SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org)

More information

V4 Integration. CATIA V5 Training Exercises. V4 Integration. Version 5 Release 19 January 2009 EDU_CAT_EN_V4I_FX_V5R19. Copyright DASSAULT SYSTEMES 1

V4 Integration. CATIA V5 Training Exercises. V4 Integration. Version 5 Release 19 January 2009 EDU_CAT_EN_V4I_FX_V5R19. Copyright DASSAULT SYSTEMES 1 CATIA V5 Training Exercises V4 Integration Version 5 Release 19 January 2009 EDU_CAT_EN_V4I_FX_V5R19 1 Table of Contents (1/2) Recap Exercise 1 4 Design Intent 5 Design Process 6 Step 1: Open a V4 Model

More information

Revit Structure 2012 Basics:

Revit Structure 2012 Basics: SUPPLEMENTAL FILES ON CD Revit Structure 2012 Basics: Framing and Documentation Elise Moss autodesk authorized publisher SDC PUBLICATIONS www.sdcpublications.com Schroff Development Corporation Structural

More information

Dimensioning. Dimensions: Are required on detail drawings. Provide the shape, size and location description: ASME Dimensioning Standards

Dimensioning. Dimensions: Are required on detail drawings. Provide the shape, size and location description: ASME Dimensioning Standards Dimensioning Dimensions: Are required on detail drawings. Provide the shape, size and location description: - Size dimensions - Location dimensions - Notes Local notes (specific notes) General notes ASME

More information

Explanation of buttons used for sketching in Unigraphics

Explanation of buttons used for sketching in Unigraphics Explanation of buttons used for sketching in Unigraphics Sketcher Tool Bar Finish Sketch is for exiting the Sketcher Task Environment. Sketch Name is the name of the current active sketch. You can also

More information

An Introduction to Autodesk Inventor 2011 and AutoCAD Randy H. Shih SDC PUBLICATIONS. Schroff Development Corporation

An Introduction to Autodesk Inventor 2011 and AutoCAD Randy H. Shih SDC PUBLICATIONS.   Schroff Development Corporation An Introduction to Autodesk Inventor 2011 and AutoCAD 2011 Randy H. Shih SDC PUBLICATIONS www.sdcpublications.com Schroff Development Corporation An Introduction to Autodesk Inventor 2011 and AutoCAD 2011

More information

< Then click on this icon on the vertical tool bar that pops up on the left side.

< Then click on this icon on the vertical tool bar that pops up on the left side. Pipe Cavity Tutorial Introduction The CADMAX Solid Master Tutorial is a great way to learn about the benefits of feature-based parametric solid modeling with CADMAX. We have assembled several typical parts

More information

Advance Concrete. Tutorial

Advance Concrete. Tutorial Advance Concrete Tutorial Table of contents About this tutorial... 9 How to use this guide... 10 Lesson 1: Creating a building grid... 11 Step 1: Create a default building grid... 11 Step 2: Set the distances

More information

Lesson 6 2D Sketch Panel Tools

Lesson 6 2D Sketch Panel Tools Lesson 6 2D Sketch Panel Tools Inventor s Sketch Tool Bar contains tools for creating the basic geometry to create features and parts. On the surface, the Geometry tools look fairly standard: line, circle,

More information

Release Notes - Fixes in Tekla Structures 2016i PR1

Release Notes - Fixes in Tekla Structures 2016i PR1 Release Notes - Fixes in Tekla Structures 2016i PR1, you can now set the to either or. is modified., the ID of the connection plate is not changed anymore when the connection now uses normal rebar groups

More information

Starting a New Drawing with a Title Block and Border

Starting a New Drawing with a Title Block and Border Starting a New Drawing with a Title Block and Border From the File menu select New. Within the New file menu toggle the option Drawing, name the file and turn Off the toggle Use Default Template. Select

More information

Anchor Block Draft Tutorial

Anchor Block Draft Tutorial Anchor Block Draft Tutorial In the following tutorial you will create a drawing of the anchor block shown. The tutorial covers such topics as creating: Orthographic views Section views Auxiliary views

More information

ENGINEERING GRAPHICS ESSENTIALS

ENGINEERING GRAPHICS ESSENTIALS ENGINEERING GRAPHICS ESSENTIALS with AutoCAD 2012 Instruction Introduction to AutoCAD Engineering Graphics Principles Hand Sketching Text and Independent Learning CD Independent Learning CD: A Comprehensive

More information

Number Object Category Attribute Name Explanation Examples Further comments

Number Object Category Attribute Name Explanation Examples Further comments 1 STORY 2 GRID 3 COLUMN 2 Story Elevation Absolute elevation for story (the name "story" is prefered over "level", as level is used in e.g. Revit Typically, our elevations for a project are all relative

More information

Official Guide to Certified SolidWorks Associate Exams: CSWA, CSDA, CSWSA-FEA

Official Guide to Certified SolidWorks Associate Exams: CSWA, CSDA, CSWSA-FEA Official Guide to Certified SolidWorks Associate Exams: CSWA, CSDA, CSWSA-FEA SolidWorks 2012-2015 An authorized CSWA preparation exam guide with additional information on the CSDA and CSWSA-FEA exams

More information

Autodesk Advance Steel. Drawing Style Manager s guide

Autodesk Advance Steel. Drawing Style Manager s guide Autodesk Advance Steel Drawing Style Manager s guide TABLE OF CONTENTS Chapter 1 Introduction... 5 Details and Detail Views... 6 Drawing Styles... 6 Drawing Style Manager... 8 Accessing the Drawing Style

More information

Tools for Design. with VEX Robot Kit: Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS

Tools for Design. with VEX Robot Kit: Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS Tools for Design with VEX Robot Kit: AutoCAD 2011 and Autodesk Inventor 2011 2D Drawing 3D Modeling Hand Sketching Randy H. Shih Oregon Institute of Technology INSIDE: SUPPLEMENTAL FILES ON CD SDC PUBLICATIONS

More information

Technical English -I 4 th week ENGINEERING DRAWING

Technical English -I 4 th week ENGINEERING DRAWING Technical English -I 4 th week ENGINEERING DRAWING What is engineering drawing? It is the art of representation of geometrical objects on a drawing sheet. An engineering drawing is used to fully and clearly

More information

Oblique Surfaces. Obl-1. Surface A is cut at an angle to all three reference planes. It will appear foreshortened in all the regular views.

Oblique Surfaces. Obl-1. Surface A is cut at an angle to all three reference planes. It will appear foreshortened in all the regular views. Oblique Surfaces Compound ngle Surfaces Oblique Surfaces in 3D Space Dimensioning Oblique Surfaces Modeling Oblique Surfaces ase Object Create Reference Plane Defining Object-Extents Oblique CutOut Special

More information

Rhinoceros modeling tools for designers. Using Layouts in Rhino 5

Rhinoceros modeling tools for designers. Using Layouts in Rhino 5 Rhinoceros modeling tools for designers Using Layouts in Rhino 5 RH50-TM-LAY-Apr-2014 Rhinoceros v5.0, Layouts, Training Manual Revised April 8, 2014, Mary Fugier mary@mcneel.com Q&A April 8, 2014, Lambertus

More information

Drawing and Assembling

Drawing and Assembling Youth Explore Trades Skills Description In this activity the six sides of a die will be drawn and then assembled together. The intent is to understand how constraints are used to lock individual parts

More information

Advance Steel. Drawing Style Manager s guide

Advance Steel. Drawing Style Manager s guide Advance Steel Drawing Style Manager s guide TABLE OF CONTENTS Chapter 1 Introduction...7 Details and Detail Views...8 Drawing Styles...8 Drawing Style Manager...9 Accessing the Drawing Style Manager...9

More information

AutoCAD Tutorial First Level. 2D Fundamentals. Randy H. Shih SDC. Better Textbooks. Lower Prices.

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

More information

Multiviews and Auxiliary Views

Multiviews and Auxiliary Views Multiviews and Auxiliary Views Multiviews and Auxiliary Views Objectives Explain orthographic and multiview projection. Identifying the six principal views. Apply standard line practices to multiviews

More information

Basic Features. In this lesson you will learn how to create basic CATIA features. Lesson Contents: CATIA V5 Fundamentals- Lesson 3: Basic Features

Basic Features. In this lesson you will learn how to create basic CATIA features. Lesson Contents: CATIA V5 Fundamentals- Lesson 3: Basic Features Basic Features In this lesson you will learn how to create basic CATIA features. Lesson Contents: Case Study: Basic Features Design Intent Stages in the Process Determine a Suitable Base Feature Create

More information

Mastering AutoCAD 2D

Mastering AutoCAD 2D Course description: Mastering AutoCAD 2D Design and shape the world around you with the powerful, flexible features found in AutoCAD software, one of the world s leading 2D design applications. With robust

More information

Introduction to Sheet Metal Features SolidWorks 2009

Introduction to Sheet Metal Features SolidWorks 2009 SolidWorks 2009 Table of Contents Introduction to Sheet Metal Features Base Flange Method Magazine File.. 3 Envelopment & Development of Surfaces.. 14 Development of Transition Pieces.. 23 Conversion to

More information

06/17/02 Page 1 of 12

06/17/02 Page 1 of 12 Understanding the Graphical User Interface When you start AutoCAD, the AutoCAD window opens. The window is your design work space. It contains elements that you use to create your designs and to receive

More information

Lesson 4 Extrusions OBJECTIVES. Extrusions

Lesson 4 Extrusions OBJECTIVES. Extrusions Lesson 4 Extrusions Figure 4.1 Clamp OBJECTIVES Create a feature using an Extruded protrusion Understand Setup and Environment settings Define and set a Material type Create and use Datum features Sketch

More information