Real-time Computational Fluid Dynamics for Flight Simulation

Size: px
Start display at page:

Download "Real-time Computational Fluid Dynamics for Flight Simulation"

Transcription

1 Real-time Computational Fluid Dynamics for Flight Simulation James Kenny, Kenji Takeda & Glyn Thomas School of Engineering Sciences University of Southampton, Southampton SO17 1BJ, UK james.kenny, ktakeda, ABSTRACT A service oriented architecture is described that enables computational fluid dynamics (CFD) simulations to run alongside a human-in-the-loop flight simulator; thereby informing the behavior of a simulated aircraft whilst it is being piloted. The scenario of a helicopter landing on a moving ship at sea, is used as an example application. A generic service-oriented architecture is presented that allows coupling of a real-time flight simulator, flight dynamics model and CFD simulation running on a high performance computer. The case study used is performing unsteady CFD calculations used to model the aerodynamic development of, and interaction between, the ship and helicopter wakes; The CFD code resides on a cluster computer and is exposed to a PC-based flight simulator as a service, enabling two-way data exchange between the CFD and flight model whilst the simulation is running. Realtime analysis of the CFD results and control inputs allows prediction of the forces acting on the helicopter rotor, this is fed into a full six degree of freedom flight model. Performance results for the full end-to-end architecture are presented to demonstrate the capability, and limitations, of this approach. The paper concludes with a short discussion regarding the potential for this architecture to provide a generic representation of aircraft-environment interactions, and their influence on performance and handling. Implementing a more accurate representation of these phenomena in flight simulators could improve the ability to prepare pilots for challenging tasks such as: landing on ships, flying in urban environments, dealing with brown-out conditions, and encountering the wakes of other aircraft. ABOUT THE AUTHORS James Kenny is a research student in the School of Engineering Sciences at the University of Southampton; he holds a degree in Aerospace Engineering, and has eight years of experience working in the defence and aerospace sectors. James area of research includes helicopter simulation, computational fluid dynamics, and high performance computing. Dr Kenji Takeda is a senior lecturer in the School of Engineering Sciences at the University of Southampton, and co-director of the Microsoft Institute for High Performance Computing. Dr Takeda s research covers unsteady aerodynamics and aeroacoustics, race car aerodynamics, flight simulation, and advanced engineering computation. His work has been applied in projects with companies such as Airbus, BAE Systems, Microsoft, and Formula One teams. Dr T Glyn Thomas is a lecturer in the School of Engineering Sciences at the University of Southampton. His research interests include computational fluid mechanics and turbulence, flight simulation, wind engineering, and parallel computing Paper No. nnnn Page 1 of 8

2 Real-time Computational Fluid Dynamics for Flight Simulation James Kenny, Kenji Takeda & Glyn Thomas School of Engineering Sciences University of Southampton, Southampton SO17 1BJ, UK james.kenny, ktakeda, INTRODUCTION The modeling of aerodynamic effects in real-time flight simulators is a continuously evolving field. It is becoming increasingly relevant for flight simulators to more accurately describe the local unsteady environmental flow around the vehicle, in a timeaccurate way for applications such as wake vortex and helicopter-ship airwake interaction scenarios. This is important from both development and training perspectives. This is an extremely challenging problem that is being tackled using a variety of techniques. Current approaches typically involve using measured wind tunnel or flight trial data, or pre-computed computational fluid dynamics (CFD) results, as inputs to a real-time flight dynamics model. This can provide representations of the local environment that significantly enhance the flight dynamics behavior. For example, Spence et al (2007) demonstrate how highresolution large eddy simulation computations of an aircraft wake vortex can be used as inputs to a real-time flight simulator. Zan et al (2005) reviews progress in the helicopter ship airwake interaction problem, and how several groups are attempting to model this. Most recently Keller et al (2007) have demonstrated how unsteady CFD of a ship airwake can be integrated into a real-time helicopter simulation. These approaches are, however one-way in nature, calculating the effect of the local environment on the vehicle, but not including interaction of the vehicle aerodynamics on the environment. This is particularly critical in, for instance, the helicopter ship airwake interaction problem. The inclusion of other dynamic effects, such as ship motion on the airwake, is currently beyond state-of-the-art. The development of offline, two-way models using computational fluid dynamics coupled to flight dynamics solvers has been successfully demonstrated for both fixed and rotary wing problems. Allan et al (2005) coupled a CFD solver to a three degree of freedom model to investigate the effect of elevator control on longitudinal stability. CFD ship airwake computations by Lee et al (2003) and Sezer-Uzol et al (2005) use an automatic control system to simulate the pilot inputs required to land a helicopter on the ship. The coupling of a flight simulator to HPC CFD code is an example of real-time computational steering (Modi et al, 2005). With the improvements in price/performance of high performance computers, it is becoming possible to consider real-time CFD calculation being used in human-in-the-loop flight simulators. Computation of a free-wake model in free space in near-real time has been demonstrated by Horn et al (2006), and simplified airwake and multi-vehicle interaction (McKilip et al, 2006). In this paper we describe a generic proof-ofconcept framework for the use of unsteady Navier- Stokes computational fluid dynamics calculations in a human-in-the-loop flight simulator to compute the twoway interaction between the vehicle and the local environment. Notably, this architecture is designed to exploit HPC from the outset. There are, of course, a number of significant issues related to this goal, which is discussed here. By using a service-oriented software approach, we describe how it can also be extended to other applications. The following section describes the overall methodology for our approach, including service-based software architectures, high performance computing, and how this can be coupled to a flight simulator in real-time. A case study of a helicopter interacting with a ship airwake is then described, including performance results for the round-trip messaging used in the framework. This is followed by a discussion of how this framework can be extended and used for other high-fidelity physics modeling tasks. Some concluding remarks are then included at the end of the paper. METHODOLOGY In order to achieve real-time CFD inputs for a flight simulator, a distributed computing architecture is 2008 Paper No. nnnn Page 2 of 8

3 required. Here we aim to exploit high performance computing, notably commodity personal computerbased cluster systems (Takeda et al, 2001). The software framework uses the concept of a serviceoriented architecture (SOA). This type of architecture relies on a number of services that can interact. Services differ from components and objects, in that they comprise contract, interface and implementation. In this way the precise implementation details are not needed in order to interact with a service. These are described in more detail, specifically as applied to flight simulation, in Takeda & Kenny (2008). By using an SOA, it is possible to build up functionality using a set of services. These can be coordinated over an Enterprise Service Bus, which is a logical construct over which messages can be managed. While such systems are now becoming more commonplace for large-scale, multi-player distributed simulation scenarios, here we use the idea to create a coupled system between the flight simulator and HPC resource. The advantage of using an SOA is that the framework is extensible, which is a feature that will be discussed later in the paper. The key feature of our generic framework is exposing the HPC resource as a service. This allows a running compute job, in this case a CFD simulation, to interact with processes over the network in a seamless way. By using a bus architecture it is also possible to extend this to other services. SOAs are often based on open web standards, such as XML, SOAP and WSDL. This is appropriate for internet-based applications where interoperability is paramount, and latency is not critical. For higher performance applications, other protocols can be used. One example of this is the Microsoft Windows Communication Foundation, which is an integrated framework for distributed computing. It can use webbased HTTP protocols, but also supports higher performance TCP/IP communications. The next section describes how WCF is used to implement service-based communications between the Matlab flight model server and HPC system. In order to perform CFD at update rates required to support human-in-the-loop simulation, multi-processor computing is usually required. A flow solver that can be run at appropriate speed and necessary level of physics fidelity is required. This code should be scalable, so that as physics fidelity is increased, so more computing resource can be used to maintain the rate of results delivery. Using a service-based interface means that the details of the CFD implementation are hidden from the rest of the system, so as long as the service contract is maintained, then the CFD solver can be changed as necessary. One of the main constraints of using real-time CFD for flight simulation is the update rate required to drive the flight dynamics model. Typically a visual system update rate of 50-60Hz is mandatory, so a flight model and control update rate of at least that is required. The update rate required by the CFD inputs must be on a time scale related to the physics of the interaction. i.e. how the local aerodynamics affect the dynamics of the vehicle. This rate may be significantly lower than the visual rate, as it is dependent on the flow physics and vehicle dynamics response. Recent work by Hodge and Forrest (2008) showed that an update rate of around 20Hz was sufficient to describe helicopter ship airwake interactions when using a flight dynamics model flying through a pre-computed CFD solution. In the architecture described here, the update rate can scale with the available HPC resource. Our aim is to demonstrate the feasibility of using real-time CFD for flight simulation, given sufficient HPC resource is made available. In the next section we describe a specific implementation of the proposed SOA framework. The aim is to show how the system is able to sustain the required flight model update rates, and that this performance is decoupled from the CFD solver in a way that allows scalable HPC resources to be integrated at the appropriate level. CASE STUDY In this section we describe an implementation of the SOA-based architecture for real-time CFD. The scenario of interest is that of a helicopter landing on a ship. Two-way coupling between helicopter aerodynamics and the ship airwake is required to provide a more representative dynamic simulation than is currently possible. Performance results that demonstrate achievable update rates using this approach are presented. The software architecture is based around the Microsoft ESP flight simulation engine (Zyskowski, 2008), with the flight model equations being solved using Matlab. This is coupled to a CFD solver running on an HPC cluster running Windows HPC Server (WHPCS) This particular technology is necessary to provide the service-based interface between the flight model and CFD simulation Paper No. nnnn Page 3 of 8

