A Chemical Batch Reactor Schedule Optimizer

Size: px
Start display at page:

Download "A Chemical Batch Reactor Schedule Optimizer"

Transcription

1 A Chemical Batch Reactor Schedule Optimizer By Steve Morrison, Ph.D Many chemical plants have a very similar configuration to pulp batch digesters; two examples are plants that make starch and nylon. The algorithm for scheduling batch reactors or batch reactor trains is almost identical to the algorithm for batch digester scheduling with two key differences. First, often a pipe header with various valves feeds the batch reactors instead of a conveyor belt. The difficulties of conveyor belt times and backing up the conveyor belt are not present. However, in their place are difficulties of simultaneously feeding different batch reactors given the valve configuration and possibilities with flexhoses. Also, the compatibility of one material flowing through a pipe dirtied by a previous material must be considered. Sometimes cleanouts are expensive; sometimes cleanouts are impossible. The second key difference is that instead of a blow header emptying the vessels, a typically more complex pipe header transfers the products to the product tanks. Again, multiple simultaneous transfers are possible because of internal valves in the header. Flexhoses may also be available on occasion, and cleanouts must also be addressed. This section demonstrates that the conveyor algorithm can be extended to other batch processing problems. Three section examines three cases: 1. One grade, no from-to times, different reactor train yields 2. One grade, from-to times, different reactor train processing times and yields 3. Many grades, fixed sequence of batches, no from-to times, different reactor train fingerprints All cases have the following characteristics in common. In this hypothetical plant there are twelve reactor trains. Each train three pieces of equipment: a pre-charge tank, a batch reactor, and a batch still to separate the product from the byproducts and unreacted feed. The pre-charge tanks are fed from one common feed header, and the main feed is identical for all grades. Different concentrations of additives are put in the batch reactors. While the additives themselves are not a scarce resource and outside the scheduling system, the products of each reactor train are not to be mixed together. There is no advantage of making one grade versus another in a particular reactor train. However, the reactor trains are different, and some have shorter processing times than others, and some trains produce a higher yield than others, though these effects are constant regardless of grade. Case 1. One Grade, No From-to Times, Different Reactor Train Yields The pipe header can fill multiple pre-charge tanks simultaneously, and there is essentially no constraint on the feed header. However, since the reactor trains often produce different product 1

2 grades, and metering the actual production of each reactor train is important, the plant policy is that no two batches are to flow through the product make header at the same time. Table 6.7 shows the times to sequence twelve reactor trains for twelve batches. Each reactor train gives a different yield. A key parameter is the sequencing time is the number of different processing times. Number of Different Processing Sequencing Times Time 8 64 seconds 7 65 seconds 6 62 seconds 5 18 seconds 4 15 seconds 3 7 seconds Table 6.7 Case 1: One Grade, No From-to Times, Different Reactor Processing Times. The time is proportional to the number of searches. The time is not a simple function of the number of different processing times, because the differences in processing times, and the number of reactors in each processing time, are also factors. This is why, for example, there is a large increase in processing times between 5 and 6 different processing times. In the particular example, three different reactor trains had the sixth processing time. The same program was used for both batch pulp reactors and case 1 except for one line of code which was altered to match the different requirements for the feed header. Note that overall, the times are much slower than the conveyor algorithm applied to batch pulp digesters. The conveyor belt was a dominant constraint with batch pulp digesters, and it is not a constraint here. While the results of Table 6.7 are somewhat disappointing, the situation is very different if the problem remains the same, but the algorithm is modified to have one additional bound added to the conveyor algorithm: the size or yield of the reactor. In the original version, a batch reactor would be tried if either it was available earlier or it was larger. In the new version, the bound on it being larger is tightened, by checking if the larger size is greater times the delay times the current optimum rate found so far. If it is not, then the larger size is not great enough to produce a new optimum and the batch reactor is not a candidate. Using this method, there is a surprising result; the problem is not NP-hard but rather has a strict polynomial time solution. When there is only one grade, and there are no from-to times for batch reactors, the problem can be solved in one iteration, using the rule of choosing the batch reactor that gives the maximum production rate. Over 80 batches can be optimally solved in less than one second. 2

3 Case 2: One Grade, From-to Times, Different Reactor Train Processing Times and Yields This case is like Case 1 except all batch reactors and batch stills have the same processing time. Different precharge tanks have different times, and there is an added constraint that the header can only fill one pre-charge tank at a time. This case is superficially closer to conveyor belts and batch pulp digesters. However, as long as there is only one grade and the precharge fill time is independent of the previous batch reactor used, the problem still has a polynomial time solution. The reason this problem reduces to a polynomial time solution is that for scheduling purposes, the precharge operation can be combined with the other operations, and there are no effects that effect a global optimum different than a local optimum. The lesson one can learn from these two cases is that it is not always obvious what is NP- Complete and what has a polynomial time solution. 3

