Analytical Software Design Case

Size: px
Start display at page:

Download "Analytical Software Design Case"

Transcription

1 Verum white paper Analytical Software Design Case Nucletron uses ASD to reduce development and testing times for Cone Beam CT Scan software Author(s): R. Wiericx and L. Bouwmeester Version: 2.0, 12/05/2009 Copyright 2009 Verum Consultants BV Page 1 of 10

2 Executive Summary In this Analytical Software Design (ASD) case, Nucletron BV used ASD to verify the existing design of the Computed tomography (CT) Acquisition and Reconstruction Process Layer for use case Acquire and Reconstruct CT Volume. As a leader in radiation oncology, Nucletron continually searches for ways to reduce development time and improve quality of their software products. The company already used UML but Verum s Analytical Software Design (ASD) [1] was seen by Nucletron as a possible way to further realize these goals. Therefore, Nucletron started a case study to evaluate ASD and to verify the benefits of ASD. ASD led to an increase in productivity from 3 to 17 LOC per man-hour and a reduction in the number of defects from 6 to zero. The case study results can be summarized as follows: Nucletron completed and formally verified parts of the existing design of the CT Acquisition and Reconstruction Process Layer Nucletron established that with ASD it is easy to create asynchronous designs that behave correctly under all circumstances and are deadlock free Applying ASD led to an increase in productivity from 3 to 17 LOC per manhour and a reduction in the number of defects from 6 to zero for all components generated with ASD:Suite. For the relatively small part of the system designed with ASD, costs were reduced by 75%. In conclusion, the case study has proved that using ASD to formally verify software components indeed results in a reduction of development effort and improves software quality, and thereby decreases cost. These additional benefits were achieved even though Nucletron was using UML, proving that organizations already using sophisticated software development methods can benefit from ASD. As a result of this case study, Nucletron is very enthusiastic about the benefits of ASD. For new software products with complex behaviour, Nucletron plans to use ASD. Nucletron concluded: If we had used ASD for the project, we would have saved one man year of effort out of three. Berthold Hutten, Software architect at Nucletron After a steep learning curve, the creation of ASD interfaces and designs became quite easy and fast. Cis van Heerde, Application Designer at Nucletron Copyright 2009 Verum Consultants BV Page 2 of 10

3 1 Introduction Nucletron is the knowledge-driven leader in radiation oncology and is committed to developing solutions focused on improving patient care. Nucletron is specialized in the development, manufacture, sales, service and support of the world's most innovative cancer treatment products, and partners actively with its customers to provide the most effective and efficient patient care options. As a leader in radiation oncology, Nucletron continually searches for ways to reduce development time and improve quality of their software products. Verum s Analytical Software Design (ASD) [1] was seen by Nucletron as a possible way to further realize these goals. To learn more about the possibilities of ASD:Suite tooling and its underlying technology, Nucletron carried out a case study in which ASD was applied to a small but representative software component. The main objectives of the case study were: To verify the benefits of ASD. The most important benefits of interest to Nucletron were: o o Reducing time, cost and scope overruns by ensuring specifications are complete and thereby reducing the need for rework Further increase of software quality To find out whether ASD modeling helps in verifying the correctness of their software To find out whether ASD modeling is useful and practical for their software This paper presents an overview of how ASD was applied to the case study and draws conclusions based upon the objectives stated above. Copyright 2009 Verum Consultants BV Page 3 of 10

4 2 Current situation One of Nucletron s innovative cancer treatment products is the Oncentra ConeBeam application. ConeBeam technology is a breakthrough method of acquiring and reconstructing CT images from 3D isotropic data. Used in conjunction with an image detector on a radiotherapy simulator, it creates a unique radiation-therapy imaging tool that can perform conventional, virtual and CT-assisted simulation. This case study was applied to the existing design of the Oncentra ConeBeam application. In particular, the use case Acquire and Reconstruct CT Volume was chosen as a subject for this case study. To realize this use case, Nucletron originally designed the existing software as shown in the following figure. View Domain CT Acquisition Process and Reconstruction Layer <<interface>> IAcquireReconstructHandler <<ASD>> AcquireReconstructHandler <<ASD>> ReconstructionHandler <<ASD>> StorageHandler <<interface>> IPositionServer <<interface>> IAcquisitionServer <<interface>> IReconstructionServer PositionServer AcquisitionServer ReconstructionServer Figure 1 - CT Acquisition Process and Reconstruction Layer Figure 1 shows the software decomposition of the CT Acquisition Process and Reconstruction Layer, which contains the following components: Acquire Reconstruct Handler: This is the main controller of the use case Acquire and Reconstruct CT Volume and its responsibility is to prepare the Position Server and the Acquisition Server. Copyright 2009 Verum Consultants BV Page 4 of 10

5 Reconstruction Handler: Its responsibility is to reconstruct the acquired projections into proper CT images. Storage Handler: Its responsibility is to store the reconstructed slices as CT images. In the existing implementation, the CT Acquisition and Reconstruction Process Layer executes in a single-threaded environment. This design choice imposes the restriction that a proper abort of an ongoing action is impossible. The alternative of a completely asynchronous design was considered as too difficult by Nucletron and was therefore not used. In the final design, the Abort and Finish functionality of the components were the only elements implemented asynchronously....to achieve a minimum level of reliability, considerable effort was spent on testing 2.1 Nucletron s conventional approach Nucletron used a waterfall like approach to develop the use case Acquire and Reconstruct CT Volume. The design was decomposed into 3 components as depicted in Figure 1. During the design phase of these 3 components, Nucletron applied a structured approach using UML tooling to specify the functional requirements in terms of stimuli and responses. For the creation of the designs, Nucletron used an enumerated approach; the behaviour of the designs was described in a tabular form. Validation of the original design was performed by manual execution of an extremely large test set on a real system, which revealed incorrect and illegal behaviour. After thorough analysis of the incorrect behaviour, the design was modified and tested again. This process was repeated until all tests passed. The result was a largely reliable system. Although Nucletron followed a structured approach, the completeness of their design was not guaranteed. Their approach also did not address the correctness of their designs. Furthermore, to achieve a minimum level of reliability, considerable effort was spent on testing. Although the system was largely reliable, field errors occasionally occurred. Copyright 2009 Verum Consultants BV Page 5 of 10

