A CAD Interface for GEANT4
|
|
|
- Posy Holmes
- 9 years ago
- Views:
Transcription
1 manuscript No. (will be inserted by the editor) A CAD Interface for GEANT4 C M Poole, I Cornelius, J V Trapp, C M Langton Abstract Often CAD models already exist for parts of a geometry being simulated using GEANT4. Direct import of these CAD models into GEANT4 however, may not be possible and complex components may be difficult to define via other means. Solutions that allow for users to work around the limited support in the GEANT4 toolkit for loading predefined CAD geometries have been presented by others, however these solutions require intermediate file format conversion using commercial software. Here within we describe a technique that allows for CAD models to be directly loaded as geometry without the need for commercial software and intermediate file format conversion. Robustness of the interface was tested using a set of CAD models of various complexity; for the models used in testing, no import errors were reported and all geometry was found to be navigable by GEANT4. Keywords Monte Carlo, GEANT4, computer aided design, CAD, geometry 1 Introduction Geometry & Tracking 4 (GEANT4) is a C++ toolkit specifically designed to track particles traversing a geometry whilst being subject to physical processes [7, 8], it finds application in fields such as nuclear and particle physics, space engineering, and medical physics [10, 14, 15, 18]. Numerous physical processes can be modeled including photo-nuclear interactions, optical processes such as scintillation and Cherenkov radiation and other particle interactions over a wide energy range (250 ev up to T ev energies); the full gamut of processes available to the user is described by others [7, 8]. Fast and effective geometry definition is available to the user with constructs such as G4Orb for defining orbs, G4Box for defining rectangular prisms and the concept of boolean solids. Complex and irregular solids defined by a surface mesh can also be created using the G4TessellatedSolid [7, 8]. C. M. Poole is with Cancer Care Services, Royal Brisbane and Womens Hospital, Herston, QLD 4029, Australia. C. M. Poole, I. Cornelius, J. V. Trapp and C. M. Langton are with the School of Chemistry, Physics and Mechanical Engineering, Science & Engineering Faculty, and the Institute of Health and Biomedical Innovation, Queensland University of Technology, Brisbane, QLD 4000, Australia. [email protected]
2 2 C M Poole, I Cornelius, J V Trapp, C M Langton (a) (b) (c) Fig. 1 A diagrammatic comparison between two currently available CAD import techniques where (a) shows the technique described in persistence example G02, (b) shows the STEP to GDML conversion technique [12], and (c) shows the new direct import technique proposed here within. Currently however, there is limited support for directly loading pre-existing or user defined computer aided design (CAD) models as geometry in GEANT4, whether it be an arrangement of primitive solids, or a surface mesh. Of the two methods available, both are reliant on intermediate file format conversion using commercial software [9, 12] and can only load CAD models described using the standard for the exchange of product model data (STEP - ISO 10303) [16]. ISO standard STEP is a CAD format designed to supersede the still widely used initial graphics exchange specification (IGES) [2,16]. As such STEP has previously been the target format for loading CAD geometry into GEANT4. The persistence example with identifier G02 distributed with GEANT4 describes loading STEP Tools (STEP Tools Incorporated, New York) files directly. Intermediate conversion of STEP to STEP Tools is required using the commercial ST-Viewer program or ST-Developer libraries (STEP Tools Incorporated, New York). This process, shown in Fig.1(a) allows for assemblies of components to be loaded directly, however the STEP Tools programs and libraries may be prohibitively expensive for some users. Constantine et al [12] described the process of converting STEP to geometry description mark-up language (GDML) using the commercial software FastRad (Tests & Radiation - Toulouse) [9], refer to Fig.1(b). Functionality within the GEANT4 toolkit already allows for geometries to be saved and reloaded using GDML [11], it is based on extensible mark-up Language (XML), allowing for persistence of many aspects of the GEANT4 geometry hierarchy [11]. However, as with the method used in GEANT4 persistence example G02, FastRad may also be considered prohibitively expensive for some users as it has a requirement of annual licensing, in addition to this the trial version limits the conversion process to no more than 20 elements per assembly. Loading CAD models as geometry in a GEANT4 Monte Carlo simulation is particularly useful in instances where the geometry is such that it would be difficult to define with an arrangement of primitive solids. Typical examples include the description of components in beamlines such as targets, filters and collimators and for medical applications, metallic implants such as hip prostheses and anatomical structures derived from x-ray CT scans. CAD based geometry allows for more accurate simulation based representations of an experimental setup to be attained more rapidly [12], especially if parts of the experimental setup have already been
3 A CAD Interface for GEANT4 3 designed using CAD software. Whilst using a CAD model as geometry in GEANT4 may reduce the possibility of error when compared to manually creating a geometry in GEANT4 [12], any requirement to convert the CAD geometry to an intermediate file format gives rise to the potential for incorrect geometry definition, especially in instances where the source CAD geometry is undergoing regular modification and intermediate file conversion is not automated or in sync with revisions to the source CAD file. Programming toolkits already exist for the creation and manipulation of triangular and quadrangular boundary representation (BREP) meshes; the same kinds exportable by many modern CAD packages [5, 13, 17]. Most notably the freely available templated C++ library VCGLIB (Visual Computing Laboratory, Italy) offers advanced mesh manipulation functionality and point cloud surface reconstruction algorithms. In addition to this, VCGLIB already offers an import/export interface for many common CAD file formats [5]. Herein we describe a very simple technique that allows for BREP CAD models to be directly loaded as tessellated solids in GEANT4. The technique is capable of handling many BREP file formats exportable by CAD programs whilst not relying on intermediate file format conversions. 2 Methods The GEANT4 (version GEANT4.9.5 patch 1) geometry hierarchy is divided into solids, logical volumes and physical volumes where solids describe shape, logical volumes define material properties and mother-daughter relations, and physical volumes define placement within the mother volume [7, 8]. The equivalent GEANT4 solid to a BREP geometry is the tessellated solid (G4TessellatedSolid) and has specific properties so as to enable correct geometry navigation by the GEANT4 kernel. In particular, the tessellated solid must describe a closed surface, that is to say the boundary between the inside and outside of the solid is defined for all points. Furthermore, all faces on this surface (whether they be triangular or quadrangular faces), must not have coincident vertexes; for example a triangular face must have exactly three unique vertexes thereby ensuring it has an area greater than zero. When a face is added to the solid, the direction and order of the vertexes must be anti-clockwise when the normal of the face is pointing towards the inside of the volume; the GEANT4 navigator uses this convention when it determines if a point is inside or outside of the tessellated solid. For tessellated solids with face vertex order in the opposite direction, navigation errors may arise. Additionally, boolean operations can not be performed with tessellated solids. As common BREP CAD file formats and GEANT4 tessellated solids encode a surface mesh in similar ways, a direct mapping can be achieved by iterating over all of the faces in a BREP and adding them directly to the tessellated solid in GEANT4. For a direct mapping to be effective however, vertexes and faces defined in a BREP must be accessible in a common way that is independent of the source file format. This common access to various CAD file formats is achieved here using VCGLIB. Various custom types derived from VCGLIB base classes may be defined so as to describe for example a stereo-lithography format (STL) [1] or Stanford polygon file format (PLY) [6] mesh and the elements that encode it, such as vertexes, edges and faces. Template parameters are used to
4 4 C M Poole, I Cornelius, J V Trapp, C M Langton attach attributes such as position for example to these custom types, in effect each custom type becomes a collection of specific VCGLIB attributes; a comprehensive description of this scheme is provided in the VCGLIB documentation [5]. Wrappers as they are referred to in VCGLIB extend the core to provide mesh manipulation functionality including importers, exporters and mesh refinement tools, generally the arguments that these wrappers expect are instances of custom types inheriting from VCGLIB base types. Here a custom VCGLIB type is defined that acts as the access layer between common CAD files and GEANT4, the process is automatic and transparent to the user. Implementation, usage and validation of this scheme is detailed in the following. 2.1 Design of the Interface Implementation Referring to the unified modeling language (UML) diagram [4] in Fig.2, the core of the proposed CAD interface is a mapping between the VCGLIB derived CAD- TriMesh class which is comprised of faces and vertexes, and the GEANT4 G4 TessellatedSolid class. This mapping is performed automatically with an instance of the CAD interface CADMesh class, and unlike the manual solutions described above, requires no intermediate files or manual manipulations using commercial software. Upon creating an instance of CADMesh and supplying it with the file name and type of the target CAD file, an instance of CADTriMesh is populated with a mesh described in the CAD file. A VCGLIB import wrapper is used to perform this action, with a vcg::tri::io:: ImporterPLY wrapper used to populate CADTriMesh with a mesh described in a PLY formatted file for example. At this point, CADTrimesh enables access to the contents of the CAD file in a manner that is independent of its format. Other triangular facet mesh importers provided by VCGLIB include: Wavefront geometry definition (OBJ), Geomview object file format(off), STL files and more [5]. Given that CADTriMesh is now populated with vertexes and faces describing a mesh, the CADTriMesh::FaceIterator iterator is used to iteratively instantiate a GEANT4 G4TriangularFacet for each face. Subsequently, these faces are added to the tessellated solid using the G4TessellateSolid::AddFacet method. Once the iterator has looped over all faces, the G4TessellatedSolid::SetSolidClosed method is called, preventing further faces from being added to the volume. The CADTriMesh object is set public so the user may interact with it and VCGLIB directly from within GEANT4, however this is not required if the user simply wants to load a supported CAD file into GEANT Usage At the user level, all functionality provided by the CAD interface is contained within an instance of the CADMesh object, which can be made available to the user with the inclusion of the CADMesh.hh C++ header file in the user detector construction. Instantiation of a CADMesh object and a call to the CADMesh:: TessellatedMesh method generates and returns a G4TessellatedSolid suitable for inclusion in the user geometry in the same manner as with any typical G4VSolid
5 A CAD Interface for GEANT4 5 Fig. 2 UML class diagram showing interaction between VCGLIB, CADMesh and a GEANT4 user detector construction. The symbols have the usual meaning when considering a UML class diagram [4]. C++ class names prefixed by G4, CAD and vcg belong to GEANT4, the described CAD interface, and VCGLIB respectively and DetectorConstruction is a user defined class. object. Following the standard GEANT4 geometry hierarchy, material properties and volume meta-data unique to the volume can be assigned with association to a G4LogicalVolume, and placement of the G4TessellatedSolid within a mother volume with association to a G4PhysicalVolume. Constructor arguments include the file name for the file that contains the mesh, a file type identifier, and optional arguments specifying the units of the coordinates described in the file, a G4ThreeVector used to offset the mesh in the x, y and z directions, and a boolean option - reverse. The reverse boolean option results in faces being added to the TessellatedSolid with the order of their vertexes opposite to what is reported in the source CAD file should the vertex order be opposite to what is required for a G4TessellatedSolid. CAD file types currently supported by the interface include OFF, PLY, STL and COLLAborative Design Activity digital asset schema (COL- LADA) [3]. The source code of the interface is distributed with an autoconf script for testing for, and locating the required dependencies of the CAD interface, as well as generating a Makefile for compilation of the CADMesh.so shared object library. A working installation of GEANT4 is required for successful compilation of the library, additionally the source code for VCGLIB which is freely available on the internet [5] is required to enable support for loading OFF, STL and PLY files. From the users perspective however, direct interaction with VCGLIB is not required as it is used internally and automatically by the CAD interface. Once compiled, user code requires linking against CADMesh.so in the usual way, a process which is documented as a part of the source code distribution of the library.
6 6 C M Poole, I Cornelius, J V Trapp, C M Langton 2.2 Validation of the Interface Six test volumes were used to verify the performance of the GEANT4 CAD interface. Three simple geometries, a truncated cone and a sphere generated using MeshLab (Visual Computing Laboratory, Italy) and an artificial hip (generated in-house) were saved in all formats capable of import by the CAD interface. Additionally, a flattening filter from a Varian clinical linear accelerator, a single leaf from a Varian multi-leaf collimator and a model of a pelvis from a CIRS Pelvic Phantom (Model 048) were loaded into GEANT4 using the CAD interface. Each volume, when loaded was visually inspected for qualitative geometric integrity using the GEANT4 OpenGL viewer. Tessellated solid meta-data was dumped for each solid using the G4TessellatedSolid::DumpInfo method providing a list of each face and vertex coordinate used to define the GEANT4 volume. This data was then compared directly to the original CAD file describing the same volume. A pass level of 100% matching was set, no rounding errors of the vertex coordinates were accepted and vertex and face counts had to agree exactly. So as to ensure the loaded geometries were navigable by the GEANT4 kernel, each volume was assigned the material G4 WATER and positioned at the center of a G4 AIR filled world volume. A general particle source (GPS) was initialized and configured to produce a beam of geantinos (the standard GEANT4 debugging pseudo-particle) aimed at the test volume. Each test volume was bombarded with 100, 000 geantinos with the tracking verbosity level set to one and the step length set to 0.1 mm, ensuring any navigation errors associated with the imported CAD geometry were output; the angular distribution of the beam was set so as to target the entire volume ensuring all faces were inside the beam. At any time, if the navigator was unable to determine if it was inside or outside of the tessellated volume as a consequence of invalid volume definition, the test was failed. Geometry overlap tests build into GEANT4, accessible via the /geometry/test/ user interface commands were also used to verify the correct definition of all geometries loaded using the CAD interface. 3 Results Fig.3(a), Fig.3(b) and Fig.3(c) show three simple geometries loaded into GEANT4 via the CAD interface described in section 2.1. Further to this, Fig.3(d), Fig.3(e) and Fig.3(f) show more complex geometries loaded into GEANT4. All test volumes imported using the CAD interface, independent of the CAD file format, passed qualitative visual inspection - no corruption of the geometry was visible. Table 1 displays the vertex and face counts for each volume; there was no difference between the vertex and facet counts reported by VCGLIB or GEANT4. A comparison between the original CAD file and the dumped face and vertex information from each tessellated solid generated no errors. Additionally, the inbuilt geometry overlap tests, when performed on all test geometries loaded using the proposed CAD interface, found that the geometry was valid. When bombarded with a simulated source of geantinos, no navigation errors were reported. In the case that a face were to be purposefully excluded from the G4TessellatedSolid, the volume would be unnavigable as a consequence of an undefined inside or outside, known as a non-closed solid.
7 A CAD Interface for GEANT4 7 (a) cone (b) sphere (c) hip prosthesis (d) flattening filter (e) MLC leaf (f) pelvis model Fig. 3 Six test geometries loaded directly into GEANT4 using the proposed CAD interface and visualised using the GEANT4 OpenGL viewer. Name Verts Faces Inspection Dump/Navigation cone Pass Pass sphere Pass Pass hip Pass Pass leaf Pass Pass filter Pass Pass pelvis Pass Pass Table 1 Properties of the six volume loaded into GEANT4 via the proposed CAD interface. The time required to load a mesh using the CAD interface was compared to the time required to load the equivalent geometry from a GDML file. It was found that the load time in both cases was bound by the G4TessellatedSolid::AddFacet method. Setup time, including the parsing of the CAD or GDML files was measured and found to be insignificant compared to the time required to add faces to the G4TessellatedSolid. 4 Discussion & Conclusion Using the templated C++ mesh manipulation library VCGLIB, we have demonstrated a technique whereby CAD models may be directly imported as geometry into GEANT4 without the express need for file format conversion using commercial software. Reliability of the interface in terms of preserving model integrity during import was evaluated quantitatively by comparing the vertex coordinates as reported by GEANT4 to the actual vertex coordinates described in the source CAD
8 8 C M Poole, I Cornelius, J V Trapp, C M Langton file. Currently the interface cannot parse material properties or other GEANT4 specific meta-data, the interface is strictly limited to importing geometry or shape information only. A CAD model imported using the interface however, may be saved as part of an assembly in GDML using tools that are already part of the toolkit where its relation to other parts of the detector construction will be preserved. By removing the intermediate file format conversion step, unnecessary reliance on commercial third party software can be avoided and any CAD model described by a triangular tessellated surface may be directly loaded as a geometry within GEANT4. Fast geometry definition in GEANT4 from CAD models is also useful if the GEANT4 simulation forms part of the experiment design process. Having a CAD geometry for the manufacture of components for example, and a simulation comprised of primitives effectively decouples the simulation from the manufactured part - even if the part is simple. Using a CAD geometry for simulation requires changes (hole positions for example) be made using CAD, which automatically means the manufacture geometry is up-to-date, or perhaps more importantly, the manufacture and simulation geometries are the same. No navigation errors were reported for any of the test geometries when bombarded with a simulated source of geantinos and all tessellated solids in GEANT4 were found to be equivalent to the source CAD geometries. Finally, difference in load time between the method described here, and loading the same geometry using GDML was found to be insignificant as the load time for a tessellated solid in GEANT4 is bound by the time that is required to add each face using the G4TessellatedSoild::AddFacet method. The CAD interface for GEANT4 described in this work is freely available for download on the internet along with installation instructions and usage examples at Acknowledgments This work was supported in part by the Queensland Cancer Physics Collaborative, and Cancer Australia (Department of Health and Ageing) Research Grant References 1. Stereolithography Interface Specification. 3D Systems Inc (1989) 2. Initial Graphics Exchange Specification 5. US Product Data Association (2007) 3. COLLADA - Digital Asset Schema Release Specification. The Khronos Group Inc., Sony Computer Entertainment Inc. (2008) 4. Unified Modeling Language (UML) Superstructure Specification, v2.3. Object Management Group Inc (2010) 5. A portable C++ templated library for the manipulation, processing of triangle and tetrahedral meshes. Computer software. (2011) 6. PLY - Polygon File Format. Computer software and file format description. wasp.uwa.edu.au/~pbourke/dataformats/ply/ (2012) 7. Agostinelli, S., Allison, J., Amako, K., Apostolakis, J., Araujo, H., Arce, P., Asai, M., Axen, D., Banerjee, S., Barrand, G., et al.: Geant4 simulation toolkit. Nuclear Instruments and Methods in Physics Research-Section A Only 506(3), (2003) 8. Allison, J., Amako, K., Apostolakis, J., Araujo, H., Dubois, P., Asai, M., Barrand, G., Capra, R., Chauvie, S., Chytracek, R., et al.: Geant4 developments and applications. IEEE Trans. Nucl. Sci. 53(1), (2006)
9 A CAD Interface for GEANT Beutier, T., Delage, E., Wouts, M., Serres, O., Peyrard, P.: Fastrad new tool for radiation prediction. In: Proceedings of the 7th European Conference on Radiation and Its Effects on Components and Systems, RADECS 2003., pp (2003) 10. Carrier, J., Archambault, L., Beaulieu, L., Roy, R.: Validation of GEANT4, an objectoriented Monte Carlo toolkit, for simulations in medical physics. Medical Physics 31, (2004) 11. Chytracek, R., McCormick, J., Pokorski, W., Santin, G.: Geometry description markup language for physics simulation and analysis applications. IEEE Trans. Nucl. Sci. 53(5), (2006) 12. Constantin, M., Constantin, D.E., Keall, P.J., Narula, A., Svatos, M., Perl, J.: Linking computer-aided design (CAD) to Geant4-based Monte Carlo simulations for precise implementation of complex treatment head geometries. Physics in Medicine and Biology 55, N211 N220 (2010) 13. Fabri, A., Pion, S.: CGAL: the Computational Geometry Algorithms Library. In: Proceedings of the 17th ACM SIGSPATIAL International Conference on Advances in Geographic Information Systems, pp ACM (2009) 14. Grevillot, L., Frisson, T., Maneval, D., Zahra, N., Badel, J.N., Sarrut, D.: Simulation of a 6 MV Elekta Precise Linac photon beam using GATE/GEANT4. Physics in Medicine and Biology 56, (2011) 15. Jan, S., Benoit, D., Becheva, E., Carlier, T., Cassol, F., Descourt, P., Frisson, T., Grevillot, L., Guigues, L., Maigne, L., et al.: GATE V6: a major enhancement of the GATE simulation platform enabling modelling of CT and radiotherapy. Physics in Medicine and Biology 56, (2011) 16. Pratt, M.: Introduction to ISO The STEP standard for product data exchange. Journal of Computing and Information Science in Engineering 1, (2001) 17. Rusinkiewicz, S.: Trimesh2: A C++ library and set of utilities for input, output, and basic manipulation of 3D triangle meshes. Computer software. gfx/proj/trimesh2 (2011) 18. Xiao, S., Yang, X., Sztejnberg, M., Jevremovic, T.: Geant4 based Monte Carlo dose calculation engine for radiation therapy. IEEE Trans. Nucl. Sci. 57(2), (2010)
Radiotherapy Monte Carlo simulation using cloud computing technology
manuscript No. (will be inserted by the editor) Radiotherapy Monte Carlo simulation using cloud computing technology C M Poole, I Cornelius, J V Trapp, C M Langton Abstract Cloud computing allows for vast
Advanced variance reduction techniques applied to Monte Carlo simulation of linacs
MAESTRO Advanced variance reduction techniques applied to Monte Carlo simulation of linacs Llorenç Brualla, Francesc Salvat, Eric Franchisseur, Salvador García-Pareja, Antonio Lallena Institut Gustave
CAD/CAM and the Exchange of Product Data
CAD/CAM and the Exchange of Product Data N.-J. Høimyr CERN, Geneva, Switzerland Abstract A 3D model defined in a CAD-system is used as a basis for design and product development. The concept of Computer
Surface and Volumetric Data Rendering and Visualization
Surface and Volumetric Data Rendering and Visualization LAB: Blender integration with OpenGL/Qt Massimo Mauro Department of Information Engineering Faculty of Engineering University of Brescia Via Branze,
CATIA V5R21 - FACT SHEET
CATIA V5R21 - FACT SHEET Introduction What s New at a Glance Overview Detailed Description INTRODUCTION CATIA V5 is the leading solution for product success. It addresses all manufacturing organizations;
Off-line Model Simplification for Interactive Rigid Body Dynamics Simulations Satyandra K. Gupta University of Maryland, College Park
NSF GRANT # 0727380 NSF PROGRAM NAME: Engineering Design Off-line Model Simplification for Interactive Rigid Body Dynamics Simulations Satyandra K. Gupta University of Maryland, College Park Atul Thakur
GLAST Geant4 Simulation
GLAST Geant4 Simulation F.Longo D. Favretto R.Giannitrapani 1 Introduction Simulation effort GammaRayTel advanced example in the Geant4 3.0 release XML - Geant4 visitor Hit class 2 Simulation Effort Design
A Process for ATLAS Software Development
Atlas Software Quality Control Group A Process for ATLAS Software Development Authors : Atlas Quality Control Group M. Asai, D. Barberis (chairman), M. Bosman, R. Jones, J.-F. Laporte, M. Stavrianakou
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
SOFTWARE FOR 3D IMAGE VISUALISATION, ANALYSIS AND MODEL GENERATION
SOFTWARE FOR 3D IMAGE VISUALISATION, ANALYSIS AND MODEL GENERATION Solutions for Life Sciences SIMPLEWARE SOFTWARE Simpleware provides easy-to-use software solutions for the processing of 3D image data
Precise Treatment System Clinically Flexible Digital Linear Accelerator. Personalized radiotherapy solutions for everyday treatment care
Precise Treatment System Clinically Flexible Digital Linear Accelerator Personalized radiotherapy solutions for everyday treatment care Can you offer personalized cancer care? As more and more people require
Multiphysics Software Applications in Reverse Engineering
Multiphysics Software Applications in Reverse Engineering *W. Wang 1, K. Genc 2 1 University of Massachusetts Lowell, Lowell, MA, USA 2 Simpleware, Exeter, United Kingdom *Corresponding author: University
www.studymafia.org Seminar report Rapid Prototyping Submitted in partial fulfillment of the requirement for the award of degree Of Mechanical
A Seminar report On Rapid Prototyping Submitted in partial fulfillment of the requirement for the award of degree Of Mechanical SUBMITTED TO: SUBMITTED BY: www.studymafia.org www.studymafia.org Preface
Constrained Tetrahedral Mesh Generation of Human Organs on Segmented Volume *
Constrained Tetrahedral Mesh Generation of Human Organs on Segmented Volume * Xiaosong Yang 1, Pheng Ann Heng 2, Zesheng Tang 3 1 Department of Computer Science and Technology, Tsinghua University, Beijing
Science Intensive Development (SID)
Science Intensive Development (SID) At, we develop custom software that requires specific scientific knowledge. We are experienced in realizing projects that had been considered impossible. The main guarantee
Geant4 Visualization. Andrea Dotti April 19th, 2015 Geant4 tutorial @ M&C+SNA+MC 2015
Geant4 Visualization Andrea Dotti April 19th, 2015 Geant4 tutorial @ M&C+SNA+MC 2015 HepRep/HepRApp Slides from Joseph Perl (SLAC) and Laurent Garnier (LAL/IN2P3) DAWN OpenGL OpenInventor RayTracer HepRep/FRED
Technical What s New. Autodesk Alias Product Line
Autodesk Alias Product Line Purpose-built for industrial designers and creative professionals, digital modelers/sculptors, and automotive/transportation designers, the Autodesk Alias 2010 product line
GUIDE TO POST-PROCESSING OF THE POINT CLOUD
GUIDE TO POST-PROCESSING OF THE POINT CLOUD Contents Contents 3 Reconstructing the point cloud with MeshLab 16 Reconstructing the point cloud with CloudCompare 2 Reconstructing the point cloud with MeshLab
CastNet: Modelling platform for open source solver technology
CastNet: Modelling platform for open source solver technology. DHCAE Tools GmbH Address: Friedrich-Ebert-Str. 368, 47800 Krefeld, Germany / Company site: Alte Rather Str. 207 / 47802 Krefeld Phone +49
Plug-in Software Developer Kit (SDK)
Updated February 2, 2012 2 modo 601 Plug-in Development Kit for PC and Mac The modo 601 Plug-in Software Development Kit provides a set of Application Programming Interfaces (APIs) and numerous source
Self-Positioning Handheld 3D Scanner
Self-Positioning Handheld 3D Scanner Method Sheet: How to scan in Color and prep for Post Processing ZScan: Version 3.0 Last modified: 03/13/2009 POWERED BY Background theory The ZScanner 700CX was built
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,
Proper Implementation of Industrial CT Scanning to Reduce Inspection Costs & Get to Production Faster. Jesse Garant, JG&A Metrology Center
Proper Implementation of Industrial CT Scanning to Reduce Inspection Costs & Get to Production Faster Jesse Garant, JG&A Metrology Center Traditional Metrology and Inspection Tactile Devices (Touch Probe)
What s New in Autodesk Revit 2014
Building Design Suite 2014 What s New in Revit 2014 * Revit 2014 software is only available as part of the Building Design Suite 2014 Premium and Ultimate Editions. New & Enhanced Features Platform & For
Introduction to Computer Graphics
Introduction to Computer Graphics Torsten Möller TASC 8021 778-782-2215 [email protected] www.cs.sfu.ca/~torsten Today What is computer graphics? Contents of this course Syllabus Overview of course topics
Event display for the International Linear Collider Summer student report
Event display for the International Linear Collider Summer student report Stewart Martin-Haugh, supervisor Steve Aplin Physics Computing/IT September 10, 2009 1 Introduction The International Linear Collider
MODERN VOXEL BASED DATA AND GEOMETRY ANALYSIS SOFTWARE TOOLS FOR INDUSTRIAL CT
MODERN VOXEL BASED DATA AND GEOMETRY ANALYSIS SOFTWARE TOOLS FOR INDUSTRIAL CT C. Reinhart, C. Poliwoda, T. Guenther, W. Roemer, S. Maass, C. Gosch all Volume Graphics GmbH, Heidelberg, Germany Abstract:
CAE DATA & PROCESS MANAGEMENT WITH ANSA
CAE DATA & PROCESS MANAGEMENT WITH ANSA Srikanth RAGHOTHAM Volvo India Private Limited Volvo Group Bangalore INDIA KEYWORDS Enovia-2-Ansa, Ansa Data Management (Ansa-DM) TECHNICAL PAPER CAE Data & Process
PDF Primer PDF. White Paper
White Paper PDF Primer PDF What is PDF and what is it good for? How does PDF manage content? How is a PDF file structured? What are its capabilities? What are its limitations? Version: 1.0 Date: October
RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA
RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA 2010 Number 29 3D MODEL GENERATION FROM THE ENGINEERING DRAWING Jozef VASKÝ, Michal ELIÁŠ,
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
Application Example: Quality control of sheet metal components
Application Example: Quality control of sheet metal components Optical 3D measuring techniques and inspection software for quality control of sheet metal components Measuring system: ATOS Keywords: Sheet
FreeForm Designer. Phone: +972-9-8309999 Fax: +972-9-8309998 POB 8792, Natanya, 42505 Israel www.autofont.com. Document2
FreeForm Designer FreeForm Designer enables designing smart forms based on industry-standard MS Word editing features. FreeForm Designer does not require any knowledge of or training in programming languages
MeshLab and Arc3D: Photo-Reconstruction and Processing of 3D meshes
MeshLab and Arc3D: Photo-Reconstruction and Processing of 3D meshes P. Cignoni, M Corsini, M. Dellepiane, G. Ranzuglia, (Visual Computing Lab, ISTI - CNR, Italy) M. Vergauven, L. Van Gool (K.U.Leuven ESAT-PSI
Radiation therapy involves using many terms you may have never heard before. Below is a list of words you could hear during your treatment.
Dictionary Radiation therapy involves using many terms you may have never heard before. Below is a list of words you could hear during your treatment. Applicator A device used to hold a radioactive source
Volumetric Meshes for Real Time Medical Simulations
Volumetric Meshes for Real Time Medical Simulations Matthias Mueller and Matthias Teschner Computer Graphics Laboratory ETH Zurich, Switzerland [email protected], http://graphics.ethz.ch/ Abstract.
MODELING AND IMPLEMENTATION OF THE MECHANICAL SYSTEM AND CONTROL OF A CT WITH LOW ENERGY PROTON BEAM
MODELING AND IMPLEMENTATION OF THE MECHANICAL SYSTEM AND CONTROL OF A CT WITH LOW ENERGY PROTON BEAM João Antônio Palma Setti, [email protected] Pontifícia Universidade Católica do Paraná / Rua Imaculada
Everyday Mathematics. Grade 4 Grade-Level Goals CCSS EDITION. Content Strand: Number and Numeration. Program Goal Content Thread Grade-Level Goal
Content Strand: Number and Numeration Understand the Meanings, Uses, and Representations of Numbers Understand Equivalent Names for Numbers Understand Common Numerical Relations Place value and notation
CastNet: GUI environment for OpenFOAM
CastNet: GUI environment for OpenFOAM CastNet is a preprocessing system and job-control system for OpenFOAM. CastNet works with the standard OpenFOAM releases provided by ESI Group as well as ports for
Computer Aided Liver Surgery Planning Based on Augmented Reality Techniques
Computer Aided Liver Surgery Planning Based on Augmented Reality Techniques Alexander Bornik 1, Reinhard Beichel 1, Bernhard Reitinger 1, Georg Gotschuli 2, Erich Sorantin 2, Franz Leberl 1 and Milan Sonka
Everyday Mathematics. Grade 4 Grade-Level Goals. 3rd Edition. Content Strand: Number and Numeration. Program Goal Content Thread Grade-Level Goals
Content Strand: Number and Numeration Understand the Meanings, Uses, and Representations of Numbers Understand Equivalent Names for Numbers Understand Common Numerical Relations Place value and notation
Optical Digitizing by ATOS for Press Parts and Tools
Optical Digitizing by ATOS for Press Parts and Tools Konstantin Galanulis, Carsten Reich, Jan Thesing, Detlef Winter GOM Gesellschaft für Optische Messtechnik mbh, Mittelweg 7, 38106 Braunschweig, Germany
Feasibility Study of Neutron Dose for Real Time Image Guided. Proton Therapy: A Monte Carlo Study
Feasibility Study of Neutron Dose for Real Time Image Guided Proton Therapy: A Monte Carlo Study Jin Sung Kim, Jung Suk Shin, Daehyun Kim, EunHyuk Shin, Kwangzoo Chung, Sungkoo Cho, Sung Hwan Ahn, Sanggyu
Component visualization methods for large legacy software in C/C++
Annales Mathematicae et Informaticae 44 (2015) pp. 23 33 http://ami.ektf.hu Component visualization methods for large legacy software in C/C++ Máté Cserép a, Dániel Krupp b a Eötvös Loránd University [email protected]
COMPLETE USER VISUALIZATION INTERFACE FOR KENO
Integrating Criticality Safety into the Resurgence of Nuclear Power Knoxville, Tennessee, September 19 22, 2005, on CD-ROM, American Nuclear Society, LaGrange Park, IL (2005) COMPLETE USER VISUALIZATION
XT B-Rep; Making it Real
XT B-Rep; Making it Real John Juckes Siemens PL SEPTEMBER 12-14 What is XT? Based on research from the Cambridge University Computer lab under Ian Braid The world s leading high precision, production-proven,
Computer Aided Engineering (CAE) Techniques Applied To Hip Implant
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 3 Issue. 3 Computer Aided Engineering (CAE) Techniques Applied To Hip Implant 1, M. S. Abo_Elkhair, 2, M. E. Abo-Elnor,
Other GEANT4 capabilities
Other GEANT4 capabilities Event biasing Parameterisation (fast simulation) Persistency Parallelisation and integration in a distributed computing environment Outline! Event biasing! Parameterization (fast
CATIA V5 Surface Design
CATIA V5 Training Foils CATIA V5 Surface Design Version 5 Release 19 August 2008 EDU_CAT_EN_V5S_FI_V5R19 1 Lesson 1: Introduction to Generative Shape Design About this Course Introduction CATIA is a robust
ProSTEP ivip/vda 2. JT Translator Benchmark
ProSTEP ivip/vda 2. JT Translator Benchmark 2. JT TRANSLATOR BENCHMARK SHORT REPORT 2. JT Translator Benchmark SHORT REPORT CONTENTS Contents 1 Introduction 4 2 ProSTEP ivip/vda JT Translator Benchmark
Application Example: Quality Control. Turbines: 3D Measurement of Water Turbines
Application Example: Quality Control Turbines: 3D Measurement of Water Turbines Measuring Systems: ATOS, TRITOP Keywords: Kaplan, Francis, Pelton, angles 3D scanning of turbines was performed successfully
Version 4.1 Release Notes. Release notes for 3D PDF Converter detailing new features, bug fixes and updated format support.
Version 4.1 Release Notes Release notes for 3D PDF Converter detailing new features, bug fixes and updated format support. Table of Contents OVERVIEW... 2 Version Information... 2 Language Support Overview...
Glass coloured glass may pick up on scan. Top right of screen tabs: these tabs will relocate lost windows.
Artec 3D scanner Instructions for Medium Handheld (MH) Scanner Scanning Conditions: Objects/surfaces that don t scan well: Black or shiny objects and objects with sharp edges or points, hair, glass, transparent
Converting Between BRL-CAD and Other Formats. John Anderson U.S. Army Research Laboratory [email protected]
Converting Between BRL-CAD and Other Formats John Anderson U.S. Army Research Laboratory [email protected] Converters to/from ASCII g2asc/asc2g Release 6.0 ASCII format is a Tcl script. Database format
WORK SCHEDULE: MATHEMATICS 2007
, K WORK SCHEDULE: MATHEMATICS 00 GRADE MODULE TERM... LO NUMBERS, OPERATIONS AND RELATIONSHIPS able to recognise, represent numbers and their relationships, and to count, estimate, calculate and check
PARAMETRIC MODELING. David Rosen. December 1997. By carefully laying-out datums and geometry, then constraining them with dimensions and constraints,
1 of 5 11/18/2004 6:24 PM PARAMETRIC MODELING David Rosen December 1997 The term parametric modeling denotes the use of parameters to control the dimensions and shape of CAD models. Think of a rubber CAD
Multiphase Flow - Appendices
Discovery Laboratory Multiphase Flow - Appendices 1. Creating a Mesh 1.1. What is a geometry? The geometry used in a CFD simulation defines the problem domain and boundaries; it is the area (2D) or volume
In this Lecture you will Learn: Implementation. Software Implementation Tools. Software Implementation Tools
In this Lecture you will Learn: Implementation Chapter 19 About tools used in software implementation How to draw component diagrams How to draw deployment diagrams The tasks involved in testing a system
Bernice E. Rogowitz and Holly E. Rushmeier IBM TJ Watson Research Center, P.O. Box 704, Yorktown Heights, NY USA
Are Image Quality Metrics Adequate to Evaluate the Quality of Geometric Objects? Bernice E. Rogowitz and Holly E. Rushmeier IBM TJ Watson Research Center, P.O. Box 704, Yorktown Heights, NY USA ABSTRACT
Reflection and Refraction
Equipment Reflection and Refraction Acrylic block set, plane-concave-convex universal mirror, cork board, cork board stand, pins, flashlight, protractor, ruler, mirror worksheet, rectangular block worksheet,
Proton tracking for medical imaging and dosimetry
Proton tracking for medical imaging and dosimetry J.Taylor, P.Allport, G.Casse For the PRaVDA Consortium 1 Background and motivation - What is the PRaVDA experiment? - Why are we using Monte Carlo? GEANT4
Integrated Modeling for Data Integrity in Product Change Management
Integrated Modeling for Data Integrity in Product Change Management László Horváth*, Imre J. Rudas** Institute of Intelligent Engineering Systems, John von Neumann Faculty of Informatics, Budapest Tech
PRODUCT BROCHURE SPATIAL ANALYZER. Powerful, traceable and easy-to-use metrology and analysis software
PRODUCT BROCHURE SPATIAL ANALYZER Powerful, traceable and easy-to-use metrology and analysis software SPATIAL ANALYZER SpatialAnalyzer (SA) is a powerful, traceable and easy to use metrology and analysis
COCOVILA Compiler-Compiler for Visual Languages
LDTA 2005 Preliminary Version COCOVILA Compiler-Compiler for Visual Languages Pavel Grigorenko, Ando Saabas and Enn Tyugu 1 Institute of Cybernetics, Tallinn University of Technology Akadeemia tee 21 12618
Java Application Developer Certificate Program Competencies
Java Application Developer Certificate Program Competencies After completing the following units, you will be able to: Basic Programming Logic Explain the steps involved in the program development cycle
Development of Specialized Modelling Tools for Crystal Growth Processes
International Scientific Colloquium Modelling for Material Processing Riga, June 8-9, 2006 Development of Specialized Modelling Tools for Crystal Growth Processes A. Rudevics, A. Muiznieks, B. Nacke, V.
NEW MEXICO Grade 6 MATHEMATICS STANDARDS
PROCESS STANDARDS To help New Mexico students achieve the Content Standards enumerated below, teachers are encouraged to base instruction on the following Process Standards: Problem Solving Build new mathematical
Calculation of Source-detector Solid Angle, Using Monte Carlo Method, for Radioactive Sources with Various Geometries and Cylindrical Detector
International Journal of Pure and Applied Physics ISSN 0973-1776 Volume 3, Number 2 (2007), pp. 201 208 Research India Publications http://www.ripublication.com/ijpap.htm Calculation of Source-detector
AHUDesigner. The Air Handling Units selection software. Product description
AHUDesigner The Air Handling Units selection software Product description Table of contents INTRODUCTION... 4 AHU SELECTION SOFTWARE FUNCTIONAL SPECIFICATIONS... 5 Definition of unit configuration... 5
Prentice Hall Mathematics: Course 1 2008 Correlated to: Arizona Academic Standards for Mathematics (Grades 6)
PO 1. Express fractions as ratios, comparing two whole numbers (e.g., ¾ is equivalent to 3:4 and 3 to 4). Strand 1: Number Sense and Operations Every student should understand and use all concepts and
5-Axis Test-Piece Influence of Machining Position
5-Axis Test-Piece Influence of Machining Position Michael Gebhardt, Wolfgang Knapp, Konrad Wegener Institute of Machine Tools and Manufacturing (IWF), Swiss Federal Institute of Technology (ETH), Zurich,
technical notes trimble realworks software
technical notes trimble realworks software A POWERFUL 3D LASER SCANNING OFFICE SOFTWARE SUITE Designed for today s multifaceted scanning professional, Trimble RealWorks is a powerful office software that
An Overview of the Finite Element Analysis
CHAPTER 1 An Overview of the Finite Element Analysis 1.1 Introduction Finite element analysis (FEA) involves solution of engineering problems using computers. Engineering structures that have complex geometry
METADATA-DRIVEN QLIKVIEW APPLICATIONS AND POWERFUL DATA INTEGRATION WITH QLIKVIEW EXPRESSOR
METADATA-DRIVEN QLIKVIEW APPLICATIONS AND POWERFUL DATA INTEGRATION WITH QLIKVIEW EXPRESSOR A QlikView Technical Brief Document March 2013 qlikview.com Introduction This technical brief highlights a subset
Talend Metadata Manager. Reduce Risk and Friction in your Information Supply Chain
Talend Metadata Manager Reduce Risk and Friction in your Information Supply Chain Talend Metadata Manager Talend Metadata Manager provides a comprehensive set of capabilities for all facets of metadata
Comité Ingénierie GALIA. Boulogne-Billancourt, 11 Juin 2009
Comité Ingénierie GALIA Boulogne-Billancourt, 11 Juin 2009 Dassault Systèmes membre de GALIA Notre motivation Etre à l écoute de nos clients sur les enjeux des échanges entre OEM et fournisseurs Supporter
SIMATIC IT Unicam Test Expert
NPI solutions for electronics Test engineering solutions for PCB Assembly: accelerated test and inspection SIMATIC IT Unicam Test Expert Answers for industry. Simatic IT for the electronics industry Simatic
Tom Wilson Product Marketing Manager Delivery Systems Varian Medical Systems International AG. CERN Accelerator School, May 2015
INDUSTRIAL DESIGN Tom Wilson Product Marketing Manager Delivery Systems Varian Medical Systems International AG VARIAN ONCOLOGY SYSTEMS 1 VARIAN ONCOLOGY SYSTEMS CERN Accelerator, May 2015 Industrial Design
Supported platforms & compilers Required software Where to download the packages Geant4 toolkit installation (release 9.6)
Supported platforms & compilers Required software Where to download the packages Geant4 toolkit installation (release 9.6) Configuring the environment manually Using CMake CLHEP full version installation
Variance reduction techniques used in BEAMnrc
Variance reduction techniques used in BEAMnrc D.W.O. Rogers Carleton Laboratory for Radiotherapy Physics. Physics Dept, Carleton University Ottawa, Canada http://www.physics.carleton.ca/~drogers ICTP,Trieste,
Arm2. Arm Arm22. Articulated Arm. machines MEASURING. tridimensional measuring FRATELLI ROTONDI
Arm Arm22 2 Arm2 tridimensional measuring Articulated Arm MEASURING machines FRATELLI ROTONDI Arm2 MEASURING Arm2Arm2 SOFTWARE Software in WINDOWS environment: sura tridimesio - elements with definite
PE Explorer. Heaventools. Malware Code Analysis Made Easy
Heaventools PE Explorer Data Sheet Malware Code Analysis Made Easy Reverse engineers within the anti-virus, vulnerability research and forensics companies face the challenge of analysing a large number
CONDIS. IT Service Management and CMDB
CONDIS IT Service and CMDB 2/17 Table of contents 1. Executive Summary... 3 2. ITIL Overview... 4 2.1 How CONDIS supports ITIL processes... 5 2.1.1 Incident... 5 2.1.2 Problem... 5 2.1.3 Configuration...
Slicing Issues in CAD Translation to STL in Rapid Prototyping
Paper 021, ENG 103 Slicing Issues in CAD Translation to STL in Rapid Prototyping Divesh R. Sahatoo In-Corr-Tech Ltd., San Fernando, Trinidad [email protected] Boppana V. Chowdary University of The West
Trimble Realworks Software
TECHNICAL NOTES Trimble Realworks Software A Powerful 3D Laser Scanning Office Software Suite DESIGNED FOR TODAY S MULTIFACETED SCANNING PROFESSIONAL, TRIMBLE REALWORKS IS A POWERFUL OFFICE SOFTWARE THAT
Introduction to Visualization with VTK and ParaView
Introduction to Visualization with VTK and ParaView R. Sungkorn and J. Derksen Department of Chemical and Materials Engineering University of Alberta Canada August 24, 2011 / LBM Workshop 1 Introduction
Technical Regulations 2015-2016
F1 in Schools - 2014 World Finals Technical Regulations Technical Regulations 2015-2016 2013 - F1 in Schools Ltd. Page 1 of 27 3 September 2015 CONTENTS PREFACE SUMMARY OF MAIN REVISIONS FROM 2013 REGULATIONS...
Interactive Visualization of Magnetic Fields
JOURNAL OF APPLIED COMPUTER SCIENCE Vol. 21 No. 1 (2013), pp. 107-117 Interactive Visualization of Magnetic Fields Piotr Napieralski 1, Krzysztof Guzek 1 1 Institute of Information Technology, Lodz University
Jorge E. Fernández Laboratory of Montecuccolino (DIENCA), Alma Mater Studiorum University of Bologna, via dei Colli, 16, 40136 Bologna, Italy
Information technology (IT) for teaching X- and gamma-ray transport: the computer codes MUPLOT and SHAPE, and the web site dedicated to photon transport Jorge E. Fernández Laboratory of Montecuccolino
GEDAE TM - A Graphical Programming and Autocode Generation Tool for Signal Processor Applications
GEDAE TM - A Graphical Programming and Autocode Generation Tool for Signal Processor Applications Harris Z. Zebrowitz Lockheed Martin Advanced Technology Laboratories 1 Federal Street Camden, NJ 08102
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
White Paper. PROSTEP AG Dolivostrasse 11 64293 Darmstadt Germany Phone +49 6151 9287-0 Fax +49 6151 9287-326 [email protected] www.prostep.
White Paper 3D Formats in the Field of Engineering a Comparison When the source system is not available, too costly to propagate widely, or full model fidelity is not required, neutral 3D formats are essential
1. Relational database accesses data in a sequential form. (Figures 7.1, 7.2)
Chapter 7 Data Structures for Computer Graphics (This chapter was written for programmers - option in lecture course) Any computer model of an Object must comprise three different types of entities: 1.
Volumes of Revolution
Mathematics Volumes of Revolution About this Lesson This lesson provides students with a physical method to visualize -dimensional solids and a specific procedure to sketch a solid of revolution. Students
Setting up the Hardware and Software. for a 3D Printer
Setting up the Hardware and Software for a 3D Printer Caroline Kerbelis Application Note March 28th 2014 Design Team 8 ECE 480 Abstract The purpose of team 8 s project is to design, fabricate, simulate,
Object Oriented Programming. Risk Management
Section V: Object Oriented Programming Risk Management In theory, there is no difference between theory and practice. But, in practice, there is. - Jan van de Snepscheut 427 Chapter 21: Unified Modeling
Monitoring Infrastructure (MIS) Software Architecture Document. Version 1.1
Monitoring Infrastructure (MIS) Software Architecture Document Version 1.1 Revision History Date Version Description Author 28-9-2004 1.0 Created Peter Fennema 8-10-2004 1.1 Processed review comments Peter
In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data.
MATHEMATICS: THE LEVEL DESCRIPTIONS In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data. Attainment target
Triangulation by Ear Clipping
Triangulation by Ear Clipping David Eberly Geometric Tools, LLC http://www.geometrictools.com/ Copyright c 1998-2016. All Rights Reserved. Created: November 18, 2002 Last Modified: August 16, 2015 Contents