4 Case 3: Many Grades, Fixed Sequence of Batches, No From-to Times, Different Reactor Train Fingerprints A reactor train fingerprint is describes the variation in batch duration or yield of a particular reactor train with respect to a particular grade. Only variations in duration are studied here. If the grades have different characteristics with different batch reactors, the problem often will not have a polynomial time solution. However, the problem can still be solved with the conveyor algorithm with an additional bound, that of improved makespan time due to the choice of reactor. While this method might often give optimal answers, there is no guarantee of a rigorous optimum. The total duration of a batch is the nominal grade duration plus the reactor train fingerprint, whether positive or negative. One can adjust the reactor train fingerprints by adding or subtracting a constant duration from each reactor train for a particular grade and changing the nominal grade duration by the same duration. In this case is convenient to set the minimum reactor train fingerprint for each grade be 0. This ensures that a lower bound for the reactor train fingerprints is 0. Table 6.8 is an example of nominal grade durations. If it is the case that there are no interactions except on the precharge and discharge steps, each of which are fifteen minutes regardless of grade, then the scheduler does not need to deal with all these durations, only the total. Grade A1 HA1 A2 HA2 B1 HB1 Charge Steam React 1:30 1:15 1:45 1:30 1:45 1:00 Quench Separate TOTAL 3:35 3:05 3:20 3:35 2:50 3:20 Table 6.8. Batch Reactor Nominal Grade Durations. Table 6.9 gives example reactor train fingerprints. Reactor/Gra A1 HA1 A2 HA2 B1 HB1 de

5 Table 6.9 Reactor Train Fingerprint Durations in Minutes. If there is no common discharge header and only one grade, then the problem is trivial; simply load each reactor train to minimize delays. If there is only one grade and a common discharge header, the problem is amenable to a conveyor algorithm solution. Either the best reactor for a sequence element is a) One of the currently available ones, or one that has superior characteristics to all that are currently available, or b) The best reactor is one with the best characteristics, or else it is one that is available sooner than all with the best characteristics. Option b is usually very rare since there is only one grade. However, if there are multiple grades, but the batches must be in a fixed order, scheduling is still amenable to the conveyor algorithm. The results of this are that if the batches are all of the same grade, or if the batches must run in a fixed order, then the optimal solution one can find in polynomial time. Simply choose the reactor with a conveyor algorithm. For choices with multiple grades, the solution can still be found with the conveyor algorithm in pseudo-polynomial time. That is the problem complexity grows exponentially with the number of possible grades and number of different kinds of reactors and linearly with the number of batches and reactors. At any point the solution is a) One of the currently available reactors or else a reactor with a better duration or yield for that grade, or b) A reactor with the best duration or yield for that grade or else one that is available sooner. The lesson one can derive from this example is that even for NP-Complete problems, attempting to solve the problem with the conveyor algorithm can still be successful in cases where much of the subsequence can be solved in polynomial or pseudo-polynomial time. 5

Synthesis of Optimal Batch Distillation Sequences

Synthesis of Optimal Batch Distillation Sequences Presented at the World Batch Forum North American Conference Woodcliff Lake, NJ April 7-10, 2002 107 S. Southgate Drive Chandler, Arizona 85226-3222 480-893-8803 Fax 480-893-7775 E-mail: info@wbf.org www.wbf.org

More information

Electricity and Magnetism

Electricity and Magnetism Electricity and Magnetism Electric Current and Electric Circuits What do you think? Read the statement below and decide whether you agree or disagree with it. Place an A in the Before column if you agree

More information

Hydraulic & Lubrication Filters

Hydraulic & Lubrication Filters Hydraulic & Lubrication Filters Part II: Proper Filter Sizing Every filter has a minimum of two components. They are the filter housing and filter element. Most filters include an integral bypass valve.

More information

CHAPTER 3 STUDIES OF TIME AND DISTANCE

CHAPTER 3 STUDIES OF TIME AND DISTANCE CHAPTER 3 STUDIES OF TIME AND DISTANCE Overview of Chapter Our goal in the design of a coordinated traffic control system is for a traveler to arrive at each intersection when the display is green. More

More information

INTRODUCTION. Specifications. Operating voltage range:

INTRODUCTION. Specifications. Operating voltage range: INTRODUCTION INTRODUCTION Thank you for purchasing the EcoPower Electron 65 AC Charger. This product is a fast charger with a high performance microprocessor and specialized operating software. Please

More information

IMPROVED HIGH PERFORMANCE TRAYS

IMPROVED HIGH PERFORMANCE TRAYS Distillation Absorption 2010 A.B. de Haan, H. Kooijman and A. Górak (Editors) All rights reserved by authors as per DA2010 copyright notice IMPROVED HIGH PERFORMANCE TRAYS Stefan Hirsch 1 and Mark Pilling

More information

K.G. Duleep President, H-D Systems International Transport Forum, 2012 Global Fuel Economy Initiative

K.G. Duleep President, H-D Systems International Transport Forum, 2012 Global Fuel Economy Initiative K.G. Duleep President, H-D Systems International Transport Forum, 2012 Global Fuel Economy Initiative Fuel economy of the new car fleet is widely different across countries but there is no analysis of

More information

The purpose of this lab is to explore the timing and termination of a phase for the cross street approach of an isolated intersection.

The purpose of this lab is to explore the timing and termination of a phase for the cross street approach of an isolated intersection. 1 The purpose of this lab is to explore the timing and termination of a phase for the cross street approach of an isolated intersection. Two learning objectives for this lab. We will proceed over the remainder

More information

Alfa Laval s new FCM One is a single answer to today s fuel conditioning challenges

Alfa Laval s new FCM One is a single answer to today s fuel conditioning challenges Editorial December 2013 Alfa Laval s new FCM One is a single answer to today s fuel conditioning challenges Much has changed since Alfa Laval launched the Fuel Conditioning Module, or FCM, in 2001. Booster

More information

Combustion Control Problem Solution Combustion Process

Combustion Control Problem Solution Combustion Process Combustion Control Problem Until recent years, only the largest boilers could justify sophisticated combustion controls. Now, higher fuel costs and occasionally limited fuel availability make it necessary

