Synchronous Systems. Asynchronous Circuit Design. Synchronous Disadvantages. Synchronous Advantages. Asynchronous Advantages. Asynchronous Systems

Size: px
Start display at page:

Download "Synchronous Systems. Asynchronous Circuit Design. Synchronous Disadvantages. Synchronous Advantages. Asynchronous Advantages. Asynchronous Systems"

Transcription

1 Synchronous Systems Asynchronous ircuit Design All events are synchronized to a single global clock. INPUTS hris J. Myers Lecture 1: Introduction Preface and hapter 1 omb. Logic Register OUTPUTS STATE LOK hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 1 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 2 / 1 Synchronous Advantages Synchronous Disadvantages Simple way to implement sequencing. Widely taught and understood. Available components. Simple way to deal with noise and hazards. lock distribution is difficult due to clock skew. Worst-case design. Sensitive to variations in physical parameters. Not modular. Power consumption. hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 3 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 4 / 1 Asynchronous Systems Asynchronous Advantages Synchronization is achieved without a global clock. INPUTS omb. Logic Delay OUTPUTS Elimination of clock distribution problems. Average-case performance. Adaptivity to processing and environmental variations. omponent modularity. Lower system power requirements. STATE hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 5 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 6 / 1

2 Asynchronous hallenges Asynchronous ircuit History Lack of mature computer-aided design tools. Large area overhead for the removal of hazards. Average-case delay can be large. Lack of designer eperience. Every design method traces its roots to one of two individuals: Huffman - fundamental-mode circuits. Muller - speed-independent circuits. hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 7 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 8 / 1 Key Asynchronous ircuit Designs Asynchronous Startups ILLIA (1952) and ILLA2 (1962) - U. of Illinois Atlas (1962) and MU-5 (1966) - U. of Manchester Macromodules (60s-70s) - Washington U., St. Louis First commercial graphics system (70s) - Evans & Sutherland DDM dataflow computer (1978) - U. of Utah First asynchronous microprocessor (1989) - altech First code-compatible processor (1994) - U. of Manchester ommercial pager (90s) - Phillips RAPPID (1995-9) - Intel Handshake Solutions - Microcontrollers (Phillips) Fulcrum - Ethernet Switches (altech) Silisti - Self-timed interconnect (U. of Manchester) Achroni Semiconductor - Asynchronous FPGAs (ornell) hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 9 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 10 / 1 Wine Shop Problem Specification hannels of ommunication Small winery and wine shop in Southern Utah. Only a single wine patron. Wine shop only has a single small shelf. Winery WineryShop Shop ShopPatron Patron Synchronous versus asynchronous wine shopping. hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 11 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 12 / 1

3 hannels of ommunication in VHDL Event Protocol Winery:process send(wineryshop,bottle); Shop:process receive(wineryshop,shelf); send(shoppatron,shelf); Patron:process receive(shoppatron,bag); Shop:process ; - call winery ; - wine arrives ; - call patron ; - patron buys wine hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 13 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 14 / 1 Signal Protocol 2-Phase Protocol Shop:process assign(, 1 ); - call winery guard(, 1 ); - wine arrives assign(, 1 ); - call patron guard(, 1 ); - patron buys wine Shop_2Phase:process assign(, 1 ); - call winery guard(, 1 ); - wine arrives assign(, 1 ); - call patron guard(, 1 ); - patron buys wine assign(, 0 ); - call winery guard(, 0 ); - wine arrives assign(, 0 ); - call patron guard(, 0 ); - patron buys wine hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 15 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 16 / 1 Waveform for 2-Phase Protocol 4-Phase Protocol: Active/Active Shop_4Phase:process assign(, 1 ); - call winery guard(, 1 ); - wine arrives assign(, 0 ); - reset guard(, 0 ); - resets assign(, 1 ); - call patron guard(, 1 ); - patron buys wine assign(, 0 ); - reset guard(, 0 ); - resets hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 17 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 18 / 1

4 Waveform for 4-Phase Protocol 4-Phase Protocol: Passive/Active Shop_PA:process guard(, 1 ); - winery calls assign(, 1 ); - wine is received guard(, 0 ); - resets assign(, 0 ); - reset assign(, 1 ); - call patron guard(, 1 ); - patron buys wine assign(, 0 ); - reset guard(, 0 ); - resets hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 19 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 20 / 1 4-Phase Protocol: Passive/Passive Active/Active Protocol Shop_AA:process assign(, 1 ); - call winery guard(, 1 ); - wine arrives assign(, 0 ); - reset guard(, 0 ); - resets assign(, 1 ); - call patron guard(, 1 ); - patron buys wine assign(, 0 ); - reset guard(, 0 ); - resets hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 21 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 22 / 1 Active/Active Reshuffled Active/Active ircuit Shop_AA_reshuffled:process assign(, 1 ); - call winery guard(, 1 ); - wine arrives assign(, 1 ); - call patron guard(, 1 ); - patron buys wine assign(, 0 ); - reset guard(, 0 ); - resets assign(, 0 ); - reset guard(, 0 ); - resets hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 23 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 24 / 1

5 Passive/Active Reshuffled Passive/Active ircuit Shop_PA_reshuffled:process guard(, 1 ); - winery calls assign(, 1 ); - receives wine guard(, 0 ); - resets assign(, 1 ); - call patron guard(, 0 ); - resets assign(, 0 ); - reset guard(, 1 ); - patron buys wine assign(, 0 ); - reset hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 25 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 26 / 1 AFSM and Huffman Flow Table (A/A reshuffled) Petri-net (P/A reshuffled) + / 0 1, 10 0, , 10 2, , 01 2, , 00 3, 01 / hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 27 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 28 / 1 Petri-net (P/A reshuffled) Petri-net (P/A reshuffled) hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 29 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 30 / 1

