Large Scale, Multi-Domain Analysis Using Systems Tool Kit (STK) and High Performance Computing (HPC)

Large Scale, Multi-Domain Analysis Using Systems Tool Kit (STK) and High Performance Computing (HPC)

Large Scale, Multi-Domain Analysis using Systems Tool Kit (STK) and High Performance Computing (HPC) David Meyer1 and Sylvain Dupont2 I. Background The space community faces a pool of scenarios and questions that are nearly as infinite as space itself, but when it comes to the matter of space surveillance networks (SSNs), all of these scenarios share two common problems. First, space is congested, contested, and competitive – the so-called “three Cs” [Schulte, 2011]. This environment is already a challenge to any currently operating SSN, and it will be increasingly challenging as the population of space objects continues to grow. Second, budgets (government and commercial alike) are constrained. The juxtaposition of these two problems raises such questions as: How can the performance of a given space surveillance network (SSN) architecture be quantified? Given reasonable constraints/bounds, what would be an optimal (best performance/least cost) SSN architecture? What, if any, common characteristics are there among optimal/nearly optimal architectures? If an organization needs to make an improvement, where should they place that effort for maximum effect? Although these example questions are straightforward - pertaining to fundamental matters of architecture performance – the answers can be elusive. At the Air Force Institute of Technology’s (AFIT) Center for Space Research and Assurance (CSRA), students are engaged in answering these questions and many others. While space research can (and preferably, should) be conducted in space, the cost of designing, building, and launching space vehicles is a powerful limiting factor on how much research can be accomplished in this manner. Therefore, computer-based modeling and simulation (M&S) has to be a significant part of any overall research effort. This paper will address the approach taken by the CSRA toward improving computer-based modeling and simulation (M&S), particularly by implementing AGI’s Systems Tool Kit (STK). II. Tools Regardless of the need that you are trying to satisfy – optimization, stochastic modeling, sensitivity analysis, vulnerability assessment, or just a quantification of how a current of future system might perform – three primary factors define the challenge for computer-based M&S. First, nearly all space scenarios are 1 Modeling and Simulation Team Lead, Center for Space Research and Assurance, Air Force Institute of Technology, 2950 Hobson Way Bldg 640, Wright-Patterson AFB, OH 45433 2 Director, Software Architecture, Analytical Graphics Inc., 220 Valley Creek Blvd, Exton, PA, 19341 computationally intensive and have long run-times. Second, since space is, as previously noted, congested, it is dangerous to attempt to draw conclusions from small scenarios that only evaluate one or two space objects; the problem is unlikely to scale well. Finally, a scenario may need to be run many (perhaps thousands) of times, particularly if you are performing optimization or stochastic modeling. If you combine these three factors, you can easily imagine that running a sufficiently large scenario a sufficient number of times would be a computational challenge that a desktop computer cannot handle in a timely manner (or perhaps even at all). If the required analysis is not feasible on a desktop, then what are the alternatives? The CSRA attacked this problem on three fronts: software, hardware and “peopleware”. A. Software AFIT space students need access to a space/multi-domain modeling software suite that enables them to develop quality results from their research. Such a software suite must incorporate physics-based modeling for orbital mechanics, orbit determination, communications, sensors, and other domains (e.g., aircraft or terrestrial vehicles). For the research described in this paper, CSRA selected AGI’s Systems Tool Kit (STK) and STK Engine as its primary modeling software suite and adopted Python and Linux scripting languages for automation. 1. STK and STK Engine STK is a multi-faceted commercial simulation software product that allows aerospace engineers to model and evaluate different designs for air, space, land, and sea systems and their interactions. The core concept of STK is a scenario. Scenarios are collections of objects that model a system. Objects in the scenario represent real-world entities (e.g., satellites, aircraft, places, area targets) or computational tools (e.g., access between two objects, constellations, coverage). As a desktop application (available on Microsoft Windows) STK provides a straightforward method for creating scenarios, without any programming expertise, using a graphical user interface (GUI). The desktop application also provides rich and accurate 3D visualization, which facilitates “debugging” the models assembled together. STK Engine can consume and manipulate scenarios created with the STK desktop application. STK Engine is multi-platform (Windows and Linux) and is equivalent to STK without the GUI layer. Figure 1 describes the architecture of STK and shows how the different layers are related. STK Desktop (Windows only) Graphical User Interface (Windows only) Object Browser Reports Graphs Tools Globe Manager External APIs Services Timeline Object Properties Message Viewer HTML Viewer UI Framework UI Online Plugins SDF STK Engine (Windows & Linux) Terrain Server Bing Imagery STK Objects Engine TLEs/GPS Standard Object Moving Objects Locations Plugins Catalog Satellite, Ground Vehicle, Launch Vehicle, Aircraft, Place, Facility, Area/Line Target, Ship, Missile, Astrogator, Aviator Target, Planet, Star Analysis Communications Connect Access, Coverage, Chains, Constellation, Transmitter, Receiver, Link, Scalability AdvCAT, Volumetric Antenna, Radar, Sensor Extension Cluster Computing Graphics Object 3D Globe 2D Map GPU Analysis Camera Model Terrain Imagery Primitives Animation etc. COM, C++, Java, .NET, python, Matlab, Rendering Object Services Analytical Services Object Management Data Providers Models Analysis Workbench Core Services Notification I/O Units Algorithms Data Interoperability Licensing Terrain Persistence (KML, ArcGIS, CZML) Figure 1. STK Architecture At the high level, we can describe STK as consisting of two parts: 1. The Graphical User Interface (GUI) layer includes the various windows and user interfaces. This layer is only available on Windows. 2. STK Engine contains the application business logic and analytical capabilities. This layer is multi- platform and is available on both Windows and Linux. The STK Engine architecture can be further described as consisting of STK Objects, the graphics layer, and the Services (Object, Analytical, and Core). o STK Objects provide the simulation objects composed into scenarios. The services provided by the underlying layers dictate the implementation of these objects. o The graphics layer provides the 2D and 3D representations of the world and the simulation. o Finally, the Object, Analytical, and Core Services are the foundation and provide utilities and analytical capabilities assembled into the STK objects. Since STK Engine does not have a GUI, it can receive interactions from a variety of application programming interfaces (APIs), including Python, MATLAB, and other programming languages such as Java and .NET. In addition to excluding a GUI, STK Engine provides a “NoGraphics” mode, which excludes the graphics layer at run-time. This mode removes all dependencies on the graphics card and graphics libraries. Unburdened by a GUI or graphics layer, STK Engine is well suited for running on headless compute nodes, running Linux. An STK Engine deployment on a node is comprised of STK Engine libraries and the associated data files; the process does not require root access. Flexible licensing available for STK and STK Engine also allows for the easy deployment of licenses. This architecture provides the basis for a very efficient workflow, as described in Figure 2. Refine Scenario & Python Script Compute Nodes Compute Nodes STK Scenario Python Files Scripts Desktop PBS Job Scheduler Compute Nodes Compute Nodes STK Engine Figure 2. Workflow This workflow facilitates the creation of multi-domain simulations that can then run on high-performance clusters: 1) An engineer uses the STK desktop application, running on Windows, to design the scenario. The GUI and rich visualization make it easy to define the simulation and iterate until you obtain the achieved system representation. No programming expertise is required at this step. While working with the GUI to perform interactive scenario creation (on a desktop computer) is useful to define a problem, it is not a practical approach for algorithms that require a large number of runs. 2) The scenario is tweaked using scripts written in Python. The scripts apply the various inputs to the model and then collect the outputs. These scripts are the “glue”, varying the scenario parameters and extracting the results. You can execute and debug the scripts on Windows against the STK desktop application and then execute them against STK Engine. 3) An engineer deploys the scenario, with the accompanying scripts, to an HPC cluster running STK Engine on Linux. 4) High-level algorithms drive those scripts to implement various techniques (e.g., design of experiment, optimization, statistical, and stochastic methods). You can parallelize these runs to a massive degree, using many instances of STK Engine on a large number of compute nodes. 2. Python Most people are much more comfortable using a GUI than writing a script to drive a software

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    17 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us