More information

MOTORS, VOLTAGE, EFFICIENCY AND WIRING. A Deeper Understanding

MOTORS, VOLTAGE, EFFICIENCY AND WIRING. A Deeper Understanding MOTORS, VOLTAGE, EFFICIENCY AND WIRING A Deeper Understanding An understanding of motors, voltage, efficiency, wiring, and how these concepts fit together cohesively is important for several reasons. Greater

More information

DYNAMIC EFFICIENCY - Propulsors with Contra-Rotating Propellers for Dynamic Positioning

DYNAMIC EFFICIENCY - Propulsors with Contra-Rotating Propellers for Dynamic Positioning Author s Name Name of the Paper Session DYNAMIC POSITIONING CONFERENCE October 14-15, 2014 THRUSTER SESSION DYNAMIC EFFICIENCY - Propulsors with Contra-Rotating Propellers for Dynamic Positioning By Kari

More information

Systems. In-line Blending. Solutions you can trust

Systems. In-line Blending. Solutions you can trust In-line Blending Systems In-line Blending Solutions you can trust Blending In-line Blending In-line Blending is the controlled, continuous mixing of a number of components to produce a finished product

More information

Optimizing the life of Cut-Off Wheels: a study of variables when using cut-off wheels on a right angle grinder

Optimizing the life of Cut-Off Wheels: a study of variables when using cut-off wheels on a right angle grinder Industrial Abrasives Optimizing the life of Cut-Off Wheels: a study of variables when using cut-off wheels on a right angle grinder By Peter Boen, technical team leader Application Engineer surface finishing

More information

Marine Recreational Vehicle Batteries Made Simple

Marine Recreational Vehicle Batteries Made Simple Marine Recreational Vehicle Batteries Made Simple Introduction Batteries for marine use, whether engine start or house batteries, can make the difference between happy and contented cruising or an exercise

More information

Application Notes. Calculating Mechanical Power Requirements. P rot = T x W

Application Notes. Calculating Mechanical Power Requirements. P rot = T x W Application Notes Motor Calculations Calculating Mechanical Power Requirements Torque - Speed Curves Numerical Calculation Sample Calculation Thermal Calculations Motor Data Sheet Analysis Search Site

More information

Discovery of Design Methodologies. Integration. Multi-disciplinary Design Problems

Discovery of Design Methodologies. Integration. Multi-disciplinary Design Problems Discovery of Design Methodologies for the Integration of Multi-disciplinary Design Problems Cirrus Shakeri Worcester Polytechnic Institute November 4, 1998 Worcester Polytechnic Institute Contents The

More information

Components of Hydronic Systems

Components of Hydronic Systems Valve and Actuator Manual 977 Hydronic System Basics Section Engineering Bulletin H111 Issue Date 0789 Components of Hydronic Systems The performance of a hydronic system depends upon many factors. Because

More information

Biodiesel. As fossil fuels become increasingly expensive to extract and produce, bio-diesel is

Biodiesel. As fossil fuels become increasingly expensive to extract and produce, bio-diesel is Aaron Paternoster CHEM 380 10D Prof. Laurie Grove January 30, 2015 Biodiesel Introduction As fossil fuels become increasingly expensive to extract and produce, bio-diesel is proving to be an economically

More information

Technical Note. Management of Sealed Lead Acid Batteries in Reliable Small DC Standby Power Supply Systems

Technical Note. Management of Sealed Lead Acid Batteries in Reliable Small DC Standby Power Supply Systems Technical Note Management of Sealed Lead Acid Batteries in Reliable Small DC Standby Power Supply Systems Automation Products Introduction As more and more remote monitoring is installed on sites ranging

More information

VALVES & ACTUATORS. 20th TECHNOLOGY REPORT. SOLUTIONS for FLUID MOVEMENT, MEASUREMENT & CONTAINMENT. HOW MUCH PRESSURE Can a 150 lb. Flange Withstand?

VALVES & ACTUATORS. 20th TECHNOLOGY REPORT. SOLUTIONS for FLUID MOVEMENT, MEASUREMENT & CONTAINMENT. HOW MUCH PRESSURE Can a 150 lb. Flange Withstand? TOP REASONS to Manage Corrosion PROS & CONS of Volumetric Flowmeters HOW MUCH PRESSURE Can a 150 lb. Flange Withstand? 20th 19 9 5-2 015 SOLUTIONS for FLUID MOVEMENT, MEASUREMENT & CONTAINMENT special

More information

Practical Issues Concerning Dispensing End Effectors Time Pressure

Practical Issues Concerning Dispensing End Effectors Time Pressure Practical Issues Concerning Dispensing End Effectors By Doug Dixon, Joel Kazalski, Frank Murch and Steve Marongelli Universal Instruments Corporation General Dispensing Module Group PO Box 825 Binghamton,

More information

Save Thousands of Dollars Per Year!

Save Thousands of Dollars Per Year! Save Thousands of Dollars Per Year! Simsite Re-Engineered Double Suction Impeller Re-Engineer Your Impellers! Pump Company Since 1919 Simsite Structural Composite Pumps, Impellers, Rings and Parts Custom

More information

White paper: Pneumatics or electrics important criteria when choosing technology

White paper: Pneumatics or electrics important criteria when choosing technology White paper: Pneumatics or electrics important criteria when choosing technology The requirements for modern production plants are becoming increasingly complex. It is therefore essential that the drive

More information

