ARC-H: Adaptive replacement cache management for heterogeneous storage devices

Size: px
Start display at page:

Download "ARC-H: Adaptive replacement cache management for heterogeneous storage devices"

Transcription

1 Journal of Systems Architecture 58 (2012) ARC-H: Adaptive replacement cache management for heterogeneous storage devices Young-Jin Kim, Division of Electrical and Computer Engineering, Ajou University, Suwon, Republic of Korea Jihong Kim, School of Computer Science and Engineering, Seoul National University, Seoul, Republic of Korea

2 Outline Introduction Related Work Proposed Scheme Simulation Conclusions

3 Introduction (1/3) Mobile computing devices require a lot of computing power reliable and fast storage, with a small form-factor 95 times faster 42 times less 3 times lower

4 Introduction (2/3) to use heterogeneous secondary storage devices effectively, an OS needs to be modified to account for the different I/O cost of each device some authors have tried to enhance I/O performance by adjusting the cache partition allocated to each device to deal with varying patterns of workloads and the different I/O costs of heterogeneous devices

5 ARC-H Introduction (3/3) using a simple but robust prediction method based on ghost buffers to manage the valuable blocks within the cache partitions more effectively allowing for the difference in I/O costs of a disk and a flash memory reducing service time by up to 88% compared with existing caching algorithms and also reducing energy consumption by up to 81%

6 Related Work (1/8) GreedyDual evaluates the cost of caching a block by considering locality, miss penalty, and file size to achieve good overall I/O performance ARC employs two LRU lists and replaces cache blocks on the basis of both recency and frequency with the helps of ghost buffers T1 and T2 constitute a real page cache; B1 and B2 are ghost buffers, which maintain historical data that is used to predict hit rates in T1 and T2

7 ARC (Cont.) Related Work (2/8) adjusts cache partitions based on the hit counts of the blocks in the ghost buffers and their sizes LRU MRU B1 T1 T2 B2 LRU If Hit in B1 : LRU B1 T1 T2 B2 c LRU c DAC achieves a higher cache hit rate ( good I/O performance in heterogeneous storage devices) lack of intrinsic mechanism to deal with heterogeneous devices manages cache partitions based on the sequentiality of I/O requests as well as reducing the need for write/erase cycles by the flash memory through a consideration of I/O types See the following example

8 Related Work (3/8) Cache management issues for heterogeneous storage workload-awareness vs. device-awareness mainly a mix of sequential patterns with big and small loops workload-awareness allotting cache blocks to requests with loop or other type is desirable device-awareness a hard disk write is more than 24 times slower than a flash memory write keeping a large number of the block which reside on the disk kept in the page cache will decrease the number of disk accesses, improving the response time

9 Related Work (4/8) illustration of different cache algorithms behaviors

10 Related Work (5/8) workload-aware algorithm: LRU Cache misses Disk Flash cache misses: 11, 124, 19, 20, 130, 131, 12, 120, 10, 121, 122, 18, 19, 124, 125, 20, 129, 15, 120, 10 cache hit rate: 5/25 = 20 %

11 Related Work (6/8) device-aware algorithm give a bigger weight value, called device_weight (is set to 5 here), to blocks from a disk cache misses: 11, 124, 19, 20, 130, 131, 11, 121, 122, 18, 19, 124, 20, 129, 15 cache hit rate: 10/25 = 40 % Cache misses Disk Flash

12 Related Work (7/8) device-aware and workload-aware algorithm besides device_weight, also giving each block another weight, called workload_weight (is set to 5 here), when it receives a hit within the cache if a block is from disk and is hit within the cache, it s weight will increase ! cache misses: 11, 124, 19, 20, 130, 131, 11, 121, 122, 19, 124, 129, 15 cache hit rate: 12/25 = 48 % Cache misses Disk Flash

13 I/O time flash:1 hard disk:35 Related Work (8/8) good I/O performance in a heterogeneous storage system requires the device and the workload characteristics to be taken into account in page cache management however, pervious techniques cannot adjust the cache partitions accurately due to poor estimation of varying workload patterns

14 Proposed Scheme (1/4)

15 Proposed Scheme (2/4) T1: for disk T2: for flash B1,B2: ghost buffer Determine block x s access pattern Initially, the block reference is other reference a reference is categorized as a sequential reference after a given number of consecutive references

16

17 Proposed Scheme (4/) Case I Hit in B1 increase T1 by COST_RATIO or B2 / B1 *COST_RATIO COST_RATIO: I/O cost ratio between the hard disk and the flash memory LRU MRU B1 T1 T2 B2 LRU LRU c MRU B1 T1 T2 B2 LRU c Case II Hit in B2 increase T2 by 1 or B2 / B1 Case III All misses fetch the missed block to T1(T2) s MRU according to the device the block belongs to Case IV (& Case V) Hit in T1(T2) move to T1(T2) s MRU

18 method C_SEQ C_RAND C_WRIT E1 C_READ 1 m1 Worth_updateA( ) C_WRIT E2 C_READ 2 m m m Fig. 13. Total service time of LRU and ARC-H with a worth update method varying (a) for the PDA trace (b) for the PMP trace, which are normalized over LRU.

19 Simulation (1/4) Experimental environment Implement ARC-H in a trace-based cache simulator, combined with a multi-device I/O simulator. Latency Device 1.8 MK4004GA H Hard Disk K91208U NAND flash memory Read 22.1 (ms) 36 (μs) Write 22.1 (ms) 288 (μs) Erase N/A 2 (ms) Power (mw) Active Idle Standby 200 N/A Two traces of mobile usage PDA (personal digital assistant) and PMP (portable media player)

20

21 Fig. 10. Energy consumptions of LRU, ARC, GD, DAC, and ARC-H when the cache size varies (a) for the PDA trace (b) for the PMP trace, which are normalized to LRU.