4 Figure 1. Real-time CFD service-based architecture Figure 2. ESP visualisation of helicopter and ship The logical architecture for this system is shown in Figure 1. ESP is used as the front-end of the system, capturing pilot inputs through the flight controls and providing audio-visual feedback through the image generation and audio system. This is interfaced to Matlab using the SimConnect Application Programming Interface that provides two-way communications using a variety of transport mechanisms (Aces Studio, 2008). In this case, C# managed code is used to transfer input information from ESP to Matlab, and also aircraft position and orientation back to ESP for visualization by the image generator system (Figure 2). The flight model is computed in Matlab, with CFD being used to provide force inputs to the rotor dynamics. The CFD code runs on the HPC cluster and communicates with Matlab using a service, implemented using Windows Communication Framework (WCF), known here as the CFD service. This service allows input and output data to be sent to and from the HPC cluster in a clean fashion, using a service contract. An advantage of this approach is that the details of the CFD implementation are hidden from the Matlab flight model. In this way the CFD code can be changed without disrupting other parts of the architecture directly. The sample CFD service XML registration code is shown in Figure Paper No. nnnn Page 4 of 8

5 CFDSvc.config <configuration> <Microsoft.Hpc.Session.ServiceRegistration> <service assembly= c:\services\cfdsvclib.dll contract= CFDSvcLib.ICFDSvc type= CFDSvcLib.CFDSvc /> </Microsoft.Hpc.Session.ServiceRegistration> </configuration> Figure 3. Sample XML service registration. CFDSvc.cs using System.ServiceModel; namespace CFDSvcLib [ServiceBehaviour(IncludeExceptionDetailInFaults=true)] public class CFDSvc : ICFDSvc #region ICFDSvc Members public double Update(double rhubx, double rhuby, ) return dpx, dpy, ; #endregion ICFDSvc.cs using System.ServiceModel; namespace CFDSvcLib [ServiceContract] public interface ICFDSvc [OperationContract] Double Update(double rhubx, double rhuby, ); Figure 4. Sample C# CFD service code. The CFD computation is performed using a research code that solves the unsteady incompressible Navier- Stokes equations on a staggered, multiblock grid. A second-order finite central finite difference scheme is used in space, with a second-order explicit Adams- Bashforth scheme in time. Continuity is imposed using pressure-correction methods, making use of a parallel multigrid Poisson solver. It can be used for both direct numerical simulation (DNS) and large-eddy simulation (LES), depending on grid density. This code has been extensively validated for flows with solid boundaries (Yao et al, 2001, Shi et al, 2001) and for vortex ring calculations (Archer et al, 2008). It was originally developed to take advantage of parallel, distributed architecture computers, and shows excellent speedup on a variety of different parallel computers on over 1000 processors. A typical CFD visualization from this code is shown in Figure 7 (Archer et al, 2008). In this case a rotor model is embedded within the CFD solver that is moved inside the mesh via the pilot control inputs and Matlab. The resultant rotor forces are then computed in the CFD solver and feedback to the flight model using the CFD service. CFDSvcClient.cs using System.ServiceModel; using Microsoft.Hpc.Scheduler.Properties; using Microsoft.Hpc.Scheduler.Session; namespace CFDClient class Program static void Main(string[] args) // Specify info needed to create session SessionStartInfo info = new SessionStartInfo( headnode, servicename); // Create session using (Session session = Session.CreateSession(info)) // Bind session to client proxy CFDSvcClient client = new CFDSvcClient( new NetTcpBinding( SecurityMode.Transport, false), session.endpointreference); client.beginupdate(rhubx, rhuby,, UpdateCallback, new RequestState(client)); class RequestState public double GetResult(IAsyncResult result) return client.endupdate(result); // Define callback static double UpdateCallback(IAsyncResult result) // Send CFD results to flight model acresponse = flightmodel(state.getresult(result)); Figure 5. Sample C# CFD client code. Figure 6. SOA architecture to HPC cluster 2008 Paper No. nnnn Page 5 of 8

6 Figure 7. Typical visualization showing CFD results for vortex ring calculation The main aim of this paper is to demonstrate how this end-to-end SOA can provide an extensible way of coupling real-time flight simulation with HPC-based physics calculations. Here we present performance results to show the relevant latencies and update rates achievable using this proof-of-concept architecture. The results were obtained using basic, off-the-shelf computer hardware. Six PCs with a guide specification of: 2.4GHz dual core processor, 2GB+ of RAM, Gigabit Ethernet network interface cards; communicating over a pair of Gigabit network switches. The time taken to complete the roundtrip task of interest was measured; this was done for several different tasks, and averaged over 1,000,000 calls. Table 1 presents some useful findings about the three key communication routes for the proposed architecture. For each route some time is taken preparing the communication: this ranges from user authentication when establishing access to the HPC CFD service, to loading the Matlab flight model into the Matlab Component Runtime. Additionally it can be seen that the first few calls to a service, or an API method, can occupy significantly more time that subsequent calls. The average time to complete a call, once communications have been established, is clearly seen to be of the order of milliseconds. This is important because it shows that the communications routes will not be a performance barrier for the proposed application. Therefore by increasing the computational resources available to each part of the application, it should be possible to obtain the update rates required for simulation. Based on the timing and latency results discussed, Table 2 shows some conservative estimates for the update rates which the various communication routes can support. Taking the bottom entry in the table as an example, it tells us: if we code our flight model in C#, collect CFD results from an HPC cluster using the SOA interface outlined in this paper, and use Microsoft ESP to carry out the human-in-the-loop simulation we could achieve update rates above 100Hz. The update rate achieved will be dependent upon the computational resources available, if the CFD service running on the HPC can only run at say 30Hz, then the whole system update rate would be limited to approximately 25Hz. This illustrates the challenge involved in providing coupled CFD solutions to inform flight simulation in real-time, flight dynamics data might normally be expected to have update rates in excess of 60Hz. For now this demands advanced filtering, extrapolation, and smoothing functions; but over the next few years as computer speeds increase that demand will reduce, eventually reaching the position where every simulated frame is driven directly by the CFD service. One final result to note is the time costs associated with using Matlab. In this work managed C# code interacts with Matlab functions that have been compiled as.net assemblies. It seems that the overheads involved are prohibitive; however further testing is required to prove whether this is indeed the case, or if perhaps it is the computational efficiency of the script itself that needs improvement. Duration Table 1. Time cost and latency results C# - HPC Service (Gigabit Ethernet) C# - ESP (Gigabit Ethernet) C# - Matlab (local machine) Communication ~ 20s ~ 2s ~ 25s startup Initial calls ~ 10s ~ 4s (per call) (1 st call only) (1 st -5 th / calls) Subsequent calls ~1.1ms < 5ms 20ms Note: s = seconds, ms = milliseconds Table 2. Update rates using tested configuration Roundtrip ESP C# - Matlab C# - ESP ESP C# - Matlab C# - HPC C# - Matlab C# - ESP ESP C# - HPC C# - ESP Update rate (s) 40Hz 20Hz > 100Hz 2008 Paper No. nnnn Page 6 of 8