Cam Motion Case Studies #1 and # 2

Cam Motion Case Studies #1 and # 2 Cam Motion Case Studies #1 and # 2 Problem/Opprtunity: At an operating speed of 150 to 160 rpm, Cam Motion #1 causes the cam follower to leave the cam surface unless excessive air pressure is applied to

More information

APPENDIX A: Background Information to help you design your car:

APPENDIX A: Background Information to help you design your car: APPENDIX A: Background Information to help you design your car: Solar Cars: A solar car is an automobile that is powered by the sun. Recently, solar power has seen a large interest in the news as a way

More information

Introducing the OMAX Generation 4 cutting model

Introducing the OMAX Generation 4 cutting model Introducing the OMAX Generation 4 cutting model 8/11/2014 It is strongly recommend that OMAX machine owners and operators read this document in its entirety in order to fully understand and best take advantage

More information

Electric Circuits. Lab. FCJJ 16 - Solar Hydrogen Science Kit. Next Generation Science Standards. Initial Prep Time. Lesson Time. Assembly Requirements

Electric Circuits. Lab. FCJJ 16 - Solar Hydrogen Science Kit. Next Generation Science Standards. Initial Prep Time. Lesson Time. Assembly Requirements Next Generation Science Standards NGSS Science and Engineering Practices: Asking questions and defining problems Developing and using models Planning and carrying out investigations Analyzing and interpreting

More information

MARKFORGED CASE STUDY STANLEY INFRASTRUCTURE

MARKFORGED CASE STUDY STANLEY INFRASTRUCTURE MARKFORGED CASE STUDY Stanley Black & Decker, an S&P 500 company, is a diversified global provider of hand tools, power tools and related accessories, electronic security solutions, healthcare solutions,

More information

The Discussion of this exercise covers the following points:

The Discussion of this exercise covers the following points: Exercise 1 Battery Fundamentals EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with various types of lead-acid batteries and their features. DISCUSSION OUTLINE The Discussion

More information

Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura. Nihon University, Narashinodai , Funabashi city,

Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura. Nihon University, Narashinodai , Funabashi city, Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura Nihon University, Narashinodai 7-24-1, Funabashi city, Email: nakamura@ecs.cst.nihon-u.ac.jp Abstract A minimum

More information

Cemco Central Mixer. Sales Specification Sheet. Quality of Concrete and Design. Basic Overview

Cemco Central Mixer. Sales Specification Sheet. Quality of Concrete and Design. Basic Overview Cemco Central Mixer Sales Specification Sheet Quality of Concrete and Design Basic Overview Contents Cemco Central Mixer... 1 Cemco Central Mixer Portability... 1 Mixer Uniformity/Quality of Concrete...

More information

Systems. In-line Blending

Systems. In-line Blending In-line Blending Systems In-line Blending Blending In-line Blending In-line Blending is the controlled, continuous mixing of a number of components to produce a finished product of closely defined quality.

More information

Chapter 1: Battery management: State of charge

Chapter 1: Battery management: State of charge Chapter 1: Battery management: State of charge Since the mobility need of the people, portable energy is one of the most important development fields nowadays. There are many types of portable energy device

More information

Sport Shieldz Skull Cap Evaluation EBB 4/22/2016

Sport Shieldz Skull Cap Evaluation EBB 4/22/2016 Summary A single sample of the Sport Shieldz Skull Cap was tested to determine what additional protective benefit might result from wearing it under a current motorcycle helmet. A series of impacts were

More information

What Everyone Should Know About Automatic Grease Lubricators

What Everyone Should Know About Automatic Grease Lubricators What Everyone Should Know About Automatic Grease Lubricators [Type the company address] White Paper Sponsored by: [Type the phone number] [Pick the date] PLI, LLC 1509 Rapids Dr Racine, WI 53404 Phone:

More information

Appendix C: Model Contest Judging Guidelines

Appendix C: Model Contest Judging Guidelines Appendix C: Model Contest Judging Guidelines The Model Contest Judging Guidelines are presented here for Guidance of the Contest Committee, Model Contest judges, and Model (and Portable Layout) Contest

More information

Proposed Solution to Mitigate Concerns Regarding AC Power Flow under Convergence Bidding. September 25, 2009

Proposed Solution to Mitigate Concerns Regarding AC Power Flow under Convergence Bidding. September 25, 2009 Proposed Solution to Mitigate Concerns Regarding AC Power Flow under Convergence Bidding September 25, 2009 Proposed Solution to Mitigate Concerns Regarding AC Power Flow under Convergence Bidding Background

More information

Lethal voltages from Ion Gauge/Gas Discharge Interactions

Lethal voltages from Ion Gauge/Gas Discharge Interactions Lethal voltages from Ion Gauge/Gas Discharge Interactions C. Morrison, Ph. D. Senior Scientist Granville-Phillips Co. An open ground circuit plus millitorr local pressure can expose personnel to lethal

More information

20th. SOLUTIONS for FLUID MOVEMENT, MEASUREMENT & CONTAINMENT. Do You Need a Booster Pump? Is Repeatability or Accuracy More Important?

20th. SOLUTIONS for FLUID MOVEMENT, MEASUREMENT & CONTAINMENT. Do You Need a Booster Pump? Is Repeatability or Accuracy More Important? Do You Need a Booster Pump? Secrets to Flowmeter Selection Success Is Repeatability or Accuracy More Important? 20th 1995-2015 SOLUTIONS for FLUID MOVEMENT, MEASUREMENT & CONTAINMENT Special Section Inside!

