THE FLATWORLD SIMULATION CONTROL ARCHITECTURE (FSCA): A FRAMEWORK FOR SCALABLE IMMERSIVE VISUALIZATION SYSTEMS

Size: px
Start display at page:

Download "THE FLATWORLD SIMULATION CONTROL ARCHITECTURE (FSCA): A FRAMEWORK FOR SCALABLE IMMERSIVE VISUALIZATION SYSTEMS"

Transcription

1 THE FLATWORLD SIMULATION CONTROL ARCHITECTURE (FSCA): A FRAMEWORK FOR SCALABLE IMMERSIVE VISUALIZATION SYSTEMS Anton Treskunov, Jarrell Pair*, and Bill Swartout Institute for Creative Technologies University of Southern California Fiji Way, Suite 600 Marina del Rey, California ABSTRACT Motion Picture sets are traditionally built using decorated modular wall components called flats. The FlatWorld project (Pair et al., 2003) at the University of Southern California Institute for Creative Technologies merges this practice with immersive technology by creating a system of displays coupled with physical props which can be scaled to simulate entire buildings and streets. A single room prototype FlatWorld system was developed in The software developed for this prototype was not scalable beyond the simulation of a single room environment. In 2003, the FlatWorld Simulation Control Architecture (FSCA) was developed to support multiple digital flats in arbitrary configurations. The FSCA facilitates digital flat training scenarios which can be scaled from the simulation of a single room up to a complete city block. The architecture s flexibility allows it to easily interface with a variety of 3D graphics engines and display devices. 1. INTRODUCTION The FlatWorld system is intended to be a scalable virtual environment which can simulate the experience of being inside a building interior or outside on a city street. This requirement demands a software solution which can manage dozens of 3D graphics displays along with surround speakers, tracking sensors, and effects devices. A proof of concept FlatWorld system (Figure 1) was built in This basic system consisted of two displays simulating a room interior with a physical window and door providing views onto an exterior virtual environment. Though this prototype allowed us to test the core functionality of the FlatWorld concept, it could not support a configuration that varied substantially from the simulation of a one room interior. Figure 1: The FlatWorld one room prototype developed in 2001 To move beyond our prototyping work, we required a new software infrastructure that would support multiple system configurations of arbitrary scale along with a wide variety of immersive audio, 3D graphics, and user tracking technologies. To meet these requirements we designed and developed the FlatWorld Simulation Control Architecture (FSCA). 2. RELATED WORK A number of software libraries have been developed to address the unique requirements of virtual reality application development. CAVELib, WorldToolkit, Avango, and VR Juggler are widely known solutions. Most of these toolkits are oriented to popular immersive display systems such as the immersive workbench and the CAVE (Cruz-Neira et. al, 1993). Many are also distributed as commercial products requiring licensing fees. VR Juggler (Cruz-Neira et. al, 2002) is notable in that it is implemented as an open source toolkit and can be configured to work with different types of immersive displays. 1

2 Report Documentation Page Form Approved OMB No Public reporting burden for the collection of information is estimated to average 1 hour per response, including the time for reviewing instructions, searching existing data sources, gathering and maintaining the data needed, and completing and reviewing the collection of information. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to Washington Headquarters Services, Directorate for Information Operations and Reports, 1215 Jefferson Davis Highway, Suite 1204, Arlington VA Respondents should be aware that notwithstanding any other provision of law, no person shall be subject to a penalty for failing to comply with a collection of information if it does not display a currently valid OMB control number. 1. REPORT DATE 00 DEC REPORT TYPE N/A 3. DATES COVERED - 4. TITLE AND SUBTITLE The Flatworld Simulation Control Architecture (Fsca): A Framework For Scalable Immersive Visualization Systems 5a. CONTRACT NUMBER 5b. GRANT NUMBER 5c. PROGRAM ELEMENT NUMBER 6. AUTHOR(S) 5d. PROJECT NUMBER 5e. TASK NUMBER 5f. WORK UNIT NUMBER 7. PERFORMING ORGANIZATION NAME(S) AND ADDRESS(ES) Institute for Creative Technologies University of Southern California Fiji Way, Suite 600 Marina del Rey, California PERFORMING ORGANIZATION REPORT NUMBER 9. SPONSORING/MONITORING AGENCY NAME(S) AND ADDRESS(ES) 10. SPONSOR/MONITOR S ACRONYM(S) 12. DISTRIBUTION/AVAILABILITY STATEMENT Approved for public release, distribution unlimited 11. SPONSOR/MONITOR S REPORT NUMBER(S) 13. SUPPLEMENTARY NOTES See also ADM001736, Proceedings for the Army Science Conference (24th) Held on 29 November - 2 December 2005 in Orlando, Florida., The original document contains color images. 14. ABSTRACT 15. SUBJECT TERMS 16. SECURITY CLASSIFICATION OF: 17. LIMITATION OF ABSTRACT UU a. REPORT b. ABSTRACT c. THIS PAGE 18. NUMBER OF PAGES 4 19a. NAME OF RESPONSIBLE PERSON Standard Form 298 (Rev. 8-98) Prescribed by ANSI Std Z39-18

3 Though VR Juggler satisfied a number of our requirements, using it would have required a major reworking of our existing code base. We were satisfied with many of the software design decisions used in the prototype system, and we had no need implement them again. 3. SOFTWARE ARCHITECTURE The FSCA was designed to enable a network-centric system of multiple client displays driven by a single controller application. Each display is abstracted as a unique entity with its own IP address and camera position within the virtual world. In addition to graphics display clients, the FSCA also supports clients which manage tracking devices, audio output, and effects devices (Figure 2). The controller application broadcasts user triggered or scripted event data to all active clients. Figure 3: Three digital flats depict a room interior and a view down an exterior alley corridor. Each display is driven by an FSCA 3D graphics client. Figure 2: The FSCA controller application broadcasts messages to audio, graphics, tracking, and effects clients. The FSCA is optimized to run on Windows XP based systems. The FSCA s core libraries are cross-platform making a Linux or Mac OS X port a straight forward task. The processing load is distributed by running the client applications on multiple networked PC s which communicate with the controller application. To date we have developed clients for 3D graphics rendering using game engines, OpenAL based immersive audio processing, and sensory effects device handling using the X10 home automation protocol. Each 3D graphics client renders its scene according to an assigned virtual camera position. By having the capability to tie cameras to specific digital flats, we can easily transform the simulated environment. For example, three digital flats simulating a room interior (Figure 3) can quickly be repositioned and configured to display an outdoor storefront scene (Figure 4). Figure 4: The three digital flats from the previous figure are reconfigured to depict an outdoor storefront scene using the FSCA s virtual camera assignment feature. 3.1 Network Communication The FSCA s networking component was developed using the Adaptive Communication Environment (ACE), a cross platform, open source library which manages a wide array of concurrent communication tasks. Above ACE we implemented a network message exchange library we call NetMsg. NetMsg is designed such that there is a single master router and multiple slave listeners. The router can broadcast to all registered listeners or to a single listener. NetMsg uses a multithreaded architecture to handle reconnection tasks, message buffering, and application notifications via C++ functors. Delivery time can be 2