22 Simulation (4/4) Varying the size of B1 + B2 by factors of 1/2, 1/4, 1/8, and 1/16 of c, which is fixed to 20Mb. Fig. 12. Total service time of LRU and ARC-H with an upper bound of ghost buffer sizes varying (a) for the PDA trace (b) for the PMP trace, which are normalized to LRU. Even with the ghost buffer size of 1/16 of the page cache, ARC-H still has a service time 87% less than that of LRU.

23 Conclusion The proposed algorithm, ARC-H, uses adaptive management based on ghost buffer, and cache replacement based on worth update with recency, I/O cost per device, and workload patterns. ARC-H seeks to overcome the inability of existing cache replacement techniques to deal with the very different I/O costs of heterogeneous storage devices. The results show that it can reduce the total service time by up to 88% and the energy consumption by up to 81% over existing caching algorithms.

Storage and Memory Hierarchy CS165

Storage and Memory Hierarchy CS165 Storage and Memory Hierarchy CS165 What is the memory hierarchy? L1

More information

Enhancing Energy Efficiency of Database Applications Using SSDs

Enhancing Energy Efficiency of Database Applications Using SSDs Seminar Energy-Efficient Databases 29.06.2011 Enhancing Energy Efficiency of Database Applications Using SSDs Felix Martin Schuhknecht Motivation vs. Energy-Efficiency Seminar 29.06.2011 Felix Martin Schuhknecht

More information

High Performance Cache Replacement Using Re-Reference Interval Prediction (RRIP)