More information

When should an Electric Adjustable Speed Drive be used instead of a Gas or Steam Turbine? Paul Blaiklock, Manish Verma, Stephan Bondy

When should an Electric Adjustable Speed Drive be used instead of a Gas or Steam Turbine? Paul Blaiklock, Manish Verma, Stephan Bondy When should an Electric Adjustable Speed Drive be used instead of a Gas or Steam Turbine? Paul Blaiklock, Manish Verma, Stephan Bondy TMEIC Corporation Roanoke, VA, and Houston, TX 2/8/2013 When should

More information

Electronic materials and components-a component review

Electronic materials and components-a component review Electronic materials and components-a component review Through-hole components We start our review of components by looking at those designs with leads that are intended to be soldered into through-holes

More information

Wide Band EFIE Installation Instructions. Locate the wide band oxygen sensor current wire

Wide Band EFIE Installation Instructions. Locate the wide band oxygen sensor current wire Wide Band EFIE Installation Instructions Install your fuel efficiency device The EFIE is not intended to be a fuel saver by itself. You should install a device that is designed to get more energy out of

More information

Economic Impact of Derated Climb on Large Commercial Engines

Economic Impact of Derated Climb on Large Commercial Engines Economic Impact of Derated Climb on Large Commercial Engines Article 8 Rick Donaldson, Dan Fischer, John Gough, Mike Rysz GE This article is presented as part of the 2007 Boeing Performance and Flight

More information

Integrating RTN scheduling models with ISA-95 standard. Pedro M. Castro Ignacio E. Grossmann Iiro Harjunkoski

Integrating RTN scheduling models with ISA-95 standard. Pedro M. Castro Ignacio E. Grossmann Iiro Harjunkoski Integrating RTN scheduling models with ISA-95 standard Pedro M. Castro Ignacio E. Grossmann Iiro Harjunkoski Motivation EWO aims to simultaneously account for KPI across multiple business units Integration

More information

Linear Shaft Motors in Parallel Applications

Linear Shaft Motors in Parallel Applications Linear Shaft Motors in Parallel Applications Nippon Pulse s Linear Shaft Motor (LSM) has been successfully used in parallel motor applications. Parallel applications are ones in which there are two or

More information

Basic voltmeter use. Resources and methods for learning about these subjects (list a few here, in preparation for your research):

Basic voltmeter use. Resources and methods for learning about these subjects (list a few here, in preparation for your research): Basic voltmeter use This worksheet and all related files are licensed under the Creative Commons Attribution License, version 1.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/,

More information

Chemical Engineering 3P04 Process Control Tutorial # 2 Learning goals

Chemical Engineering 3P04 Process Control Tutorial # 2 Learning goals Chemical Engineering 3P04 Process Control Tutorial # 2 Learning goals 1. The feedback cause-effect principle 2. Key element in the loop: The control valve WHAT DOES A FEEDBACK SYSTEM DO? Desired value

More information

Commissioning chilled water TES systems

Commissioning chilled water TES systems Commissioning chilled water TES systems Chilled water thermal energy storage systems should be as simple as possible. The success of a project depends on documenting and continually evaluating the owner

More information

Switch design optimisation: Optimisation of track gauge and track stiffness

Switch design optimisation: Optimisation of track gauge and track stiffness 1 Switch design optimisation: Optimisation of track gauge and track stiffness Elias Kassa Professor, Phd Department of Civil and Transport Engineering, NTNU Trondheim, Norway E-mail: elias.kassa@ntnu.no

More information

How Automated Air Control Valves Can Replace VFDs for Air Knife Systems

How Automated Air Control Valves Can Replace VFDs for Air Knife Systems How Automated Air Control Valves Can Replace VFDs for Air Knife Systems Variable Frequency Drives for electric motors have become a welcomed addition to a wide variety of machinery for a long list of 21

More information

Electronic. Why use an electronic system?

Electronic. Why use an electronic system? Electronic Why use an electronic system? Today the requirement are much higher than for a number of years ago. There are both legal requirements and the wishes of the customer about. As little harmful

More information

BASIC ELECTRICAL MEASUREMENTS By David Navone

BASIC ELECTRICAL MEASUREMENTS By David Navone BASIC ELECTRICAL MEASUREMENTS By David Navone Just about every component designed to operate in an automobile was designed to run on a nominal 12 volts. When this voltage, V, is applied across a resistance,

More information

Exercise 6. Three-Phase AC Power Control EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. Introduction to three-phase ac power control

Exercise 6. Three-Phase AC Power Control EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. Introduction to three-phase ac power control Exercise 6 Three-Phase AC Power Control EXERCISE OBJECTIVE When you have completed this exercise, you will know how to perform ac power control in three-phase ac circuits, using thyristors. You will know

More information

Chapter 13: Application of Proportional Flow Control

Chapter 13: Application of Proportional Flow Control Chapter 13: Application of Proportional Flow Control Objectives The objectives for this chapter are as follows: Review the benefits of compensation. Learn about the cost to add compensation to a hydraulic

More information

PAVING WAY FOR WIND POWER

PAVING WAY FOR WIND POWER PAVING WAY FOR WIND POWER WÄRTSILÄ PAVING WAY FOR WIND POWER Generation capacity that can be online in minutes generates major revenue for the owner. As more and more power generated from the wind is being

More information

PVP Field Calibration and Accuracy of Torque Wrenches. Proceedings of ASME PVP ASME Pressure Vessel and Piping Conference PVP2011-