4 assigned to each message for events that are time critical. The Network Time Protocol (NTP) is used to synchronize PC clocks. Messages are programmed as C++ classes. Consequently, messages can be added to the system as long as the new message ID s are unique. 3.2 Controller Application Graphic User Interface The controller application s graphic user interface (GUI) (Figure 5) was built using the open source, cross platform wxwidgets framework. The GUI allows a user to assign virtual camera positions to display clients, select scene databases, trigger animation events, enable input devices, and activate sensors. The 3D scenes are controlled by a sequence of event action states defined in a custom implemented script file. Figure 6: An OGRE based 3D graphics display client depicts views onto a city street through a physical door and window. 5. FUTURE WORK In the coming year, we plan to significantly expand the FSCA s core capabilities by implementing new types of clients and adding support for new protocols. Also we are developing FSCA applications to test and validate the architecture s functionality. 5.1 New Sensor and Device Capabilities Figure 5: Controller application graphic user interface shows a 3D scene as viewed on a selected digital flat. Buttons on the lower right trigger scripted events. 4. 3D GRAPHICS RENDERING With its network-centric infrastructure, the FSCA is not tied to a specific graphics rendering engine. In other words, it is image generator agnostic. An FSCA application can be authored using 3D game technology such as NDL s Gamebryo or Epic s Unreal engine. Alternatively, the FSCA can utilize more traditional 3D simulation engines. Consequently, the FSCA can easily integrate components of legacy simulation and training systems. Our first FSCA application (Figure 6) used OGRE (Object Oriented Graphics Rendering Engine) for 3D graphics rendering. OGRE is also open source and supports Windows, Linux, and Mac OS X. We intend to develop a vision sensor client which will enable FlatWorld simulations to act as smart, sentient environments which can dynamically react and adjust to trainee behaviors. We will also improve the FSCA s ability to control effects devices by implementing support for the DMX show control protocol. DMX is a versatile and robust framework which overcomes limitations of the X10 home automation protocol which we are currently using. DMX will expand FlatWorld s multi-sensory effects capability by allowing us to more easily control devices such as strobe lights, fog machines, and air blowers. 5.2 HMD based FSCA application We are in the process of developing our first FSCA application targeted to primarily use head mounted displays. This application is intended as an experimental platform for treating Iraq war veterans with post traumatic stress disorder. 3

5 5.3 FSCA Large Environment Simulation CONCLUSIONS In 2005, we will be developing a prototype application using several digital flats to simulate an expansive scene depicting both indoor and outdoor spaces (Figure 7, Figure 8, and Figure 9). This application will be appropriate for presence patrol, call for fire, and tactical questioning training. The FlatWorld Simulation Control Architecture is a flexible framework for supporting a broad variety of virtual reality software and hardware configurations. The system s versatility allows it to easily build upon legacy simulation systems. Additionally, with the FSCA we can create training applications which can be quickly reconfigured as demanded by the rapidly changing operational environment. Furthermore, the large scale digital flat simulations enabled by the FSCA will give the warfighter the ability to experience an environment before physically being there. ACKNOWLEDGEMENTS The authors would like to thank Ernie Eastlund and Matt Liewer for creating the 3D renderings used in this paper. Figure 7: Depiction of a large indoor/outdoor digital flat simulation driven by the FSCA This paper was developed with funds of the Department of the Army under contract number DAAD D Any opinions, findings and conclusions or recommendations expressed in this paper are those of the authors and do not necessarily reflect the views of the Department of the Army. REFERENCES Figure 8: Depiction of a simulated city street in a large scale environment FSCA application Cruz-Neira, C, Bierbaum, A., Hartling, P., Just, C., and Meinert, K. (2002). VR Juggler An Open Source Platform for Virtual Reality Applications. 40th AIAA Aerospace Sciences Meeting and Exhibit 2002, Reno, Nevada. Cruz-Neira, C., D. Sandin, T. DeFanti. (1993). Surround-Screen Projection-Based Virtual Reality: The Design and Implementation of the CAVE. In Computer Graphics Proceedings, Annual Conference Series, ACM SIGGRAPH, New York pp Pair, J., Neumann U., Piepol D., and Swartout B. (2002). FlatWorld: Combining Hollywood Set Design Techniques with VR. IEEE Computer Graphics and Applications. January/February 2003, pp Figure 9: 3D rendering of a building interior within the larger simulated environment seen in the previous figures 4

Report Documentation Page

Report Documentation Page (c)2002 American Institute Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the collection of information is estimated to average 1 hour per response, including the

More information

Overview Presented by: Boyd L. Summers

Overview Presented by: Boyd L. Summers Overview Presented by: Boyd L. Summers Systems & Software Technology Conference SSTC May 19 th, 2011 1 Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the collection

More information

73rd MORSS CD Cover Page UNCLASSIFIED DISCLOSURE FORM CD Presentation

73rd MORSS CD Cover Page UNCLASSIFIED DISCLOSURE FORM CD Presentation 73rd MORSS CD Cover Page UNCLASSIFIED DISCLOSURE FORM CD Presentation 21-23 June 2005, at US Military Academy, West Point, NY 712CD For office use only 41205 Please complete this form 712CD as your cover

More information

Issue Paper. Wargaming Homeland Security and Army Reserve Component Issues. By Professor Michael Pasquarett

Issue Paper. Wargaming Homeland Security and Army Reserve Component Issues. By Professor Michael Pasquarett Issue Paper Center for Strategic Leadership, U.S. Army War College May 2003 Volume 04-03 Wargaming Homeland Security and Army Reserve Component Issues By Professor Michael Pasquarett Background The President

