Winter Test of ABD Steering Robot

Total Page:16

File Type:pdf, Size:1020Kb

Winter Test of ABD Steering Robot RESEARCH REPORT Department of Computer Science, Electrical and Space Engineering Division of EISLAB ISSN: 1402-1528 ISBN 978-91-7439-845-8 (pdf) Luleå University of Technology 2014 Winter test of ABD steering robot Håkan Fredriksson Niclas Engström Jeremy Ash June 19, 2013, rev 1.0 Winter test of ABD steering robot H˚akan Fredrikssona, Niclas Engstr¨oma, Jeremy Ashb aLule˚aUniversity of Technology bAnthony Best Dynamics Supported by: ISSN: 1402-1528 ISBN 978-91-7439-845-8 (pdf) Luleå 2014 www.ltu.se Preface This report comprise the winter test of a steering robot that were performed during the winter 2012/2013 in Sweden. The scope for the test was to evaluate if, and subsequently how, a path-following steering robot can be used for winter test of cars. This work was performed within the Centre for Automotive Systems Technologies and Testing (CASTT) at Lule˚aUniversity of Technology, together with Anthony Best Dynamics. The ob- jective was to support the vehicle test region in the northern part of Sweden by elaborating new test tools and methods. The work was funded by the European Regional Development Fund (ERDF). The main author is H˚akan Fredriksson. Niclas Engstr¨om has been involved in the planning and execution of the experiments and partly writing of the report. Jeremy Ash supplied training on the steering robot and participated in early parts of the tests. Lule˚aJune 2013 H˚akan Fredriksson iii iv Abstract This report highlights the use of a steering robot with path-following for car testing in winter conditions. The steering robot was provided from Anthony Best Dynamics. Experiments have been made with a couple of commonly used test sequences (lane change, dual lane change, constant radius circle, handling), the result from these test are shown and discussed. The path-following algorithm gives steering commands to the car (replace the human driver), these commands affect how the car will move; hence, the car performance is affected by the behaviour of the path-following algorithm. The settings of the path-following algorithm greatly affect the car response in different situations. This is especially noticeable when the car starts to slide, a situation common when driving on a slippery winter road. The main focus for this report is to describe what happens when you push the path-following system to, and beyond, the physical limitations concerning road grip and vehicle speed. A theoretical analysis of the path-following algorithm and how it reacts on large lateral errors and high sideslip angles was done. As shown in the results, the evaluated path-following test sequences in general did work out well. Some characteristics of the algorithm, especially noticeable when driving in winter condition, were found and discussed. The overall impression is that the ABD steering robot with path-following can indeed be useful for repetitive test in winter conditions with bad road grip. v vi Contents Preface iii Abstract v Contents vii 1 Introduction 1 1.1 Steeringrobot................................... ... 1 1.2 ABDpath-following ............................... ... 2 1.3 Relatedwork ..................................... 3 1.4 Thisreport ...................................... 3 2 Method 4 2.1 Equipment ....................................... 4 2.2 Testsite........................................ 6 2.3 Testprocedure ................................... 6 2.4 Dataprocessing.................................. ... 7 3 Result 8 3.1 Theoreticalanalysis ............................. ..... 8 3.2 Experimentaltests ............................... 11 3.2.1 Testmanoeuvres ................................ 11 3.2.2 PF-settings ................................... 13 3.2.3 Othernotes................................... 17 4 Discussion 19 4.1 Conclusion ...................................... 19 4.2 Futurework...................................... 20 Bibliography 20 Appendices A Single Lane Change 22 B Double Lane Change 31 C Constant Radius Circle 33 D Handling Track 34 vii viii Chapter 1 Introduction This report discusses the experience of using one of Anthony Best Dynamics (ABD) steering robots, with path-following capability, for winter test of a car. The ABD steering robots are commonly used for vehicle testing in situations where high repeatability is of importance and/or the safety of a human driver is in danger. 1.1 Steering robot A steering robot is a device that can be mounted inside of a vehicle, on top of, or instead of, the steering wheel, see Figure 1.1. The device is controlled by a programmable computer and replaces the steering input that the human driver normally gives as input when driving. Using the steering robot system a steering manoeuvre can be repeated over and over again in a precise manner. Figure 1.1: ABD SR30 steering robot installed in a Volvo V70. There are mainly two approaches when using a steering robot for vehicle testing. The first is open loop control, and the second is closed loop control, of the angle of the steering wheel. 1 1.2. ABD PATH-FOLLOWING CHAPTER 1. INTRODUCTION Table 1.1: List of symbols. α Angle to aimpoint Θ Vehicle heading offset γ Angular error due to lateral offset b Lateral offset q Projected lateral error due to heading offset v Vehicle forward velocity lad look ahead distance Kp(v) Proportional gain function p(v) Preview distance function LAC Look Ahead Constant P Proportional gain I Integral gain D Differential gain Using the open loop control the steering wheel is turned in an exact predefined pattern. There are today several different test sequences defined for these kinds of static steering manoeuvres, Sine-dwell and the Fishhook test are two examples of such tests. Using closed loop control the vehicle position and orientation is continually compared with a predefined drive path, i.e. path-following. If the vehicle deviates from the path, the controller tries to compensate for this and strives to steer the car back to the track. 1.2 ABD path-following The path-following algorithm in the ABD robot controller is primarily implemented according to paper [1]. It is described as ”...essentially a proportional feedback controller on ’path error’...” [1] where the path error is defined as the projected lateral position offset at a specified distance in front of the vehicle. I.e. the algorithm utilise a look ahead distance, lad to find out if the vehicle, given its current position and orientation, will end up on the defined track at a certain distance ahead. If not, the controller will control the steering angle to steer the vehicle back towards the track. A list of the most commonly used symbols throughout the report is shown in Table 1.1. The path-following controller is implemented as a PID-controller, using the projected path error as input. Figure 1.2 shows the key aspects on how the error is defined. The path error can be divided into two parts: the lateral error b due to the vehicle not located on the path, and the projected lateral error q due to the vehicle heading not pointing in the desired travel direction. Hence, the total path error used as input to the controller is b + q. Regarding path-following, there are mainly four parameters to tune when setting up the ABD steering robot in a new vehicle, the Proportional gain P , Integral gain I, Differential gain D, and the Look ahead constant LAC. As described in the paper [1], both the proportional gain, as well as the look ahead distance (a.k.a. preview distance), are speed dependent according to given functions, namely 2 Kp(v)= −0.99v − 7.1v + 602.2, v ≤ 15m/s 2 Kp(v) = 61380/v , v> 15m/s (1.1) and 2 p(v) = 0.0227v − 0.0671v + 1.6781 (1.2) respectively. 2 CHAPTER 1. INTRODUCTION 1.3. RELATED WORK Y Aimpoint b q α γ ϴ lad X Figure 1.2: Description of the path error used in the path-following controller. The vehicle (shown as a tricycle) is set to follow a straight line located on the y-axis. If desired by the user, these functions may be adjusted. However, throughout the tests presented in this report these functions where left unchanged. When changing the parameters P or LAC, the output from these two functions is scaled accordingly. Hence, the look ahead distance lad is calculated with LAC ∗ p(v) and the proportional gain used in the controller is P ∗ Kp(v). 1.3 Related work So far there is not much written knowledge and experience for the use of steering robot in winter conditions. The Swedish research institute VTI has made some experiments aiming at testing the ESP system of a car [2] and provoking over steering on ice and snow with different winter tires [3]. However, in these tests they only use static pre-programmed steering manoeuvres (sine with dwell). No feedback control based on the vehicle position is used. 1.4 This report The experiments described in this report focus on the use of closed loop control of the steering angle of the car, i.e. path-following, on road surfaces like snow and ice. Extensive tests have been performed on a test track located on a frozen lake. Several different test manoeuvres has been performed and evaluated. The main question this report tries to answer is: • What happen when you push the path-following system to, and beyond, the physical limitations concerning road grip and vehicle speed? This is something that does indeed occur when driving during winter conditions on low friction surfaces such as ice and snow. One important part when winter testing cars is to provoke the car in such a manner so that the Electronic Stability Control (ESC) of the car is activated. How well does the path-following algorithm cope with under-steering and over-steering behaviour of the car? To fully understand the details in this report it is necessary to know how the path-following algorithm used in the ABD steering robot works.
Recommended publications
  • Experiential Correlation of Vehicle Dynamics Simulation to Self-Reported Driving, Learning, and Gaming Styles
    MODSIM World 2017 Experiential Correlation of Vehicle Dynamics Simulation to Self-reported Driving, Learning, and Gaming styles Kevin F. Hulme, Ph.D., CMSP Edward M. Kasprzak, Ph.D. Karen L. Morris, MPH University at Buffalo EMK Vehicle Dynamics, LLC University at Buffalo Motion Simulation Laboratory Buffalo, NY Center for Children and Families Buffalo, NY Buffalo, NY [email protected] [email protected] [email protected] ABSTRACT For the last half century, there has been a dramatic increase in the use of modeling and simulation (M&S) applications in training and education. M&S can be leveraged to enhance conventional mechanisms for knowledge retention by bridging the gap between classroom theory and real-world application to better enable engaging, experiential participation in the learning process. This paper discusses the technical and experimental design of a game-based simulation environment for an existing road vehicle dynamics (RVD) university course. The basis of the simulation experiment is to provide an environment for learners to actively discover the interplay between two key vehicle parameters (i.e., vehicle weight distribution and roll-stiffness distribution) while driving upon an oval speedway. The goal of the learner, in real-time, is to optimize these parameters to maximize vehicle performance (i.e., to minimize lap time). Simultaneously, our objective as educators is to observe how simulator-measured experimental performance correlates to self-reported tendencies (e.g., driving style; learning style; video gaming preferences) relevant to driving and dynamics education. Our holistic goal is to determine if and to what degree M&S-based instruction is better suited towards certain types of drivers or learners, which might inform how to maximize the effectiveness of the delivery of M&S in future training and education curricula.
    [Show full text]
  • Ydenius 1 FATAL CAR to MOOSE COLLISIONS
    FATAL CAR TO MOOSE COLLISIONS: REAL-WORLD IN-DEPTH DATA, CRASH TESTS AND POTENTIAL OF DIFFERENT COUNTERMEASURES Anders Ydenius Folksam Research Sweden Anders Kullgren Matteo Rizzi Folksam Research and Chalmers University of Technology Sweden Emma Engström Folksam Research and Royal Institute of Technology Sweden Helena Stigson Folksam Research and Chalmers University of Technology Sweden Johan Strandroth Swedish Transport Administration and Chalmers University of Technology Sweden Paper Number 17-0294 ABSTRACT Vehicle collisions with large animals constitute a high risk of serious or fatal injuries, for example in northern America, Europe and Japan. In Sweden approximately 5,000 car collisions with moose occur annually. The change of velocity and acceleration is in general very low, but the car structure is not designed for collision with large animals at high speed. The objectives were to evaluate occupant response and vehicle structure in crash tests; to investigate the factors involved in real-world fatal crashes in Sweden; and to evaluate the potential of Autonomous Emergency Braking (AEB) to increase moose car collision avoidance and survivability. Five crash tests were conducted with cars with different size and characteristics, such as glass and sun roof. A moose crash dummy was impacted at 70 km/h. The Swedish Transport Administration (STA) national database of fatal collisions was used to study fatalities (n=47) in collisions with moose during the period 2005-2016. The analysis focused on collisions where the primary cause of fatality was the collision with a moose. The crash tests showed that a moose collision could be survivable at 70 km/h with an acceptable distance to the header structure.
    [Show full text]
  • Downloadable As a PDF
    www.autofile.co.nz JANUARY 2019 THE TRUSTED VOICE OF THE AUTO INDUSTRY FOR MORE THAN 30 YEARS Extra action predicted Specialised to keep out stink bugs training that’s proven to The Motor Industry Association warns ‘it’s only a matter of increase profits time’ before all markets are likely to have controls in place Hypercar inspired he automotive industry what’s known as “schedule three” of by game is expecting at least the import health standard (IHS) for two additional export vehicles, machinery and equipment. Tmarkets to face tough biosecurity A revised standard was issued p 15 requirements in the future to by the MPI on August 9 to cover prevent brown marmorated stink the current stink-bug season, which bugs (BMSBs) from crossing New runs from September 1 to April 30. Zealand’s border. The changes included 14 Supply-chain pathways for new countries being added to schedule vehicles imported from Japan – three in addition to the US and Italy, from production line to port – must which means new vehicles from already be approved by the Ministry these markets require mandatory Battery solutions for Primary Industries (MPI). treatment or have to go through an on the agenda p 17 The process involves marques approved system during the high- The MPI has issued an advisory about stink having strict controls in place to bugs on vehicles from China and South Korea risk period for BMSBs. minimise contamination risks so The extra countries are Austria, their stock doesn’t have to be heat- Japan and Malaysia, provide the Bulgaria, France, Georgia, Germany, treated before being shipped as is bulk of new vehicles coming into Greece, Hungary, Liechtenstein, the case with used imports, which this country.
    [Show full text]
  • Model Based Suspension Calibration for Hybrid Vehicle Ride and Handling Recovery
    Model Based Suspension Calibration for Hybrid Vehicle Ride and Handling Recovery THESIS Presented in Partial Fulfillment of the Requirements for the Degree Master of Science in the Graduate School of The Ohio State University By Matthew Joseph Organiscak, B.S. Graduate Program in Mechanical Engineering The Ohio State University 2014 Thesis Committee: Dr. Giorgio Rizzoni, Advisor Dr. Shawn Midlam-Mohler Dr. Jeffrey Chrstos Copyright by Matthew Joseph Organiscak 2014 ABSTRACT Automotive manufacturers spend many years designing, developing, and manufacturing each new model to the best of their ability. The push to shorten the time of a design cycle is motivated by reducing development costs and creating a more competitive advantage. Model based design and computer simulations have an increasing presence in the automotive industry for this reason. In the automotive industry, current ride and handling tuning methods are subjective in nature. There are few, if any, objective evaluations of the vehicle ride and handling performance. EcoCAR 2 is a three year collegiate design competition, in which 15 teams compete to develop a vehicle with lower petroleum consumption and fewer emissions. The teams begin the task with a 2013 Chevrolet Malibu and are challenged with maintaining consumer acceptability. The stock vehicle has been modified greatly by removal of the stock powertrain and battery system. Nearly 900 lbs of batteries and supporting components have been added to the trunk of the car along with an electric motor and single speed transmission. This change in vehicle mass has led to issues with poor ride and handling performance. Model based calibration of the suspension dampers can be seen as a method to recover some of the lost performance.
    [Show full text]
  • Overview of Technologies Aimed at Reducing and Preventing Large Animal Strikes
    Transport Canada Transports Canada Safety and Security Sécurité et sûreté Road Safety Sécurité routière Overview of Technologies Aimed at Reducing and Preventing Large Animal Strikes April 2003 ASFBE Standards Research and Development Branch Road Safety and Motor Vehicle Regulation Directorate TRANSPORT CANADA Ottawa, Ontario K1A 0N5 Overview of Technologies Aimed at Reducing and Preventing Large Animal Strikes INTRODUCTION In the past four years there has been an increase in the number of collisions involving large animals on Canadian roads. Collisions between large wildlife and motor vehicles represent a significant concern for Transport Canada. The purpose of this report is to provide an overview of the different technologies available to assist in the prevention of animal strikes, including various road infrastructure initiatives and automotive devices. Some of these initiatives and automotive technologies are being tested and some are currently being used in different areas of the world. The intent of this report is not to review each design, but to summarize the different methods currently available. The document will focus on collisions involving large animals, in particular moose and deer. These types of collisions are common in Canada and usually result in severe consequences for the occupants of the vehicle as well as for the vehicle itself. STATISTICS Canadian data collected from 1988 to 2000 indicate that there are, on average, over 25,000 collisions a year involving a large animal (see Chart 1). Of that number, an average of 1,486 collisions resulted in injuries to the travelling public and 18 resulted in fatal injuries (see Chart 2). These numbers have been extracted from the Traffic Accident Information Database (TRAID), which is a collection of data pertaining to traffic collisions occurring in the provinces and territories.
    [Show full text]
  • Analysis of Driver-Vehicle-Interactions in an Evasive Manoueuvre - Results of ,,Moose Test“ Studies
    ANALYSIS OF DRIVER-VEHICLE-INTERACTIONS IN AN EVASIVE MANOUEUVRE - RESULTS OF ,,MOOSE TEST“ STUDIES Joerg J. Breuer Daimler-Benz AG Germany Paper Number 98-S2-W-35 ABSTRACT stability, the questions of test objectivity, reliability and validity have to be answered. In 1997 a so-called ,,moose test“, an evasive manoeu- vre without braking at a speed between 60 and 65 km/b, led to improvements in the Mercedes A-class after two vehicles rolled over in this manoeuvre. The new A-class was presented to the press in January ‘98: more than 450 journalists from all over Europe tested the improved vehi- cle during a vehicle dynamics workshop at the Goodyear Proving Ground in MirevaliFrance. Five vehicles were Figure 1. “Moose-Test”. equipped with data acquisition units providing data on the driver’s input at steering wheel (angle and velocity) and In order to generate a sound basis for the evaluation of foot pedals as well as on vehicle reactions (speed, lateral driver behaviour in this specific evasive manoeuvre, dif- acceleration, yaw rate) and the interference of the Elec- ferent driver groups are included: experts, motor joumal- tronic Stability Programme (ESP). More than 2.000 tests ists and normal drivers. Field tests with normal drivers conducted by over 400 journalists and experts were ana- serve to provide measures of steering behaviour in real lysed in detail and compared to 13 1 moose tests per- road traffic (Table. 1). Results are also utilised for the formed by normal drivers. In addition, 30 normal drivers evaluation of the “moose-test”. drove more than 15.000 km in real road traffic.
    [Show full text]
  • Vehicle Dynamics Analysis and Design for a Narrow Electric Vehicle
    Vehicle dynamics analysis and design for a narrow electric vehicle B.J.S. van Putten DCT 2009.110 Master’s Thesis Supervisors dr.ir. I.J.M. Besselink, Eindhoven University of Technology dr.ir. A.F.A. Serrarens, Small Advanced Mobility B.V. prof.dr. H. Nijmeijer, Eindhoven University of Technology Committee member dr.ir. C.C.M. Luijten, Eindhoven University of Technology Advisor D. van Sambeek M.Sc., Small Advanced Mobility B.V. Eindhoven University of Technology Department of mechanical engineering Automotive Engineering Science Eindhoven, November 2009 Preface Ever since my youth, my interest in cars has been great; nevertheless I had not expected this interest could also apply to the simulation of a virtual vehicle. During both my traineeship and the research leading to this work, this interest has grown. Moreover, it became clear to me that vehicle development is impossible without the application of some form of vehicle simulation. Nowadays, computational analysis and design probably are the most important tools in automobile development. It is likely that in the future the importance of this discipline will only develop further. From my perspective, knowledge about vehicle dynamics simulation is a must for my generation of automotive engineers interested in this field of technology. The vehicle of subject in this research is an interesting new approach to personal transport, combining high maneuverability in cities and sporty driving performance with guided automated highway travel. The fully electric drive of the CITO is state-of-the-art and fits well in current developments in legislation and public opinion on road transport.
    [Show full text]
  • The Effect of Hydraulic Damper Characteristics on the Ride and Handling of Ground Vehicle
    International Journal of Recent Technology and Engineering (IJRTE) ISSN: 2277-3878, Volume-7, Issue-6S, March 2019 The effect of hydraulic damper characteristics on the ride and handling of ground vehicle Farah Z. Rusli, Fadly J. Darsivan Abstract: In this paper, ride quality and handling performance II. RIDE QUALITY OF A GROUND VEHICLE of a vehicle are quantified by the vibration transmitted to the A passenger car that travels at high speed will experience vehicle’s body. A passive suspension is designed to compromise between a good ride comfort and a good handling performance. a broad spectrum of vibration. The spectrum of vibrations In the development of modern passenger vehicle, subjective may be divided up according to frequency and classified as testing is greatly involved. In this study, a quantitative method is the ride (0-25 Hz) and noise (25-20,000 Hz) [1]. used to determine the range of suspension parameter for MATLAB/Simulink was used by [2] as a software to acceleration, braking, ride comfort and handling performances. convert road excitation into a measured road profile. Four The investigation involved a full car model with 7 degrees of degrees of freedom half car model were used in this research freedom and VeDyna software was utilized to simulate the performance of the vehicle when subjected to different road to measure the pitching and rolling effect. profiles and different handling maneuver. The effect of 3 A half car model was used by [3] with passive vehicle different nonlinear suspension characteristics towards the ride suspension to study the wheel base delay and nonlinear and handling was investigated.
    [Show full text]
  • ECO-Car System: Design and Computer Simulation of Dynamics
    1523. Driver – ECO-car system: design and computer simulation of dynamics Wlodzimierz Choromanski1, Maciej Kozłowski2, Iwona Grabarek3 Warsaw University of Technology, Faculty of Transport, Department of Information Technology and Mechatronics in Transport, Warsaw, Poland 1Corresponding author E-mail: [email protected], [email protected], [email protected] (Received 19 October 2014; received in revised form 1 December 2014; accepted 13 December 2014) Abstract. The 21st century certainly poses new challenges for the construction of means and systems of transport, particularly in the greater metropolitan areas. Issues related with public transport are generally well-known. Research studies are constructively oriented towards finding solutions to reduce energy consumption, minimize construction and maintenance costs, guarantee profitability, reduce emissions of air pollutants, and first and foremost, solutions which would be human-friendly and specifically tailored to meet the needs of the people. This paper presents the concept of a new electric ECO-car designed within the remit of the scientific and research programme at Warsaw University of Technology. The car is equipped to carry both able-bodied passengers and the disabled. The car uses an integrated drive and brake-by-wire system, as well as powered by lithium-ion batteries and a super capacitor system. During the design process special attention was also paid to ergonomic issues. Due to the theme of the conference, special attention will be paid to the dynamic properties of a complex system of driver-vehicle-road. It will show dynamic phenomena in the implementation of the so-called moose test. Keywords: ECO-car, new concept, moose test, computer simulation.
    [Show full text]
  • A Progress Report on Development of a Dynamic Rollover
    Research and Development Safety Performance Standards AAA ProgressProgressProgress ReportReportReport ononon DevelopmentDevelopmentDevelopment ofofof aaa DynamicDynamicDynamic RolloverRolloverRollover RatingRatingRating TestTestTest Dr. W. Riley Garrott Pat Boyd National Highway Traffic Safety Administration May 15, 2001 15 May 01, page 1 Research and Development Safety Performance Standards Presentation Overview • Background • Dynamic Rollover Testing Issues • Planned Testing – Testing Overview – Test Vehicles – Initial Test Maneuvers • Preliminary Rollover Rating Ideas • Current Status 15 May 01, page 2 Research and Development Safety Performance Standards Background 15 May 01, page 3 Research and Development Safety Performance Standards Rollover Crash Statistics • 10,142 people were killed in light vehicle rollovers during 1999 (FARS) – 8,345 were killed in single-vehicle rollovers – 80 % were not wearing a seat belt – 55 % of occupant fatalities in light, single- vehicle crashes involved rollover ª 46 % of fatalities for passenger cars ª 63 % of fatalities for pickup trucks ª 60 % of fatalities for vans ª 78 % of fatalities for sport utility vehicles 15 May 01, page 4 Research and Development Safety Performance Standards Rollover Crash Statistics • 27,000 serious injuries per year due to light vehicle rollovers (NASS, 1995 – 99 average) – 19,000 in single vehicle crashes • 253,000 light vehicle rollovers per year (NASS, 1995 – 99 average) – 205,000 in single vehicle crashes – 178,000 occurred after vehicle had left roadway 15 May
    [Show full text]
  • Electronic Stability Control: Review of Research and Regulations
    ELECTRONIC STABILITY CONTROL: REVIEW OF RESEARCH AND REGULATIONS Prepared by Michael Paine Vehicle Design and Research Pty Limited for ROADS AND TRAFFIC AUTHORITY OF NSW June 2005 Vehicle Design & Research REPORT DOCUMENTATION PAGE Report No. Report Date Pages G248 2 June 2005 30 Title and Subtitle Electronic Stability Control: Review of Research and Regulations Authors Michael Paine Performing Organisation Vehicle Design and Research Pty Limited 10 Lanai Place, Beacon Hill NSW Australia 2100 Sponsoring Organisation Roads and Traffic Authority of New South Wales. Harry Vertsonis, Road Environment and Light Vehicle Standards 280 Elizabeth St, Surry Hills, NSW Abstract Recent analysis of real world accidents in the USA suggest that Electronic Stability Control (ESC) can be remarkably effective at preventing loss-of-control accidents. Regulatory authorities and consumer test organisations around the world are therefore actively researching test methods that can be used to assess the performance of ESC. Researchers in the USA, Canada, Europe, Japan and Australia were contacted to establish the status of research and to obtain comments on ways in which ESC can be assessed and encouraged. Strategies range from "regulation by definition" and defining functional requirements for ESC, to the performance of comparative dynamic tests. At this stage there is no performance-based test and assessment protocol that is suitable for use by the Australian New Car Assessment Program or in regulations. However, consideration should be given to regulating functional requirements to ensure there are no unintended adverse effects from ESC. To complement the global research it is recommended that a small research program be undertaken in Australia to evaluate the ability of an Australian- developed test procedure to assess ESC performance.
    [Show full text]
  • Design and Computer Simulation of ECO-Car
    Design and computer simulation of ECO-car Wlodzimierz Choromanski1, Maciej Kozłowski2, Iwona Grabarek3 Warsaw University of Technology, Faculty of Transport, Department of Information Technology and Mechatronics in Transport, Warsaw, Poland 1Corresponding author E-mail: [email protected], [email protected], [email protected] (Accepted 10 September 2014) Abstract. The 21st century certainly poses new challenges for the construction of means and systems of transport, particularly in the greater metropolitan areas. Issues related with public transport are generally well-known. Research studies are constructively oriented towards finding solutions to reduce energy consumption, minimize construction and maintenance costs, guarantee profitability, reduce emissions of air pollutants, and first and foremost, solutions which would be human-friendly and specifically tailored to meet the needs of the people. This paper presents the concept of a new electric ECO-car designed within the remit of the scientific and research programme at Warsaw University of Technology. The car is equipped to carry both able-bodied passengers and the disabled. The car uses an integrated drive and brake-by-wire system, as well as powered by lithium-ion batteries and a super capacitor system. During the design process special attention was also paid to ergonomic issues. Due to the theme of the conference, special attention will be paid to the dynamic properties of a complex system of driver-vehicle-road. It will show dynamic phenomena in the implementation of the so-called moose test. Keywords: eco-car, new concept, moose test, computer simulation. 1. Introduction This paper presents a new concept of electric car for four passengers (both for able-bodied and disabled users).
    [Show full text]