7 DISCUSSION The case study presented here demonstrates how a service-oriented architecture can be used to provide a two-way coupling mechanism between a real-time flight simulator and a CFD solver running on a high performance computer. This proof-of-concept provides a generalized framework that opens up a variety of applications. Traditionally vehicle simulation has been limited by image generation and network bandwidth restrictions. As high performance computing has reduced in cost and network performance has improved, the possibility of using HPC to provide highlevel physics capability to real-time simulation is becoming realizable. While this is extremely challenging, the availability of a generic architecture that can be implemented as technology continues to improve to meet the requirements of simulation end-users, will allow developers to focus on services that can deliver the required fidelity. Use of offline, or pre-computed results, is the current state-of-the-art. While the proofof-concept developed here currently has performance limitations, the approach has several advantages in the medium- to long-term. Performance limitations of the SOA architecture that uses HPC to perform real-time computations are based around CPU, memory and network capabilities. The consumer and high performance computing markets are driving these components to keep improving at a rapid pace. Disk-based solutions, however, suffer from fundamental limitations in improvements in performance that will not be as scalable. Performance limits are different, and arguably more scalable in the long-term for real-time computational approaches. The architecture proposed here can also be easily extended to include disruptive technologies, such as generalpurpose graphics processing units (GPGPUs) that offer an order of magnitude improvement in computational speed over general-purpose processors. demonstrate that even with this layer, real-time update rates are possible. This is particularly relevant for research and development projects in which a rapid prototyping environment such as Matlab is desirable. While this paper describes an HPC proof-of-concept demonstrator for CFD, we believe that its extension to other areas, such as engine modeling, avionics, stealth, and artificial intelligence, is easily possible. CONCLUSIONS In this paper we have demonstrated a service-oriented architecture for the two-way coupling of a real-time flight simulator with an HPC-driven CFD solver. Results for the end-to-end message roundtrip time are given that demonstrate the ability of this architecture to be used for practical research and training applications. The generic SOA framework described here can be extended to include any high-fidelity simulation components that are beyond the scope of a single machine. This opens up the possibility of extending vehicle simulation fidelity that is only limited by the achievable update rate. The additional value of this framework is that it is flexible and extensible, with developers able to add functionality in a systematic way using a service-based approach. ACKNOWLEDGEMENTS The authors would like to thank Microsoft for their ongoing support of this work. The use of a service-based approach also allows other features to be easily incorporated. For example, the new High-Level Architecture (HLA) update, HLA Evolved, includes extensions to allow HLA content and processes to be integrated into SOAs (Möller et al, 2007). In order to improve update rates, using an in-process flight model will remove the Matlab layer and hence provide significant performance increases. Here we 2008 Paper No. nnnn Page 7 of 8

8 REFERENCES Aces Studio, Microsoft ESP Software Development Kit, Published by Microsoft Corporation, Allan, M.R., Badcock, K.J. and Richards, B.E. (2005) CFD based simulation of Longitudinal Flight Mechanics with Control. proceedings of Aerospace Sciences Meeting. AIAA Archer, P.J., Thomas, T.G. and Coleman, G.N. (2008) Direct numerical simulation of vortex ring evolution from the laminar to the early transition regime. Journal of Fluid Mechanics, 598, (doi: /s ) Hodge, S. and Forrest, J, (2008), Fidelity Standards for Maritime Rotorcraft Simulation. In Proc. Royal Aeronautical Society June 2008 Maritime Operations of Rotorcraft conference, London, England. Horn, J. F., Bridges, D. O., Wachspress, D.A., Rani, S.L., (2006), Implementation of a free-vortex wake model in real-time simulation of rotorcraft, Journal of Aerospace Computing, Information and Communication, vol. 3., pp Spence, G.T. Le Moigne, A., Allerton, D.J., and Qin, N., (2007), Wake vortex model for real-time flight simulation based on Large Eddy Simulation,, AIAA Journal of Aircraft, Vol. 44, No. 2, pp Keller, J.D., Whitehouse, G.R, Boschitsch, A.H., Nadal, J., Jeffords, J., and Quire, M. (2007), Computational fluid dynamics for flight simulator ship airwake modeling, The Interservice/Industry Training, Simulation & Education Conference (I/ITSEC). Lee, D., Horn, J. F., Sezer-Uzol, N. and Long, L. N., "Simulation of Pilot Control Activity during Helicopter Shipboard Operation," AIAA Paper , AIAA Atmospheric Flight Mechanics Conference and Exhibit, Austin, Texas, August 11-14, McKillip, R. M. Wachspress, D. A. Keller, J. D. Whitehouse, G. R. Quackenbush, T. R. Boschitsch, A. H. (2004), Distributed Multi-Vehicle Simulation Including High-Order Airwake Representation, Annual Forum Proceedings- American Helicopter Society, Vol 60 (1), pp Modi, A., Sezer-Uzol, N., Long, L.N., and Plassmann, P.E., Scalable Computational Steering System for Visualization of Large-Scale Fluid Dynamics Simulations, Journal of Aircraft, Vol. 42, No. 4, July- August, Möller, B., Dahlin, C.,and Karlsson, M, An Overview of the HLA Evolved Modular FOMs, Proceedings of 2007 Spring Simulation Interoperability Workshop, 07S-SIW-108, Simulation Interoperability Standards Organization, March Sezer-Uzol, N., Sharma, A., and Long, L. N. (2005) Computational Fluid Dynamics Simulations of Ship Airwakes, Vol. 219, Part G, Journal of Aerospace Engineering. Shi, J., Thomas, T.G. and Williams, J.J.R. (2001) Coarse resolution large-eddy simulation of turbulent channel flows. International Journal of Numerical Methods for Heat and Fluid Flow, 11, (1), (doi: / ). Shi, J., Thomas, T.G. and Williams, J.J.R. (2001) Coarse resolution large-eddy simulation of turbulent channel flows. International Journal of Numerical Methods for Heat and Fluid Flow, 11, (1), (doi: / ) Takeda, K., Allsopp, N. K., Hardwick, J. C., Macey, P. C., Nicole, D. A., Cox, S. J., and Lancaster, D. J An Assessment of MPI Environments for Windows NT. J. Supercomput. 19, 3 (Jul. 2001), DOI= Takeda, K., and Kenny, J. (2008), Service-oriented architectures for simulation: opportunities and challenges, In Proc. Royal Aeronautical Society Spring 2008 flight simulation conference, London, England. Yao, Y.F., Thomas, T.G., Sandham, N.D. and Williams, J.J.R. (2001) Direct numerical simulation of turbulent flow over a rectangular trailing edge. Theoretical and Computational Fluid Dynamics, 14, (5), (doi: /s ) Zan, S. (2005), On Aerodynamic Modelling and Simulation of the Dynamic Interface, Proceedings of the Institution of Mechanical Engineers, Part G: Journal of Aerospace Engineering, Volume 219, Number 5 / 2005, pp Zyskowski, (2008), Building 6-Degree of Freedom Physics Models with Microsoft ESP. In Proc. Royal Aeronautical Society Spring 2008 flight simulation conference, London, England Paper No. nnnn Page 8 of 8

LANDING a helicopter on to the flight deck of a ship can be a formidable task for even the most

LANDING a helicopter on to the flight deck of a ship can be a formidable task for even the most Aerodynamic Evaluation of Ship Geometries using CFD and Piloted Helicopter Flight Simulation James S. Forrest, Ieuan Owen and Christopher H. Kääriä Department of Engineering University of Liverpool, Brownlow

More information

NASA Fundamental Aeronautics Program Jay Dryer Director, Fundamental Aeronautics Program Aeronautics Research Mission Directorate

NASA Fundamental Aeronautics Program Jay Dryer Director, Fundamental Aeronautics Program Aeronautics Research Mission Directorate National Aeronautics and Space Administration NASA Fundamental Aeronautics Program Jay Dryer Director, Fundamental Aeronautics Program Aeronautics Research Mission Directorate www.nasa.gov July 2012 NASA