More information

CAPTURE-THE-FLAG: LEARNING COMPUTER SECURITY UNDER FIRE

CAPTURE-THE-FLAG: LEARNING COMPUTER SECURITY UNDER FIRE CAPTURE-THE-FLAG: LEARNING COMPUTER SECURITY UNDER FIRE LCDR Chris Eagle, and John L. Clark Naval Postgraduate School Abstract: Key words: In this paper, we describe the Capture-the-Flag (CTF) activity

More information

John Mathieson US Air Force (WR ALC) Systems & Software Technology Conference Salt Lake City, Utah 19 May 2011

John Mathieson US Air Force (WR ALC) Systems & Software Technology Conference Salt Lake City, Utah 19 May 2011 John Mathieson US Air Force (WR ALC) Systems & Software Technology Conference Salt Lake City, Utah 19 May 2011 Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the

More information

THE MIMOSA OPEN SOLUTION COLLABORATIVE ENGINEERING AND IT ENVIRONMENTS WORKSHOP

THE MIMOSA OPEN SOLUTION COLLABORATIVE ENGINEERING AND IT ENVIRONMENTS WORKSHOP THE MIMOSA OPEN SOLUTION COLLABORATIVE ENGINEERING AND IT ENVIRONMENTS WORKSHOP By Dr. Carl M. Powe, Jr. 2-3 March 2005 Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden

More information

EAD Expected Annual Flood Damage Computation

EAD Expected Annual Flood Damage Computation US Army Corps of Engineers Hydrologic Engineering Center Generalized Computer Program EAD Expected Annual Flood Damage Computation User's Manual March 1989 Original: June 1977 Revised: August 1979, February

More information

Asset Management- Acquisitions

Asset Management- Acquisitions Indefinite Delivery, Indefinite Quantity (IDIQ) contracts used for these services: al, Activity & Master Plans; Land Use Analysis; Anti- Terrorism, Circulation & Space Management Studies; Encroachment

More information

FIRST IMPRESSION EXPERIMENT REPORT (FIER)

FIRST IMPRESSION EXPERIMENT REPORT (FIER) THE MNE7 OBJECTIVE 3.4 CYBER SITUATIONAL AWARENESS LOE FIRST IMPRESSION EXPERIMENT REPORT (FIER) 1. Introduction The Finnish Defence Forces Concept Development & Experimentation Centre (FDF CD&E Centre)

More information

Pima Community College Planning Grant For Autonomous Intelligent Network of Systems (AINS) Science, Mathematics & Engineering Education Center

Pima Community College Planning Grant For Autonomous Intelligent Network of Systems (AINS) Science, Mathematics & Engineering Education Center Pima Community College Planning Grant For Autonomous Intelligent Network of Systems (AINS) Science, Mathematics & Engineering Education Center Technical Report - Final Award Number N00014-03-1-0844 Mod.

More information

AFRL-RX-WP-TP-2008-4023

AFRL-RX-WP-TP-2008-4023 AFRL-RX-WP-TP-2008-4023 HOW KILLDEER MOUNTAIN MANUFACTURING IS OPTIMIZING AEROSPACE SUPPLY CHAIN VISIBILITY USING RFID (Postprint) Jeanne Duckett Killdeer Mountain Manufacturing, Inc. FEBRUARY 2008 Final

More information

Using the Advancement Degree of Difficulty (AD 2 ) as an input to Risk Management

Using the Advancement Degree of Difficulty (AD 2 ) as an input to Risk Management Using the Advancement Degree of Difficulty (AD 2 ) as an input to Risk Management James W. Bilbro JB Consulting International Huntsville, AL Multi-dimensional Assessment of Technology Maturity Technology

More information

In June 1998 the Joint Military Intelligence. Intelligence Education for Joint Warfighting A. DENIS CLIFT

In June 1998 the Joint Military Intelligence. Intelligence Education for Joint Warfighting A. DENIS CLIFT Defense Intelligence Analysis Center, home of JMIC. Intelligence Education for Joint Warfighting Courtesy Joint Military Intelligence College By A. DENIS CLIFT In June 1998 the Joint Military Intelligence

More information

DEFENSE CONTRACT AUDIT AGENCY

DEFENSE CONTRACT AUDIT AGENCY DEFENSE CONTRACT AUDIT AGENCY Fundamental Building Blocks for an Acceptable Accounting System Presented by Sue Reynaga DCAA Branch Manager San Diego Branch Office August 24, 2011 Report Documentation Page

More information

Mr. Steve Mayer, PMP, P.E. McClellan Remediation Program Manger Air Force Real Property Agency. May 11, 2011

Mr. Steve Mayer, PMP, P.E. McClellan Remediation Program Manger Air Force Real Property Agency. May 11, 2011 Mr. Steve Mayer, PMP, P.E. McClellan Remediation Program Manger Air Force Real Property Agency May 11, 2011 Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the collection

More information

Guide to Using DoD PKI Certificates in Outlook 2000

Guide to Using DoD PKI Certificates in Outlook 2000 Report Number: C4-017R-01 Guide to Using DoD PKI Certificates in Outlook 2000 Security Evaluation Group Author: Margaret Salter Updated: April 6, 2001 Version 1.0 National Security Agency 9800 Savage Rd.

More information

Award Number: MIPR 3GD3DJ3078. TITLE: Outcome Analysis Tool for Army Refractive Surgery Program. PRINCIPAL INVESTIGATOR: Kraig S. Bower, M.D.

Award Number: MIPR 3GD3DJ3078. TITLE: Outcome Analysis Tool for Army Refractive Surgery Program. PRINCIPAL INVESTIGATOR: Kraig S. Bower, M.D. AD Award Number: MIPR 3GD3DJ3078 TITLE: Outcome Analysis Tool for Army Refractive Surgery Program PRINCIPAL INVESTIGATOR: Kraig S. Bower, M.D. CONTRACTING ORGANIZATION: Walter Reed Army Medical Center

More information

Headquarters U.S. Air Force

Headquarters U.S. Air Force Headquarters U.S. Air Force I n t e g r i t y - S e r v i c e - E x c e l l e n c e Air Force Technology Readiness Assessment (TRA) Process for Major Defense Acquisition Programs LtCol Ed Masterson Mr