PVP Field Calibration and Accuracy of Torque Wrenches. Proceedings of ASME PVP ASME Pressure Vessel and Piping Conference PVP2011- Proceedings of ASME PVP2011 2011 ASME Pressure Vessel and Piping Conference Proceedings of the ASME 2011 Pressure Vessels July 17-21, & Piping 2011, Division Baltimore, Conference Maryland PVP2011 July

More information

ROTAMAT Sludge Acceptance Plant Ro 3

ROTAMAT Sludge Acceptance Plant Ro 3 ROTAMAT Sludge Acceptance Plant Ro 3 with integrated screenings washing and pressing The Quality Company Worldwide HUBER provides complete systems and processes for septic sludge treatment. Our equipment,

More information

Normal vs Abnormal Combustion in SI engine. SI Combustion. Turbulent Combustion

Normal vs Abnormal Combustion in SI engine. SI Combustion. Turbulent Combustion Turbulent Combustion The motion of the charge in the engine cylinder is always turbulent, when it is reached by the flame front. The charge motion is usually composed by large vortexes, whose length scales

More information

Asynchronous Restriking CDI 2 channel

Asynchronous Restriking CDI 2 channel Asynchronous Restriking CDI 2 channel Parts List ARC-2 module Decals Power Cable Fuse Specifications Operating Voltage: 8-20V Operating Current: Max Operating RPM: Ambient Temp range: Ignition inputs:

More information

This defines the lower and upper threshold if applicable to incorporate cases in the database

This defines the lower and upper threshold if applicable to incorporate cases in the database Meta data 1. Introduction Using data for policymaking or in scientific research requires sufficient knowledge about the quality of the data source. As the data is instrumental to the outcome of the process,

More information

Common Terms Types of Intake Manifolds... 5

Common Terms Types of Intake Manifolds... 5 INDUCTION SYSTEMS Common Terms... 2 Plenum... 2 Helmholtz Resonator... 2 Intake Runners... 2 Carburetor Spacers... 2 Individual Runners (IR)... 2 Tuned Port... 3 Manifold Heat... 3 Venturi... 3 Booster

More information

Eskisehir Light Train- Correcting Capacitive

Eskisehir Light Train- Correcting Capacitive Case Study-Estram Light Train Eskisehir Light Train- Correcting Capacitive Power Factor Eskisehir, a city in the Anatolia region of Turkey is located in an area inhabited since at least 3500 BCE- the copper

More information

Introduction to Electricity & Electrical Current

Introduction to Electricity & Electrical Current Introduction to Electricity & Electrical Current Physical Science Georgia Performance Standards: SPS10a. Investigate static electricity in terms of friction, induction, and conduction. SPS10b. Explain

More information

Deliverables. Genetic Algorithms- Basics. Characteristics of GAs. Switch Board Example. Genetic Operators. Schemata

Deliverables. Genetic Algorithms- Basics. Characteristics of GAs. Switch Board Example. Genetic Operators. Schemata Genetic Algorithms Deliverables Genetic Algorithms- Basics Characteristics of GAs Switch Board Example Genetic Operators Schemata 6/12/2012 1:31 PM copyright @ gdeepak.com 2 Genetic Algorithms-Basics Search

More information

Simplifying the energy transition flexible and easy-to-use converter for innovative grids usa.siemens.com/sinacon-hc

Simplifying the energy transition flexible and easy-to-use converter for innovative grids usa.siemens.com/sinacon-hc SINACON Hybrid Converter Simplifying the energy transition flexible and easy-to-use converter for innovative grids usa.siemens.com/sinacon-hc The growing distributed energy market is challenging grid operation

More information

3 Living with a 700/900 Series

3 Living with a 700/900 Series 3 Living with a 700/900 Series will you get along together? There aren t so many rear-wheel drive cars produced today, although, they do have their advantages. As well as being a general preference for

More information

ELECTRIC CURRENT. Name(s)

ELECTRIC CURRENT. Name(s) Name(s) ELECTRIC CURRT The primary purpose of this activity is to decide upon a model for electric current. As is the case for all scientific models, your electricity model should be able to explain observed

More information

Health and Safety Executive, Technology and Health Sciences Division, Magdalen House, Bootle.

Health and Safety Executive, Technology and Health Sciences Division, Magdalen House, Bootle. SECURITY OF ELECTRICAL SUPPLY SYSTEMS INCLUDING STANDBY SUPPLIES Eur.Ing J.A. McLean B.Sc. C.Eng. MIEE. FIOSH Health and Safety Executive, Technology and Health Sciences Division, Magdalen House, Bootle.

More information

SW20 Coolant System Maintenance.

SW20 Coolant System Maintenance. SW20 Coolant System Maintenance. This article contains information on how to change and bleed the coolant, as well as flushing the system. It is based on information in the service manual, tips gathered

More information

Chapter 3 Grouting Equipment and Methods

Chapter 3 Grouting Equipment and Methods Chapter 3 Grouting Equipment and Methods 3-1. Grout-Mixing Equipment a. Mixing and blending tanks. Mixing and blending tanks (Figure 3-1) for chemical-grouting operations should be constructed of materials

More information

Flexible Waveform Generation Accomplishes Safe Braking

Flexible Waveform Generation Accomplishes Safe Braking Flexible Waveform Generation Accomplishes Safe Braking Just as the antilock braking sytem (ABS) has become a critical safety feature in automotive vehicles, it perhaps is even more important in railway