6 3 Method For the case study, the ASD:Suite was used to model and formally verify the existing behaviour of the original Storage Handler and Reconstruction Handler components. The first step was to describe the existing interfaces of these components as ASD interface models. These interface models were derived from the software analysis & design document [2] and the existing implementation. The second step was to make the ASD design models of the Storage Handler and the Reconstruction Handler component. 3.1 Storage Handler component The ASD design of the Storage Handler component required minor modifications because the original design mixed control and data, whereas ASD implements a strict separation of data and control. The ASD design of the Storage Handler component was formally verified with the ASD:Suite tooling. 3.2 Reconstruction Handler component The ASD design of the Reconstruction Handler component was changed from the original design due to differences in the threading models implemented by the original design and ASD. The existing design is based on a single thread using synchronous call-backs, whereas ASD implements a threading model where call-backs are decoupled and processed using an additional thread. Copyright 2009 Verum Consultants BV Page 6 of 10

7 4 Results...Nucletron concluded that ASD provides an easy way to create asynchronous designs that behave correctly under all circumstances and are guaranteed free of dead-locks, livelocks and race conditions. Since Nucletron already used an enumerated approach for their designs, the creation of ASD interface and design models was a straightforward task. The application of ASD ensured the requirements were complete, but did not reveal any new requirements. The Storage Handler component was based on a synchronous design which is generally considered to be simple to implement. However, the ASD:ModelChecker revealed that such a simple design contained more than 300 different execution scenarios. Further, the ASD:ModelChecker revealed: 1. A serious race condition on the interface, which was resolved 2. A live-lock in the design caused by the original implementation that determines when storage has finished. This is often an indication that the design is not complete. Although the design of the Reconstruction Handler component was not formally verified, Nucletron concluded that ASD provides an easy way to create asynchronous designs that behave correctly under all circumstances and are guaranteed free of dead-locks, live-locks and race conditions. ASD implements a clear separation between data and control. Nucletron realized that this makes decisions on control flow visible and explicit, and therefore results in an architecture or component description with a high level of precision. Copyright 2009 Verum Consultants BV Page 7 of 10

8 5 Conclusions 5.1 Applying ASD leads to higher software quality and reduces development effort and costs Nucletron found that using ASD leads to higher quality software with lower costs in a significantly shorter time. The table below shows the time and cost to develop the components the conventional way, without ASD and using ASD. The table clearly shows: An increase in productivity from 3 to 17 LOC per man-hour A cost reduction of 75% Finally, the number of defects has reduced from 6 to 0 for all components generated with ASD, which reduces the cost of non-quality and prevents possible field recalls. Although applied to a relatively small part of the system, the improvements in quality as well as the reduction in time and cost were already significant. Effort (Man-hours) Duration (Months) Defects Development Cost Cost of Defects Total Cost LOC per man-hour Without ASD , , ,88 3 ASD , , ,75 17 Both delivered lines of C#. Duration assumes one user. Saving: 75% 5.2 ASD modeling is useful and practical The maturity of Nucletron s development approach made adopting ASD straightforward, which helped shortening the learning curve of ASD. Nucletron concluded that after a steep learning curve, the creation of ASD interfaces and designs became quite easy and fast. 5.3 Applying ASD guarantees the correctness of designs For applications with complex behaviour, Nucletron experienced the real added value in the usage of ASD. The ASD:ModelChecker revealed a serious race condition and live-lock in the current Storage Handler component. Copyright 2009 Verum Consultants BV Page 8 of 10

9 The case study has also shown that ASD provides an easy way to create complex asynchronous designs that behave correctly and are guaranteed to be free of dead-locks, live-locks, and race conditions. Copyright 2009 Verum Consultants BV Page 9 of 10

10 6 About the authors Ronald Wiericx is ASD consultant working at ICT Embedded BV, a full subsidiary of ICT Automatisering NV, a leading IT company, employing 1,000 people across various countries. Leon Bouwmeester is managing consultant at Verum Consultants BV. Acknowledgements We are grateful to Nucletron for allowing us to present this case and for their cooperation when we applied ASD to verify the Acquisition and Reconstruction Process layer for ConeBeam CT scan. References [1] An introduction to ASD, [2] SMX-114/ , CT Acquisition & Reconstruction Process Layer Software Analysis & Design. Copyright 2009 Verum Consultants BV All rights are reserved. No part of this publication may be reproduced in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of the copyright owner. Copyright 2009 Verum Consultants BV Page 10 of 10

Radiation Oncology. The conf ident path to treatment Philips Radiation Oncology Solutions

Radiation Oncology. The conf ident path to treatment Philips Radiation Oncology Solutions Radiation Oncology The conf ident path to treatment Philips Radiation Oncology Solutions The confident path to treatment Philips Radiation Oncology Solutions Imaging Image registration Contouring Treatment

More information

Varian Acuity BrachyTherapy Suite One Room Integrated Image-Guided Brachytherapy

Varian Acuity BrachyTherapy Suite One Room Integrated Image-Guided Brachytherapy Varian Acuity BrachyTherapy Suite One Room Integrated Image-Guided Brachytherapy The Acuity BrachyTherapy Suite Integrating Imaging, Planning, and Treatment in a Single Room Each component draws on the

More information

Sectra Orthopaedic Solutions

Sectra Orthopaedic Solutions Sectra Orthopaedic Solutions Customer case story Well prepared before surgery Preoperative planning in 2D and 3D The Orthopaedic section at the University Hospital of Rostock is a well-known institute

More information