More information

HELISIM SIMULATION CREATE. SET. HOVER

HELISIM SIMULATION CREATE. SET. HOVER SIMULATION HELISIM CREATE. SET. HOVER HeliSIM is the industry-leading high-end COTS for creating high-fidelity, high-quality flight dynamics simulations for virtually any rotary-wing aircraft in the world

More information

Keywords: Aircraft Systems Integration, Real-Time Simulation, Hardware-In-The-Loop Testing

Keywords: Aircraft Systems Integration, Real-Time Simulation, Hardware-In-The-Loop Testing 25 TH INTERNATIONAL CONGRESS OF THE AERONAUTICAL SCIENCES REAL-TIME HARDWARE-IN-THE-LOOP SIMULATION OF FLY-BY-WIRE FLIGHT CONTROL SYSTEMS Eugenio Denti*, Gianpietro Di Rito*, Roberto Galatolo* * University

More information

Joint Collaborative Project. between. China Academy of Aerospace Aerodynamics (China) and University of Southampton (UK)

Joint Collaborative Project. between. China Academy of Aerospace Aerodynamics (China) and University of Southampton (UK) Joint Collaborative Project between China Academy of Aerospace Aerodynamics (China) and University of Southampton (UK) ~ PhD Project on Performance Adaptive Aeroelastic Wing ~ 1. Abstract The reason for

More information

Multi-Axis Pilot Modeling

Multi-Axis Pilot Modeling Multi-Axis Pilot Modeling Models and Methods for Wake Vortex Encounter Simulations Technical University of Berlin Berlin, Germany June 1-2, 2010 Ronald A. Hess Dept. of Mechanical and Aerospace Engineering

More information

Defence and security engineering

Defence and security engineering Defence and security engineering 2018-2019 Symposia Symposia at Shrivenham provides a forum to Government agencies, military and civilian, industry and research establishments for the exploration and exchange

More information

TAU Experiences with Detached-Eddy Simulations

TAU Experiences with Detached-Eddy Simulations TAU Experiences with Detached-Eddy Simulations Herbert Rieger & Stefan Leicher EADS Deutschland GmbH Military Aircraft Flight Physics Department Ottobrunn, Germany Outline The Typical Design Problem of

More information

Application of Artificial Neural Network for the Prediction of Aerodynamic Coefficients of a Plunging Airfoil

Application of Artificial Neural Network for the Prediction of Aerodynamic Coefficients of a Plunging Airfoil International Journal of Science and Engineering Investigations vol 1, issue 1, February 212 Application of Artificial Neural Network for the Prediction of Aerodynamic Coefficients of a Plunging Airfoil

More information

Microsoft ESP Developer profile white paper

Microsoft ESP Developer profile white paper Microsoft ESP Developer profile white paper Reality XP Simulation www.reality-xp.com Background Microsoft ESP is a visual simulation platform that brings immersive games-based technology to training and

More information

CRAFT HELI CRAFT CUSTOMIZABLE SIMULATOR. Customizable, high-fidelity helicopter simulator designed to meet today s goals and tomorrow s needs.

CRAFT HELI CRAFT CUSTOMIZABLE SIMULATOR. Customizable, high-fidelity helicopter simulator designed to meet today s goals and tomorrow s needs. CRAFT HELI CRAFT CUSTOMIZABLE SIMULATOR Customizable, high-fidelity helicopter simulator designed to meet today s goals and tomorrow s needs. Leveraging 35 years of market experience, HELI CRAFT is our

More information

This is the author s final accepted version.

This is the author s final accepted version. Dehaeze, F., Allen, C. B. and Barakos, G. N. (2017) The Collaborative Development of New CFD Methods Adapted for Tilt Rotor Aircraft in the HiPerTilt Project. 35th AIAA Applied Aerodynamics Conference,

More information

An Integrated Modeling and Simulation Methodology for Intelligent Systems Design and Testing

An Integrated Modeling and Simulation Methodology for Intelligent Systems Design and Testing An Integrated ing and Simulation Methodology for Intelligent Systems Design and Testing Xiaolin Hu and Bernard P. Zeigler Arizona Center for Integrative ing and Simulation The University of Arizona Tucson,

More information

Integrating Spaceborne Sensing with Airborne Maritime Surveillance Patrols

Integrating Spaceborne Sensing with Airborne Maritime Surveillance Patrols 22nd International Congress on Modelling and Simulation, Hobart, Tasmania, Australia, 3 to 8 December 2017 mssanz.org.au/modsim2017 Integrating Spaceborne Sensing with Airborne Maritime Surveillance Patrols

More information

Web of Things for Connected Vehicles. Soumya Kanti Datta Communication Systems Department

Web of Things for Connected Vehicles. Soumya Kanti Datta Communication Systems Department Web of Things for Connected Vehicles Soumya Kanti Datta Communication Systems Department Email: Soumya-Kanti.Datta@eurecom.fr Roadmap Introduction Web of Things (WoT) Architecture & Components Prototyping

More information

Sawako Kaijima, Roland Bouffanais, Karen Willcox and Suresh Naidu

Sawako Kaijima, Roland Bouffanais, Karen Willcox and Suresh Naidu Article 18 Sawako Kaijima, Roland Bouffanais, Karen Willcox and Suresh Naidu There are many compelling possibilities for computational fluid dynamics (CFD) in architecture, as demonstrated by its successful

More information

Sven Schmitz. Assistant Professor

Sven Schmitz. Assistant Professor Assistant Professor Department of Aerospace Engineering The Pennsylvania State University, University Park, PA 16802 phone: 814-863-0778 email: sus52@engr.psu.edu EDUCATION Ph.D., Mechanical and Aeronautical

More information

Dr Antony Robotham - Executive Director EWG-DSS Liverpool April 2012

Dr Antony Robotham - Executive Director EWG-DSS Liverpool April 2012 Dr Antony Robotham - Executive Director EWG-DSS Liverpool 2012 12-13 April 2012 THE VALUE OF SIMULATION AND IMMERSIVE VIRTUAL REALITY ENVIRONMENTS TO DESIGN DECISION MAKING IN NEW PRODUCT DEVELOPMENT DR

More information

Stability and Control Test and Evaluation Process Improvements through Judicious Use of HPC Simulations (3348)

Stability and Control Test and Evaluation Process Improvements through Judicious Use of HPC Simulations (3348) Stability and Control Test and Evaluation Process Improvements through Judicious Use of HPC Simulations (3348) James D Clifton USAF SEEK EAGLE Office jamesclifton@eglinafmil C Justin Ratcliff USAF SEEK

More information

BAe Systems, Airbus, Bombardier Shorts Bros, National Physical Laboratory. 325,000 from government sources and matched by industry

BAe Systems, Airbus, Bombardier Shorts Bros, National Physical Laboratory. 325,000 from government sources and matched by industry OMC Project Description Jigless Manufacturing Jigless Manufacturing is aimed at reducing or eliminating the need for product specific jigs during the manufacturing process, by developing new assembly concepts,

More information

DEVELOPMENTS IN THE APPLICATION OF LS-DYNA TO FLUID STRUCTURE INTERACTION (FSI) PROBLEMS IN RECOVERY SYSTEM DESIGN AND ANALYSIS

DEVELOPMENTS IN THE APPLICATION OF LS-DYNA TO FLUID STRUCTURE INTERACTION (FSI) PROBLEMS IN RECOVERY SYSTEM DESIGN AND ANALYSIS 7 th International LS-DYNA Users Conference Fluid/Structure DEVELOPMENTS IN THE APPLICATION OF LS-DYNA TO FLUID STRUCTURE INTERACTION (FSI) PROBLEMS IN RECOVERY SYSTEM DESIGN AND ANALYSIS Anthony P. Taylor

More information

Flight Simulation for Tomorrow's Aviation

Flight Simulation for Tomorrow's Aviation Flight Simulation for Tomorrow's Aviation Dr.Umut Durak DLR Institute of Flight Systems ASIM STS/GMMS 2016 Workshop Lippstadt, 10.3. - 11.3.2016 Flying is safer then ever! Ref: Boeing, Statistical Summary

More information