More information

CHALLENGES IN DESIGNING SYNTHESIS CONVERTERS FOR VERY LARGE METHANOL PRODUCTION CAPACITY

CHALLENGES IN DESIGNING SYNTHESIS CONVERTERS FOR VERY LARGE METHANOL PRODUCTION CAPACITY CHALLENGES IN DESIGNING SYNTHESIS CONVERTERS FOR VERY LARGE METHANOL PRODUCTION CAPACITY By E. Filippi METHANOL CASALE S.A., Lugano, Switzerland presented at the 5th Iran Petrochemical Forum Tehran, Iran

More information

A Review of DC/DC Converter De-rating Practices

A Review of DC/DC Converter De-rating Practices A Review of DC/DC Converter De-rating Practices By: Tim Powers As a power design engineer, the most commonly asked questions are by far related to thermal performance of dc-dc converters. At issue are

More information

Locomotive Allocation for Toll NZ

Locomotive Allocation for Toll NZ Locomotive Allocation for Toll NZ Sanjay Patel Department of Engineering Science University of Auckland, New Zealand spat075@ec.auckland.ac.nz Abstract A Locomotive is defined as a self-propelled vehicle

More information

Application of claw-back

Application of claw-back Application of claw-back A report for Vector Dr. Tom Hird Daniel Young June 2012 Table of Contents 1. Introduction 1 2. How to determine the claw-back amount 2 2.1. Allowance for lower amount of claw-back

More information

4.2 Friction. Some causes of friction

4.2 Friction. Some causes of friction 4.2 Friction Friction is a force that resists motion. Friction is found everywhere in our world. You feel the effects of when you swim, ride in a car, walk, and even when you sit in a chair. Friction can

More information

White paper: Originally published in ISA InTech Magazine Page 1

White paper: Originally published in ISA InTech Magazine Page 1 Page 1 Improving Differential Pressure Diaphragm Seal System Performance and Installed Cost Tuned-Systems ; Deliver the Best Practice Diaphragm Seal Installation To Compensate Errors Caused by Temperature

More information

Flexible-Fuel Vehicle and Refueling Infrastructure Requirements Associated with Renewable Fuel Standard (RFS2) Implementation

Flexible-Fuel Vehicle and Refueling Infrastructure Requirements Associated with Renewable Fuel Standard (RFS2) Implementation Flexible-Fuel Vehicle and Refueling Infrastructure Requirements Associated with Renewable Fuel Standard (RFS2) Implementation Conducted for The Renewable Fuels Association March 211 47298 Sunnybrook Lane

More information

HIGH EFFICIENCY CONTINUOUS CENTRIFUGALS USED IN A MASSECUITE ATAM Congress 2012, Veracruz, MEXICO

HIGH EFFICIENCY CONTINUOUS CENTRIFUGALS USED IN A MASSECUITE ATAM Congress 2012, Veracruz, MEXICO HIGH EFFICIENCY CONTINUOUS CENTRIFUGALS USED IN A MASSECUITE ATAM Congress 2012, Veracruz, MEXICO By Ing. Rafael M Ibáñez, Western States Machine Company ABSTRACT San Cristobal Mill A continuous centrifuges

More information

OPTIMAL BATCH DISTILLATION SEQUENCES USING ASPEN PLUS

OPTIMAL BATCH DISTILLATION SEQUENCES USING ASPEN PLUS OPTIMAL BATCH DISTILLATION SEQUENCES USING ASPEN PLUS Bradley H. Cook, Matthew J. Engel, and Anthony J. Zehnder Air Products and Chemicals, Inc. 7201 Hamilton Blvd. Allentown, PA 18195-1501 Craig S. Landis

More information

LESSON 2 BASIC CONSTRUCTION AND OPERATION OF HYDRAULIC ACTUATING DEVICES, FLOW CONTROL, AND DIRECTIONAL DEVICES. STP Tasks:

LESSON 2 BASIC CONSTRUCTION AND OPERATION OF HYDRAULIC ACTUATING DEVICES, FLOW CONTROL, AND DIRECTIONAL DEVICES. STP Tasks: LESSON 2 BASIC CONSTRUCTION AND OPERATION OF HYDRAULIC ACTUATING DEVICES, FLOW CONTROL, AND DIRECTIONAL DEVICES STP Tasks: 552-758-1003 552-758-1071 OVERVIEW LESSON DESCRIPTION: In this lesson you will

More information

Model E Belt Press Compact design for a small footprint

Model E Belt Press Compact design for a small footprint Manufacturer of Dewatering Systems Model E Belt Press Compact design for a small footprint American Made www.bdpindustries.com Model E available with: Horizontal Gravity Zone or Independent Rotary Drum

More information

Biennial Assessment of the Fifth Power Plan

Biennial Assessment of the Fifth Power Plan Biennial Assessment of the Fifth Power Plan Gas Turbine Power Plant Planning Assumptions October 17, 2006 Simple- and combined-cycle gas turbine power plants fuelled by natural gas are among the bulk power

More information

NORDAC 2014 Topic and no NORDAC

NORDAC 2014 Topic and no NORDAC NORDAC 2014 Topic and no NORDAC 2014 http://www.nordac.net 8.1 Load Control System of an EV Charging Station Group Antti Rautiainen and Pertti Järventausta Tampere University of Technology Department of

More information

Hydraulic Slide Starts and Stops

Hydraulic Slide Starts and Stops Hydraulic Slide Starts and Stops This guide is intended to assist Heartland Owners in understanding why the Hydraulic Pump may start and stop while operating the slideouts. Who created this document? Important