MARK SCHEME for the May/June 2011 question paper for the guidance of teachers 9773 PSYCHOLOGY

MARK SCHEME for the May/June 2011 question paper for the guidance of teachers 9773 PSYCHOLOGY UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS Pre-U Certificate MARK SCHEME for the May/June 2011 question paper for the guidance of teachers 9773 PSYCHOLOGY 9773/02 Paper 2 (Methods, Issues and Applications),

More information

Selecting a research method

Selecting a research method Selecting a research method Tomi Männistö 13.10.2005 Overview Theme Maturity of research (on a particular topic) and its reflection on appropriate method Validity level of research evidence Part I Story

More information

For a legacy that lives large: Think Big. Philips CT Big Bore. Computed tomography

For a legacy that lives large: Think Big. Philips CT Big Bore. Computed tomography Computed tomography For a legacy that lives large: Think Big Philips CT Big Bore The big question The world of cancer care is rapidly changing. The number of new cancer cases is expected to rise by about

More information

Closing of Nucletron acquisition Building a stronger position in the cancer care market. September 15, 2011

Closing of Nucletron acquisition Building a stronger position in the cancer care market. September 15, 2011 Closing of Nucletron acquisition Building a stronger position in the cancer care market September 15, 2011 Important step in Elekta s growth strategy Nucletron is the world leader in Brachytherapy and

More information

MOSAIQ TM Image Enabled EMR. managing the spectrum of cancer care. Filmless and paperless workflow Universitätsklinikum Mannheim

MOSAIQ TM Image Enabled EMR. managing the spectrum of cancer care. Filmless and paperless workflow Universitätsklinikum Mannheim MOSAIQ TM Image Enabled EMR managing the spectrum of cancer care Filmless and paperless workflow Universitätsklinikum Mannheim Prof. Dr. med Frank Lohr, Radiation Oncologist The workflow within MOSAIQ

More information

IMAGE-GUIDED RADIATION THERAPY

IMAGE-GUIDED RADIATION THERAPY IMAGE-GUIDED RADIATION THERAPY Your Single Source Oncology Solutions Provider Plan. Target. Treat. At Best NOMOS, we design products and solutions that help medical professionals treat a variety of cancers.

More information

Head to new heights with your imaging SCANORA 3D

Head to new heights with your imaging SCANORA 3D SCANORA 3D Head to new heights with your imaging Benefits at a glance The solution for dentomaxillofacial and ENT imaging Easy Patient seated for added stability during exposure. Clear, self-explinatory

More information

Ingenia MR-RT. MR Systems. The comprehensive MR-sim solution to fit your planning

Ingenia MR-RT. MR Systems. The comprehensive MR-sim solution to fit your planning Ingenia MR-RT MR Systems The comprehensive MR-sim solution to fit your planning Table of contents Experience the difference MRI makes 3 A comprehensive MR-sim solution 4 Position with precision 6 Tailored

More information

College of American Pathologists

College of American Pathologists College of American Pathologists Comments to the Food and Drug Administration on the draft guidance In Vitro Companion Diagnostics Devices October 12, 2011 College of American Pathologists 1350 I Street,

More information

Implementation Guide for the DoseControl Dosimetry System

Implementation Guide for the DoseControl Dosimetry System 1.0 SCOPE The GEX DoseControl System is intended for use as a single dosimetry system solution, specifically developed to satisfy the generic dosimetry needs of radiation sterilization application users

More information

Why Tests Don t Pass

Why Tests Don t Pass Douglas Hoffman Software Quality Methods, LLC. 24646 Heather Heights Place Saratoga, CA 95070 USA doug.hoffman@acm.org Summary Most testers think of tests passing or failing. Either they found a bug or

More information

Workshop on Hadron Beam Therapy of Cancer Erice, Sicily April 24-May

Workshop on Hadron Beam Therapy of Cancer Erice, Sicily April 24-May IONTRIS Synchrotron based PT Solutions from Siemens AG Workshop on Hadron Beam Therapy of Cancer Erice, Sicily April 24-May 1 2009 Matthias Herforth VP Business Development and Communications Siemens AG

More information

SAGE. Nick Beard Vice President, IDX Systems Corp.

SAGE. Nick Beard Vice President, IDX Systems Corp. SAGE Nick Beard Vice President, IDX Systems Corp. Sharable Active Guideline Environment An R&D consortium to develop the technology infrastructure to enable computable clinical guidelines, that will be

More information

Story Telling in Medical Imaging

Story Telling in Medical Imaging ECR'91 European Congress of Radiology Try it yourself, see how easy it is Yes, this is great! salesman radiologist Hasbergsvei 36 P.O. Box 235, NO3603 Kongsberg Norway gaudisite@gmail.com Abstract Story

More information

Systems Engineering Guide for Systems of Systems. Essentials. December 2010

Systems Engineering Guide for Systems of Systems. Essentials. December 2010 DEPARTMENT OF DEFENSE Systems Engineering Guide for Systems of Systems Essentials December 2010 Director of Systems Engineering Office of the Director, Defense Research and Engineering Washington, D.C.

More information

Inventory Research agenda setting

Inventory Research agenda setting The health research system is responsible for generating knowledge through scientific inquiry focusing on people s health and well being. Health research spans the entire range from (bio)medical research,

More information

Automatic Definition of Planning Target Volume in Computer-Assisted Radiotherapy

Automatic Definition of Planning Target Volume in Computer-Assisted Radiotherapy Automatic Definition of Planning Target Volume in Computer-Assisted Radiotherapy Angelo Zizzari Department of Cybernetics, School of Systems Engineering The University of Reading, Whiteknights, PO Box

More information

Implementing Lean Six Sigma in Organizations. Dhr. B.A. Lameijer

Implementing Lean Six Sigma in Organizations. Dhr. B.A. Lameijer Implementing Lean Six Sigma in Organizations. Dhr. B.A. Lameijer Summary of implementing LSS in organizations Due to a variety of reasons such as increased competition, resource scarcity and transparency