More information

Advanced Micro Ring Resonator Filter Technology

Advanced Micro Ring Resonator Filter Technology Advanced Micro Ring Resonator Filter Technology G. Lenz and C. K. Madsen Lucent Technologies, Bell Labs Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the collection

More information

MINDS: A NEW APPROACH TO THE INFORMATION SECURITY PROCESS

MINDS: A NEW APPROACH TO THE INFORMATION SECURITY PROCESS MINDS: A NEW APPROACH TO THE INFORMATION SECURITY PROCESS E. E. Eilertson*, L. Ertoz, and V. Kumar Army High Performance Computing Research Center Minneapolis, MN 55414 K. S. Long U.S. Army Research Laboratory

More information

DCAA and the Small Business Innovative Research (SBIR) Program

DCAA and the Small Business Innovative Research (SBIR) Program Defense Contract Audit Agency (DCAA) DCAA and the Small Business Innovative Research (SBIR) Program Judice Smith and Chang Ford DCAA/Financial Liaison Advisors NAVAIR 2010 Small Business Aviation Technology

More information

AN INTEGRATED SOFTWARE SYSTEM FOR MEDICAL EQUIPMENT MANAGEMENT

AN INTEGRATED SOFTWARE SYSTEM FOR MEDICAL EQUIPMENT MANAGEMENT 1 of 4 AN INTEGRATED SOFTWARE SYSTEM FOR MEDICAL EQUIPMENT MANAGEMENT Z. Bliznakov, N. Pallikarakis Department of Medical Physics, School of Medicine, University of Patras, 26500, Rio - Patras, Greece

More information

RT 24 - Architecture, Modeling & Simulation, and Software Design

RT 24 - Architecture, Modeling & Simulation, and Software Design RT 24 - Architecture, Modeling & Simulation, and Software Design Dennis Barnabe, Department of Defense Michael zur Muehlen & Anne Carrigy, Stevens Institute of Technology Drew Hamilton, Auburn University

More information

A GPS Digital Phased Array Antenna and Receiver

A GPS Digital Phased Array Antenna and Receiver A GPS Digital Phased Array Antenna and Receiver Dr. Alison Brown, Randy Silva; NAVSYS Corporation ABSTRACT NAVSYS High Gain Advanced GPS Receiver (HAGR) uses a digital beam-steering antenna array to enable

More information

Simulation of Air Flow Through a Test Chamber

Simulation of Air Flow Through a Test Chamber Simulation of Air Flow Through a Test Chamber by Gregory K. Ovrebo ARL-MR- 0680 December 2007 Approved for public release; distribution unlimited. NOTICES Disclaimers The findings in this report are not

More information

Software Tools for Virtual Reality Application Development

Software Tools for Virtual Reality Application Development Software Tools for Virtual Reality Application Development SIGGRAPH 98 Course 14 Applied Virtual Reality Allen Bierbaum and Christopher Just (allenb, cjust@icemt.iastate.edu) Iowa Center for Emerging Manufacturing

More information

Addressing the Real-World Challenges in the Development of Propulsion IVHM Technology Experiment (PITEX)

Addressing the Real-World Challenges in the Development of Propulsion IVHM Technology Experiment (PITEX) NASA/CR 2005-213422 AIAA 2004 6361 Addressing the Real-World Challenges in the Development of Propulsion IVHM Technology Experiment (PITEX) William A. Maul, Amy Chicatelli, and Christopher E. Fulton Analex

More information

Multiple Network Marketing coordination Model

Multiple Network Marketing coordination Model REPORT DOCUMENTATION PAGE Form Approved OMB No. 0704-0188 The public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

Achieving QoS for Aeronautical Telecommunication Networks Over Differentiated Services

Achieving QoS for Aeronautical Telecommunication Networks Over Differentiated Services NASA/TM 2001-210754 Achieving QoS for Aeronautical Telecommunication Networks Over Differentiated Services Haowei Bai and Mohammed Atiquzzaman The University of Dayton, Dayton, Ohio William Ivancic Glenn

More information

CERT Virtual Flow Collection and Analysis

CERT Virtual Flow Collection and Analysis CERT Virtual Flow Collection and Analysis For Training and Simulation George Warnagiris 2011 Carnegie Mellon University Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden

More information

TITLE: The Impact Of Prostate Cancer Treatment-Related Symptoms On Low-Income Latino Couples

TITLE: The Impact Of Prostate Cancer Treatment-Related Symptoms On Low-Income Latino Couples AD Award Number: W81WH-07-1-0069 TITLE: The Impact Of Prostate Cancer Treatment-Related Symptoms On Low-Income Latino Couples PRINCIPAL INVESTIGATOR: Sally L. Maliski, Ph.D., R.N. CONTRACTING ORGANIZATION:

More information

Graduate Level Credit for Resident EWS Students. Natasha McEachin CG 1

Graduate Level Credit for Resident EWS Students. Natasha McEachin CG 1 Graduate Level Credit for Resident EWS Students Natasha McEachin CG 1 February 20, 2009 1 Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the collection of information

More information

Secure Autonomous Automated Scheduling (SAAS) Phase 1 Final Report

Secure Autonomous Automated Scheduling (SAAS) Phase 1 Final Report NASA/CR 2010-216097 Secure Autonomous Automated Scheduling (SAAS) Phase 1 Final Report Rev 1.1 Jon G. Walke, Larry Dikeman, Stephen P. Sage, and Eric M. Miller General Dynamics Advanced Information Systems,

More information

Study of Large-Scale Data Visualization

Study of Large-Scale Data Visualization Study of Large-Scale Data Visualization Project Representative Fumiaki Araki The Earth Simulator Center, Japan Agency for Marine-Earth Science and Technology Authors Fumiaki Araki 1, Shintaro Kawahara

More information

What Makes a Message Stick? - The Role of Content and Context in Social Media Epidemics

What Makes a Message Stick? - The Role of Content and Context in Social Media Epidemics ANU College of Engineering and Computer Science Building 108, North Road ANU, Canberra 0200, Australia Final Report for AOARD Grant 124041 What Makes a Message Stick? - The Role of Content and Context

More information

Monitoring of Arctic Conditions from a Virtual Constellation of Synthetic Aperture Radar Satellites