6 TEL Structure (P/A reshuffled) A/A Reshuffled ircuit + [] - [~] + [~] [] + - [] + [~] - [~] - [] hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 31 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 32 / 1 P/A Reshuffled ircuit Active/Active State Variable Shop_AA_state_variable:process assign(, 1 ); - call winery guard(, 1 ); - wine arrives assign(, 1 ); - set state variable assign(, 0 ); - reset guard(, 0 ); - resets assign(, 1 ); - call patron guard(, 1 ); - patron buys wine assign(, 0 ); - reset state variable assign(, 0 ); - reset guard(, 0 ); - resets hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 33 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 34 / 1 A/A SV ircuit AFSM and Huffman Flow Table (A/A SV) u6 u5 u1 u3 u4 u2 / 0 1, 0 0, , 10 2, 0 2 3, 0 2, , 01 0, 0 / +, +, +, -, -, +, + u2-, -, u6- glitches! hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 35 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 36 / 1

7 Reduced AFSM and Huffman Flow Table (A/A SV) Karnaugh Maps for Huffman s A/A SV ircuit / 0 0, 10 0, 00 1, 0 1 1, 01 0, 0 1, 00 / / / / hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 37 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 38 / 1 Huffman s A/A SV ircuit Huffman s Assumptions X u5 u1 u4 u6 u2 u7 u3 Bounded gate and wire delay model. ircuit does not need to be closed. Single-input change fundamental mode. One input changes output changes state changes. May need to add delay in fed back state variables. hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 39 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 40 / 1 Huffman s A/A SV ircuit Muller s Active/Active SV ircuit X u1 u4 u6 u2 u7 u3 u5 +, +, X+, +, -, -, +, + will not go low until after both u2- and u6- due to feedback delay assumption. hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 41 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 42 / 1

8 Muller s Assumptions Muller s Active/Active SV ircuit Unbounded gate delay model. Wire delays are assumed to be negligible. Forks are assumed to be isochronic. Model called speed-independent. +, +, +, -, -, +, + change felt at both and gates simultaneously due to isochronic fork assumption. hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 43 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 44 / 1 Timed Wine Shop Timed Winery and Patron Shop_AA_timed:process assign(, 1,0,1); - call winery assign(, 1,0,1); - call patron - wine arrives and patron arrives guard_and(, 1,, 1 ); assign(, 0,0,1); assign(, 0,0,1); - wait for and to reset guard_and(, 0,, 0 ); winery:process guard(, 1 ); - wine requested assign(, 1,2,3); - deliver wine guard(, 0 ); assign(, 0,2,3); patron:process guard(, 1 ); - shop called assign(, 1,5,inf); - buy wine guard(, 0 ); assign(, 0,5,7); hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 45 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 46 / 1 TEL Structure for Timed Wine Shop Eample State Graph for Timed Wine Shop Eample + [2,3] [~] - + [5,7] [~] [2,3] [] [5,inf] [] + [ & ] [~ & ~] R01R F10F R0-0F00 - FF00 RR11 + 1R F1 - - State vector: (,,, ) hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 47 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 48 / 1

9 Karnaugh Maps for Timed ircuit Timed ircuit / / / [2,3] [5,inf; 5,7] hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 49 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 50 / 1 Performance Analysis Validation versus Verification ycle time is the delay from when the patron gets one bottle of wine until he can get another. Assuming the timed circuit delays are uniformly distributed ecept that the patron is etremely unlikely to take more then 10 minutes, we obtain the following cycle times: Muller and Huffman s circuits (A/A SV) minutes Original (A/A reshuffled) minutes Timed circuit minutes Validation is simulation of interesting situations. Verification is ehaustive checks of all possible situations. an check that circuit conforms to the specification. an check that protocol has certain properties. hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 51 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 52 / 1 Sample Properties Summary of ourse Topics The wine arrives before the patron: Always( ) When the wine is requested, it eventually arrives: Eventually() ommunication hannels ommunication Protocols Graphical Representations Huffman ircuits Muller ircuits Timed ircuits Verification Applications hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 53 / 1 hris J. Myers (Lecture 1: Introduction) Asynchronous ircuit Design 54 / 1

Asynchronous Circuit Design

Asynchronous Circuit Design Asynchronous Circuit Design Synchronous Advantages Slide 1 Chris J. Myers Lecture 1: Introduction Preface and Chapter 1 Slide 3 Simple way to implement sequencing. Widely taught and understood. Available

More information

6.2.2 Coffee machine example in Uppaal

6.2.2 Coffee machine example in Uppaal 6.2 Model checking algorithm for TCTL 95 6.2.2 Coffee machine example in Uppaal The problem is to model the behaviour of a system with three components, a coffee Machine, a Person and an Observer. The

More information

Environmental Monitoring for Optimized Production in Wineries

Environmental Monitoring for Optimized Production in Wineries Environmental Monitoring for Optimized Production in Wineries Mounzer SALEH Applications Engineer Agenda The Winemaking Process What Makes a great a Wine? Main challenges and constraints Using Technology

More information

Smart Plunger TM by PCS

Smart Plunger TM by PCS Smart Plunger TM by PCS What they are Highly accurate downhole pressure & temperature gauges Contained inside a variety of high quality plunger styles Utilized in a traveling mode or stationary position

More information

Firebox X Edge e-series Hardware

Firebox X Edge e-series Hardware APPENDIX A Firebox X Edge e-series Hardware The WatchGuard Firebox X Edge e-series is a firewall for small organizations and branch offices. The Firebox X Edge e-series product line includes: Firebox X

More information

1. Continuing the development and validation of mobile sensors. 3. Identifying and establishing variable rate management field trials

1. Continuing the development and validation of mobile sensors. 3. Identifying and establishing variable rate management field trials Project Overview The overall goal of this project is to deliver the tools, techniques, and information for spatial data driven variable rate management in commercial vineyards. Identified 2016 Needs: 1.