More information

Low-Dose CT Cancer Screening Program

Low-Dose CT Cancer Screening Program Low-Dose CT Cancer Screening Program 1 History of Low-Dose CT Screening In 2011, the National Lung Screening Trial (NLST) was the first trial that provided evidence based support that Low-Dose CT (LDCT)

More information

A Brief Introduction to Bayesian Statistics

A Brief Introduction to Bayesian Statistics A Brief Introduction to Statistics David Kaplan Department of Educational Psychology Methods for Social Policy Research and, Washington, DC 2017 1 / 37 The Reverend Thomas Bayes, 1701 1761 2 / 37 Pierre-Simon

More information

RACGP Education. Exam report AKT. Healthy Profession. Healthy Australia.

RACGP Education. Exam report AKT.  Healthy Profession. Healthy Australia. RACGP Education www.racgp.org.au Healthy Profession. Healthy Australia. The information set out in this report is current at the date of first publication and is intended for use as a guide of a general

More information

Aixplorer MultiWave Ultrasound System An Innovation in Breast Ultrasound Imaging

Aixplorer MultiWave Ultrasound System An Innovation in Breast Ultrasound Imaging b r e a s t i m a g i n g S O L U T I O N S Aixplorer MultiWave Ultrasound System An Innovation in Breast Ultrasound Imaging The new wave in breast ultrasound Aixplorer is a next-generation ultrasound

More information

Getting the Payoff With MDD. Proven Steps to Get Your Return on Investment

Getting the Payoff With MDD. Proven Steps to Get Your Return on Investment Getting the Payoff With MDD Proven Steps to Get Your Return on Investment version 1.4 6/18/11 Generate Results: Real Models, Real Code, Real Fast. www.pathfindersolns.com Welcome Systems development organizations

More information

CT SCAN PROTOCOL. Shoulder

CT SCAN PROTOCOL. Shoulder CT SCAN PROTOCOL Shoulder Purpose and Summary CT images made with this protocol are used to provide the orthopedic surgeon with a detailed 3D anatomical reconstruction of the patient s scapula and proximal

More information

I. Equipments for external beam radiotherapy

I. Equipments for external beam radiotherapy I. Equipments for external beam radiotherapy 5 linear accelerators (LINACs): Varian TrueBeam 6, 10 & 18 MV photons, 6-18 MeV electrons, image-guided (IGRT) and intensity modulated radiotherapy (IMRT),

More information

Calculation of Effective Doses for Radiotherapy Cone-Beam CT and Nuclear Medicine Hawkeye CT Laura Sawyer

Calculation of Effective Doses for Radiotherapy Cone-Beam CT and Nuclear Medicine Hawkeye CT Laura Sawyer Calculation of Effective Doses for Radiotherapy Cone-Beam CT and Nuclear Medicine Hawkeye CT Laura Sawyer Department of Medical Physics and Bioengineering, Royal United Hospital, Bath Overview Varian Acuity

More information

ASCO Power Control Systems Overview

ASCO Power Control Systems Overview ASCO Power Control Systems Overview POWER CONTROL CHALLENGES Today more than ever, continuous electrical power is essential for providing mission-critical services. Whether it s a hospital providing critical

More information

Flaw Assessment Using Shear wave Phased array Ultrasonic Transducer

Flaw Assessment Using Shear wave Phased array Ultrasonic Transducer 18th World Conference on Nondestructive Testing, 16-20 April 2012, Durban, South Africa Flaw Assessment Using Shear wave Phased array Ultrasonic Transducer Byungsik YOON AUTHOR 1, Hee-Jong LEE CO-AUTHOR

More information

Auto HbA1C ANALYZER HbA1LC HPLC 3660

Auto HbA1C ANALYZER HbA1LC HPLC 3660 Turnkey Laboratories Solutions Auto HbA1C ANALYZER HbA1LC HPLC 3660 Viewable Accuracy Real Time Summarized Chromatogram Authentic Results EPC / PRODUCTS / APPLICATION / SOFTWARE / ACCESSORIES / CONSUMABLES

More information

INTERVIEW / GEORGE COUKOS. / κεντρικό πρόσωπο

INTERVIEW / GEORGE COUKOS. / κεντρικό πρόσωπο 10 INTERVIEW / GEORGE COUKOS MD, PhD, Director of the Department of Oncology at the University Hospital of Lausanne (CHUV), Director of the Lausanne Branch of the Ludwig Institute for Cancer Research,

More information

ISO/TS TECHNICAL SPECIFICATION. Dental materials Testing of adhesion to tooth structure

ISO/TS TECHNICAL SPECIFICATION. Dental materials Testing of adhesion to tooth structure TECHNICAL SPECIFICATION ISO/TS 11405 Second edition 2003-02-01 Dental materials Testing of adhesion to tooth structure Produits dentaires Essai d'adhésion à la structure de la dent Reference number ISO/TS

More information

Laparoscopy training essentials

Laparoscopy training essentials Laparoscopy training essentials product information Simendo camera Simendo laparoscopy Simendo all-in-one About Simendo Simendo BV is located in the dynamic city centre of Rotterdam, which is famous for

More information

Xstrahl designs and delivers effective clinical and research solutions to advance radiation oncology

Xstrahl designs and delivers effective clinical and research solutions to advance radiation oncology Xstrahl designs and delivers effective clinical and research solutions to advance radiation oncology Xstrahl is a leading designer and manufacturer of superficial orthovoltage medical X-ray systems used

More information

insights clinical AnyRidge Implant System Scan Post (C-Type)

insights clinical AnyRidge Implant System Scan Post (C-Type) clinical insights AnyRidge Implant System Scan Post (C-Type) by Neal Patel DDS Summary The following information will guide you through the scan, design and production process utilizing the MegaGen AnyRidge

More information

Herlev radiation oncology team explains what MRI can bring