Monitoring of Arctic Conditions from a Virtual Constellation of Synthetic Aperture Radar Satellites DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Monitoring of Arctic Conditions from a Virtual Constellation of Synthetic Aperture Radar Satellites Hans C. Graber RSMAS

More information

ELECTRONIC HEALTH RECORDS. Fiscal Year 2013 Expenditure Plan Lacks Key Information Needed to Inform Future Funding Decisions

ELECTRONIC HEALTH RECORDS. Fiscal Year 2013 Expenditure Plan Lacks Key Information Needed to Inform Future Funding Decisions United States Government Accountability Office Report to Congressional July 2014 ELECTRONIC HEALTH RECORDS Fiscal Year 2013 Expenditure Plan Lacks Key Information Needed to Inform Future Funding Decisions

More information

2010 2011 Military Health System Conference

2010 2011 Military Health System Conference 2010 2011 Military Health System Conference Population Health Management The Missing Element of PCMH Sharing The Quadruple Knowledge: Aim: Working Achieving Together, Breakthrough Achieving Performance

More information

Optical Blade Position Tracking System Test

Optical Blade Position Tracking System Test National Renewable Energy Laboratory Innovation for Our Energy Future A national laboratory of the U.S. Department of Energy Office of Energy Efficiency & Renewable Energy Optical Blade Position Tracking

More information

A Limited Objective Experiment on Wireless Peer-To-Peer Collaborative Networking

A Limited Objective Experiment on Wireless Peer-To-Peer Collaborative Networking A Limited Objective Experiment on Wireless Peer-To-Peer Collaborative Networking Dr. Alex Bordetsky LCDR Glenn R. Cook Dr. Bill Kemple LCDR Timothy Thate Naval Postgraduate School Department of Information

More information

Mobile Robot Knowledge Base

Mobile Robot Knowledge Base Mobile Robot Knowledge Base Tracy Heath Pastore* a, Mitchell Barnes** a, Rory Hallman b b SPAWAR Systems Center, San Diego, Code 2371, 53560 Hull Street, San Diego, CA 92152; b Computer Sciences Corporation,

More information

Dynamic IR Scene Projector Based Upon the Digital Micromirror Device

Dynamic IR Scene Projector Based Upon the Digital Micromirror Device Dynamic IR Scene Projector Based Upon the Digital Micromirror Device D. Brett Beasley, Matt Bender, Jay Crosby, Tim Messer, and Daniel A. Saylor Optical Sciences Corporation www.opticalsciences.com P.O.

More information

Cancellation of Nongroup Health Insurance Policies

Cancellation of Nongroup Health Insurance Policies Cancellation of Nongroup Health Insurance Policies Bernadette Fernandez Specialist in Health Care Financing Annie L. Mach Analyst in Health Care Financing November 19, 2013 Congressional Research Service

More information

UNCLASSIFIED LOW-COST MINIATURE INTERFACE AND CONTROL SYSTEMS FOR SMART SENSORS, TACTICAL RADIOS, AND COMPUTER NETWORKS

UNCLASSIFIED LOW-COST MINIATURE INTERFACE AND CONTROL SYSTEMS FOR SMART SENSORS, TACTICAL RADIOS, AND COMPUTER NETWORKS LOW-COST MINIATURE INTERFACE AND CONTROL SYSTEMS FOR SMART SENSORS, TACTICAL RADIOS, AND COMPUTER NETWORKS Brett Martin and Dale Bryan Naval Command, Control, and Ocean Surveillance Center Research, Development,

More information

SENPRISM Approach to Collaborative Enterprise Design and Implementation