More information

MATH Section 5.4

MATH Section 5.4 MATH 1311 Section 5.4 Combining Functions There are times when different functions can be combined based on their individual properties. Very often, this will involve a limiting value (given as a linear

More information

AWRI Refrigeration Demand Calculator

AWRI Refrigeration Demand Calculator AWRI Refrigeration Demand Calculator Resources and expertise are readily available to wine producers to manage efficient refrigeration supply and plant capacity. However, efficient management of winery

More information

FURUNO Multi-GNSS Disciplined Oscillator

FURUNO Multi-GNSS Disciplined Oscillator FURUNO Multi- Disciplined Oscillator Models GF-8701, GF-8702, GF-8703, GF-8704, GF-8705 (Document No. ) www.furuno.com IMPORTANT NOTICE No part of this manual may be reproduced or transmitted in any form

More information

For Beer with Character

For Beer with Character Control systems For Beer with Character Control systems The intelligent way to brew There are many reasons for using control technology in a brewery. Whether it be to reduce working hours, or to automate

More information

Cloud Computing CS

Cloud Computing CS Cloud Computing CS 15-319 Apache Mahout Feb 13, 2012 Shannon Quinn MapReduce Review Scalable programming model Map phase Shuffle Reduce phase MapReduce Implementations Google Hadoop Map Phase Reduce Phase

More information

Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1

Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1 Guided Study Program in System Dynamics System Dynamics in Education Project System Dynamics Group MIT Sloan School of Management 1 Solutions to Assignment #2 Saturday, April 17, 1999 Reading Assignment:

More information

CMC DUO. Standard version. Table of contens

CMC DUO. Standard version. Table of contens CMC DUO Standard version O P E R A T I N G M A N U A L Table of contens 1 Terminal assignment and diagram... 2 2 Earthen... 4 3 Keyboards... 4 4 Maintenance... 5 5 Commissioning... 5 6 Machine specific

More information

ClearFlux. Dialyzer Regeneration System

ClearFlux. Dialyzer Regeneration System ClearFlux Dialyzer Regeneration System...recovers the total cell volume and the clearance of small and middle molecules of the dialyzers to levels that are approximately equivalent to those of new dialyzers.

More information

Master planning in semiconductor manufacturing exercise

Master planning in semiconductor manufacturing exercise Master planning in semiconductor manufacturing exercise Outline of the LP model for master planning We consider a semiconductor manufacturer with a three-stage production: Wafer fab, assembly, testing

More information

Small with big capacity.

Small with big capacity. LineMicro English 2 LineMicro Small with big capacity. INDEX Technologies 4-7 AIR.Plus - DRY.Plus Protek.SAFE - Baking Essentials Electric convection ovens 8-9 Technical details 10 Features 11 3 Technologies

More information

Introduction to Management Science Midterm Exam October 29, 2002

Introduction to Management Science Midterm Exam October 29, 2002 Answer 25 of the following 30 questions. Introduction to Management Science 61.252 Midterm Exam October 29, 2002 Graphical Solutions of Linear Programming Models 1. Which of the following is not a necessary

More information

Asynchronous Circuit Design

Asynchronous Circuit Design Libraries and Packages Slide 1 Asynchronous Circuit Design Chris J. Myers Lecture 2: Communication Channels Chapter 2 Slide 3 ---------------------- -- wine example.vhd ---------------------- library ieee;

More information

Geographic Information Systemystem

Geographic Information Systemystem Agenda Time 9:00:-9:20 9-20 9:50 9:50 10:00 Topic Intro to GIS/Mapping and GPS Applications for GIS in Vineyards Break Presenter Kelly Bobbitt, Mike Bobbitt and Associates Kelly Bobbitt, Mike Bobbitt and

More information

KNOWLEDGE/SKILL REQUIRED

KNOWLEDGE/SKILL REQUIRED OVERVIEW: DESIGNED TO TEST ADVANCED SKILLS AND DETAILED KNOWLEDGE OF THE SCIENCE BEHIND PROCESSES USED, EXPECTED FROM A PROFESSIONAL BARISTA (FOR EXAMPLE, FROM SOMEONE WORKING AS A BARISTA FOR 12 MONTHS

More information

POSITION DESCRIPTION

POSITION DESCRIPTION POSITION DESCRIPTION Position Title: Cellar Hand Incumbent: Date: Location: Marlborough Reports to: Senior Cellar Supervisor SECTION 1 POSITION SUMMARY To assist the winemaking and cellar teams in the

More information

XioSynth MIDI IMPLEMENTATION

XioSynth MIDI IMPLEMENTATION XioSynth MIDI IMPLEMENTATION MIDI CONTROLLER LIST Some controllers adhere to the normal midi-specified use (e.g. modwheel, pan) but most are used arbitrarily and therefore may clash with assignments of

More information

Recent Developments in Rheological Instruments

Recent Developments in Rheological Instruments 22 nd Annual IAOM Mideast & Africa District Conference & Expo 2-5 October 2011 Dead Sea, Jordan Recent Developments in Rheological Instruments Dipl.- Ing.(FH) Markus Löns, Brabender GmbH & Co.KG Duisburg

More information

KRONES fillers for wine and sparkling wine Filling of glass containers

KRONES fillers for wine and sparkling wine Filling of glass containers KRONES fillers for wine and sparkling wine Filling of glass containers 2 KRONES fillers for wine and sparkling wine One-hundred percent precision for valuable products The more valuable the product the

More information

Online Appendix to. Are Two heads Better Than One: Team versus Individual Play in Signaling Games. David C. Cooper and John H.

Online Appendix to. Are Two heads Better Than One: Team versus Individual Play in Signaling Games. David C. Cooper and John H. Online Appendix to Are Two heads Better Than One: Team versus Individual Play in Signaling Games David C. Cooper and John H. Kagel This appendix contains a discussion of the robustness of the regression

More information

Flexible Imputation of Missing Data

Flexible Imputation of Missing Data Chapman & Hall/CRC Interdisciplinary Statistics Series Flexible Imputation of Missing Data Stef van Buuren TNO Leiden, The Netherlands University of Utrecht The Netherlands crc pness Taylor &l Francis

More information

Operating the Rancilio Silvia after PID kit modification Version 1.1

Operating the Rancilio Silvia after PID kit modification Version 1.1 Operating the Rancilio Silvia after PID kit modification Version 1.1 When the machine is turned on, the controller will display the boiler temperature in the machine. The temperature reading will start

More information

Predicting Wine Quality

Predicting Wine Quality March 8, 2016 Ilker Karakasoglu Predicting Wine Quality Problem description: You have been retained as a statistical consultant for a wine co-operative, and have been asked to analyze these data. Each

More information

Identification of Adulteration or origins of whisky and alcohol with the Electronic Nose

Identification of Adulteration or origins of whisky and alcohol with the Electronic Nose Identification of Adulteration or origins of whisky and alcohol with the Electronic Nose Dr Vincent Schmitt, Alpha M.O.S AMERICA schmitt@alpha-mos.com www.alpha-mos.com Alpha M.O.S. Eastern Analytical

More information

Application & Method. doughlab. Torque. 10 min. Time. Dough Rheometer with Variable Temperature & Mixing Energy. Standard Method: AACCI

Application & Method. doughlab. Torque. 10 min. Time. Dough Rheometer with Variable Temperature & Mixing Energy. Standard Method: AACCI T he New Standard Application & Method Torque Time 10 min Flour Dough Bread Pasta & Noodles Dough Rheometer with Variable Temperature & Mixing Energy Standard Method: AACCI 54-70.01 (dl) The is a flexible

More information

ETHIOPIA. A Quick Scan on Improving the Economic Viability of Coffee Farming A QUICK SCAN ON IMPROVING THE ECONOMIC VIABILITY OF COFFEE FARMING

ETHIOPIA. A Quick Scan on Improving the Economic Viability of Coffee Farming A QUICK SCAN ON IMPROVING THE ECONOMIC VIABILITY OF COFFEE FARMING ETHIOPIA A Quick Scan on Improving the Economic Viability of Coffee Farming 1 OBJECTIVES OF STUDY Overall objective Identify opportunities for potential benefits to coffee farmers from improved farm profitability

More information

INSTRUCTION MANUAL FOR BUILT-IN OVENS

INSTRUCTION MANUAL FOR BUILT-IN OVENS INSTRUCTION MANUAL FOR BUILT-IN OVENS OPEN 24/7 ILVE ACCESSORIES ONLINE SHOP INDEX OVEN PRESENTATION 3 Installation and hook-up 3 Demo mode 3 setting the clock (first power-on) 4 switching on the oven

More information

Product Consistency Comparison Study: Continuous Mixing & Batch Mixing

Product Consistency Comparison Study: Continuous Mixing & Batch Mixing July 2015 Product Consistency Comparison Study: Continuous Mixing & Batch Mixing By: Jim G. Warren Vice President, Exact Mixing Baked snack production lines require mixing systems that can match the throughput

More information

Modulating controlled actuators AME 10, AME 20, AME 30 AME 13, AME 23, AME 33 - with EN certified safety function (spring down)

Modulating controlled actuators AME 10, AME 20, AME 30 AME 13, AME 23, AME 33 - with EN certified safety function (spring down) Modulating controlled actuators AME 10, AME 20, AME 30 AME 13, AME 23, AME 33 - with EN 14597 certified safety function (spring down) Description AME 10 AME 13 AME 20, AME 30 AME 23, AME 33 The actuators

More information

Ovens. A+: Energy efficiency class A+ helps to save up to 10% energy compared to class A. Maximum performance with minimum consumption is guaranteed.

Ovens. A+: Energy efficiency class A+ helps to save up to 10% energy compared to class A. Maximum performance with minimum consumption is guaranteed. Ovens A: Product drying performance, measured from A+++ to D / G depending on the product family B: Product energy rating, measured from A+++ to D / G depending on the product family. A+: Energy efficiency

More information

Analysis of Things (AoT)

Analysis of Things (AoT) Analysis of Things (AoT) Big Data & Machine Learning Applied to Brent Crude Executive Summary Data Selecting & Visualising Data We select historical, monthly, fundamental data We check for correlations

More information

Software engineering process. Literature on UML. Modeling as a Design Technique. Use-case modelling. UML - Unified Modeling Language

Software engineering process. Literature on UML. Modeling as a Design Technique. Use-case modelling. UML - Unified Modeling Language Software engineering process UML - Unified Modeling Language Support, Management, Tools, Methods, Techniques, Resources Requirements analysis Acceptance Operation & Maintenance Christoph Kessler, IDA,

More information

The Scoop 2-Way Brewer

The Scoop 2-Way Brewer READ BEFORE USE The Scoop 2-Way Brewer Visit www.hamiltonbeach.in for our complete line of products and Use and Care Guides as well as delicious recipes, tips, and other helpful information! Questions?

More information

Viticulture Managing System. The dawn of a new viticulture.

Viticulture Managing System. The dawn of a new viticulture. Viticulture Managing System. The dawn of a new viticulture. www.same-tractors.com Technology you can trust. SAME VMS: advanced technology applied to viticulture. Viticulture Managing System is a new advanced,

More information

Given a realistic scenario depicting a new site install, the learner will be able to install and setup the brewer for retail turnover without error.

Given a realistic scenario depicting a new site install, the learner will be able to install and setup the brewer for retail turnover without error. Unit 2 Setup Unit Objectives Given a realistic scenario depicting a new site install, the learner will be able to install and setup the brewer for retail turnover without error. Given an installed machine,

More information

John Perry. Fall 2009

John Perry. Fall 2009 Lecture 11: Recursion University of Southern Mississippi Fall 2009 Outline 1 2 3 You should be in worksheet mode to repeat the examples. Outline 1 2 3 re + cursum: return, travel the path again (Latin)

More information

Decision making with incomplete information Some new developments. Rudolf Vetschera University of Vienna. Tamkang University May 15, 2017

Decision making with incomplete information Some new developments. Rudolf Vetschera University of Vienna. Tamkang University May 15, 2017 Decision making with incomplete information Some new developments Rudolf Vetschera University of Vienna Tamkang University May 15, 2017 Agenda Problem description Overview of methods Single parameter approaches

More information

Improved Inverse Response of Boiler Drum Level using Fuzzy Self Adaptive PID Controller

Improved Inverse Response of Boiler Drum Level using Fuzzy Self Adaptive PID Controller Improved Inverse Response of Boiler Drum Level using Fuzzy Self Adaptive PID Controller C.B. Kadu 1, D.V. Sakhare 2 1 Associate Professor, Instrumentation & Control ngineering, Pravara Rural ngineering

More information

Project Statement. Bluetooth Enabled Coffee Machine. ECE 4901 Senior Design I. Fall 2013

Project Statement. Bluetooth Enabled Coffee Machine. ECE 4901 Senior Design I. Fall 2013 Project Statement Bluetooth Enabled Coffee Machine ECE 4901 Senior Design I Fall 2013 ECE Project Members: Jesse Garrard Tham Lam Dinh Shayan Rizvi Mevludin Guster Faculty Advisor: Marten Van Dijk Sponsor:

More information

Growth and Market Validation of Compostable Coffee Capsules. Fabio Osculati, Innovation & Management Consultant

Growth and Market Validation of Compostable Coffee Capsules. Fabio Osculati, Innovation & Management Consultant Growth and Market Validation of Compostable Coffee Capsules Fabio Osculati, Innovation & Management Consultant SUMMARY Introduction Market of coffee capsules, Proprietary vs Compatible offer Compostable

More information

PUBLICIMBALI /2016 FEME Gruppo Cimbali S.p.A. Via Manzoni, Binasco (MI) Italy Tel

PUBLICIMBALI /2016 FEME Gruppo Cimbali S.p.A. Via Manzoni, Binasco (MI) Italy Tel PUBLICIMBALI 48.409 01/2016 FEME 2016 Gruppo Cimbali S.p.A. Via Manzoni, 17 20082 Binasco (MI) Italy Tel. +39 02 90 04 91 TRADITIONAL ESPRESSO COFFEE MACHINES M100ì Turbomilk TRADITIONAL ESPRESSO COFFEE

More information

Case Study 8. Topic. Basic Concepts. Team Activity. Develop conceptual design of a coffee maker. Perform the following:

Case Study 8. Topic. Basic Concepts. Team Activity. Develop conceptual design of a coffee maker. Perform the following: Case Study 8 Andrew Kusiak 2139 Seamans Center Iowa City, Iowa 52242-1527 Tel: 319-335 5934 Fax: 319-335 5669 andrew-kusiak@uiowa.edu http://www.icaen.uiowa.edu/~ankusiak Topic Develop conceptual design

More information

White Paper. Dry Ingredient Chilling for Bakery Manufacturers.

White Paper. Dry Ingredient Chilling for Bakery Manufacturers. White Paper. Dry Ingredient Chilling for Bakery Manufacturers. 02 Dry Ingredient Chilling for Bakery Manufacturers. Abstract Bakery manufacturers know that controlling dough temperature in the mixer is

More information

openlca case study: Conventional vs Organic Viticulture

openlca case study: Conventional vs Organic Viticulture openlca case study: Conventional vs Organic Viticulture Summary 1 Tutorial goal... 2 2 Context and objective... 2 3 Description... 2 4 Build and compare systems... 4 4.1 Get the ecoinvent database... 4

More information

GRIDDLES & GRIDDLE TOASTERS

GRIDDLES & GRIDDLE TOASTERS GRIDDLES & GRIDDLE TOASTERS Powerful, versatile cooking INTRODUCING THE RANGE Designing high-performance machines that busy foodservice outlets can rely on, is what Roband does best. Our comprehensive

More information

Simulation of the Frequency Domain Reflectometer in ADS

Simulation of the Frequency Domain Reflectometer in ADS Simulation of the Frequency Domain Reflectometer in ADS Introduction The Frequency Domain Reflectometer (FDR) is used to determine the length of a wire. By analyzing data collected from this simple circuit

More information

Better air. Leading the new era in air conditioning

Better air. Leading the new era in air conditioning Better air Leading the new era in air conditioning 3 Inverter Technology & Energy Saving No Ozone Depletion Quiet Comfort Powerful Energy Saving Comfort & Health Hi Power Hi Power mode makes your

More information

Barista at a Glance BASIS International Ltd.

Barista at a Glance BASIS International Ltd. 2007 BASIS International Ltd. www.basis.com Barista at a Glance 1 A Brewing up GUI Apps With Barista Application Framework By Jon Bradley lmost as fast as the Starbucks barista turns milk, java beans,

More information

The Economics Surrounding Premium Wine Production

The Economics Surrounding Premium Wine Production The Economics Surrounding Premium Wine Production by Trent Ball 1 and Ray Folwell 2 1 Vineyard and Winery Technology Program, Chair, Yakima Valley Community College, and Partner, 2 Agri-Business Consultants

More information

Roux Bot Home Cooker. UC Santa Cruz, Baskin Engineering Senior Design Project 2015

Roux Bot Home Cooker. UC Santa Cruz, Baskin Engineering Senior Design Project 2015 Roux Bot Home Cooker UC Santa Cruz, Baskin Engineering Senior Design Project 2015 Group Information: Dustin Le Computer Engineering, Robotics Focus dutale@ucsc.edu Justin Boals Electrical Engineering jboals@ucsc.edu

More information

Development of Safe Job Procedure Job Hazard Analysis (JHA)

Development of Safe Job Procedure Job Hazard Analysis (JHA) Development of Safe Job Procedure Job Hazard Analysis (JHA) 2 December 205 Presented by Fenkins L.Y. Chow Tel: 2766 7632, E-mail: iclychow@polyu.edu.hk Industrial Centre The Hong Kong Polytechnic University

More information

Equipment Reference Guide

Equipment Reference Guide Equipment Reference Guide TABLE OF CONTENTS COFFEE BREWERS - LOW VOLUME 3 COFFEE BREWERS - MEDIUM/HIGH VOLUME 3-4 COFFEE BREWERS - HIGH VOLUME 5 HOT WATER TOWER 5 GRINDERS 6 COMBO BREWERS 6 G4 TECHNOLOGY

More information

MAGNETIC HID BALLASTS Ballasts-to-Lamp Remote Mounting Distances

MAGNETIC HID BALLASTS Ballasts-to-Lamp Remote Mounting Distances s-to- Remote Mounting Distances Ignitors s that include an ignitor to start the HID lamp are limited in the distance which they may be mounted remotely from the lamp because the ignitor pulse attenuates

More information

Slow Rot or Not! By Jennifer Goldstein

Slow Rot or Not! By Jennifer Goldstein Slow Rot or Not! By Jennifer Goldstein Subject Area: Science Grade level: 5 th Rationale: In this lesson, students will discover how various environmental conditions affect materials that easily decompose,

More information

ELECTROLUX HIGH SPEED GRILL - Panini. HSG Panini

ELECTROLUX HIGH SPEED GRILL - Panini. HSG Panini ELECTROLUX HIGH SPEED GRILL - Panini HSG Panini Innovation Main Advantages High Speed & Quality Panini Grill SPEED. Up to 6 times faster than a standard sandwich grill with the highest quality and record

More information

Cafeteria Ron software

Cafeteria Ron software Cafeteria RON SOFTWARE We offer a solution for meal ordering with the very same identification medium that is used for attendance registering. Thus, the boarder uses the same ID medium for a number of

More information

HONDURAS. A Quick Scan on Improving the Economic Viability of Coffee Farming A QUICK SCAN ON IMPROVING THE ECONOMIC VIABILITY OF COFFEE FARMING

HONDURAS. A Quick Scan on Improving the Economic Viability of Coffee Farming A QUICK SCAN ON IMPROVING THE ECONOMIC VIABILITY OF COFFEE FARMING HONDURAS A Quick Scan on Improving the Economic Viability of Coffee Farming 1 OBJECTIVES OF STUDY Overall objective Identify opportunities for potential benefits to coffee farmers from improved farm profitability

More information

S m a rtset Control for Convection Models

S m a rtset Control for Convection Models S m a rtset Control for Convection Models C O N T E N T S Features of your Oven Control.....................1 Setting the Clock...............................2 Setting the Minute Timer.........................2

More information

Handling Missing Data. Ashley Parker EDU 7312

Handling Missing Data. Ashley Parker EDU 7312 Handling Missing Data Ashley Parker EDU 7312 Presentation Outline Types of Missing Data Treatments for Handling Missing Data Deletion Techniques Listwise Deletion Pairwise Deletion Single Imputation Techniques

More information

OPERATING MANUAL. Sample PRO 100 Series. Electric Heating. Applies to Versions: SPE1*, SPE2, SPE4, SPE6

OPERATING MANUAL. Sample PRO 100 Series. Electric Heating. Applies to Versions: SPE1*, SPE2, SPE4, SPE6 OPERATING MANUAL Sample PRO 100 Series Electric Heating Applies to Versions: SPE1*, SPE2, SPE4, SPE6 NOTE: All electrically heated roasters in the Sample PRO 100 Series are modular and this manual applies

More information

Topic: Succeed in Wine Storage Management Systems Certification Scheme

Topic: Succeed in Wine Storage Management Systems Certification Scheme Presentation, IFSPA 2010 1 Topic: Succeed in Wine Storage Management Systems Certification Scheme Presenter: Alex, CHEN Xiao-hua (Master Candidate) Dept. of Industrial and Manufacturing Systems Engineering,

More information

thermorollomat MIWE makes baking simple: With a range of classical baking ovens that includes not only efficient in-store ovens and

thermorollomat MIWE makes baking simple: With a range of classical baking ovens that includes not only efficient in-store ovens and B A K E R Y T E C H N O L O G Y B A K E R Y T E C H N O L O G Y MIWE makes baking simple: With a range of classical baking ovens that includes not only efficient in-store ovens and reliable oven solutions

More information

FREQUENTLY ASKED QUESTIONS (FAQS)

FREQUENTLY ASKED QUESTIONS (FAQS) FREQUENTLY ASKED QUESTIONS (FAQS) Table of Contents CAS FAQ... 4 1.1... CAS FAQ 4 2 1.1.1 What is Coffee Assurance Services (CAS)? 4 1.1.2 What is the vision of Coffee Assurance Services? 4 1.1.3 What

More information

Computerized Models for Shelf Life Prediction of Post-Harvest Coffee Sterilized Milk Drink

Computerized Models for Shelf Life Prediction of Post-Harvest Coffee Sterilized Milk Drink Libyan Agriculture esearch Center Journal International (6): 74-78, 011 ISSN 19-4304 IDOSI Publications, 011 Computerized Models for Shelf Life Prediction of Post-Harvest Coffee Sterilized Milk Drink 1

More information

OF THE VARIOUS DECIDUOUS and

OF THE VARIOUS DECIDUOUS and (9) PLAXICO, JAMES S. 1955. PROBLEMS OF FACTOR-PRODUCT AGGRE- GATION IN COBB-DOUGLAS VALUE PRODUCTIVITY ANALYSIS. JOUR. FARM ECON. 37: 644-675, ILLUS. (10) SCHICKELE, RAINER. 1941. EFFECT OF TENURE SYSTEMS

More information

CS 322: (Social and Information) Network Analysis Jure Leskovec Stanford University

CS 322: (Social and Information) Network Analysis Jure Leskovec Stanford University CS 322: (Social and Information) Network Analysis Jure Leskovec Stanford University c 1 10/22/2009 Jure Leskovec, Stanford CS322: Network Analysis 2 Based on 2 player coordination game 2 players each chooses

More information

So small, but yet so big.

So small, but yet so big. LineMicro English 2 LineMicro So small, but yet so big. INDEX Technologies 4-5 AIR.Plus - DRY.Plus - Baking Essentials - Protek.SAFE Electric convection ovens 6 Technical details & Features 7 3 Technologies

More information

Programming Guide For EXTRACTOR Coffee Brewers (CBS 2000e Series)

Programming Guide For EXTRACTOR Coffee Brewers (CBS 2000e Series) Programming Guide For EXTRACTOR Coffee Brewers (CBS 2000e Series) Main: (847) 719-3000 email: techsupport@fetco.com Toll Free: (800) 338-2699 2004 Food Equipment Technologies Company www.fetco.com Part

More information

FOR GENTLY SEPARATING FOREIGN BODIES - DESTEMMERS. Testimonial

FOR GENTLY SEPARATING FOREIGN BODIES - DESTEMMERS. Testimonial WINERY EQUIPMENT RECEPTION, PRESSING, THERMOVINIFICATION, COOLING PROCESS, WINE-MAKING PROCESS CATALOGUE 2019 DESTEMMERS FOR GENTLY SEPARATING FOREIGN BODIES - The durable, reliable destemmers are designed

More information

Feasibility Study of Toronto Public Health's Savvy Diner Menu Labelling Pilot Project

Feasibility Study of Toronto Public Health's Savvy Diner Menu Labelling Pilot Project Feasibility Study of Toronto Public Health's Savvy Diner Menu Labelling Pilot Project CPHA 2015 Conference Tara Brown, MHSc, RD, Dia Mamatis, MA, Tina Sahay, MHSc Toronto Public Health Overview 1. What

More information

Medfusion 3500 V6. Syringe Infusion Pump. Quick Reference Card

Medfusion 3500 V6. Syringe Infusion Pump. Quick Reference Card Medfusion 3500 V6 Syringe Infusion Pump Quick Reference Card Medfusion 3500 v6 Syringe Infusion Pump 2 1 14 15 13 12 11 10 9 22 21 1. Tubing Holders 2. Carrying Handle 3. Syringe Barrel Clamp 4. Syringe

More information

Trade Promotion in the Wine Sector

Trade Promotion in the Wine Sector Trade Promotion in the Wine Sector 2 nd working meeting of the Regional Expert Advisory Working Group on Wine in South Eastern Europe Skopje, 15 December 2015. Objectives of Trade Promotion in the Wine

More information

E N T E R P R I S E S

E N T E R P R I S E S N E W C O E N T E R P R I S E S P/N 110881 Issued 12/99 INSTALLATION and OPERATION MANUAL for OCS-16A BREWERS BREWER SPECIFICATIONS Model Width Length Height US 120V Amps CANADA 120V Amps OCS-16A 14 15-1/2

More information

The Premium Benefits of Steam Infusion UHT Treatment

The Premium Benefits of Steam Infusion UHT Treatment EDITORIAL October 2012 The Premium Benefits of Steam Infusion UHT Treatment UHT, or Ultra High Temperature, treatment uses high temperature for a short time to kill micro-organisms in a food or beverage

More information

Please sign and date here to indicate that you have read and agree to abide by the above mentioned stipulations. Student Name #4

Please sign and date here to indicate that you have read and agree to abide by the above mentioned stipulations. Student Name #4 The following group project is to be worked on by no more than four students. You may use any materials you think may be useful in solving the problems but you may not ask anyone for help other than the

More information

Custom Grind Deluxe Coffee Grinder

Custom Grind Deluxe Coffee Grinder READ BEFORE USE Visit www.hamiltonbeach.in for our complete line of products and Use and Care Guides as well as delicious recipes, tips, and other useful information! Custom Grind Deluxe Coffee Grinder

More information

MDD. High Speed Mixer. Member of the

MDD. High Speed Mixer. Member of the MDD High Speed Mixer Mixing Dividing Rounding Proofing Moulding Member of the Mixing Dividing Rounding Proofing Moulding MDD High Speed Mixer Mechanical Dough Developers Benier Nederland BV manufactures

More information

Whether to Manufacture

Whether to Manufacture Whether to Manufacture Butter and Powder or Cheese A Western Regional Research Publication Glen T. Nelson Station Bulletin 546 November 1954 S S De&dim9 S Whether to Manufacture Butterand Powder... or

More information

Starbucks Coffee Company Company Headquarters

Starbucks Coffee Company Company Headquarters Starbucks Coffee Company Company Headquarters 2401 Utah Ave S Seattle, WA 98134 January 22, 2016 Pacific Palisades Community Council PO Box 1131 Pacific Palisades, CA 90272 RE: ZA 2015-4233-CUB / 15300

More information

PRODUCT FULL-LINE CATALOG

PRODUCT FULL-LINE CATALOG PRODUCT FULL-LINE CATALOG Built for outstanding durability and versatility, Vitamix products are the first choice of foodservice operators, restaurateurs and mixologists worldwide for both front and back

More information

Saeco, for Coffee Lovers. Like us.

Saeco, for Coffee Lovers. Like us. PROFESSIONAL LINE Saeco, for Coffee Lovers. Like us. Saeco offers fresh emotions to Coffee Lovers, anytime and everywhere. Saeco. Crafted by Coffee Lovers. HISTORY Saeco was a small enterprise started

More information

South County Outreach Meetings

South County Outreach Meetings South County Outreach Meetings April 8 th & 11 th, 2019 COUNTY OF SANTA CLARA, PLANNING DEPARTMENT JACQUELINE ONCIANO, MANIRA SANDHIR, MICHAEL MEEHAN, VALERIE NEGRETE, JOANNA WILK. 1 Background / Update

More information

On-line NIR moisture measurement to control the degree of baking in biscuits and cookies

On-line NIR moisture measurement to control the degree of baking in biscuits and cookies On-line NIR moisture measurement to control the degree of baking in biscuits and cookies Hartmut Federle Faculty Product Engineering Contents On-line moisture measurement in baking process Baking process

More information

STACKING CUPS STEM CATEGORY TOPIC OVERVIEW STEM LESSON FOCUS OBJECTIVES MATERIALS. Math. Linear Equations

STACKING CUPS STEM CATEGORY TOPIC OVERVIEW STEM LESSON FOCUS OBJECTIVES MATERIALS. Math. Linear Equations STACKING CUPS STEM CATEGORY Math TOPIC Linear Equations OVERVIEW Students will work in small groups to stack Solo cups vs. Styrofoam cups to see how many of each it takes for the two stacks to be equal.

More information

Starbucks Geography Summary

Starbucks Geography Summary Lesson Plans Starbucks Geography Starbucks Geography Summary Overview There are five lessons designed to teach basic geographic concepts. Each lesson uses Starbucks Coffee to help illustrate the main concepts.

More information

Biosignal Processing Mari Karsikas

Biosignal Processing Mari Karsikas Independent component analysis, ICA Biosignal Processing 2009 5.11. Mari Karsikas After PCA studies Motivation Motivation Independent component analysis (ICA) is a statistical and computational technique

More information

The Challenge of Using Regionalized LCA at Nestlé

The Challenge of Using Regionalized LCA at Nestlé The Challenge of Using Regionalized LCA at Nestlé Urs Schenker, Nestlé Research Center Lausanne 2009-11-13 Overview Introduction Nestlé & the Environment Regionalized LCA for Packaging Packaging & the

More information

TRUSTED RELIABLE QUALITY

TRUSTED RELIABLE QUALITY The.0 allon CBS-24 / 242 XTS Touchscreen Series Coffee Brewers provide flexibility in small-to-medium sized venues such as Convenience Stores, Bakery Cafés and Lobbies. Simplify your daily operations and

More information

TRADITION MADE NEW. THE EVOLUTION.

TRADITION MADE NEW. THE EVOLUTION. TRADITION MADE NEW. THE EVOLUTION. Saeco has always been a pioneer in the OCS and small Ho.Re.Ca. locations market. Today, thanks to its flair for development, to address the increasing needs of coffee

More information

Pressure vacuum mixing Speaker: Bob Woolley 41st Autumn Conference - 7th/8th October 1996

Pressure vacuum mixing Speaker: Bob Woolley 41st Autumn Conference - 7th/8th October 1996 Pressure vacuum mixing Speaker: Bob Woolley 41st Autumn Conference - 7th/8th October 1996 High energy or Chorleywood Bread Process (CBP) mixing was introduced in 1961 by the British Baking Research Association

More information

Academic Year 2014/2015 Assessment Report. Bachelor of Science in Viticulture, Department of Viticulture and Enology

Academic Year 2014/2015 Assessment Report. Bachelor of Science in Viticulture, Department of Viticulture and Enology Academic Year 2014/2015 Assessment Report Bachelor of Science in Viticulture, Department of Viticulture and Enology Due to changes in faculty assignments, there was no SOAP coordinator for the Department

More information

Mini Project 3: Fermentation, Due Monday, October 29. For this Mini Project, please make sure you hand in the following, and only the following:

Mini Project 3: Fermentation, Due Monday, October 29. For this Mini Project, please make sure you hand in the following, and only the following: Mini Project 3: Fermentation, Due Monday, October 29 For this Mini Project, please make sure you hand in the following, and only the following: A cover page, as described under the Homework Assignment

More information

+ = Power up your Smart Cup while pressing the corresponding button to reach different program modes. Heat Exchange fill/tank Drain Page:

+ = Power up your Smart Cup while pressing the corresponding button to reach different program modes. Heat Exchange fill/tank Drain Page: Operating Manual Power up your Smart Cup while pressing the cresponding button to reach different program modes. 1 + = Power switch on back of brewer Heat Exchange fill/tank Drain Page: 2 + = Power switch

More information

APPLIED. Measuring Caffeine Concentration. Application Summary. Analytes: caffeine (C 8 H 10 N 4 O 2

APPLIED. Measuring Caffeine Concentration. Application Summary. Analytes: caffeine (C 8 H 10 N 4 O 2 Application Summary Analytes: caffeine (C 8 H 10 N 4 O 2 ) Detector: OMA-300 Process Analyzer (UV-Vis spectrophotometer) Introduction While it may mystify those of us that need strong coffee to get through

More information

Given a realistic scenario depicting a new site install, the learner will be able to install and setup the brewer for retail turnover without error.

Given a realistic scenario depicting a new site install, the learner will be able to install and setup the brewer for retail turnover without error. Unit 2 Setup Unit Objectives Given a realistic scenario depicting a new site install, the learner will be able to install and setup the brewer for retail turnover without error. Given an installed machine,

More information