Herlev radiation oncology team explains what MRI can bring Publication for the Philips MRI Community Issue 46 2012/2 Herlev radiation oncology team explains what MRI can bring The radiotherapy unit at Herlev University Hospital investigates use of MRI for radiotherapy

More information

A Patient s Guide to SRS

A Patient s Guide to SRS A Patient s Guide to SRS Stereotactic Radiosurgery 230 Nebraska St. Sioux City, IA 51101 NOTES 230 Nebraska St. Sioux City, IA 51101 Contents page Introduction 1 SRS and how it works 2 The technology involved

More information

THE NEXT FRONTIER OF BONE REGENERATION. where Technology meets Nature

THE NEXT FRONTIER OF BONE REGENERATION. where Technology meets Nature THE NEXT FRONTIER OF BONE REGENERATION where Technology meets Nature SmartBone is a new hybrid bioactive bone substitute specifically developed for bone regeneration in reconstructive surgery. SmartBone

More information

Dental Radiography Core Subject. Digital Radiography

Dental Radiography Core Subject. Digital Radiography Dental Radiography Core Subject Digital Radiography Aims: To develop an understanding of the history of digital radiography, the different types of digital x-rays and the advantages and disadvantages of

More information

THE NEXT FRONTIER OF BONE REGENERATION. where Technology meets Nature

THE NEXT FRONTIER OF BONE REGENERATION. where Technology meets Nature THE NEXT FRONTIER OF BONE REGENERATION where Technology meets Nature SmartBone is a new hybrid bioactive bone substitute specifically developed for bone regeneration in reconstructive surgery. SmartBone

More information

WOMEN S HEALTH SOLUTIONS. The power and promise of breast tomosynthesis is here. Selenia Dimensions system with Acquisition Workstation 8000

WOMEN S HEALTH SOLUTIONS. The power and promise of breast tomosynthesis is here. Selenia Dimensions system with Acquisition Workstation 8000 WOMEN S HEALTH SOLUTIONS The power and promise of breast tomosynthesis is here Selenia Dimensions system with Acquisition Workstation 8000 3D mammography: A new dimension in early breast cancer detection

More information

Neuroscience at Deloitte Growing a network that fires and wires together

Neuroscience at Deloitte Growing a network that fires and wires together Neuroscience at Deloitte Growing a network that fires and wires together Neuroscience at Deloitte Most decisions are made unconsciously. Thoughts and feelings shape decisions as well as interactions between

More information

Advancing critical clinical decisions

Advancing critical clinical decisions Radiation Oncology Computed Tomography Big Bore RT Advancing critical clinical decisions Pursuit of the successful outcome Powerful technology delivers Radiation therapy can be effective in helping your

More information

CRITICAL APPRAISAL WORKSHEET 1

CRITICAL APPRAISAL WORKSHEET 1 For Residents CRITICAL APPRAISAL WORKSHEET 1 AN ARTICLE ON THERAPY This worksheet should be submitted along with the completed Submission Form to your supervisor. It is based on the articles on therapy

More information

Evaluation of Monaco treatment planning system for hypofractionated stereotactic volumetric arc radiotherapy of multiple brain metastases

Evaluation of Monaco treatment planning system for hypofractionated stereotactic volumetric arc radiotherapy of multiple brain metastases Evaluation of Monaco treatment planning system for hypofractionated stereotactic volumetric arc radiotherapy of multiple brain metastases CASE STUDY Institution: Odette Cancer Centre Location: Sunnybrook

More information

DIAGNOSTIC IMAGING. OPTIMIZED.

DIAGNOSTIC IMAGING. OPTIMIZED. ABOUT LED DENTAL SEE THE DIFFERENCE Using our years of business insight and clinical experience as a foundation, LED Dental takes the uncertainty out of your imaging purchase decision. We offer our clients

More information

AN EPIC COMPUTATIONAL MODEL OF VERBAL WORKING MEMORY D. E. Kieras, D. E. Meyer, S. T. Mueller, T. L. Seymour University of Michigan Sponsored by the

AN EPIC COMPUTATIONAL MODEL OF VERBAL WORKING MEMORY D. E. Kieras, D. E. Meyer, S. T. Mueller, T. L. Seymour University of Michigan Sponsored by the AN EPIC COMPUTATIONAL MODEL OF VERBAL WORKING MEMORY D. E. Kieras, D. E. Meyer, S. T. Mueller, T. L. Seymour University of Michigan Sponsored by the U.S. Office of Naval Research 1 Introduction During

More information

Innovator in Chelated Mineral Nutrition

Innovator in Chelated Mineral Nutrition Leader The World & Innovator in Chelated Mineral Nutrition 2011 Albion Human Nutrition. All rights reserved. Albion Manufacturing Technologies, Ogden Utah Albion Central Warehouse, Ogden Utah Albion Corporate

More information

Comparison of high and low energy treatment plans by evaluating the dose on the surrounding normal structures in conventional radiotherapy

Comparison of high and low energy treatment plans by evaluating the dose on the surrounding normal structures in conventional radiotherapy Turkish Journal of Cancer Volume 37, No. 2, 2007 59 Comparison of high and low energy treatment plans by evaluating the dose on the surrounding normal structures in conventional radiotherapy MUHAMMAD BASIM

More information

Quality Management Guideline for Suppliers. Appendix. Instructions for the Preparation of 8D-Reports

Quality Management Guideline for Suppliers. Appendix. Instructions for the Preparation of 8D-Reports Version A Page 1 from 9 Quality Management Guideline for Suppliers Appendix Instructions for the Preparation of 8D-Reports Originator Approval Area Central QC Central QC Name Schuchardt Kaldeberg Date

More information

FOR IMMEDIATE RELEASE

FOR IMMEDIATE RELEASE FOR IMMEDIATE RELEASE Hitachi to launch ALOKA ARIETTA 850, the flagship model of the ARIETTA series diagnostic of ultrasound platforms This premium model features superior image quality, seamless workflow,