vstasker 6 A COMPLETE MULTI-PURPOSE SOFTWARE TO SPEED UP YOUR SIMULATION PROJECT, FROM DESIGN TIME TO DEPLOYMENT REAL-TIME SIMULATION TOOLKIT FEATURES

vstasker 6 A COMPLETE MULTI-PURPOSE SOFTWARE TO SPEED UP YOUR SIMULATION PROJECT, FROM DESIGN TIME TO DEPLOYMENT REAL-TIME SIMULATION TOOLKIT FEATURES REAL-TIME SIMULATION TOOLKIT A COMPLETE MULTI-PURPOSE SOFTWARE TO SPEED UP YOUR SIMULATION PROJECT, FROM DESIGN TIME TO DEPLOYMENT Diagram based Draw your logic using sequential function charts and let

More information

Technology Insertion: A Way Ahead

Technology Insertion: A Way Ahead Obsolescence Challenges, Part 2 Technology Insertion: A Way Ahead Brent Hobson In the Summer 2008 issue of the Canadian Naval Review (Volume 4, No. 2), my article, Obsolescence Challenges and the Canadian

More information

A SERVICE-ORIENTED SYSTEM ARCHITECTURE FOR THE HUMAN CENTERED DESIGN OF INTELLIGENT TRANSPORTATION SYSTEMS

A SERVICE-ORIENTED SYSTEM ARCHITECTURE FOR THE HUMAN CENTERED DESIGN OF INTELLIGENT TRANSPORTATION SYSTEMS Tools and methodologies for ITS design and drivers awareness A SERVICE-ORIENTED SYSTEM ARCHITECTURE FOR THE HUMAN CENTERED DESIGN OF INTELLIGENT TRANSPORTATION SYSTEMS Jan Gačnik, Oliver Häger, Marco Hannibal

More information

Enabling Scientific Breakthroughs at the Petascale

Enabling Scientific Breakthroughs at the Petascale Enabling Scientific Breakthroughs at the Petascale Contents Breakthroughs in Science...................................... 2 Breakthroughs in Storage...................................... 3 The Impact

More information

Enhancing industrial processes in the industry sector by the means of service design

Enhancing industrial processes in the industry sector by the means of service design ServDes2018 - Service Design Proof of Concept Politecnico di Milano 18th-19th-20th, June 2018 Enhancing industrial processes in the industry sector by the means of service design giuseppe@attoma.eu, peter.livaudais@attoma.eu

More information

CRAFT UAV CRAFT CUSTOMIZABLE SIMULATOR

CRAFT UAV CRAFT CUSTOMIZABLE SIMULATOR CRAFT UAV CRAFT CUSTOMIZABLE SIMULATOR Customizable, modular UAV simulator designed to adapt, evolve, and deliver. The UAV CRAFT customizable Unmanned Aircraft Vehicle (UAV) simulator s design is based

More information

2.1 Introduction. Purpose. Scope

2.1 Introduction. Purpose. Scope SOFTWARE REQUIREMENT SPECIFICATION 2.1 Introduction Chennemane is a traditional folk game of Dakshina Kannada. In this project we are going to implement the game and preserve the traditionalism of our

More information

Stanford Center for AI Safety

Stanford Center for AI Safety Stanford Center for AI Safety Clark Barrett, David L. Dill, Mykel J. Kochenderfer, Dorsa Sadigh 1 Introduction Software-based systems play important roles in many areas of modern life, including manufacturing,

More information

PREDICTION OF SUPERCOOLED DROPLET IMPINGEMENT ON HELICOPTER ROTOR BLADES

PREDICTION OF SUPERCOOLED DROPLET IMPINGEMENT ON HELICOPTER ROTOR BLADES 26 TH INTERNATIONAL CONGRESS OF THE AERONAUTICAL SCIENCES PREDICTION OF SUPERCOOLED DROPLET IMPINGEMENT ON HELICOPTER ROTOR BLADES Krzysztof Szilder, Hongyi Xu Institute for Aerospace Research, National

More information

Hardware in the Loop Simulation for Unmanned Aerial Vehicles

Hardware in the Loop Simulation for Unmanned Aerial Vehicles NATIONAL 1 AEROSPACE LABORATORIES BANGALORE-560 017 INDIA CSIR-NAL Hardware in the Loop Simulation for Unmanned Aerial Vehicles Shikha Jain Kamali C Scientist, Flight Mechanics and Control Division National

More information

An investigation of the fluid-structure interaction in an oscillating-wing micro-hydropower generator

An investigation of the fluid-structure interaction in an oscillating-wing micro-hydropower generator An investigation of the fluid-structure interaction in an oscillating-wing micro-hydropower generator K.D. Jones, K. Lindsey & M.F. Platzer Department of Aeronautics & Astronautics, Naval Postgraduate

More information

AN0503 Using swarm bee LE for Collision Avoidance Systems (CAS)

AN0503 Using swarm bee LE for Collision Avoidance Systems (CAS) AN0503 Using swarm bee LE for Collision Avoidance Systems (CAS) 1.3 NA-14-0267-0019-1.3 Document Information Document Title: Document Version: 1.3 Current Date: 2016-05-18 Print Date: 2016-05-18 Document

More information

A Real-Time Platform for Teaching Power System Control Design

A Real-Time Platform for Teaching Power System Control Design A Real-Time Platform for Teaching Power System Control Design G. Jackson, U.D. Annakkage, A. M. Gole, D. Lowe, and M.P. McShane Abstract This paper describes the development of a real-time digital simulation

More information

Flow Visualization. Flow Visualization. Part 1 (out of 3) Introduction, Overview. Overview: Flow Visualization, Part 1. Introduction, overview

Flow Visualization. Flow Visualization. Part 1 (out of 3) Introduction, Overview. Overview: Flow Visualization, Part 1. Introduction, overview Overview:, Part 1 Part 1 (out of 3) Introduction, overview Flow data Simulation vs. measurement vs. modelling 2D vs. surfaces vs. 3D Steady vs time-dependent d t flow Direct vs. indirect flow visualization

More information

Validation of Frequency- and Time-domain Fidelity of an Ultra-low Latency Hardware-in-the-Loop (HIL) Emulator

Validation of Frequency- and Time-domain Fidelity of an Ultra-low Latency Hardware-in-the-Loop (HIL) Emulator Validation of Frequency- and Time-domain Fidelity of an Ultra-low Latency Hardware-in-the-Loop (HIL) Emulator Elaina Chai, Ivan Celanovic Institute for Soldier Nanotechnologies Massachusetts Institute

More information

University of Huddersfield Repository

University of Huddersfield Repository University of Huddersfield Repository Gibson, Ian and England, Richard Fragmentary Collaboration in a Virtual World: The Educational Possibilities of Multi-user, Three- Dimensional Worlds Original Citation

More information

High Performance Computing Systems and Scalable Networks for. Information Technology. Joint White Paper from the

High Performance Computing Systems and Scalable Networks for. Information Technology. Joint White Paper from the High Performance Computing Systems and Scalable Networks for Information Technology Joint White Paper from the Department of Computer Science and the Department of Electrical and Computer Engineering With

More information

Classical Control Based Autopilot Design Using PC/104

Classical Control Based Autopilot Design Using PC/104 Classical Control Based Autopilot Design Using PC/104 Mohammed A. Elsadig, Alneelain University, Dr. Mohammed A. Hussien, Alneelain University. Abstract Many recent papers have been written in unmanned

More information

DESIGN AND CAPABILITIES OF AN ENHANCED NAVAL MINE WARFARE SIMULATION FRAMEWORK. Timothy E. Floore George H. Gilman

DESIGN AND CAPABILITIES OF AN ENHANCED NAVAL MINE WARFARE SIMULATION FRAMEWORK. Timothy E. Floore George H. Gilman Proceedings of the 2011 Winter Simulation Conference S. Jain, R.R. Creasey, J. Himmelspach, K.P. White, and M. Fu, eds. DESIGN AND CAPABILITIES OF AN ENHANCED NAVAL MINE WARFARE SIMULATION FRAMEWORK Timothy

More information

Distributed Virtual Environments!

Distributed Virtual Environments! Distributed Virtual Environments! Introduction! Richard M. Fujimoto! Professor!! Computational Science and Engineering Division! College of Computing! Georgia Institute of Technology! Atlanta, GA 30332-0765,