SENPRISM Approach to Collaborative Enterprise Design and Implementation SUNPRISM: An Approach and Software Tools for Collaborative Climate Change Research Sohei Okamoto 1 Roger V. Hoang 1 1 College of Engineering University of Nevada, Reno, USA {okamoto, hoangr, dascalus,

More information

DEFENSE BUSINESS PRACTICE IMPLEMENTATION BOARD

DEFENSE BUSINESS PRACTICE IMPLEMENTATION BOARD Defense Business Practice Implementation Board DEFENSE BUSINESS PRACTICE IMPLEMENTATION BOARD Report to the Senior Executive Council, Department of Defense MANAGEMENT INFORMATION TASK GROUP Report FY02-3

More information

REPORT DOCUMENTATION PAGE

REPORT DOCUMENTATION PAGE REPORT DOCUMENTATION PAGE Form Approved OMB NO. 0704-0188 The public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

An Oil-Free Thrust Foil Bearing Facility Design, Calibration, and Operation

An Oil-Free Thrust Foil Bearing Facility Design, Calibration, and Operation NASA/TM 2005-213568 An Oil-Free Thrust Foil Bearing Facility Design, Calibration, and Operation Steve Bauman Glenn Research Center, Cleveland, Ohio March 2005 The NASA STI Program Office... in Profile

More information

Data Analytics and Visualization for Large Army Testing Data

Data Analytics and Visualization for Large Army Testing Data Data Analytics and Visualization for Large Army Testing Data by Jerry Clarke, Kenneth Renard, and Brian Panneton ARL-TR-6572 September 2013 Approved for public release; distribution is unlimited. NOTICES

More information

Integrated Force Method Solution to Indeterminate Structural Mechanics Problems

Integrated Force Method Solution to Indeterminate Structural Mechanics Problems NASA/TP 2004-207430 Integrated Force Method Solution to Indeterminate Structural Mechanics Problems Surya N. Patnaik Ohio Aerospace Institute, Brook Park, Ohio Dale A. Hopkins and Gary R. Halford Glenn

More information

Virtual Environments - Basics -

Virtual Environments - Basics - Virtual Environments - Basics - What Is Virtual Reality? A Web-Based Introduction Version 4 Draft 1, September, 1998 Jerry Isdale http://www.isdale.com/jerry/vr/whatisvr.html Virtual Environments allow

More information

Non-Autoclave (Prepreg) Manufacturing Technology

Non-Autoclave (Prepreg) Manufacturing Technology Non-Autoclave (Prepreg) Manufacturing Technology Gary G. Bond, John M. Griffith, Gail L. Hahn The Boeing Company Chris Bongiovanni, Jack Boyd Cytec Engineered Materials 9 September 2008 Report Documentation

More information

IISUP-. NAVAL SUPPLY SVSTE:MS COMMAND. Ready. Resourceful. Responsive!

IISUP-. NAVAL SUPPLY SVSTE:MS COMMAND. Ready. Resourceful. Responsive! ~ IISUP-. NAVAL SUPPLY SVSTE:MS COMMAND Ready. Resourceful. Responsive! Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the collection of information is estimated

More information

DEVELOPMENT OF A COLLABORATIVE DESIGN TOOL FOR STRUCTURAL ANALYSIS IN AN IMMERSIVE VIRTUAL ENVIRONMENT

DEVELOPMENT OF A COLLABORATIVE DESIGN TOOL FOR STRUCTURAL ANALYSIS IN AN IMMERSIVE VIRTUAL ENVIRONMENT Seventh International IBPSA Conference Rio de Janeiro, Brazil August 13-15, 2001 DEVELOPMENT OF A COLLABORATIVE DESIGN TOOL FOR STRUCTURAL ANALYSIS IN AN IMMERSIVE VIRTUAL ENVIRONMENT Mehdi Setareh 1,

More information

Hardware-in-the-Loop Testing of Wireless Sensor Networks

Hardware-in-the-Loop Testing of Wireless Sensor Networks TechNotes ITEA Journal 2009; 30: 333 338 Copyright 2009 by the International Test and Evaluation Association Hardware-in-the-Loop Testing of Wireless Sensor Networks Kenneth G. LeSueur Subsystem Test and

More information

CONTRACTING ORGANIZATION: Stevens Institute of Technology Hoboken, NJ 07030

CONTRACTING ORGANIZATION: Stevens Institute of Technology Hoboken, NJ 07030 AD Award Number: W81XWH-05-1-0218 TITLE: Test Bed Development for Detection and Diagnosis of Prostate Cancer via Internet and Wireless Communication Networks PRINCIPAL INVESTIGATOR: Yu-Dong Yao, Ph.D.

More information

REPORT DOCUMENTATION PAGE *

REPORT DOCUMENTATION PAGE * REPORT DOCUMENTATION PAGE * Form Approved OMBNo. 07040188 Public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

PROBLEM STATEMENT: Will reducing the ASD for Kadena AB F-15 C/Ds increase the CPFH for this Mission Design Series (MDS)?

PROBLEM STATEMENT: Will reducing the ASD for Kadena AB F-15 C/Ds increase the CPFH for this Mission Design Series (MDS)? CONSULTING REPORT Kadena F-15 C/D Cost per Flying Hour Analysis PROJECT MANAGERS: Capt Jeremy Howe and Capt Kevin Dawson AFLMA PROJECT NUMBER: LM200520700 16 August 2005 BACKGROUND: Kadena AB is currently

More information

AUSTRALIAN INNOVATIONS

AUSTRALIAN INNOVATIONS AUSTRALIAN INNOVATIONS Recent Developments in Australian EVM Practices Jim Muir & Kirsty McLean October 1998 REPORT DOCUMENTATION PAGE Form Approved OMB No. 0704-0188 Public reporting burder for this collection

More information

Dr. Gary S. E. Lagerloef Earth and Space Research, 1910 Fairview Ave E

Dr. Gary S. E. Lagerloef Earth and Space Research, 1910 Fairview Ave E Establishing a NOAA Operational Data Center for Surface Currents Derived from Satellite Altimeters and Scatterometers; Pilot Study for the Tropical Pacific Including the Hawaiian Islands and US Territorial

More information

Assessment of NASA Dual Microstructure Heat Treatment Method Utilizing Ladish SuperCooler Cooling Technology

Assessment of NASA Dual Microstructure Heat Treatment Method Utilizing Ladish SuperCooler Cooling Technology NASA/CR 2005-213574 Assessment of NASA Dual Microstructure Heat Treatment Method Utilizing Ladish SuperCooler Cooling Technology Joe Lemsky Ladish Company, Inc., Cudahy, Wisconsin February 2005 The NASA

More information

PREPARED FOR: U.S. Army Medical Research and Materiel CommandFort Detrick, Maryland 21702 5012

PREPARED FOR: U.S. Army Medical Research and Materiel CommandFort Detrick, Maryland 21702 5012 AD Award Number: W81XWH 07 1 0542 TITLE: Is Nuclear Structure Altered in Breast Cancer Cells? PRINCIPAL INVESTIGATOR: Han Htun, Ph.D. CONTRACTING ORGANIZATION: University of California Los Angeles, CA

More information

Intelligence Community Public Key Infrastructure (IC PKI)

Intelligence Community Public Key Infrastructure (IC PKI) Intelligence Community Public Key Infrastructure (IC PKI) 2002 The MITRE Corporation This technical data was produced for the U.S. Government under contract 99-G000109-000, and is subject to the Rights

More information

An Overview of Romanian Command and Control Systems

An Overview of Romanian Command and Control Systems Col. eng. Stefan Cantaragiu, Ph. D. Military Equipment and Technologies Research Agency P.O. Box 51-16 76550 Bucharest ROMANIA Tel.: +40 1 4231483 Fax: +40 1 4231030 scantaragiu@acttm.ro Lt. eng. Adrian

More information

KEEP THIS COPY FOR REPRODUCTION PURPOSES. I ~~~~~Final Report

KEEP THIS COPY FOR REPRODUCTION PURPOSES. I ~~~~~Final Report MASTER COPY KEEP THIS COPY FOR REPRODUCTION PURPOSES 1 Form Approved REPORT DOCUMENTATION PAGE I OMS No. 0704-0188 Public reoorting burden for this collection of information is estimated to average I hour

More information

High Power Density Capacitor Charging Power Supply Development for Repetitive Pulsed Power

High Power Density Capacitor Charging Power Supply Development for Repetitive Pulsed Power High Power Density Capacitor Charging Power Supply Development for Repetitive Pulsed Power M. M. McQuage, V.P. McDowell, F.E. Peterkin, and J. A. Pasour Directed Energy Technology Office, Code B2 Dahlgren

More information

An Application of an Iterative Approach to DoD Software Migration Planning

An Application of an Iterative Approach to DoD Software Migration Planning An Application of an Iterative Approach to DoD Software Migration Planning John Bergey Liam O Brien Dennis Smith September 2002 Product Line Practice Initiative Unlimited distribution subject to the copyright.

More information

AKCess Pro Server Management Software

AKCess Pro Server Management Software Management Software v.100.00x takes the best from IP Video Monitoring Software and is the first to combine it with Environmental / Security Sensor and Access Control equipment in one centralized management

More information

PREPARED FOR: U.S. Army Medical Research and Materiel Command Fort Detrick, Maryland 21702-5012

PREPARED FOR: U.S. Army Medical Research and Materiel Command Fort Detrick, Maryland 21702-5012 AD Award Number: W81XWH-08-2-0104 TITLE: CBT for Nightmares in OEF/OIF Veterans PRINCIPAL INVESTIGATOR: Richard Ross, M.D., Ph.D. Gerlinde Harb, Ph.D Ilan Harpaz-Rotem, Ph.D. CONTRACTING ORGANIZATION:

More information

4.2 A VIRTUAL TORNADIC THUNDERSTORM ENABLING STUDENTS TO CONSTRUCT KNOWLEDGE ABOUT STORM DYNAMICS THROUGH DATA COLLECTION AND ANALYSIS

4.2 A VIRTUAL TORNADIC THUNDERSTORM ENABLING STUDENTS TO CONSTRUCT KNOWLEDGE ABOUT STORM DYNAMICS THROUGH DATA COLLECTION AND ANALYSIS 4.2 A VIRTUAL TORNADIC THUNDERSTORM ENABLING STUDENTS TO CONSTRUCT KNOWLEDGE ABOUT STORM DYNAMICS THROUGH DATA COLLECTION AND ANALYSIS William A. Gallus, Jr*., Cinzia Cervato, Carolina Cruz-Neira, Galen

More information

Wireless Day / Night Cloud Camera TV-IP751WIC (v1.0r)

Wireless Day / Night Cloud Camera TV-IP751WIC (v1.0r) (v1.0r) TRENDnet s Wireless Day / Night Cloud Camera, model, takes the work out of viewing video over the internet. Previously to view video remotely, users needed to perform many complicated and time

More information

CONTRACTING ORGANIZATION: University of Alabama at Birmingham Birmingham, AL 35294

CONTRACTING ORGANIZATION: University of Alabama at Birmingham Birmingham, AL 35294 AD Award Number: W81XWH-08-1-0030 TITLE: Regulation of Prostate Cancer Bone Metastasis by DKK1 PRINCIPAL INVESTIGATOR: Gregory A. Clines, M.D., Ph.D. CONTRACTING ORGANIZATION: University of Alabama at

More information

Interagency National Security Knowledge and Skills in the Department of Defense

Interagency National Security Knowledge and Skills in the Department of Defense INSTITUTE FOR DEFENSE ANALYSES Interagency National Security Knowledge and Skills in the Department of Defense June 2014 Approved for public release; distribution is unlimited. IDA Document D-5204 Log:

More information

INTELLECT TM Software Package

INTELLECT TM Software Package AxxonSoft INTELLECT TM Software Package Quick Start Guide Version 1.0.0 Moscow 2010 1 Contents CONTENTS... 2 1 INTRODUCTION... 3 1.1 Document purpose... 3 1.2 Purpose of the Intellect software package...

More information

Information Technology Career Field Pathways and Course Structure

Information Technology Career Field Pathways and Course Structure Information Technology Career Field Pathways and Course Structure Courses in Information Support and Services (N0) Computer Hardware 2 145025 Computer Software 145030 Networking 2 145035 Network Operating

More information

PREPARED FOR: U.S. Army Medical Research and Materiel Command Fort Detrick, Maryland 21702-5012

PREPARED FOR: U.S. Army Medical Research and Materiel Command Fort Detrick, Maryland 21702-5012 AD Award Number: W81XWH-10-1-0957 TITLE: PRINCIPAL INVESTIGATOR: Andrea L. Behrman, Ph.D., P.T. CONTRACTING ORGANIZATION: University of Florida Gainesville, FL 32611 REPORT DATE: October 2011 TYPE OF REPORT:

More information

Evaluation of a 10 kv, 400 ka Si SGTO at High di/dt

Evaluation of a 10 kv, 400 ka Si SGTO at High di/dt Evaluation of a kv, ka Si SGTO at High di/dt Heather O Brien, William Shaheen, Timothy Crowley Berkeley Research Associates, U.S. Army Research Laboratory, Attn: Berkeley Contractor 8 Powder Mill Road,

More information

Cyber Security Training and Awareness Through Game Play

Cyber Security Training and Awareness Through Game Play Cyber Security Training and Awareness Through Game Play Benjamin D. Cone, Michael F. Thompson, Cynthia E. Irvine, and Thuy D. Nguyen Naval Postgraduate School, Monterey, CA 93943, USA {bdcone,mfthomps,irvine,tdnguyen}@nps.edu

More information

Computer Aided Prototyping System (CAPS) for Heterogeneous Systems Development and Integration *

Computer Aided Prototyping System (CAPS) for Heterogeneous Systems Development and Integration * Computer Aided Prototyping System (CAPS) for Heterogeneous Systems Development and Integration * Luqi, V. Berzins, M. Shing, N. Nada and C. Eagle Computer Science Department Naval Postgraduate School Monterey,

More information

Contents Page. We are Grosvenor Technology Page 3. Access Control Solutions Page 4. Workforce Management Page 4. Sateon Access Control Page 5

Contents Page. We are Grosvenor Technology Page 3. Access Control Solutions Page 4. Workforce Management Page 4. Sateon Access Control Page 5 Product Overview Contents Page We are Grosvenor Technology Page 3 Access Control Solutions Page 4 Workforce Management Page 4 Sateon Access Control Page 5 Sateon Simplicity Page 6 Open Architecture Flexibility

More information

ABSTRACT. Keywords Virtual Reality, Java, JavaBeans, C++, CORBA 1. INTRODUCTION

ABSTRACT. Keywords Virtual Reality, Java, JavaBeans, C++, CORBA 1. INTRODUCTION Tweek: Merging 2D and 3D Interaction in Immersive Environments Patrick L Hartling, Allen D Bierbaum, Carolina Cruz-Neira Virtual Reality Applications Center, 2274 Howe Hall Room 1620, Iowa State University

More information

VTO6xxx. IP door stations. User manual

VTO6xxx. IP door stations. User manual VTO6xxx IP door stations User manual Table of Contents 1 Product Appearance 2 Basic Function Introduction 2.1 Call Manager Center 2.2 Call User 2.2.1 Connecting Status 2.2.2 Calling Status 2.3 Monitor

More information

Development and Support for the USGODAE Server

Development and Support for the USGODAE Server Development and Support for the USGODAE Server Mr. Mike Clancy Fleet Numerical Meteorology and Oceanography Center 7 Grace Hopper Ave, Stop 1 Monterey, CA 93943-5501 phone: (831) 656-4414 fax: (831) 656-4489

More information

An Introduction to OSVR

An Introduction to OSVR An Introduction to OSVR What is OSVR? OSVR is an open-source software platform for VR/AR applications. OSVR provides an easy and standardized way to discover, configure and operate hundreds of devices:

More information

Full 1080p Network Video Recorder with 2TB HDD & 8 Night Vision 1080p HD IP Cameras

Full 1080p Network Video Recorder with 2TB HDD & 8 Night Vision 1080p HD IP Cameras Full 1080p Network Video Recorder with 2TB HDD & 8 Night Vision 1080p HD IP Cameras Night Owl's cutting edge NVR10-882 is a next generation Complete IP based video security system ideal for the protection

More information

4. TITLE AND SUBTITLE 5a. CONTRACT NUMBER FA8720-05-C-0002. 6. AUTHOR(S) 5d. PROJECT NUMBER

4. TITLE AND SUBTITLE 5a. CONTRACT NUMBER FA8720-05-C-0002. 6. AUTHOR(S) 5d. PROJECT NUMBER REPORT DOCUMENTATION PAGE Form Approved OMB No. 0704-0188 Public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instructions,

More information

Real-Time Task Scheduling for Energy-Aware Embedded Systems 1

Real-Time Task Scheduling for Energy-Aware Embedded Systems 1 Real-Time Task Scheduling for Energy-Aware Embedded Systems 1 Vishnu Swaminathan and Krishnendu Chakrabarty Dept. of Electrical & Computer Engineering Duke University Durham, NC 27708 fvishnus,krishg@ee.duke.edu

More information

IR-Cut. Day/Night. Filter

IR-Cut. Day/Night. Filter FE-201DM 2MP Fisheye Indoor PoE Dome Camera Maximum 15fps@1440x1440 H.264 MPEG4 and MJPEG Encoder Hardware Dewarp via Fisheye Processor Minimum 0.1 Lux for Night Vision ROI (Region of Interest) with e-ptz

More information

Professional Organization Checklist for the Computer Science Curriculum Updates. Association of Computing Machinery Computing Curricula 2008

Professional Organization Checklist for the Computer Science Curriculum Updates. Association of Computing Machinery Computing Curricula 2008 Professional Organization Checklist for the Computer Science Curriculum Updates Association of Computing Machinery Computing Curricula 2008 The curriculum guidelines can be found in Appendix C of the report

More information

HEC-DSS Add-In Excel Data Exchange for Excel 2007-2010

HEC-DSS Add-In Excel Data Exchange for Excel 2007-2010 HEC-DSS Add-In Excel Data Exchange for Excel 2007-2010 User's Manual Version 3.2.1 January 2010 Approved for Public Release. Distribution Unlimited. CPD-79b REPORT DOCUMENTATION PAGE Form Approved OMB

More information

Development of a Service Robot System for a Remote Child Monitoring Platform

Development of a Service Robot System for a Remote Child Monitoring Platform , pp.153-162 http://dx.doi.org/10.14257/ijsh.2014.8.5.14 Development of a Service Robot System for a Remote Child Monitoring Platform Taewoo Han 1 and Yong-Ho Seo 2, * 1 Department of Game and Multimedia,

More information

Web technology, mobile computing, augmented reality, virtual environments, wearable devices, live performance technology

Web technology, mobile computing, augmented reality, virtual environments, wearable devices, live performance technology Jarrell Pair Web: http://www.jarrellpair.com Education 1992-1999: Georgia Institute of Technology, Atlanta, Georgia, USA March 1999: Graduated with Master of Science in Human Computer Interaction (MS-HCI)

More information

NAVSUP FLC NORFOLK PHILADELPHIA OFFICE

NAVSUP FLC NORFOLK PHILADELPHIA OFFICE NAVSUP FLC NORFOLK PHILADELPHIA OFFICE Gerald Furey Deputy for Small Business Ready. Resourceful. Responsive! 1 Report Documentation Page Form Approved OMB No. 0704-0188 Public reporting burden for the

More information

CHAPTER 2: USING THE CAMERA WITH THE APP

CHAPTER 2: USING THE CAMERA WITH THE APP TABLE OF CONTENTS OVERVIEW... 1 Front of your camera... 1 Back of your camera... 2 ACCESSORIES... 3 CHAPTER 1: Navigating the Mobile Application... 4 Device List: How to Use this Page... 4 My Messages:

More information

NEW CHALLENGES IN COLLABORATIVE VIRTUAL FACTORY DESIGN

NEW CHALLENGES IN COLLABORATIVE VIRTUAL FACTORY DESIGN 02 NEW CHALLENGES IN COLLABORATIVE VIRTUAL FACTORY DESIGN Stefano Mottura, Giampaolo Viganò, Luca Greci, Marco Sacco Emanuele Carpanzano Institute of Industrial Technologies and Automation National Research

More information

Distributed Virtual Reality: System Concepts for Cooperative Training and Commanding in Virtual Worlds

Distributed Virtual Reality: System Concepts for Cooperative Training and Commanding in Virtual Worlds Distributed Virtual Reality: System Concepts for Cooperative Training and Commanding in Virtual Worlds Eckhard Freund, Jürgen Rossmann Institute of Robotics Research, University of Dortmund Otto-Hahn-Str.

More information

DATA ITEM DESCRIPTION

DATA ITEM DESCRIPTION DATA ITEM DESCRIPTION Form Approved OMB NO.0704-0188 Public reporting burden for collection of this information is estimated to average 110 hours per response, including the time for reviewing instructions,

More information

Testing the Revised Moving Target Tutor

Testing the Revised Moving Target Tutor COLLEGE OF INFORMATION SCIENCES AND TECHNOLOGY THE PENNSYLVANIA STATE UNIVERSITY Testing the Revised Moving Target Tutor (evaluation of D2P/MTT 11/27/2012) Kuo-Chuan (Martin) Yeh, Frank E. Ritter, and

More information