More information

Maze Data Analysis Development Page 1 of 14. MAZE MAZE Data Analysis Development

Maze Data Analysis Development Page 1 of 14. MAZE MAZE Data Analysis Development Maze Data Analysis Development Page 1 of 14 MAZE MAZE Data Analysis Development Index MAZE - Assessment of Capacity for Planning & Foresight (CPF).... 3 Outcomes... 3 MAZE Assessments... 5 Training...

More information

Solutions at GE Inspection Technologies

Solutions at GE Inspection Technologies Solutions at GE Inspection Technologies Business Overview Paul A. Meyer Our Company A global leader in technology-driven inspection solutions that deliver productivity, quality, and safety to our customers

More information

Graft Delivery Devices

Graft Delivery Devices Graft Delivery Devices About Graft Delivery Devices Nordson MEDICAL Nordson MEDICAL is your partner in the global life sciences market providing innovative components, devices and custom OEM solutions

More information

WORLD LIBRARY AND INFORMATION CONGRESS: 76TH IFLA GENERAL CONFERENCE AND ASSEMBLY

WORLD LIBRARY AND INFORMATION CONGRESS: 76TH IFLA GENERAL CONFERENCE AND ASSEMBLY Date submitted: 23/05/2010 Open access in institutions of higher learning in Botswana Kgomotso Radijeng Resource Centre Coordinator Botswana National Productivity Centre Gaborone, Botswana E-mail: KgomotsoR@BNPC.bw

More information

Protura Robotic Patient Positioning System. for efficiency + performance

Protura Robotic Patient Positioning System. for efficiency + performance Protura Robotic Patient Positioning System for efficiency + performance Protura Robotic Patient Positioning System The Protura Robotic Patient Positioning System is the ultimate in robotic patient motion

More information

Performance of phased array and conventional ultrasonic probes on the new ISO reference block

Performance of phased array and conventional ultrasonic probes on the new ISO reference block Performance of phased array and conventional ultrasonic probes on the new ISO 19675 reference block C. Udell, D. Chai 1 and F. Gattiker Proceq S.A., Ringstrasse 2, Schwerzenbach, Switzerland. More info

More information

The power and promise of breast tomosynthesis is here. Selenia Dimensions system with Acquisition Workstation 5000

The power and promise of breast tomosynthesis is here. Selenia Dimensions system with Acquisition Workstation 5000 WOMEN S HEALTH BREAST SOLUTIONS HEALTH The power and promise of breast tomosynthesis is here Selenia Dimensions system with Acquisition Workstation 5000 3D mammography: A new dimension in early breast

More information

What do the Eight Goals of Treatment look like??

What do the Eight Goals of Treatment look like?? What do the Eight Goals of Treatment look like?? 1. Attractive Smile 2. Facial Balance 3. Healthy TMJ (temporomandibular joint) 4. Healthy Occlusion (tooth fit) 5. Healthy gums and supporting bone 6. Clear

More information

Mass Spectrometry Made Simple for Clinical Diagnostic Labs

Mass Spectrometry Made Simple for Clinical Diagnostic Labs Mass Spectrometry Made Simple for Clinical Diagnostic Labs The SCIEX Topaz System with FDA-Cleared Topaz Vitamin D 200M Assay Kit Mass Spectrometry Made Simple SCIEX Topaz System for Clinical Diagnostics

More information

Environmental, Health and Safety

Environmental, Health and Safety Environmental, Health and Safety Codes of Practice The Environmental, Health and Safety (EHS) Codes of Practice set forth Zimmer EHS requirements for our business functions and facilities worldwide. In

More information

Oncology Programme 2017

Oncology Programme 2017 Oncology Programme 2017 Your cover for cancer treatment in 2017 Overview This document explains how Discovery Health Medical Scheme the Scheme covers you for cancer treatment on DiscoveryCare s Oncology

More information

Quality ID #156 (NQF 0382): Oncology: Radiation Dose Limits to Normal Tissues National Quality Strategy Domain: Patient Safety

Quality ID #156 (NQF 0382): Oncology: Radiation Dose Limits to Normal Tissues National Quality Strategy Domain: Patient Safety Quality ID #156 (NQF 0382): Oncology: Radiation Dose Limits to Normal Tissues National Quality Strategy Domain: Patient Safety 2018 OPTIONS FOR INDIVIDUAL MEASURES: CLAIMS ONLY MEASURE TYPE: Process DESCRIPTION:

More information

brochure DISO fronte.jpg Locandina commerciale

brochure DISO fronte.jpg Locandina commerciale brochure DISO fronte.jpg Locandina commerciale Following the EURATOM 97/43 recommendation, since 2000 is operative in Italy the law D.L.vo 187/00 about the radioprotection of the patients undergone at

More information

STEM CELL RESEARCH: MEDICAL PROGRESS WITH RESPONSIBILITY

STEM CELL RESEARCH: MEDICAL PROGRESS WITH RESPONSIBILITY STEM CELL RESEARCH: MEDICAL PROGRESS WITH RESPONSIBILITY A REPORT FROM THE CHIEF MEDICAL OFFICER S EXPERT GROUP REVIEWING THE POTENTIAL OF DEVELOPMENTS IN STEM CELL RESEARCH AND CELL NUCLEAR REPLACEMENT

More information

CT Imaging at the Point-of-Care

CT Imaging at the Point-of-Care ENGLISH True Dedication The new Planmed Verity Extremity CT Scanner revolutionizes extremity CT imaging. The compact unit brings 3D imaging at emergency departments, orthopedic clinics or trauma centers

More information

X X X. GXS-700 Direct USB Digital Intraoral Sensors. Buy a Sensor Combo and a Digital Pan Unit, Receive $600 Off! GO.BENCO benco.