More information

INFLUENCE OF MEMBRANE AMPLITUDE AND FORCING FREQUENCY ON SYNTHETIC JET VELOCITY

INFLUENCE OF MEMBRANE AMPLITUDE AND FORCING FREQUENCY ON SYNTHETIC JET VELOCITY TASKQUARTERLYvol.19,No2,2015,pp.111 120 INFLUENCE OF MEMBRANE AMPLITUDE AND FORCING FREQUENCY ON SYNTHETIC JET VELOCITY MARCIN KUROWSKI AND PIOTR DOERFFER Institute of Fluid-Flow Machinery, Polish Academy

More information

Development of a Dual-Extraction Industrial Turbine Simulator Using General Purpose Simulation Tools

Development of a Dual-Extraction Industrial Turbine Simulator Using General Purpose Simulation Tools Development of a Dual-Extraction Industrial Turbine Simulator Using General Purpose Simulation Tools Philip S. Bartells Christine K Kovach Director, Application Engineering Sr. Engineer, Application Engineering

More information

TECHNOLOGY COMMONALITY FOR SIMULATION TRAINING OF AIR COMBAT OFFICERS AND NAVAL HELICOPTER CONTROL OFFICERS

TECHNOLOGY COMMONALITY FOR SIMULATION TRAINING OF AIR COMBAT OFFICERS AND NAVAL HELICOPTER CONTROL OFFICERS TECHNOLOGY COMMONALITY FOR SIMULATION TRAINING OF AIR COMBAT OFFICERS AND NAVAL HELICOPTER CONTROL OFFICERS Peter Freed Managing Director, Cirrus Real Time Processing Systems Pty Ltd ( Cirrus ). Email:

More information

Faculty Profile. Mechanical Engineering. Thermal Enginnering. Teaching: 17 years

Faculty Profile. Mechanical Engineering. Thermal Enginnering. Teaching: 17 years Faculty Profile Name of Faculty Department Qualification Designation Area of specialization Dr. B.S. ANIL KUMAR Mechanical Engineering M.Tech., Ph.D. Professor Thermal Enginnering Date of Joining BNMIT

More information

Evaluation of CPU Frequency Transition Latency

Evaluation of CPU Frequency Transition Latency Noname manuscript No. (will be inserted by the editor) Evaluation of CPU Frequency Transition Latency Abdelhafid Mazouz Alexandre Laurent Benoît Pradelle William Jalby Abstract Dynamic Voltage and Frequency

More information

UAV CRAFT CRAFT CUSTOMIZABLE SIMULATOR

UAV CRAFT CRAFT CUSTOMIZABLE SIMULATOR CRAFT UAV CRAFT CUSTOMIZABLE SIMULATOR Customizable, modular UAV simulator designed to adapt, evolve, and deliver. The UAV CRAFT customizable Unmanned Aircraft Vehicle (UAV) simulator s design is based

More information

Design of All Digital Flight Program Training Desktop Application System

Design of All Digital Flight Program Training Desktop Application System MATEC Web of Conferences 114, 0201 (201) DOI: 10.1051/ matecconf/2011140201 2MAE 201 Design of All Digital Flight Program Training Desktop Application System Yu Li 1,a, Gang An 2,b, Xin Li 3,c 1 System

More information

CFD Study of Cavity Flows. D. Lawrie, P. Nayyar K. Badcock, G. Barakos and B. Richards

CFD Study of Cavity Flows. D. Lawrie, P. Nayyar K. Badcock, G. Barakos and B. Richards CFD Study of Cavity Flows D. Lawrie,. Nayyar K. Badcock, G. Barakos and B. Richards CFD Laboratory Department Of Aerospace Engineering University of Glasgow Glasgow G12 8QQ UK www.aero.gla.ac.uk/research/cfd

More information

FOREBODY VORTEX CONTROL ON HIGH PERFORMANCE AIRCRAFT USING PWM- CONTROLLED PLASMA ACTUATORS

FOREBODY VORTEX CONTROL ON HIGH PERFORMANCE AIRCRAFT USING PWM- CONTROLLED PLASMA ACTUATORS 26 TH INTERNATIONAL CONGRESS OF THE AERONAUTICAL SCIENCES FOREBODY VORTEX CONTROL ON HIGH PERFORMANCE AIRCRAFT USING PWM- CONTROLLED PLASMA ACTUATORS Takashi Matsuno*, Hiromitsu Kawazoe*, Robert C. Nelson**,

More information

Part II. Numerical Simulation

Part II. Numerical Simulation Part II Numerical Simulation Overview Computer simulation is the rapidly evolving third way in science that complements classical experiments and theoretical models in the study of natural, man-made, and

More information

ASD Considerations on a Scoping Paper for the EU Preparatory Action on Defence Research 29 July 2016

ASD Considerations on a Scoping Paper for the EU Preparatory Action on Defence Research 29 July 2016 Contact: Isabelle Maelcamp ASD Considerations on a Scoping Paper for the EU Preparatory Action on Defence Research 29 July 2016 Introduction On 30 th June 2016, representatives of the European Commission

More information

The Disappearing Computer. Information Document, IST Call for proposals, February 2000.

The Disappearing Computer. Information Document, IST Call for proposals, February 2000. The Disappearing Computer Information Document, IST Call for proposals, February 2000. Mission Statement To see how information technology can be diffused into everyday objects and settings, and to see

More information

UNIT-III LIFE-CYCLE PHASES

UNIT-III LIFE-CYCLE PHASES INTRODUCTION: UNIT-III LIFE-CYCLE PHASES - If there is a well defined separation between research and development activities and production activities then the software is said to be in successful development

More information

MAPLESIM: Tailored solutions for networking legacy flight simulators an HLA based approach

MAPLESIM: Tailored solutions for networking legacy flight simulators an HLA based approach MAPLESIM: Tailored solutions for networking legacy flight simulators an HLA based approach A.J.J. Lemmers and P.J. Kuiper Nationaal Lucht- en Ruimtevaartlaboratorium National Aerospace Laboratory NLR MAPLESIM:

More information

PASSENGER. Story of a convergent pipeline. Thomas Felix TG - Passenger Ubisoft Montréal. Pierre Blaizeau TWINE Ubisoft Montréal

PASSENGER. Story of a convergent pipeline. Thomas Felix TG - Passenger Ubisoft Montréal. Pierre Blaizeau TWINE Ubisoft Montréal PASSENGER Story of a convergent pipeline Thomas Felix TG - Passenger Ubisoft Montréal Pierre Blaizeau TWINE Ubisoft Montréal Technology Group PASSENGER How to expand your game universe? How to bridge game

More information

An Approach to Integrating Modeling & Simulation Interoperability

An Approach to Integrating Modeling & Simulation Interoperability An Approach to Integrating Modeling & Simulation Interoperability Brian Spaulding Jorge Morales MÄK Technologies 68 Moulton Street Cambridge, MA 02138 bspaulding@mak.com, jmorales@mak.com ABSTRACT: Distributed

More information

The Development Of Selection Criteria For Game Engines In The Development Of Simulation Training Systems

The Development Of Selection Criteria For Game Engines In The Development Of Simulation Training Systems The Development Of Selection Criteria For Game Engines In The Development Of Simulation Training Systems Gary Eves, Practice Lead, Simulation and Training Systems; Pete Meehan, Senior Systems Engineer

More information

Data Quality Monitoring of the CMS Pixel Detector

Data Quality Monitoring of the CMS Pixel Detector Data Quality Monitoring of the CMS Pixel Detector 1 * Purdue University Department of Physics, 525 Northwestern Ave, West Lafayette, IN 47906 USA E-mail: petra.merkel@cern.ch We present the CMS Pixel Data

More information

EE382N-20 Computer Architecture Parallelism and Locality Lecture 1

EE382N-20 Computer Architecture Parallelism and Locality Lecture 1 EE382-20 Computer Architecture Parallelism and Locality Lecture 1 Mattan Erez The University of Texas at Austin EE382-20: Lecture 1 (c) Mattan Erez What is this class about? Computer architecture Principles

More information

Steering a Driving Simulator Using the Queueing Network-Model Human Processor (QN-MHP)