More information

A First Principles-based Li-Ion Battery Performance and Life Prediction Model Based on Reformulated Model Equations NASA Battery Workshop

A First Principles-based Li-Ion Battery Performance and Life Prediction Model Based on Reformulated Model Equations NASA Battery Workshop A First Principles-based Li-Ion Battery Performance and Life Prediction Model Based on Reformulated Model Equations NASA Battery Workshop Huntsville, Alabama November 17-19, 19, 2009 by Gerald Halpert

More information

Why Ni-Cd batteries are superior to VRLA batteries. Statements and facts

Why Ni-Cd batteries are superior to VRLA batteries. Statements and facts Why Ni-Cd batteries are superior to VRLA batteries Statements and facts 1. Maintenance Maintenance for VLRA batteries leads to higher costs than for nickelcadmium batteries. 2. Lifetime In practice, the

More information

Building German Tank Companies for Your Battles

Building German Tank Companies for Your Battles Building German Tank Companies for Your Battles Welcome to the third Ostfront Commander s Bulletin, Colonel. We re going to tackle the German armed forces this time. You re still going to need the Wehrmacht

More information

MORE CONTROLLERS ON A BATTERY BATTERY CHARGE LIMITATIONS

MORE CONTROLLERS ON A BATTERY BATTERY CHARGE LIMITATIONS Avigliana - 8 March 2015 TECHNICAL REPORT MORE CONTROLLERS ON A BATTERY BATTERY CHARGE LIMITATIONS Photovoltaic panels can be wired in series or in parallel. In the first case only panels with the same

More information

Does your FCC catalyst add up? Manfred Brown, Johnson Matthey Process Technologies

Does your FCC catalyst add up? Manfred Brown, Johnson Matthey Process Technologies Does your FCC catalyst add up? Manfred Brown, Johnson Matthey Process Technologies Does your FCC catalyst add up? FCC catalysts and additives are generally considered the second greatest refinery operating

More information

Power Management Solution: Constant Voltage (CV) Pulse Charging of Hybrid Capacitors

Power Management Solution: Constant Voltage (CV) Pulse Charging of Hybrid Capacitors VISHAY BCCOMPONENTS www.vishay.com Aluminum Capacitors By Gerald Tatschl ENYCAP TM 196 HVC SERIES GENERAL INFORMATION Rechargeable energy storage solutions are of high interest because of their flexibility,

More information

Why do the dots go where they do?

Why do the dots go where they do? Reprinted from Real Answers Why do the dots go where they do? Volume 13, Issue 1 trucktires.com 1-800-543-7522 ask the DOCTOR Bridgestone tires have either a red or yellow dot, which can be used to mount

More information

DYNAMIC BOOST TM 1 BATTERY CHARGING A New System That Delivers Both Fast Charging & Minimal Risk of Overcharge

DYNAMIC BOOST TM 1 BATTERY CHARGING A New System That Delivers Both Fast Charging & Minimal Risk of Overcharge DYNAMIC BOOST TM 1 BATTERY CHARGING A New System That Delivers Both Fast Charging & Minimal Risk of Overcharge William Kaewert, President & CTO SENS Stored Energy Systems Longmont, Colorado Introduction

More information

Single Pole Circuit Protectors 55. Multi-Pole Circuit Protectors 56. Configurations 58. Operating Characteristics 59.

Single Pole Circuit Protectors 55. Multi-Pole Circuit Protectors 56. Configurations 58. Operating Characteristics 59. Single Pole Circuit Protectors 55 Multi-Pole Circuit Protectors 56 Configurations 58 Operating Characteristics 59 Delay Curves 60 Specifications 61 Decision Tables 62 SINGLE POLE CIRCUIT PROTECTORS The

More information

Instructions for use Attention

Instructions for use Attention Instructions for use 1. Attention... 45 2. 2.1. 2.2. 2.3. 2.4. 2.5. 2.6. General information Description Voltmeter Alternator Testing LED Clamp Recharge the Booster using the AC 230V or 110V / DC 12V charger

More information

Advanced Electromechanical Actuation Components to Solutions Systems

Advanced Electromechanical Actuation Components to Solutions Systems Advanced Electromechanical Actuation Components to Solutions Systems Components to Solutions For over 25 years, Exlar has been providing advanced and robust electromechanical actuators for applications

More information

Improve Your Fuel Economy With Advanced Shifting Technology. With DynActive Shifting

Improve Your Fuel Economy With Advanced Shifting Technology. With DynActive Shifting Improve Your Fuel Economy With Advanced Shifting Technology With DynActive Shifting Now Customize Your Fuel Savings And Performance Even Further Much of Allison s continued success has come from building

More information

1 Configuration Space Path Planning

1 Configuration Space Path Planning CS 4733, Class Notes 1 Configuration Space Path Planning Reference: 1) A Simple Motion Planning Algorithm for General Purpose Manipulators by T. Lozano-Perez, 2) Siegwart, section 6.2.1 Fast, simple to

More information

Using the NIST Tables for Accumulator Sizing James P. McAdams, PE

Using the NIST Tables for Accumulator Sizing James P. McAdams, PE 5116 Bissonnet #341, Bellaire, TX 77401 Telephone and Fax: (713) 663-6361 jamesmcadams@alumni.rice.edu Using the NIST Tables for Accumulator Sizing James P. McAdams, PE Rev. Date Description Origin. 01

More information