X X X. GXS-700 Direct USB Digital Intraoral Sensors. Buy a Sensor Combo and a Digital Pan Unit, Receive $600 Off! GO.BENCO benco. 8 0 0. G O. B E N C O b e n c o. c o m GS-700 Direct USB Digital Intraoral Sensors Designed to make migrating from film, or upgrading an existing digital system, easier than ever High quality image capture

More information

CODE OF ETHICS FOR RESEARCH IN THE SOCIAL AND BEHAVIOURAL SCIENCES INVOLVING HUMAN PARTICIPANTS

CODE OF ETHICS FOR RESEARCH IN THE SOCIAL AND BEHAVIOURAL SCIENCES INVOLVING HUMAN PARTICIPANTS CODE OF ETHICS FOR RESEARCH IN THE SOCIAL AND BEHAVIOURAL SCIENCES INVOLVING HUMAN PARTICIPANTS As accepted by the Deans of Social Sciences in the Netherlands, January 2016 Preamble This Code of Ethics

More information

Corporate Medical Policy

Corporate Medical Policy Corporate Medical Policy Intensity Modulated Radiation Therapy (IMRT) of Head and Neck File Name: Origination: Last CAP Review: Next CAP Review: Last Review: intensity_modulated_radiation_therapy_imrt_of_head_and_neck

More information

NAVIFY Tumor Board NAVIFY

NAVIFY Tumor Board NAVIFY NAVIFY Tumor Board Make the most informed personalized treatment decisions possible by leveraging innovative technologies and the latest scientific and clinical data WHAT S INSIDE Key Takeaways NAVIFY

More information

CT Scanning Protocol For V2R Guided Surgery Solutions

CT Scanning Protocol For V2R Guided Surgery Solutions CT Scanning Protocol For V2R Guided Surgery Solutions 2 V2R CT Scanning Protocol \\ Contents Contents General requirements... 3 V2R Dual Scan Protocol... 5 V2R Single Scan Protocol... 8 Overview... 10

More information

ISO INTERNATIONAL STANDARD

ISO INTERNATIONAL STANDARD INTERNATIONAL STANDARD ISO 15197 First edition 2003-05-01 In vitro diagnostic test systems Requirements for blood-glucose monitoring systems for self-testing in managing diabetes mellitus Systèmes d'essais

More information

TRI + Digital Solutions 3SHAPE MANUAL

TRI + Digital Solutions 3SHAPE MANUAL TRI + Digital Solutions 3SHAPE MANUAL V1.3_2018-02-12 NOTE TRI + represents the interface between the TRI dental implant system and the 3Shape CADCAM system. The following instructions are intended only

More information

National Cancer Peer Review Programme. Radiotherapy Service Evidence Guide

National Cancer Peer Review Programme. Radiotherapy Service Evidence Guide National Cancer Peer Review Programme Radiotherapy Service Evidence Guide Forward This evidence guide has been formulated to assist organisations in preparing for peer review. The contents of this guide

More information

Using the CFS Infrastructure

Using the CFS Infrastructure CHAPTER 13 The Cisco MDS SAN-OS software uses the Cisco Fabric Services (CFS) infrastructure to enable efficient database distribution and to foster device flexibility. It simplifies SAN provisioning by

More information

Review of TG-186 recommendations

Review of TG-186 recommendations Review of TG-186 recommendations Implementation of advanced brachytherapy dose calculation algorithms beyond TG-43 Rowan M. Thomson Carleton Laboratory for Radiotherapy Physics Carleton University Ottawa

More information

ICD-10 Readiness (*9/14/15) By PracticeHwy.com, Inc.

ICD-10 Readiness (*9/14/15) By PracticeHwy.com, Inc. ICD-10 Readiness (*9/14/15) By PracticeHwy.com, Inc. Notice Information in this document is subject to change without notice and does not represent a commitment on the part of PracticeHwy.com, Inc. Companies,

More information

CHAPTER 6 DESIGN AND ARCHITECTURE OF REAL TIME WEB-CENTRIC TELEHEALTH DIABETES DIAGNOSIS EXPERT SYSTEM

CHAPTER 6 DESIGN AND ARCHITECTURE OF REAL TIME WEB-CENTRIC TELEHEALTH DIABETES DIAGNOSIS EXPERT SYSTEM 87 CHAPTER 6 DESIGN AND ARCHITECTURE OF REAL TIME WEB-CENTRIC TELEHEALTH DIABETES DIAGNOSIS EXPERT SYSTEM 6.1 INTRODUCTION This chapter presents the design and architecture of real time Web centric telehealth

More information

How-To Evaluate a Veterinary Digital Radiography System A SPECIAL REPORT

How-To Evaluate a Veterinary Digital Radiography System A SPECIAL REPORT How-To Evaluate a Veterinary Digital Radiography System A SPECIAL REPORT INTRODUCTION The more information you have, the easier decisions are to make. Experiencing a live hands-on demonstration will take

More information

Clinical Implementation of a New Ultrasound Guidance System. Vikren Sarkar Bill Salter Martin Szegedi

Clinical Implementation of a New Ultrasound Guidance System. Vikren Sarkar Bill Salter Martin Szegedi Clinical Implementation of a New Ultrasound Guidance System Vikren Sarkar Bill Salter Martin Szegedi Disclosure The University of Utah has research agreements with Elekta Agenda Historical Review Trans-Abdominal

More information

8. Reviews. Dilbert. Review objectives Formal design reviews (FDRs) Peer reviews. Comparison of peer reviews methods Expert opinions

8. Reviews. Dilbert. Review objectives Formal design reviews (FDRs) Peer reviews. Comparison of peer reviews methods Expert opinions 8. Reviews Dilbert Review objectives Formal design reviews (FDRs) Peer reviews Inspections walkthroughs Comparison of peer reviews methods Expert opinions ppt by Galin, with major modifications by cah

More information

Venezia Advanced Gynecological Applicator Reaching beyond

Venezia Advanced Gynecological Applicator Reaching beyond Venezia Advanced Gynecological Applicator Reaching beyond Advanced Gynecological Applicator Venezia is FDA cleared and CE marked, but is not available in all markets. 1 Helping clinicians improve patients