High Performance Cache Replacement Using Re-Reference Interval Prediction (RRIP) High Performance Cache Replacement Using Re-Reference Interval Prediction (RRIP) 1 T H E A C M I E E E I N T E R N A T I O N A L S Y M P O S I U M O N C O M P U T E R A R C H I T E C T U R E ( I S C A

More information

Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for In-wheel Electric Vehicle

Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for In-wheel Electric Vehicle ES27 Barcelona, Spain, November 7-2, 23 Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for In-wheel Electric ehicle Sungyeon Ko, Chulho Song, Jeongman Park, Jiweon

More information

Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for In-wheel Electric Vehicle

Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for In-wheel Electric Vehicle World Electric ehicle Journal ol. 6 - ISSN 232-6653 - 23 WEA Page Page 86 ES27 Barcelona, Spain, November 7-2, 23 Comparison of Braking Performance by Electro-Hydraulic ABS and Motor Torque Control for

More information

Energy Efficient Content-Addressable Memory

Energy Efficient Content-Addressable Memory Energy Efficient Content-Addressable Memory Advanced Seminar Computer Engineering Institute of Computer Engineering Heidelberg University Fabian Finkeldey 26.01.2016 Fabian Finkeldey, Energy Efficient

More information

Driving Performance Improvement of Independently Operated Electric Vehicle

Driving Performance Improvement of Independently Operated Electric Vehicle EVS27 Barcelona, Spain, November 17-20, 2013 Driving Performance Improvement of Independently Operated Electric Vehicle Jinhyun Park 1, Hyeonwoo Song 1, Yongkwan Lee 1, Sung-Ho Hwang 1 1 School of Mechanical

More information

Storage-less and converter-less maximum power tracking of photovoltaic cells for a nonvolatile microprocessor

Storage-less and converter-less maximum power tracking of photovoltaic cells for a nonvolatile microprocessor Seoul National University Storage-less and converter-less maximum power tracking of photovoltaic cells for a nonvolatile microprocessor Cong Wang, Naehyuck Chang, Y. Kim, S. Park, Yongpan Liu, Hyung Gyu

More information

Peak Efficiency Aware Scheduling for Highly Energy Proportional Servers

Peak Efficiency Aware Scheduling for Highly Energy Proportional Servers Peak Efficiency Aware Scheduling for Highly Energy Proportional Servers Daniel Wong dwong@ece.ucr.edu University of California, Riverside Department of Electrical and Computer Engineering 2 Main Observations

More information

for building an automation systems in Driver s s licenses test center

for building an automation systems in Driver s s licenses test center for building an automation systems in Driver s s licenses test center (Integrated e-driving e system) Outline & Effects Integrated system configuration Registration & Management systems Driver s s licenses

More information

The Effective IVIS Menu and Control Type of an Instrumental Gauge Cluster and Steering Wheel Remote Control with a Menu Traversal

The Effective IVIS Menu and Control Type of an Instrumental Gauge Cluster and Steering Wheel Remote Control with a Menu Traversal The Effective IVIS Menu and Control Type of an Instrumental Gauge Cluster and Steering Wheel Remote Control with a Menu Traversal Seong M. Kim 1, Jaekyu Park 2, Jaeho Choe 3, and Eui S. Jung 2 1 Graduated

More information

Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment

Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment Preetika Kulshrestha, Student Member, IEEE, Lei Wang, Student Member, IEEE, Mo-Yuen Chow,

More information

How Much Power Does your Server Consume? Estimating Wall Socket Power Using RAPL Measurements

How Much Power Does your Server Consume? Estimating Wall Socket Power Using RAPL Measurements How Much Power Does your Server Consume? Estimating Wall Socket Power Using RAPL Measurements Kashif Nizam Khan Zhonghong Ou, Mikael Hirki, Jukka K. Nurminen, Tapio Niemi 1 Motivation The Large Hadron

More information

INTELLIGENT ENERGY MANAGEMENT IN A TWO POWER-BUS VEHICLE SYSTEM

INTELLIGENT ENERGY MANAGEMENT IN A TWO POWER-BUS VEHICLE SYSTEM 2011 NDIA GROUND VEHICLE SYSTEMS ENGINEERING AND TECHNOLOGY SYMPOSIUM MODELING & SIMULATION, TESTING AND VALIDATION (MSTV) MINI-SYMPOSIUM AUGUST 9-11 DEARBORN, MICHIGAN INTELLIGENT ENERGY MANAGEMENT IN

More information

Development of Regenerative Braking Co-operative Control System for Automatic Transmission-based Hybrid Electric Vehicle using Electronic Wedge Brake

Development of Regenerative Braking Co-operative Control System for Automatic Transmission-based Hybrid Electric Vehicle using Electronic Wedge Brake World Electric Vehicle Journal Vol. 6 - ISSN 232-6653 - 213 WEVA Page Page 278 EVS27 Barcelona, Spain, November 17-2, 213 Development of Regenerative Braking Co-operative Control System for Automatic Transmission-based

More information

Setup of a multi-os platform based on the Xen hypervisor. An industral case study. Paolo Burgio

Setup of a multi-os platform based on the Xen hypervisor. An industral case study. Paolo Burgio Setup of a multi-os platform based on the Xen hypervisor An industral case study Paolo Burgio paolo.burgio@unimore.it Roberto Cavicchioli Ignacio Sanudo Olmedo Marco Solieri Who are we? High-Performance

More information

A STUDY ON ENERGY MANAGEMENT SYSTEM FOR STABLE OPERATION OF ISOLATED MICROGRID

A STUDY ON ENERGY MANAGEMENT SYSTEM FOR STABLE OPERATION OF ISOLATED MICROGRID A STUDY ON ENERGY MANAGEMENT SYSTEM FOR STABLE OPERATION OF ISOLATED MICROGRID Kwang Woo JOUNG Hee-Jin LEE Seung-Mook BAEK Dongmin KIM KIT South Korea Kongju National University - South Korea DongHee CHOI

More information

Real-time Bus Tracking using CrowdSourcing

Real-time Bus Tracking using CrowdSourcing Real-time Bus Tracking using CrowdSourcing R & D Project Report Submitted in partial fulfillment of the requirements for the degree of Master of Technology by Deepali Mittal 153050016 under the guidance

More information

Smart Operation for AC Distribution Infrastructure Involving Hybrid Renewable Energy Sources

Smart Operation for AC Distribution Infrastructure Involving Hybrid Renewable Energy Sources Milano (Italy) August 28 - September 2, 211 Smart Operation for AC Distribution Infrastructure Involving Hybrid Renewable Energy Sources Ahmed A Mohamed, Mohamed A Elshaer and Osama A Mohammed Energy Systems

More information

Numerical Optimization of HC Supply for HC-DeNOx System (2) Optimization of HC Supply Control

Numerical Optimization of HC Supply for HC-DeNOx System (2) Optimization of HC Supply Control 40 Special Issue Challenges to Realizing Clean High-Performance Diesel Engines Research Report Numerical Optimization of HC Supply for HC-DeNOx System (2) Optimization of HC Supply Control Matsuei Ueda

More information

Analysis of Fuel Economy and Battery Life depending on the Types of HEV using Dynamic Programming

Analysis of Fuel Economy and Battery Life depending on the Types of HEV using Dynamic Programming World Electric Vehicle Journal Vol. 6 - ISSN 2032-6653 - 2013 WEVA Page Page 0320 EVS27 Barcelona, Spain, November 17-20, 2013 Analysis of Fuel Economy and Battery Life depending on the Types of HEV using

More information

World Academy of Science, Engineering and Technology International Journal of Mechanical and Mechatronics Engineering Vol:11, No:3, 2017

World Academy of Science, Engineering and Technology International Journal of Mechanical and Mechatronics Engineering Vol:11, No:3, 2017 Multipurpose Agricultural Robot Platform: Conceptual Design of Control System Software for Autonomous Driving and Agricultural Operations Using Programmable Logic Controller P. Abhishesh, B. S. Ryuh, Y.

More information

INTRODUCTION. I.1 - Historical review.

INTRODUCTION. I.1 - Historical review. INTRODUCTION. I.1 - Historical review. The history of electrical motors goes back as far as 1820, when Hans Christian Oersted discovered the magnetic effect of an electric current. One year later, Michael

More information

Advanced Superscalar Architectures. Speculative and Out-of-Order Execution

Advanced Superscalar Architectures. Speculative and Out-of-Order Execution 6.823, L16--1 Advanced Superscalar Architectures Asanovic Laboratory for Computer Science M.I.T. http://www.csg.lcs.mit.edu/6.823 Speculative and Out-of-Order Execution Branch Prediction kill kill Branch

More information

Multi-Band Radio Frequency Energy Harvesting Storing in Super-Capacitor for Self- Sustainable Cognitive radio networks

Multi-Band Radio Frequency Energy Harvesting Storing in Super-Capacitor for Self- Sustainable Cognitive radio networks CREaTION Workshop Multi-Band Radio Frequency Energy Harvesting Storing in Super-Capacitor for Self- Sustainable Cognitive radio networks Luís M. Borges Fernando J. Velez 2005, it - instituto de telecomunicações.

More information

Fixing the Hyperdrive: Maximizing Rendering Performance on NVIDIA GPUs

Fixing the Hyperdrive: Maximizing Rendering Performance on NVIDIA GPUs Fixing the Hyperdrive: Maximizing Rendering Performance on NVIDIA GPUs Louis Bavoil, Principal Engineer Booth #223 - South Hall www.nvidia.com/gdc Full-Screen Pixel Shader SM TEX L2 DRAM CROP SM = Streaming

More information

Drowsy Caches Simple Techniques for Reducing Leakage Power Krisztián Flautner Nam Sung Kim Steve Martin David Blaauw Trevor Mudge

Drowsy Caches Simple Techniques for Reducing Leakage Power Krisztián Flautner Nam Sung Kim Steve Martin David Blaauw Trevor Mudge Drowsy Caches Simple Techniques for Reducing Leakage Power Krisztián Flautner Nam Sung Kim Steve Martin David Blaauw Trevor Mudge krisztian.flautner@arm.com kimns@eecs.umich.edu stevenmm@eecs.umich.edu

More information

Braking Performance Improvement Method for V2V Communication-Based Autonomous Emergency Braking at Intersections

Braking Performance Improvement Method for V2V Communication-Based Autonomous Emergency Braking at Intersections , pp.20-25 http://dx.doi.org/10.14257/astl.2015.86.05 Braking Performance Improvement Method for V2V Communication-Based Autonomous Emergency Braking at Intersections Sangduck Jeon 1, Gyoungeun Kim 1,

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION 1 CHAPTER 1 INTRODUCTION 1.1 MOTIVATION OF THE RESEARCH Electrical Machinery is more than 100 years old. While new types of machines have emerged recently (for example stepper motor, switched reluctance

More information

Chapter 3: Computer Organization Fundamentals. Oregon State University School of Electrical Engineering and Computer Science.

Chapter 3: Computer Organization Fundamentals. Oregon State University School of Electrical Engineering and Computer Science. Chapter 3: Computer Organization Fundamentals Prof. Ben Lee Oregon State University School of Electrical Engineering and Computer Science Chapter Goals Understand the organization of a computer system

More information

UKSM: Swift Memory Deduplication via Hierarchical and Adaptive Memory Region Distilling

UKSM: Swift Memory Deduplication via Hierarchical and Adaptive Memory Region Distilling UKSM: Swift Memory Deduplication via Hierarchical and Adaptive Memory Region Distilling Nai Xia* Chen Tian* Yan Luo + Hang Liu + Xiaoliang Wang* *: Nanjing University +: University of Massachusetts Lowell

More information

Copyright 2012 EMC Corporation. All rights reserved.

Copyright 2012 EMC Corporation. All rights reserved. 1 Transforming Storage: An EMC Overview Symmetrix storage systems Boštjan Zadnik Technology Consultant Bostjan.Zadnik@emc.com 2 Data Sources Are Expanding Source: 2011 IDC Digital Universe Study 3 Applications

More information

POWER QUALITY IMPROVEMENT BASED UPQC FOR WIND POWER GENERATION

POWER QUALITY IMPROVEMENT BASED UPQC FOR WIND POWER GENERATION International Journal of Latest Research in Science and Technology Volume 3, Issue 1: Page No.68-74,January-February 2014 http://www.mnkjournals.com/ijlrst.htm ISSN (Online):2278-5299 POWER QUALITY IMPROVEMENT

More information

Decoupling Loads for Nano-Instruction Set Computers

Decoupling Loads for Nano-Instruction Set Computers Decoupling Loads for Nano-Instruction Set Computers Ziqiang (Patrick) Huang, Andrew Hilton, Benjamin Lee Duke University {ziqiang.huang, andrew.hilton, benjamin.c.lee}@duke.edu ISCA-43, June 21, 2016 1

More information

Condition Monitoring of a Check Valve for Nuclear Power Plants by Means of Acoustic Emission Technique

Condition Monitoring of a Check Valve for Nuclear Power Plants by Means of Acoustic Emission Technique Transactions of the 17 th International Conference on Structural Mechanics in Reactor Technology (SMiRT 17) Prague, Czech Republic, August 17 22, 2003 Paper # O03-3 Condition Monitoring of a Check Valve

More information

Implications of Digital Control and Management for a High Performance Isolated DC/DC Converter

Implications of Digital Control and Management for a High Performance Isolated DC/DC Converter MPM-07:000199 Uen Rev A Implications of Digital Control and Management for a High Performance Isolated DC/DC Converter March 2007 Technical Paper Digital control implemented in an isolated DC/DC converter

More information

Embedded system design for a multi variable input operations

Embedded system design for a multi variable input operations IOSR Journal of Engineering (IOSRJEN) ISSN: 2250-3021 Volume 2, Issue 8 (August 2012), PP 29-33 Embedded system design for a multi variable input operations Niranjan N. Parandkar, Abstract: - There are

More information

Automatic Driving Control for Passing through Intersection by use of Feature of Electric Vehicle

Automatic Driving Control for Passing through Intersection by use of Feature of Electric Vehicle Page000031 EVS25 Shenzhen, China, Nov 5-9, 2010 Automatic Driving Control for Passing through Intersection by use of Feature of Electric Vehicle Takeki Ogitsu 1, Manabu Omae 1, Hiroshi Shimizu 2 1 Graduate

More information

Fault-tolerant Control System for EMB Equipped In-wheel Motor Vehicle

Fault-tolerant Control System for EMB Equipped In-wheel Motor Vehicle EVS8 KINTEX, Korea, May 3-6, 15 Fault-tolerant Control System for EMB Equipped In-wheel Motor Vehicle Seungki Kim 1, Kyungsik Shin 1, Kunsoo Huh 1 Department of Automotive Engineering, Hanyang University,

More information

AEB System for a Curved Road Considering V2Vbased Road Surface Conditions

AEB System for a Curved Road Considering V2Vbased Road Surface Conditions , pp.8-13 http://dx.doi.org/10.14257/astl.2015.86.03 AEB System for a Curved Road Considering V2Vbased Road Surface Conditions Hyeonggeun Mun 1, Gyoungeun Kim 1, Byeongwoo Kim 2 * 1 Graduate School of

More information

Out-of-order Pipeline. Register Read. OOO execution (2-wide) OOO execution (2-wide) OOO execution (2-wide) OOO execution (2-wide)

Out-of-order Pipeline. Register Read. OOO execution (2-wide) OOO execution (2-wide) OOO execution (2-wide) OOO execution (2-wide) Out-of-order Pipeline Register Read When do instructions read the register file? Fetch Decode Rename Dispatch Buffer of instructions Issue Reg-read Execute Writeback Commit Option #: after select, right

More information

ACS-2 Long and Short Term Endurance Indicators

ACS-2 Long and Short Term Endurance Indicators ACS-2 Long and Short Term Endurance Indicators February 13, 2009 Revision 0 Technical Editor: Jim Hatfield 389 Disc Drive Longmont, CO 80503 720-684-2120 James.C.Hatfield@Seagate.com Long and Short Term

More information

Active magnetic inertia latch for hard disk drives

Active magnetic inertia latch for hard disk drives Microsyst Technol (2011) 17:127 132 DOI 10.1007/s00542-010-1168-8 TECHNICAL PAPER Active magnetic inertia latch for hard disk drives Bu Hyun Shin Kyung-Ho Kim Seung-Yop Lee Received: 2 August 2010 / Accepted:

More information

Direct-Mapped Cache Terminology. Caching Terminology. TIO Dan s great cache mnemonic. UCB CS61C : Machine Structures

Direct-Mapped Cache Terminology. Caching Terminology. TIO Dan s great cache mnemonic. UCB CS61C : Machine Structures Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c UCB CS61C : Machine Structures Lecture 31 Caches II 2008-04-12 HP has begun testing research prototypes of a novel non-volatile memory element, the

More information

A Battery Smart Sensor and Its SOC Estimation Function for Assembled Lithium-Ion Batteries

A Battery Smart Sensor and Its SOC Estimation Function for Assembled Lithium-Ion Batteries R1-6 SASIMI 2015 Proceedings A Battery Smart Sensor and Its SOC Estimation Function for Assembled Lithium-Ion Batteries Naoki Kawarabayashi, Lei Lin, Ryu Ishizaki and Masahiro Fukui Graduate School of

More information

Smart Power Management System for Leisure-ship

Smart Power Management System for Leisure-ship Journal of Navigation and Port Research International Edition Vol.35, No.9 pp. 749~753, 2011 (ISSN-1598-5725) DOI : http://dx.doi.org/10.5394/kinpr.2011.35.9.749 Smart Power Management System for Leisure-ship

More information

Effect of Sample Size and Method of Sampling Pig Weights on the Accuracy of Estimating the Mean Weight of the Population 1

Effect of Sample Size and Method of Sampling Pig Weights on the Accuracy of Estimating the Mean Weight of the Population 1 Effect of Sample Size and Method of Sampling Pig Weights on the Accuracy of Estimating the Mean Weight of the Population C. B. Paulk, G. L. Highland 2, M. D. Tokach, J. L. Nelssen, S. S. Dritz 3, R. D.

More information

Maximum Demand Control using Microcontroller AT89c51

Maximum Demand Control using Microcontroller AT89c51 IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, PP 18-23 www.iosrjournals.org Maximum Demand Control using Microcontroller AT89c51 Apurva A. Bhagwat

More information

Sinfonia: a new paradigm for building scalable distributed systems

Sinfonia: a new paradigm for building scalable distributed systems CS848 Paper Presentation Sinfonia: a new paradigm for building scalable distributed systems Aguilera, Merchant, Shah, Veitch, Karamanolis SOSP 2007 Presented by Somayyeh Zangooei David R. Cheriton School

More information

Shuttling of Metro Train between Stations

Shuttling of Metro Train between Stations Shuttling of Metro Train between Stations Sachi.P 1, Bharathi.V 2, Naveen Kumar.D 3,Tejaswini.M 4 1 Assistant Professor, 2, 3, 4 Students of Department of Electronics & Communication, New Horizon College

More information

Parallelism I: Inside the Core

Parallelism I: Inside the Core Parallelism I: Inside the Core 1 The final Comprehensive Same general format as the Midterm. Review the homeworks, the slides, and the quizzes. 2 Key Points What is wide issue mean? How does does it affect

More information

Algebraic Integer Encoding and Applications in Discrete Cosine Transform

Algebraic Integer Encoding and Applications in Discrete Cosine Transform RESEARCH CENTRE FOR INTEGRATED MICROSYSTEMS UNIVERSITY OF WINDSOR Algebraic Integer Encoding and Applications in Discrete Cosine Transform Minyi Fu Supervisors: Dr. G. A. Jullien Dr. M. Ahmadi Department

More information

Selected excerpts from the book: Lab Scopes: Introductory & Advanced. Steven McAfee

Selected excerpts from the book: Lab Scopes: Introductory & Advanced. Steven McAfee Selected excerpts from the book: Lab Scopes: Introductory & Advanced Steven McAfee 1. 2. 3. 4. 5. 6. Excerpt from Chapter 1 Lab Scopes How do they work? (page 6) Excerpt from Chapter 3 Pattern Recognition

More information

Lecture 14: Instruction Level Parallelism

Lecture 14: Instruction Level Parallelism Lecture 14: Instruction Level Parallelism Last time Pipelining in the real world Today Control hazards Other pipelines Take QUIZ 10 over P&H 4.10-15, before 11:59pm today Homework 5 due Thursday March

More information

OStrich: Fair Scheduler for Burst Submissions of Parallel Jobs. Krzysztof Rzadca Institute of Informatics, University of Warsaw, Poland

OStrich: Fair Scheduler for Burst Submissions of Parallel Jobs. Krzysztof Rzadca Institute of Informatics, University of Warsaw, Poland Krzysztof Rzadca Institute of Informatics, University of Warsaw, Poland! joint work with: Filip Skalski (U Warsaw / Google)! based on work with: Vinicius Pinheiro (Grenoble) Denis Trystram (Grenoble) http://www.flickr.com/photos/bobjagendorf/345683620/

More information

Real-Time Simulation of Predictive Control of DC Vehicular Microgrids. Asal Zabetian-Hosseini and Ali Mehrizi-Sani

Real-Time Simulation of Predictive Control of DC Vehicular Microgrids. Asal Zabetian-Hosseini and Ali Mehrizi-Sani Real-Time Simulation of Predictive Control of DC Vehicular Microgrids Asal Zabetian-Hosseini and Ali Mehrizi-Sani 2 of 2 Outline Goal Fuel Cell and FC-PU Controller Design Simulation and Experimental Results

More information

System Design of AMHS using Wireless Power Transfer (WPT) Technology for Semiconductor Wafer FAB

System Design of AMHS using Wireless Power Transfer (WPT) Technology for Semiconductor Wafer FAB System Design o AMHS using Wireless Power Transer (WPT) Technology or Semiconductor Waer FAB Young Jae Jang, PhD Min Seok Lee Jin Hyeok Park Industrial and Systems Engineering KAIST 1 Goals o the Talk

More information

Performance Analysis of Green Car using Virtual Integrated Development Environment

Performance Analysis of Green Car using Virtual Integrated Development Environment Performance Analysis of Green Car using Virtual Integrated Development Environment Nak-Tak Jeong, Su-Bin Choi, Choong-Min Jeong, Chao Ma, Jinhyun Park, Sung-Ho Hwang, Hyunsoo Kim and Myung-Won Suh Abstract

More information

Validation and Control Strategy to Reduce Fuel Consumption for RE-EV

Validation and Control Strategy to Reduce Fuel Consumption for RE-EV Validation and Control Strategy to Reduce Fuel Consumption for RE-EV Wonbin Lee, Wonseok Choi, Hyunjong Ha, Jiho Yoo, Junbeom Wi, Jaewon Jung and Hyunsoo Kim School of Mechanical Engineering, Sungkyunkwan

More information

Design and evaluate vehicle architectures to reach the best trade-off between performance, range and comfort. Unrestricted.

Design and evaluate vehicle architectures to reach the best trade-off between performance, range and comfort. Unrestricted. Design and evaluate vehicle architectures to reach the best trade-off between performance, range and comfort. Unrestricted. Introduction Presenter Thomas Desbarats Business Development Simcenter System

More information

Recent Transportation Projects

Recent Transportation Projects Dr. Dazhi Sun Associate Professor Director of Texas Transportation Institute Regional Division Department of Civil & Architectural Engineering Texas A&M University-Kingsville 1 Recent Transportation Projects

More information

Market Monitoring Update

Market Monitoring Update Market Monitoring Update Eric Hildebrandt, Ph.D. Executive Director, Department of Market Monitoring EIM Governing Body Meeting General Session January 24, 2019 EIM prices in 2018 reflect regional supply

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme STO1479BU vsan Beyond the Basics Sumit Lahiri Product Line Manager Eric Knauft Staff Engineer #VMworld #STO1479BU Disclaimer This presentation may contain product features that are currently under development.

More information

Enhancement of Power Quality in Transmission Line Using Flexible Ac Transmission System

Enhancement of Power Quality in Transmission Line Using Flexible Ac Transmission System Enhancement of Power Quality in Transmission Line Using Flexible Ac Transmission System Raju Pandey, A. K. Kori Abstract FACTS devices can be added to power transmission and distribution systems at appropriate

More information

Application of Simulation-X R based Simulation Technique to Notch Shape Optimization for a Variable Swash Plate Type Piston Pump

Application of Simulation-X R based Simulation Technique to Notch Shape Optimization for a Variable Swash Plate Type Piston Pump Application of Simulation-X R based Simulation Technique to Notch Shape Optimization for a Variable Swash Plate Type Piston Pump Jun Ho Jang 1, Won Jee Chung 1, Dong Sun Lee 1 and Young Hwan Yoon 2 1 School

More information

Performance Analysis of 3-Ø Self-Excited Induction Generator with Rectifier Load

Performance Analysis of 3-Ø Self-Excited Induction Generator with Rectifier Load Performance Analysis of 3-Ø Self-Excited Induction Generator with Rectifier Load,,, ABSTRACT- In this paper the steady-state analysis of self excited induction generator is presented and a method to calculate

More information

ETAP Implementation of Mersen s Medium Voltage Controllable Fuse to Mitigate Arc Flash Incident Energy

ETAP Implementation of Mersen s Medium Voltage Controllable Fuse to Mitigate Arc Flash Incident Energy ETAP Implementation of Mersen s Medium Voltage Controllable Fuse to Mitigate Arc Flash Incident Energy ETAP 17 Goodyear, Suite 100 Irvine, CA 92618 White Paper No.001.14-2016 Albert Marroquin, PE Member

More information

GT-POWER/SIMULINK SIMULATION AS A TOOL TO IMPROVE INDIVIDUAL CYLINDER AFR CONTROL IN A MULTICYLINDER S.I. ENGINE

GT-POWER/SIMULINK SIMULATION AS A TOOL TO IMPROVE INDIVIDUAL CYLINDER AFR CONTROL IN A MULTICYLINDER S.I. ENGINE 1 GT-Suite Users International Conference Frankfurt a.m., October 30 th 2000 GT-POWER/SIMULINK SIMULATION AS A TOOL TO IMPROVE INDIVIDUAL CYLINDER CONTROL IN A MULTICYLINDER S.I. ENGINE F. MILLO, G. DE

More information

MODELING QLC FLASH RELIABILITY. Nenad Miladinovic

MODELING QLC FLASH RELIABILITY. Nenad Miladinovic MODELING QLC FLASH RELIABILITY Nenad Miladinovic INTRODUCTION Introduction of 3D NAND has put performance of TLC parts on par with performance of 2D MLC parts. The gap has emerged at the lower end of the

More information

The Positioning of Systems Powered by McKibben Type Muscles

The Positioning of Systems Powered by McKibben Type Muscles The Positioning of Systems Powered by McKibben Type Muscles Wiktor Parandyk, Michał Ludwicki, Bartłomiej Zagrodny, and Jan Awrejcewicz Lodz University of Technology, Lodz, Poland Department of Automation,

More information

A study of Monitoring and Mapping for Radon-Concentration Distribution in Gyeongju-12201

A study of Monitoring and Mapping for Radon-Concentration Distribution in Gyeongju-12201 A study of Monitoring and Mapping for Radon-Concentration Distribution in Gyeongju-12201 Chan Hee Park, Jung Min Lee, So Young Jang, Shin Jae Kim, Joo Hyun Moon Dongguk University, 707, Seokjang-Dong,

More information

Experimental Study on Heat Enhancement of Helixchanger with Grooved Tubes

Experimental Study on Heat Enhancement of Helixchanger with Grooved Tubes Experimental Study on Heat Enhancement of Helixchanger with Grooved Tubes Pardeep Kumar Research Scholar, Department of Mechanical Engineering University institute of Engineering & Technology, KUK, Haryana,

More information

Optimization of Three-stage Electromagnetic Coil Launcher

Optimization of Three-stage Electromagnetic Coil Launcher Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Optimization of Three-stage Electromagnetic Coil Launcher 1 Yujiao Zhang, 1 Weinan Qin, 2 Junpeng Liao, 3 Jiangjun Ruan,

More information

INDUCTION motors are widely used in various industries

INDUCTION motors are widely used in various industries IEEE TRANSACTIONS ON INDUSTRIAL ELECTRONICS, VOL. 44, NO. 6, DECEMBER 1997 809 Minimum-Time Minimum-Loss Speed Control of Induction Motors Under Field-Oriented Control Jae Ho Chang and Byung Kook Kim,

More information

Farhana Shirin Lina BSC.(Electrical and Electronic) Memorial University of Newfoundland & Labrador

Farhana Shirin Lina BSC.(Electrical and Electronic) Memorial University of Newfoundland & Labrador Farhana Shirin Lina BSC.(Electrical and Electronic) Memorial University of Newfoundland & Labrador Introduction Research Objectives Different Control Systems System Modeling and Control Controller Design

More information

MITIGATE ARC EFFECTS WITHIN AN E-HOUSE

MITIGATE ARC EFFECTS WITHIN AN E-HOUSE MITIGATE ARC EFFECTS WITHIN AN E-HOUSE Jérôme DOUCHIN Anthony BROWN Juha RINTALA Schneider Electric France Schneider Electric Singapore Schneider Electric Finland Jerome.douchin@ Anthony.brown@ juha.rintala@

More information

Evaluation of the Fatigue Life of Aluminum Bogie Structures for the Urban Maglev

Evaluation of the Fatigue Life of Aluminum Bogie Structures for the Urban Maglev Evaluation of the Fatigue Life of Aluminum Bogie Structures for the Urban Maglev 1 Nam-Jin Lee, 2 Hyung-Suk Han, 3 Sung-Wook Han, 3 Peter J. Gaede, Hyundai Rotem company, Uiwang-City, Korea 1 ; KIMM, Daejeon-City

More information

White Paper: Pervasive Power: Integrated Energy Storage for POL Delivery

White Paper: Pervasive Power: Integrated Energy Storage for POL Delivery Pervasive Power: Integrated Energy Storage for POL Delivery Pervasive Power Overview This paper introduces several new concepts for micro-power electronic system design. These concepts are based on the

More information

Project 1J.1: Hydraulic Transmissions for Wind Energy

Project 1J.1: Hydraulic Transmissions for Wind Energy Georgia Institute of Technology Milwaukee School of Engineering North Carolina A&T State University Purdue University University of Illinois, Urbana-Champaign University of Minnesota Vanderbilt University

More information

The Effect of Data Granularity on Load Data Compression

The Effect of Data Granularity on Load Data Compression The Effect of Data Granularity on Load Data Compression Andreas Unterweger 1, Dominik Engel 1 and Martin Ringwelski 2 1 Salzburg University of Applied Sciences, Josef Ressel Center for User-Centric Smart

More information

Development of the Evaluation Technology of the Braking Test for High-speed Brake Performance Tester

Development of the Evaluation Technology of the Braking Test for High-speed Brake Performance Tester Development of the Evaluation Technology of the Braking Test for High-speed Brake Performance Tester Min-Soo Kim, Jeong-Guk Kim, and Byeong-Choon Goo Metropolitan Railroad System Research Center, Radio-based

More information

55. Estimation of engine piston system wear using time-frequency method

55. Estimation of engine piston system wear using time-frequency method 55. Estimation of engine piston system wear using time-frequency method Marek Flekiewicz 1, Paweł Fabiś 2, Rafał Burdzik 3 Silesian University of Technology, Department of Automotive Vehicle Construction,

More information

Green Server Design: Beyond Operational Energy to Sustainability

Green Server Design: Beyond Operational Energy to Sustainability Green Server Design: Beyond Operational Energy to Sustainability Justin Meza Carnegie Mellon University Jichuan Chang, Partha Ranganathan, Cullen Bash, Amip Shah Hewlett-Packard Laboratories 1 Overview

More information

Fuzzy Logic Controller for BLDC Permanent Magnet Motor Drives

Fuzzy Logic Controller for BLDC Permanent Magnet Motor Drives International Journal of Electrical & Computer Sciences IJECS-IJENS Vol: 11 No: 02 12 Fuzzy Logic Controller for BLDC Permanent Magnet Motor Drives Tan Chee Siong, Baharuddin Ismail, Siti Fatimah Siraj,

More information

Finite Element Based, FPGA-Implemented Electric Machine Model for Hardware-in-the-Loop (HIL) Simulation

Finite Element Based, FPGA-Implemented Electric Machine Model for Hardware-in-the-Loop (HIL) Simulation Finite Element Based, FPGA-Implemented Electric Machine Model for Hardware-in-the-Loop (HIL) Simulation Leveraging Simulation for Hybrid and Electric Powertrain Design in the Automotive, Presentation Agenda

More information

Crude Evaluation Best Practices

Crude Evaluation Best Practices Crude Evaluation Best Practices IDTC 2017 May 16 & 17 Dubrovnik, CROATIA Malek Masri www.haverly.com Crude Evaluation Optimized Process IDTC 2017 May 16 & 17 Assay accuracy and update Importance of crude

More information

OPTIMIZATION STUDIES OF ENGINE FRICTION EUROPEAN GT CONFERENCE FRANKFURT/MAIN, OCTOBER 8TH, 2018

OPTIMIZATION STUDIES OF ENGINE FRICTION EUROPEAN GT CONFERENCE FRANKFURT/MAIN, OCTOBER 8TH, 2018 OPTIMIZATION STUDIES OF ENGINE FRICTION EUROPEAN GT CONFERENCE FRANKFURT/MAIN, OCTOBER 8TH, 2018 M.Sc. Oleg Krecker, PhD candidate, BMW B.Eng. Christoph Hiltner, Master s student, Affiliation BMW AGENDA

More information

Aerodynamically induced power loss in hard disk drives

Aerodynamically induced power loss in hard disk drives Microsyst Technol (2005) 11: 741 746 DOI 10.1007/s00542-005-0575-8 TECHNICAL PAPER Sung-Oug Cho Æ Seung-Yop Lee Æ Yoon-Chul Rhim Aerodynamically induced power loss in hard disk drives Received: 30 June

More information

Lustre Performance over the Infiniband WAN. Jeremy Filizetti

Lustre Performance over the Infiniband WAN. Jeremy Filizetti Lustre Performance over the Infiniband WAN Jeremy Filizetti jfilizetti@sms-fed.com Lustre Usage How we use it In the data center, over a MAN and WAN Distributed data centers Interconnected at 10 or 2.5

More information

Investigation in to the Application of PLS in MPC Schemes

Investigation in to the Application of PLS in MPC Schemes Ian David Lockhart Bogle and Michael Fairweather (Editors), Proceedings of the 22nd European Symposium on Computer Aided Process Engineering, 17-20 June 2012, London. 2012 Elsevier B.V. All rights reserved

More information

Design and Development of a Functional Safety Compliant Electric Power Steering System

Design and Development of a Functional Safety Compliant Electric Power Steering System J Electr Eng Technol.2015; 10(4): 1915-1920 http://dx.doi.org/10.5370/jeet.2015.10.4.1915 ISSN(Print) 1975-0102 ISSN(Online) 2093-7423 Design and Development of a Functional Safety Compliant Electric Power

More information

(FPGA) based design for minimizing petrol spill from the pipe lines during sabotage

(FPGA) based design for minimizing petrol spill from the pipe lines during sabotage IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 05, Issue 01 (January. 2015), V3 PP 26-30 www.iosrjen.org (FPGA) based design for minimizing petrol spill from the pipe

More information

New Capacity Modulation Algorithm for Linear Compressor

New Capacity Modulation Algorithm for Linear Compressor Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 010 New Capacity Modulation Algorithm for Linear Compressor Jaeyoo Yoo Sungho Park Hyuk

More information

MBD solution covering from system design to verification by real-time simulation for automotive systems. Kosuke KONISHI, IDAJ Co., LTD.

MBD solution covering from system design to verification by real-time simulation for automotive systems. Kosuke KONISHI, IDAJ Co., LTD. MBD solution covering from system design to verification by real-time simulation for automotive systems Kosuke KONISHI, IDAJ Co., LTD. Agenda System/Component model designs to validation Needs of co-simulation

More information

REAL TIME TRACTION POWER SYSTEM SIMULATOR

REAL TIME TRACTION POWER SYSTEM SIMULATOR REAL TIME TRACTION POWER SYSTEM SIMULATOR G. Strand Systems Engineering Department Fixed Installation Division Adtranz Sweden e-mail:gunnar.strand@adtranz.se A. Palesjö Power Systems Analysis Division

More information

Numerical Analysis of Speed Optimization of a Hybrid Vehicle (Toyota Prius) By Using an Alternative Low-Torque DC Motor

Numerical Analysis of Speed Optimization of a Hybrid Vehicle (Toyota Prius) By Using an Alternative Low-Torque DC Motor Numerical Analysis of Speed Optimization of a Hybrid Vehicle (Toyota Prius) By Using an Alternative Low-Torque DC Motor ABSTRACT Umer Akram*, M. Tayyab Aamir**, & Daud Ali*** Department of Mechanical Engineering,

More information

Switching Control for Smooth Mode Changes in Hybrid Electric Vehicles

Switching Control for Smooth Mode Changes in Hybrid Electric Vehicles Switching Control for Smooth Mode Changes in Hybrid Electric Vehicles Kerem Koprubasi (1), Eric Westervelt (2), Giorgio Rizzoni (3) (1) PhD Student, (2) Assistant Professor, (3) Professor Department of

More information

Development and Application of a Software Package for the Design of Twin Screw Compressors

Development and Application of a Software Package for the Design of Twin Screw Compressors Purdue University Purdue e-pubs nternational Compressor Engineering Conference School of Mechanical Engineering 2000 Development and Application of a Software Package for the Design of Twin Screw Compressors

More information

A Parallel Energy-Sharing Control for Fuel cell Battery-Ultracapacitor Hybrid Vehicle

A Parallel Energy-Sharing Control for Fuel cell Battery-Ultracapacitor Hybrid Vehicle A Parallel Energy-Sharing Control for Fuel cell Battery-Ultracapacitor Hybrid Vehicle JennHwa Wong, N.R.N.Idris, Makbul Anwari, Taufik Taufik Abstract-This paper proposes a parallel energy-sharing control

More information

Introduction. 1.2 Hydraulic system for crane operation

Introduction. 1.2 Hydraulic system for crane operation Two control systems have been newly developed for fuel saving in hydraulic wheel cranes: namely, a one-wayclutch system and an advanced engine control system. The former allows one-way transmission of

More information