Steering a Driving Simulator Using the Queueing Network-Model Human Processor (QN-MHP) University of Iowa Iowa Research Online Driving Assessment Conference 2003 Driving Assessment Conference Jul 22nd, 12:00 AM Steering a Driving Simulator Using the Queueing Network-Model Human Processor

More information

Solving Large Multi-Scale Problems in CST STUDIO SUITE

Solving Large Multi-Scale Problems in CST STUDIO SUITE Solving Large Multi-Scale Problems in CST STUDIO SUITE An Aircraft Application M. Kunze, Z. Reznicek, I. Munteanu, P. Tobola, F. Wolfheimer Motivation I New A/C concepts (fly-by-wire, all electric aircraft,

More information

Document downloaded from:

Document downloaded from: Document downloaded from: http://hdl.handle.net/1251/64738 This paper must be cited as: Reaño González, C.; Pérez López, F.; Silla Jiménez, F. (215). On the design of a demo for exhibiting rcuda. 15th

More information

Establishment of a Multiplexed Thredds Installation and a Ramadda Collaboration Environment for Community Access to Climate Change Data

Establishment of a Multiplexed Thredds Installation and a Ramadda Collaboration Environment for Community Access to Climate Change Data Establishment of a Multiplexed Thredds Installation and a Ramadda Collaboration Environment for Community Access to Climate Change Data Prof. Giovanni Aloisio Professor of Information Processing Systems

More information

Systems for Green Operations ITD

Systems for Green Operations ITD Annual Implementation Plan 2009 ITD Systems for Green Operations Annex 1E Proprietary information: SGO ITD 1/15 RECORD OF REVISIONS Revisions Date Description Issue 0 29/09/2008 Creation of the document

More information

Virtual Testing of Autonomous Vehicles

Virtual Testing of Autonomous Vehicles Virtual Testing of Autonomous Vehicles Mike Dempsey Claytex Services Limited Software, Consultancy, Training Based in Leamington Spa, UK Office in Cape Town, South Africa Experts in Systems Engineering,

More information

Using Reactive Deliberation for Real-Time Control of Soccer-Playing Robots

Using Reactive Deliberation for Real-Time Control of Soccer-Playing Robots Using Reactive Deliberation for Real-Time Control of Soccer-Playing Robots Yu Zhang and Alan K. Mackworth Department of Computer Science, University of British Columbia, Vancouver B.C. V6T 1Z4, Canada,

More information

High Performance Computing

High Performance Computing High Performance Computing and the Smart Grid Roger L. King Mississippi State University rking@cavs.msstate.edu 11 th i PCGRID 26 28 March 2014 The Need for High Performance Computing High performance

More information

Fast Placement Optimization of Power Supply Pads

Fast Placement Optimization of Power Supply Pads Fast Placement Optimization of Power Supply Pads Yu Zhong Martin D. F. Wong Dept. of Electrical and Computer Engineering Dept. of Electrical and Computer Engineering Univ. of Illinois at Urbana-Champaign

More information

DEVELOPMENT OF A MICROSCOPIC TRAFFIC SIMULATION MODEL FOR INTERACTIVE TRAFFIC ENVIRONMENT

DEVELOPMENT OF A MICROSCOPIC TRAFFIC SIMULATION MODEL FOR INTERACTIVE TRAFFIC ENVIRONMENT DEVELOPMENT OF A MICROSCOPIC TRAFFIC SIMULATION MODEL FOR INTERACTIVE TRAFFIC ENVIRONMENT Tomoyoshi SHIRAISHI, Hisatomo HANABUSA, Masao KUWAHARA, Edward CHUNG, Shinji TANAKA, Hideki UENO, Yoshikazu OHBA,

More information

A New Control Method for the Power Interface in Power Hardware-in-the-Loop Simulation to Compensate for the Time Delay.

A New Control Method for the Power Interface in Power Hardware-in-the-Loop Simulation to Compensate for the Time Delay. A New Control Method for the Power Interface in Power Hardware-in-the-Loop Simulation to Compensate for the Time Delay. E. Guillo-Sansano efren.guillosansano@strath.ac.uk A.J. Roscoe andrew.j.roscoe@strath.ac.uk

More information

Engineered Resilient Systems NDIA Systems Engineering Conference October 29, 2014

Engineered Resilient Systems NDIA Systems Engineering Conference October 29, 2014 Engineered Resilient Systems NDIA Systems Engineering Conference October 29, 2014 Jeffery P. Holland, PhD, PE (SES) ERS Community of Interest (COI) Lead Director, US Army Engineer Research and Development

More information

University Perspective on Elements of a Research Support Program

University Perspective on Elements of a Research Support Program University Perspective on Elements of a Research Support Program Helen L. Reed, Texas A&M University Karen Feigh, Georgia Tech Ella Atkins, University of Michigan Focus Session on ARMD and Supporting University

More information

COVENANT UNIVERSITY NIGERIA TUTORIAL KIT OMEGA SEMESTER PROGRAMME: MECHANICAL ENGINEERING

COVENANT UNIVERSITY NIGERIA TUTORIAL KIT OMEGA SEMESTER PROGRAMME: MECHANICAL ENGINEERING COVENANT UNIVERSITY NIGERIA TUTORIAL KIT OMEGA SEMESTER PROGRAMME: MECHANICAL ENGINEERING COURSE: MCE 527 DISCLAIMER The contents of this document are intended for practice and leaning purposes at the

More information

SM 4117 Virtual Reality Assignment 2 By Li Yiu Chong ( )

SM 4117 Virtual Reality Assignment 2 By Li Yiu Chong ( ) SM 4117 Virtual Reality Assignment 2 By Li Yiu Chong (50262340) In this essay I would analyze the environment of driving game under a network. The analysis will be base on 3D driving game of decentralized

More information

EXPERIMENTAL STUDY OF THE MORPHING FLAP AS A LOW NOISE HIGH LIFT DEVICE FOR AIRCRAFT WING

EXPERIMENTAL STUDY OF THE MORPHING FLAP AS A LOW NOISE HIGH LIFT DEVICE FOR AIRCRAFT WING 28 TH INTERNATIONAL CONGRESS OF THE AERONAUTICAL SCIENCES EXPERIMENTAL STUDY OF THE MORPHING FLAP AS A LOW NOISE HIGH LIFT DEVICE FOR AIRCRAFT WING Yasuhiro TANI*, Yoshiyuki MATSUDA*, Akira DOI*, Yuya

More information

ACTIVE CONTROL USING MOVING BOTTOM WALL APPLIED TO OPEN CAVITY SELF-SUSTAINED OSCILLATION WITH MODE SWITCHING

ACTIVE CONTROL USING MOVING BOTTOM WALL APPLIED TO OPEN CAVITY SELF-SUSTAINED OSCILLATION WITH MODE SWITCHING 6th European Conference on Computational Mechanics (ECCM 6) 7th European Conference on Computational Fluid Dynamics (ECFD 7) 11 15 June 2018, Glasgow, UK ACTIVE CONTROL USING MOVING BOTTOM WALL APPLIED

More information

Softing TDX ODX- and OTX-Based Diagnostic System Framework

Softing TDX ODX- and OTX-Based Diagnostic System Framework Softing TDX ODX- and OTX-Based Diagnostic System Framework DX (Open Diagnostic data exchange) and OTX (Open Test sequence exchange) standards are very well established description formats for diagnostics

More information

Wind load testing methodology for measuring drag coefficient of aerodynamically efficient base station antenna profiles

Wind load testing methodology for measuring drag coefficient of aerodynamically efficient base station antenna profiles load testing methodology for measuring drag coefficient of aerodynamically efficient base station antenna profiles Abstract On a cellular tower, the base station antennas account for a significant portion

More information

AERODYNAMIC DESIGN OF A HIGH-LIFT SYSTEM COMPATIBLE WITH A NATURAL LAMINAR FLOW WING WITHIN THE DESIREH PROJECT

AERODYNAMIC DESIGN OF A HIGH-LIFT SYSTEM COMPATIBLE WITH A NATURAL LAMINAR FLOW WING WITHIN THE DESIREH PROJECT AERODYNAMIC DESIGN OF A HIGH-LIFT SYSTEM COMPATIBLE WITH A NATURAL LAMINAR FLOW WING WITHIN THE DESIREH PROJECT Henning Strüber, *, Jochen Wild ** *Aerodynamic Design High Lift Devices, Airbus Operations

More information

MODELING COMPLEX SOCIO-TECHNICAL ENTERPRISES. William B. Rouse November 13, 2013

MODELING COMPLEX SOCIO-TECHNICAL ENTERPRISES. William B. Rouse November 13, 2013 MODELING COMPLEX SOCIO-TECHNICAL ENTERPRISES William B. Rouse November 13, 2013 Overview Complex Socio-Technical Systems Overall Methodology Thinking in Terms of Phenomena Abstraction, Aggregation & Representation

More information

Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers

Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers Chapter 4 Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers 4.1. Introduction Data acquisition and control boards, also known as DAC boards, are used in virtually

More information

A Multi-Disciplinary Rotorcraft Simulation Facility Composed of Commodity Components and Open Source Software. Abstract

A Multi-Disciplinary Rotorcraft Simulation Facility Composed of Commodity Components and Open Source Software. Abstract A Multi-Disciplinary Rotorcraft Simulation Facility Composed of Commodity Components and Open Source Software Joseph F. Horn Derek O. Bridges Charu Sharma Leonard V. Lopes Kenneth S. Brentner Assistant

More information

A i r c r a f t C o m p o n e n t s a n d F u n c t i o n s ( 1 1 A )

A i r c r a f t C o m p o n e n t s a n d F u n c t i o n s ( 1 1 A ) 8 5 4 5 A i r c r a f t C o m p o n e n t s a n d F u n c t i o n s ( 1 1 A ) 30S/30E/30M An Aviation and Aerospace Technologies Course 8 5 4 5 : A i r c r a f t C o m p o n e n t s a n d F u n c t i

More information

Real-time Systems in Tokamak Devices. A case study: the JET Tokamak May 25, 2010

Real-time Systems in Tokamak Devices. A case study: the JET Tokamak May 25, 2010 Real-time Systems in Tokamak Devices. A case study: the JET Tokamak May 25, 2010 May 25, 2010-17 th Real-Time Conference, Lisbon 1 D. Alves 2 T. Bellizio 1 R. Felton 3 A. C. Neto 2 F. Sartori 4 R. Vitelli

More information

HARMONICS ANALYSIS USING SEQUENTIAL-TIME SIMULATION FOR ADDRESSING SMART GRID CHALLENGES

HARMONICS ANALYSIS USING SEQUENTIAL-TIME SIMULATION FOR ADDRESSING SMART GRID CHALLENGES HARMONICS ANALYSIS USING SEQUENTIAL-TIME SIMULATION FOR ADDRESSING SMART GRID CHALLENGES Davis MONTENEGRO Roger DUGAN Gustavo RAMOS Universidad de los Andes Colombia EPRI U.S.A. Universidad de los Andes

More information

High Speed Data Transmission and Processing Systems for e-vlbi Observations

High Speed Data Transmission and Processing Systems for e-vlbi Observations High Speed Data Transmission and Processing Systems for e-vlbi Observations Yasuhiro Koyama, Tetsuro Kondo, and Junichi Nakajima Communications Research Laboratory, Kashima Space Research Center 893-1

More information

Development of an Experimental Rig for Doubly-Fed Induction Generator based Wind Turbine

Development of an Experimental Rig for Doubly-Fed Induction Generator based Wind Turbine Development of an Experimental Rig for Doubly-Fed Induction Generator based Wind Turbine T. Neumann, C. Feltes, I. Erlich University Duisburg-Essen Institute of Electrical Power Systems Bismarckstr. 81,

More information

Challenges in Transition

Challenges in Transition Challenges in Transition Keynote talk at International Workshop on Software Engineering Methods for Parallel and High Performance Applications (SEM4HPC 2016) 1 Kazuaki Ishizaki IBM Research Tokyo kiszk@acm.org

More information

MULTIPLE-INPUT MULTIPLE-OUTPUT (MIMO) The key to successful deployment in a dynamically varying non-line-of-sight environment

MULTIPLE-INPUT MULTIPLE-OUTPUT (MIMO) The key to successful deployment in a dynamically varying non-line-of-sight environment White Paper Wi4 Fixed: Point-to-Point Wireless Broadband Solutions MULTIPLE-INPUT MULTIPLE-OUTPUT (MIMO) The key to successful deployment in a dynamically varying non-line-of-sight environment Contents

More information

Faculty of Information Engineering & Technology. The Communications Department. Course: Advanced Communication Lab [COMM 1005] Lab 6.

Faculty of Information Engineering & Technology. The Communications Department. Course: Advanced Communication Lab [COMM 1005] Lab 6. Faculty of Information Engineering & Technology The Communications Department Course: Advanced Communication Lab [COMM 1005] Lab 6.0 NI USRP 1 TABLE OF CONTENTS 2 Summary... 2 3 Background:... 3 Software

More information

Framework Programme 7

Framework Programme 7 Framework Programme 7 1 Joining the EU programmes as a Belarusian 1. Introduction to the Framework Programme 7 2. Focus on evaluation issues + exercise 3. Strategies for Belarusian organisations + exercise

More information

EverBlu. Wireless fixed data collection system

EverBlu. Wireless fixed data collection system Solution EverBlu Wireless fixed data collection system > Automatic daily meter reads > Graphical data analysis > Reliable self-healing wireless mesh network > Suitable for urban, suburban and rural environments

More information

ACTIVE FLOW CONTROL USING HIGH FREQUENCY COMPLIANT STRUCTURES

ACTIVE FLOW CONTROL USING HIGH FREQUENCY COMPLIANT STRUCTURES c)2001 American Institute of Aeronautics & Astronautics or Published with Permission of Author(s) and/or Author(s)' Sponsoring Organization. A01-37346 ACTIVE FLOW CONTROL USING HIGH FREQUENCY COMPLIANT