More information

Measure #156 (NQF 0382): Oncology: Radiation Dose Limits to Normal Tissues National Quality Strategy Domain: Patient Safety

Measure #156 (NQF 0382): Oncology: Radiation Dose Limits to Normal Tissues National Quality Strategy Domain: Patient Safety Measure #156 (NQF 0382): Oncology: Radiation Dose Limits to Normal Tissues National Quality Strategy Domain: Patient Safety 2016 PQRS OPTIONS FOR INDIVIDUAL MEASURES: CLAIMS, REGISTRY DESCRIPTION: Percentage

More information

Elekta Infinity. Digital accelerator for advanced treatments. Redefining treatment precision, speed and control

Elekta Infinity. Digital accelerator for advanced treatments. Redefining treatment precision, speed and control Elekta Infinity Digital accelerator for advanced treatments Redefining treatment precision, speed and control Do you have the confidence to increase conformance and speed without compromising target coverage?

More information

CALYPSO Highlights

CALYPSO Highlights CALYPSO 2017 - Highlights Seda Gündogdu & Günter Haas Metrology Application Software 02.05.2017 CALYPSO 2017 - Highlights standardized: PiWeb reporting modern: newest technologies linked: colin3d & CALYPSO

More information

Research for Development Impact Network

Research for Development Impact Network Research for Development Impact Network Mid-term Review of Research for Development Impact (RDI) Network Program Executive Summary and Management Response Submitted: 11 July 2017 This report has been prepared

More information

PROJECT PERIODIC REPORT

PROJECT PERIODIC REPORT PROJECT PERIODIC REPORT Project acronym: Project full title: Grant agreement no: CuPiD Closed-loop system for personalized and at-home rehabilitation of people with Parkinson's Disease ICT 288516 Project

More information

Full ultrasound breast volumes. Faster scans. Streamlined workflow. ACUSON S2000 Automated Breast Volume Scanner. Answers for life.

Full ultrasound breast volumes. Faster scans. Streamlined workflow. ACUSON S2000 Automated Breast Volume Scanner. Answers for life. Full ultrasound breast volumes. Faster scans. Streamlined workflow. ACUSON S2000 Automated Breast Volume Scanner Answers for life. 1 ACQUIRE An automated whole breast solution. Reduced acquisition time.

More information

Engineering the System of Systems A MASTER OF ENGINEERING REPORT MASTER OF ENGINEERING

Engineering the System of Systems A MASTER OF ENGINEERING REPORT MASTER OF ENGINEERING Engineering the System of Systems By J. Curtis Beasley A MASTER OF ENGINEERING REPORT Submitted to the College of Engineering at Texas Tech University in Partial Fulfillment of The Requirements for the

More information

5 $3 billion per disease

5 $3 billion per disease $3 billion per disease Chapter at a glance Our aim is to set a market size large enough to attract serious commercial investment from several pharmaceutical companies that see technological opportunites,

More information

Dosimetric Analysis of 3DCRT or IMRT with Vaginal-cuff Brachytherapy (VCB) for Gynaecological Cancer

Dosimetric Analysis of 3DCRT or IMRT with Vaginal-cuff Brachytherapy (VCB) for Gynaecological Cancer Dosimetric Analysis of 3DCRT or IMRT with Vaginal-cuff Brachytherapy (VCB) for Gynaecological Cancer Tan Chek Wee 15 06 2016 National University Cancer Institute, Singapore Clinical Care Education Research

More information

Fast, Easy, Accurate, and Affordable

Fast, Easy, Accurate, and Affordable Streamlined Metal Extrusion Simulation Altair Inspire Extrude Metal allows users to enhance and optimize the extrusion process to drastically improve productivity and quality. Fast, Easy, Accurate, and

More information

MarketsandMarkets. Publisher Sample

MarketsandMarkets.  Publisher Sample MarketsandMarkets http://www.marketresearch.com/marketsandmarkets-v3719/ Publisher Sample Phone: 800.298.5699 (US) or +1.240.747.3093 or +1.240.747.3093 (Int'l) Hours: Monday - Thursday: 5:30am - 6:30pm

More information

Computer Guided Implant Placement - Why it s a Sound Investment For Dentists

Computer Guided Implant Placement - Why it s a Sound Investment For Dentists Computer Guided Implant Placement - Why it s a Sound Investment For Dentists Computer Guided Implant Placement 1 Table of Contents Overview Meeting the Challenges of Patient Demands 3 Free-hand Workflow

More information

CEREC Intermediate Consolidation Course

CEREC Intermediate Consolidation Course CEREC Intermediate Consolidation Course Ceramic Reconstructions Ltd CEREC Intermediate Consolidation Course Initially this course will reinforce the basic training that was part of the delivery process

More information

Communities of Practice Alcohol and Other Drugs Youth Service Nichole Sullivan, Dr Peter Kelly, Cara Jones

Communities of Practice Alcohol and Other Drugs Youth Service Nichole Sullivan, Dr Peter Kelly, Cara Jones Communities of Practice Alcohol and Other Drugs Youth Service Nichole Sullivan, Dr Peter Kelly, Cara Jones The Project. Evaluate the effectiveness of the Community of Practice in achieving it s aims. Partnered

More information

Ministry of Health and Long-Term Care. Palliative Care. Follow-Up on VFM Section 3.08, 2014 Annual Report RECOMMENDATION STATUS OVERVIEW

Ministry of Health and Long-Term Care. Palliative Care. Follow-Up on VFM Section 3.08, 2014 Annual Report RECOMMENDATION STATUS OVERVIEW Chapter 1 Section 1.08 Ministry of Health and Long-Term Care Palliative Care Follow-Up on VFM Section 3.08, 2014 Annual Report RECOMMENDATION STATUS OVERVIEW # of Status of Actions Recommended Actions

More information