Interfacing CAD and Manufacturing Cost Estimation Software using COM/OLE
|
|
|
- Horace Woods
- 9 years ago
- Views:
Transcription
1 PROCEEDINGS OF THE INTERNATIONAL CIRP DESIGN SEMINAR KTH STOCKHOLM, SWEDEN, 6-8 JUNE 2001, PP Interfacing CAD and Manufacturing Cost Estimation Software using COM/OLE Y. Liu, A.H. Basson Department of Mechanical Engineering, Stellenbosch University, Stellenbosch, South Africa Abstract: This paper presents a case study in which COM/OLE technology was used to develop a link between AutoCad and the Cost Estimator (manufacturing cost estimation software developed by the authors' research group). The link is intended to assist designers in relating AutoCad geometric entities to manufacture features quickly and easily. It demonstrates the use of COM technology for developing an interface for linking different applications written in different computer languages. Keywords: AutoCad, Computer Interface, Component Object Model 1 INTRODUCTION Great emphasis is placed on reducing manufacturing cost through product design. It is widely accepted that about 70% of the life cycle cost of a product is fixed during the early design phases. There is therefore considerable interest in developing design tools and aids for the online cost estimation at early design stages. These tools are required to give designers quick feedback to optimise their designs. In other words, effective integration of conceptual design, conceptual process planning and cost estimation is required. Research in this area has received considerable attention in recent years, e.g. Hill et al. [1], Peng and Trappey [2], Jayaram and Myklebus [3], Bidanda et al. [4] and Leibl [5]. For AutoCad applications, Tsai and Chang [6] have produced a geometric tolerance definition system, and Zhao and Ridgway [7] developed a CADEXCATS software package to assist in the selection of tools for turning operations. Previous research often used neutral data exchange formats, such as IGES, to transfer information between software applications. This approach limits the information to the types provided for in the neutral format's specifications. It does further not allow for selective updates, such as when a part of a design has been changed and a corresponding update of the manufacturing cost estimate is required. To overcome these limitations, specific software can be developed to interface two or more software packages and facilitate data transfer between the applications. The authors' research is aimed at manufacturing cost estimation during the later phases of conceptual design and the early phases of detailed design. Many design decisions regarding manufacturing aspects are made during these phases, and cost estimations (even though they may be crude) will be very valuable in trade-off studies. During this phase, however, the CAD models will typically be incomplete as manufacturing decisions have to be made before all the finer details of a design can be included in the CAD models. Cost estimation during these phases therefore requires inputs from the designer. These inputs are typically the intended (or candidate) manufacturing processes and quantitative information about the manufacturing features required for obtaining a cost estimate. Some of the quantitative information will usually be present in the incomplete CAD model. 2 LINKING CAD AND COST ESTIMATION SOFTWARE The preceding section clearly indicates the advantages that can be gained by linking the manufacturing feature information needed to the appropriate geometric entities in the CAD models. Establishing such a link will ease the work of designer, and also prevent inconsistencies between the CAD model and the cost estimate. In the design phases targeted in this work, frequent design changes must be expected. Frequent updates of the cost estimate must therefore also be done. The software link should expedite these updates. This paper presents a case study in which COM/OLE technology was used to develop such a link between AutoCad and the Cost Estimator (manufacturing cost estimation software developed by the authors' research group). The link's main functions are to allow the designer to relate AutoCad geometric entities to manufacture features quickly and easily, and to facilitate cost estimation updates (after design changes) with the minimum user input. Such a link has to interact with both the CAD and the cost estimation software. As the cost estimation software was developed in-house, its source code could be changed to facilitate interaction. This route was not available for the CAD software. Microsoft Windows-based software can provide a variety of interface options, such as OLE/COM/ActiveX or Visual Basic for Applications (VBA), e.g. Cottrel and Gao [8]. COM (Component Object Model) is a client/server object-based model designed by Microsoft to enable interaction between software components and applications independently of the languages they are written in. Liu [9] introduced a component framework of advanced CAD/CAM applications (CFACA) for featurebased design by using COM technology. Section 4.1
2 briefly outlines the distinctions between OLE, COM and ActiveX. AutoCad provides a number of interfaces for software interaction. These interfaces and their application in the work presented here are outlined in Sections 4.3 and 5. Using such an interface, a software application can access geometric information in an AutoCad drawing (such as the volume of a 3-D solid, the area of a face, the length of a line, etc.) and communicate it to the Cost Estimator software. 3 THE COST ESTIMATOR The Cost Estimator is software that was developed for estimating the manufacturing cost of components and/or assemblies during late concept design or early detail design. The designer can use it to get information such as the material cost, manufacturing cost and total cost of a component or an assembly. The designer can thereby compare the manufacturing costs of design alternatives (e.g. changing the part geometry or using different manufacturing process) and optimise the design accordingly. The Cost Estimator forms part of a larger "Design Assistant". Figure 1 shows the framework of the Design Assistant, with the Cost Estimator's actions in the last three rectangular blocks. Project Selection Problem Assignment yes Project exists? no Project Generation Project Definition a process has been included, the particular elements that comprise the process must be selected from the process library. The information entered in this step constitutes the Concept Process Plan. 3. The user must then provide the appropriate quantitative information for each process element. After completing the entry of the data, the user can examine the manufacturing costs of the design, thus identifying aspects where redesign can have the greatest benefit. The influence of parameters, such as batch size and make/buy decisions, can easily be assessed. All of the data entered by the designer can easily be changed, thus allowing easy evaluation of alternative designs and processes. Explanations of the processes are given to help the designer to consider processes with which he/she is not familiar. Figure 3 shows the cost calculation user interface of the Cost Estimator. Project Assembly1 Assembly2 Part 1 Part 2 Process 6 Process 7 Stock 1 Process 1 Process 2 Process 3 Stock 2 Process 4 Process 5 Specification Development Figure 2: Structure of a Project. Conceptual Design Concept Embodied Design Proposal Defining Assembly Structure Setting up Preliminary Process Plan Estimation of Direct Fabrication Cost Embodied Design Figure 1: Framework of the Cost Estimator in the Design Assistant [10]. To obtain a cost estimate, the user must enter a variety of geometric and manufacturing information (Figure 2) in dialog boxes: 1. The project, assembly structure and bill of materials must be entered into a tree-structure. Each assembly or part's name, description, drawing number and quantity has to be entered. Stock materials must be selected from a stock library. 2. The tree structure is then expanded by adding the manufacturing processes to the same hierarchical level as the sub-assemblies, parts and/or stock materials required to produce a certain part. Where Figure 3: Cost Evaluation in The Cost Estimator. 4 PLATFORM ISSUES AND COM TECHNOLOGY 4.1 COM/OLE/ActiveX An extensive range of options based on COM is available for interfacing different Windows programs
3 [11]. Due to space restrictions only a very brief outline of some of the most common terms is given here. COM is a widely-used component software model. It is an object-oriented programming model for building software applications made up of modular components. COM allows different software modules, written without information about each other, to work together as a single application. COM object creation is language independent (e.g. COM objects can be written in many different programming languages). It enables software components to access software services provided by other components, regardless of whether they involve local function calls, operating system calls, or network communications. COM is also the basis for ActiveX controls, controlling other programs via OLE automation and communicating with objects or programs on other machines (DCOM). OLE (Object Linking and Embedding) is a mechanism that allows users to create and edit documents containing items or objects created by multiple applications. OLE documents, historically called compound documents, integrate various types of data or components. ActiveX is a component-level technology for building applications from reusable parts. It is a subset of COM. An ActiveX control is an active object that may provide interactive or user-controllable functions from within another program or container. It is essentially a COM object in disguise. The primary difference between an ActiveX control and a COM object is that an ActiveX control has a design-time interface. Automation, in this context, is a technology that is based on COM, which enables interoperability among ActiveX components, including OLE components. It was formerly referred to as OLE Automation. Figure 4 illustrates the interrelationships of the technologies mentioned above. OLE Linking Embedding In-Place Activation (Visual Editing) COM OLE Figure 4: COM technology architecture. 4.2 Borland C++ Builder and Delphi ActiveX Controls Type Information C++ Builder and Delphi are object-oriented environments for rapid development of Microsoft Windows applications. C++ Builder is based on C++, and Delphi is based on Pascal. They have similar development environments. Delphi modules can be included in C++ Builder applications and the Delphi routines can then be called by C++ Builder routines. The Cost Estimator was developed in Delphi, and the software linking the Cost Estimator with AutoCad was developed in C++ Builder. The decision to use C++ Builder rather than Delphi for the link software was induced by requirements for future development of the software and collaboration with other research groups. Both Delphi and C++ Builder provide strong support for COM technology and have various functions that can be used to interact with the AutoCad Automation Object through the COM interface. Using these facilities, the link software can access the AutoCad database, get the geometry information from the drawing that the user specifies and then convey this data to the Cost Estimator. 4.3 The Development Tools of AutoCad AutoCad provides various routes for software developers to interface with it [11], i.e. AutoLISP (Auto LISt Processing), ADS (AutoCad Development System; C- based), DCL (Dialog Control Language), ARX (AutoCad Runtime extension; C++ based), VBA (Visual Basic for Applications) and COM/OLE/ActiveX. ARX introduced the concept of communication with AutoCad "objects". The authors initially considered using ARX to develop the software linking the Cost Estimator to AutoCad, but AutoCad only supports Microsoft Visual C++ in ARX. Since objects (or classes in C++ terms) have to be passed to and from DLL's when using ARX, the link software would have had to be developed in Visual C++. However, interfacing Visual C++ to the Delphi code of the Cost Estimator was considered to be impractical. Since COM/OLE/ActiveX is intended to provide software interfaces independent of the compiler being used, this route was chosen instead. The AutoCad ActiveX Automation Object provides a mechanism to manipulate AutoCad programmatically from within or outside of AutoCad, by using COM technology. It does this by exposing various AutoCad objects to the "outside world". Once these objects are exposed, they can be accessed by many different types of programming languages and environments such as AutoCad VBA, MSWord (or Excel) VBA, C++ and Java. A geometric entity in AutoCad, which is exposed as part of the Automation Object, has methods and properties that can be queried directly without understanding the internal database structure of AutoCad. Programming with COM automation is therefore simpler than programming with ARX. Figure 5 show the AutoCad Automation Object and the inter-relationships between the objects contained in it. AutoCAD Application Preference Document Block Dictionaries DimStyles Groups ModelSpace PaperSpace Block Dictionary DimStyle Group 3DFace 3DPoly Arc AttributeRef Circle DimAligned DimAngular Line PolyLine Figure 5: The AutoCad Object Model. The Application object is the root object for the AutoCad ActiveX Automation Object Model. From the Application
4 object, a user can access any of the other objects, or the properties or methods assigned to any object. The Document object, which is actually the current AutoCad drawing, provides access to all the graphical and non-graphical AutoCad objects. These objects are grouped as collections, which allow for easy ordering and processing. The ModelSpace and PaperSpace collections contain all the graphical objects found in the drawing's model and paper space. The non-graphical named objects are found in like-named collections, which also have methods and properties for adding, extracting and counting items in each collection. Each object has associated properties and methods. Properties describe aspects of the individual object, while methods are actions that can be performed on the individual object. Once an object is created, the user can query and edit the object through its properties and methods. For example, a Circle object has the Radius property. To get the radius of the circle, the user can simply query this property to get the value. SelectionSet collection is the collection of all selection sets in the current drawing. SelectionSet is a group of one or more AutoCad objects specified for processing as a single unit. The user can use methods such as SelectAll and SelectOnScreen to get a selected object from an AutoCad drawing. Graphical objects, also known as entities, are the visible objects (lines, circles, arcs and so forth) that make up a drawing. The user can use methods or query properties of the object itself to obtain information about it. The common properties of graphical objects are the EntityName, EntityType and Handle properties. The EntityName is equivalent to the class name of the object, e.g. line, polyline, solid. The EntityType property is a numerical equivalent that can also be used to distinguish between entity types. The Handle is a unique object identifier and is persistent in a drawing for the lifetime of the object. Graphical objects also have specific properties, depending on their object types. For example, a line has StartPoint and EndPoint properties, a circle has CenterPoint and Radius properties, and a 3DSolid has a Volume property. By using these properties, the user can get a part's manufacturing information. 5 LINK DEVELOPMENT The link software interfaces AutoCad to the Cost Estimator, as described in Section 2. As outlined above, COM/OLE interfaces allow communication between AutoCad and the link software, even though they are written in different computer languages. C++ Builder provides access to the Windows Application Program Interface (API) functions that are used in these cases. OLE functions such as GetActiveObject, CreateOleObject and OLEProperty were used. With the appropriate arguments, these functions can access the AutoCad Automation object. The arguments of the OLE functions are often of the "variant" type. This type is encapsulated in the "Variant" class in C++ Builder. The variant type is capable of representing values that change type dynamically; in other words it can assume values of differing types at run-time. The variant type is most commonly used in situations where the actual type to be operated upon changes or is unknown at compile-time. Variants can represent different objects in AutoCad, such as the AutoCad Application, Document and ModelSpace objects, etc. The link software can use the methods and properties of these objects directly to get the geometrical information from the AutoCad drawing. A C++ Builder code fragment that can be used to obtain access to AutoCad objects is given below: Variant CADApp,CADDoc,CADDrawing; CADApp=GetActiveOleObject("AutoCAD.Application"); CADDoc=CADApp.OlePropertyGet("ActiveDocument"); CADDrawing=CADDoc.OlePropertyGet("ModelSpace"); The link software has two modes of operation, i.e. Select Mode and Update Mode. Select Mode This mode is used to: Identify the appropriate geometrical information from an AutoCad drawing through user interaction. Transfer the information to the Cost Estimator so that it can calculate the manufacturing cost. Save the information in a link database. Figure 6 shows the user interface of the Select Mode. Two options for selection are provided. For the "Direct Select" option, the user must select a single entity that has a property corresponding to the geometric information required by the Cost Estimator (e.g. the Radius of a Circle). The link software queries the EntityType property to determine how the required information can be extracted from the entity's properties. The geometrical information and the Handle property of the entities involved are saved in the link database. The Handle property is required in the Update Mode, as described in the next section. Alternatively, for the "User Define" option, the user may select a number of AutoCad entities and the link software combines the information from these entities to calculate the geometrical information required by the Cost Estimator. The latter information is saved in the link database and is communicated to the Cost Estimator. Figure 6: The Select Mode User Interface. The information associated with the various geometrical entities is shown in Table 1. Note that in some cases, the Handle property cannot be saved in the link database, as the required information is not associated with a geometrical property of the corresponding entity. An example of such a situation is when a length is indicated by selecting the corners of a solid object. Whether or not the handle can be saved, has a significant influence during Update Mode.
5 The following C++ Builder code fragment illustrates the operation of Select Mode: CADSet = CADDrawing.OlePropertyGet("SelectionSets"); CADSelect = CADSet.OleFunction("Add","CADSelect"); CADSelect.OleFunction("SelectOnScreen"); int SelectCount = CADSelect.OlePropertyGet("Count"); for(int i=0;i<selectcount;i++) { Variant SelectedObject=CADSelect.OleFunction("Item",i); int SelectedType=SelectedObject.OlePropertyGet("EntityType"); switch (SelectedType ) {... case 8: //Circle CADHandle= SelectedObject.OlePropertyGet("Handle"); String CADprompt = "Get the circle's Radius or Area that this arc contains? R-radius/A-Area: "; String Input=CADUtility.OleFunction("GetString",0,CADprompt); if(input=="r" Input=="R") { double SObRadius; SObRadius = SelectedObject.OlePropertyGet("Radius"); } else if(userinput== "a" UserInput == "A") { SObArea[1][j8]= SelectedObject.OlePropertyGet("Area"); } else { MessageBox(CADWindowHandle,"You didn't select anything","warning",mb_ok); } break;... } } Update Mode To update the cost estimate of a particular part, the designer has to click on an "Update" button in the Cost Estimator. Figure 7 shows the user interface of the Update Mode. Two situations are provided for: Figure 7: The Update Mode User Interface. The first situation occurs when the design has been changed in a way that does not affect the links established in Select Mode. If the required Handle properties were saved during Select Mode, the link software will query the AutoCad drawing, using these Handle properties to get the current properties of the entities. If the properties have not changed, the software takes no further action. If the entities all still exist, the link software allows the designer to accept or reject the update. If it is accepted, the updated values are saved in the link database and transmitted to the Cost Estimator. The second situation occurs: When the entities whose Handle properties were previously recorded in the link database do not exist any more; When the updated values are not accepted by the designer; When the Handle properties were not saved during Select Mode. In this situation, a dialog box similar to the Select Mode dialog (Figure 6) is displayed and the designer must follow a procedure similar to the Select Mode. By using these two modes, the user can easily extract the geometrical information from an AutoCad drawing and use them in the Cost Estimator. 6 SOFTWARE DEVELOPMENT DIFFICULTIES ASSOCIATED WITH USING COM COM technology can bring significant benefits when working with different programming languages. However, the complexity of the COM technology can easily make the software unstable during the development phase. It can even lead to frequent computer crashes or freezes during software development. Some of the crashes or freezes are not repeatable (presumably because the COM server application and the operating system's activities are not controlled by the COM client developer) and are particularly difficult to debug. The use of COM also incurs other limitations in debugging. Integrated Development Environments (IDE's), such as that provided by C++ Builder, do not allow interactive debugging "into" the COM calls. The COM client software developer can therefore not "see" what is happening behind the COM interface of the COM server application. Most of the error messages are generated by the operating system and provide very little useful information for the client software developer. The COM client developer is therefore heavily dependent on the documentation provided by the COM server application developer. 7 CONCLUSIONS The value, in terms of design for manufacturing, of linking CAD software to manufacturing cost estimation software was described. Such a link would be of particular value during the later phases of conceptual design and the early phases of detail design. Since the information in the CAD models will be incomplete during these phases of the design process, the designer has to be involved in establishing the links. This paper describes a link between AutoCad and the Cost Estimator (manufacturing cost estimation software developed by the Department of Mechanical Engineering of the University of Stellenbosch, aimed at simple welded structures manufactured in small quantities). The functions of the Cost Estimator and the usage of COM technology were introduced. The objectives of the link software were also presented. This link was developed in Borland C++ Builder by using COM technology. Two modes are used in the link software: Select Mode and Update Mode. Select Mode is used to prompt the user to pick an object in an AutoCad drawing, calculate the required manufacturing information and communicate this information to the Cost Estimator. Update Mode is used for revising the cost of a changed design and thus to compare the cost of different schemes. The link will substantially reduce the time and effort that the designer has to spend to update the geometry-related information used by the
6 Cost Estimator after doing design changes in the AutoCad drawing. The case study presented here demonstrates that COM provides usable interface capabilities for a link application of this kind. The authors, however, found that software stability and difficulties in debugging the software are particular challenges. In the future, the link software will be extended to work with Mechanical Desktop. 8 ACKNOWLEDGEMENTS The financial support of the National Research Foundation (NRF grant GUN ) and the Stellenbosch University Research Committee is gratefully acknowledged. 9 REFERENCES [1] Hill, T. M., Bleakman, Earl C., Miles, A., 1994, Knowledge-based integrated design/cost system, Factory 2000-Advanced Automation, No. 398, IEE, pp [2] Peng, T. K., Trappey, A. J. C., 1995, User-friend interface development for CAD-based engineering data management system, Symbiosis of Human and Artefact, pp [3] Jayaram, S., Mylebust, A., 1990, Automatic generation of geometry interface between applications programs and CADCAM systems, Computer-Aided Design, Vol. 22, No. 1, pp [4] Bidanda, B., Kandidal, M., Billo, R. E., 1998, Development of an intelligent castability and cost estimation system, Int. J. Prod. Res., Vol. 36, No , pp [5] Leibl, P., Hundal, M., Hoehne, G., 1999, Cost calculation with a feature-based CAD system using modules for calculation, comparison and forecast, Journal of Engineering Design, Vol. 10, No. 1, pp [6] Tsai, J. C., Chang, J. S., 1997, Development of an AutoCad-based geometric tolerancing system, Proceeding of the 1997 ASME Design Engineering. Technical Conf., Sep 14-17, Sacramento, California, DECT97/DAC [7] Zhao, Y., Ridway, K., 1994, Integrating a knowledge based tool selection system with commercial CAD system, Factory 2000-advanced factory automation, IEEE, Oct 3-5, pp [8] Cottrell, S., Gao, J., 2000, Design for high pressure compressor components using object orientated technology, 2000 Int. CIRP Design Seminar, Haifa, Israel, May 16-18, pp [9] Liu, X. D., 2000, CFACA: component framework for feature-based design and processing planning, Computer-Aided Design, Vol. 32, No. 6, pp [10] Schuster, H. R., 1997, A computer aid for specification development, conceptual design and manufacturing cost estimation in mechanical design, Ph.D.- thesis, University of Stellenbosch, South Africa. [11] Ranse, O., 1997, AutoCAD programming in C and C++, Wiley & Sons Inc., New York. [12] Brockschmidt, K., 1995, Inside OLE, 2 nd Ed, Microsoft Press, Washington. Geometry Information Required by the Cost Estimator Different cases of information generation method Different method to get manufacture information Handle saved Need user define width, height, thickness, length use StartPoint and Endpoint to calculate yes no component that form 3D Solid (such as a line that forms the edge of a box) user defines start point and end point no yes distance distance without line connection user defines start point and end point no yes circle radius property of circle yes no hole diameter blended angle the projected area of regular surface ( such as circle, rectangle, arc) two parallel lines user defines these two lines yes no component of 3D solid user defines start point and end point no yes component of standard entity in AutoCad library (such as standard hole) user defines start point and end point no yes two lines user defines these two lines that form this angle yes no two sections of polyline using the control points of the polyline yes no area of circle and arc area property of circle and arc yes no area of triangle area property of the polyline that forms the triangle yes no area of region area property of region yes no the projected area of nonregular surface area non-regular surface area property of spline that forms the non-regular surface no yes volume volume of 3D solid volume property of 3D solid yes no Table 1: Geometrical Information Required by the Cost Estimator
How To Draw In Autocad
DXF Import and Export for EASE 4.0 Page 1 of 9 DXF Import and Export for EASE 4.0 Bruce C. Olson, Dr. Waldemar Richert ADA Copyright 2002 Acoustic Design Ahnert EASE 4.0 allows both the import and export
Convert 2D to 3D in AutoPOL Bend Simulator
Convert 2D to 3D in AutoPOL Bend Simulator This document gives an introduction of how to convert 2D DXF/DWG files into 3D models in AutoPOL Bend simulator. The AutoPOL 3D concept A 3D model with correct
TABLE OF CONTENTS. INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE...
Starting Guide TABLE OF CONTENTS INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE... 7 ADVANCE CONCRETE USER INTERFACE... 7 Other important
An introduction to 3D draughting & solid modelling using AutoCAD
An introduction to 3D draughting & solid modelling using AutoCAD Faculty of Technology University of Plymouth Drake Circus Plymouth PL4 8AA These notes are to be used in conjunction with the AutoCAD software
A TOOL FOR SUPPORTING THE PROCESS OF PROPERTY MANAGEMENT AND THE CREATION OF TECHNICAL DRAWINGS
Nenad Bojčetić Dragan Žeželj Mario Štorga ISSN 1333-1124 A TOOL FOR SUPPORTING THE PROCESS OF PROPERTY MANAGEMENT AND THE CREATION OF TECHNICAL DRAWINGS Summary UDK 744:004.4 CAD applications play a major
MEMS Design Rule Checking: a batch approach for remote operation
SAND98-0205C MEMS Design Rule Checking: a batch approach for remote operation Victor R. Yarberry Sandia National Laboratories Microelectronics Validation PO BOX5800 MS 1072 Albuquerque, NM 87185 [email protected]
Design Process Automation Support through Knowledge Base Engineering
, July 3-5, 2013, London, U.K. Design Process Automation Support through Knowledge Base Engineering Varun Tiwari, Prashant K. Jain, and Puneet Tandon, Member, IAENG Abstract This paper shows the methodology
QUERYING THE COMPONENT DATA OF A GRAPHICAL CADASTRAL DATABASE USING VISUAL LISP PROGRAM
University 1 Decembrie 1918 of Alba Iulia RevCAD 16/2014 QUERYING THE COMPONENT DATA OF A GRAPHICAL CADASTRAL DATABASE USING VISUAL LISP PROGRAM Caius DIDULESCU, Associate Professor PhD eng. - Faculty
A Real Time, Object Oriented Fieldbus Management System
A Real Time, Object Oriented Fieldbus Management System Mr. Ole Cramer Nielsen Managing Director PROCES-DATA Supervisor International P-NET User Organisation Navervej 8 8600 Silkeborg Denmark [email protected]
Migrating Legacy Software Systems to CORBA based Distributed Environments through an Automatic Wrapper Generation Technique
Migrating Legacy Software Systems to CORBA based Distributed Environments through an Automatic Wrapper Generation Technique Hyeon Soo Kim School of Comp. Eng. and Software Eng., Kum Oh National University
Creating 2D Drawings from 3D AutoCAD Models
Creating 2D Drawings from 3D AutoCAD Models David Piggott CrWare, LP GD205-2P This class explores the various techniques in creating 2D part and assembly drawings from 3D AutoCAD models. As part of the
8.3 VCPowerPack (Company: AICOMP Group)
8 nhancements and Add-Ons in the SAP Partner nvironment 8.2.6 Summary The Sybit Configuration Visualizer visualizes the product configured by the user. The visual image is displayed on an additional tab
Understand the Sketcher workbench of CATIA V5.
Chapter 1 Drawing Sketches in Learning Objectives the Sketcher Workbench-I After completing this chapter you will be able to: Understand the Sketcher workbench of CATIA V5. Start a new file in the Part
Extracting Business. Value From CAD. Model Data. Transformation. Sreeram Bhaskara The Boeing Company. Sridhar Natarajan Tata Consultancy Services Ltd.
Extracting Business Value From CAD Model Data Transformation Sreeram Bhaskara The Boeing Company Sridhar Natarajan Tata Consultancy Services Ltd. GPDIS_2014.ppt 1 Contents Data in CAD Models Data Structures
Microsoft Access is an outstanding environment for both database users and professional. Introduction to Microsoft Access and Programming SESSION
539752 ch01.qxd 9/9/03 11:38 PM Page 5 SESSION 1 Introduction to Microsoft Access and Programming Session Checklist Understanding what programming is Using the Visual Basic language Programming for the
CATIA Drafting TABLE OF CONTENTS
TABLE OF CONTENTS Introduction...1 Drafting...2 Drawing Screen...3 Pull-down Menus...4 File...4 Edit...5 View...6 Insert...7 Tools...8 Drafting Workbench...9 Views and Sheets...9 Dimensions and Annotations...10
AutoCAD Architecture 2012 UK Content Tools
AutoCAD Architecture 2012 UK Content Tools Contents Contents... 1 Installation... 2 Loading the utilities... 2 Utilities Overview... 3 Menu and Toolbar... 3 Content Generation... 3 Content Publishing...
While Loops and Animations
C h a p t e r 6 While Loops and Animations In this chapter, you will learn how to use the following AutoLISP functions to World Class standards: 1. The Advantage of Using While Loops and Animation Code
Introduction to CATIA V5
Introduction to CATIA V5 Release 16 (A Hands-On Tutorial Approach) Kirstie Plantenberg University of Detroit Mercy SDC PUBLICATIONS Schroff Development Corporation www.schroff.com www.schroff-europe.com
Edinburgh COLLEGE of ART ARCHITECTURE 3D Modelling in AutoCAD - tutorial exercise The screen The graphics area This is the part of the screen in which the drawing will be created. The command prompt area
Chapter 13 Computer Programs and Programming Languages. Discovering Computers 2012. Your Interactive Guide to the Digital World
Chapter 13 Computer Programs and Programming Languages Discovering Computers 2012 Your Interactive Guide to the Digital World Objectives Overview Differentiate between machine and assembly languages Identify
Database Automation using VBA
Database Automation using VBA UC BERKELEY EXTENSION MICHAEL KREMER, PH.D. E-mail: [email protected] Web Site: www.ucb-access.org Copyright 2010 Michael Kremer All rights reserved. This publication,
Hybrid 2D/3D design The right tool for the right job at the right time
Siemens PLM Software Hybrid 2D/3D design The right tool for the right job at the right time White Paper Incorporating the benefits of 2D and 3D design technologies into a single effective design approach,
CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE)
Chapter 1: Client/Server Integrated Development Environment (C/SIDE) CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Objectives Introduction The objectives are: Discuss Basic Objects
Reverse Literate Programming
Reverse Literate Programming Markus Knasmüller Johannes Kepler University Linz Altenbergerstraße 39 Linz, 4040, Austria Tel. +43 732 2468 7133 Fax +43 732 2468 7138 Internet [email protected]
Pro/ENGINEER Wildfire 4.0 Basic Design
Introduction Datum features are non-solid features used during the construction of other features. The most common datum features include planes, axes, coordinate systems, and curves. Datum features do
SpaceClaim Introduction Training Session. A SpaceClaim Support Document
SpaceClaim Introduction Training Session A SpaceClaim Support Document In this class we will walk through the basic tools used to create and modify models in SpaceClaim. Introduction We will focus on:
10.0-2. Finite Element Modeling
What s New in FEMAP FEMAP 10.0 and 10.0.1 include enhancements and new features in: User Interface on page 3 Meshing on page 23 Mesh Associativity on page 33 Properties on page 33 Functions on page 35
BarTender s ActiveX Automation Interface. The World's Leading Software for Label, Barcode, RFID & Card Printing
The World's Leading Software for Label, Barcode, RFID & Card Printing White Paper BarTender s ActiveX Automation Interface Controlling BarTender using Programming Languages not in the.net Family Contents
Teamcenter s manufacturing process management 8.3. Report Generator Guide. Publication Number PLM00064 E
Teamcenter s manufacturing process management 8.3 Report Generator Guide Publication Number PLM00064 E Proprietary and restricted rights notice This software and related documentation are proprietary to
Deploying Microsoft Operations Manager with the BIG-IP system and icontrol
Deployment Guide Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Welcome to the BIG-IP LTM system -
Robot Task-Level Programming Language and Simulation
Robot Task-Level Programming Language and Simulation M. Samaka Abstract This paper presents the development of a software application for Off-line robot task programming and simulation. Such application
Effective Collaboration using Revit Structure and AutoCAD MEP
REVIT STRUCTURE Effective Collaboration using Revit Structure and AutoCAD MEP This white paper explains how structural engineers using Revit Structure software and mechanical/electrical/plumbing (MEP)
Weld Design. CATIA V5 Training Foils. Weld Design. Copyright DASSAULT SYSTEMES 1. Instructor Notes:
CATIA V5 Training Foils Weld Design Version 5 Release 19 January 2009 EDU_CAT_EN_WD1_FI_V5R19 1 About this course Objectives of the course Upon completion of this course you will be able to: - Weld parts,
Microsoft Office Access 2007 which I refer to as Access throughout this book
Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access
APPLICATIONS AND RESEARCH ON GIS FOR THE REAL ESTATE
APPLICATIONS AND RESEARCH ON GIS FOR THE REAL ESTATE Chengda Lin, Lingkui Meng, Heping Pan School of Remote Sensing Information Engineering Wuhan University, 129 Luoyu Road, Wuhan 430079, China Tel: (86-27)-8740-4336
Basic 2D Design Be sure you have the latest information!
Basic 2D Design mastercam x getting started tutorials Basic 2D Design December 2011 Be sure you have the latest information! Information might have been changed or added since this document was published.
SolidWorks Implementation Guides. Sketching Concepts
SolidWorks Implementation Guides Sketching Concepts Sketching in SolidWorks is the basis for creating features. Features are the basis for creating parts, which can be put together into assemblies. Sketch
Computer Networks/DV2 Lab
Computer Networks/DV2 Lab Room: BB 219 Additional Information: http://ti.uni-due.de/ti/en/education/teaching/ss13/netlab Equipment for each group: - 1 Server computer (OS: Windows Server 2008 Standard)
AUTOMATED CONSTRUCTION PLANNING FOR MULTI-STORY BUILDINGS
AUTOMATED CONSTRUCTION PLANNING FOR MULTI-STORY BUILDINGS Tang-Hung Nguyen 1 ABSTRACT This paper outlines a computer-based framework that can assist construction planners and schedulers in automatically
Space-filling Techniques in Visualizing Output from Computer Based Economic Models
Space-filling Techniques in Visualizing Output from Computer Based Economic Models Richard Webber a, Ric D. Herbert b and Wei Jiang bc a National ICT Australia Limited, Locked Bag 9013, Alexandria, NSW
Basic AutoSketch Manual
Basic AutoSketch Manual Instruction for students Skf-Manual.doc of 3 Contents BASIC AUTOSKETCH MANUAL... INSTRUCTION FOR STUDENTS... BASIC AUTOSKETCH INSTRUCTION... 3 SCREEN LAYOUT... 3 MENU BAR... 3 FILE
SUMMER SCHOOL ON ADVANCES IN GIS
SUMMER SCHOOL ON ADVANCES IN GIS Six Workshops Overview The workshop sequence at the UMD Center for Geospatial Information Science is designed to provide a comprehensive overview of current state-of-the-art
Unisys INFOIMAGE FOLDER ON WINDOWS NT. Connector for Microsoft Exchange. Getting Started Guide
INFOIMAGE FOLDER ON WINDOWS NT Connector for Microsoft Exchange Unisys Getting Started Guide Copyright 1999 Unisys Corporation. All rights reserved. Unisys is a registered trademark of Unisys Corporation.
Doctor Walt s Tips and Tricks 1
Doctor Walt s Tips and Tricks 1 I find that many KeyCreator users do not understand the difference between a collection of surfaces and a solid. To explain I use the concept of a child s inflatable beach
Data Warehousing and Data Mining in Business Applications
133 Data Warehousing and Data Mining in Business Applications Eesha Goel CSE Deptt. GZS-PTU Campus, Bathinda. Abstract Information technology is now required in all aspect of our lives that helps in business
GenericServ, a Generic Server for Web Application Development
EurAsia-ICT 2002, Shiraz-Iran, 29-31 Oct. GenericServ, a Generic Server for Web Application Development Samar TAWBI PHD student [email protected] Bilal CHEBARO Assistant professor [email protected] Abstract
Incremental Expansion of Manufacturing Knowledge Base
ABSTRACT Incremental Expansion of Manufacturing Knowledge Base Sanjeewa Gamaralalage, Dusan Sormaz Department of Industrial and Systems Engineering Ohio University Athens, Ohio45701 Email: [email protected],
CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler
CE 504 Computational Hydrology Computational Environments and Tools Fritz R. Fiedler 1) Operating systems a) Windows b) Unix and Linux c) Macintosh 2) Data manipulation tools a) Text Editors b) Spreadsheets
SolCAD: 3D Spatial Design Tool Tool to Generate Solar Envelope
SolCAD: 3D Spatial Design Tool Tool to Generate Solar Envelope Manu Juyal, Arizona State University Karen Kensek, University of Southern California Ralph Knowles, University of Southern California Abstract
Programming ABB Industrial Robot for an Accurate Handwriting
Programming ABB Industrial Robot for an Accurate Handwriting ABIGO IZABO 1, TARIG FAISAL 1* MAHMUD IWAN 1, H M A A AL-ASSADI 2, HANIF RAMLI 2 1 Faculty of Engineering, Technology & Built Environment, UCSI
STEP File Analyzer User s Guide (Version 2)
NISTIR 7999 STEP File Analyzer User s Guide (Version 2) Robert R. Lipman http://dx.doi.org/10.6028/nist.ir.7999 NISTIR 7999 STEP File Analyzer User s Guide (Version 2) Robert R. Lipman Systems Integration
Tips and Tricks SAGE ACCPAC INTELLIGENCE
Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,
Drawing a Bedroom Floorplan
Appendix A Drawing a Bedroom Floorplan In this chapter, you will learn the following to World Class standards: Draw a Bedroom Floorplan Draw the Bedroom Walls Draw and Dimension the Bedroom Door Draw and
ENHANCED HYBRID FRAMEWORK OF RELIABILITY ANALYSIS FOR SAFETY CRITICAL NETWORK INFRASTRUCTURE
ENHANCED HYBRID FRAMEWORK OF RELIABILITY ANALYSIS FOR SAFETY CRITICAL NETWORK INFRASTRUCTURE Chandana Priyanka G. H., Aarthi R. S., Chakaravarthi S., Selvamani K. 2 and Kannan A. 3 Department of Computer
What s New V 11. Preferences: Parameters: Layout/ Modifications: Reverse mouse scroll wheel zoom direction
What s New V 11 Preferences: Reverse mouse scroll wheel zoom direction Assign mouse scroll wheel Middle Button as Fine tune Pricing Method (Manufacturing/Design) Display- Display Long Name Parameters:
Simulation Software: Practical guidelines for approaching the selection process
Practical guidelines for approaching the selection process Randall R. Gibson, Principal / Vice President Craig Dickson, Senior Analyst TranSystems I Automation Associates, Inc. Challenge Selecting from
SICAM Software. (Structural Information for Controlled Automation Machinery)
SICAM Software (Structural Information for Controlled Automation Machinery) SICAM S O F T W A R E Controlled Automation has developed software for controlling steel fabrication machinery for over 20 years.
Unleashing Hidden Powers of Inventor with the API Part 1. Getting Started with Inventor VBA Hello Inventor!
Unleashing Hidden Powers of Inventor with the API Part 1. Getting Started with Inventor VBA Hello Inventor! Brian Ekins Autodesk, Inc. This article provides an introduction to Inventor's VBA programming
Creating Smart Models From Scan Data
Rapidform Tech Tip Creating Smart Models From Scan Data Related Product Version Rapidform XOR3 Goal To create a smart model from scan data. A smart model is a parametric model that uses parameters intelligently
Knowledge based system to support the design of tools for the HFQ forming process for aluminium-based products
MATEC Web of Conferences 21, 05008 (2015) DOI: 10.1051/matecconf/20152105008 C Owned by the authors, published by EDP Sciences, 2015 Knowledge based system to support the design of tools for the HFQ forming
How SolidWorks Speeds Consumer Product Design
white paper How SolidWorks Speeds Consumer Product Design inspiration SUMMARY SolidWorks Premium bridges the gap between industrial design and engineering by providing powerful surfacing capabilities,
Microsoft Access 2010 Part 1: Introduction to Access
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3
This high level land planning and design system will replace the land
Performance Planning System () The following is a v1.3 feature analysis, which clarifies differences, between and American Planning Association (APA) Land Based Classification Standards (LBCS) for color
Software Re-Engineering and Ux Improvement for ElegantJ BI Business Intelligence Suite
2011 2012 2013 2014 Q1 Q2 Q3 Q4 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Sales Performance by Category 2014 Product
Introduction to Microsoft Access 2003
Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft
CHAPTER 1. Introduction to CAD/CAM/CAE Systems
CHAPTER 1 1.1 OVERVIEW Introduction to CAD/CAM/CAE Systems Today s industries cannot survive worldwide competition unless they introduce new products with better quality (quality, Q), at lower cost (cost,
Creating Drawings in Pro/ENGINEER
6 Creating Drawings in Pro/ENGINEER This chapter shows you how to bring the cell phone models and the assembly you ve created into the Pro/ENGINEER Drawing mode to create a drawing. A mechanical drawing
1 File Processing Systems
COMP 378 Database Systems Notes for Chapter 1 of Database System Concepts Introduction A database management system (DBMS) is a collection of data and an integrated set of programs that access that data.
SDC. Schroff Development Corporation WWW.SDCACAD.COM PUBLICATIONS. MultiMedia CD by Jack Zecher
MultiMedia CD by Jack Zecher An audioi/visual presentation of the tutorial exercises SDC PUBLICATIONS Schroff Development Corporation WWW.SDCACAD.COM AutoCAD 2002 Tutorial 2-1 Lesson 2 Geometric Construction
Building Information Modelling (BIM); How it Improves Building Performance. R.P. Kumanayake Lecturer, Department of Civil Engineering
Building Information Modelling (BIM); How it Improves Building Performance R.P. Kumanayake Lecturer, Department of Civil Engineering R.M.P.S. Bandara Lecturer, Department of Mechanical Engineering Faculty
Microsoft Dynamics GP 2013. Packaging of Functionality & Product Capabilities in Microsoft Dynamics GP 2013
Microsoft Dynamics GP 2013 Packaging of Functionality & Product Capabilities in Microsoft Dynamics GP 2013 Date: November, 2012 Contents Become a Dynamic Business with Microsoft Dynamics GP 3 How to Buy
DataPA OpenAnalytics End User Training
DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics
Selecting the Best Approach to Teach 3D Modeling to Technical College Engineering
Paper ID #12358 Selecting the Best Approach to Teach 3D Modeling to Technical College Engineering Students Dr. Farzin Heidari, Texas A&M University, Kingsville c American Society for Engineering Education,
JumpStart Guide. Trimble QuickPen PipeDesigner 3D Software
L JumpStart Guide Trimble QuickPen PipeDesigner 3D Software Revision A February 2013 F Englewood Office Trimble Navigation Limited 384 Inverness Parkway, Suite 200 Englewood, Colorado 80112 (800) 234-3758
æ A collection of interrelated and persistent data èusually referred to as the database èdbèè.
CMPT-354-Han-95.3 Lecture Notes September 10, 1995 Chapter 1 Introduction 1.0 Database Management Systems 1. A database management system èdbmsè, or simply a database system èdbsè, consists of æ A collection
CATIA Wireframe & Surfaces TABLE OF CONTENTS
TABLE OF CONTENTS Introduction... 1 Wireframe & Surfaces... 2 Pull Down Menus... 3 Edit... 3 Insert... 4 Tools... 6 Generative Shape Design Workbench... 7 Bottom Toolbar... 9 Tools... 9 Analysis... 10
Using the Caché SQL Gateway
Using the Caché SQL Gateway Version 2007.1 04 June 2007 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Using the Caché SQL Gateway Caché Version 2007.1 04 June 2007 Copyright
Integrating Databases, Objects and the World-Wide Web for Collaboration in Architectural Design
Integrating Databases, Objects and the World-Wide Web for Collaboration in Architectural Design Wassim Jabi, Assistant Professor Department of Architecture University at Buffalo, State University of New
MAS 500 Intelligence Tips and Tricks Booklet Vol. 1
MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...
http://msdn.microsoft.com/en-us/library/4w3ex9c2.aspx
ASP.NET Overview.NET Framework 4 ASP.NET is a unified Web development model that includes the services necessary for you to build enterprise-class Web applications with a minimum of coding. ASP.NET is
The GeoMedia Fusion Validate Geometry command provides the GUI for detecting geometric anomalies on a single feature.
The GeoMedia Fusion Validate Geometry command provides the GUI for detecting geometric anomalies on a single feature. Below is a discussion of the Standard Advanced Validate Geometry types. Empty Geometry
LONG BEACH CITY COLLEGE MEMORANDUM
LONG BEACH CITY COLLEGE MEMORANDUM DATE: May 5, 2000 TO: Academic Senate Equivalency Committee FROM: John Hugunin Department Head for CBIS SUBJECT: Equivalency statement for Computer Science Instructor
Load Manager Administrator s Guide For other guides in this document set, go to the Document Center
Load Manager Administrator s Guide For other guides in this document set, go to the Document Center Load Manager for Citrix Presentation Server Citrix Presentation Server 4.5 for Windows Citrix Access
CATIA Electrical Harness Design TABLE OF CONTENTS
TABLE OF CONTENTS Introduction...1 Electrical Harness Design...2 Electrical Harness Assembly Workbench...4 Bottom Toolbar...5 Measure...5 Electrical Harness Design...7 Defining Geometric Bundles...7 Installing
Chapter 12 Programming Concepts and Languages
Chapter 12 Programming Concepts and Languages Chapter 12 Programming Concepts and Languages Paradigm Publishing, Inc. 12-1 Presentation Overview Programming Concepts Problem-Solving Techniques The Evolution
PRODUCING AN EDUCATIONALLY EFFECTIVE AND USABLE TOOL FOR LEARNING, THE CASE OF JELIOT FAMILY
PRODUCING AN EDUCATIONALLY EFFECTIVE AND USABLE TOOL FOR LEARNING, THE CASE OF JELIOT FAMILY Andrés Moreno and Niko Myller, University of Joensuu Introduction Jeliot Family is a group of program visualization
A FRAMEWORK FOR MANAGING RUNTIME ENVIRONMENT OF JAVA APPLICATIONS
A FRAMEWORK FOR MANAGING RUNTIME ENVIRONMENT OF JAVA APPLICATIONS Abstract T.VENGATTARAMAN * Department of Computer Science, Pondicherry University, Puducherry, India. A.RAMALINGAM Department of MCA, Sri
PULSE Automation programming in Visual Basic. From BK training lectures arranged by Jiří Tůma & Radovan Zadražil
PULSE Automation programming in Visual Basic From BK training lectures arranged by Jiří Tůma & Radovan Zadražil OLE Automation, general principles Bruno S. Larsen PULSE Software Development Agenda Overview
SIMATIC. WinCC V7.0. Getting started. Getting started. Welcome 2. Icons 3. Creating a project 4. Configure communication 5
SIMATIC WinCC V7.0 SIMATIC WinCC V7.0 Printout of the Online Help 1 Welcome 2 Icons 3 Creating a project 4 Configure communication 5 Configuring the Process Screens 6 Archiving and displaying values 7
Programming in Access VBA
PART I Programming in Access VBA In this part, you will learn all about how Visual Basic for Applications (VBA) works for Access 2010. A number of new VBA features have been incorporated into the 2010
Course 103402 MIS. Foundations of Business Intelligence
Oman College of Management and Technology Course 103402 MIS Topic 5 Foundations of Business Intelligence CS/MIS Department Organizing Data in a Traditional File Environment File organization concepts Database:
How To Understand Programming Languages And Programming Languages
Objectives Differentiate between machine and and assembly languages Describe Describe various various ways ways to to develop develop Web Web pages pages including including HTML, HTML, scripting scripting
Part Number: PMT1080-ENG Rev. 1
2010 Dassault Systèmes, All Rights Reserved DraftSight and the DraftSight logos are trademarks of Dassault Systèmes or its subsidiaries in the US and/or other countries. Other brand or product names are
Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials
Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials 2433: Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials (3 Days) About this Course
After completing this tutorial, you will be able to: Use the new 3D Modeling tools in AutoCAD 2007 for basic Lofting.
TUTORIAL 3 Lofted Solid Learning Objectives After completing this tutorial, you will be able to: Use the new 3D Modeling tools in AutoCAD 2007 for basic Lofting. Required Competencies Before starting this