More information

A Model-Based Development Environment and Its Application in Engine Control

A Model-Based Development Environment and Its Application in Engine Control A Model-Based Development Environment and Its Application in Engine Control Shugang Jiang, Michael Smith, Charles Halasz A&D Technology Inc. ABSTRACT To meet the ever increasing requirements for engine

More information

Model-based Design of Coordinated Traffic Controllers

Model-based Design of Coordinated Traffic Controllers Model-based Design of Coordinated Traffic Controllers Roopak Sinha a, Partha Roop b, Prakash Ranjitkar c, Junbo Zeng d, Xingchen Zhu e a Lecturer, b,c Senior Lecturer, d,e Student a,b,c,d,e Faculty of

More information

MODELING THE EFFECTIVENESS OF POWER ELECTRONICS BASED VOLTAGE REGULATORS ON DISTRIBUTION VOLTAGE DISTURBANCES

MODELING THE EFFECTIVENESS OF POWER ELECTRONICS BASED VOLTAGE REGULATORS ON DISTRIBUTION VOLTAGE DISTURBANCES MODELING THE EFFECTIVENESS OF POWER ELECTRONICS BASED VOLTAGE REGULATORS ON DISTRIBUTION VOLTAGE DISTURBANCES James SIMONELLI Olivia LEITERMANN Jing HUANG Gridco Systems USA Gridco Systems USA Gridco Systems

More information

3D Tip Flow Characteristics and Vortex Shedding from a Radar Antenna used for Airport Ground Traffic Control

3D Tip Flow Characteristics and Vortex Shedding from a Radar Antenna used for Airport Ground Traffic Control ISROMAC-11 Proceedings of the International Symposium on Transport Phenomena and Dynamics of Rotating Machinery, Feb.26-March 2, 2006, Honolulu, Hawaii, USA 3D Tip Flow Characteristics and Vortex Shedding

More information

SELF STABILIZING PLATFORM

SELF STABILIZING PLATFORM SELF STABILIZING PLATFORM Shalaka Turalkar 1, Omkar Padvekar 2, Nikhil Chavan 3, Pritam Sawant 4 and Project Guide: Mr Prathamesh Indulkar 5. 1,2,3,4,5 Department of Electronics and Telecommunication,

More information