Sample records for java pathfinder jpf

  1. Java PathFinder User Guide

    NASA Technical Reports Server (NTRS)

    Havelund, Klaus

    1999-01-01

    The JAVA PATHFINDER, JPF, is a translator from a subset of JAVA 1.0 to PROMELA, the programming language of the SPIN model checker. The purpose of JPF is to establish a framework for verification and debugging of JAVA programming based on model checking. The main goal is to automate program verification such that a programmer can apply it in the daily work without the need for a specialist to manually reformulate a program into a different notation in order to analyze the program. The system is especially suited for analyzing multi-threaded JAVA applications, where normal testing usually falls short. The system can find deadlocks and violations of boolean assertions stated by the programmer in a special assertion language. This document explains how to Use JPF.

  2. Java PathFinder: A Translator From Java to Promela

    NASA Technical Reports Server (NTRS)

    Havelund, Klaus

    1999-01-01

    JAVA PATHFINDER, JPF, is a prototype translator from JAVA to PROMELA, the modeling language of the SPIN model checker. JPF is a product of a major effort by the Automated Software Engineering group at NASA Ames to make model checking technology part of the software process. Experience has shown that severe bugs can be found in final code using this technique, and that automated translation from a programming language to a modeling language like PROMELA can help reducing the effort required.

  3. Model Checking Real Time Java Using Java PathFinder

    NASA Technical Reports Server (NTRS)

    Lindstrom, Gary; Mehlitz, Peter C.; Visser, Willem

    2005-01-01

    The Real Time Specification for Java (RTSJ) is an augmentation of Java for real time applications of various degrees of hardness. The central features of RTSJ are real time threads; user defined schedulers; asynchronous events, handlers, and control transfers; a priority inheritance based default scheduler; non-heap memory areas such as immortal and scoped, and non-heap real time threads whose execution is not impeded by garbage collection. The Robust Software Systems group at NASA Ames Research Center has JAVA PATHFINDER (JPF) under development, a Java model checker. JPF at its core is a state exploring JVM which can examine alternative paths in a Java program (e.g., via backtracking) by trying all nondeterministic choices, including thread scheduling order. This paper describes our implementation of an RTSJ profile (subset) in JPF, including requirements, design decisions, and current implementation status. Two examples are analyzed: jobs on a multiprogramming operating system, and a complex resource contention example involving autonomous vehicles crossing an intersection. The utility of JPF in finding logic and timing errors is illustrated, and the remaining challenges in supporting all of RTSJ are assessed.

  4. Automatic Extraction of JPF Options and Documentation

    NASA Technical Reports Server (NTRS)

    Luks, Wojciech; Tkachuk, Oksana; Buschnell, David

    2011-01-01

    Documenting existing Java PathFinder (JPF) projects or developing new extensions is a challenging task. JPF provides a platform for creating new extensions and relies on key-value properties for their configuration. Keeping track of all possible options and extension mechanisms in JPF can be difficult. This paper presents jpf-autodoc-options, a tool that automatically extracts JPF projects options and other documentation-related information, which can greatly help both JPF users and developers of JPF extensions.

  5. Towards a Framework for Generating Tests to Satisfy Complex Code Coverage in Java Pathfinder

    NASA Technical Reports Server (NTRS)

    Staats, Matt

    2009-01-01

    We present work on a prototype tool based on the JavaPathfinder (JPF) model checker for automatically generating tests satisfying the MC/DC code coverage criterion. Using the Eclipse IDE, developers and testers can quickly instrument Java source code with JPF annotations covering all MC/DC coverage obligations, and JPF can then be used to automatically generate tests that satisfy these obligations. The prototype extension to JPF enables various tasks useful in automatic test generation to be performed, such as test suite reduction and execution of generated tests.

  6. JAVA PathFinder

    NASA Technical Reports Server (NTRS)

    Mehhtz, Peter

    2005-01-01

    JPF is an explicit state software model checker for Java bytecode. Today, JPF is a swiss army knife for all sort of runtime based verification purposes. This basically means JPF is a Java virtual machine that executes your program not just once (like a normal VM), but theoretically in all possible ways, checking for property violations like deadlocks or unhandled exceptions along all potential execution paths. If it finds an error, JPF reports the whole execution that leads to it. Unlike a normal debugger, JPF keeps track of every step how it got to the defect.

  7. Model Checker for Java Programs

    NASA Technical Reports Server (NTRS)

    Visser, Willem

    2007-01-01

    Java Pathfinder (JPF) is a verification and testing environment for Java that integrates model checking, program analysis, and testing. JPF consists of a custom-made Java Virtual Machine (JVM) that interprets bytecode, combined with a search interface to allow the complete behavior of a Java program to be analyzed, including interleavings of concurrent programs. JPF is implemented in Java, and its architecture is highly modular to support rapid prototyping of new features. JPF is an explicit-state model checker, because it enumerates all visited states and, therefore, suffers from the state-explosion problem inherent in analyzing large programs. It is suited to analyzing programs less than 10kLOC, but has been successfully applied to finding errors in concurrent programs up to 100kLOC. When an error is found, a trace from the initial state to the error is produced to guide the debugging. JPF works at the bytecode level, meaning that all of Java can be model-checked. By default, the software checks for all runtime errors (uncaught exceptions), assertions violations (supports Java s assert), and deadlocks. JPF uses garbage collection and symmetry reductions of the heap during model checking to reduce state-explosion, as well as dynamic partial order reductions to lower the number of interleavings analyzed. JPF is capable of symbolic execution of Java programs, including symbolic execution of complex data such as linked lists and trees. JPF is extensible as it allows for the creation of listeners that can subscribe to events during searches. The creation of dedicated code to be executed in place of regular classes is supported and allows users to easily handle native calls and to improve the efficiency of the analysis.

  8. Model Checking JAVA Programs Using Java Pathfinder

    NASA Technical Reports Server (NTRS)

    Havelund, Klaus; Pressburger, Thomas

    2000-01-01

    This paper describes a translator called JAVA PATHFINDER from JAVA to PROMELA, the "programming language" of the SPIN model checker. The purpose is to establish a framework for verification and debugging of JAVA programs based on model checking. This work should be seen in a broader attempt to make formal methods applicable "in the loop" of programming within NASA's areas such as space, aviation, and robotics. Our main goal is to create automated formal methods such that programmers themselves can apply these in their daily work (in the loop) without the need for specialists to manually reformulate a program into a different notation in order to analyze the program. This work is a continuation of an effort to formally verify, using SPIN, a multi-threaded operating system programmed in Lisp for the Deep-Space 1 spacecraft, and of previous work in applying existing model checkers and theorem provers to real applications.

  9. Verification Tools Secure Online Shopping, Banking

    NASA Technical Reports Server (NTRS)

    2010-01-01

    Just like rover or rocket technology sent into space, the software that controls these technologies must be extensively tested to ensure reliability and effectiveness. Ames Research Center invented the open-source Java Pathfinder (JPF) toolset for the deep testing of Java-based programs. Fujitsu Labs of America Inc., based in Sunnyvale, California, improved the capabilities of the JPF Symbolic Pathfinder tool, establishing the tool as a means of thoroughly testing the functionality and security of Web-based Java applications such as those used for Internet shopping and banking.

  10. Interface Generation and Compositional Verification in JavaPathfinder

    NASA Technical Reports Server (NTRS)

    Giannakopoulou, Dimitra; Pasareanu, Corina

    2009-01-01

    We present a novel algorithm for interface generation of software components. Given a component, our algorithm uses learning techniques to compute a permissive interface representing legal usage of the component. Unlike our previous work, this algorithm does not require knowledge about the component s environment. Furthermore, in contrast to other related approaches, our algorithm computes permissive interfaces even in the presence of non-determinism in the component. Our algorithm is implemented in the JavaPathfinder model checking framework for UML statechart components. We have also added support for automated assume-guarantee style compositional verification in JavaPathfinder, using component interfaces. We report on the application of the presented approach to the generation of interfaces for flight software components.

  11. Symbolic PathFinder: Symbolic Execution of Java Bytecode

    NASA Technical Reports Server (NTRS)

    Pasareanu, Corina S.; Rungta, Neha

    2010-01-01

    Symbolic Pathfinder (SPF) combines symbolic execution with model checking and constraint solving for automated test case generation and error detection in Java programs with unspecified inputs. In this tool, programs are executed on symbolic inputs representing multiple concrete inputs. Values of variables are represented as constraints generated from the analysis of Java bytecode. The constraints are solved using off-the shelf solvers to generate test inputs guaranteed to achieve complex coverage criteria. SPF has been used successfully at NASA, in academia, and in industry.

  12. Test-Case Generation using an Explicit State Model Checker Final Report

    NASA Technical Reports Server (NTRS)

    Heimdahl, Mats P. E.; Gao, Jimin

    2003-01-01

    In the project 'Test-Case Generation using an Explicit State Model Checker' we have extended an existing tools infrastructure for formal modeling to export Java code so that we can use the NASA Ames tool Java Pathfinder (JPF) for test case generation. We have completed a translator from our source language RSML(exp -e) to Java and conducted initial studies of how JPF can be used as a testing tool. In this final report, we provide a detailed description of the translation approach as implemented in our tools.

  13. Introduction of Virtualization Technology to Multi-Process Model Checking

    NASA Technical Reports Server (NTRS)

    Leungwattanakit, Watcharin; Artho, Cyrille; Hagiya, Masami; Tanabe, Yoshinori; Yamamoto, Mitsuharu

    2009-01-01

    Model checkers find failures in software by exploring every possible execution schedule. Java PathFinder (JPF), a Java model checker, has been extended recently to cover networked applications by caching data transferred in a communication channel. A target process is executed by JPF, whereas its peer process runs on a regular virtual machine outside. However, non-deterministic target programs may produce different output data in each schedule, causing the cache to restart the peer process to handle the different set of data. Virtualization tools could help us restore previous states of peers, eliminating peer restart. This paper proposes the application of virtualization technology to networked model checking, concentrating on JPF.

  14. Addressing Dynamic Issues of Program Model Checking

    NASA Technical Reports Server (NTRS)

    Lerda, Flavio; Visser, Willem

    2001-01-01

    Model checking real programs has recently become an active research area. Programs however exhibit two characteristics that make model checking difficult: the complexity of their state and the dynamic nature of many programs. Here we address both these issues within the context of the Java PathFinder (JPF) model checker. Firstly, we will show how the state of a Java program can be encoded efficiently and how this encoding can be exploited to improve model checking. Next we show how to use symmetry reductions to alleviate some of the problems introduced by the dynamic nature of Java programs. Lastly, we show how distributed model checking of a dynamic program can be achieved, and furthermore, how dynamic partitions of the state space can improve model checking. We support all our findings with results from applying these techniques within the JPF model checker.

  15. Propel: Tools and Methods for Practical Source Code Model Checking

    NASA Technical Reports Server (NTRS)

    Mansouri-Samani, Massoud; Mehlitz, Peter; Markosian, Lawrence; OMalley, Owen; Martin, Dale; Moore, Lantz; Penix, John; Visser, Willem

    2003-01-01

    The work reported here is an overview and snapshot of a project to develop practical model checking tools for in-the-loop verification of NASA s mission-critical, multithreaded programs in Java and C++. Our strategy is to develop and evaluate both a design concept that enables the application of model checking technology to C++ and Java, and a model checking toolset for C++ and Java. The design concept and the associated model checking toolset is called Propel. It builds upon the Java PathFinder (JPF) tool, an explicit state model checker for Java applications developed by the Automated Software Engineering group at NASA Ames Research Center. The design concept that we are developing is Design for Verification (D4V). This is an adaption of existing best design practices that has the desired side-effect of enhancing verifiability by improving modularity and decreasing accidental complexity. D4V, we believe, enhances the applicability of a variety of V&V approaches; we are developing the concept in the context of model checking. The model checking toolset, Propel, is based on extending JPF to handle C++. Our principal tasks in developing the toolset are to build a translator from C++ to Java, productize JPF, and evaluate the toolset in the context of D4V. Through all these tasks we are testing Propel capabilities on customer applications.

  16. jFuzz: A Concolic Whitebox Fuzzer for Java

    NASA Technical Reports Server (NTRS)

    Jayaraman, Karthick; Harvison, David; Ganesh, Vijay; Kiezun, Adam

    2009-01-01

    We present jFuzz, a automatic testing tool for Java programs. jFuzz is a concolic whitebox fuzzer, built on the NASA Java PathFinder, an explicit-state Java model checker, and a framework for developing reliability and analysis tools for Java. Starting from a seed input, jFuzz automatically and systematically generates inputs that exercise new program paths. jFuzz uses a combination of concrete and symbolic execution, and constraint solving. Time spent on solving constraints can be significant. We implemented several well-known optimizations and name-independent caching, which aggressively normalizes the constraints to reduce the number of calls to the constraint solver. We present preliminary results due to the optimizations, and demonstrate the effectiveness of jFuzz in creating good test inputs. The source code of jFuzz is available as part of the NASA Java PathFinder. jFuzz is intended to be a research testbed for investigating new testing and analysis techniques based on concrete and symbolic execution. The source code of jFuzz is available as part of the NASA Java PathFinder.

  17. Finding Feasible Abstract Counter-Examples

    NASA Technical Reports Server (NTRS)

    Pasareanu, Corina S.; Dwyer, Matthew B.; Visser, Willem; Clancy, Daniel (Technical Monitor)

    2002-01-01

    A strength of model checking is its ability to automate the detection of subtle system errors and produce traces that exhibit those errors. Given the high computational cost of model checking most researchers advocate the use of aggressive property-preserving abstractions. Unfortunately, the more aggressively a system is abstracted the more infeasible behavior it will have. Thus, while abstraction enables efficient model checking it also threatens the usefulness of model checking as a defect detection tool, since it may be difficult to determine whether a counter-example is feasible and hence worth developer time to analyze. We have explored several strategies for addressing this problem by extending an explicit-state model checker, Java PathFinder (JPF), to search for and analyze counter-examples in the presence of abstractions. We demonstrate that these techniques effectively preserve the defect detection ability of model checking in the presence of aggressive abstraction by applying them to check properties of several abstracted multi-threaded Java programs. These new capabilities are not specific to JPF and can be easily adapted to other model checking frameworks; we describe how this was done for the Bandera toolset.

  18. Efficient Translation of LTL Formulae into Buchi Automata

    NASA Technical Reports Server (NTRS)

    Giannakopoulou, Dimitra; Lerda, Flavio

    2001-01-01

    Model checking is a fully automated technique for checking that a system satisfies a set of required properties. With explicit-state model checkers, properties are typically defined in linear-time temporal logic (LTL), and are translated into B chi automata in order to be checked. This report presents how we have combined and improved existing techniques to obtain an efficient LTL to B chi automata translator. In particular, we optimize the core of existing tableau-based approaches to generate significantly smaller automata. Our approach has been implemented and is being released as part of the Java PathFinder software (JPF), an explicit state model checker under development at the NASA Ames Research Center.

  19. Environment Modeling Using Runtime Values for JPF-Android

    NASA Technical Reports Server (NTRS)

    van der Merwe, Heila; Tkachuk, Oksana; Nel, Seal; van der Merwe, Brink; Visser, Willem

    2015-01-01

    Software applications are developed to be executed in a specific environment. This environment includes external native libraries to add functionality to the application and drivers to fire the application execution. For testing and verification, the environment of an application is simplified abstracted using models or stubs. Empty stubs, returning default values, are simple to generate automatically, but they do not perform well when the application expects specific return values. Symbolic execution is used to find input parameters for drivers and return values for library stubs, but it struggles to detect the values of complex objects. In this work-in-progress paper, we explore an approach to generate drivers and stubs based on values collected during runtime instead of using default values. Entry-points and methods that need to be modeled are instrumented to log their parameters and return values. The instrumented applications are then executed using a driver and instrumented libraries. The values collected during runtime are used to generate driver and stub values on- the-fly that improve coverage during verification by enabling the execution of code that previously crashed or was missed. We are implementing this approach to improve the environment model of JPF-Android, our model checking and analysis tool for Android applications.

  20. Verification of Java Programs using Symbolic Execution and Invariant Generation

    NASA Technical Reports Server (NTRS)

    Pasareanu, Corina; Visser, Willem

    2004-01-01

    Software verification is recognized as an important and difficult problem. We present a norel framework, based on symbolic execution, for the automated verification of software. The framework uses annotations in the form of method specifications an3 loop invariants. We present a novel iterative technique that uses invariant strengthening and approximation for discovering these loop invariants automatically. The technique handles different types of data (e.g. boolean and numeric constraints, dynamically allocated structures and arrays) and it allows for checking universally quantified formulas. Our framework is built on top of the Java PathFinder model checking toolset and it was used for the verification of several non-trivial Java programs.

  1. Automatic Testcase Generation for Flight Software

    NASA Technical Reports Server (NTRS)

    Bushnell, David Henry; Pasareanu, Corina; Mackey, Ryan M.

    2008-01-01

    The TacSat3 project is applying Integrated Systems Health Management (ISHM) technologies to an Air Force spacecraft for operational evaluation in space. The experiment will demonstrate the effectiveness and cost of ISHM and vehicle systems management (VSM) technologies through onboard operation for extended periods. We present two approaches to automatic testcase generation for ISHM: 1) A blackbox approach that views the system as a blackbox, and uses a grammar-based specification of the system's inputs to automatically generate *all* inputs that satisfy the specifications (up to prespecified limits); these inputs are then used to exercise the system. 2) A whitebox approach that performs analysis and testcase generation directly on a representation of the internal behaviour of the system under test. The enabling technologies for both these approaches are model checking and symbolic execution, as implemented in the Ames' Java PathFinder (JPF) tool suite. Model checking is an automated technique for software verification. Unlike simulation and testing which check only some of the system executions and therefore may miss errors, model checking exhaustively explores all possible executions. Symbolic execution evaluates programs with symbolic rather than concrete values and represents variable values as symbolic expressions. We are applying the blackbox approach to generating input scripts for the Spacecraft Command Language (SCL) from Interface and Control Systems. SCL is an embedded interpreter for controlling spacecraft systems. TacSat3 will be using SCL as the controller for its ISHM systems. We translated the SCL grammar into a program that outputs scripts conforming to the grammars. Running JPF on this program generates all legal input scripts up to a prespecified size. Script generation can also be targeted to specific parts of the grammar of interest to the developers. These scripts are then fed to the SCL Executive. ICS's in-house coverage tools will be run to

  2. Statechart Analysis with Symbolic PathFinder

    NASA Technical Reports Server (NTRS)

    Pasareanu, Corina S.

    2012-01-01

    We report here on our on-going work that addresses the automated analysis and test case generation for software systems modeled using multiple Statechart formalisms. The work is motivated by large programs such as NASA Exploration, that involve multiple systems that interact via safety-critical protocols and are designed with different Statechart variants. To verify these safety-critical systems, we have developed Polyglot, a framework for modeling and analysis of model-based software written using different Statechart formalisms. Polyglot uses a common intermediate representation with customizable Statechart semantics and leverages the analysis and test generation capabilities of the Symbolic PathFinder tool. Polyglot is used as follows: First, the structure of the Statechart model (expressed in Matlab Stateflow or Rational Rhapsody) is translated into a common intermediate representation (IR). The IR is then translated into Java code that represents the structure of the model. The semantics are provided as "pluggable" modules.

  3. Pathfinder-Plus on flight in Hawaii

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Pathfinder-Plus on a flight over Hawaii in 1998. Pathfinder was a remotely controlled, solar-powered flying wing, designed and built as a proof-of-concept vehicle for a much larger aircraft capable of flying at extremely high altitudes for weeks at a time. It was built by AeroVironment, Inc., a California company that developed the human-powered Gossamer Condor and Gossamer Albatross lightweight aircraft during the 1970s, and later made the solar-electric powered Gossamer Penguin and Solar Challenger. The basic configuration and concepts for Pathfinder were first realized with the HALSOL (High Altitude Solar) aircraft, built in 1983 by AeroVironment and the Lawrence Livermore Laboratory. Pathfinder was constructed of advanced composites, plastics, and foam, and despite a wingspan of nearly 100 feet, it weighed only about 600 pounds. Pathfinder was one of several unpiloted prototypes under study by NASA's ERAST (Environmental Research Aircraft and Sensor Technology) program, a NASA-industry alliance which is helping develop advanced technologies that will enable aircraft to study the earth's environment during extremely long flights at altitudes in excess of 100,000 feet. (See project description below for Pathfinder's conversion to Pathfinder Plus.) In 1998, the Pathfinder solar-powered flying wing (see its photographs and project description) was modified into the longer-winged Pathfinder Plus configuration and on Aug. 6, 1998, Pathfinder Plus set an altitude record (for propeller-driven aircraft) of approximately 80,285 feet at the Pacific Missile Range Facility. The goal of the Pathfinder Plus flights was to validate new solar, aerodynamic, propulsion, and systems technology developed for its successor, the Centurion, which was designed to reach and sustain altitudes in the 100,000-foot range. The Centurion was succeeded by the Helios Prototype with a goal of reaching and sustaining flight at an altitude of 100,000 feet and flying non-stop for at least 4 days

  4. Pathfinder-Plus on flight over Hawaii

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Pathfinder-Plus flying over the Hawaiian Islands in 1998 with Ni'ihau Island in the background. Pathfinder was a remotely controlled, solar-powered flying wing, designed and built as a proof-of-concept vehicle for a much larger aircraft capable of flying at extremely high altitudes for weeks at a time. It was built by AeroVironment, Inc., a California company that developed the human-powered Gossamer Condor and Gossamer Albatross lightweight aircraft during the 1970s, and later made the solar-electric powered Gossamer Penguin and Solar Challenger. The basic configuration and concepts for Pathfinder were first realized with the HALSOL (High Altitude Solar) aircraft, built in 1983 by AeroVironment and the Lawrence Livermore Laboratory. Pathfinder was constructed of advanced composites, plastics, and foam, and despite a wingspan of nearly 100 feet, it weighed only about 600 pounds. Pathfinder was one of several unpiloted prototypes under study by NASA's ERAST (Environmental Research Aircraft and Sensor Technology) program, a NASA-industry alliance which is helping develop advanced technologies that will enable aircraft to study the earth's environment during extremely long flights at altitudes in excess of 100,000 feet. (See project description below for Pathfinder's conversion to Pathfinder Plus.) In 1998, the Pathfinder solar-powered flying wing (see its photographs and project description) was modified into the longer-winged Pathfinder Plus configuration and on Aug. 6, 1998, Pathfinder Plus set an altitude record (for propeller-driven aircraft) of approximately 80,285 feet at the Pacific Missile Range Facility. The goal of the Pathfinder Plus flights was to validate new solar, aerodynamic, propulsion, and systems technology developed for its successor, the Centurion, which was designed to reach and sustain altitudes in the 100,000-foot range. The Centurion was succeeded by the Helios Prototype with a goal of reaching and sustaining flight at an altitude of 100

  5. Pathfinder-Plus on flight over Hawaii

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Pathfinder-Plus on flight over Hawaii. Pathfinder was a remotely controlled, solar-powered flying wing, designed and built as a proof-of-concept vehicle for a much larger aircraft capable of flying at extremely high altitudes for weeks at a time. It was built by AeroVironment, Inc., a California company that developed the human-powered Gossamer Condor and Gossamer Albatross lightweight aircraft during the 1970s, and later made the solar-electric powered Gossamer Penguin and Solar Challenger. The basic configuration and concepts for Pathfinder were first realized with the HALSOL (High Altitude Solar) aircraft, built in 1983 by AeroVironment and the Lawrence Livermore Laboratory. Pathfinder was constructed of advanced composites, plastics, and foam, and despite a wingspan of nearly 100 feet, it weighed only about 600 pounds. Pathfinder was one of several unpiloted prototypes under study by NASA's ERAST (Environmental Research Aircraft and Sensor Technology) program, a NASA-industry alliance which is helping develop advanced technologies that will enable aircraft to study the earth's environment during extremely long flights at altitudes in excess of 100,000 feet. (See project description below for Pathfinder's conversion to Pathfinder Plus.) In 1998, the Pathfinder solar-powered flying wing (see its photographs and project description) was modified into the longer-winged Pathfinder Plus configuration and on Aug. 6, 1998, Pathfinder Plus set an altitude record (for propeller-driven aircraft) of approximately 80,285 feet at the Pacific Missile Range Facility. The goal of the Pathfinder Plus flights was to validate new solar, aerodynamic, propulsion, and systems technology developed for its successor, the Centurion, which was designed to reach and sustain altitudes in the 100,000-foot range. The Centurion was succeeded by the Helios Prototype with a goal of reaching and sustaining flight at an altitude of 100,000 feet and flying non-stop for at least 4 days above 50

  6. Using Runtime Analysis to Guide Model Checking of Java Programs

    NASA Technical Reports Server (NTRS)

    Havelund, Klaus; Norvig, Peter (Technical Monitor)

    2001-01-01

    This paper describes how two runtime analysis algorithms, an existing data race detection algorithm and a new deadlock detection algorithm, have been implemented to analyze Java programs. Runtime analysis is based on the idea of executing the program once. and observing the generated run to extract various kinds of information. This information can then be used to predict whether other different runs may violate some properties of interest, in addition of course to demonstrate whether the generated run itself violates such properties. These runtime analyses can be performed stand-alone to generate a set of warnings. It is furthermore demonstrated how these warnings can be used to guide a model checker, thereby reducing the search space. The described techniques have been implemented in the b e grown Java model checker called PathFinder.

  7. Pathfinder Rear Ramp

    NASA Image and Video Library

    1997-07-06

    NASA's Mars Pathfinder's rear rover ramp can be seen successfully unfurled in this image, taken at the end of Sol 2 by the Imager for Mars Pathfinder (IMP). This ramp was later used for the deployment of the microrover Sojourner, which occurred at the end of Sol 2. Areas of a lander petal and deflated airbag are visible at left. The image helped Pathfinder scientists determine that the rear ramp was the one to use for rover deployment. At upper right is the rock dubbed "Barnacle Bill," which Sojourner will later study. http://photojournal.jpl.nasa.gov/catalog/PIA00627

  8. Pathfinder-Plus on a flight in Hawaii

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Pathfinder-Plus on a flight in 1998 over Hawaiian waters. Pathfinder was a remotely controlled, solar-powered flying wing, designed and built as a proof-of-concept vehicle for a much larger aircraft capable of flying at extremely high altitudes for weeks at a time. It was built by AeroVironment, Inc., a California company that developed the human-powered Gossamer Condor and Gossamer Albatross lightweight aircraft during the 1970s, and later made the solar-electric powered Gossamer Penguin and Solar Challenger. The basic configuration and concepts for Pathfinder were first realized with the HALSOL (High Altitude Solar) aircraft, built in 1983 by AeroVironment and the Lawrence Livermore Laboratory. Pathfinder was constructed of advanced composites, plastics, and foam, and despite a wingspan of nearly 100 feet, it weighed only about 600 pounds. Pathfinder was one of several unpiloted prototypes under study by NASA's ERAST (Environmental Research Aircraft and Sensor Technology) program, a NASA-industry alliance which is helping develop advanced technologies that will enable aircraft to study the earth's environment during extremely long flights at altitudes in excess of 100,000 feet. (See project description below for Pathfinder's conversion to Pathfinder Plus.) In 1998, the Pathfinder solar-powered flying wing (see its photographs and project description) was modified into the longer-winged Pathfinder Plus configuration and on Aug. 6, 1998, Pathfinder Plus set an altitude record (for propeller-driven aircraft) of approximately 80,285 feet at the Pacific Missile Range Facility. The goal of the Pathfinder Plus flights was to validate new solar, aerodynamic, propulsion, and systems technology developed for its successor, the Centurion, which was designed to reach and sustain altitudes in the 100,000-foot range. The Centurion was succeeded by the Helios Prototype with a goal of reaching and sustaining flight at an altitude of 100,000 feet and flying non-stop for at least

  9. Pathfinder-Plus on flight over Hawaiian Islands

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Pathfinder-Plus on flight over Hawaiian Islands in 1998. Pathfinder was a remotely controlled, solar-powered flying wing, designed and built as a proof-of-concept vehicle for a much larger aircraft capable of flying at extremely high altitudes for weeks at a time. It was built by AeroVironment, Inc., a California company that developed the human-powered Gossamer Condor and Gossamer Albatross lightweight aircraft during the 1970s, and later made the solar-electric powered Gossamer Penguin and Solar Challenger. The basic configuration and concepts for Pathfinder were first realized with the HALSOL (High Altitude Solar) aircraft, built in 1983 by AeroVironment and the Lawrence Livermore Laboratory. Pathfinder was constructed of advanced composites, plastics, and foam, and despite a wingspan of nearly 100 feet, it weighed only about 600 pounds. Pathfinder was one of several unpiloted prototypes under study by NASA's ERAST (Environmental Research Aircraft and Sensor Technology) program, a NASA-industry alliance which is helping develop advanced technologies that will enable aircraft to study the earth's environment during extremely long flights at altitudes in excess of 100,000 feet. (See project description below for Pathfinder's conversion to Pathfinder Plus.) In 1998, the Pathfinder solar-powered flying wing (see its photographs and project description) was modified into the longer-winged Pathfinder Plus configuration and on Aug. 6, 1998, Pathfinder Plus set an altitude record (for propeller-driven aircraft) of approximately 80,285 feet at the Pacific Missile Range Facility. The goal of the Pathfinder Plus flights was to validate new solar, aerodynamic, propulsion, and systems technology developed for its successor, the Centurion, which was designed to reach and sustain altitudes in the 100,000-foot range. The Centurion was succeeded by the Helios Prototype with a goal of reaching and sustaining flight at an altitude of 100,000 feet and flying non-stop for at least 4

  10. Martian Surface & Pathfinder Airbags

    NASA Technical Reports Server (NTRS)

    1997-01-01

    This image of the Martian surface was taken in the afternoon of Mars Pathfinder's first day on Mars. Taken by the Imager for Mars Pathfinder (IMP camera), the image shows a diversity of rocks strewn in the foreground. A hill is visible in the distance (the notch within the hill is an image artifact). Airbags are seen at the lower right.

    The IMP is a stereo imaging system with color capability provided by 24 selectable filters -- twelve filters per 'eye.' It stands 1.8 meters above the Martian surface, and has a resolution of two millimeters at a range of two meters.

    Mars Pathfinder is the second in NASA's Discovery program of low-cost spacecraft with highly focused science goals. The Jet Propulsion Laboratory, Pasadena, CA, developed and manages the Mars Pathfinder mission for NASA's Office of Space Science, Washington, D.C. JPL is an operating division of the California Institute of Technology (Caltech). The Imager for Mars Pathfinder (IMP) was developed by the University of Arizona Lunar and Planetary Laboratory under contract to JPL. Peter Smith is the Principal Investigator.

  11. Mars Pathfinder Status at Launch

    NASA Technical Reports Server (NTRS)

    Spear, A. J.; Freeman, Delma C., Jr.; Braun, Robert D.

    1996-01-01

    The Mars Pathfinder Flight System is in final test, assembly and launch preparations at the Kennedy Space Center in Florida. Launch is scheduled for 2 Dec. 1996. The Flight System development, in particular the Entry, Descent, and Landing (EDL) system, was a major team effort involving JPL, other NASA centers and industry. This paper provides a summary Mars Pathfinder description and status at launch. In addition, a section by NASA's Langley Research Center, a key EDL contributor, is provided on their support to Mars Pathfinder. This section is included as an example of the work performed by Pathfinder team members outside JPL.

  12. MESUR Pathfinder Science Investigations

    NASA Technical Reports Server (NTRS)

    Golombek, M.

    1993-01-01

    The MESUR (Mars Environmental Survey) Pathfinder mission is the first Discovery mission planned for launch in 1996. MESUR Pathfinder is designed as an engineering demonstration of the entry, descent and landing approach to be employed by the follow-on MESUR Network mission, which will land of order 10 small stations on the surface of Mars to investigate interior, atmospheric and surface properties. Pathfinder is a small Mars lander, equipped with a microrover to deploy instruments and explore the local landing site. Instruments selected for Pathfinder include a surface imager on a 1 m pop-up mast (stereo with spectral filters), an atmospheric structure instrument/surface meteorology package, and an alpha proton x-ray spectrometer. The microrover will carry the alpha proton x-ray spectrometer to a number of different rocks and surface materials and provide close-up imaging...

  13. Pathfinder-Plus takes off on flight in Hawaii

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Pathfinder-Plus on a flight over Hawaii in 1998. Pathfinder was a remotely controlled, solar-powered flying wing, designed and built as a proof-of-concept vehicle for a much larger aircraft capable of flying at extremely high altitudes for weeks at a time. It was built by AeroVironment, Inc., a California company that developed the human-powered Gossamer Condor and Gossamer Albatross lightweight aircraft during the 1970s, and later made the solar-electric powered Gossamer Penguin and Solar Challenger. The basic configuration and concepts for Pathfinder were first realized with the HALSOL (High Altitude Solar) aircraft, built in 1983 by AeroVironment and the Lawrence Livermore Laboratory. Pathfinder was constructed of advanced composites, plastics, and foam, and despite a wingspan of nearly 100 feet, it weighed only about 600 pounds. Pathfinder was one of several unpiloted prototypes under study by NASA's ERAST (Environmental Research Aircraft and Sensor Technology) program, a NASA-industry alliance which is helping develop advanced technologies that will enable aircraft to study the earth's environment during extremely long flights at altitudes in excess of 100,000 feet. (See project description below for Pathfinder's conversion to Pathfinder Plus.) In 1998, the Pathfinder solar-powered flying wing (see its photographs and project description) was modified into the longer-winged Pathfinder Plus configuration and on Aug. 6, 1998, Pathfinder Plus set an altitude record (for propeller-driven aircraft) of approximately 80,285 feet at the Pacific Missile Range Facility. The goal of the Pathfinder Plus flights was to validate new solar, aerodynamic, propulsion, and systems technology developed for its successor, the Centurion, which was designed to reach and sustain altitudes in the 100,000-foot range. The Centurion was succeeded by the Helios Prototype with a goal of reaching and sustaining flight at an altitude of 100,000 feet and flying non-stop for at least 4 days

  14. LISA Pathfinder

    NASA Technical Reports Server (NTRS)

    Stebbins, Robin

    2008-01-01

    USA Pathfinder is a space mission dedicated to demonstrating technology for the Laser Interferometer Space Antenna (LISA). LISA is a joint ESA/NASA mission to detect low-frequency gravitational waves on the 0.0001 to 0.1 Hz frequency band. LISA is expected to observe 100's of merging massive black hole binaries out z-15, tens of thousands of close compact binary systems in the Milky Way, merging intermediate-mass black hole binaries, tens of stellar-mass black holes falling into supermassive black holes in galactic centers, and possibly other exotic sources. Several critical LISA technologies have not been demonstrated at the requisite level of performance. In spaceflight, and some fight hardware cannot be tested in a 1-g environment. Hence, the LISA Pathfinder mission is being implemented to demonstrate these critical LISA technologies in a relevant flight environment. LISA Pathfinder mimics one arm of the LISA constellation by shrinking the 5-million-kilometer armlength down to a few tens of centimeters. The experimental concept is to measure the relative separation between two test masses nominally following their own geodesics, and thereby determine the relative residual acceleration between them near 1 mHz, about a decade above the lowest frequency required by LISA. To implement such a concept, disturbances on the test masses must be kept very small by many design features, but chiefly by "drag-free" flight. A drag-free spacecraft follows a free-falling test mass which it encloses, but has no mechanical connection to. The spacecraft senses it's orientation and separation with respect to the proof mass, and its propulsion system is commanded to keep the spacecraft centered about the test mass. Thus, the spacecraft shields the test mass from most external influences, and minimizes the effect of force gradients arising from the spacecraft, and acting on the test mass. LISA Pathfinder will compare the geodesic of one test mass against that of the other. Only a

  15. Pathfinder aircraft flight #1

    NASA Image and Video Library

    1996-11-19

    The Pathfinder solar-powered research aircraft settles in for landing on the bed of Rogers Dry Lake at the Dryden Flight Research Center, Edwards, California, after a successful test flight Nov. 19, 1996. The ultra-light craft flew a racetrack pattern at low altitudes over the flight test area for two hours while project engineers checked out various systems and sensors on the uninhabited aircraft. The Pathfinder was controlled by two pilots, one in a mobile control unit which followed the craft, the other in a stationary control station. Pathfinder, developed by AeroVironment, Inc., is one of several designs being evaluated under NASA's Environmental Research Aircraft and Sensor Technology (ERAST) program.

  16. JWST Pathfinder Telescope Integration

    NASA Technical Reports Server (NTRS)

    Matthews, Gary W.; Kennard, Scott H.; Broccolo, Ronald T.; Ellis, James M.; Daly, Elizabeth A.; Hahn, Walter G.; Amon, John N.; Mt. Pleasant, Stephen M.; Texter, Scott; Atkinson, Charles B.; hide

    2015-01-01

    The James Webb Space Telescope (JWST) is a 6.5m, segmented, IR telescope that will explore the first light of the universe after the big bang. In 2014, a major risk reduction effort related to the Alignment, Integration, and Test (AI&T) of the segmented telescope was completed. The Pathfinder telescope includes two Primary Mirror Segment Assemblies (PMSA's) and the Secondary Mirror Assembly (SMA) onto a flight-like composite telescope backplane. This pathfinder allowed the JWST team to assess the alignment process and to better understand the various error sources that need to be accommodated in the flight build. The successful completion of the Pathfinder Telescope provides a final integration roadmap for the flight operations that will start in August 2015.

  17. Pathfinder-Plus on flight over Hawaiian island N'ihau

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Pathfinder-Plus on a flight over the Hawaiian island of N'ihau in 1998. Pathfinder was a remotely controlled, solar-powered flying wing, designed and built as a proof-of-concept vehicle for a much larger aircraft capable of flying at extremely high altitudes for weeks at a time. It was built by AeroVironment, Inc., a California company that developed the human-powered Gossamer Condor and Gossamer Albatross lightweight aircraft during the 1970s, and later made the solar-electric powered Gossamer Penguin and Solar Challenger. The basic configuration and concepts for Pathfinder were first realized with the HALSOL (High Altitude Solar) aircraft, built in 1983 by AeroVironment and the Lawrence Livermore Laboratory. Pathfinder was constructed of advanced composites, plastics, and foam, and despite a wingspan of nearly 100 feet, it weighed only about 600 pounds. Pathfinder was one of several unpiloted prototypes under study by NASA's ERAST (Environmental Research Aircraft and Sensor Technology) program, a NASA-industry alliance which is helping develop advanced technologies that will enable aircraft to study the earth's environment during extremely long flights at altitudes in excess of 100,000 feet. (See project description below for Pathfinder's conversion to Pathfinder Plus.) In 1998, the Pathfinder solar-powered flying wing (see its photographs and project description) was modified into the longer-winged Pathfinder Plus configuration and on Aug. 6, 1998, Pathfinder Plus set an altitude record (for propeller-driven aircraft) of approximately 80,285 feet at the Pacific Missile Range Facility. The goal of the Pathfinder Plus flights was to validate new solar, aerodynamic, propulsion, and systems technology developed for its successor, the Centurion, which was designed to reach and sustain altitudes in the 100,000-foot range. The Centurion was succeeded by the Helios Prototype with a goal of reaching and sustaining flight at an altitude of 100,000 feet and flying non

  18. Pathfinder-Plus on flight near Hawaiian island N'ihau

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Pathfinder-Plus on a flight with the Hawaiian island of N'ihau in the background. Pathfinder was a remotely controlled, solar-powered flying wing, designed and built as a proof-of-concept vehicle for a much larger aircraft capable of flying at extremely high altitudes for weeks at a time. It was built by AeroVironment, Inc., a California company that developed the human-powered Gossamer Condor and Gossamer Albatross lightweight aircraft during the 1970s, and later made the solar-electric powered Gossamer Penguin and Solar Challenger. The basic configuration and concepts for Pathfinder were first realized with the HALSOL (High Altitude Solar) aircraft, built in 1983 by AeroVironment and the Lawrence Livermore Laboratory. Pathfinder was constructed of advanced composites, plastics, and foam, and despite a wingspan of nearly 100 feet, it weighed only about 600 pounds. Pathfinder was one of several unpiloted prototypes under study by NASA's ERAST (Environmental Research Aircraft and Sensor Technology) program, a NASA-industry alliance which is helping develop advanced technologies that will enable aircraft to study the earth's environment during extremely long flights at altitudes in excess of 100,000 feet. (See project description below for Pathfinder's conversion to Pathfinder Plus.) In 1998, the Pathfinder solar-powered flying wing (see its photographs and project description) was modified into the longer-winged Pathfinder Plus configuration and on Aug. 6, 1998, Pathfinder Plus set an altitude record (for propeller-driven aircraft) of approximately 80,285 feet at the Pacific Missile Range Facility. The goal of the Pathfinder Plus flights was to validate new solar, aerodynamic, propulsion, and systems technology developed for its successor, the Centurion, which was designed to reach and sustain altitudes in the 100,000-foot range. The Centurion was succeeded by the Helios Prototype with a goal of reaching and sustaining flight at an altitude of 100,000 feet and

  19. Testing of the LISA pathfinder GRS

    NASA Astrophysics Data System (ADS)

    Antonucci, Federica; Cavalleri, Antonella; Ciani, Giacomo; Congedo, Giuseppe; Dolesi, Rita; de Marchi, Fabrizio; Ferraioli, Luigi; Hueller, Mauro; Nicolodi, Daniele; Tombolato, David; Vitale, Stefano; Wass, Peter J.; Weber, William J.

    The ESA/NASA mission,LISA (Laser Interferometric Space Antenna), will measure gravita-tional waves emitted by astronomical sources, galactic and extra-galactic, at frequencies 10-4 to 10-1 Hz. LISA is a 5-million-km arm-length interferometer whose mirrors are test masses which must be nominally free-falling to a level which does not exceed 3 · 10-15 ms-2 Hz -1/2 in acceleration. LISA Pathfinder is a technology demonstration mission which will show that the relative parasitic acceleration between two masses on one spacecraft can be lower than 3 · 10-14 ms-2 Hz -1/2 , at frequencies around 1 mHz -one order of magnitude larger than LISA's goal. At the core of the LISA Pathfinder experiment is the GRS (gravitational reference sensor), a capacitive sensor with mm gaps used to measure the position of the test mass and actuate its position in 6-degrees-of-freedom. Testing the purity of free-fall for LISA Pathfinder on-ground is achieved using a torsion pendulum which allows us to measure force disturbances at a level relevant to LISA Pathfinder. We will present the latest campaign of tests of the LISA Pathfinder GRS using the 4-test-mass torsion pendulum facility aimed at measuring force-noise sources (responsible for the parasitic acceleration) for LISA Pathfinder in its frequency band. Our GRS , is the LISA Pathfinder flight-model replica, and its testing is crucial in verifying the design and performance of the flight instrument and measuring many of the unwanted disturbances which can limit the performance of LISA and LISA pathfinder. The measurements concern the dependence of the force on the test mass position in the sensor and their electrostatic coupling, electrostatic fields due to surface-potential variations and thermal gradients.

  20. Pathfinder aircraft flight #1

    NASA Image and Video Library

    1996-11-19

    The Pathfinder research aircraft's solar cell arrays are prominently displayed as it touches down on the bed of Rogers Dry Lake at the Dryden Flight Research Center, Edwards, California, following a test flight. The solar arrays covered more than 75 percent of Pathfinder's upper wing surface, and provided electricity to power its six electric motors, flight controls, communications links and a host of scientific sensors.

  1. Martian Surface & Pathfinder Airbags

    NASA Image and Video Library

    1997-07-05

    This image of the Martian surface was taken in the afternoon of Mars Pathfinder's first day on Mars. Taken by the Imager for Mars Pathfinder (IMP camera), the image shows a diversity of rocks strewn in the foreground. A hill is visible in the distance (the notch within the hill is an image artifact). Airbags are seen at the lower right. http://photojournal.jpl.nasa.gov/catalog/PIA00612

  2. Mars Pathfinder Atmospheric Entry Navigation Operations

    NASA Technical Reports Server (NTRS)

    Braun, R. D.; Spencer, D. A.; Kallemeyn, P. H.; Vaughan, R. M.

    1997-01-01

    On July 4, 1997, after traveling close to 500 million km, the Pathfinder spacecraft successfully completed entry, descent, and landing, coming to rest on the surface of Mars just 27 km from its target point. In the present paper, the atmospheric entry and approach navigation activities required in support of this mission are discussed. In particular, the flight software parameter update and landing site prediction analyses performed by the Pathfinder operations navigation team are described. A suite of simulation tools developed during Pathfinder's design cycle, but extendible to Pathfinder operations, are also presented. Data regarding the accuracy of the primary parachute deployment algorithm is extracted from the Pathfinder flight data, demonstrating that this algorithm performed as predicted. The increased probability of mission success through the software parameter update process is discussed. This paper also demonstrates the importance of modeling atmospheric flight uncertainties in the estimation of an accurate landing site. With these atmospheric effects included, the final landed ellipse prediction differs from the post-flight determined landing site by less then 0.5 km in downtrack.

  3. MARS PATHFINDER CAMERA TEST IN SAEF-2

    NASA Technical Reports Server (NTRS)

    1996-01-01

    In the Spacecraft Assembly and Encapsulation Facility-2 (SAEF-2), workers from the Jet Propulsion Laboratory (JPL) are conducting a systems test of the imager for the Mars Pathfinder. Mounted on the Pathfinder lander, the imager (the white cylindrical element the worker is touching) is a specially designed camera featuring a stereo-imaging system with color capability provided by a set of selectable filters. It is mounted on an extendable mast that will pop up after the lander touches down on the Martian surface. The imager will transmit images of the terrain, allowing engineers back on Earth to survey the landing site before the Pathfinder rover is deployed to explore the area. The Mars Pathfinder is scheduled for launch aboard a Delta II expendable launch vehicle on Dec. 2. JPL manages the Pathfinder project for NASA.

  4. Navigation Flight Operations for Mars Pathfinder

    NASA Technical Reports Server (NTRS)

    Vaughan, Robin M.; Kallemeyn, Pieter H., Jr.; Spencer, David A.; Braun, Robert D.

    2004-01-01

    On July 4, 1997, Mars Pathfinder became the first spacecraft to land on the surface of Mars in 21 years. Pathfinder was launched on December 4, 1996 and spent seven months en route to the red planet. This report discusses the navigation flight experience for the Mars Pathfinder interplanetary cruise. In particular, orbit determination and maneuver design and execution results are presented. Special emphasis is given to the navigation role in the days and hours leading up to and including the Entry, Descent, and Landing (EDL) phase.

  5. Pathfinder-Plus on a flight over Hawaiian island N'ihau

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Pathfinder-Plus on a flight over the Hawaiian island of N'ihau in 1998. Pathfinder was a remotely controlled, solar-powered flying wing, designed and built as a proof-of-concept vehicle for a much larger aircraft capable of flying at extremely high altitudes for weeks at a time. It was built by AeroVironment, Inc., a California company that developed the human-powered Gossamer Condor and Gossamer Albatross lightweight aircraft during the 1970s, and later made the solar-electric powered Gossamer Penguin and Solar Challenger. The basic configuration and concepts for Pathfinder were first realized with the HALSOL (High Altitude Solar) aircraft, built in 1983 by AeroVironment and the Lawrence Livermore Laboratory. Pathfinder was constructed of advanced composites, plastics, and foam, and despite a wingspan of nearly 100 feet, it weighed only about 600 pounds. Pathfinder was one of several unpiloted prototypes under study by NASA's ERAST (Environmental Research Aircraft and Sensor Technology) program, a NASA-industry alliance which is helping develop advanced technologies that will enable aircraft to study the earth's environment during extremely long flights at altitudes in excess of 100,000 feet. (See project description below for Pathfinder's conversion to Pathfinder Plus.) In 1998, the Pathfinder solar-powered flying wing (see its photographs and project description) was modified into the longer-winged Pathfinder Plus configuration and on Aug. 6, 1998, Pathfinder Plus set an altitude record (for propeller-driven aircraft) of approximately 80,285 feet at the Pacific Missile Range Facility. The goal of the Pathfinder Plus flights was to validate new solar, aerodynamic, propulsion, and systems technology developed for its successor, the Centurion, which was designed to reach and sustain altitudes in the 100,000-foot range. The Centurion was succeeded by the Helios Prototype with a goal of reaching and sustaining flight at an altitude of 100,000 feet and flying non

  6. Mars Pathfinder Landing Site Workshop

    NASA Technical Reports Server (NTRS)

    Golombek, Matthew (Editor)

    1994-01-01

    The Mars Pathfinder Project is an approved Discovery-class mission that will place a lander and rover on the surface of the Red Planet in July 1997. The Mars Pathfinder Landing Site Workshop was designed to allow the Mars scientific community to provide input as to where to land Pathfinder on Mars. The workshop was attended by over 60 people from around the United States and from Europe. Over 20 landing sites were proposed at the workshop, and the scientific questions and problems concerning each were addressed. The workshop and the discussion that occured during and afterward have significantly improved the ability to select a scientifically exciting but safe landing site on Mars.

  7. MARS PATHFINDER PYRO SYSTEMS SWITCHING ACTIVITY

    NASA Technical Reports Server (NTRS)

    1996-01-01

    The Mars Pathfinder lander is subjected to a electrical and functional tests of its pyrotechic petal deployer system by Jet Propulsion Laboratory (JPL) engineers and technicians in KSC's Spacecraft Assembly and Encapsulation Facility (SAEF-2). In the background is the Pathfinder cruise stage, which the lander will be mated to once its functional tests are complete. The lander will remain attached to this stage during its six-to-seven-month journey to Mars. When the lander touches down on the surface of Mars next year, the pyrotechnic system will deploy its three petals open like a flower and allow the Sojourner autonomous rover to explore the Martian surface. The Mars Pathfinder is scheduled for launch aboard a Delta II expendable launch vehicle on Dec. 2, the beginning of a 24-day launch period. JPL is managing the Mars Pathfinder project for NASA.

  8. Mars Pathfinder Landing Site and Surroundings

    NASA Technical Reports Server (NTRS)

    2007-01-01

    NASA's Mars Pathfinder landed on Mars on July 4, 1997, and continued operating until Sept. 27 of that year. The landing site is on an ancient flood plain of the Ares and Tiu outflow channels. The High Resolution Imaging Science Experiment (HiRISE) camera on NASA's Mars Reconnaissance Orbiter took an image on Dec. 21, 2006, that provides unprecedented detail of the geology of the region and hardware on the surface.

    [figure removed for brevity, see original site] HiRISE Image This is the entire image. The crater at center bottom was unofficially named 'Big Crater' by the Pathfinder team. Its wall was visible from Pathfinder, located 3 kilometers (2 miles) to the north. The two bright features to the upper left of Big Crater are the 'Twin Peaks,' also observed by Pathfinder. The bright mound to the upper right of the Twin Peaks is 'North Knob,' seen in Pathfinder images as peaking over the horizon.

    At this scale there is no obvious geologic evidence of an ancient flood. Rather, impact craters dominate the scene, attesting to an old surface. The age is probably on the order of 1.8 billion to 3.5 billion years, when the Ares and Tiu floods are estimated to have occurred. Wind-formed linear ripples and dunes are seen throughout and are concentrated within craters. Sets of polygonal ridges of enigmatic origin are seen east of the Pathfinder lander. Rocks are visible over the entire image, with heavy concentrations near fresh-looking craters. Most of them are probably blocks tossed outward by crater-forming impacts.

    The complete image is centered at 19.1 degrees north latitude, 326.8 degrees east longitude. The range to the target site was 284.7 kilometers (177.9 miles). At this distance the image scale is 28.5 centimeters (11 inches) per pixel, so objects about 85 centimeters (33 inches) across are resolved. The image shown here has been map-projected to 25 centimeters (10 inches) per pixel. North is up. The image was taken at a local Mars time

  9. Pathfinder: A Retrospective

    NASA Technical Reports Server (NTRS)

    Landis, Geoffrey A.; Lyons, Valerie (Technical Monitor)

    2002-01-01

    Mars is one of the most interesting planets in the solar system, featuring enormous canyons, giant volcanoes, and indications that, early in its history, it might have had rivers and perhaps even oceans. Five years ago, in July of 1997, the Pathfinder mission landed on Mars, bringing with it the microwave-oven sized Sojourner rover to wander around on the surface and analyse rocks. Among the experiments on the mission was one designed to analyse dust deposition. Pathfinder is only the first of an armada of spacecraft which will examine Mars from the pole to the equator in the next decade, culminating with a mission to bring humans to Mars.

  10. Pathfinder-Plus flight in Hawaii

    NASA Technical Reports Server (NTRS)

    2002-01-01

    Pathfinder-Plus flight in Hawaii June 2002 AeroVironment's Pathfinder-Plus solar-powered flying wing recently flew a three-flight demonstration of its ability to relay third-generation cell phone and video signals as well as provide Internet linkage. The two pods underneath the center section of the wing carried the advanced two-way telecom package, developed by Japanese telecommunications interests.

  11. Pathfinder aircraft in flight

    NASA Image and Video Library

    1995-07-27

    The Pathfinder research aircraft's wing structure was clearly defined as it soared under a clear blue sky during a test flight July 27, 1995, from Dryden Flight Research Center, Edwards, California. The center section and outer wing panels of the aircraft had ribs constructed of thin plastic foam, while the ribs in the inner wing panels are fabricated from lightweight composite material. Developed by AeroVironment, Inc., the Pathfinder was one of several unmanned aircraft being evaluated under NASA's Environmental Research Aircraft and Sensor Technology (ERAST) program.

  12. Ventifacts at the Pathfinder landing site

    USGS Publications Warehouse

    Bridges, N.T.; Greeley, R.; Haldemann, A.F.C.; Herkenhoff, K. E.; Kraft, M.; Parker, T.J.; Ward, A.W.

    1999-01-01

    About half of the rocks at the Mars Pathfinder Ares Vallis landing site appear to be ventifacts, rocks abraded by windborne particles. Comparable resolution images taken by the Imager for Mars Pathfinder (IMP) camera and the Viking landers show that ventifacts are more abundant at the Pathfinder site. The ventifacts occur in several forms, including rocks with faceted edges, finger-like projections, elongated pits, flutes, grooves, and possible rills. The trends of elongated pits, flutes, grooves, and rills cluster at ???280-330?? clockwise from north and generally dip 10-30?? away from their trend direction. These orientations are indicative of southeast to northwest winds and differ from the trend of wind tails at the landing site, the direction of local wind streaks, and predictions of the Global Circulation Model, all of which indicate northeast to southwest winds. The disparity between these data sets strongly suggests that local circulation patterns have changed since the abrasion of the ventifacted rocks. The greater number of ventifacts at the Pathfinder site compared to either of the Viking sites is most easily explained as being due to a larger supply of abrading particles, composed of either sand-sized grains or indurated dust aggregates, and higher surface roughness, which should increase the momentum of saltating grains. The Pathfinder ventifacts may have formed shortly after the deposition of outflow channel sediments nearly 2 Gry ago, when a large local supply of abrading particles should have been abundant and atmospheric conditions may have been more conducive to rock abrasion from saltating grains. Based on how ventifacts form on Earth, the several ventifact forms seen at the Pathfinder site and their presence on some rocks but not on others are probably due to local airflow conditions, original rock shape, exposure duration, rock movement, and to a lesser extent, rock lithology. The abundance of ventifacts at the Pathfinder site, together with

  13. Integrating Subject Pathfinders into Online Catalogs.

    ERIC Educational Resources Information Center

    Jarvis, William E.

    1985-01-01

    Discusses the integration of subject pathfinders into online public access catalogs (OPAC) through following features: within the OPAC, offline user guide manuals, remotely printed upon user request, or online as saved searches displayed in help screen format. Excerpts of a pathfinder display for biotechnology are presented. Four sources are…

  14. Pathfinder landing sites at candidate SNC impact ejection sites

    NASA Technical Reports Server (NTRS)

    Golombek, Matthew P.

    1994-01-01

    If Mars Pathfinder were able to land at a site on Mars from which the SNC meteorites were ejected by impact, the Pathfinder mission would essentially represent a very inexpensive sample return mission. Geologic units that contain four potential impact craters from which SNC meteorites could have been ejected from Mars are accessible to the Mars Pathfinder lander. Determining that SNC meteorites came from a particular spot on Mars raises the intriguing possibility of using Pathfinder as a sample return mission and providing a radiometric age for the considerably uncertain martian crater-age timescale. Pathfinder instruments are capable of determining if the rock type at the landing site is similar to that of one or more of the SNC meteorites, which would strengthen the hypothesis that the SNC meteorites did, in fact, come from Mars. Unfortunately, instrument observations from Pathfinder are probably not capable of determining if the geologic unit sampled by the lander is definitively the unit from which a SNC meteorite came from as opposed to Mars in general or perhaps a particular region on Mars. This abstract evaluates the possibility of landing at potential SNC ejection sites and the ability of Pathfinder to identify the landing site as the place from which an SNC meteorite came.

  15. Dynamic Pathfinders: Leveraging Your OPAC to Create Resource Guides

    ERIC Educational Resources Information Center

    Hunter, Ben

    2008-01-01

    Library pathfinders are a time-tested method of leading library users to important resources. However, paper-based pathfinders suffer from space limitations, and both paper-based and Web-based pathfinders require frequent updates to keep up with new library acquisitions. This article details a step-by-step method to create an online dynamic…

  16. Pathfinder aircraft taking off - setting new solar powered altitude record

    NASA Technical Reports Server (NTRS)

    1995-01-01

    The Pathfinder solar-powered remotely piloted aircraft climbs to a record-setting altitude of 50,567 feet during a flight Sept. 11, 1995, at NASA's Dryden Flight Research Center, Edwards, California. Pathfinder was a lightweight, solar-powered, remotely piloted flying wing aircraft used to demonstrate the use of solar power for long-duration, high-altitude flight. Its name denotes its mission as the 'Pathfinder' or first in a series of solar-powered aircraft that will be able to remain airborne for weeks or months on scientific sampling and imaging missions. Solar arrays covered most of the upper wing surface of the Pathfinder aircraft. These arrays provided up to 8,000 watts of power at high noon on a clear summer day. That power fed the aircraft's six electric motors as well as its avionics, communications, and other electrical systems. Pathfinder also had a backup battery system that could provide power for two to five hours, allowing for limited-duration flight after dark. Pathfinder flew at airspeeds of only 15 to 20 mph. Pitch control was maintained by using tiny elevators on the trailing edge of the wing while turns and yaw control were accomplished by slowing down or speeding up the motors on the outboard sections of the wing. On September 11, 1995, Pathfinder set a new altitude record for solar-powered aircraft of 50,567 feet above Edwards Air Force Base, California, on a 12-hour flight. On July 7, 1997, it set another, unofficial record of 71,500 feet at the Pacific Missile Range Facility, Kauai, Hawaii. In 1998, Pathfinder was modified into the longer-winged Pathfinder Plus configuration. (See the Pathfinder Plus photos and project description.)

  17. Pathfinder Innovation Projects

    EPA Pesticide Factsheets

    The Pathfinder program supports high-risk, high-reward research ideas with funding and staff time. The goal is to feed a culture of innovation in the Agency and integrate innovative ideas in EPA research programs.

  18. Free-Flight Experiments in LISA Pathfinder

    NASA Technical Reports Server (NTRS)

    Thorpe, J. I.; Cutler, C. J.; Hewitson, M.; Jennrich, O.; Maghami, P.; Paczkowski, S.; Russano, G.; Vitale, S.; Weber, W. J.

    2014-01-01

    The LISA Pathfinder mission will demonstrate the technology of drag-free test masses for use as inertial references in future space-based gravitational wave detectors. To accomplish this, the Pathfinder spacecraft will perform drag-free flight about a test mass while measuring the acceleration of this primary test mass relative to a second reference test mass. Because the reference test mass is contained within the same spacecraft, it is necessary to apply forces on it to maintain its position and attitude relative to the spacecraft. These forces are a potential source of acceleration noise in the LISA Pathfinder system that are not present in the full LISA configuration. While LISA Pathfinder has been designed to meet it's primary mission requirements in the presence of this noise, recent estimates suggest that the on-orbit performance may be limited by this 'suspension noise'. The drift-mode or free-flight experiments provide an opportunity to mitigate this noise source and further characterize the underlying disturbances that are of interest to the designers of LISA-like instruments. This article provides a high-level overview of these experiments and the methods under development to analyze the resulting data.

  19. Pathfinder aircraft taking off - setting new solar powered altitude record

    NASA Technical Reports Server (NTRS)

    1995-01-01

    The Pathfinder solar-powered remotely piloted aircraft climbs to a record-setting altitude of 50,567 feet during a flight Sept. 11, 1995, at NASA's Dryden Flight Research Center, Edwards, California. The flight was part of the NASA ERAST (Environmental Research Aircraft and Sensor Technology) program. The Pathfinder was designed and built by AeroVironment Inc., Monrovia, California. Solar arrays cover nearly all of the upper wing surface and produce electricity to power the aircraft's six motors. Pathfinder was a lightweight, solar-powered, remotely piloted flying wing aircraft used to demonstrate the use of solar power for long-duration, high-altitude flight. Its name denotes its mission as the 'Pathfinder' or first in a series of solar-powered aircraft that will be able to remain airborne for weeks or months on scientific sampling and imaging missions. Solar arrays covered most of the upper wing surface of the Pathfinder aircraft. These arrays provided up to 8,000 watts of power at high noon on a clear summer day. That power fed the aircraft's six electric motors as well as its avionics, communications, and other electrical systems. Pathfinder also had a backup battery system that could provide power for two to five hours, allowing for limited-duration flight after dark. Pathfinder flew at airspeeds of only 15 to 20 mph. Pitch control was maintained by using tiny elevators on the trailing edge of the wing while turns and yaw control were accomplished by slowing down or speeding up the motors on the outboard sections of the wing. On September 11, 1995, Pathfinder set a new altitude record for solar-powered aircraft of 50,567 feet above Edwards Air Force Base, California, on a 12-hour flight. On July 7, 1997, it set another, unofficial record of 71,500 feet at the Pacific Missile Range Facility, Kauai, Hawaii. In 1998, Pathfinder was modified into the longer-winged Pathfinder Plus configuration. (See the Pathfinder Plus photos and project description.)

  20. Software Aids Visualization Of Mars Pathfinder Mission

    NASA Technical Reports Server (NTRS)

    Weidner, Richard J.

    1996-01-01

    Report describes Simulator for Imager for Mars Pathfinder (SIMP) computer program. SIMP generates "virtual reality" display of view through video camera on Mars lander spacecraft of Mars Pathfinder mission, along with display of pertinent textual and graphical data, for use by scientific investigators in planning sequences of activities for mission.

  1. JWST Pathfinder Telescope Risk Reduction Cryo Test Program

    NASA Technical Reports Server (NTRS)

    Matthews, Gary W.; Scorse, Thomas R.; Spina, John A.; Noel, Darin M.; Havey, Keith A., Jr.; Huguet, Jesse A.; Whitman, Tony L.; Wells, Conrad; Walker, Chanda B.; Lunt, Sharon; hide

    2015-01-01

    In 2014, the Optical Ground Support Equipment was integrated into the large cryo vacuum chamber at Johnson Space Center (JSC) and an initial Chamber Commissioning Test was completed. This insured that the support equipment was ready for the three Pathfinder telescope cryo tests. The Pathfinder telescope which consists of two primary mirror segment assemblies and the secondary mirror was delivered to JSC in February 2015 in support of this critical risk reduction test program prior to the flight hardware. This paper will detail the Chamber Commissioning and first optical test of the JWST Pathfinder telescope.

  2. Pathfinder aircraft flight #1

    NASA Image and Video Library

    1996-11-19

    The Pathfinder solar-powered research aircraft is silhouetted against a clear blue sky as it soars aloft during a checkout flight from the Dryden Flight Research Center, Edwards, California, November, 1996.

  3. Pathfinder

    NASA Image and Video Library

    2004-04-15

    This artist's concept depicts the X-34 Demonstrator in flight. Part of the Pathfinder Program, the X-34 was a reusable technology testbed vehicle that was designed and built by the Marshall Space Flight Center to demonstrate technologies that were essential to lowering the cost of access to space. Powered by a LOX and RP-1 liquid Fastrac engine, the X-34 would be capable of speeds up to Mach 8 and altitudes of 250,000-feet. The X-34 program was cancelled in 2001.

  4. Pathfinder

    NASA Image and Video Library

    2004-04-15

    This artist's concept depicts the X-34 Demonstrator sitting on a runway. Part of the Pathfinder Program, the X-34 was a reusable technology testbed vehicle that was designed and built by the Marshall Space Flight Center to demonstrate technologies that were essential to lowering the cost of access to space. Powered by a LOX and RP-1 liquid Fastrac engine, the X-34 would be capable of speeds up to Mach 8 and altitudes of 250,000-feet. The X-34 program was cancelled in 2001.

  5. Pathfinder

    NASA Image and Video Library

    2004-04-15

    Pictured is the X-34 Demonstrator parked on the runway. Part of the Pathfinder Program, the X-34 was a reusable technology testbed vehicle that was designed and built by the Marshall Space Flight Center to demonstrate technologies that are essential to lowering the cost of access to space. Powered by a LOX and RP-1 liquid Fastrac engine, the X-34 would be capable of speeds up to Mach 8 and altitudes of 250,000-feet. The X-34 program was cancelled in 2001.

  6. Pathfinder

    NASA Image and Video Library

    2004-04-15

    This artist's concept depicts the X-34 Demonstrator landing in a dessert. Part of the Pathfinder Program, the X-34 was a reusable technology testbed vehicle that was designed and built by the Marshall Space Flight Center to demonstrate technologies that were essential to lowering the cost of access to space. Powered by a LOX and RP-1 liquid Fastrac engine, the X-34 would be capable of speeds up to Mach 8 and altitudes of 250,000-feet. The X-34 program was cancelled in 2001.

  7. NASA's Chemical Transfer Propulsion Program for Pathfinder

    NASA Technical Reports Server (NTRS)

    Hannum, Ned P.; Berkopec, Frank D.; Zurawski, Robert L.

    1989-01-01

    Pathfinder is a research and technology project, with specific deliverables, initiated by the National Aeronautics and Space Administration (NASA) which will strengthen the technology base of the United States civil space program in preparation for future space exploration missions. Pathfinder begins in Fiscal Year 1989, and is to advance a collection of critical technologies for these missions and ensure technology readiness for future national decisions regarding exploration of the solar system. The four major thrusts of Pathfinder are: surface exploration, in-space operations, humans-in-space, and space transfer. The space transfer thrust will provide the critical technologies needed for transportation to, and return from, the Moon, Mars, and other planets in the solar system, as well as for reliable and cost-effective Earth-orbit operations. A key element of this thrust is the Chemical Transfer Propulsion program which will provide the propulsion technology for high performance, liquid oxygen/liquid hydrogen expander cycle engines which may be operated and maintained in space. Described here are the program overview including the goals and objectives, management, technical plan, and technology transfer for the Chemical Transfer Propulsion element of Pathfinder.

  8. MARS PATHFINDER CAMERA TEST IN SAEF-2

    NASA Technical Reports Server (NTRS)

    1996-01-01

    In the Spacecraft Assembly and Encapsulation Facility-2 (SAEF-2), workers from the Jet Propulsion Laboratory (JPL) are conducting a systems test of the imager for the Mars Pathfinder. The imager (white and metallic cylindrical element close to hand of worker at left) is a specially designed camera featuring a stereo- imaging system with color capability provided by a set of selectable filters. It is mounted atop an extendable mast on the Pathfinder lander. Visible to the far left is the small rover which will be deployed from the lander to explore the Martian surface. Transmitting back to Earth images of the trail left by the rover will be one of the mission objectives for the imager. To the left of the worker standing near the imager is the mast for the low-gain antenna; the round high-gain antenna is to the right. Visible in the background is the cruise stage that will carry the Pathfinder on a direct trajectory to Mars. The Mars Pathfinder is one of two Mars-bound spacecraft slated for launch aboard Delta II expendable launch vehicles this year.

  9. Pathfinder

    NASA Image and Video Library

    2004-04-15

    Pictured is NASA's poster art for the X-34 technology Demonstrator. The X-34 was part of NASA's Pathfinder Program which demonstrated advanced space transportation technologies through the use of flight experiments and experimental vehicles. These technology demonstrators and flight experiments would support the Agency's goal of dramatically reducing the cost of access to space and would define the future of space transportation pushing technology into a new era of space development and exploration at the dawn of the new century. The X-34 program was cancelled in 2001.

  10. Pathfinder

    NASA Image and Video Library

    2004-04-15

    Pictured in the high bay, is the X-34 Technology Demonstrator in the process of completion. The X-34 wass part of NASA's Pathfinder Program which demonstrated advanced space transportation technologies through the use of flight experiments and experimental vehicles. These technology demonstrators and flight experiments supported the Agency's goal of dramatically reducing the cost of access to space and defined the future of space transportation pushing technology into a new era of space development and exploration at the dawn of the new century. The X-34 program was cancelled in 2001.

  11. Strategy for selecting Mars Pathfinder landing sites

    NASA Technical Reports Server (NTRS)

    Greeley, Ronald; Kuzmin, Ruslin O.

    1994-01-01

    A strategy for Pathfinder site selection must be developed that is fundamentally different from most previous considerations. At least two approaches can be identified. In one approach, the objective is to select a site representing a key geologic unit on Mars, i.e., a unit that is widespread, easily recognized, and used frequently as a datum in various investigations. The second approach is to select a site that potentially affords access to a wide variety of rock types. Because rover range is limited, rocks from a variety of sources must be assembled in a small area for sampling. Regardless of the approach taken in site selection, the Pathfinder site should include eolian deposits and provisions should be made to obtain measurements on soils. A recommended approach for selecting the Mars Pathfinder landing site is to identify a deltaic deposit, composed of sediments derived from sources of various ages and geologic units that shows evidence of eolian activity. The site should be located as close as possible to the part of the outwash where rapid deposition occurred because the likelihood of 'sorting' by size and composition increases with distance, decreasing the probability of heterogeneity. In addition, it is recommended that field operation tests be conducted to gain experience and insight into conducting science with Pathfinder.

  12. Java, Indonesia

    NASA Image and Video Library

    1996-01-20

    STS072-737-012 (11-20 Jan. 1996) --- The astronauts photographed this view of Java, an Indonesian island. Java lies between the Java Sea at top and the Indian Ocean at bottom (north is located at top center). A line of volcanoes on the southern edge of the island, trending from central to eastern areas, is highlighted by a ring of clouds. Off the southern coast of Java is the Java Trench where the Australian plate, to the south, is diving under the Eurasia plate to the north. According to anthropologists, Java has one of the highest populations in Indonesia because the soil is enriched by volcanic ash. Merapi volcano, at left edge, second volcano to the right, rises to 9,550 feet and erupts frequently. Madura Island, partially obscured by clouds, can be seen on the upper eastern end of Java.

  13. MOC's Highest Resolution View of Mars Pathfinder Landing Site

    NASA Technical Reports Server (NTRS)

    2000-01-01

    [figure removed for brevity, see original site] (A) Mars Pathfinder site, left: April 1998; right: January 2000.

    [figure removed for brevity, see original site] (B) top: April 1998; bottom: January 2000.

    Can Mars Global Surveyor's 1.5 meter (5 ft) per pixel camera be used to find any evidence as to the fate of the Mars Polar Lander that was lost on December 3, 1999? One way to find out is to look for one of the other Mars landers and determine what, if anything, can be seen. There have been three successful Mars lander missions: Viking 1 (July 1976), Viking 2 (September 1976), and Mars Pathfinder (July 1997). Of these, the location of Mars Pathfinder is known the best because there are several distinct landmarks visible in the lander's images that help in locating the spacecraft. The MGS MOC Operations Team at Malin Space Science Systems has been tasked since mid-December 1999 with looking for the lost Polar Lander. Part of this effort has been to test the capabilities of MOC by taking a picture of the landing site of Mars Pathfinder.

    An attempt to photograph the Pathfinder site was made once before, in April 1998, by turning the entire MGS spacecraft so that the camera could point at the known location of the Mars Pathfinder lander. Turning the MGS spacecraft like this is not a normal operation--it takes considerable planning, and disrupts the on-going, normal acquisition of science data. It took 3 attempts to succeed, but on April 22, 1998, MOC acquired the picture seen on the left side of Figure A, above. The three near-by major landmarks that were visible to the Pathfinder's cameras are labeled here (North Peak, Big Crater, Twin Peaks). It was known at the time that this image was not adequate to see the Pathfinder lander because the camera was not in focus and had a resolution of only 3.3 meters (11 ft) per pixel. In this and all other images shown here, north is up. All views of the 1998 MOC image are illuminated from the lower right, all views

  14. The Pathfinder Microrover

    NASA Technical Reports Server (NTRS)

    Matijevic, J. R.; Bickler, D. B.; Braun, D. F.; Eisen, H. J.; Matthies, L. H.; Mishkin, A. H.; Stone, H. W.; van Nieuwstadt, L. M.; Wen, L. C.; Wilcox, B. H.; hide

    1996-01-01

    An exciting scientific component of the Pathfinder mission is the rover, which will act as a mini-field geologist by providing us with access to samples for chemical analyses and close-up images of the Martian surface, performing active experiments to modify the surface and study the results, and exploring the landing site area.

  15. Identification of metabolic pathways using pathfinding approaches: a systematic review.

    PubMed

    Abd Algfoor, Zeyad; Shahrizal Sunar, Mohd; Abdullah, Afnizanfaizal; Kolivand, Hoshang

    2017-03-01

    Metabolic pathways have become increasingly available for various microorganisms. Such pathways have spurred the development of a wide array of computational tools, in particular, mathematical pathfinding approaches. This article can facilitate the understanding of computational analysis of metabolic pathways in genomics. Moreover, stoichiometric and pathfinding approaches in metabolic pathway analysis are discussed. Three major types of studies are elaborated: stoichiometric identification models, pathway-based graph analysis and pathfinding approaches in cellular metabolism. Furthermore, evaluation of the outcomes of the pathways with mathematical benchmarking metrics is provided. This review would lead to better comprehension of metabolism behaviors in living cells, in terms of computed pathfinding approaches. © The Author 2016. Published by Oxford University Press. All rights reserved. For permissions, please email: journals.permissions@oup.com.

  16. Mars Pathfinder Rover-Lewis Research Center Technology Experiments Program

    NASA Technical Reports Server (NTRS)

    Stevenson, Steven M.

    1997-01-01

    An overview of NASA's Mars Pathfinder Program is given and the development and role of three technology experiments from NASA's Lewis Research Center and carried on the Mars Pathfinder rover is described. Two recent missions to Mars were developed and managed by the Jet Propulsion Laboratory, and launched late last year: Mars Global Surveyor in November 1996 and Mars Pathfinder in December 1996. Mars Global Surveyor is an orbiter which will survey the planet with a number of different instruments, and will arrive in September 1997, and Mars Pathfinder which consists of a lander and a small rover, landing on Mars July 4, 1997. These are the first two missions of the Mars Exploration Program consisting of a ten year series of small robotic martian probes to be launched every 26 months. The Pathfinder rover will perform a number of technology and operational experiments which will provide the engineering information necessary to design and operate more complex, scientifically oriented surface missions involving roving vehicles and other machinery operating in the martian environment. Because of its expertise in space power systems and technologies, space mechanisms and tribology, Lewis Research Center was asked by the Jet Propulsion Laboratory, which is heading the Mars Pathfinder Program, to contribute three experiments concerning the effects of the martian environment on surface solar power systems and the abrasive qualities of the Mars surface material. In addition, rover static charging was investigated and a static discharge system of several fine Tungsten points was developed and fixed to the rover. These experiments and current findings are described herein.

  17. The semantic pathfinder: using an authoring metaphor for generic multimedia indexing.

    PubMed

    Snoek, Cees G M; Worring, Marcel; Geusebroek, Jan-Mark; Koelma, Dennis C; Seinstra, Frank J; Smeulders, Arnold W M

    2006-10-01

    This paper presents the semantic pathfinder architecture for generic indexing of multimedia archives. The semantic pathfinder extracts semantic concepts from video by exploring different paths through three consecutive analysis steps, which we derive from the observation that produced video is the result of an authoring-driven process. We exploit this authoring metaphor for machine-driven understanding. The pathfinder starts with the content analysis step. In this analysis step, we follow a data-driven approach of indexing semantics. The style analysis step is the second analysis step. Here, we tackle the indexing problem by viewing a video from the perspective of production. Finally, in the context analysis step, we view semantics in context. The virtue of the semantic pathfinder is its ability to learn the best path of analysis steps on a per-concept basis. To show the generality of this novel indexing approach, we develop detectors for a lexicon of 32 concepts and we evaluate the semantic pathfinder against the 2004 NIST TRECVID video retrieval benchmark, using a news archive of 64 hours. Top ranking performance in the semantic concept detection task indicates the merit of the semantic pathfinder for generic indexing of multimedia archives.

  18. Pathfinder-Plus on flight over Hawaiian Islands, with N'ihau and Lehua in the background

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Pathfinder-Plus on flight over Hawaiian Islands, with N'ihau and Lehua in the background. Pathfinder was a remotely controlled, solar-powered flying wing, designed and built as a proof-of-concept vehicle for a much larger aircraft capable of flying at extremely high altitudes for weeks at a time. It was built by AeroVironment, Inc., a California company that developed the human-powered Gossamer Condor and Gossamer Albatross lightweight aircraft during the 1970s, and later made the solar-electric powered Gossamer Penguin and Solar Challenger. The basic configuration and concepts for Pathfinder were first realized with the HALSOL (High Altitude Solar) aircraft, built in 1983 by AeroVironment and the Lawrence Livermore Laboratory. Pathfinder was constructed of advanced composites, plastics, and foam, and despite a wingspan of nearly 100 feet, it weighed only about 600 pounds. Pathfinder was one of several unpiloted prototypes under study by NASA's ERAST (Environmental Research Aircraft and Sensor Technology) program, a NASA-industry alliance which is helping develop advanced technologies that will enable aircraft to study the earth's environment during extremely long flights at altitudes in excess of 100,000 feet. (See project description below for Pathfinder's conversion to Pathfinder Plus.) In 1998, the Pathfinder solar-powered flying wing (see its photographs and project description) was modified into the longer-winged Pathfinder Plus configuration and on Aug. 6, 1998, Pathfinder Plus set an altitude record (for propeller-driven aircraft) of approximately 80,285 feet at the Pacific Missile Range Facility. The goal of the Pathfinder Plus flights was to validate new solar, aerodynamic, propulsion, and systems technology developed for its successor, the Centurion, which was designed to reach and sustain altitudes in the 100,000-foot range. The Centurion was succeeded by the Helios Prototype with a goal of reaching and sustaining flight at an altitude of 100,000 feet

  19. Pathfinder aircraft liftoff on altitude record setting flight of 71,500 feet

    NASA Technical Reports Server (NTRS)

    1997-01-01

    The Pathfinder aircraft has set a new unofficial world record for high-altitude flight of over 71,500 feet for solar-powered aircraft at the U.S. Navy's Pacific Missile Range Facility, Kauai, Hawaii. Pathfinder was designed and manufactured by AeroVironment, Inc, of Simi Valley, California, and was operated by the firm under a jointly sponsored research agreement with NASA's Dryden Flight Research Center, Edwards, California. Pathfinder's record-breaking flight occurred July 7, 1997. The aircraft took off at 11:34 a.m. PDT, passed its previous record altitude of 67,350 feet at about 5:45 p.m. and then reached its new record altitude at 7 p.m. The mission ended with a perfect nighttime landing at 2:05 a.m. PDT July 8. The new record is the highest altitude ever attained by a propellor-driven aircraft. Before Pathfinder, the altitude record for propellor-driven aircraft was 67,028 feet, set by the experimental Boeing Condor remotely piloted aircraft. Pathfinder was a lightweight, solar-powered, remotely piloted flying wing aircraft used to demonstrate the use of solar power for long-duration, high-altitude flight. Its name denotes its mission as the 'Pathfinder' or first in a series of solar-powered aircraft that will be able to remain airborne for weeks or months on scientific sampling and imaging missions. Solar arrays covered most of the upper wing surface of the Pathfinder aircraft. These arrays provided up to 8,000 watts of power at high noon on a clear summer day. That power fed the aircraft's six electric motors as well as its avionics, communications, and other electrical systems. Pathfinder also had a backup battery system that could provide power for two to five hours, allowing for limited-duration flight after dark. Pathfinder flew at airspeeds of only 15 to 20 mph. Pitch control was maintained by using tiny elevators on the trailing edge of the wing while turns and yaw control were accomplished by slowing down or speeding up the motors on the outboard

  20. LISA Pathfinder: A Mission Status

    NASA Astrophysics Data System (ADS)

    Hewitson, Martin; LISA Pathfinder Team Team

    2016-03-01

    On December 3rd at 04:04 UTC, The European Space Agency launched the LISA Pathfinder satellite on board a VEGA rocket from Kourou in French Guiana. After a series of orbit raising manoeuvres and a 2 month long transfer orbit, LISA Pathfinder arrived at L1. Following a period of commissioning, the science operations commenced at the start of March, beginning the demonstration of technologies and methodologies which pave the way for a future large-scale gravitational wave observatory in space. This talk will present the scientific goals of the mission, discuss the technologies being tested, elucidate the link to a future space-based observatory, such as LISA, and present preliminary results from the in-orbit operations and experiments.

  1. A review of parameters and heuristics for guiding metabolic pathfinding.

    PubMed

    Kim, Sarah M; Peña, Matthew I; Moll, Mark; Bennett, George N; Kavraki, Lydia E

    2017-09-15

    Recent developments in metabolic engineering have led to the successful biosynthesis of valuable products, such as the precursor of the antimalarial compound, artemisinin, and opioid precursor, thebaine. Synthesizing these traditionally plant-derived compounds in genetically modified yeast cells introduces the possibility of significantly reducing the total time and resources required for their production, and in turn, allows these valuable compounds to become cheaper and more readily available. Most biosynthesis pathways used in metabolic engineering applications have been discovered manually, requiring a tedious search of existing literature and metabolic databases. However, the recent rapid development of available metabolic information has enabled the development of automated approaches for identifying novel pathways. Computer-assisted pathfinding has the potential to save biochemists time in the initial discovery steps of metabolic engineering. In this paper, we review the parameters and heuristics used to guide the search in recent pathfinding algorithms. These parameters and heuristics capture information on the metabolic network structure, compound structures, reaction features, and organism-specificity of pathways. No one metabolic pathfinding algorithm or search parameter stands out as the best to use broadly for solving the pathfinding problem, as each method and parameter has its own strengths and shortcomings. As assisted pathfinding approaches continue to become more sophisticated, the development of better methods for visualizing pathway results and integrating these results into existing metabolic engineering practices is also important for encouraging wider use of these pathfinding methods.

  2. VR for Mars Pathfinder

    NASA Technical Reports Server (NTRS)

    Blackmon, Theodore

    1998-01-01

    Virtual reality (VR) technology has played an integral role for Mars Pathfinder mission, operations Using an automated machine vision algorithm, the 3d topography of the Martian surface was rapidly recovered fro -a the stereo images captured. by the Tender camera to produce photo-realistic 3d models, An advanced, interface was developed for visualization and interaction with. the virtual environment of the Pathfinder landing site for mission scientists at the Space Flight Operations Facility of the Jet Propulsion Laboratory. The VR aspect of the display allowed mission scientists to navigate on Mars in Bud while remaining here on Earth, thus improving their spatial awareness of the rock field that surrounds the lenders Measurements of positions, distances and angles could be easily extracted from the topographic models, providing valuable information for science analysis and mission. planning. Moreover, the VR map of Mars has also been used to assist with the archiving and planning of activities for the Sojourner rover.

  3. Assessment of Mars Pathfinder landing site predictions

    USGS Publications Warehouse

    Golombek, M.P.; Moore, H.J.; Haldemann, A.F.C.; Parker, T.J.; Schofield, J.T.

    1999-01-01

    Remote sensing data at scales of kilometers and an Earth analog were used to accurately predict the characteristics of the Mars Pathfinder landing site at a scale of meters. The surface surrounding the Mars Pathfinder lander in Ares Vallis appears consistent with orbital interpretations, namely, that it would be a rocky plain composed of materials deposited by catastrophic floods. The surface and observed maximum clast size appears similar to predictions based on an analogous surface of the Ephrata Fan in the Channeled Scabland of Washington state. The elevation of the site measured by relatively small footprint delay-Doppler radar is within 100 m of that determined by two-way ranging and Doppler tracking of the spacecraft. The nearly equal elevations of the Mars Pathfinder and Viking Lander 1 sites allowed a prediction of the atmospheric conditions with altitude (pressure, temperature, and winds) that were well within the entry, descent, and landing design margins. High-resolution (~38 m/pixel) Viking Orbiter 1 images showed a sparsely cratered surface with small knobs with relatively low slopes, consistent with observations of these features from the lander. Measured rock abundance is within 10% of that expected from Viking orbiter thermal observations and models. The fractional area covered by large, potentially hazardous rocks observed is similar to that estimated from model rock distributions based on data from the Viking landing sites, Earth analog sites, and total rock abundance. The bulk and fine-component thermal inertias measured from orbit are similar to those calculated from the observed rock size-frequency distribution. A simple radar echo model based on the reflectivity of the soil (estimated from its bulk density), and the measured fraction of area covered by rocks was used to approximate the quasi-specular and diffuse components of the Earth-based radar echos. Color and albedo orbiter data were used to predict the relatively dust free or unweathered

  4. LISA Pathfinder Spacecraft Artist Concept

    NASA Image and Video Library

    2015-12-03

    This artist's concept shows ESA's LISA Pathfinder spacecraft, which launched on Dec. 3, 2015, from Kourou, French Guiana, will help pave the way for a mission to detect gravitational waves. LISA Pathfinder, led by the European Space Agency (ESA), is designed to test technologies that could one day detect gravitational waves. Gravitational waves, predicted by Einstein's theory of general relativity, are ripples in spacetime produced by any accelerating body. But the waves are so weak that Earth- or space-based observatories would likely only be able to directly detect such signals coming from massive astronomical systems, such as binary black holes or exploding stars. Detecting gravitational waves would be an important piece in the puzzle of how our universe began. http://photojournal.jpl.nasa.gov/catalog/PIA20196

  5. Pathfinder Innovation Projects: Awardees 2015

    EPA Pesticide Factsheets

    The Pathfinder program supports high-risk, high-reward research ideas with funding and staff time. The goal is to feed a culture of innovation in the Agency and integrate innovative ideas in EPA research programs.

  6. Pathfinder Innovation Projects: Awardees 2016

    EPA Pesticide Factsheets

    The Pathfinder program supports high-risk, high-reward research ideas with funding and staff time. The goal is to feed a culture of innovation in the Agency and integrate innovative ideas in EPA research programs.

  7. Pathfinder Instruments for Cloud and Aerosol Spaceborne Observations (PICASSO)

    NASA Technical Reports Server (NTRS)

    McCormick, M. Patrick; Winker, David M.

    1998-01-01

    This paper will describe the planned 3-year Pathfinder Instruments for Cloud and Aerosol Spaceborne Observations (PICASSO) mission, its instrumentation and implementation. It will use LITE and other data, plus analyses, to show the feasibility of such a mission. PICASSO is being proposed for NASA's Earth System Science Pathfinder (ESSP) program with launch predicted in 2003.

  8. Pathfinder ground preparations prior to altitude record setting flight of 71,500 feet

    NASA Technical Reports Server (NTRS)

    1997-01-01

    Technicians make final adjustments on the solar-powered Pathfinder remotely piloted research aircraft prior to the craft's taking off on a flight which established a new unofficial world's altitude record for both propellor-driven and solar-powered aircraft. The new record of more than 71,500 feet was set during a 14 1/2-hour flight July 7, 1997, from the U.S. Navy's Pacific Missile Range Facility (PMRF) at Barking Sands, Kauai, Hawaii. The new altitude record is subject to verification by the National Aeronautics Association. The Pathfinder took off at 8:34 a.m. HDT, passed its previous record altitude of 67,350 feet about 2:45 p.m., and then reached its new mark at about 4 p.m. Controllers on the ground then initiated a slow decent, and Pathfinder landed seven hours later at 11:05 p.m. HDT. The experimental Boeing Condor remotely-piloted aircraft had held the previous record for propellor-driven craft of 67,028 feet. The Pathfinder had exceeded that height on a previous flight on June 9, 1997, but not by a large enough margin to be considered a new record. Pathfinder was a lightweight, solar-powered, remotely piloted flying wing aircraft used to demonstrate the use of solar power for long-duration, high-altitude flight. Its name denotes its mission as the 'Pathfinder' or first in a series of solar-powered aircraft that will be able to remain airborne for weeks or months on scientific sampling and imaging missions. Solar arrays covered most of the upper wing surface of the Pathfinder aircraft. These arrays provided up to 8,000 watts of power at high noon on a clear summer day. That power fed the aircraft's six electric motors as well as its avionics, communications, and other electrical systems. Pathfinder also had a backup battery system that could provide power for two to five hours, allowing for limited-duration flight after dark. Pathfinder flew at airspeeds of only 15 to 20 mph. Pitch control was maintained by using tiny elevators on the trailing edge of the

  9. Overhead View of Area Surrounding Pathfinder

    NASA Technical Reports Server (NTRS)

    1997-01-01

    Overhead view of the area surrounding the Pathfinder lander illustrating the Sojourner traverse. Red rectangles are rover positions at the end of sols 1-30. Locations of soil mechanics experiments, wheel abrasion experiments, and APXS measurements are shown. The A numbers refer to APXS measurements as discussed in the paper by Rieder et al. (p. 1770, Science Magazine, see image note). Coordinates are given in the LL frame.

    The photorealistic, interactive, three-dimensional virtual reality (VR) terrain models were created from IMP images using a software package developed for Pathfinder by C. Stoker et al. as a participating science project. By matching features in the left and right camera, an automated machine vision algorithm produced dense range maps of the nearfield, which were projected into a three-dimensional model as a connected polygonal mesh. Distance and angle measurements can be made on features viewed in the model using a mouse-driven three-dimensional cursor and a point-and-click interface. The VR model also incorporates graphical representations of the lander and rover and the sequence and spatial locations at which rover data were taken. As the rover moved, graphical models of the rover were added for each position that could be uniquely determined using stereo images of the rover taken by the IMP. Images taken by the rover were projected into the model as two-dimensional 'billboards' to show the proper perspective of these images.

    NOTE: original caption as published in Science Magazine

    Mars Pathfinder is the second in NASA's Discovery program of low-cost spacecraft with highly focused science goals. The Jet Propulsion Laboratory, Pasadena, CA, developed and manages the Mars Pathfinder mission for NASA's Office of Space Science, Washington, D.C. JPL is a division of the California Institute of Technology (Caltech).

  10. AVHRR-Based Polar Pathfinder Products: Evaluation, Enhancement, and Transition to MODIS

    NASA Technical Reports Server (NTRS)

    Fowler, Charles; Maslanik, James; Stone, Robert; Stroeve, Julienne; Emery, William

    2001-01-01

    The AVHRR-Based Polar Pathfinder (APP) products include calibrated AVHRR channel data, surface temperatures, albedo, satellite scan and solar geometries, and a cloud mask composited into twice- per-day images, and daily averaged fields of sea ice motion, for regions poleward of 50 deg. latitude. Our goals under this grant, in general, are four-fold: 1. To quantify the APP accuracy and sources of error by comparing Pathfinder products with field measurements. 2. To determine the consistency of mean fields and trends in comparison with longer time series of available station data and forecast model output. 3. To investigate the consistency of the products between the different AVHRR instruments over the 1982-present period of the NOAA program. 4. To compare an annual cycle of the AVHRR Pathfinder products with MODIS to establish a baseline for extending Pathfinder-type products into the new ESE period. Year One tasks include intercomparisons of the Pathfinder products with field measurements, testing of algorithm assumptions, collection of field data, and further validation and possible improvement of the multi-sensor ice motion fields. Achievements for these tasks are summarized below.

  11. MARS PATHFINDER AIR BAG INSTALLATION IN SAEF-2

    NASA Technical Reports Server (NTRS)

    1996-01-01

    In the Spacecraft Assembly and Encapsulation Facility-2 (SAEF-2), the Jet Propulsion Laboratory (JPL) team installs air bags on the Mars Pathfinder lander. The four airbags will cushion the lander as it touches down on the Martian surface, protecting the delicate instruments and Surveyor small rover inside the tetrahedral-shaped lander. The Mars Pathfinder is one of two Mars-bound spacecraft being prepared for launch this fall. Liftoff is set for Dec. 2 at the beginning of a 24-day launch period.

  12. SLS Pathfinder Segments Car Train Departure

    NASA Image and Video Library

    2016-03-02

    An Iowa Northern locomotive, contracted by Goodloe Transportation of Chicago, departs from NASA’s Kennedy Space Center in Florida, with two containers on railcars for transport to the Jay Jay railroad yard. The containers held two pathfinders, or test versions, of solid rocket booster segments for NASA’s Space Launch System rocket that were delivered to the Rotation, Processing and Surge Facility (RPSF). Inside the RPSF, the Ground Systems Development and Operations Program and Jacobs Engineering, on the Test and Operations Support Contract, will conduct a series of lifts, moves and stacking operations using the booster segments, which are inert, to prepare for Exploration Mission-1, deep-space missions and the journey to Mars. The pathfinder booster segments are from Orbital ATK in Utah.

  13. Multispectral Imaging from Mars PATHFINDER

    NASA Technical Reports Server (NTRS)

    Ferrand, William H.; Bell, James F., III; Johnson, Jeffrey R.; Bishop, Janice L.; Morris, Richard V.

    2007-01-01

    The Imager for Mars Pathfinder (IMP) was a mast-mounted instrument on the Mars Pathfinder lander which landed on Mars Ares Vallis floodplain on July 4, 1997. During the 83 sols of Mars Pathfinders landed operations, the IMP collected over 16,600 images. Multispectral images were collected using twelve narrowband filters at wavelengths between 400 and 1000 nm in the visible and near infrared (VNIR) range. The IMP provided VNIR spectra of the materials surrounding the lander including rocks, bright soils, dark soils, and atmospheric observations. During the primary mission, only a single primary rock spectral class, Gray Rock, was recognized; since then, Black Rock, has been identified. The Black Rock spectra have a stronger absorption at longer wavelengths than do Gray Rock spectra. A number of coated rocks have also been described, the Red and Maroon Rock classes, and perhaps indurated soils in the form of the Pink Rock class. A number of different soil types were also recognized with the primary ones being Bright Red Drift, Dark Soil, Brown Soil, and Disturbed Soil. Examination of spectral parameter plots indicated two trends which were interpreted as representing alteration products formed in at least two different environmental epochs of the Ares Vallis area. Subsequent analysis of the data and comparison with terrestrial analogs have supported the interpretation that the rock coatings provide evidence of earlier martian environments. However, the presence of relatively uncoated examples of the Gray and Black rock classes indicate that relatively unweathered materials can persist on the martian surface.

  14. MARS PATHFINDER CAMERA TEST IN SAEF-2

    NASA Technical Reports Server (NTRS)

    1996-01-01

    Jet Propulsion Laboratory (JPL) workers conduct a systems test of the Mars Pathfinder imager, installed atop the Pathfinder lander (with JPL insignia). The imager is the white cyclindrical structure close to the worker's gloved hand. At left is the small rover that will be deployed from the lander to explore the Martian surface. The rover is mounted on one of three petals that will be attached to the lander. The two-pronged mast extending upward from the lander is for the low-gain antenna. The imager is mounted on a mast that will be extended after the lander touches down on Mars, affording a better view of the area. The imager is a camera that will transmit images of the Martian surface as well as the trail left by the rover, helping researchers to better understand the composition of the soil. It also is equipped with selectable filters for gathering data about the atmosphere of the Red Planet. JPL manages the Mars Pathfinder project for NASA. The journey to Mars is scheduled to begin with liftoff Dec. 2 aboard a Delta II expendable launch vehicle.

  15. Mars Pathfinder [foldout].

    PubMed

    1997-12-05

    The following foldout present images and analysis from the Mars Pathfinder Mission that are discussed in seven subsequent Reports. The center is a four-page panorama of the surface of Mars around the lander (Plate 1). The back of the foldout contains surface images (Plate 7), a different perspective of the landing site (Plate 2), rover targets (Plate 3), locations of rocks and other features (Plate 6) and data analysis (Plates 4, 4, 8, 9, and 10).

  16. Morning Martian Atmospheric Temperature Gradients and Fluctuations Observed by Mars Pathfinder

    NASA Technical Reports Server (NTRS)

    Mihalov, John D.; Haberle, R. M.; Murphy, J. R.; Seiff, A.; Wilson, G. R.

    1999-01-01

    We have studied the most prominent atmospheric temperature fluctuations observed during Martian mornings by Mars Pathfinder and have concluded, based on comparisons with wind directions, that they appear to be a result of atmospheric heating associated with the Lander spacecraft. Also, we have examined the morning surface layer temperature lapse rates, which are found to decrease as autumn approaches at the Pathfinder location, and which have mean (and median) values as large as 7.3 K/m in the earlier portions of the Pathfinder landed mission. It is plausible that brief isolated periods with gradients twice as steep are associated with atmospheric heating adjacent to Lander air bag material. In addition, we have calculated the gradient with height of the structure function obtained with Mars Pathfinder, for Mars' atmospheric temperatures measured within about 1.3 m from the surface, assuming a power law dependence, and have found that these gradients superficially resemble those reported for the upper region of the terrestrial stable boundary layer.

  17. SLS Pathfinder Segments Car Train Departure

    NASA Image and Video Library

    2016-03-02

    An Iowa Northern locomotive, contracted by Goodloe Transportation of Chicago, travels along the NASA railroad bridge over the Indian River north of Kennedy Space Center, carrying one of two containers on a railcar for transport to the NASA Jay Jay railroad yard. The containers held two pathfinders, or test versions, of solid rocket booster segments for NASA’s Space Launch System rocket that were delivered to the Rotation, Processing and Surge Facility (RPSF). Inside the RPSF, the Ground Systems Development and Operations Program and Jacobs Engineering, on the Test and Operations Support Contract, will conduct a series of lifts, moves and stacking operations using the booster segments, which are inert, to prepare for Exploration Mission-1, deep-space missions and the journey to Mars. The pathfinder booster segments are from Orbital ATK in Utah.

  18. SLS Pathfinder Segments Car Train Departure

    NASA Image and Video Library

    2016-03-02

    An Iowa Northern locomotive, conracted by Goodloe Transportation of Chicago, travels along the NASA railroad bridge over the Indian River north of Kennedy Space Center, with two containers on railcars for transport to the NASA Jay Jay railroad yard. The containers held two pathfinders, or test versions, of solid rocket booster segments for NASA’s Space Launch System rocket that were delivered to the Rotation, Processing and Surge Facility (RPSF). Inside the RPSF, the Ground Systems Development and Operations Program and Jacobs Engineering, on the Test and Operations Support Contract, will conduct a series of lifts, moves and stacking operations using the booster segments, which are inert, to prepare for Exploration Mission-1, deep-space missions and the journey to Mars. The pathfinder booster segments are from Orbital ATK in Utah.

  19. SLS Pathfinder Segments Car Train Departure

    NASA Image and Video Library

    2016-03-02

    An Iowa Northern locomotive, contracted by Goodloe Transportation of Chicago, continues along the NASA railroad bridge over the Indian River north of Kennedy Space Center, carrying one of two containers on a railcar for transport to the NASA Jay Jay railroad yard. The containers held two pathfinders, or test versions, of solid rocket booster segments for NASA’s Space Launch System rocket that were delivered to the Rotation, Processing and Surge Facility (RPSF). Inside the RPSF, the Ground Systems Development and Operations Program and Jacobs Engineering, on the Test and Operations Support Contract, will conduct a series of lifts, moves and stacking operations using the booster segments, which are inert, to prepare for Exploration Mission-1, deep-space missions and the journey to Mars. The pathfinder booster segments are from Orbital ATK in Utah.

  20. SLS Pathfinder Segments Car Train Departure

    NASA Image and Video Library

    2016-03-02

    An Iowa Northern locomotive, contracted by Goodloe Transportation of Chicago, departs from the Rotation, Processing and Surge Facility (RPSF) at NASA’s Kennedy Space Center in Florida, with two containers on railcars for transport to the NASA Jay Jay railroad yard. The containers held two pathfinders, or test versions, of solid rocket booster segments for NASA’s Space Launch System rocket that were delivered to the RPSF. Inside the RPSF, the Ground Systems Development and Operations Program and Jacobs Engineering, on the Test and Operations Support Contract, will conduct a series of lifts, moves and stacking operations using the booster segments, which are inert, to prepare for Exploration Mission-1, deep-space missions and the journey to Mars. The pathfinder booster segments are from Orbital ATK in Utah.

  1. Reduction and Analysis of Meteorology Data from the Mars Pathfinder Lander

    NASA Technical Reports Server (NTRS)

    Murphy, James R.; Bridger, Alison F. C.; Haberle, Robert M.

    1998-01-01

    Dr. James Murphy is a member of the Mars Pathfinder Atmospheric Structure Investigation Meteorology (ASI/MET) Science Team. The activities of Dr. Murphy, and his collaborators are summarized in this report, which reviews the activities in support of the analysis of the meteorology data from the Mars Pathfinder Lander.

  2. Pathfinder Sea Surface Temperature Climate Data Record

    NASA Astrophysics Data System (ADS)

    Baker-Yeboah, S.; Saha, K.; Zhang, D.; Casey, K. S.

    2016-02-01

    Global sea surface temperature (SST) fields are important in understanding ocean and climate variability. The NOAA National Centers for Environmental Information (NCEI) develops and maintains a high resolution, long-term, climate data record (CDR) of global satellite SST. These SST values are generated at approximately 4 km resolution using Advanced Very High Resolution Radiometer (AVHRR) instruments aboard NOAA polar-orbiting satellites going back to 1981. The Pathfinder SST algorithm is based on the Non-Linear SST algorithm using the modernized NASA SeaWiFS Data Analysis System (SeaDAS). Coefficients for this SST product were generated using regression analyses with co-located in situ and satellite measurements. Previous versions of Pathfinder included level 3 collated (L3C) products. Pathfinder Version 5.3 includes level 2 pre-processed (L2P), level 3 Uncollated (L3C), and L3C products. Notably, the data were processed in the cloud using Amazon Web Services and are made available through all of the modern web visualization and subset services provided by the THREDDS Data Server, the Live Access Server, and the OPeNDAP Hyrax Server.In this version of Pathfinder SST, anomalous hot-spots at land-water boundaries are better identified and the dataset includes updated land masks and sea ice data over the Antarctic ice shelves. All quality levels of SST values are generated, giving the user greater flexibility and the option to apply their own cloud-masking procedures. Additional improvements include consistent cloud tree tests for NOAA-07 and NOAA-19 with respect to the other sensors, improved SSTs in sun glint areas, and netCDF file format improvements to ensure consistency with the latest Group for High Resolution SST (GHRSST) requirements. This quality controlled satellite SST field is a reference environmental data record utilized as a primary resource of SST for numerous regional and global marine efforts.

  3. Canadian Hydrogen Intensity Mapping Experiment (CHIME) pathfinder

    NASA Astrophysics Data System (ADS)

    Bandura, Kevin; Addison, Graeme E.; Amiri, Mandana; Bond, J. Richard; Campbell-Wilson, Duncan; Connor, Liam; Cliche, Jean-François; Davis, Greg; Deng, Meiling; Denman, Nolan; Dobbs, Matt; Fandino, Mateus; Gibbs, Kenneth; Gilbert, Adam; Halpern, Mark; Hanna, David; Hincks, Adam D.; Hinshaw, Gary; Höfer, Carolin; Klages, Peter; Landecker, Tom L.; Masui, Kiyoshi; Mena Parra, Juan; Newburgh, Laura B.; Pen, Ue-li; Peterson, Jeffrey B.; Recnik, Andre; Shaw, J. Richard; Sigurdson, Kris; Sitwell, Mike; Smecher, Graeme; Smegal, Rick; Vanderlinde, Keith; Wiebe, Don

    2014-07-01

    A pathfinder version of CHIME (the Canadian Hydrogen Intensity Mapping Experiment) is currently being commissioned at the Dominion Radio Astrophysical Observatory (DRAO) in Penticton, BC. The instrument is a hybrid cylindrical interferometer designed to measure the large scale neutral hydrogen power spectrum across the redshift range 0.8 to 2.5. The power spectrum will be used to measure the baryon acoustic oscillation (BAO) scale across this poorly probed redshift range where dark energy becomes a significant contributor to the evolution of the Universe. The instrument revives the cylinder design in radio astronomy with a wide field survey as a primary goal. Modern low-noise amplifiers and digital processing remove the necessity for the analog beam forming that characterized previous designs. The Pathfinder consists of two cylinders 37m long by 20m wide oriented north-south for a total collecting area of 1,500 square meters. The cylinders are stationary with no moving parts, and form a transit instrument with an instantaneous field of view of ~100 degrees by 1-2 degrees. Each CHIME Pathfinder cylinder has a feedline with 64 dual polarization feeds placed every ~30 cm which Nyquist sample the north-south sky over much of the frequency band. The signals from each dual-polarization feed are independently amplified, filtered to 400-800 MHz, and directly sampled at 800 MSps using 8 bits. The correlator is an FX design, where the Fourier transform channelization is performed in FPGAs, which are interfaced to a set of GPUs that compute the correlation matrix. The CHIME Pathfinder is a 1/10th scale prototype version of CHIME and is designed to detect the BAO feature and constrain the distance-redshift relation. The lessons learned from its implementation will be used to inform and improve the final CHIME design.

  4. Results of the Imager for Mars Pathfinder windsock experiment

    USGS Publications Warehouse

    Sullivan, R.; Greeley, R.; Kraft, M.; Wilson, G.; Golombek, M.; Herkenhoff, K.; Murphy, J.; Smith, P.

    2000-01-01

    The Imager for Mars Pathfinder (IMP) windsock experiment measured wind speeds at three heights within 1.2 m of the Martian surface during Pathfinder landed operations. These wind data allowed direct measurement of near-surface wind profiles on Mars for the first time, including determination of aerodynamic roughness length and wind friction speeds. Winds were light during periods of windsock imaging, but data from the strongest breezes indicate aerodynamic roughness length of 3 cm at the landing site, with wind friction speeds reaching 1 m/s. Maximum wind friction speeds were about half of the threshold-of-motion friction speeds predicted for loose, fine-grained materials on smooth Martian terrain and about one third of the threshold-of-motion friction speeds predicted for the same size particles over terrain with aerodynamic roughness of 3 cm. Consistent with this, and suggesting that low wind speeds prevailed when the windsock array was not imaged and/or no particles were available for aeolian transport, no wind-related changes to the surface during mission operations have been recognized. The aerodynamic roughness length reported here implies that proposed deflation of fine particles around the landing site, or activation of duneforms seen by IMP and Sojourner, would require wind speeds >28 m/s at the Pathfinder top windsock height (or >31 m/s at the equivalent Viking wind sensor height of 1.6 m) and wind speeds >45 m/s above 10 m. These wind speeds would cause rock abrasion if a supply of durable particles were available for saltation. Previous analyses indicate that the Pathfinder landing site probably is rockier and rougher than many other plains units on Mars, so aerodynamic roughness length elsewhere probably is less than the 3-cm value reported for the Pathfinder site. Copyright 2000 by the American Geophysical Union.

  5. The Mars Pathfinder Mission

    NASA Astrophysics Data System (ADS)

    Golombek, M. P.

    1996-09-01

    The Mars Pathfinder mission is a Discovery class mission that will place a small lander and rover on the surface of Mars on July 4, 1997. The Pathfinder flight system is a single small lander, packaged within an aeroshell and back cover with a back-pack-style cruise stage. The vehicle will be launched, fly independently to Mars, and enter the atmosphere directly on approach behind the aeroshell. The vehicle is slowed by a parachute and 3 small solid rockets before landing on inflated airbags. Petals of a small tetrahedron shaped lander open up, to right the vehicle. The lander is solar powered with batteries and will operate on the surface for up to a year, downlinking data on a high-gain antenna. Pathfinder will be the first mission to use a rover, with 3 imagers and an alpha proton X-ray spectrometer, to characterize the rocks and soils in a landing area over hundreds of square meters on Mars, which will provide a calibration point or "ground truth" for orbital remote sensing observations. The rover (includes a series of technology experiments), the instruments (including a stereo multispectral surface imager on a pop up mast and an atmospheric structure instrument-surface meteorology package) and the telemetry system will allow investigations of: the surface morphology and geology at meter scale, the petrology and geochemistry of rocks and soils, the magnetic properties of dust, soil mechanics and properties, a variety of atmospheric investigations and the rotational and orbital dynamics of Mars. Landing downstream from the mouth of a giant catastrophic outflow channel, Ares Vallis, offers the potential of identifying and analyzing a wide variety of crustal materials, from the ancient heavily cratered terrain, intermediate-aged ridged plains and reworked channel deposits, thus allowing first-order scientific investigations of the early differentiation and evolution of the crust, the development of weathering products and early environments and conditions on Mars.

  6. Pathfinder Teaching and Learning Units.

    ERIC Educational Resources Information Center

    Hawaii Univ., Honolulu. Sea Grant Program.

    This collection of teaching units were selected from materials developed during the Operation Pathfinder Institutes (OPI) which took place in the Pacific region between 1994 and 1999. The institutes were intended to provide upper elementary and middle school science teachers with an opportunity to develop a deeper understanding of the marine…

  7. Relating MBSE to Spacecraft Development: A NASA Pathfinder

    NASA Technical Reports Server (NTRS)

    Othon, Bill

    2016-01-01

    The NASA Engineering and Safety Center (NESC) has sponsored a Pathfinder Study to investigate how Model Based Systems Engineering (MBSE) and Model Based Engineering (MBE) techniques can be applied by NASA spacecraft development projects. The objectives of this Pathfinder Study included analyzing both the products of the modeling activity, as well as the process and tool chain through which the spacecraft design activities are executed. Several aspects of MBSE methodology and process were explored. Adoption and consistent use of the MBSE methodology within an existing development environment can be difficult. The Pathfinder Team evaluated the possibility that an "MBSE Template" could be developed as both a teaching tool as well as a baseline from which future NASA projects could leverage. Elements of this template include spacecraft system component libraries, data dictionaries and ontology specifications, as well as software services that do work on the models themselves. The Pathfinder Study also evaluated the tool chain aspects of development. Two chains were considered: 1. The Development tool chain, through which SysML model development was performed and controlled, and 2. The Analysis tool chain, through which both static and dynamic system analysis is performed. Of particular interest was the ability to exchange data between SysML and other engineering tools such as CAD and Dynamic Simulation tools. For this study, the team selected a Mars Lander vehicle as the element to be designed. The paper will discuss what system models were developed, how data was captured and exchanged, and what analyses were conducted.

  8. SLS Pathfinder Segments Car Train Departure

    NASA Image and Video Library

    2016-03-02

    An Iowa Northern locomotive, contracted by Goodloe Transportation of Chicago, approaches the raised span of the NASA railroad bridge to continue over the Indian River north of Kennedy Space Center with two containers on railcars for storage at the NASA Jay Jay railroad yard. The containers held two pathfinders, or test versions, of solid rocket booster segments for NASA’s Space Launch System rocket that were delivered to the Rotation, Processing and Surge Facility (RPSF). Inside the RPSF, the Ground Systems Development and Operations Program and Jacobs Engineering, on the Test and Operations Support Contract, will conduct a series of lifts, moves and stacking operations using the booster segments, which are inert, to prepare for Exploration Mission-1, deep-space missions and the journey to Mars. The pathfinder booster segments are from Orbital ATK in Utah.

  9. SLS Pathfinder Segments Car Train Departure

    NASA Image and Video Library

    2016-03-02

    An Iowa Northern locomotive, contracted by Goodloe Transportation of Chicago, travels along the NASA railroad bridge over the Indian River north of Kennedy Space Center, carrying one of two containers on a railcar for transport to the NASA Jay Jay railroad yard near the center. The containers held two pathfinders, or test versions, of solid rocket booster segments for NASA’s Space Launch System rocket that were delivered to the Rotation, Processing and Surge Facility (RPSF). Inside the RPSF, the Ground Systems Development and Operations Program and Jacobs Engineering, on the Test and Operations Support Contract, will conduct a series of lifts, moves and stacking operations using the booster segments, which are inert, to prepare for Exploration Mission-1, deep-space missions and the journey to Mars. The pathfinder booster segments are from Orbital ATK in Utah.

  10. Design Overview of the DM Radio Pathfinder Experiment

    NASA Technical Reports Server (NTRS)

    Silva-Feaver, Maximiliano; Chaudhuri, Saptarshi; Cho, Hsaio-Mei; Dawson, Carl; Graham, Peter; Irwin, Kent; Kuenstner, Stephen; Li, Dale; Mardon, Jeremy; Moseley, Harvey; hide

    2016-01-01

    We introduce the DM Radio, a dual search for axion and hidden photon dark matter using a tunable superconducting lumped-element resonator. We discuss the prototype DM Radio Pathfinder experiment, which will probe hidden photons in the 500 peV (100 kHz)-50 neV (10 MHz) mass range. We detail the design of the various components: the LC resonant detector, the resonant frequency tuning procedure, the differential SQUID readout circuit, the shielding, and the cryogenic mounting structure. We present the current status of the pathfinder experiment and illustrate it's potential science reach in the context of the larger experimental program.

  11. Java Application Shell: A Framework for Piecing Together Java Applications

    NASA Technical Reports Server (NTRS)

    Miller, Philip; Powers, Edward I. (Technical Monitor)

    2001-01-01

    This session describes the architecture of Java Application Shell (JAS), a Swing-based framework for developing interactive Java applications. Java Application Shell is being developed by Commerce One, Inc. for NASA Goddard Space Flight Center Code 588. The purpose of JAS is to provide a framework for the development of Java applications, providing features that enable the development process to be more efficient, consistent and flexible. Fundamentally, JAS is based upon an architecture where an application is considered a collection of 'plugins'. In turn, a plug-in is a collection of Swing actions defined using XML and packaged in a jar file. Plug-ins may be local to the host platform or remotely-accessible through HTTP. Local and remote plugins are automatically discovered by JAS upon application startup; plugins may also be loaded dynamically without having to re-start the application. Using Extensible Markup Language (XML) to define actions, as opposed to hardcoding them in application logic, allows easier customization of application-specific operations by separating application logic from presentation. Through XML, a developer defines an action that may appear on any number of menus, toolbars, and buttons. Actions maintain and propagate enable/disable states and specify icons, tool-tips, titles, etc. Furthermore, JAS allows actions to be implemented using various scripting languages through the use of IBM's Bean Scripting Framework. Scripted action implementation is seamless to the end-user. In addition to action implementation, scripts may be used for application and unit-level testing. In the case of application-level testing, JAS has hooks to assist a script in simulating end-user input. JAS also provides property and user preference management, JavaHelp, Undo/Redo, Multi-Document Interface, Single-Document Interface, printing, and logging. Finally, Jini technology has also been included into the framework by means of a Jini services browser and the

  12. Validation of the Version 1 NOAA/NASA Pathfinder Sea Surface Temperature Data Set

    NASA Technical Reports Server (NTRS)

    Smith, Elizabeth A.

    1998-01-01

    A high-resolution, global satellite-derived sea surface temperature (SST) data set called Pathfinder, from the Advanced Very High Resolution Radiometer (AVHRR) aboard the NOAA Polar Orbiters, is available from the Jet Propulsion Laboratory Physical Oceanography Distributed Active Archive Center (JPL PO.DAAC). Suitable for research as well as education, the Pathfinder SST data set is a result of a collaboration between the National Oceanographic and Atmospheric Administration (NOAA), the National Aeronautics and Space Administration (NASA) and investigators at several universities. NOAA and NASA are the sponsors of the Pathfinder Program, which takes advantage of currently archived Earth science data from satellites. Where necessary, satellite sensors have been intercalibrated, algorithms improved and processing procedures revised, in order to produce long time-series, global measurements of ocean, land and atmospheric properties necessary for climate research. Many Pathfinder data sets are available to researchers now, nearly a decade before the first launch of NASA's Earth Observing System (EOS). The lessons learned from the Pathfinder programs will facilitate the processing and management of terabytes of data from EOS. The Oceans component of Pathfinder has undertaken to reprocess all Global Area Coverage (GAC) data acquired by the 5-channel AVHRRs since 1981. The resultant data products are consistent and stably calibrated [Rao, 1993a, Rao, 1993b, Brown et al., 1993], Earth-gridded SST fields at a variety of spatial and temporal resolutions.

  13. Pathfinder aircraft liftoff on altitude record setting flight of 71,500 feet

    NASA Image and Video Library

    1997-07-07

    The Pathfinder aircraft has set a new unofficial world record for high-altitude flight of over 71,500 feet for solar-powered aircraft at the U.S. Navy's Pacific Missile Range Facility, Kauai, Hawaii. Pathfinder was designed and manufactured by AeroVironment, Inc, of Simi Valley, California, and was operated by the firm under a jointly sponsored research agreement with NASA's Dryden Flight Research Center, Edwards, California. Pathfinder's record-breaking flight occurred July 7, 1997. The aircraft took off at 11:34 a.m. PDT, passed its previous record altitude of 67,350 feet at about 5:45 p.m. and then reached its new record altitude at 7 p.m. The mission ended with a perfect nighttime landing at 2:05 a.m. PDT July 8. The new record is the highest altitude ever attained by a propellor-driven aircraft. Before Pathfinder, the altitude record for propellor-driven aircraft was 67,028 feet, set by the experimental Boeing Condor remotely piloted aircraft.

  14. Holographic beam mapping of the CHIME pathfinder array

    NASA Astrophysics Data System (ADS)

    Berger, Philippe; Newburgh, Laura B.; Amiri, Mandana; Bandura, Kevin; Cliche, Jean-François; Connor, Liam; Deng, Meiling; Denman, Nolan; Dobbs, Matt; Fandino, Mateus; Gilbert, Adam J.; Good, Deborah; Halpern, Mark; Hanna, David; Hincks, Adam D.; Hinshaw, Gary; Höfer, Carolin; Johnson, Andre M.; Landecker, Tom L.; Masui, Kiyoshi W.; Mena Parra, Juan; Oppermann, Niels; Pen, Ue-Li; Peterson, Jeffrey B.; Recnik, Andre; Robishaw, Timothy; Shaw, J. Richard; Siegel, Seth; Sigurdson, Kris; Smith, Kendrick; Storer, Emilie; Tretyakov, Ian; Van Gassen, Kwinten; Vanderlinde, Keith; Wiebe, Donald

    2016-08-01

    The Canadian Hydrogen Intensity Mapping Experiment (CHIME) Pathfinder radio telescope is currently surveying the northern hemisphere between 400 and 800 MHz. By mapping the large scale structure of neutral hydrogen through its redshifted 21 cm line emission between z 0.8-2.5 CHIME will contribute to our understanding of Dark Energy. Bright astrophysical foregrounds must be separated from the neutral hydrogen signal, a task which requires precise characterization of the polarized telescope beams. Using the DRAO John A. Galt 26 m telescope, we have developed a holography instrument and technique for mapping the CHIME Pathfinder beams. We report the status of the instrument and initial results of this effort.

  15. LISA Pathfinder: An important first step towards a space-based gravitational wave observatory

    NASA Astrophysics Data System (ADS)

    Thorpe, James

    2017-08-01

    ESA's LISA Pathfinder mission was launched on Dec 3rd, 2015 and completed earlier this Summer. During this relatively short mission, Pathfinder at its two science payloads, Europe's LISA Technology Package and NASA's Disturbance Reduction System, demonstrated several techniques and technologies that enable development of a future space-based gravitational wave observatory. Most notably, Pathfinder demonstrated that the technique of drag-free flight could be utilized to place a test mass in near-perfect free-fall, with residual accelerations at the femto-g level in the milliHertz band. Additionally, technologies such as precision bonded optical structures for metrology, micropropulsion systems, and non-contact charge control, were successfully tested, retiring risk for LISA. In this talk, I will present an overview of Pathfinder's results to date and some perspective on how this success will be leveraged into realizing LISA.

  16. Pathfinder aircraft taking off - setting new solar powered altitude record

    NASA Image and Video Library

    1995-09-11

    The Pathfinder solar-powered remotely piloted aircraft climbs to a record-setting altitude of 50,567 feet during a flight Sept. 11, 1995, at NASA's Dryden Flight Research Center, Edwards, California. The flight was part of the NASA ERAST (Environmental Research Aircraft and Sensor Technology) program. The Pathfinder was designed and built by AeroVironment Inc., Monrovia, California. Solar arrays cover nearly all of the upper wing surface and produce electricity to power the aircraft's six motors.

  17. MARS PATHFINDER INSPECTED BY ENGINEER LINDA ROBECK IN SAEF-2

    NASA Technical Reports Server (NTRS)

    1996-01-01

    In the SAEF-2 spacecraft checkout facility, engineer Linda Robeck of the Jet Propulsion Laboratory inspects the Mars Pathfinder lander. The spacecraft arrived at Kennedy Space Center from Pasadena, CA on Aug. 13, 1996. The petals of the lander will be opened for checkout of the spacecraft and the installation of the small rover. Launch of Mars Pathfinder aboard a McDonnell Douglas Delta II rocket will occur from Pad B at Complex 17 on Dec. 2.

  18. Modeling to Mars: a NASA Model Based Systems Engineering Pathfinder Effort

    NASA Technical Reports Server (NTRS)

    Phojanamongkolkij, Nipa; Lee, Kristopher A.; Miller, Scott T.; Vorndran, Kenneth A.; Vaden, Karl R.; Ross, Eric P.; Powell, Bobby C.; Moses, Robert W.

    2017-01-01

    The NASA Engineering Safety Center (NESC) Systems Engineering (SE) Technical Discipline Team (TDT) initiated the Model Based Systems Engineering (MBSE) Pathfinder effort in FY16. The goals and objectives of the MBSE Pathfinder include developing and advancing MBSE capability across NASA, applying MBSE to real NASA issues, and capturing issues and opportunities surrounding MBSE. The Pathfinder effort consisted of four teams, with each team addressing a particular focus area. This paper focuses on Pathfinder team 1 with the focus area of architectures and mission campaigns. These efforts covered the timeframe of February 2016 through September 2016. The team was comprised of eight team members from seven NASA Centers (Glenn Research Center, Langley Research Center, Ames Research Center, Goddard Space Flight Center IV&V Facility, Johnson Space Center, Marshall Space Flight Center, and Stennis Space Center). Collectively, the team had varying levels of knowledge, skills and expertise in systems engineering and MBSE. The team applied their existing and newly acquired system modeling knowledge and expertise to develop modeling products for a campaign (Program) of crew and cargo missions (Projects) to establish a human presence on Mars utilizing In-Situ Resource Utilization (ISRU). Pathfinder team 1 developed a subset of modeling products that are required for a Program System Requirement Review (SRR)/System Design Review (SDR) and Project Mission Concept Review (MCR)/SRR as defined in NASA Procedural Requirements. Additionally, Team 1 was able to perform and demonstrate some trades and constraint analyses. At the end of these efforts, over twenty lessons learned and recommended next steps have been identified.

  19. Detection of Micrometeoroids with LISA Pathfinder

    NASA Astrophysics Data System (ADS)

    Thorpe, Ira; Littenberg, Tyson; Janchez, Diego; Baker, John; The LISA Pathfinder Team Team

    2017-01-01

    The LISA Pathfinder mission (LPF), a joint ESA/NASA technology demonstration mission currently operating at the Sun-Earth L1 point, contains the most precise accelerometry system ever flown. Analysis suggests that LPF should have sufficient sensitivity to detect impacts of small micrometeoroids and dust through their transfer of momentum to the spacecraft. Moreover, LPF's ability to fully resolve both the linear and angular momentum transfer in three dimensions allows a magnitude, direction, and location to be estimated for each impact. We present preliminary results from a systematic search of the LISA Pathfinder data for such impacts and discuss the prospects for using these and future results to inform models of the formation and evolution of dust populations in the inner solar system. These models have wide applicability to both pure and applied space science, ranging from the physics of planet formation and dynamics of minor Solar System bodies to estimates of the micrometeorite hazard for future spacecraft. 2017 NASA Science Innovation Fund.

  20. LISA Pathfinder first results

    NASA Astrophysics Data System (ADS)

    Vetrugno, D.

    LISA Pathfinder (LPF) is an in-flight technological demonstrator designed and launched to prove the feasibility of sub-femto-g free fall of kilo-sized test masses (TM), an essential ingredient for the future gravitational wave observatory from space. Half a year after launch, the first results are available and show an incredibly well-performing instrument. The results represent a first and important step towards the long awaited construction and launch of LISA, the Laser Interferometer Space Antenna.

  1. Mars Pathfinder Microrover- Implementing a Low Cost Planetary Mission Experiment

    NASA Technical Reports Server (NTRS)

    Matijevic, J.

    1996-01-01

    The Mars Pathfinder Microrover Flight Experiment (MFEX) is a NASA Office of Space Access and Technology (OSAT) flight experiment which has been delivered and integrated with the Mars Pathfinder (MPF) lander and spacecraft system. The total cost of the MFEX mission, including all subsystem design and development, test, integration with the MPF lander and operations on Mars has been capped at $25 M??is paper discusses the process and the implementation scheme which has resulted in the development of this first Mars rover.

  2. Monitoring Java Programs with Java PathExplorer

    NASA Technical Reports Server (NTRS)

    Havelund, Klaus; Rosu, Grigore; Clancy, Daniel (Technical Monitor)

    2001-01-01

    We present recent work on the development Java PathExplorer (JPAX), a tool for monitoring the execution of Java programs. JPAX can be used during program testing to gain increased information about program executions, and can potentially furthermore be applied during operation to survey safety critical systems. The tool facilitates automated instrumentation of a program's late code which will then omit events to an observer during its execution. The observer checks the events against user provided high level requirement specifications, for example temporal logic formulae, and against lower level error detection procedures, for example concurrency related such as deadlock and data race algorithms. High level requirement specifications together with their underlying logics are defined in the Maude rewriting logic, and then can either be directly checked using the Maude rewriting engine, or be first translated to efficient data structures and then checked in Java.

  3. Pathfinders: An Intellectual Guide to Libraries.

    ERIC Educational Resources Information Center

    Jung, Claudia Ruediger; And Others

    Intended as an example for other college libraries, this collection of 38 pathfinders and bibliographies was developed by the reference staff of the Calvin Coolidge Library at Castleton State College, Vermont. Designed to present the types of literature available in particular subject fields and those works readily available in the Coolidge…

  4. Pathfinders on Black Dance in America.

    ERIC Educational Resources Information Center

    Roy, Loriene, Ed.

    This is a compilation of 18 pathfinders (i.e., a bibliographic instruction aid) on black dance in America, prepared by graduate students in the "Information Resources in the Humanities" and the "Information Resources in the Social Sciences" classes in the Graduate School of Library and Information Science at the University of…

  5. Pathfinder-Plus aircraft in flight

    NASA Technical Reports Server (NTRS)

    1998-01-01

    The Pathfinder-Plus solar-powered aircraft is shown taking off from a runway, then flying at low altitude over the ocean. The vehicle, which looks like a flying ruler, operates at low airspeed. Among the missions proposed for a solar-powered aircraft are communications relay, atmospheric studies, pipeline monitoring and gas leak detection, environmental monitoring using thermal and radar images, and disaster relief and monitoring.

  6. Disturbance Reduction System Thrusters Stabilize LISA Pathfinder

    NASA Image and Video Library

    2015-12-03

    The LISA Pathfinder spacecraft is on its way to space, having successfully launched from Kourou, French Guiana Dec. 3, 2015. On board is the state-of-the-art Disturbance Reduction System DRS, a thruster technology developed at NASA JPL.

  7. MARS PATHFINDER LANDER REMOVED FROM SHIPPING CONTAINER IN SAEF-2

    NASA Technical Reports Server (NTRS)

    1996-01-01

    In the SAEF-2 spacecraft checkout facility at Kennedy Space Center, engineers and technicians from Jet Propulsion Laboratory remove the Mars Pathfinder lander from its shipping container, still covered in protective wrapping. Pictured from L-R, Linda Robeck, Jerry Gutierrez, Lorraine Garcia, Chuck Foehlinger of JPL. The arrival of the spacecraft at KSC from Pasadena, CA occurred on Aug. 13, 1996. Launch of Mars Pathfinder aboard a McDonnell Douglas Delta II rocket will occur from Pad B at Complex 17 on Dec. 2.

  8. Laser modulator for LISA pathfinder

    NASA Astrophysics Data System (ADS)

    Voland, C.; Lund, G.; Coppoolse, W.; Crosby, P.; Stadler, M.; Kudielka, K.; Özkan, C.

    2017-11-01

    LISA Pathfinder is an ESA experiment to demonstrate the key technologies needed for the LISA mission to detect gravitational waves in space. The LISA Pathfinder spacecraft represents one arm of the LISA interferometer, containing an optical metrology system and two proof masses as inertial references for the drag-free control system. The LISA Pathfinder payload consists of two drag-free floating test masses located in the inertial sensors with their control electronics and an optical metrology subsystem. The optical metrology subsystem monitors the movement of both test masses relative to each other and to the spacecraft with very high sensitivity and resolution. This is achieved with a heterodyne Mach- Zehnder interferometer. This interferometer requires as input two coherent laser beams with a heterodyne frequency difference of a few kHz. To generate the two laser beams with a heterodyne frequency difference a Nd:YAG laser is used together with the Laser Modulator. The Nd:YAG laser generates a single coherent laser signal at a wavelength of 1064nm which is fibre coupled to the Laser Modulator. The Laser Modulator then generates the two optical beams with the required heterodyne frequency offset. In addition, the Laser Modulator is required to perform laser amplitude stabilization and optical path difference control for the two optical signals. The Laser Modulator consists of an optical unit - the LMU - and RF synthesiser, power amplification and control electronics. These electronics are all housed in the Laser Modulator Electronics (LME). The LMU has four primary functions: • Splitting of the input laser beam into two paths for later superposition in the interferometer. • Applying different frequency shifts to each of the beams. • Providing amplitude modulation control to each of the beams. • Providing active control of the optical path length difference between the two optical paths. The present paper describes the design and performance of the LMU

  9. AVHRR-Based Polar Pathfinder Products: Evaluation, Enhancement and Transition to MODIS

    NASA Technical Reports Server (NTRS)

    Fowler, Charles; Masalanik, James; Stone, Robert; Stroeve, Julienne; Emery, William

    2001-01-01

    The Advanced Very High Resolution Radiometer (AVHRR)-Based Polar Pathfinder (APP) products include calibrated AVHRR channel data, surface temperatures, albedo, satellite scan and solar geometries, and cloud mask, all composited into twice-per-day images, and daily averaged fields of sea ice motion, for regions poleward of 50 latitude. Our general goals under this grant: (1) Quantify the APP accuracy and sources of error by comparing Pathfinder products with field measurements; (2) Determine the consistency of mean fields and trends in comparison with longer time series of available station data and forecast model output; (3) Investigate the consistency of the products between the different AVHRR instruments over the 1982-present period of the NOAA program; and (4) Compare and annual cycle of the APP products with MODIS to establish a baseline for extending Pathfinder-type products into the new ESE period.

  10. Modis, SeaWIFS, and Pathfinder funded activities

    NASA Technical Reports Server (NTRS)

    Evans, Robert H.

    1995-01-01

    MODIS (Moderate Resolution Imaging Spectrometer), SeaWIFS (Sea-viewing Wide Field Sensor), Pathfinder, and DSP (Digital Signal Processor) objectives are summarized. An overview of current progress is given for the automatic processing database, client/server status, matchup database, and DSP support.

  11. Pathfinder operations

    NASA Technical Reports Server (NTRS)

    Wilcher, J.; Stelzried, C.; Finley, S.

    1986-01-01

    In 1981, the Inter-Agency Consultative Group (composed of European, Soviet, Japanese and American space agency representatives) conceived the idea of using the two Soviet Vega spacecraft as pathfinders for Giotto since they would arrive at Halley's Comet approximately one week before Giotto. The Vega trajectory data and the Halley camera angle data were combined to improve the comet orbit accuracy. This was used to improve the Giotto fly-by targeting. The DSN performed delta DOR (VLBI) and one-way Doppler measurements of the Vega spacecraft for orbit determination. Although the early part-up phase had many problems, the results during the critical November 30, 1985 to March 4, 1986 operational phase had an overall 95 percent success rate, with 59 successes out of 62 two-station passes.

  12. Analysis of variables affecting unemployment rate and detecting for cluster in West Java, Central Java, and East Java in 2012

    NASA Astrophysics Data System (ADS)

    Samuel, Putra A.; Widyaningsih, Yekti; Lestari, Dian

    2016-02-01

    The objective of this study is modeling the Unemployment Rate (UR) in West Java, Central Java, and East Java, with rate of disease, infant mortality rate, educational level, population size, proportion of married people, and GDRP as the explanatory variables. Spatial factors are also considered in the modeling since the closer the distance, the higher the correlation. This study uses the secondary data from BPS (Badan Pusat Statistik). The data will be analyzed using Moran I test, to obtain the information about spatial dependence, and using Spatial Autoregressive modeling to obtain the information, which variables are significant affecting UR and how great the influence of the spatial factors. The result is, variables proportion of married people, rate of disease, and population size are related significantly to UR. In all three regions, the Hotspot of unemployed will also be detected districts/cities using Spatial Scan Statistics Method. The results are 22 districts/cities as a regional group with the highest unemployed (Most likely cluster) in the study area; 2 districts/cities as a regional group with the highest unemployed in West Java; 1 district/city as a regional groups with the highest unemployed in Central Java; 15 districts/cities as a regional group with the highest unemployed in East Java.

  13. Immersive Environments for Mission Operations: Beyond Mars Pathfinder

    NASA Technical Reports Server (NTRS)

    Wright, J.; Hartman, F.; Cooper, B.

    1998-01-01

    Immersive environments are just beginning to be used to support mission operations at the Jet Propulsion Laboratory. This technology contributed to the Mars Pathfinder Mission in planning sorties for the Sojourner rover.

  14. Java Programming Language

    NASA Technical Reports Server (NTRS)

    Shaykhian, Gholam Ali

    2007-01-01

    The Java seminar covers the fundamentals of Java programming language. No prior programming experience is required for participation in the seminar. The first part of the seminar covers introductory concepts in Java programming including data types (integer, character, ..), operators, functions and constants, casts, input, output, control flow, scope, conditional statements, and arrays. Furthermore, introduction to Object-Oriented programming in Java, relationships between classes, using packages, constructors, private data and methods, final instance fields, static fields and methods, and overloading are explained. The second part of the seminar covers extending classes, inheritance hierarchies, polymorphism, dynamic binding, abstract classes, protected access. The seminar conclude by introducing interfaces, properties of interfaces, interfaces and abstract classes, interfaces and cailbacks, basics of event handling, user interface components with swing, applet basics, converting applications to applets, the applet HTML tags and attributes, exceptions and debugging.

  15. Gambling on the Protestants: the Pathfinder Fund and birth control in Peru, 1958-1965.

    PubMed

    López, L Necochea

    2014-01-01

    Among the agencies involved in population control activities in the mid-twentieth century, none scored as many early victories in Latin America as did the Pathfinder Fund, founded by Procter & Gamble scion Clarence Gamble. This article analyzes a style in the delivery of family planning assistance in the developing world through the work of the Pathfinder Fund in Peru, the organization's hub in South America, and shows how Pathfinder personnel collaborated with local Protestant institutions. Its Protestant allies helped Pathfinder set up and manage rapid interventions such as the production of pamphlets, the smuggling of contraceptives, and the enrollment of physicians as advocates of the use of intrauterine devices. Although these rapid interventions helped quickly disseminate information and certain technologies among a fortunate few, they also weakened legitimate state agencies, neglected the monitoring of the safety of the drugs supplied, and alienated allies with their high-handed boldness.

  16. Operations and Autonomy of the Mars Pathfinder Microrover

    NASA Technical Reports Server (NTRS)

    Mishkin, A. H.; Morrison, J. C.; Nguyen, T. T.; Stone, H. W.; Cooper, B. K.

    1998-01-01

    The Microrover Flight Experiment (MFEX) is a NSAS OACT (Office of Advanced Concepts and Technology) flight experiment which, integrated with the Mars Pathfinder (MPF) lander and spacecraft system, landed on Mars on July 4, 1997.

  17. Pathfinder on lakebed rolling out for test flight

    NASA Image and Video Library

    1995-12-10

    The Pathfinder research aircraft's wing structure is clearly defined in this photo as personnel from AeroVironment rolled it out onto the lakebed at NASA's Dryden Flight Research Center, Edwards, California, for another test flight.

  18. Mineralogic and compositional properties of Martian soil and dust: results from Mars Pathfinder

    USGS Publications Warehouse

    Bell, J.F.; McSween, H.Y.; Crisp, J.A.; Morris, R.V.; Murchie, S.L.; Bridges, N.T.; Johnson, J. R.; Britt, D.T.; Golombek, M.P.; Moore, H.J.; Ghosh, A.; Bishop, J.L.; Anderson, R.C.; Brückner, J.; Economou, T.; Greenwood, J.P.; Gunnlaugsson, H.P.; Hargraves, R.M.; Hviid, S.; Knudsen, J.M.; Madsen, M.B.; Reid, R.; Rieder, R.; Soderblom, L.

    2000-01-01

    Mars Pathfinder obtained multispectral, elemental, magnetic, and physical measurements of soil and dust at the Sagan Memorial Station during the course of its 83 sol mission. We describe initial results from these measurements, concentrating on multispectral and elemental data, and use these data, along with previous Viking, SNC meteorite, and telescopic results, to help constrain the origin and evolution of Martian soil and dust. We find that soils and dust can be divided into at least eight distinct spectral units, based on parameterization of Imager for Mars Pathfinder (IMP) 400 to 1000 nm multispectral images. The most distinctive spectral parameters for soils and dust are the reflectivity in the red, the red/blue reflectivity ratio, the near-IR spectral slope, and the strength of the 800 to 1000 nm absorption feature. Most of the Pathfinder spectra are consistent with the presence of poorly crystalline or nanophase ferric oxide(s), sometimes mixed with small but varying degrees of well-crystalline ferric and ferrous phases. Darker soil units appear to be coarser-grained, compacted, and/or mixed with a larger amount of dark ferrous materials relative to bright soils. Nanophase goethite, akaganeite, schwertmannite, and maghemite are leading candidates for the origin of the absorption centered near 900 nm in IMP spectra. The ferrous component in the soil cannot be well-constrained based on IMP data. Alpha proton X-ray spectrometer (APXS) measurements of six soil units show little variability within the landing site and show remarkable overall similarity to the average Viking-derived soil elemental composition. Differences exist between Viking and Pathfinder soils, however, including significantly higher S and Cl abundances and lower Si abundances in Viking soils and the lack of a correlation between Ti and Fe in Pathfinder soils. No significant linear correlations were observed between IMP spectral properties and APXS elemental chemistry. Attempts at constraining

  19. Rock Abrasion on Mars: Clues from the Pathfinder and Viking Landing Sites

    NASA Technical Reports Server (NTRS)

    Bridges, N. T.; Parker, T. J.; Kramer, G. M.

    2000-01-01

    A significant discovery of the Mars Pathfinder (MPF) mission was that many rocks exhibit characteristics of ventifacts, rocks that have been sculpted by saltating particles. Diagnostic features identifying the rocks as ventifacts am elongated pits, flutes, and grooves (collectively referred to as "flutes" unless noted otherwise). Faceted rocks or rock portions, circular pits, rills, and possibly polished rock surfaces are also seen and could be due, to aeolian abrasion. Many of these features were initially identified in rover images, where spatial resolution generally exceeded that of the IMP (Imager for Mars Pathfinder) camera. These images had two major limitations: 1) Only a limited number of rocks were viewed by the rover, biasing flute statistics; and 2) The higher resolution obtained by the rover images and the lack of such pictures at the Viking landing sites hampered comparisons of rock morphologies between the Pathfinder and Viking sites. To avoid this problem, rock morphology and ventifact statistics have been examined using new "super-resolution" IMP and Viking Lander images. Analyses of these images show that: 1) Flutes are seen on about 50% or more of the rocks in the near field at the MPF site; 2) The orientation of these flutes is similar to that for flutes identified in rover images; and 3) Ventifacts are significantly more abundant at the Pathfinder landing site than at the two Viking Landing sites, where rocks have undergone only a limited amount of aeolian abrasion. This is most likely due to the ruggedness of the Pathfinder site and a greater supply of abrading particles available shortly after the Arcs and Tiu Valles outflow channel floods.

  20. Preliminary Findings of the Photovoltaic Cell Calibration Experiment on Pathfinder Flight 95-3

    NASA Technical Reports Server (NTRS)

    Vargas-Aburto, Carlos

    1997-01-01

    The objective of the photovoltaic (PV) cell calibration experiment for Pathfinder was to develop an experiment compatible with an ultralight UAV to predict the performance of PV cells at AM0, the solar spectrum in space, using the Langley plot technique. The Langley plot is a valuable technique for this purpose and requires accurate measurements of air mass (pressure), cell temperature, solar irradiance, and current-voltage(IV) characteristics with the cells directed normal to the direct ray of the sun. Pathfinder's mission objective (95-3) of 65,000 ft. maximum altitude, is ideal for performing the Langley plot measurements. Miniaturization of electronic data acquisition equipment enabled the design and construction of an accurate and light weight measurement system that meets Pathfinder's low payload weight requirements.

  1. Dark Energy and Gravity Experiment Explorer and Pathfinder

    NASA Astrophysics Data System (ADS)

    Chiow, S.-w.; Yu, N.

    2018-02-01

    We propose to utilize the unique gravity and vacuum environment in the orbits of the Deep Space Gateway for direct detections of dark energy using atom interferometers, and for pathfinder experiments for future gravitational wave and dark matter detections.

  2. Design of the MESUR/pathfinder microrover

    NASA Technical Reports Server (NTRS)

    Stone, Henry W.

    1994-01-01

    The use of unmanned robotic vehicles to assist in the exploration of Mars and other planets has been of interest to the National Aeronautics and Space Administration (NASA) for several decades and has been the focus of an ongoing research program at the Jet Propulsion Laboratory (JPL) for a similar period of time. As a result of these research activities, JPL is in the process of designing and building a small (7-9 kg) microrover to be flown aboard the Mars Environmental Survey Mission (MESUR)/Pathfinder spacecraft, which is tentatively to be launched to Mars in late 1997. The microrover will perform a variety of technology experiments designed to provide information critical to the design of future planetary rovers. In addition, the microrover will perform several science and lander related experiments using specialized onboard instruments. To enable the microrover to perform these experiments at selected target areas and at the same time deal with the long time delays (and limited communications bandwidth), a control/navigation approach combining the use of operator-designated waypoints and onboard behavior control has been adopted. The design of the MESUR/Pathfinder microrover and the overall manner in which it is controlled are described herein.

  3. Motoneuron axon pathfinding errors in zebrafish: Differential effects related to concentration and timing of nicotine exposure

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Menelaou, Evdokia; Paul, Latoya T.; Perera, Surangi N.

    Nicotine exposure during embryonic stages of development can affect many neurodevelopmental processes. In the developing zebrafish, exposure to nicotine was reported to cause axonal pathfinding errors in the later born secondary motoneurons (SMNs). These alterations in SMN axon morphology coincided with muscle degeneration at high nicotine concentrations (15–30 μM). Previous work showed that the paralytic mutant zebrafish known as sofa potato exhibited nicotine-induced effects onto SMN axons at these high concentrations but in the absence of any muscle deficits, indicating that pathfinding errors could occur independent of muscle effects. In this study, we used varying concentrations of nicotine at differentmore » developmental windows of exposure to specifically isolate its effects onto subpopulations of motoneuron axons. We found that nicotine exposure can affect SMN axon morphology in a dose-dependent manner. At low concentrations of nicotine, SMN axons exhibited pathfinding errors, in the absence of any nicotine-induced muscle abnormalities. Moreover, the nicotine exposure paradigms used affected the 3 subpopulations of SMN axons differently, but the dorsal projecting SMN axons were primarily affected. We then identified morphologically distinct pathfinding errors that best described the nicotine-induced effects on dorsal projecting SMN axons. To test whether SMN pathfinding was potentially influenced by alterations in the early born primary motoneuron (PMN), we performed dual labeling studies, where both PMN and SMN axons were simultaneously labeled with antibodies. We show that only a subset of the SMN axon pathfinding errors coincided with abnormal PMN axonal targeting in nicotine-exposed zebrafish. We conclude that nicotine exposure can exert differential effects depending on the levels of nicotine and developmental exposure window. - Highlights: • Embryonic nicotine exposure can specifically affect secondary motoneuron axons in a dose

  4. Mechanical design of the Mars Pathfinder mission

    NASA Technical Reports Server (NTRS)

    Eisen, Howard Jay; Buck, Carl W.; Gillis-Smith, Greg R.; Umland, Jeffrey W.

    1997-01-01

    The Mars Pathfinder mission and the Sojourner rover is reported on, with emphasis on the various mission steps and the performance of the technologies involved. The mechanical design of mission hardware was critical to the success of the entry sequence and the landing operations. The various mechanisms employed are considered.

  5. Implementation of NAS Parallel Benchmarks in Java

    NASA Technical Reports Server (NTRS)

    Frumkin, Michael; Schultz, Matthew; Jin, Hao-Qiang; Yan, Jerry

    2000-01-01

    A number of features make Java an attractive but a debatable choice for High Performance Computing (HPC). In order to gauge the applicability of Java to the Computational Fluid Dynamics (CFD) we have implemented NAS Parallel Benchmarks in Java. The performance and scalability of the benchmarks point out the areas where improvement in Java compiler technology and in Java thread implementation would move Java closer to Fortran in the competition for CFD applications.

  6. Delta II Mars Pathfinder

    NASA Technical Reports Server (NTRS)

    1998-01-01

    Final preparations for lift off of the DELTA II Mars Pathfinder Rocket are shown. Activities include loading the liquid oxygen, completing the construction of the Rover, and placing the Rover into the Lander. After the countdown, important visual events include the launch of the Delta Rocket, burnout and separation of the three Solid Rocket Boosters, and the main engine cutoff. The cutoff of the main engine marks the beginning of the second stage engine. After the completion of the second stage, the third stage engine ignites and then cuts off. Once the third stage engine cuts off spacecraft separation occurs.

  7. Mars Pathfinder mission operations concepts

    NASA Technical Reports Server (NTRS)

    Sturms, Francis M., Jr.; Dias, William C.; Nakata, Albert Y.; Tai, Wallace S.

    1994-01-01

    The Mars Pathfinder Project plans a December 1996 launch of a single spacecraft. After jettisoning a cruise stage, an entry body containing a lander and microrover will directly enter the Mars atmosphere and parachute to a hard landing near the sub-solar latitude of 15 degrees North in July 1997. Primary surface operations last for 30 days. Cost estimates for Pathfinder ground systems development and operations are not only lower in absolute dollars, but also are a lower percentage of total project costs than in past planetary missions. Operations teams will be smaller and fewer than typical flight projects. Operations scenarios have been developed early in the project and are being used to guide operations implementation and flight system design. Recovery of key engineering data from entry, descent, and landing is a top mission priority. These data will be recorded for playback after landing. Real-time tracking of a modified carrier signal through this phase can provide important insight into the spacecraft performance during entry, descent, and landing in the event recorded data is never recovered. Surface scenarios are dominated by microrover activity and lander imaging during 7 hours of the Mars day from 0700 to 1400 local solar time. Efficient uplink and downlink processes have been designed to command the lander and microrover each Mars day.

  8. Northeast View From Pathfinder Lander

    NASA Technical Reports Server (NTRS)

    1997-01-01

    This panorama of the region to the northeast of the lander was constructed to support the Sojourner Rover Team's plans to conduct an 'autonomous traverse' to explore the terrain away from the lander after science objectives in the lander vicinity had been met. The large, relatively bright surface in the foreground, about 10 meters (33 feet) from the spacecraft, in this scene is 'Baker's Bench.' The large, elongated rock left of center in the middle distance is 'Zaphod.'

    This view was produced by combining 8 individual 'Superpan' scenes from the left and right eyes of the IMP camera. Each frame consists of 8 individual frames (left eye) and 7 frames (right eye) taken with different color filters that were enlarged by 500% and then co-added using Adobe Photoshop to produce, in effect, a super-resolution panchromatic frame that is sharper than an individual frame would be.

    Mars Pathfinder is the second in NASA's Discovery program of low-cost spacecraft with highly focused science goals. The Jet Propulsion Laboratory, Pasadena, CA, developed and manages the Mars Pathfinder mission for NASA's Office of Space Science, Washington, D.C. JPL is a division of the California Institute of Technology (Caltech). The IMP was developed by the University of Arizona Lunar and Planetary Laboratory under contract to JPL. Peter Smith is the Principal Investigator.

  9. PATHFINDER: Probing Atmospheric Flows in an Integrated and Distributed Environment

    NASA Technical Reports Server (NTRS)

    Wilhelmson, R. B.; Wojtowicz, D. P.; Shaw, C.; Hagedorn, J.; Koch, S.

    1995-01-01

    PATHFINDER is a software effort to create a flexible, modular, collaborative, and distributed environment for studying atmospheric, astrophysical, and other fluid flows in the evolving networked metacomputer environment of the 1990s. It uses existing software, such as HDF (Hierarchical Data Format), DTM (Data Transfer Mechanism), GEMPAK (General Meteorological Package), AVS, SGI Explorer, and Inventor to provide the researcher with the ability to harness the latest in desktop to teraflop computing. Software modules developed during the project are available in the public domain via anonymous FTP from the National Center for Supercomputing Applications (NCSA). The address is ftp.ncsa.uiuc.edu, and the directory is /SGI/PATHFINDER.

  10. NASA's Webb "Pathfinder Telescope" Successfully Completes First Super-Cold Optical Test

    NASA Image and Video Library

    2017-12-08

    Testing is crucial part of NASA's success on Earth and in space. So, as the actual flight components of NASA's James Webb Space Telescope come together, engineers are testing the non-flight equipment to ensure that tests on the real Webb telescope later goes safely and according to plan. Recently, the "pathfinder telescope," or just “Pathfinder,” completed its first super-cold optical test that resulted in many first-of-a-kind demonstrations. "This test is the first dry-run of the equipment and procedures we will use to conduct an end-to-end optical test of the flight telescope and instruments," said Mark Clampin, Webb telescope Observatory Project Scientist at NASA's Goddard Space Flight Center in Greenbelt, Maryland. "It provides confidence that once the flight telescope is ready, we are fully prepared for a successful test of the flight hardware." The Pathfinder is a non-flight replica of the Webb telescope’s center section backplane, or “backbone,” that includes mirrors. The flight backplane comes in three segments, a center section and two wing-like parts, all of which will support large hexagonal mirrors on the Webb telescope. The pathfinder only consists of the center part of the backplane. However, during the test, it held two full size spare primary mirror segments and a full size spare secondary mirror to demonstrate the ability to optically test and align the telescope at the planned operating temperatures of -400 degrees Fahrenheit (-240 Celsius). Read more: www.nasa.gov/feature/goddard/nasas-webb-pathfinder-telesc... Credit: NASA/Goddard/Chris Gunn NASA image use policy. NASA Goddard Space Flight Center enables NASA’s mission through four scientific endeavors: Earth Science, Heliophysics, Solar System Exploration, and Astrophysics. Goddard plays a leading role in NASA’s accomplishments by contributing compelling scientific knowledge to advance the Agency’s mission. Follow us on Twitter Like us on Facebook Find us on Instagram

  11. Sojourner Rover View of Pathfinder Lander

    NASA Technical Reports Server (NTRS)

    1997-01-01

    Image of Pathfinder Lander on Mars taken from Sojourner Rover left front camera on sol 33. The IMP (on the lattice mast) is looking at the rover. Airbags are prominent, and the meteorology mast is shown to the right. Lowermost rock is Ender, with Hassock behind it and Yogi on the other side of the lander.

    NOTE: original caption as published in Science Magazine

  12. Uncoupling nicotine mediated motoneuron axonal pathfinding errors and muscle degeneration in zebrafish

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Welsh, Lillian; Tanguay, Robert L.; Svoboda, Kurt R.

    Zebrafish embryos offer a unique opportunity to investigate the mechanisms by which nicotine exposure impacts early vertebrate development. Embryos exposed to nicotine become functionally paralyzed by 42 hpf suggesting that the neuromuscular system is compromised in exposed embryos. We previously demonstrated that secondary spinal motoneurons in nicotine-exposed embryos were delayed in development and that their axons made pathfinding errors (Svoboda, K.R., Vijayaraghaven, S., Tanguay, R.L., 2002. Nicotinic receptors mediate changes in spinal motoneuron development and axonal pathfinding in embryonic zebrafish exposed to nicotine. J. Neurosci. 22, 10731-10741). In that study, we did not consider the potential role that altered skeletalmore » muscle development caused by nicotine exposure could play in contributing to the errors in spinal motoneuron axon pathfinding. In this study, we show that an alteration in skeletal muscle development occurs in tandem with alterations in spinal motoneuron development upon exposure to nicotine. The alteration in the muscle involves the binding of nicotine to the muscle-specific AChRs. The nicotine-induced alteration in muscle development does not occur in the zebrafish mutant (sofa potato, [sop]), which lacks muscle-specific AChRs. Even though muscle development is unaffected by nicotine exposure in sop mutants, motoneuron axonal pathfinding errors still occur in these mutants, indicating a direct effect of nicotine exposure on nervous system development.« less

  13. Visible and Near-Infrared Properties of Optical Fibers Coupled to the Pathfinder High-Resolution NIR Spectrograph

    NASA Astrophysics Data System (ADS)

    McCoy, K.; Ramsey, L.

    2011-09-01

    The Penn State Astronomy and Astrophysics Department’s Pathfinder instrument is a fiber-fed, warm-bench echelle spectrograph designed to explore technical issues that must be resolved in order to measure precise radial velocities that will allow the detection of exoplanets in the near-infrared (NIR). In May 2010, Pathfinder demonstrated 10-20 m/s radial-velocity precision in the NIR at the 9 meter Hobby-Eberly Telescope. To attain even higher precision, we are investigating the NIR properties of the optical fibers that transmit light from the telescope to Pathfinder. We conducted a series of modal noise tests with visible and NIR laser diodes on a 200 micron diameter, fused-silica, multimode optical fiber as the preliminary step in analyzing the degrading effects of modal noise on radial-velocity precision. We report these test results and comment on our future tests to reduce the negative effects of modal noise and focal ratio degradation (FRD). The lessons learned from this research and the Pathfinder prototype will be used in Pathfinder II, which will aim to achieve better than 5 m/s in the NIR.

  14. Lithium-Thionyl Chloride Batteries for the Mars Pathfinder Microrover

    NASA Technical Reports Server (NTRS)

    Deligiannis, Frank; Frank, Harvey; Staniewicz, R. J.; Willson, John

    1996-01-01

    A discussion of the power requirements for the Mars Pathfinder Mission is given. Topics include: battery requirements; cell design; battery design; test descriptions and results. A summary of the results is also included.

  15. Volcanoes, Central Java, Indonesia

    NASA Technical Reports Server (NTRS)

    1992-01-01

    The island of Java (8.0S, 112.0E), perhaps better than any other, illustrates the volcanic origin of Pacific Island groups. Seen in this single view are at least a dozen once active volcano craters. Alignment of the craters even defines the linear fault line of Java as well as the other some 1500 islands of the Indonesian Archipelago. Deep blue water of the Indian Ocean to the south contrasts to the sediment laden waters of the Java Sea to the north.

  16. Volcanoes, Central Java, Indonesia

    NASA Image and Video Library

    1992-08-08

    The island of Java (8.0S, 112.0E), perhaps better than any other, illustrates the volcanic origin of Pacific Island groups. Seen in this single view are at least a dozen once active volcano craters. Alignment of the craters even defines the linear fault line of Java as well as the other some 1500 islands of the Indonesian Archipelago. Deep blue water of the Indian Ocean to the south contrasts to the sediment laden waters of the Java Sea to the north.

  17. Indoor A* Pathfinding Through an Octree Representation of a Point Cloud

    NASA Astrophysics Data System (ADS)

    Rodenberg, O. B. P. M.; Verbree, E.; Zlatanova, S.

    2016-10-01

    There is a growing demand of 3D indoor pathfinding applications. Researched in the field of robotics during the last decades of the 20th century, these methods focussed on 2D navigation. Nowadays we would like to have the ability to help people navigate inside buildings or send a drone inside a building when this is too dangerous for people. What these examples have in common is that an object with a certain geometry needs to find an optimal collision free path between a start and goal point. This paper presents a new workflow for pathfinding through an octree representation of a point cloud. We applied the following steps: 1) the point cloud is processed so it fits best in an octree; 2) during the octree generation the interior empty nodes are filtered and further processed; 3) for each interior empty node the distance to the closest occupied node directly under it is computed; 4) a network graph is computed for all empty nodes; 5) the A* pathfinding algorithm is conducted. This workflow takes into account the connectivity for each node to all possible neighbours (face, edge and vertex and all sizes). Besides, a collision avoidance system is pre-processed in two steps: first, the clearance of each empty node is computed, and then the maximal crossing value between two empty neighbouring nodes is computed. The clearance is used to select interior empty nodes of appropriate size and the maximal crossing value is used to filter the network graph. Finally, both these datasets are used in A* pathfinding.

  18. A design pathfinder with material correlation points for inflatable systems

    NASA Astrophysics Data System (ADS)

    Fulcher, Jared Terrell

    The incorporation of inflatable structures into aerospace systems can produce significant advantages in stowed volume to mechanical effectiveness and overall weight. Many applications of these ultra-lightweight systems are designed to precisely control internal or external surfaces, or both, to achieve desired performance. The modeling of these structures becomes complex due to the material nonlinearities inherent to the majority of construction materials used in inflatable structures. Furthermore, accurately modeling the response and behavior of the interfacing boundaries that are common to many inflatable systems will lead to better understanding of the entire class of structures. The research presented involved using nonlinear finite element simulations correlated with photogrammetry testing to develop a procedure for defining material properties for commercially available polyurethane-coated woven nylon fabric, which is representative of coated materials that have been proven materials for use in many inflatable systems. Further, the new material model was used to design and develop an inflatable pathfinder system which employs only internal pressure to control an assembly of internal membranes. This canonical inflatable system will be used for exploration and development of general understanding of efficient design methodology and analysis of future systems. Canonical structures are incorporated into the design of the phased pathfinder system to allow for more universal insight. Nonlinear finite element simulations were performed to evaluate the effect of various boundary conditions, loading configurations, and material orientations on the geometric precision of geometries representing typical internal/external surfaces commonly incorporated into inflatable pathfinder system. The response of the inflatable system to possible damage was also studied using nonlinear finite element simulations. Development of a correlated material model for analysis of the

  19. Pathfinder in flight over Hawaii

    NASA Image and Video Library

    1997-08-28

    Pathfinder, NASA's solar-powered, remotely-piloted aircraft is shown while it was conducting a series of science flights to highlight the aircraft's science capabilities while collecting imagery of forest and coastal zone ecosystems on Kauai, Hawaii. The flights also tested two new scientific instruments, a high spectral resolution Digital Array Scanned Interferometer (DASI) and a high spatial resolution Airborne Real-Time Imaging System (ARTIS). The remote sensor payloads were designed by NASA's Ames Research Center, Moffett Field, California, to support NASA's Mission to Planet Earth science programs.

  20. Pathfinder over runway in Hawaii

    NASA Image and Video Library

    1997-08-28

    Pathfinder, NASA's solar-powered, remotely-piloted aircraft is shown while it was conducting a series of science flights to highlight the aircraft's science capabilities while collecting imagery of forest and coastal zone ecosystems on Kauai, Hawaii. The flights also tested two new scientific instruments, a high-spectral-resolution Digital Array Scanned Interferometer (DASI) and a high-spatial-resolution Airborne Real-Time Imaging System (ARTIS). The remote sensor payloads were designed by NASA's Ames Research Center, Moffett Field, California, to support NASA's Mission to Planet Earth science programs.

  1. Analysis of Mars Pathfinder Entry Data, Aerothermal Heating, and Heat Shield Material Response

    NASA Technical Reports Server (NTRS)

    Milos, Frank; Chen, Y. K.; Tran, H. K.; Rasky, Daniel J. (Technical Monitor)

    1997-01-01

    The Mars Pathfinder heatshield contained several thermocouples and resistance thermometers. A description of the experiment, the entry data, and analysis of the entry environment and material response is presented. In particular, the analysis addresses uncertainties of the data and the fluid dynamics and material response models. The calculations use the latest trajectory and atmosphere reconstructions for the Pathfinder entry. A modified version of the GIANTS code is used for CFD (computational fluid dynamics) analyses, and FIAT is used for material response. The material response and flowfield are coupled appropriately. Three different material response models are considered. The analysis of Pathfinder entry data for validation of aerothermal heating and material response models is complicated by model uncertainties and unanticipated data-acquisition and processing problems. We will discuss these issues as well as ramifications of the data and analysis for future Mars missions.

  2. Photogrammetric analysis of horizon panoramas: The Pathfinder landing site in Viking orbiter images

    USGS Publications Warehouse

    Oberst, J.; Jaumann, R.; Zeitler, W.; Hauber, E.; Kuschel, M.; Parker, T.; Golombek, M.; Malin, M.; Soderblom, L.

    1999-01-01

    Tiepoint measurements, block adjustment techniques, and sunrise/sunset pictures were used to obtain precise pointing data with respect to north for a set of 33 IMP horizon images. Azimuth angles for five prominent topographic features seen at the horizon were measured and correlated with locations of these features in Viking orbiter images. Based on this analysis, the Pathfinder line/sample coordinates in two raw Viking images were determined with approximate errors of 1 pixel, or 40 m. Identification of the Pathfinder location in orbit imagery yields geological context for surface studies of the landing site. Furthermore, the precise determination of coordinates in images together with the known planet-fixed coordinates of the lander make the Pathfinder landing site the most important anchor point in current control point networks of Mars. Copyright 1999 by the American Geophysical Union.

  3. GSTARI model of BPR assets in West Java, Central Java, and East Java

    NASA Astrophysics Data System (ADS)

    Susanti, Susi; Sulistijowati Handajani, Sri; Indriati, Diari

    2018-05-01

    Bank Perkreditan Rakyat (BPR) is a financial institution in Indonesia dealing with Micro, Small, and Medium Enterprises (MSMEs). Though limited to MSMEs, the development of the BPR industry continues to increase. West Java, Central Java, and East Java have high BPR asset development are suspected to be interconnected because of their economic activities as a neighboring provincies. BPR assets are nonstationary time series data that follow the uptrend pattern. Therefore, the suitable model with the data is generalized space time autoregressive integrated (GSTARI) which considers the spatial and time interrelationships. GSTARI model used spatial order 1 and the autoregressive order is obtained of optimal lag which has the smallest value of Akaike information criterion corrected. The correlation test results showed that the location used in this study had a close relationship. Based on the results of model identification, the best model obtained is GSTAR(31)-I(1). The parameter estimation used the ordinary least squares with the selection of significant variables used the stepwise method and the normalization cross correlation weighting. The residual model fulfilled the assumption of white noise and normal multivariate, so the model was appropriate. The average RMSE and MAPE values of the model were 498.75 and 2.48%.

  4. A Pathfinder for Animal Research and Animal Rights.

    ERIC Educational Resources Information Center

    Anderson, David C.

    1992-01-01

    This pathfinder was originally prepared for "Biomedical Research and Animal Rights," a session sponsored by the Veterinary Medical Libraries and Research Libraries Sections of the Medical Library Association. Current resources are described, from bibliographies to electronic bulletin boards, which relate to the issue of laboratory animal…

  5. Implementation of the NAS Parallel Benchmarks in Java

    NASA Technical Reports Server (NTRS)

    Frumkin, Michael A.; Schultz, Matthew; Jin, Haoqiang; Yan, Jerry; Biegel, Bryan (Technical Monitor)

    2002-01-01

    Several features make Java an attractive choice for High Performance Computing (HPC). In order to gauge the applicability of Java to Computational Fluid Dynamics (CFD), we have implemented the NAS (NASA Advanced Supercomputing) Parallel Benchmarks in Java. The performance and scalability of the benchmarks point out the areas where improvement in Java compiler technology and in Java thread implementation would position Java closer to Fortran in the competition for CFD applications.

  6. APINetworks Java. A Java approach to the efficient treatment of large-scale complex networks

    NASA Astrophysics Data System (ADS)

    Muñoz-Caro, Camelia; Niño, Alfonso; Reyes, Sebastián; Castillo, Miriam

    2016-10-01

    We present a new version of the core structural package of our Application Programming Interface, APINetworks, for the treatment of complex networks in arbitrary computational environments. The new version is written in Java and presents several advantages over the previous C++ version: the portability of the Java code, the easiness of object-oriented design implementations, and the simplicity of memory management. In addition, some additional data structures are introduced for storing the sets of nodes and edges. Also, by resorting to the different garbage collectors currently available in the JVM the Java version is much more efficient than the C++ one with respect to memory management. In particular, the G1 collector is the most efficient one because of the parallel execution of G1 and the Java application. Using G1, APINetworks Java outperforms the C++ version and the well-known NetworkX and JGraphT packages in the building and BFS traversal of linear and complete networks. The better memory management of the present version allows for the modeling of much larger networks.

  7. Sedimentary geomorphology of the Mars Pathfinder Landing Site

    NASA Technical Reports Server (NTRS)

    Rice, James W., Jr.; Parker, Timothy Jay

    1997-01-01

    The first landing on Mars in over 20 years will take place July 4, 1997, near te mouth of the Ares Vallis outflow channel located in southeastern Chryse Planitia. Mars Pathfinder, unlike Viking 1, is expected to land on a surface that has a distinct and unambiguous fluvial signature.

  8. Future X Pathfinder: Quick, Low Cost Flight Testing for Tomorrow's Launch Vehicles

    NASA Technical Reports Server (NTRS)

    London, John, III; Sumrall, Phil

    1999-01-01

    The DC-X and DC-XA Single Stage Technology flight program demonstrated the value of low cost rapid prototyping and flight testing of launch vehicle technology testbeds. NASA is continuing this important legacy through a program referred to as Future-X Pathfinder. This program is designed to field flight vehicle projects that cost around $100M each, with a new vehicle flying about every two years. Each vehicle project will develop and extensively flight test a launch vehicle technology testbed that will advance the state of the art in technologies directly relevant to future space transportation systems. There are currently two experimental, or "X" vehicle projects in the Pathfinder program, with additional projects expected to follow in the near future. The first Pathfinder project is X-34. X-34 is a suborbital rocket plane capable of flights to Mach 8 and 75 kilometers altitude. There are a number of reusable launch vehicle technologies embedded in the X-34 vehicle design, such as composite structures and propellant tanks, and advanced reusable thermal protection systems. In addition, X-34 is designed to carry experiments applicable to both the launch vehicle and hypersonic aeronautics community. X-34 is scheduled to fly later this year. The second Pathfinder project is the X-37. X-37 is an orbital space plane that is carried into orbit either by the Space Shuttle or by an expendable launch vehicle. X-37 provides NASA access to the orbital and orbital reentry flight regimes with an experimental testbed vehicle. The vehicle will expose embedded and carry-on advanced space transportation technologies to the extreme environments of orbit and reentry. Early atmospheric approach and landing tests of an unpowered version of the X-37 will begin next year, with orbital flights beginning in late 2001. Future-X Pathfinder is charting a course for the future with its growing fleet of low-cost X- vehicles. X-34 and X-37 are leading the assault on high launch costs and

  9. The Data Processor of the JEM-EUSO pathfinders

    NASA Astrophysics Data System (ADS)

    Scotti, V.; Osteria, G.

    2014-06-01

    JEM-EUSO is a wide-angle refractive UV telescope being proposed for attachment to the Japanese Experiment Module on ISS. The main goal of the mission is to study Extreme Energy Cosmic Rays. Two pathfinder mission are now in progress: EUSO-TA and EUSO-Balloon. The EUSO-TA project foresees the installation of a telescope prototype in the Telescope Array site. The aim of this project is to calibrate the telescope with the TA fluorescence detector. An initial run of one year starting from 2013 is foreseen. EUSO-Balloon is a pathfinder mission in which a prototype telescope will be mounted on a stratospheric balloon. The main aim of this mission is to perform a end-to-end test of all the key technologies and instrumentation of JEM-EUSO detectors and to prove the global detection chain. EUSO-Balloon will measure the UV background fundamental for the development of the simulations. EUSO-Balloon has the potential to detect Extensive Air Showers from above, paving the way for any future space-based EECR observatory. We will present the Data Processor of the pathfinders. The DP is the component of the Electronics System which performs data management and instrument control. The DP controls front-end electronics, performs 2nd level trigger filtering, tags events with arrival time and payload position through a GPS system, manages mass memory for data storage, measures live and dead time of the telescope, provides signals for time synchronization of the event, performs housekeeping monitor and handles interface to the telemetry system. We will describe the main components of the DP, the state-of-the-art and the results of the tests carried out.

  10. Review of the trajectory and atmospheric structure reconstruction for Mars Pathfinder

    NASA Astrophysics Data System (ADS)

    Withers, Paul; Towner, Martin; Hathi, Brijen; Zarnecki, John

    2004-02-01

    Mars Pathfinder landed on Mars on July 4, 1997. It used a novel deceleration procedure, consisting of a hypersonic aeroshell, a transonic parachute, retro-rockets, and airbags, to reach the surface safely. Its aerodynamic properties passively maintained a near-zero angle of attack throughout its entry. There were no gyroscopes to monitor attitude. Several different trajectory reconstructions have been based on the assumptions that accelerations along its symmetry axis are directed along its flight path and that accelerations in other directions are insignificant. The aerodynamics of Pathfinder once its parachute opened are still not well-understood and the available observations are probably not sufficient to improve matters significantly in the future.

  11. Rock and Soil Types at Pathfinder Landing Site

    NASA Technical Reports Server (NTRS)

    1997-01-01

    Type areas of rocks and soils. (A) Dark rock type and bright soil type: Shown is the dark rock Barnacle Bill. Reflectance spectra typical of fresh basalt and APXS spectra indicating more silica-rich basaltic andesite compositions characterize this type. These rocks are typically the small boulders and intermediate-sized cobbles at the Pathfinder site. The bright soil type is very common and in this case comprises Barnacle Bill's wind tail and much of the surround soil area. This soil has a high reflectance and a strongly reddened spectrum indicative of oxidized ferric minerals. (B) Bright rock type: Shown is the bright rock Wedge. Reflectance spectra typical of weathered basalt and APXS spectra indicating basaltic compositions characterize this type. These rocks are typically larger than 1 meter in diameter and many display morphologies indicating flood deposition. (C) Pink rock type: Shown is the pink rock Scooby Doo. APXS and reflectance spectra indicate a composition and optical characteristics similar to the drift soil. However, the morphology of the pink rock type indicates a cemented or rocklike structure. This material may be a chemically cemented hardpan that underlies much of the Pathfinder site. (D) Dark soil type: The dark soil type is typically found on the windward sides of rocks or in rock-free areas like Photometry Flats (shown here) where the bright soil has been striped away by aeolian action or in open areas. Other locations include the Mermaid Dune. (E) Disturbed soil type: The darkening of disturbed soil relative to its parent material, bright soil, as a result of changes in soil texture and compaction caused by movement of the rover and retraction of the lander airbag. (F) Lamb-like soil type: This soil type shows reflectance and spectral characteristics intermediate between the bright and dark soils. Its distinguishing feature is a weak spectral absorption near 900 nanometers not seen in either the bright or dark soils.

    NOTE: original

  12. Java: An Explosion on the Internet.

    ERIC Educational Resources Information Center

    Read, Tim; Hall, Hazel

    Summer 1995 saw the release, with considerable media attention, of draft versions of Sun Microsystems' Java computer programming language and the HotJava browser. Java has been heralded as the latest "killer" technology in the Internet explosion. Sun Microsystems and numerous companies including Microsoft, IBM, and Netscape have agreed…

  13. Motoneuron axon pathfinding errors in zebrafish: Differential effects related to concentration and timing of nicotine exposure

    PubMed Central

    Menelaou, Evdokia; Paul, Latoya T.; Perera, Surangi N.; Svoboda, Kurt R.

    2015-01-01

    Nicotine exposure during embryonic stages of development can affect many neurodevelopmental processes. In the developing zebrafish, exposure to nicotine was reported to cause axonal pathfinding errors in the later born secondary motoneurons (SMN). These alterations in SMN axon morphology coincided with muscle degeneration at high nicotine concentrations (15–30µM). Previous work showed that the paralytic mutant zebrafish known as sofa potato, exhibited nicotine-induced effects onto SMN axons at these high concentrations but in the absence of any muscle deficits, indicating that pathfinding errors could occur independent of muscle effects. In this study, we used varying concentrations of nicotine at different developmental windows of exposure to specifically isolate its effects onto subpopulations of motoneuron axons. We found that nicotine exposure can affect SMN axon morphology in a dose-dependent manner. At low concentrations of nicotine, SMN axons exhibited pathfinding errors, in the absence of any nicotine-induced muscle abnormalities. Moreover, the nicotine exposure paradigms used affected the 3 subpopulations of SMN axons differently, but the dorsal projecting SMN axons were primarily affected. We then identified morphologically distinct pathfinding errors that best described the nicotine-induced effects on dorsal projecting SMN axons. To test whether SMN pathfinding was potentially influenced by alterations in the early born primary motoneuron (PMN), we performed dual labeling studies, where both PMN and SMN axons were simultaneously labeled with antibodies. We show that only a subset of the SMN axon pathfinding errors coincided with abnormal PMN axonal targeting in nicotine-exposed zebrafish. We conclude that nicotine exposure can exert differential effects depending on the levels of nicotine and developmental exposure window. PMID:25668718

  14. Atmosphere Processing Module Automation and Catalyst Durability Analysis for Mars ISRU Pathfinder

    NASA Technical Reports Server (NTRS)

    Petersen, Elspeth M.

    2016-01-01

    The Mars In-Situ Resource Utilization Pathfinder was designed to create fuel using components found in the planet’s atmosphere and regolith for an ascension vehicle to return a potential sample return or crew return vehicle from Mars. The Atmosphere Processing Module (APM), a subunit of the pathfinder, uses cryocoolers to isolate and collect carbon dioxide from Mars simulant gas. The carbon dioxide is fed with hydrogen into a Sabatier reactor where methane is produced. The APM is currently undergoing the final stages of testing at Kennedy Space Center prior to process integration testing with the other subunits of the pathfinder. The automation software for the APM cryocoolers was tested and found to perform nominally. The catalyst used for the Sabatier reactor was investigated to determine the factors contributing to catalyst failure. The results from the catalyst testing require further analysis, but it appears that the rapid change in temperature during reactor start up or the elevated operating temperature is responsible for the changes observed in the catalyst.

  15. JavaGenes and Condor: Cycle-Scavenging Genetic Algorithms

    NASA Technical Reports Server (NTRS)

    Globus, Al; Langhirt, Eric; Livny, Miron; Ramamurthy, Ravishankar; Soloman, Marvin; Traugott, Steve

    2000-01-01

    A genetic algorithm code, JavaGenes, was written in Java and used to evolve pharmaceutical drug molecules and digital circuits. JavaGenes was run under the Condor cycle-scavenging batch system managing 100-170 desktop SGI workstations. Genetic algorithms mimic biological evolution by evolving solutions to problems using crossover and mutation. While most genetic algorithms evolve strings or trees, JavaGenes evolves graphs representing (currently) molecules and circuits. Java was chosen as the implementation language because the genetic algorithm requires random splitting and recombining of graphs, a complex data structure manipulation with ample opportunities for memory leaks, loose pointers, out-of-bound indices, and other hard to find bugs. Java garbage-collection memory management, lack of pointer arithmetic, and array-bounds index checking prevents these bugs from occurring, substantially reducing development time. While a run-time performance penalty must be paid, the only unacceptable performance we encountered was using standard Java serialization to checkpoint and restart the code. This was fixed by a two-day implementation of custom checkpointing. JavaGenes is minimally integrated with Condor; in other words, JavaGenes must do its own checkpointing and I/O redirection. A prototype Java-aware version of Condor was developed using standard Java serialization for checkpointing. For the prototype to be useful, standard Java serialization must be significantly optimized. JavaGenes is approximately 8700 lines of code and a few thousand JavaGenes jobs have been run. Most jobs ran for a few days. Results include proof that genetic algorithms can evolve directed and undirected graphs, development of a novel crossover operator for graphs, a paper in the journal Nanotechnology, and another paper in preparation.

  16. Mars Pathfinder flight system integration and test.

    NASA Astrophysics Data System (ADS)

    Muirhead, B. K.

    This paper describes the system integration and test experiences, problems and lessons learned during the assembly, test and launch operations (ATLO) phase of the Mars Pathfinder flight system scheduled to land on the surface of Mars on July 4, 1997. The Mars Pathfinder spacecraft consists of three spacecraft systems: cruise stage, entry vehicle and lander. The cruise stage carries the entry and lander vehicles to Mars and is jettisoned prior to entry. The entry vehicle, including aeroshell, parachute and deceleration rockets, protects the lander during the direct entry and reduces its velocity from 7.6 to 0 km/s in stages during the 5 min entry sequence. The lander's touchdown is softened by airbags which are retracted once stopped on the surface. The lander then uprights itself, opens up fully and begins surface operations including deploying its camera and rover. This paper overviews the system design and the results of the system integration and test activities, including the entry, descent and landing subsystem elements. System test experiences including science instruments, the microrover, Sojourner, and software are discussed. The final qualification of the entry, descent and landing subsystems during this period is also discussed.

  17. Java simulations of embedded control systems.

    PubMed

    Farias, Gonzalo; Cervin, Anton; Arzén, Karl-Erik; Dormido, Sebastián; Esquembre, Francisco

    2010-01-01

    This paper introduces a new Open Source Java library suited for the simulation of embedded control systems. The library is based on the ideas and architecture of TrueTime, a toolbox of Matlab devoted to this topic, and allows Java programmers to simulate the performance of control processes which run in a real time environment. Such simulations can improve considerably the learning and design of multitasking real-time systems. The choice of Java increases considerably the usability of our library, because many educators program already in this language. But also because the library can be easily used by Easy Java Simulations (EJS), a popular modeling and authoring tool that is increasingly used in the field of Control Education. EJS allows instructors, students, and researchers with less programming capabilities to create advanced interactive simulations in Java. The paper describes the ideas, implementation, and sample use of the new library both for pure Java programmers and for EJS users. The JTT library and some examples are online available on http://lab.dia.uned.es/jtt.

  18. Java Simulations of Embedded Control Systems

    PubMed Central

    Farias, Gonzalo; Cervin, Anton; Årzén, Karl-Erik; Dormido, Sebastián; Esquembre, Francisco

    2010-01-01

    This paper introduces a new Open Source Java library suited for the simulation of embedded control systems. The library is based on the ideas and architecture of TrueTime, a toolbox of Matlab devoted to this topic, and allows Java programmers to simulate the performance of control processes which run in a real time environment. Such simulations can improve considerably the learning and design of multitasking real-time systems. The choice of Java increases considerably the usability of our library, because many educators program already in this language. But also because the library can be easily used by Easy Java Simulations (EJS), a popular modeling and authoring tool that is increasingly used in the field of Control Education. EJS allows instructors, students, and researchers with less programming capabilities to create advanced interactive simulations in Java. The paper describes the ideas, implementation, and sample use of the new library both for pure Java programmers and for EJS users. The JTT library and some examples are online available on http://lab.dia.uned.es/jtt. PMID:22163674

  19. Career pathfinders: a qualitative study of career development.

    PubMed

    Beutell, Icholas J; O'Hare, Marianne M

    2006-04-01

    This paper examined the perceptions of career path and issues of MBA students in response to Lore's The Pathfinder, a comprehensive career-planning model. Using internet discussion boards, an interactive dialogue was mentioned by participants in response to the components of Lore's model. The sample consisted of 50 fully employed MBA students enrolled in a course on self-assessment and career planning. A total of 1,781 separate postings were made and analyzed, using inductive analysis derived from discussion threads based on Lore's categories: comments on Lore's Pathfinder model, living a life you love (what's the holdup, career fantasies, work and family issues, and career selection), how to get there from here (commitment and future from the present), and designing your future career. Findings indicated several interesting trends in the career planning of current MBA students, particularly the importance of self or self-reflective observations in real time as students who are also fully employed formulate career plans. Implications for psychologists and career counselors, career development models, and suggestions for research are presented.

  20. Teacher Job Satisfaction: Lessons from the TSW Pathfinder Project

    ERIC Educational Resources Information Center

    Butt, Graham; Lance, Ann; Fielding, Antony; Gunter, Helen; Rayner, Steve; Thomas, Hywel

    2005-01-01

    Government policy assumes that modernization and remodelling will be effective as external intervention mechanisms to improve job satisfaction. Based on data collected as part of the evaluation of the "Transforming the School Workforce Pathfinder Project", an argument is presented here which suggests that internal management models may…

  1. The LISA Pathfinder Mission: Sub-picometer Interferometry in Space

    NASA Astrophysics Data System (ADS)

    Slutsky, Jacob; LISA Pathfinder Collaboration

    2018-01-01

    The European Space Agency’s LISA Pathfinder was a mission built to demonstrate the technologies essential to implement a space-based gravitational wave observatory sensitive in the milli-Hertz frequency band. ESA recently selected the LISA mission as such a future observatory, scheduled to launch in the early 2030s. LISA Pathfinder launched in late 2015 and concluded its final extended mission in July 2017, during which time it placed the two test masses into free fall and successfully measured the relative acceleration between them to a sensitivity that validates a number of critical technologies for LISA. These include drag-free control of the test masses, low noise microNewton thrusters to control the spacecraft, and sub-picometer-level laser metrology in space. The mission also served as a sensitive probe of the environmenal conditions in which LISA will operate. This poster summarizes the recent analysis results, with an eye towards the implications for the LISA mission.

  2. LISA Pathfinder: First steps to observing gravitational waves from space

    NASA Astrophysics Data System (ADS)

    McNamara, Paul; LISA Pathfinder Collaboration

    2017-01-01

    With the first direct detection of gravitational waves a little over a year ago, the gravitational window to the Universe has been opened. The gravitational wave spectrum spans many orders of magnitude in frequency, with several of the most interesting astronomical sources emitting gravitational waves at frequencies only observable from space The European Space Agency (ESA) has been active in the field of space-borne gravitational wave detection for many years, and in 2013 selected the Gravitational Universe as the science theme for the third large class mission in the Cosmic Vision science programme. In addition, ESA took the step of developing the LISA Pathfinder mission to demonstrate the critical technologies required for a future mission. The goal of the LISA Pathfinder mission is to place a test body in free fall such that any external forces (acceleration) are reduced to levels lower than those expected from the passage of a gravitational wave LISA Pathfinder was launched on the 3rd December 2015 from the European Spaceport in Kourou, French Guiana. After a series of 6 apogee raising manoeuvres, the satellite left earth orbit, and travelled to its final science orbit around the first Sun-Earth Lagrange point (L1). Following a relatively short commissioning phase, science operations began on 1st March 2016. In the following 3 months over 100 experiments and over 1500hours of noise measurements have been performed, demonstrating that the observation of gravitational waves from space can be realised.

  3. Laser Interferometry for Gravitational Wave Observation: LISA and LISA Pathfinder

    NASA Technical Reports Server (NTRS)

    Guzman, Felipe

    2010-01-01

    The Laser Interferometer Space Antenna (LISA) is a planned NASA-ESA gravitational wave observatory in the frequency range of 0.1mHz-100mHz. This observation band is inaccessible to ground-based detectors due to the large ground motions of the Earth. Gravitational wave sources for LISA include galactic binaries, mergers of supermasive black-hole binaries, extreme-mass-ratio inspirals, and possibly from as yet unimagined sources. LISA is a constellation of three spacecraft separated by 5 million km in an equilateral triangle, whose center follows the Earth in a heliocentric orbit with an orbital phase offset oF 20 degrees. Challenging technology is required to ensure pure geodetic trajectories of the six onboard test masses, whose distance fluctuations will be measured by interspacecraft laser interferometers with picometer accuracy. LISA Pathfinder is an ESA-launched technology demonstration mission of key LISA subsystems such us spacecraft control with micro-newton thrusters, test mass drag-free control, and precision laser interferometry between free-flying test masses. Ground testing of flight hardware of the Gravitational Reference Sensor and Optical Metrology subsystems of LISA Pathfinder is currently ongoing. An introduction to laser interferometric gravitational wave detection, ground-based observatories, and a detailed description of the two missions together with an overview of current investigations conducted by the community will bc discussed. The current status in development and implementation of LISA Pathfinder pre-flight systems and latest results of the ongoing ground testing efforts will also be presented

  4. Overhead View of Pathfinder Landing Site

    NASA Technical Reports Server (NTRS)

    1997-01-01

    Planimetric (overhead view) map of the landing site, to a distance of 20 meters from the spacecraft. North is at the top in this and Plates 3-5. To produce this map, images were geometrically projected onto an assumed mean surface representing the ground. Features above the ground plane (primarily rocks) therefore appear displaced radially outward; the amount of distortion increases systematically with distance. The upper surfaces of the lander and rover also appear enlarged and displaced because of their height. Primary grid (white) is based on the Landing Site Cartographic (LSC) coordinate system, defined with X eastward, Y north, and Z up, and origin located at the mean ground surface immediately beneath the deployed position of the IMP camera gimbal center. Secondary ticks (cyan) are based on the Mars local level (LL) frame, which has X north, Y east, Z down, with origin in the center of the lander baseplate. Rover positions (including APXS measurements) are commonly reported in the LL frame. Yellow grid shows polar coordinates based on the LSC system. Cartographic image processing by U.S. Geological Survey.

    NOTE: original caption as published in Science Magazine

    Mars Pathfinder is the second in NASA's Discovery program of low-cost spacecraft with highly focused science goals. The Jet Propulsion Laboratory, Pasadena, CA, developed and manages the Mars Pathfinder mission for NASA's Office of Space Science, Washington, D.C. JPL is a division of the California Institute of Technology (Caltech).

  5. Mars Pathfinder Project: Planetary Constants and Models

    NASA Technical Reports Server (NTRS)

    Vaughan, Robin

    1995-01-01

    This document provides a common set of astrodynamic constants and planetary models for use by the Mars Pathfinder Project. It attempts to collect in a single reference all the quantities and models in use across the project during development and for mission operations. These models are central to the navigation and mission design functions, but they are also used in other aspects of the project such as science observation planning and data reduction.

  6. Pathfinder technologies for bold new missions. [U.S. research and development program for space exploration

    NASA Technical Reports Server (NTRS)

    Sadin, Stanley R.; Rosen, Robert

    1987-01-01

    Project Pathfinder is a proposed U.S. Space Research and Technology program intended to enable bold new missions of space exploration. Pathfinder continues the advancement of technological capabilities and extends the foundation established under the Civil Space Technology Initiative, CSTI. By filling critical technological gaps, CSTI enhances access to Earth orbit and supports effective operations and science missions therein. Pathfinder, with a longer-term horizon, looks to a future that builds on Shuttle and Space Station and addresses technologies that support a range of exploration missions including: a return to the Moon to build an outpost; piloted missions to Mars; and continued scientific exploration of Earth and the other planets. The program's objective is to develop, within reasonable time frames, those emerging and innovative technologies that will make possible both new and enhanced missions and system concepts.

  7. Bringing Interactivity to the Web: The JAVA Solution.

    ERIC Educational Resources Information Center

    Knee, Richard H.; Cafolla, Ralph

    Java is an object-oriented programming language of the Internet. It's popularity lies in its ability to create interactive Web sites across platforms. The most common Java programs are applications and applets, which adhere to a set of conventions that lets them run within a Java-compatible browser. Java is becoming an essential subject matter and…

  8. Pathfinder Rover, Airbags, & Martian Terrain

    NASA Image and Video Library

    1997-07-05

    This is one of the first pictures taken by the camera on the Mars Pathfinder lander shortly after its touchdown at 10:07 AM Pacific Daylight Time on July 4, 1997. The small rover, named Sojourner, is seen in the foreground in its position on a solar panel of the lander. The white material on either side of the rover is part of the deflated airbag system used to absorb the shock of the landing. Between the rover and the horizon is the rock-strewn martian surface. Two hills are seen in the right distance, profiled against the light brown sky. http://photojournal.jpl.nasa.gov/catalog/PIA00611

  9. Pathfinders: Making a Way from Segregation to Community Life.

    ERIC Educational Resources Information Center

    O'Brien, Connie Lyle; Mount, Beth; O'Brien, John; Rosen, Fredda

    This paper describes the Pathfinders program in New York (New York), which works to facilitate the full integration of adults with developmental disabilities into workplaces and neighborhoods. The paper is organized around the question of whether students graduating from special education can find paid and volunteer work in community settings,…

  10. Mars Pathfinder and Mars Global Surveyor Outreach Compilation

    NASA Astrophysics Data System (ADS)

    1999-09-01

    This videotape is a compilation of the best NASA JPL (Jet Propulsion Laboratory) videos of the Mars Pathfinder and Mars Global Surveyor missions. The mission is described using animation and narration as well as some actual footage of the entire sequence of mission events. Included within these animations are the spacecraft orbit insertion; descent to the Mars surface; deployment of the airbags and instruments; and exploration by Sojourner, the Mars rover. JPL activities at spacecraft control during significant mission events are also included at the end. The spacecraft cameras pan the surrounding Mars terrain and film Sojourner traversing the surface and inspecting rocks. A single, brief, processed image of the Cydonia region (Mars face) at an oblique angle from the Mars Global Surveyor is presented. A description of the Mars Pathfinder mission, instruments, landing and deployment process, Mars approach, spacecraft orbit insertion, rover operation are all described using computer animation. Actual color footage of Sojourner as well as a 360 deg pan of the Mars terrain surrounding the spacecraft is provided. Lower quality black and white photography depicting Sojourner traversing the Mars surface and inspecting Martian rocks also is included.

  11. Mars Pathfinder and Mars Global Surveyor Outreach Compilation

    NASA Technical Reports Server (NTRS)

    1999-01-01

    This videotape is a compilation of the best NASA JPL (Jet Propulsion Laboratory) videos of the Mars Pathfinder and Mars Global Surveyor missions. The mission is described using animation and narration as well as some actual footage of the entire sequence of mission events. Included within these animations are the spacecraft orbit insertion; descent to the Mars surface; deployment of the airbags and instruments; and exploration by Sojourner, the Mars rover. JPL activities at spacecraft control during significant mission events are also included at the end. The spacecraft cameras pan the surrounding Mars terrain and film Sojourner traversing the surface and inspecting rocks. A single, brief, processed image of the Cydonia region (Mars face) at an oblique angle from the Mars Global Surveyor is presented. A description of the Mars Pathfinder mission, instruments, landing and deployment process, Mars approach, spacecraft orbit insertion, rover operation are all described using computer animation. Actual color footage of Sojourner as well as a 360 deg pan of the Mars terrain surrounding the spacecraft is provided. Lower quality black and white photography depicting Sojourner traversing the Mars surface and inspecting Martian rocks also is included.

  12. Geothermal and volcanism in west Java

    NASA Astrophysics Data System (ADS)

    Setiawan, I.; Indarto, S.; Sudarsono; Fauzi I, A.; Yuliyanti, A.; Lintjewas, L.; Alkausar, A.; Jakah

    2018-02-01

    Indonesian active volcanoes extend from Sumatra, Jawa, Bali, Lombok, Flores, North Sulawesi, and Halmahera. The volcanic arc hosts 276 volcanoes with 29 GWe of geothermal resources. Considering a wide distribution of geothermal potency, geothermal research is very important to be carried out especially to tackle high energy demand in Indonesia as an alternative energy sources aside from fossil fuel. Geothermal potency associated with volcanoes-hosted in West Java can be found in the West Java segment of Sunda Arc that is parallel with the subduction. The subduction of Indo-Australian oceanic plate beneath the Eurasian continental plate results in various volcanic products in a wide range of geochemical and mineralogical characteristics. The geochemical and mineralogical characteristics of volcanic and magmatic rocks associated with geothermal systems are ill-defined. Comprehensive study of geochemical signatures, mineralogical properties, and isotopes analysis might lead to the understanding of how large geothermal fields are found in West Java compared to ones in Central and East Java. The result can also provoke some valuable impacts on Java tectonic evolution and can suggest the key information for geothermal exploration enhancement.

  13. NASA Ocean Altimeter Pathfinder Project. Report 1; Data Processing Handbook

    NASA Technical Reports Server (NTRS)

    Koblinsky, C. J.; Beckley, Brian D.; Ray, Richard D.; Wang, Yan-Ming; Tsaoussi, Lucia; Brenner, Anita; Williamson, Ron

    1998-01-01

    The NOAA/NASA Pathfinder program was created by the Earth Observing System (EOS) Program Office to determine how satellite-based data sets can be processed and used to study global change. The data sets are designed to be long time-sedes data processed with stable calibration and community consensus algorithms to better assist the research community. The Ocean Altimeter Pathfinder Project involves the reprocessing of all altimeter observations with a consistent set of improved algorithms, based on the results from TOPEX/POSEIDON (T/P), into easy-to-use data sets for the oceanographic community for climate research. This report describes the processing schemes used to produce a consistent data set and two of the products derived f rom these data. Other reports have been produced that: a) describe the validation of these data sets against tide gauge measurements and b) evaluate the statistical properties of the data that are relevant to climate change. The use of satellite altimetry for earth observations was proposed in the early 1960s. The first successful space based radar altimeter experiment was flown on SkyLab in 1974. The first successful satellite radar altimeter was flown aboard the Geos-3 spacecraft between 1975 and 1978. While a useful data set was collected from this mission for geophysical studies, the noise in the radar measured and incomplete global coverage precluded ft from inclusion in the Ocean Altimeter Pathfinder program. This program initiated its analysis with the Seasat mission, which was the first satellite radar altimeter flown for oceanography.

  14. Accountable Information Flow for Java-Based Web Applications

    DTIC Science & Technology

    2010-01-01

    runtime library Swift server runtime Java servlet framework HTTP Web server Web browser Figure 2: The Swift architecture introduced an open-ended...On the server, the Java application code links against Swift’s server-side run-time library, which in turn sits on top of the standard Java servlet ...AFRL-RI-RS-TR-2010-9 Final Technical Report January 2010 ACCOUNTABLE INFORMATION FLOW FOR JAVA -BASED WEB APPLICATIONS

  15. Periodontal status among adolescents in Georgia. A pathfinder study.

    PubMed

    Levin, Liran; Margvelashvili, Vladimer; Bilder, Leon; Kalandadze, Manana; Tsintsadze, Nino; Machtei, Eli E

    2013-01-01

    Objectives. The aim of the present pathfinder study was to screen and map the periodontal status of Georgian population in accordance with the guidelines of the World Health Organization for population based surveys. Methods. During 2012, a pathfinder study was conducted to collect this data. For the periodontal portion of the study, 15-year-old school children were examined in the capital city of Tbilisi as well as in two other large cities and 4 smaller villages. All participants were examined by a trained dental team in a classroom using a dental mirror and a periodontal probe. Periodontal examination included plaque scores, calculus scores, probing depth measurements and bleeding on probing. These measurements were recorded for the Ramfjord index teeth. Results. A total of 397 15-year-old participants were examined in this pathfinder study. There were 240 females (60.45%) and 157 males (39.55%). Of the total participants 196 (49.37%) were urban adolescents while 201 (50.63%) were from rural communities. Mean probing depth was 3.34 ± 0.57 mm with a range of 1 to 10 mm; a relatively high proportion (34.26%) of these subjects presented with at least one site with pockets of 5 mm or deeper. Males presented with greater plaque, calculus and probing depths than females. When urban and rural populations were compared, urban participants presented with more plaque, probing depths and bleeding on probing. Greater pocket depths were found to be related to the presence of plaque calculus and bleeding on probing. Conclusions. Overall, rather high incidences of periodontal pockets ≥ 5 mm were detected in this population. This data should serve to prepare further more detailed epidemiological studies that will serve to plan and implement prevent and treat strategies for periodontal diseases in Georgia and also help make manpower decisions.

  16. High-Performance Java Codes for Computational Fluid Dynamics

    NASA Technical Reports Server (NTRS)

    Riley, Christopher; Chatterjee, Siddhartha; Biswas, Rupak; Biegel, Bryan (Technical Monitor)

    2001-01-01

    The computational science community is reluctant to write large-scale computationally -intensive applications in Java due to concerns over Java's poor performance, despite the claimed software engineering advantages of its object-oriented features. Naive Java implementations of numerical algorithms can perform poorly compared to corresponding Fortran or C implementations. To achieve high performance, Java applications must be designed with good performance as a primary goal. This paper presents the object-oriented design and implementation of two real-world applications from the field of Computational Fluid Dynamics (CFD): a finite-volume fluid flow solver (LAURA, from NASA Langley Research Center), and an unstructured mesh adaptation algorithm (2D_TAG, from NASA Ames Research Center). This work builds on our previous experience with the design of high-performance numerical libraries in Java. We examine the performance of the applications using the currently available Java infrastructure and show that the Java version of the flow solver LAURA performs almost within a factor of 2 of the original procedural version. Our Java version of the mesh adaptation algorithm 2D_TAG performs within a factor of 1.5 of its original procedural version on certain platforms. Our results demonstrate that object-oriented software design principles are not necessarily inimical to high performance.

  17. PathFinder: reconstruction and dynamic visualization of metabolic pathways.

    PubMed

    Goesmann, Alexander; Haubrock, Martin; Meyer, Folker; Kalinowski, Jörn; Giegerich, Robert

    2002-01-01

    Beyond methods for a gene-wise annotation and analysis of sequenced genomes new automated methods for functional analysis on a higher level are needed. The identification of realized metabolic pathways provides valuable information on gene expression and regulation. Detection of incomplete pathways helps to improve a constantly evolving genome annotation or discover alternative biochemical pathways. To utilize automated genome analysis on the level of metabolic pathways new methods for the dynamic representation and visualization of pathways are needed. PathFinder is a tool for the dynamic visualization of metabolic pathways based on annotation data. Pathways are represented as directed acyclic graphs, graph layout algorithms accomplish the dynamic drawing and visualization of the metabolic maps. A more detailed analysis of the input data on the level of biochemical pathways helps to identify genes and detect improper parts of annotations. As an Relational Database Management System (RDBMS) based internet application PathFinder reads a list of EC-numbers or a given annotation in EMBL- or Genbank-format and dynamically generates pathway graphs.

  18. Performance and Scalability of the NAS Parallel Benchmarks in Java

    NASA Technical Reports Server (NTRS)

    Frumkin, Michael A.; Schultz, Matthew; Jin, Haoqiang; Yan, Jerry; Biegel, Bryan A. (Technical Monitor)

    2002-01-01

    Several features make Java an attractive choice for scientific applications. In order to gauge the applicability of Java to Computational Fluid Dynamics (CFD), we have implemented the NAS (NASA Advanced Supercomputing) Parallel Benchmarks in Java. The performance and scalability of the benchmarks point out the areas where improvement in Java compiler technology and in Java thread implementation would position Java closer to Fortran in the competition for scientific applications.

  19. The ENSDF Java Package

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Sonzogni, A.A.

    2005-05-24

    A package of computer codes has been developed to process and display nuclear structure and decay data stored in the ENSDF (Evaluated Nuclear Structure Data File) library. The codes were written in an object-oriented fashion using the java language. This allows for an easy implementation across multiple platforms as well as deployment on web pages. The structure of the different java classes that make up the package is discussed as well as several different implementations.

  20. Mars PathFinder Rover Traverse Image

    NASA Technical Reports Server (NTRS)

    1998-01-01

    This figure contains an azimuth-elevation projection of the 'Gallery Panorama.' The original Simple Cylindrical mosaic has been reprojected to the inside of a sphere so that lines of constant azimuth radiate from the center and lines of constant elevation are concentric circles. This projection preserves the resolution of the original panorama. Overlaid onto the projected Martian surface is a delineation of the Sojourner rover traverse path during the 83 Sols (Martian days) of Pathfinder surface operations. The rover path was reproduced using IMP camera 'end of day' and 'Rover movie' image sequences and rover vehicle telemetry data as references.

  1. Mars Pathfinder: The Wheel Abrasion Experiment

    NASA Technical Reports Server (NTRS)

    1996-01-01

    NASA Lewis Research Center's Wheel Abrasion Experiment (WAE) will measure the amount of wear on wheel surfaces of the Mars Pathfinder rover. WAE uses thin films of Al, Ni, and Pt (ranging in thickness from 200 to 1000 angstroms) deposited on black, anodized Al strips attached to the rover wheel. As the wheel moves across the martian surface, changes in film reflectivity will be monitored by reflected sunlight. These changes, measured as output from a special photodetector mounted on the rover chassis, will be due to abrasion of the metal films by martian surface sand, dust, and clay.

  2. JavaGenes Molecular Evolution

    NASA Technical Reports Server (NTRS)

    Lohn, Jason; Smith, David; Frank, Jeremy; Globus, Al; Crawford, James

    2007-01-01

    JavaGenes is a general-purpose, evolutionary software system written in Java. It implements several versions of a genetic algorithm, simulated annealing, stochastic hill climbing, and other search techniques. This software has been used to evolve molecules, atomic force field parameters, digital circuits, Earth Observing Satellite schedules, and antennas. This version differs from version 0.7.28 in that it includes the molecule evolution code and other improvements. Except for the antenna code, JaveGenes is available for NASA Open Source distribution.

  3. East Java Maritime Connectivity and Its Regional Development Support

    NASA Astrophysics Data System (ADS)

    Purboyo, H.; Ibad, M. Z.

    2017-07-01

    The study presents an evolution of maritime connectivity index of East Java which is associated with accessibility and mobility index of regions in East Java. The findings show that East Java increased connectivity more than three times from 1996 to 2011. Initially, the East Java is importer but then become exporter to national territory. For accessibility, the inland regions of East Java in general is higher than the coastal areas. And for mobility, inland regions initially have a small index, but in subsequent years its index is greater than the coastal areas.

  4. Hillary Clinton visits Pathfinder projects in Brazil.

    PubMed

    1996-01-01

    In October 1995, US First Lady Hillary Clinton visited a maternity hospital in Salvador, Brazil, in which a family planning (FP)/reproductive health program has been administered by Pathfinder International since 1981 with funding from USAID. During her tour of the facility, Clinton learned about the high degree of unmet need for FP in the region which results from a lack of sufficient resources to meet demand. Clinton, in turn, praised the state of Bahia for its emphasis on FP in low-income areas.

  5. Mars pathfinder Rover egress deployable ramp assembly

    NASA Technical Reports Server (NTRS)

    Spence, Brian R.; Sword, Lee F.

    1996-01-01

    The Mars Pathfinder Program is a NASA Discovery Mission, led by the Jet Propulsion Laboratory, to launch and place a small planetary Rover for exploration on the Martian surface. To enable safe and successful egress of the Rover vehicle from the spacecraft, a pair of flight-qualified, deployable ramp assemblies have been developed. This paper focuses on the unique, lightweight deployable ramp assemblies. A brief mission overview and key design requirements are discussed. Design and development activities leading to qualification and flight systems are presented.

  6. Visualization Software for VisIT Java Client

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Billings, Jay Jay; Smith, Robert W

    The VisIT Java Client (JVC) library is a lightweight thin client that is designed and written purely in the native language of Java (the Python & JavaScript versions of the library use the same concept) and communicates with any new unmodified standalone version of VisIT, a high performance computing parallel visualization toolkit, over traditional or web sockets and dynamically determines capabilities of the running VisIT instance whether local or remote.

  7. A Java Applet for Illustrating Internet Error Control

    ERIC Educational Resources Information Center

    Holliday, Mark A.

    2004-01-01

    This paper discusses the author's experiences developing a Java applet that illustrates how error control is implemented in the Transmission Control Protocol (TCP). One section discusses the concepts which the TCP error control Java applet is intended to convey, while the nature of the Java applet is covered in another section. The author…

  8. The Stratospheric Aerosol and Gas Experiment (SAGE) IV Pathfinder

    NASA Astrophysics Data System (ADS)

    Hill, C. A.; Damadeo, R. P.; Gasbarre, J. F.

    2017-12-01

    Stratospheric ozone has been the subject of observation and research for decades. Measurements from satellites provided data on the initial decline in the late 1970s and early 1980s that supported the adoption of the Montreal Protocol to current observations hinting at potential recovery. Adequate determination of that recovery requires continuous and, in the case of multiple instruments, overlapping data records. However, most current satellite systems are well beyond their expected lifetimes and thus, with only a few "younger" instruments available, we look towards the future of satellite observations of stratospheric ozone to develop the Stratospheric Aerosol and Gas Experiment (SAGE) IV Pathfinder. The SAGE IV Pathfinder project will develop and validate a technology demonstration that will pave the way for a future SAGE IV mission. Utilizing solar occultation imaging, SAGE IV will be capable of measuring ozone, aerosol, and other trace gas species with the same quality as previous SAGE instruments but with greatly improved pointing knowledge. Furthermore, current technological advancements allow SAGE IV to fit within a CubeSat framework and make use of commercial hardware, significantly reducing the size and cost when compared with traditional missions and enabling sustainability of future measurements.

  9. Sedimentary Geochemistry of Martian Samples from the Pathfinder Mission

    NASA Technical Reports Server (NTRS)

    McLennan, Scott M.

    2001-01-01

    The purpose of this research project was to evaluate the APXS data collected on soils and rocks at the Pathfinder site in terms of sedimentary geochemistry. Below are described the major findings of this research: (1) An influential model to explain the chemical variation among Pathfinder soils and rocks is a two component mixing model where rocks of fairly uniform composition mix with soil of uniform composition; (2) The very strong positive correlation between MgO and SO, points to a control by a MgSO4 mineral however, spectroscopic data continue to suggest that Fe-sulfates, notably schwertmannite and jarosite, may be important components; (3) In an attempt to better understand the causes of complexities in mixing relationships, the possible influence of sedimentary transport has been evaluated; (4) Another aspect of this research has been to examine the possibility of sedimentary silica being a significant phase on Mars; and (5) On Earth, the geochemistry of sedimentary rocks has been used to constrain the chemical composition of the continental crust and an important part of this research was to evaluate this approach for Mars.

  10. Results from the Mars Pathfinder camera.

    PubMed

    Smith, P H; Bell, J F; Bridges, N T; Britt, D T; Gaddis, L; Greeley, R; Keller, H U; Herkenhoff, K E; Jaumann, R; Johnson, J R; Kirk, R L; Lemmon, M; Maki, J N; Malin, M C; Murchie, S L; Oberst, J; Parker, T J; Reid, R J; Sablotny, R; Soderblom, L A; Stoker, C; Sullivan, R; Thomas, N; Tomasko, M G; Wegryn, E

    1997-12-05

    Images of the martian surface returned by the Imager for Mars Pathfinder (IMP) show a complex surface of ridges and troughs covered by rocks that have been transported and modified by fluvial, aeolian, and impact processes. Analysis of the spectral signatures in the scene (at 440- to 1000-nanometer wavelength) reveal three types of rock and four classes of soil. Upward-looking IMP images of the predawn sky show thin, bluish clouds that probably represent water ice forming on local atmospheric haze (opacity approximately 0.5). Haze particles are about 1 micrometer in radius and the water vapor column abundance is about 10 precipitable micrometers.

  11. NASA Prepares Webb Telescope Pathfinder for Famous Chamber

    NASA Image and Video Library

    2015-04-13

    Engineers and technicians manually deployed the secondary mirror support structure (SMSS) of the James Webb Space Telescope's Pathfinder backplane test model, outside of a giant space simulation chamber called Chamber A, at NASA's Johnson Space Center in Houston. This historic test chamber was previously used in manned spaceflight missions and is being readied for a cryogenic test of a Webb telescope component. In the weightless environment of space, the SMSS is deployed by electric motors. On the ground, specially trained operators use a hand crank and a collection of mechanical ground support equipment to overcome the force of gravity. "This structure needs to be in the deployed configuration during the cryogenic test to see how the structure will operate in the frigid temperatures of space," said Will Rowland, senior mechanical test engineer for Northrop Grumman Aerospace Systems, Redondo Beach, California. "The test also demonstrates that the system works and can be successfully deployed." After the deployment was completed, Chamber A's circular door was opened and the rails (seen in the background of the photo) were installed so that the Pathfinder unit could be lifted, installed and rolled into the chamber on a cart. The team completed a fit check for the Pathfinder. Afterwards they readied the chamber for the cryogenic test, which will simulate the frigid temperatures the Webb telescope will encounter in space. “The team has been doing a great job keeping everything on schedule to getting our first optical test results, " said Lee Feinberg, NASA Optical Telescope Element Manager. The James Webb Space Telescope is the scientific successor to NASA's Hubble Space Telescope. It will be the most powerful space telescope ever built. Webb is an international project led by NASA with its partners, the European Space Agency and the Canadian Space Agency. Image credit: NASA/Desiree Stover Text credit: Laura Betz, NASA's Goddard Space Flight Center, Greenbelt

  12. The openEHR Java reference implementation project.

    PubMed

    Chen, Rong; Klein, Gunnar

    2007-01-01

    The openEHR foundation has developed an innovative design for interoperable and future-proof Electronic Health Record (EHR) systems based on a dual model approach with a stable reference information model complemented by archetypes for specific clinical purposes.A team from Sweden has implemented all the stable specifications in the Java programming language and donated the source code to the openEHR foundation. It was adopted as the openEHR Java Reference Implementation in March 2005 and released under open source licenses. This encourages early EHR implementation projects around the world and a number of groups have already started to use this code. The early Java implementation experience has also led to the publication of the openEHR Java Implementation Technology Specification. A number of design changes to the specifications and important minor corrections have been directly initiated by the implementation project over the last two years. The Java Implementation has been important for the validation and improvement of the openEHR design specifications and provides building blocks for future EHR systems.

  13. New Web Server - the Java Version of Tempest - Produced

    NASA Technical Reports Server (NTRS)

    York, David W.; Ponyik, Joseph G.

    2000-01-01

    A new software design and development effort has produced a Java (Sun Microsystems, Inc.) version of the award-winning Tempest software (refs. 1 and 2). In 1999, the Embedded Web Technology (EWT) team received a prestigious R&D 100 Award for Tempest, Java Version. In this article, "Tempest" will refer to the Java version of Tempest, a World Wide Web server for desktop or embedded systems. Tempest was designed at the NASA Glenn Research Center at Lewis Field to run on any platform for which a Java Virtual Machine (JVM, Sun Microsystems, Inc.) exists. The JVM acts as a translator between the native code of the platform and the byte code of Tempest, which is compiled in Java. These byte code files are Java executables with a ".class" extension. Multiple byte code files can be zipped together as a "*.jar" file for more efficient transmission over the Internet. Today's popular browsers, such as Netscape (Netscape Communications Corporation) and Internet Explorer (Microsoft Corporation) have built-in Virtual Machines to display Java applets.

  14. JPL Experience with the Mars Pathfinder, Mission Simulation Battery

    NASA Technical Reports Server (NTRS)

    Perrone, Dave; Ewell, Richard

    1997-01-01

    A summary of the Mars Pathfinder Battery is given. The battery survived 47 days at 25 deg. C; it survived a 7 month stand at 10 to -5 deg. C; it met and exceeded 40 ampere-hour capacity for EDL; it met the 30 cycle minimum for Mars surface operation; and the project power profile for MArs surface operation does not yield energy balance.

  15. The Role of APEX as a Pathfinder for AtLAST

    NASA Astrophysics Data System (ADS)

    Wyrowski, Friedrich

    2018-01-01

    Now more than 12 years in operation, the Atacama Pathfinder Experiment (APEX) 12 m submillimeter telescope has significantly contributed to a wide variety of submillimeter astronomy science areas, ranging from the discoveries of new molecules to large and deep imaging of the submillimeter sky. While ALMA operation is in full swing, APEX is strengthening its role not only as pathfinder for studying large source samples and spatial scales to prepare detailed high angular resolution ALMA follow ups, but also as fast response instruments to complement new results from ALMA. Furthermore, APEX ensures southern hemisphere access for submillimeter projects complementing archival Herschel research as well as new SOFIA science. With new broadband and multipixel receivers as well as large cameras for wide-field continuum imaging, APEX will pave the way towards the science envisioned with ATLAST. In this contribution, the current status and ongoing upgrades of APEX will be discussed, with an emphasis on the importance of continuous cutting edge science and state-of-the-art instrumentation that will bridge the gap towards ATLAST.

  16. NASA Ocean Altimeter Pathfinder Project. Report 2; Data Set Validation

    NASA Technical Reports Server (NTRS)

    Koblinsky, C. J.; Ray, Richard D.; Beckley, Brian D.; Bremmer, Anita; Tsaoussi, Lucia S.; Wang, Yan-Ming

    1999-01-01

    The NOAA/NASA Pathfinder program was created by the Earth Observing System (EOS) Program Office to determine how existing satellite-based data sets can be processed and used to study global change. The data sets are designed to be long time-series data processed with stable calibration and community consensus algorithms to better assist the research community. The Ocean Altimeter Pathfinder Project involves the reprocessing of all altimeter observations with a consistent set of improved algorithms, based on the results from TOPEX/POSEIDON (T/P), into easy-to-use data sets for the oceanographic community for climate research. Details are currently presented in two technical reports: Report# 1: Data Processing Handbook Report #2: Data Set Validation This report describes the validation of the data sets against a global network of high quality tide gauge measurements and provides an estimate of the error budget. The first report describes the processing schemes used to produce the geodetic consistent data set comprised of SEASAT, GEOSAT, ERS-1, TOPEX/ POSEIDON, and ERS-2 satellite observations.

  17. Pathfinder, Volume 7. Number 4, Jul/Aug 2009. GEOINT in Action

    DTIC Science & Technology

    2009-08-01

    Rd,Bethesda,MD, 20816 -5003 8. PERFORMING ORGANIZATION REPORT NUMBER 9. SPONSORING/MONITORING AGENCY NAME(S) AND ADDRESS(ES) 10. SPONSOR/MONITOR’S...Communications 4600 Sangamore Road, Mail Stop D-39 Bethesda, MD 20816 -5003 Telephone: (301) 227-7388, DSN 287-7388 E-mail: pathfinder@nga.mil

  18. A torsion pendulum test of the Lisa Pathfinder free-fall mode

    NASA Astrophysics Data System (ADS)

    Russano, Giuliana; Dolesi, Rita; Cavalleri, Antonella; Hueller, Mauro; Vitale, Stefano; Weber, William Joseph; Tu, HaiBo

    The LISA Pathfinder geodesic explorer mission for gravitational wave astronomy aims to demonstrate the proof of a low acceleration noise level. The relative acceleration between two test masses free falling in orbit is perturbed by the presence of a larger constant relative acceleration that must be actively compensated in order to keep the test particles centered inside an orbiting apparatus. The actuation force applied to compensate this effect introduces a dominant source of force noise. To suppress this noise source, a “free-fall” actuation control scheme has been designed: actuation is limited to brief impulses, with test masses in free fall in between two “kicks”, with this actuation-free motion then analyzed for the remaining sources of acceleration ultra noise. In this work, we will discuss and present preliminary data for an on-ground torsion pendulum experiment to test this technique, and the associated analysis algorithms, at a level nearing the sub-femto-g/sqrt(Hz) performance required for LISA Pathfinder.

  19. Practical Application of Model Checking in Software Verification

    NASA Technical Reports Server (NTRS)

    Havelund, Klaus; Skakkebaek, Jens Ulrik

    1999-01-01

    This paper presents our experiences in applying the JAVA PATHFINDER (J(sub PF)), a recently developed JAVA to SPIN translator, in the finding of synchronization bugs in a Chinese Chess game server application written in JAVA. We give an overview of J(sub PF) and the subset of JAVA that it supports and describe the abstraction and verification of the game server. Finally, we analyze the results of the effort. We argue that abstraction by under-approximation is necessary for abstracting sufficiently smaller models for verification purposes; that user guidance is crucial for effective abstraction; and that current model checkers do not conveniently support the computational models of software in general and JAVA in particular.

  20. Exobiology site priorities for Mars Pathfinder

    NASA Technical Reports Server (NTRS)

    Farmer, Jack D.; Desmarais, David J.

    1994-01-01

    The fact that life developed on the Earth within the first billion years of its history makes it quite plausible that life may have also developed on Mars. If life did develop on Mars, it undoubtedly left behind a fossil record. Such a fossil record is likely to be more accessible than either subsurface environments that may harbor life, or scattered 'oases' that may be present at the surface. Consequently, the post-Viking approach of Mars exobiology has shifted focus to search for evidence of an ancient martian biosphere. This has led to the emergence of a new subdiscipline of paleontology, herein termed 'exopaleontology', which deals with the exploration for fossils on other planets and whose core concepts derive from Earth-based Precambrian paleontology, microbial ecology, and sedimentology. Potential targets on Mars for subaqueous spring deposits, sedimentary cements, and evaporites are ancient terminal lake basins where hydrological systems could have endured for some time under arid conditions. Potential targets for the Mars Pathfinder mission include channeled impact craters and areas of deranged drainage associated with outflows in northwest Arabia and Xanthe Terra, where water may have ponded temporarily to form lakes. The major uncertainty of such targets is their comparatively younger age and the potentially short duration of hydrological activity compared to older paleolake basins found in the southern hemisphere. However, it has been suggested that cycles of catastrophic flooding associated with Tharsis volcanism may have sustained a large body of water, Oceanus Borealis, in the northern plains area until quite late in martian history. Although problematic, the shoreline areas of the proposed northern ocean provide potential targets for a Mars Pathfinder mission aimed at exploring for carbonates or other potentially fossiliferous marine deposits. Carbonates and evaporites possess characteristic spectra signatures in the near-infrared and should be

  1. Topographic Map of Pathfinder Landing Site

    NASA Technical Reports Server (NTRS)

    1997-01-01

    Topographic map of the landing site, to a distance of 60 meters from the lander in the LSC coordinate system. The lander is shown schematically in the center; 2.5 meter radius circle (black) centered on the camera was not mapped. Gentle relief [root mean square (rms) elevation variation 0.5 m; rms a directional slope 4O] and organization of topography into northwest and northeast-trending ridges about 20 meters apart are apparent. Roughly 30% of the illustrated area is hidden from the camera behind these ridges. Contours (0.2 m interval) and color coding of elevations were generated from a digital terrain model, which was interpolated by kriging from approximately 700 measured points. Angular and parallax point coordinates were measured manually on a large (5 m length) anaglyphic uncontrolled mosaic and used to calculate Cartesian (LSC) coordinates. Errors in azimuth on the order of 10 are therefore likely; elevation errors were minimized by referencing elevations to the local horizon. The uncertainty in range measurements increases quadratically with range. Given a measurement error of 1/2 pixel, the expected precision in range is 0.3 meter at 10 meter range, and 10 meters at 60 meter range. Repeated measurements were made, compared, and edited for consistency to improve the range precision. Systematic errors undoubtedly remain and will be corrected in future maps compiled digitally from geometrically controlled images. Cartographic processing by U.S. Geological Survey.

    NOTE: original caption as published in Science Magazine

    Mars Pathfinder is the second in NASA's Discovery program of low-cost spacecraft with highly focused science goals. The Jet Propulsion Laboratory, Pasadena, CA, developed and manages the Mars Pathfinder mission for NASA's Office of Space Science, Washington, D.C. JPL is a division of the California Institute of Technology (Caltech).

  2. Global Climate Change Pathfinder: A Guide to Information Resources. Second Edition.

    ERIC Educational Resources Information Center

    Pintozzi, Chestalene; Jones, Douglas E.

    This pathfinder is a guide to scientific and technical aspects of global climate change including meteorological and climatological aspects; biological, agricultural, and public policy implications; and the chemical processes involved. Sources are arranged by type of publication and include: (1) 10 reference sources; (2) 12 bibliographies; (3) 44…

  3. Mars Pathfinder Wheel Abrasion Experiment Ground Test

    NASA Technical Reports Server (NTRS)

    Keith, Theo G., Jr.; Siebert, Mark W.

    1998-01-01

    The National Aeronautics and Space Administration (NASA) sent a mission to the martian surface, called Mars Pathfinder. The mission payload consisted of a lander and a rover. The primary purpose of the mission was demonstrating a novel entry, descent, and landing method that included a heat shield, a parachute, rockets, and a cocoon of giant air bags. Once on the surface, the spacecraft returned temperature measurements near the Martian surface, atmosphere pressure, wind speed measurements, and images from the lander and rover. The rover obtained 16 elemental measurements of rocks and soils, performed soil-mechanics, atmospheric sedimentation measurements, and soil abrasiveness measurements.

  4. Big Crater as Viewed by Pathfinder Lander

    NASA Technical Reports Server (NTRS)

    1997-01-01

    The 'Big Crater' is actually a relatively small Martian crater to the southeast of the Mars Pathfinder landing site. It is 1500 meters (4900 feet) in diameter, or about the same size as Meteor Crater in Arizona. Superimposed on the rim of Big Crater (the central part of the rim as seen here) is a smaller crater nicknamed 'Rimshot Crater.' The distance to this smaller crater, and the nearest portion of the rim of Big Crater, is 2200 meters (7200 feet). To the right of Big Crater, south from the spacecraft, almost lost in the atmospheric dust 'haze,' is the large streamlined mountain nicknamed 'Far Knob.' This mountain is over 450 meters (1480 feet) tall, and is over 30 kilometers (19 miles) from the spacecraft. Another, smaller and closer knob, nicknamed 'Southeast Knob' can be seen as a triangular peak to the left of the flanks of the Big Crater rim. This knob is 21 kilometers (13 miles) southeast from the spacecraft.

    The larger features visible in this scene - Big Crater, Far Knob, and Southeast Knob - were discovered on the first panoramas taken by the IMP camera on the 4th of July, 1997, and subsequently identified in Viking Orbiter images taken over 20 years ago. The scene includes rocky ridges and swales or 'hummocks' of flood debris that range from a few tens of meters away from the lander to the distance of South Twin Peak. The largest rock in the nearfield, just left of center in the foreground, nicknamed 'Otter', is about 1.5 meters (4.9 feet) long and 10 meters (33 feet) from the spacecraft.

    This view of Big Crater was produced by combining 6 individual 'Superpan' scenes from the left and right eyes of the IMP camera. Each frame consists of 8 individual frames (left eye) and 7 frames (right eye) taken with different color filters that were enlarged by 500% and then co-added using Adobe Photoshop to produce, in effect, a super-resolution panchromatic frame that is sharper than an individual frame would be.

    Mars Pathfinder is the second in NASA

  5. The Australian SKA Pathfinder: project update and initial operations

    NASA Astrophysics Data System (ADS)

    Schinckel, Antony E. T.; Bock, Douglas C.-J.

    2016-08-01

    The Australian Square Kilometre Array Pathfinder (ASKAP) will be the fastest dedicated cm-wave survey telescope, and will consist of 36 12-meter 3-axis antennas, each with a large chequerboard phased array feed (PAF) receiver operating between 0.7 and 1.8 GHz, and digital beamforming prior to correlation. The large raw data rates involved ( 100 Tb/sec), and the need to do pipeline processing, has led to the antenna incorporating a third axis to fix the parallactic angle with respect to the entire optical system (blockages and phased array feed). It also results in innovative technical solutions to the data transport and processing issues. ASKAP is located at the Murchison Radio-astronomy Observatory (MRO), a new observatory developed for the Square Kilometre Array (SKA), 315 kilometres north-east of Geraldton, Western Australia. The MRO also hosts the SKA low frequency pathfinder instrument, the Murchison Widefield Array and will host the initial low frequency instrument of the SKA, SKA1-Low. Commissioning of ASKAP using six antennas equipped with first-generation PAFs is now complete and installation of second-generation PAFs and digital systems is underway. In this paper we review technical progress and commissioning to date, and refer the reader to relevant technical and scientific publications.

  6. Pathfinder, v6 n6, Nov/Dec 2008. Foundation Data and Technology

    DTIC Science & Technology

    2008-12-01

    Geospatial-Intelligence Agency,Office of Corporate Communications,4600 Sangamore Road ,Bethesda,MD, 20816 -5003 8. PERFORMING ORGANIZATION REPORT...Communications 4600 Sangamore Road, Mail Stop D-54 Bethesda, MD 20816 -5003 Telephone: (301) 227-7388, DSN 287-7388 E-mail: pathfinder@nga.mil

  7. HOWARD EISEN, JPL'S LEAD MECHANICAL TECHNICIAN, HOLDS MARS PATHFINDER 'SOJOURNER' ROVER 1:1 SCALE DU

    NASA Technical Reports Server (NTRS)

    1996-01-01

    The Mars Pathfinder 'Sojourner' rover l:l scale duplicate test vehicle is held by Howard Eisen, its lead mechanical technician from the Jet Propulsion Laboratory, with Kennedy Space Center's Vehicle Assembly Building looming in the background. The launch of NASA's Mars Pathfinder spacecraft aboard a McDonnell Douglas Delta II rocket is scheduled for Monday, Dec. 2, at 2:09:11 a.m. EST. This is a single instantaneous target launch time without a second opportunity on that day. Liftoff will occur from Pad B at Launch Complex 17 on Cape Canaveral Air Station, Fla. There is a 24-day launch opportunity which extends through Dec. 31.

  8. Muria Volcano, Island of Java, Indonesia

    NASA Technical Reports Server (NTRS)

    1991-01-01

    This view of the north coast of central Java, Indonesia centers on the currently inactive Muria Volcano (6.5S, 111.0E). Muria is 5,330 ft. tall and lies just north of Java's main volcanic belt which runs east - west down the spine of the island attesting to the volcanic origin of the more than 1,500 Indonesian Islands.

  9. Pathfinder. Volume 9, Number 3, May/June 2011

    DTIC Science & Technology

    2011-05-01

    Pathfinder magazine .” Any reproduction of graphics, photographs and imagery is subject to the original copyright. 2 On My Mind 5 NGA in the News ›› F E A...team analyst stationed in Baghdad to search for and identify advertising billboards in Baghdad, a large and mundane task. To a CA commander, however...unclassified Standard Form 298 (Rev. 8-98) Prescribed by ANSI Std Z39-18 On My Mind Putting the Power of GEOINT in the Warfighter’s Hands As a

  10. Zebrafish foxP2 Zinc Finger Nuclease Mutant Has Normal Axon Pathfinding

    PubMed Central

    Xing, Lingyan; Hoshijima, Kazuyuki; Grunwald, David J.; Fujimoto, Esther; Quist, Tyler S.; Sneddon, Jacob; Chien, Chi-Bin; Stevenson, Tamara J.; Bonkowsky, Joshua L.

    2012-01-01

    foxP2, a forkhead-domain transcription factor, is critical for speech and language development in humans, but its role in the establishment of CNS connectivity is unclear. While in vitro studies have identified axon guidance molecules as targets of foxP2 regulation, and cell culture assays suggest a role for foxP2 in neurite outgrowth, in vivo studies have been lacking regarding a role for foxP2 in axon pathfinding. We used a modified zinc finger nuclease methodology to generate mutations in the zebrafish foxP2 gene. Using PCR-based high resolution melt curve analysis (HRMA) of G0 founder animals, we screened and identified three mutants carrying nonsense mutations in the 2nd coding exon: a 17 base-pair (bp) deletion, an 8bp deletion, and a 4bp insertion. Sequence analysis of cDNA confirmed that these were frameshift mutations with predicted early protein truncations. Homozygous mutant fish were viable and fertile, with unchanged body morphology, and no apparent differences in CNS apoptosis, proliferation, or patterning at embryonic stages. There was a reduction in expression of the known foxP2 target gene cntnap2 that was rescued by injection of wild-type foxP2 transcript. When we examined axon pathfinding using a pan-axonal marker or transgenic lines, including a foxP2-neuron-specific enhancer, we did not observe any axon guidance errors. Our findings suggest that foxP2 is not necessary for axon pathfinding during development. PMID:22937139

  11. Zebrafish foxP2 zinc finger nuclease mutant has normal axon pathfinding.

    PubMed

    Xing, Lingyan; Hoshijima, Kazuyuki; Grunwald, David J; Fujimoto, Esther; Quist, Tyler S; Sneddon, Jacob; Chien, Chi-Bin; Stevenson, Tamara J; Bonkowsky, Joshua L

    2012-01-01

    foxP2, a forkhead-domain transcription factor, is critical for speech and language development in humans, but its role in the establishment of CNS connectivity is unclear. While in vitro studies have identified axon guidance molecules as targets of foxP2 regulation, and cell culture assays suggest a role for foxP2 in neurite outgrowth, in vivo studies have been lacking regarding a role for foxP2 in axon pathfinding. We used a modified zinc finger nuclease methodology to generate mutations in the zebrafish foxP2 gene. Using PCR-based high resolution melt curve analysis (HRMA) of G0 founder animals, we screened and identified three mutants carrying nonsense mutations in the 2(nd) coding exon: a 17 base-pair (bp) deletion, an 8bp deletion, and a 4bp insertion. Sequence analysis of cDNA confirmed that these were frameshift mutations with predicted early protein truncations. Homozygous mutant fish were viable and fertile, with unchanged body morphology, and no apparent differences in CNS apoptosis, proliferation, or patterning at embryonic stages. There was a reduction in expression of the known foxP2 target gene cntnap2 that was rescued by injection of wild-type foxP2 transcript. When we examined axon pathfinding using a pan-axonal marker or transgenic lines, including a foxP2-neuron-specific enhancer, we did not observe any axon guidance errors. Our findings suggest that foxP2 is not necessary for axon pathfinding during development.

  12. Pathfinder, v6 n3, May/Jun 2008. Unifying the Intelligence Profession

    DTIC Science & Technology

    2008-06-01

    ADDRESS(ES) National Geospatial-Intelligence Agency,Office of Corporate Communications,4600 Sangamore Road ,Bethesda,MD, 20816 -5003 8. PERFORMING...Sangamore Road, Mail Stop D-54 Bethesda, MD 20816 -5003 Telephone: (301) 227-7388, DSN 287-7388 E-mail: pathfinder@nga.mil Director Vice Adm. Robert

  13. Processing and Analysis of Mars Pathfinder Science Data at JPL's Science Data Processing Section

    NASA Technical Reports Server (NTRS)

    LaVoie, S.; Green, W.; Runkle, A.; Alexander, D.; Andres, P.; DeJong, E.; Duxbury, E.; Freda, D.; Gorjian, Z.; Hall, J.; hide

    1998-01-01

    The Mars Pathfinder mission required new capabilities and adaptation of existing capabilities in order to support science analysis and flight operations requirements imposed by the in-situ nature of the mission.

  14. FPV: fast protein visualization using Java 3D.

    PubMed

    Can, Tolga; Wang, Yujun; Wang, Yuan-Fang; Su, Jianwen

    2003-05-22

    Many tools have been developed to visualize protein structures. Tools that have been based on Java 3D((TM)) are compatible among different systems and they can be run remotely through web browsers. However, using Java 3D for visualization has some performance issues with it. The primary concerns about molecular visualization tools based on Java 3D are in their being slow in terms of interaction speed and in their inability to load large molecules. This behavior is especially apparent when the number of atoms to be displayed is huge, or when several proteins are to be displayed simultaneously for comparison. In this paper we present techniques for organizing a Java 3D scene graph to tackle these problems. We have developed a protein visualization system based on Java 3D and these techniques. We demonstrate the effectiveness of the proposed method by comparing the visualization component of our system with two other Java 3D based molecular visualization tools. In particular, for van der Waals display mode, with the efficient organization of the scene graph, we could achieve up to eight times improvement in rendering speed and could load molecules three times as large as the previous systems could. EPV is freely available with source code at the following URL: http://www.cs.ucsb.edu/~tcan/fpv/

  15. Measuring Pilot Knowledge in Training: The Pathfinder Network Scaling Technique

    DTIC Science & Technology

    2007-01-01

    Network Scaling Technique Leah J. Rowe Roger W. Schvaneveldt L -3 Communications Arizona State University Mesa, AZ Mesa, AZ leah.rowe...7293 Page 2 of 8 Measuring Pilot Knowledge in Training: The Pathfinder Network Scaling Technique Leah J. Rowe Roger W. Schvaneveldt L -3...training. ABOUT THE AUTHORS Leah J. Rowe is a Training Research Specialist with L -3 Communications at the Air Force Research Laboratory

  16. Pathfinder autonomous rendezvous and docking project

    NASA Technical Reports Server (NTRS)

    Lamkin, Stephen (Editor); Mccandless, Wayne (Editor)

    1990-01-01

    Capabilities are being developed and demonstrated to support manned and unmanned vehicle operations in lunar and planetary orbits. In this initial phase, primary emphasis is placed on definition of the system requirements for candidate Pathfinder mission applications and correlation of these system-level requirements with specific requirements. The FY-89 activities detailed are best characterized as foundation building. The majority of the efforts were dedicated to assessing the current state of the art, identifying desired elaborations and expansions to this level of development and charting a course that will realize the desired objectives in the future. Efforts are detailed across all work packages in developing those requirements and tools needed to test, refine, and validate basic autonomous rendezvous and docking elements.

  17. Classification and Distribution of Mars Pathfinder Rocks Using Quantitative Morphologic Indices

    NASA Technical Reports Server (NTRS)

    Yingst, R. A.; Biederman, K. L.; Monhead, A. M.; Haldemann, A. F. C.; Kowalczyk, M. R.

    2004-01-01

    The Mars Pathfinder (MPF) landing site was predicted to contain a broad sampling of rock types varying in mineralogical, physical, mechanical and geochemical characteristics. Although rocks have been divided into several spectral categories based on Imager for Mars Pathfinder visible/near-infrared spectra, it has not been fully determined which of these stem from intrinsic mineralogical differences between rocks or rock surfaces, and which result from factors such as physical or chemical weathering. This has made isolation of unique mineralogy's difficult. Efforts in isolating and classifying spectral units among MPF rocks and soils have met with varying degrees of success, and the current understanding is such that many factors influencing spectral signatures cannot be quantified to a sufficient level so they may be removed. The result is that fundamental questions regarding information needed to reveal the present and past interactions between the rocks and rock surfaces and the Martian environment remain unanswered. But it is possible to approach the issue of identifying distinct rock and rock surface types from a different angle.

  18. Java and its future in biomedical computing.

    PubMed Central

    Rodgers, R P

    1996-01-01

    Java, a new object-oriented computing language related to C++, is receiving considerable attention due to its use in creating network-sharable, platform-independent software modules (known as "applets") that can be used with the World Wide Web. The Web has rapidly become the most commonly used information-retrieval tool associated with the global computer network known as the Internet, and Java has the potential to further accelerate the Web's application to medical problems. Java's potentially wide acceptance due to its Web association and its own technical merits also suggests that it may become a popular language for non-Web-based, object-oriented computing. PMID:8880677

  19. LISA pathfinder optical interferometry

    NASA Astrophysics Data System (ADS)

    Braxmaier, Claus; Heinzel, Gerhard; Middleton, Kevin F.; Caldwell, Martin E.; Konrad, W.; Stockburger, H.; Lucarelli, S.; te Plate, Maurice B.; Wand, V.; Garcia, A. C.; Draaisma, F.; Pijnenburg, J.; Robertson, D. I.; Killow, Christian; Ward, Harry; Danzmann, Karsten; Johann, Ulrich A.

    2004-09-01

    The LISA Technology Package (LTP) aboard of LISA pathfinder mission is dedicated to demonstrate and verify key technologies for LISA, in particular drag free control, ultra-precise laser interferometry and gravitational sensor. Two inertial sensor, the optical interferometry in between combined with the dimensional stable Glass ceramic Zerodur structure are setting up the LTP. The validation of drag free operation of the spacecraft is planned by measuring laser interferometrically the relative displacement and tilt between two test masses (and the optical bench) with a noise levels of 10pm/√Hz and 10 nrad/√Hz between 3mHz and 30mHz. This performance and additionally overall environmental tests was currently verified on EM level. The OB structure is able to support two inertial sensors (≍17kg each) and to withstand 25 g design loads as well as 0...40°C temperature range. Optical functionality was verified successfully after environmental tests. The engineering model development and manufacturing of the optical bench and interferometry hardware and their verification tests will be presented.

  20. Using Java for distributed computing in the Gaia satellite data processing

    NASA Astrophysics Data System (ADS)

    O'Mullane, William; Luri, Xavier; Parsons, Paul; Lammers, Uwe; Hoar, John; Hernandez, Jose

    2011-10-01

    In recent years Java has matured to a stable easy-to-use language with the flexibility of an interpreter (for reflection etc.) but the performance and type checking of a compiled language. When we started using Java for astronomical applications around 1999 they were the first of their kind in astronomy. Now a great deal of astronomy software is written in Java as are many business applications. We discuss the current environment and trends concerning the language and present an actual example of scientific use of Java for high-performance distributed computing: ESA's mission Gaia. The Gaia scanning satellite will perform a galactic census of about 1,000 million objects in our galaxy. The Gaia community has chosen to write its processing software in Java. We explore the manifold reasons for choosing Java for this large science collaboration. Gaia processing is numerically complex but highly distributable, some parts being embarrassingly parallel. We describe the Gaia processing architecture and its realisation in Java. We delve into the astrometric solution which is the most advanced and most complex part of the processing. The Gaia simulator is also written in Java and is the most mature code in the system. This has been successfully running since about 2005 on the supercomputer "Marenostrum" in Barcelona. We relate experiences of using Java on a large shared machine. Finally we discuss Java, including some of its problems, for scientific computing.

  1. Late Holocene carbon and nitrogen input into the Java Sea recorded in sediment cores off rivers from Java and Kalimantan

    NASA Astrophysics Data System (ADS)

    Herbeck, Lucia; Kwiatkowski, Cornelia; Mohtadi, Mahyar; Jennerjahn, Tim

    2014-05-01

    Beginning a few thousand years ago, global climate and environmental change have become more and more affected by human activities. Hence, quantifying the 'human component' becomes increasingly important in order to predict future developments. Indonesia and the surrounding oceans are key in this respect, because it is in the region (i) that receives the highest inputs of water, sediment and associated dissolved and particulate substances and (ii) that suffers from anthropogenically modified landscapes and coastal zones. As opposing the global trend, land-based human activities have increased the sediment input into the ocean from Indonesia since pre-human times. Nevertheless, there are strong gradients in land use/cover and resulting river fluxes within Indonesia as, for example, between Java and Kalimantan. Major goal of this study is to identify the contribution of human activities in river catchments (i.e. land use/cover change, hydrological alterations) to gradients in carbon and nitrogen deposition in sediments of the Java Sea between densely populated Java and sparsely populated Kalimantan during the Late Holocene. We hypothesized that the riverine input of C and N increased during the late Holocene and increased more off Java than off Kalimantan. Sediment cores (80 to 130 cm long) off major river mouths from Java (2 cores off Bengawan Solo) and Kalimantan (1 core off Pembuang, 1 core off Jelai) were dated and analysed for Corg, Ntot, carbonate and stable isotope composition (δ13Corg, δ15N) in 3 cm intervals. Sedimentation rates off the Kalimantan rivers with 0.05-0.11 cm yr-1 were higher than off the Bengawan Solo, the largest river catchment on Java (<0.04 cm yr-1). Ntot contents in all sediment cores were low with ~0.07% and varied little over time. A higher Corg content, molar C/N ratio and variability over the past 5000 years in all parameters in the core closer to the river mouth off the Bengawan Solo than the one further offshore indicates that

  2. Formal Validation of Fault Management Design Solutions

    NASA Technical Reports Server (NTRS)

    Gibson, Corrina; Karban, Robert; Andolfato, Luigi; Day, John

    2013-01-01

    The work presented in this paper describes an approach used to develop SysML modeling patterns to express the behavior of fault protection, test the model's logic by performing fault injection simulations, and verify the fault protection system's logical design via model checking. A representative example, using a subset of the fault protection design for the Soil Moisture Active-Passive (SMAP) system, was modeled with SysML State Machines and JavaScript as Action Language. The SysML model captures interactions between relevant system components and system behavior abstractions (mode managers, error monitors, fault protection engine, and devices/switches). Development of a method to implement verifiable and lightweight executable fault protection models enables future missions to have access to larger fault test domains and verifiable design patterns. A tool-chain to transform the SysML model to jpf-Statechart compliant Java code and then verify the generated code via model checking was established. Conclusions and lessons learned from this work are also described, as well as potential avenues for further research and development.

  3. Implementation of BT, SP, LU, and FT of NAS Parallel Benchmarks in Java

    NASA Technical Reports Server (NTRS)

    Schultz, Matthew; Frumkin, Michael; Jin, Hao-Qiang; Yan, Jerry

    2000-01-01

    A number of Java features make it an attractive but a debatable choice for High Performance Computing. We have implemented benchmarks working on single structured grid BT,SP,LU and FT in Java. The performance and scalability of the Java code shows that a significant improvement in Java compiler technology and in Java thread implementation are necessary for Java to compete with Fortran in HPC applications.

  4. Distributed nuclear medicine applications using World Wide Web and Java technology.

    PubMed

    Knoll, P; Höll, K; Mirzaei, S; Koriska, K; Köhn, H

    2000-01-01

    At present, medical applications applying World Wide Web (WWW) technology are mainly used to view static images and to retrieve some information. The Java platform is a relative new way of computing, especially designed for network computing and distributed applications which enables interactive connection between user and information via the WWW. The Java 2 Software Development Kit (SDK) including Java2D API, Java Remote Method Invocation (RMI) technology, Object Serialization and the Java Advanced Imaging (JAI) extension was used to achieve a robust, platform independent and network centric solution. Medical image processing software based on this technology is presented and adequate performance capability of Java is demonstrated by an iterative reconstruction algorithm for single photon emission computerized tomography (SPECT).

  5. JPARSS: A Java Parallel Network Package for Grid Computing

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Chen, Jie; Akers, Walter; Chen, Ying

    2002-03-01

    The emergence of high speed wide area networks makes grid computinga reality. However grid applications that need reliable data transfer still have difficulties to achieve optimal TCP performance due to network tuning of TCP window size to improve bandwidth and to reduce latency on a high speed wide area network. This paper presents a Java package called JPARSS (Java Parallel Secure Stream (Socket)) that divides data into partitions that are sent over several parallel Java streams simultaneously and allows Java or Web applications to achieve optimal TCP performance in a grid environment without the necessity of tuning TCP window size.more » This package enables single sign-on, certificate delegation and secure or plain-text data transfer using several security components based on X.509 certificate and SSL. Several experiments will be presented to show that using Java parallelstreams is more effective than tuning TCP window size. In addition a simple architecture using Web services« less

  6. Grid resolution and solution convergence for Mars Pathfinder forebody

    NASA Technical Reports Server (NTRS)

    Nettelhorst, Heather L.; Mitcheltree, Robert A.

    1994-01-01

    As part of the Discovery Program, NASA Plans to launch a series of probes to Mars. The Mars Pathfinder project is the first of this series with a scheduled Mars arrival in July 1997. The entry vehicle will perform a direct entry into the atmosphere and deliver a lander to the surface. Predicting the entry vehicle's flight performance and designing the forebody heatshield requires knowledge of the expected aerothermodynamic environment. Much of this knowledge can be obtained through computational fluid dynamic (CFD) analysis.

  7. Instrumentation of Java Bytecode for Runtime Analysis

    NASA Technical Reports Server (NTRS)

    Goldberg, Allen; Haveland, Klaus

    2003-01-01

    This paper describes JSpy, a system for high-level instrumentation of Java bytecode and its use with JPaX, OUT system for runtime analysis of Java programs. JPaX monitors the execution of temporal logic formulas and performs predicative analysis of deadlocks and data races. JSpy s input is an instrumentation specification, which consists of a collection of rules, where a rule is a predicate/action pair The predicate is a conjunction of syntactic constraints on a Java statement, and the action is a description of logging information to be inserted in the bytecode corresponding to the statement. JSpy is built using JTrek an instrumentation package at a lower level of abstraction.

  8. Real-time Java for flight applications: an update

    NASA Technical Reports Server (NTRS)

    Dvorak, D.

    2003-01-01

    The RTSJ is a specification for supporting real-time execution in the Java programming language. The specification has been shaped by several guiding principles, particularly: predictable execution as the first priority in all tradeoffs, no syntactic extensions to Java, and backward compatibility.

  9. Sawja: Static Analysis Workshop for Java

    NASA Astrophysics Data System (ADS)

    Hubert, Laurent; Barré, Nicolas; Besson, Frédéric; Demange, Delphine; Jensen, Thomas; Monfort, Vincent; Pichardie, David; Turpin, Tiphaine

    Static analysis is a powerful technique for automatic verification of programs but raises major engineering challenges when developing a full-fledged analyzer for a realistic language such as Java. Efficiency and precision of such a tool rely partly on low level components which only depend on the syntactic structure of the language and therefore should not be redesigned for each implementation of a new static analysis. This paper describes the Sawja library: a static analysis workshop fully compliant with Java 6 which provides OCaml modules for efficiently manipulating Java bytecode programs. We present the main features of the library, including i) efficient functional data-structures for representing a program with implicit sharing and lazy parsing, ii) an intermediate stack-less representation, and iii) fast computation and manipulation of complete programs. We provide experimental evaluations of the different features with respect to time, memory and precision.

  10. Pathfinder, v6 n5, Sep/Oct 2008. Shielding Our Home and Nation

    DTIC Science & Technology

    2008-10-01

    Agency,Office of Corporate Communications,4600 Sangamore Road ,Bethesda,MD, 20816 -5003 8. PERFORMING ORGANIZATION REPORT NUMBER 9. SPONSORING/MONITORING... 20816 -5003 Telephone: (301) 227-7388, DSN 287-7388 E-mail: pathfinder@nga.mil Director Vice Adm. Robert B. Murrett, U.S. Navy Deputy Director

  11. Mars pathfinder lander deployment mechanisms

    NASA Technical Reports Server (NTRS)

    Gillis-Smith, Greg R.

    1996-01-01

    The Mars Pathfinder Lander employs numerous mechanisms, as well as autonomous mechanical functions, during its Entry, Descent and Landing (EDL) Sequence. This is the first US lander of its kind, since it is unguided and airbag-protected for hard landing using airbags, instead of retro rockets, to soft land. The arrival condition, location, and orientation of the Lander will only be known by the computer on the Lander. The Lander will then autonomously perform the appropriate sequence to retract the airbags, right itself, and open, such that the Lander is nearly level with no airbag material covering the solar cells. This function uses two different types of mechanisms - the Airbag Retraction Actuators and the Lander Petal Actuators - which are designed for the high torque, low temperature, dirty environment and for limited life application. The development of these actuators involved investigating low temperature lubrication, Electrical Discharge Machining (EDM) to cut gears, and gear design for limited life use.

  12. LISA Pathfinder Instrument Data Analysis

    NASA Technical Reports Server (NTRS)

    Guzman, Felipe

    2010-01-01

    LISA Pathfinder (LPF) is an ESA-launched demonstration mission of key technologies required for the joint NASA-ESA gravitational wave observatory in space, LISA. As part of the LPF interferometry investigations, analytic models of noise sources and corresponding noise subtraction techniques have been developed to correct for effects like the coupling of test mass jitter into displacement readout, and fluctuations of the laser frequency or optical pathlength difference. Ground testing of pre-flight hardware of the Optical Metrology subsystem is currently ongoing at the Albert Einstein Institute Hannover. In collaboration with NASA Goddard Space Flight Center, the LPF mission data analysis tool LTPDA is being used to analyze the data product of these tests. Furthermore, the noise subtraction techniques and in-flight experiment runs for noise characterization are being defined as part of the mission experiment master plan. We will present the data analysis outcome of preflight hardware ground tests and possible noise subtraction strategies for in-flight instrument operations.

  13. The r-Java 2.0 code: nuclear physics

    NASA Astrophysics Data System (ADS)

    Kostka, M.; Koning, N.; Shand, Z.; Ouyed, R.; Jaikumar, P.

    2014-08-01

    Aims: We present r-Java 2.0, a nucleosynthesis code for open use that performs r-process calculations, along with a suite of other analysis tools. Methods: Equipped with a straightforward graphical user interface, r-Java 2.0 is capable of simulating nuclear statistical equilibrium (NSE), calculating r-process abundances for a wide range of input parameters and astrophysical environments, computing the mass fragmentation from neutron-induced fission and studying individual nucleosynthesis processes. Results: In this paper we discuss enhancements to this version of r-Java, especially the ability to solve the full reaction network. The sophisticated fission methodology incorporated in r-Java 2.0 that includes three fission channels (beta-delayed, neutron-induced, and spontaneous fission), along with computation of the mass fragmentation, is compared to the upper limit on mass fission approximation. The effects of including beta-delayed neutron emission on r-process yield is studied. The role of Coulomb interactions in NSE abundances is shown to be significant, supporting previous findings. A comparative analysis was undertaken during the development of r-Java 2.0 whereby we reproduced the results found in the literature from three other r-process codes. This code is capable of simulating the physical environment of the high-entropy wind around a proto-neutron star, the ejecta from a neutron star merger, or the relativistic ejecta from a quark nova. Likewise the users of r-Java 2.0 are given the freedom to define a custom environment. This software provides a platform for comparing proposed r-process sites.

  14. Imager for Mars Pathfinder (IMP) image calibration

    USGS Publications Warehouse

    Reid, R.J.; Smith, P.H.; Lemmon, M.; Tanner, R.; Burkland, M.; Wegryn, E.; Weinberg, J.; Marcialis, R.; Britt, D.T.; Thomas, N.; Kramm, R.; Dummel, A.; Crowe, D.; Bos, B.J.; Bell, J.F.; Rueffer, P.; Gliem, F.; Johnson, J. R.; Maki, J.N.; Herkenhoff, K. E.; Singer, Robert B.

    1999-01-01

    The Imager for Mars Pathfinder returned over 16,000 high-quality images from the surface of Mars. The camera was well-calibrated in the laboratory, with <5% radiometric uncertainty. The photometric properties of two radiometric targets were also measured with 3% uncertainty. Several data sets acquired during the cruise and on Mars confirm that the system operated nominally throughout the course of the mission. Image calibration algorithms were developed for landed operations to correct instrumental sources of noise and to calibrate images relative to observations of the radiometric targets. The uncertainties associated with these algorithms as well as current improvements to image calibration are discussed. Copyright 1999 by the American Geophysical Union.

  15. Interactions of UNC-34 Enabled With Rac GTPases and the NIK Kinase MIG-15 in Caenorhabditis elegans Axon Pathfinding and Neuronal Migration

    PubMed Central

    Shakir, M. Afaq; Gill, Jason S.; Lundquist, Erik A.

    2006-01-01

    Many genes that affect axon pathfinding and cell migration have been identified. Mechanisms by which these genes and the molecules they encode interact with one another in pathways and networks to control developmental events are unclear. Rac GTPases, the cytoskeletal signaling molecule Enabled, and NIK kinase have all been implicated in regulating axon pathfinding and cell migration. Here we present evidence that, in Caenorhabditis elegans, three Rac GTPases, CED-10, RAC-2, and MIG-2, define three redundant pathways that each control axon pathfinding, and that the NIK kinase MIG-15 acts in each Rac pathway. Furthermore, we show that the Enabled molecule UNC-34 defines a fourth partially redundant pathway that acts in parallel to Rac/MIG-15 signaling in axon pathfinding. Enabled and the three Racs also act redundantly to mediate AQR and PQR neuronal cell migration. The Racs and UNC-34 Ena might all control the formation of actin-based protrusive structures (lamellipodia and filopodia) that mediate growth cone outgrowth and cell migration. MIG-15 does not act with the three Racs in execution of cell migration. Rather, MIG-15 affects direction of PQR neuronal migration, similar to UNC-40 and DPY-19, which control initial Q cell polarity, and Wnt signaling, which acts later to control Q cell-directed migration. MIG-2 Rac, which acts with CED-10 Rac, RAC-2 Rac, and UNC-34 Ena in axon pathfinding and cell migration, also acts with MIG-15 in PQR directional migration. PMID:16204220

  16. Prototyping Faithful Execution in a Java virtual machine.

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Tarman, Thomas David; Campbell, Philip LaRoche; Pierson, Lyndon George

    2003-09-01

    This report presents the implementation of a stateless scheme for Faithful Execution, the design for which is presented in a companion report, ''Principles of Faithful Execution in the Implementation of Trusted Objects'' (SAND 2003-2328). We added a simple cryptographic capability to an already simplified class loader and its associated Java Virtual Machine (JVM) to provide a byte-level implementation of Faithful Execution. The extended class loader and JVM we refer to collectively as the Sandia Faithfully Executing Java architecture (or JavaFE for short). This prototype is intended to enable exploration of more sophisticated techniques which we intend to implement in hardware.

  17. Creating Web-Based Scientific Applications Using Java Servlets

    NASA Technical Reports Server (NTRS)

    Palmer, Grant; Arnold, James O. (Technical Monitor)

    2001-01-01

    There are many advantages to developing web-based scientific applications. Any number of people can access the application concurrently. The application can be accessed from a remote location. The application becomes essentially platform-independent because it can be run from any machine that has internet access and can run a web browser. Maintenance and upgrades to the application are simplified since only one copy of the application exists in a centralized location. This paper details the creation of web-based applications using Java servlets. Java is a powerful, versatile programming language that is well suited to developing web-based programs. A Java servlet provides the interface between the central server and the remote client machines. The servlet accepts input data from the client, runs the application on the server, and sends the output back to the client machine. The type of servlet that supports the HTTP protocol will be discussed in depth. Among the topics the paper will discuss are how to write an http servlet, how the servlet can run applications written in Java and other languages, and how to set up a Java web server. The entire process will be demonstrated by building a web-based application to compute stagnation point heat transfer.

  18. HotJava: Sun's Animated Interactive World Wide Web Browser for the Internet.

    ERIC Educational Resources Information Center

    Machovec, George S., Ed.

    1995-01-01

    Examines HotJava and Java, World Wide Web technology for use on the Internet. HotJava, an interactive, animated Web browser, based on the object-oriented Java programming language, is different from HTML-based browsers such as Netscape. Its client/server design does not understand Internet protocols but can dynamically find what it needs to know.…

  19. MzJava: An open source library for mass spectrometry data processing.

    PubMed

    Horlacher, Oliver; Nikitin, Frederic; Alocci, Davide; Mariethoz, Julien; Müller, Markus; Lisacek, Frederique

    2015-11-03

    Mass spectrometry (MS) is a widely used and evolving technique for the high-throughput identification of molecules in biological samples. The need for sharing and reuse of code among bioinformaticians working with MS data prompted the design and implementation of MzJava, an open-source Java Application Programming Interface (API) for MS related data processing. MzJava provides data structures and algorithms for representing and processing mass spectra and their associated biological molecules, such as metabolites, glycans and peptides. MzJava includes functionality to perform mass calculation, peak processing (e.g. centroiding, filtering, transforming), spectrum alignment and clustering, protein digestion, fragmentation of peptides and glycans as well as scoring functions for spectrum-spectrum and peptide/glycan-spectrum matches. For data import and export MzJava implements readers and writers for commonly used data formats. For many classes support for the Hadoop MapReduce (hadoop.apache.org) and Apache Spark (spark.apache.org) frameworks for cluster computing was implemented. The library has been developed applying best practices of software engineering. To ensure that MzJava contains code that is correct and easy to use the library's API was carefully designed and thoroughly tested. MzJava is an open-source project distributed under the AGPL v3.0 licence. MzJava requires Java 1.7 or higher. Binaries, source code and documentation can be downloaded from http://mzjava.expasy.org and https://bitbucket.org/sib-pig/mzjava. This article is part of a Special Issue entitled: Computational Proteomics. Copyright © 2015 Elsevier B.V. All rights reserved.

  20. Tactical Applications (TACAPPS) JavaScript Framework Investigation

    DTIC Science & Technology

    2017-02-01

    frameworks explored were Angular JavaScript (AngularJS), jQuery UI, Meteor, Ember, React JavaScript (ReactJS) and Web Components. The team evaluated the...10 Issues and Risks 11 Web Components 11 Benefits 13 Issues and Risks 13 Conclusions 14 Bibliography 15 Distribution List 19...3 Basic Flux flow 10 4 Shadow DOM tree hierarchy 12 5 Web Components browser support 13 UNCLASSIFIED Approved for

  1. Petrographic and major elements results as indicator of the geothermal potential in Java

    NASA Astrophysics Data System (ADS)

    Indarto, S.; Setiawan, I.; Kausar, A.; Permana, dan H.

    2018-02-01

    Geothermal manifestations existed in West Java (Cilayu, Papandayan Mountain, Telagabodas, Karaha, Tampomas Mountain), Central Java (Slamet Mountain, Dieng) and East Java (Argopuro Mountain) show a difference in their mineral and geochemical compositions. The petrographic analysis of volcanic rocks from Garut (West Java) are basalt, andesite basaltic and andesite. However, based on SiO2 vs K2O value, those volcanic rocks have wide ranges of fractionated magma resulting basalt - basaltic andesite to dacitic in composition rather than those of Slamet Mountain, Dieng, and Argopuro Mountain areas which have a narrower range of fractionation magma resulting andesite basaltic and andesite in compositions. The volcanic rocks from Garut show tholeiitic affinity and calc-alkaline affinity. The geothermal potential of Java is assumed to be related to the magma fractionation level. Geothermal potential of West Java (Garut) is higher than that of Central Java (Slamet Mountain, Dieng) and East Java (Argopuro Mountain).

  2. Almost stochastic dominance for poverty level in Central Java Province

    NASA Astrophysics Data System (ADS)

    Slamet, Isnandar; Agus Wibowo, Aryanto; Roswitha, Mania

    2017-12-01

    The criteria for the domination of the distribution function has been used in the investment issues, momentum, agricultural production, and so on. One criteria of domination is stochastic dominance (SD). When this criteria is applied to the dominating area that has smaller value than the dominated area, then almost stochastic dominance (ASD) can be used. It this research, we apply the ASD criteria on data of expenditure per capita based on districts/cities in Central Java. Furthermore, we determine which year the expenditure per capita in the period 2009-2013 is the most dominating to know the level of poverty in Central Java. From the discussion, it can be concluded that the expenditure per capita in Central Java in 2013 dominates expenditure per capita in Central Java in 2009-2012. In other words, the level of poverty in Central Java in 2013 is lower than in 2009-2012.

  3. Java for flight software

    NASA Technical Reports Server (NTRS)

    Benowitz, E. G.; Niessner, A. F.

    2003-01-01

    We have successfully demonstrated a portion of the spacecraft attitude control and fault protection, running on a standard Java platform, and are currently in the process of taking advantage of the features provided by the RTSJ.

  4. JavaScript: Data Visualizations

    EPA Pesticide Factsheets

    D3 is a JavaScript library that, in a manner similar to jQuery library, allows direct inspection and manipulation of the Document Object Model, but is intended for the primary purpose of data visualization.

  5. The Twin Peaks in 3-D, as Viewed by the Mars Pathfinder IMP Camera

    NASA Image and Video Library

    1997-11-04

    Twin Peaks are modest-size hills to the southwest of NASA Mars Pathfinder landing site. They were discovered on the first panoramas taken by the IMP camera on the 4th of July, 1997. 3D glasses are necessary to identify surface detail.

  6. Java Performance for Scientific Applications on LLNL Computer Systems

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Kapfer, C; Wissink, A

    2002-05-10

    Languages in use for high performance computing at the laboratory--Fortran (f77 and f90), C, and C++--have many years of development behind them and are generally considered the fastest available. However, Fortran and C do not readily extend to object-oriented programming models, limiting their capability for very complex simulation software. C++ facilitates object-oriented programming but is a very complex and error-prone language. Java offers a number of capabilities that these other languages do not. For instance it implements cleaner (i.e., easier to use and less prone to errors) object-oriented models than C++. It also offers networking and security as part ofmore » the language standard, and cross-platform executables that make it architecture neutral, to name a few. These features have made Java very popular for industrial computing applications. The aim of this paper is to explain the trade-offs in using Java for large-scale scientific applications at LLNL. Despite its advantages, the computational science community has been reluctant to write large-scale computationally intensive applications in Java due to concerns over its poor performance. However, considerable progress has been made over the last several years. The Java Grande Forum [1] has been promoting the use of Java for large-scale computing. Members have introduced efficient array libraries, developed fast just-in-time (JIT) compilers, and built links to existing packages used in high performance parallel computing.« less

  7. Trio combines with dock to regulate Pak activity during photoreceptor axon pathfinding in Drosophila.

    PubMed

    Newsome, T P; Schmidt, S; Dietzl, G; Keleman, K; Asling, B; Debant, A; Dickson, B J

    2000-04-28

    Correct pathfinding by Drosophila photoreceptor axons requires recruitment of p21-activated kinase (Pak) to the membrane by the SH2-SH3 adaptor Dock. Here, we identify the guanine nucleotide exchange factor (GEF) Trio as another essential component in photoreceptor axon guidance. Regulated exchange activity of one of the two Trio GEF domains is critical for accurate pathfinding. This GEF domain activates Rac, which in turn activates Pak. Mutations in trio result in projection defects similar to those observed in both Pak and dock mutants, and trio interacts genetically with Rac, Pak, and dock. These data define a signaling pathway from Trio to Rac to Pak that links guidance receptors to the growth cone cytoskeleton. We propose that distinct signals transduced via Trio and Dock act combinatorially to activate Pak in spatially restricted domains within the growth cone, thereby controlling the direction of axon extension.

  8. Do Integrated Children's Services Improve Children's Outcomes?: Evidence from England's Children's Trust Pathfinders

    ERIC Educational Resources Information Center

    O'Brien, Margaret; Bachmann, Max O.; Jones, Natalia R.; Reading, Richard; Thoburn, June; Husbands, Chris; Shreeve, Ann; Watson, Jacqueline

    2009-01-01

    Thirty-five children's trust pathfinders, local cross-sector partnerships, were introduced across England in 2003 to promote greater integration in children's services. Using administrative performance data, this paper tracks yearly trends in child service outputs and child well-being outcomes from 1997 to 2004 in these local areas, including the…

  9. Development of a Web-Based Distributed Interactive Simulation (DIS) Environment Using JavaScript

    DTIC Science & Technology

    2014-09-01

    scripting that let users change or interact with web content depending on user input, which is in contrast with server-side scripts such as PHP, Java and...transfer, DIS usually broadcasts or multicasts its PDUs based on UDP socket. 3. JavaScript JavaScript is the scripting language of the web, and all...IDE) for developing desktop, mobile and web applications with JAVA , C++, HTML5, JavaScript and more. b. Framework The DIS implementation of

  10. An efficient framework for Java data processing systems in HPC environments

    NASA Astrophysics Data System (ADS)

    Fries, Aidan; Castañeda, Javier; Isasi, Yago; Taboada, Guillermo L.; Portell de Mora, Jordi; Sirvent, Raül

    2011-11-01

    Java is a commonly used programming language, although its use in High Performance Computing (HPC) remains relatively low. One of the reasons is a lack of libraries offering specific HPC functions to Java applications. In this paper we present a Java-based framework, called DpcbTools, designed to provide a set of functions that fill this gap. It includes a set of efficient data communication functions based on message-passing, thus providing, when a low latency network such as Myrinet is available, higher throughputs and lower latencies than standard solutions used by Java. DpcbTools also includes routines for the launching, monitoring and management of Java applications on several computing nodes by making use of JMX to communicate with remote Java VMs. The Gaia Data Processing and Analysis Consortium (DPAC) is a real case where scientific data from the ESA Gaia astrometric satellite will be entirely processed using Java. In this paper we describe the main elements of DPAC and its usage of the DpcbTools framework. We also assess the usefulness and performance of DpcbTools through its performance evaluation and the analysis of its impact on some DPAC systems deployed in the MareNostrum supercomputer (Barcelona Supercomputing Center).

  11. Free-Suspension Residual Flexibility Testing of Space Station Pathfinder: Comparison to Fixed-Base Results

    NASA Technical Reports Server (NTRS)

    Tinker, Michael L.

    1998-01-01

    Application of the free-suspension residual flexibility modal test method to the International Space Station Pathfinder structure is described. The Pathfinder, a large structure of the general size and weight of Space Station module elements, was also tested in a large fixed-base fixture to simulate Shuttle Orbiter payload constraints. After correlation of the Pathfinder finite element model to residual flexibility test data, the model was coupled to a fixture model, and constrained modes and frequencies were compared to fixed-base test. modes. The residual flexibility model compared very favorably to results of the fixed-base test. This is the first known direct comparison of free-suspension residual flexibility and fixed-base test results for a large structure. The model correlation approach used by the author for residual flexibility data is presented. Frequency response functions (FRF) for the regions of the structure that interface with the environment (a test fixture or another structure) are shown to be the primary tools for model correlation that distinguish or characterize the residual flexibility approach. A number of critical issues related to use of the structure interface FRF for correlating the model are then identified and discussed, including (1) the requirement of prominent stiffness lines, (2) overcoming problems with measurement noise which makes the antiresonances or minima in the functions difficult to identify, and (3) the use of interface stiffness and lumped mass perturbations to bring the analytical responses into agreement with test data. It is shown that good comparison of analytical-to-experimental FRF is the key to obtaining good agreement of the residual flexibility values.

  12. JSME: a free molecule editor in JavaScript.

    PubMed

    Bienfait, Bruno; Ertl, Peter

    2013-01-01

    A molecule editor, i.e. a program facilitating graphical input and interactive editing of molecules, is an indispensable part of every cheminformatics or molecular processing system. Today, when a web browser has become the universal scientific user interface, a tool to edit molecules directly within the web browser is essential. One of the most popular tools for molecular structure input on the web is the JME applet. Since its release nearly 15 years ago, however the web environment has changed and Java applets are facing increasing implementation hurdles due to their maintenance and support requirements, as well as security issues. This prompted us to update the JME editor and port it to a modern Internet programming language - JavaScript. The actual molecule editing Java code of the JME editor was translated into JavaScript with help of the Google Web Toolkit compiler and a custom library that emulates a subset of the GUI features of the Java runtime environment. In this process, the editor was enhanced by additional functionalities including a substituent menu, copy/paste, drag and drop and undo/redo capabilities and an integrated help. In addition to desktop computers, the editor supports molecule editing on touch devices, including iPhone, iPad and Android phones and tablets. In analogy to JME the new editor is named JSME. This new molecule editor is compact, easy to use and easy to incorporate into web pages. A free molecule editor written in JavaScript was developed and is released under the terms of permissive BSD license. The editor is compatible with JME, has practically the same user interface as well as the web application programming interface. The JSME editor is available for download from the project web page http://peter-ertl.com/jsme/

  13. The Mars Pathfinder Mission and Science Results

    NASA Technical Reports Server (NTRS)

    Golombek, M. P.

    1999-01-01

    Mars Pathfinder, the first low-cost, quick Discovery class mission to be completed, successfully landed on the surface of Mars on July 4, 1997, deployed and navigated a small rover, and collected data from 3 science instruments and 10 technology experiments. The mission operated on Mars for 3 months and returned 2.3 Gbits of new data, including over 16,500 lander and 550 rover images, 16 chemical analyses of rocks and soil, and 8.5 million individual temperature, pressure and wind measurements. The rover traversed 100 m clockwise around the lander, exploring about 200 square meters of the surface. The mission captured the imagination of the public, and garnered front page headlines during the first week. A total of about 566 million internet "hits" were registered during the first month of the mission, with 47 million "hits" on July 8th alone, making the Pathfinder landing by far the largest internet event in history at the time. Pathfinder was the first mission to deploy a rover on Mars. It carried a chemical analysis instrument, to characterize the rocks and soils in a landing area over hundreds of square meters on Mars, which provided a calibration point or "ground truth" for orbital remote sensing observations. The combination of spectral imaging of the landing area by the lander camera, chemical analyses aboard the rover, and close-up imaging of colors, textures and fabrics with the rover cameras offered the potential of identifying rocks (petrology and mineralogy). With this payload, a landing site in Ares Vallis was selected because it appeared acceptably safe and offered the prospect of analyzing a variety of rock types expected to be deposited by catastrophic floods, which enabled addressing first-order scientific questions such as differentiation of the crust, the development of weathering products, and the nature of the early Martian environment and its subsequent evolution. The 3 instruments and rover allowed seven areas of scientific investigation: the

  14. Dynamic Learning Objects to Teach Java Programming Language

    ERIC Educational Resources Information Center

    Narasimhamurthy, Uma; Al Shawkani, Khuloud

    2010-01-01

    This article describes a model for teaching Java Programming Language through Dynamic Learning Objects. The design of the learning objects was based on effective learning design principles to help students learn the complex topic of Java Programming. Visualization was also used to facilitate the learning of the concepts. (Contains 1 figure and 2…

  15. Java: A New Brew for Educators, Administrators and Students.

    ERIC Educational Resources Information Center

    Gordon, Barbara

    1996-01-01

    Java is an object-oriented programming language developed by Sun Microsystems; its benefits include platform independence, security, and interactivity. Within the college community, Java is being used in programming courses, collaborative technology research projects, computer graphics instruction, and distance education. (AEF)

  16. FastScript3D - A Companion to Java 3D

    NASA Technical Reports Server (NTRS)

    Koenig, Patti

    2005-01-01

    FastScript3D is a computer program, written in the Java 3D(TM) programming language, that establishes an alternative language that helps users who lack expertise in Java 3D to use Java 3D for constructing three-dimensional (3D)-appearing graphics. The FastScript3D language provides a set of simple, intuitive, one-line text-string commands for creating, controlling, and animating 3D models. The first word in a string is the name of a command; the rest of the string contains the data arguments for the command. The commands can also be used as an aid to learning Java 3D. Developers can extend the language by adding custom text-string commands. The commands can define new 3D objects or load representations of 3D objects from files in formats compatible with such other software systems as X3D. The text strings can be easily integrated into other languages. FastScript3D facilitates communication between scripting languages [which enable programming of hyper-text markup language (HTML) documents to interact with users] and Java 3D. The FastScript3D language can be extended and customized on both the scripting side and the Java 3D side.

  17. Enhancing Web applications in radiology with Java: estimating MR imaging relaxation times.

    PubMed

    Dagher, A P; Fitzpatrick, M; Flanders, A E; Eng, J

    1998-01-01

    Java is a relatively new programming language that has been used to develop a World Wide Web-based tool for estimating magnetic resonance (MR) imaging relaxation times, thereby demonstrating how Java may be used for Web-based radiology applications beyond improving the user interface of teaching files. A standard processing algorithm coded with Java is downloaded along with the hypertext markup language (HTML) document. The user (client) selects the desired pulse sequence and inputs data obtained from a region of interest on the MR images. The algorithm is used to modify selected MR imaging parameters in an equation that models the phenomenon being evaluated. MR imaging relaxation times are estimated, and confidence intervals and a P value expressing the accuracy of the final results are calculated. Design features such as simplicity, object-oriented programming, and security restrictions allow Java to expand the capabilities of HTML by offering a more versatile user interface that includes dynamic annotations and graphics. Java also allows the client to perform more sophisticated information processing and computation than is usually associated with Web applications. Java is likely to become a standard programming option, and the development of stand-alone Java applications may become more common as Java is integrated into future versions of computer operating systems.

  18. Conversion of the agent-oriented domain-specific language ALAS into JavaScript

    NASA Astrophysics Data System (ADS)

    Sredojević, Dejan; Vidaković, Milan; Okanović, Dušan; Mitrović, Dejan; Ivanović, Mirjana

    2016-06-01

    This paper shows generation of JavaScript code from code written in agent-oriented domain-specific language ALAS. ALAS is an agent-oriented domain-specific language for writing software agents that are executed within XJAF middleware. Since the agents can be executed on various platforms, they must be converted into a language of the target platform. We also try to utilize existing tools and technologies to make the whole conversion process as simple as possible, as well as faster and more efficient. We use the Xtext framework that is compatible with Java to implement ALAS infrastructure - editor and code generator. Since Xtext supports Java, generation of Java code from ALAS code is straightforward. To generate a JavaScript code that will be executed within the target JavaScript XJAF implementation, Google Web Toolkit (GWT) is used.

  19. Modular VO oriented Java EE service deployer

    NASA Astrophysics Data System (ADS)

    Molinaro, Marco; Cepparo, Francesco; De Marco, Marco; Knapic, Cristina; Apollo, Pietro; Smareglia, Riccardo

    2014-07-01

    The International Virtual Observatory Alliance (IVOA) has produced many standards and recommendations whose aim is to generate an architecture that starts from astrophysical resources, in a general sense, and ends up in deployed consumable services (that are themselves astrophysical resources). Focusing on the Data Access Layer (DAL) system architecture, that these standards define, in the last years a web based application has been developed and maintained at INAF-OATs IA2 (Italian National institute for Astrophysics - Astronomical Observatory of Trieste, Italian center of Astronomical Archives) to try to deploy and manage multiple VO (Virtual Observatory) services in a uniform way: VO-Dance. However a set of criticalities have arisen since when the VO-Dance idea has been produced, plus some major changes underwent and are undergoing at the IVOA DAL layer (and related standards): this urged IA2 to identify a new solution for its own service layer. Keeping on the basic ideas from VO-Dance (simple service configuration, service instantiation at call time and modularity) while switching to different software technologies (e.g. dismissing Java Reflection in favour of Enterprise Java Bean, EJB, based solution), the new solution has been sketched out and tested for feasibility. Here we present the results originating from this test study. The main constraints for this new project come from various fields. A better homogenized solution rising from IVOA DAL standards: for example the new DALI (Data Access Layer Interface) specification that acts as a common interface system for previous and oncoming access protocols. The need for a modular system where each component is based upon a single VO specification allowing services to rely on common capabilities instead of homogenizing them inside service components directly. The search for a scalable system that takes advantage from distributed systems. The constraints find answer in the adopted solutions hereafter sketched. The

  20. Java for flight software

    NASA Technical Reports Server (NTRS)

    Benowitz, E.; Niessner, A.

    2003-01-01

    This work involves developing representative mission-critical spacecraft software using the Real-Time Specification for Java (RTSJ). This work currently leverages actual flight software used in the design of actual flight software in the NASA's Deep Space 1 (DSI), which flew in 1998.

  1. JavaGenes: Evolving Graphs with Crossover

    NASA Technical Reports Server (NTRS)

    Globus, Al; Atsatt, Sean; Lawton, John; Wipke, Todd

    2000-01-01

    Genetic algorithms usually use string or tree representations. We have developed a novel crossover operator for a directed and undirected graph representation, and used this operator to evolve molecules and circuits. Unlike strings or trees, a single point in the representation cannot divide every possible graph into two parts, because graphs may contain cycles. Thus, the crossover operator is non-trivial. A steady-state, tournament selection genetic algorithm code (JavaGenes) was written to implement and test the graph crossover operator. All runs were executed by cycle-scavagging on networked workstations using the Condor batch processing system. The JavaGenes code has evolved pharmaceutical drug molecules and simple digital circuits. Results to date suggest that JavaGenes can evolve moderate sized drug molecules and very small circuits in reasonable time. The algorithm has greater difficulty with somewhat larger circuits, suggesting that directed graphs (circuits) are more difficult to evolve than undirected graphs (molecules), although necessary differences in the crossover operator may also explain the results. In principle, JavaGenes should be able to evolve other graph-representable systems, such as transportation networks, metabolic pathways, and computer networks. However, large graphs evolve significantly slower than smaller graphs, presumably because the space-of-all-graphs explodes combinatorially with graph size. Since the representation strongly affects genetic algorithm performance, adding graphs to the evolutionary programmer's bag-of-tricks should be beneficial. Also, since graph evolution operates directly on the phenotype, the genotype-phenotype translation step, common in genetic algorithm work, is eliminated.

  2. The concept of geothermal exploration in west Java based on geophysical data

    NASA Astrophysics Data System (ADS)

    Gaffar, Eddy Z.

    2018-02-01

    Indonesia has the largest geothermal prospects in the world and most of them are concentrated in Java and Sumatera. The ones on Sumatra island are generally controlled by Sumatra Fault, either the main fault or the second and the third order fault. Geothermal in Java is still influenced by the subduction of oceanic plates from the south of Java island that forms the southern mountains extending from West Java to East Java. From a geophysical point of view, there is still no clue or concept that accelerates the process of geothermal exploration. The concept is that geothermal is located around the volcano (referred to the volcano as a host) and around the fault (fault as a host). There is another method from remote sensing analysis that often shows circular feature. In a study conducted by LIPI, we proposed a new concept for geothermal exploration which is from gravity analysis using Bouguer anomaly data from Java Island, which also show circular feature. The feature is supposed to be an "ancient crater" or a hidden caldera. Therefore, with this hypothesis, LIPI Geophysics team will try to prove whether this symptom can help accelerate the process of geothermal exploration on the island of West Java. Geophysical methods might simplify the exploration of geothermal prospect in West Java. Around the small circular feature, there are some large geothermal prospect areas such as Guntur, Kamojang, Drajat, Papandayan, Karaha Bodas, Patuha. The concept proposed by our team will try be applied to explore geothermal in Java Island for future work.

  3. Is it feasible to pool funds for local children's services in England? Evidence from the national evaluation of children's trust pathfinders.

    PubMed

    Lorgelly, Paula; Bachmann, Max; Shreeve, Ann; Reading, Richard; Thorburn, June; Mugford, Miranda; O'Brien, Margaret; Husbands, Chris

    2009-01-01

    To describe how funds were pooled or otherwise jointly managed by National Health Service (NHS) primary care trusts and local authorities in England. To compare expenditure on local children's services by health, education and social services. We conducted a questionnaire survey of all 35 children's trust pathfinders, six months after they were launched, with a follow-up at 2.5 years. We also undertook an in-depth analysis of local authorities and primary care trusts, within eight pathfinder areas and three non-pathfinder areas, whereby we compared expenditure on children's services, interviewed managers and professionals and examined financial documents. Local authorities and NHS trusts coordinated expenditure in various ways, most commonly through informal agreements and aligning budgets but also by formally pooling budgets. The latter were usually for selected services such as child and adolescent mental health services, though four children's trusts pathfinders pooled (or aligned) their budgets for all children's services. Total expenditure per child was greatest for education, lowest for social services and intermediate for health. However, it was difficult to quantify education expenditure on children with health and social care needs, and health care expenditure on children. Sharing money for local children's services requires shared objectives, trust, and legal and accounting expertise. Several different mechanisms are permitted and many are feasible but programme budgeting for children's services could make them more effective.

  4. A Telemetry Browser Built with Java Components

    NASA Astrophysics Data System (ADS)

    Poupart, E.

    In the context of CNES balloon scientific campaigns and telemetry survey field, a generic telemetry processing product, called TelemetryBrowser in the following, was developed reusing COTS, Java Components for most of them. Connection between those components relies on a software architecture based on parameter producers and parameter consumers. The first one transmit parameter values to the second one which has registered to it. All of those producers and consumers can be spread over the network thanks to Corba, and over every kind of workstation thanks to Java. This gives a very powerful mean to adapt to constraints like network bandwidth, or workstations processing or memory. It's also very useful to display and correlate at the same time information coming from multiple and various sources. An important point of this architecture is that the coupling between parameter producers and parameter consumers is reduced to the minimum and that transmission of information on the network is made asynchronously. So, if a parameter consumer goes down or runs slowly, there is no consequence on the other consumers, because producers don't wait for their consumers to finish their data processing before sending it to other consumers. An other interesting point is that parameter producers, also called TelemetryServers in the following are generated nearly automatically starting from a telemetry description using Flavori component. Keywords Java components, Corba, distributed application, OpenORBii, software reuse, COTS, Internet, Flavor. i Flavor (Formal Language for Audio-Visual Object Representation) is an object-oriented media representation language being developed at Columbia University. It is designed as an extension of Java and C++ and simplifies the development of applications that involve a significant media processing component (encoding, decoding, editing, manipulation, etc.) by providing bitstream representation semantics. (flavor.sourceforge.net) ii Open

  5. Charge-Induced Force Noise on Free-Falling Test Masses: Results from LISA Pathfinder

    NASA Astrophysics Data System (ADS)

    Armano, M.; Audley, H.; Auger, G.; Baird, J. T.; Binetruy, P.; Born, M.; Bortoluzzi, D.; Brandt, N.; Bursi, A.; Caleno, M.; Cavalleri, A.; Cesarini, A.; Cruise, M.; Danzmann, K.; de Deus Silva, M.; Diepholz, I.; Dolesi, R.; Dunbar, N.; Ferraioli, L.; Ferroni, V.; Fitzsimons, E. D.; Flatscher, R.; Freschi, M.; Gallegos, J.; García Marirrodriga, C.; Gerndt, R.; Gesa, L.; Gibert, F.; Giardini, D.; Giusteri, R.; Grimani, C.; Grzymisch, J.; Harrison, I.; Heinzel, G.; Hewitson, M.; Hollington, D.; Hueller, M.; Huesler, J.; Inchauspé, H.; Jennrich, O.; Jetzer, P.; Johlander, B.; Karnesis, N.; Kaune, B.; Killow, C. J.; Korsakova, N.; Lloro, I.; Liu, L.; López-Zaragoza, J. P.; Maarschalkerweerd, R.; Madden, S.; Mance, D.; Martín, V.; Martin-Polo, L.; Martino, J.; Martin-Porqueras, F.; Mateos, I.; McNamara, P. W.; Mendes, J.; Mendes, L.; Moroni, A.; Nofrarias, M.; Paczkowski, S.; Perreur-Lloyd, M.; Petiteau, A.; Pivato, P.; Plagnol, E.; Prat, P.; Ragnit, U.; Ramos-Castro, J.; Reiche, J.; Romera Perez, J. A.; Robertson, D. I.; Rozemeijer, H.; Rivas, F.; Russano, G.; Sarra, P.; Schleicher, A.; Slutsky, J.; Sopuerta, C.; Sumner, T. J.; Texier, D.; Thorpe, J. I.; Trenkel, C.; Vetrugno, D.; Vitale, S.; Wanner, G.; Ward, H.; Wass, P. J.; Wealthy, D.; Weber, W. J.; Wittchen, A.; Zanoni, C.; Ziegler, T.; Zweifel, P.; LISA Pathfinder Collaboration

    2017-04-01

    We report on electrostatic measurements made on board the European Space Agency mission LISA Pathfinder. Detailed measurements of the charge-induced electrostatic forces exerted on free-falling test masses (TMs) inside the capacitive gravitational reference sensor are the first made in a relevant environment for a space-based gravitational wave detector. Employing a combination of charge control and electric-field compensation, we show that the level of charge-induced acceleration noise on a single TM can be maintained at a level close to 1.0 fm s-2 Hz-1 /2 across the 0.1-100 mHz frequency band that is crucial to an observatory such as the Laser Interferometer Space Antenna (LISA). Using dedicated measurements that detect these effects in the differential acceleration between the two test masses, we resolve the stochastic nature of the TM charge buildup due to interplanetary cosmic rays and the TM charge-to-force coupling through stray electric fields in the sensor. All our measurements are in good agreement with predictions based on a relatively simple electrostatic model of the LISA Pathfinder instrument.

  6. Pathfinder Atomic Power Plant Nozzle Galling Test, Final Report

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    None, None

    1961-12-29

    Galling tests of 304, 17-4PH, and chrome-plated 304 stainless-steel nozzles with 304 stainless-steel sleeves were conducted at Pathflnder reactor conditions of 480 deg F, 600 psig. A horizontal force was imposed on the sleeve with the nozzle inserted; and the nozzle was moved axially to determine galling tendencies. Galling was produced on both the 304 and 17-4PH stainless-steel nozzles. The chrome-plated 304-stainless-steel nozzles were cycled numerous times without galling. On the basis of these tests, chrome-plated 304-stainless- steel is the material selected for the Pathfinder boiler fuel-element nozzle.

  7. Charge Management in LISA Pathfinder: The Continuous Discharging Experiment

    NASA Astrophysics Data System (ADS)

    Ewing, Becca Elizabeth

    2018-01-01

    Test mass charging is a significant source of excess force and force noise in LISA Pathfinder (LPF). The planned design scheme for mitigation of charge induced force noise in LISA is a continuous discharge by UV light illumination. We report on analysis of a charge management experiment on-board LPF conducted during December 2016. We discuss the measurement of test mass charging noise with and without continuous UV illumination, in addition to the dynamic response in the continuous discharge scheme. Results of the continuous discharge system will be discussed for their application to operating LISA with lower test mass charge.

  8. Scientific Programming Using Java: A Remote Sensing Example

    NASA Technical Reports Server (NTRS)

    Prados, Don; Mohamed, Mohamed A.; Johnson, Michael; Cao, Changyong; Gasser, Jerry

    1999-01-01

    This paper presents results of a project to port remote sensing code from the C programming language to Java. The advantages and disadvantages of using Java versus C as a scientific programming language in remote sensing applications are discussed. Remote sensing applications deal with voluminous data that require effective memory management, such as buffering operations, when processed. Some of these applications also implement complex computational algorithms, such as Fast Fourier Transformation analysis, that are very performance intensive. Factors considered include performance, precision, complexity, rapidity of development, ease of code reuse, ease of maintenance, memory management, and platform independence. Performance of radiometric calibration code written in Java for the graphical user interface and of using C for the domain model are also presented.

  9. Experience in the application of Java Technologies in telemedicine

    PubMed Central

    Fedyukin, IV; Reviakin, YG; Orlov, OI; Doarn, CR; Harnett, BM; Merrell, RC

    2002-01-01

    Java language has been demonstrated to be an effective tool in supporting medical image viewing in Russia. This evaluation was completed by obtaining a maximum of 20 images, depending on the client's computer workstation from one patient using a commercially available computer tomography (CT) scanner. The images were compared against standard CT images that were viewed at the site of capture. There was no appreciable difference. The client side is a lightweight component that provides an intuitive interface for end users. Each image is loaded in its own thread and the user can begin work after the first image has been loaded. This feature is especially useful on slow connection speed, 9.6 Kbps for example. The server side, which is implemented by the Java Servlet Engine works more effective than common gateway interface (CGI) programs do. Advantages of the Java Technology place this program on the next level of application development. This paper presents a unique application of Java in telemedicine. PMID:12459045

  10. Experience in the application of Java Technologies in telemedicine.

    PubMed

    Fedyukin, IV; Reviakin, YG; Orlov, OI; Doarn, CR; Harnett, BM; Merrell, RC

    2002-09-17

    Java language has been demonstrated to be an effective tool in supporting medical image viewing in Russia. This evaluation was completed by obtaining a maximum of 20 images, depending on the client's computer workstation from one patient using a commercially available computer tomography (CT) scanner. The images were compared against standard CT images that were viewed at the site of capture. There was no appreciable difference. The client side is a lightweight component that provides an intuitive interface for end users. Each image is loaded in its own thread and the user can begin work after the first image has been loaded. This feature is especially useful on slow connection speed, 9.6 Kbps for example. The server side, which is implemented by the Java Servlet Engine works more effective than common gateway interface (CGI) programs do. Advantages of the Java Technology place this program on the next level of application development. This paper presents a unique application of Java in telemedicine.

  11. Petroleum systems of the Northwest Java Province, Java and offshore southeast Sumatra, Indonesia

    USGS Publications Warehouse

    Bishop, Michele G.

    2000-01-01

    Mature, synrift lacustrine shales of Eocene to Oligocene age and mature, late-rift coals and coaly shales of Oligocene to Miocene age are source rocks for oil and gas in two important petroleum systems of the onshore and offshore areas of the Northwest Java Basin. Biogenic gas and carbonate-sourced gas have also been identified. These hydrocarbons are trapped primarily in anticlines and fault blocks involving sandstone and carbonate reservoirs. These source rocks and reservoir rocks were deposited in a complex of Tertiary rift basins formed from single or multiple half-grabens on the south edge of the Sunda Shelf plate. The overall transgressive succession was punctuated by clastic input from the exposed Sunda Shelf and marine transgressions from the south. The Northwest Java province may contain more than 2 billion barrels of oil equivalent in addition to the 10 billion barrels of oil equivalent already identified.

  12. Pathfinder. Volume 8, Number 3, May/June 2010. Technology - Rendering an Ever-Clearer Picture

    DTIC Science & Technology

    2010-06-01

    Agency,Office of Corporate Communications,4600 Sangamore Road, Mail Stop D-54,Bethesda,MD, 20816 -5003 8. PERFORMING ORGANIZATION REPORT NUMBER 9...Bethesda, MD 20816 -5003 Telephone: (301) 227-7388, DSN 287-7388 E-mail: pathfinder@nga.mil Director Vice Adm. Robert B. Murrett, U.S. Navy Deputy

  13. Infrastructure for Rapid Development of Java GUI Programs

    NASA Technical Reports Server (NTRS)

    Jones, Jeremy; Hostetter, Carl F.; Wheeler, Philip

    2006-01-01

    The Java Application Shell (JAS) is a software framework that accelerates the development of Java graphical-user-interface (GUI) application programs by enabling the reuse of common, proven GUI elements, as distinguished from writing custom code for GUI elements. JAS is a software infrastructure upon which Java interactive application programs and graphical user interfaces (GUIs) for those programs can be built as sets of plug-ins. JAS provides an application- programming interface that is extensible by application-specific plugins that describe and encapsulate both specifications of a GUI and application-specific functionality tied to the specified GUI elements. The desired GUI elements are specified in Extensible Markup Language (XML) descriptions instead of in compiled code. JAS reads and interprets these descriptions, then creates and configures a corresponding GUI from a standard set of generic, reusable GUI elements. These elements are then attached (again, according to the XML descriptions) to application-specific compiled code and scripts. An application program constructed by use of JAS as its core can be extended by writing new plug-ins and replacing existing plug-ins. Thus, JAS solves many problems that Java programmers generally solve anew for each project, thereby reducing development and testing time.

  14. A Java-Enabled Interactive Graphical Gas Turbine Propulsion System Simulator

    NASA Technical Reports Server (NTRS)

    Reed, John A.; Afjeh, Abdollah A.

    1997-01-01

    This paper describes a gas turbine simulation system which utilizes the newly developed Java language environment software system. The system provides an interactive graphical environment which allows the quick and efficient construction and analysis of arbitrary gas turbine propulsion systems. The simulation system couples a graphical user interface, developed using the Java Abstract Window Toolkit, and a transient, space- averaged, aero-thermodynamic gas turbine analysis method, both entirely coded in the Java language. The combined package provides analytical, graphical and data management tools which allow the user to construct and control engine simulations by manipulating graphical objects on the computer display screen. Distributed simulations, including parallel processing and distributed database access across the Internet and World-Wide Web (WWW), are made possible through services provided by the Java environment.

  15. Mars Pathfinder Landing Site Workshop 2: Characteristics of the Ares Vallis Region and Field Trips in the Channeled Scabland, Washington

    NASA Technical Reports Server (NTRS)

    Golombek, M. P. (Editor); Edgett, K. S. (Editor); Rice, J. W. , Jr. (Editor)

    1995-01-01

    Mars Pathfinder will place a single lander on the surface of Mars on July 4, 1997, following a December 1996 launch. As a result of the very successful first Mars Pathfinder Landing Site Workshop, the project has selected the Ares Vallis outflow channel in Chryse Planitia as the landing site. This location is where a large catastrophic outflow channel debouches into the northern lowlands. A second workshop and series of field trips, entitled Mars Pathfinder Landing Site Workshop 2: Characteristics of the Ares Vallis Region and Field Trips in the Channeled Scabland, Washington, were held in Spokane and Moses Lake, Washington. The purpose of the workshop was to provide a focus for learning as much as possible about the Ares Vallis region on Mars before landing there. The rationale is that the more that can be learned about the general area prior to landing, the better scientists will be able interpret the observations made by the lander and rover and place them in the proper geologic context. The field trip included overflights and surface investigations of the Channeled Scabland (an Earth analog for the martian catastrophic outflow channels), focusing on areas particularly analogous to Ares Vallis and the landing site. The overflights were essential for placing the enormous erosional and depositional features of the Channeled Scabland into proper three-dimensional context. The field trips were a joint educational outreach activity involving K-12 science educators, Mars Pathfinder scientists and engineers, and interested scientists from the Mars scientific community. Part 1 of the technical report on this workshop includes a description of the Mars Pathfinder mission, abstracts accepted for presentation at the workshop, an introduction to the Channeled Scabland, and field trip guides for the overflight and two field trips. This part, Part 2, includes the program for the workshop, summaries of the workshop technical sessions, a summary of the field trips and ensuing

  16. Sequence alignment visualization in HTML5 without Java.

    PubMed

    Gille, Christoph; Birgit, Weyand; Gille, Andreas

    2014-01-01

    Java has been extensively used for the visualization of biological data in the web. However, the Java runtime environment is an additional layer of software with an own set of technical problems and security risks. HTML in its new version 5 provides features that for some tasks may render Java unnecessary. Alignment-To-HTML is the first HTML-based interactive visualization for annotated multiple sequence alignments. The server side script interpreter can perform all tasks like (i) sequence retrieval, (ii) alignment computation, (iii) rendering, (iv) identification of a homologous structural models and (v) communication with BioDAS-servers. The rendered alignment can be included in web pages and is displayed in all browsers on all platforms including touch screen tablets. The functionality of the user interface is similar to legacy Java applets and includes color schemes, highlighting of conserved and variable alignment positions, row reordering by drag and drop, interlinked 3D visualization and sequence groups. Novel features are (i) support for multiple overlapping residue annotations, such as chemical modifications, single nucleotide polymorphisms and mutations, (ii) mechanisms to quickly hide residue annotations, (iii) export to MS-Word and (iv) sequence icons. Alignment-To-HTML, the first interactive alignment visualization that runs in web browsers without additional software, confirms that to some extend HTML5 is already sufficient to display complex biological data. The low speed at which programs are executed in browsers is still the main obstacle. Nevertheless, we envision an increased use of HTML and JavaScript for interactive biological software. Under GPL at: http://www.bioinformatics.org/strap/toHTML/.

  17. Analysis of entry accelerometer data: A case study of Mars Pathfinder

    NASA Astrophysics Data System (ADS)

    Withers, Paul; Towner, M. C.; Hathi, B.; Zarnecki, J. C.

    2003-08-01

    Accelerometers are regularly flown on atmosphere-entering spacecraft. Using their measurements, the spacecraft trajectory and the vertical structure of density, pressure, and temperature in the atmosphere through which it descends can be calculated. We review the general procedures for trajectory and atmospheric structure reconstruction and outline them here in detail. We discuss which physical properties are important in atmospheric entry, instead of working exclusively with the dimensionless numbers of fluid dynamics. Integration of the equations of motion governing the spacecraft trajectory is carried out in a novel and general formulation. This does not require an axisymmetric gravitational field or many of the other assumptions that are present in the literature. We discuss four techniques - head-on, drag-only, acceleration ratios, and gyroscopes - for constraining spacecraft attitude, which is the critical issue in the trajectory reconstruction. The head-on technique uses an approximate magnitude and direction for the aerodynamic acceleration, whereas the drag-only technique uses the correct magnitude and an approximate direction. The acceleration ratios technique uses the correct magnitude and an indirect way of finding the correct direction and the gyroscopes technique uses the correct magnitude and a direct way of finding the correct direction. The head-on and drag-only techniques are easy to implement and require little additional information. The acceleration ratios technique requires extensive and expensive aerodynamic modelling. The gyroscopes technique requires additional onboard instrumentation. The effects of errors are briefly addressed. Our implementations of these trajectory reconstruction procedures have been verified on the Mars Pathfinder dataset. We find inconsistencies within the published work of the Pathfinder science team, and in the PDS archive itself, relating to the entry state of the spacecraft. Our atmospheric structure

  18. Electrostatic Charging of the Pathfinder Rover

    NASA Technical Reports Server (NTRS)

    Siebert, Mark W.; Kolecki, Joseph C.

    1996-01-01

    The Mars Pathfinder mission will send a lander and a rover to the martian surface. Because of the extremely dry conditions on Mars, electrostatic charging of the rover is expected to occur as it moves about. Charge accumulation may result in high electrical potentials and discharge through the martian atmosphere. Such discharge could interfere with the operation of electrical elements on the rover. A strategy was sought to mitigate this charge accumulation as a precautionary measure. Ground tests were performed to demonstrate charging in laboratory conditions simulating the surface conditions expected at Mars. Tests showed that a rover wheel, driven at typical rover speeds, will accumulate electrical charge and develop significant electrical potentials (average observed, 110 volts). Measurements were made of wheel electrical potential, and wheel capacitance. From these quantities, the amount of absolute charge was estimated. An engineering solution was developed and recommended to mitigate charge accumulation. That solution has been implemented on the actual rover.

  19. WaveJava: Wavelet-based network computing

    NASA Astrophysics Data System (ADS)

    Ma, Kun; Jiao, Licheng; Shi, Zhuoer

    1997-04-01

    Wavelet is a powerful theory, but its successful application still needs suitable programming tools. Java is a simple, object-oriented, distributed, interpreted, robust, secure, architecture-neutral, portable, high-performance, multi- threaded, dynamic language. This paper addresses the design and development of a cross-platform software environment for experimenting and applying wavelet theory. WaveJava, a wavelet class library designed by the object-orient programming, is developed to take advantage of the wavelets features, such as multi-resolution analysis and parallel processing in the networking computing. A new application architecture is designed for the net-wide distributed client-server environment. The data are transmitted with multi-resolution packets. At the distributed sites around the net, these data packets are done the matching or recognition processing in parallel. The results are fed back to determine the next operation. So, the more robust results can be arrived quickly. The WaveJava is easy to use and expand for special application. This paper gives a solution for the distributed fingerprint information processing system. It also fits for some other net-base multimedia information processing, such as network library, remote teaching and filmless picture archiving and communications.

  20. Actuation crosstalk in free-falling systems: Torsion pendulum results for the engineering model of the LISA pathfinder gravitational reference sensor

    NASA Astrophysics Data System (ADS)

    Bassan, M.; Cavalleri, A.; De Laurentis, M.; De Marchi, F.; De Rosa, R.; Di Fiore, L.; Dolesi, R.; Finetti, N.; Garufi, F.; Grado, A.; Hueller, M.; Marconi, L.; Milano, L.; Minenkov, Y.; Pucacco, G.; Stanga, R.; Vetrugno, D.; Visco, M.; Vitale, S.; Weber, W. J.

    2018-01-01

    In this paper we report on measurements on actuation crosstalk, relevant to the gravitational reference sensors for LISA Pathfinder and LISA. In these sensors, a Test Mass (TM) falls freely within a system of electrodes used for readout and control. These measurements were carried out on ground with a double torsion pendulum that allowed us to estimate both the torque injected into the sensor when a control force is applied and, conversely, the force leaking into the translational degree of freedom due to the applied torque.The values measured on our apparatus (the engineering model of the LISA Pathfinder sensor) agree to within 0.2% (over a maximum measured crosstalk of 1%) with predictions of a mathematical model when measuring force to torque crosstalk, while it is somewhat larger than expected (up to 3.5%) when measuring torque to force crosstalk. However, the values in the relevant range, i.e. when the TM is well centered ( ± 10 μm) in the sensor, remain smaller than 0.2%, satisfying the LISA Pathfinder requirements.

  1. Notochord alters the permissiveness of myotome for pathfinding by an identified motoneuron in embryonic zebrafish.

    PubMed

    Beattie, C E; Eisen, J S

    1997-02-01

    During zebrafish development, identified motoneurons innervate cell-specific regions of each trunk myotome. One motoneuron, CaP, extends an axon along the medial surface of the ventral myotome. To learn how this pathway is established during development, the CaP axon was used as an assay to ask whether other regions of the myotome were permissive for normal CaP pathfinding. Native myotomes were replaced with donor myotomes in normal or reversed dorsoventral orientations and CaP pathfinding was assayed. Ventral myotomes were permissive for CaP axons, even when they were taken from older embryos, suggesting that the CaP pathway remained present on ventral myotome throughout development. Dorsal myotomes from young embryos were also permissive for CaP axons, however, older dorsal myotomes were non-permissive, showing that permissiveness of dorsal myotome for normal CaP pathfinding diminished over time. This process appears to depend on signals from the embryo, since dorsal myotomes matured in vitro remained permissive for CaP axons. Genetic mosaics between wild-type and floating head mutant embryos revealed notochord involvement in dorsal myotome change of permissiveness. Dorsal and ventral myotomes from both younger and older floating head mutant embryos were permissive for CaP axons. These data suggest that initially both dorsal and ventral myotomes are permissive for CaP axons but as development proceeds, there is a notochord-dependent decrease in permissiveness of dorsal myotome for CaP axonal outgrowth. This change participates in restricting the CaP pathway to the ventral myotome and thus to neuromuscular specificity.

  2. First geodetic measurement of convergence across the Java Trench

    NASA Technical Reports Server (NTRS)

    Tregoning, P.; Brunner, F. K.; Bock, Y.; Puntodewo, S. S. O.; Mccraffrey, R.; Genrich, J. F.; Calais, E.; Rais, J.; Subarya, C.

    1994-01-01

    Convergence across the Java Trench has been estimated for the first time, from annual Global Positioning System (GPS) measurements commencing in 1989. The directions of motion of Christmas and Cocos Island are within 1 deg of that predicted by the No-Net Rotation (NNR) NUVEL-1 plate motion model for the Australian plate although their rates are 25% and 37% less than predcited, respectively. The motion of West Java differs significantly from the NNR NUVEL-1 prediction for the Eurasian plate with a 1 deg difference in direction and a 40% increase in rate. We infer that either West Java moves with a distinct Southeast Asian plate or this region experiences plate margin deformation. The convergence of Christmas Island with respect to West Java is 67 +/- mm/yr in a direction N11 deg E +/- 4 deg which is orthogonal to the trench. The magnitude of convergence agrees well with rescaled NUVEL-1 relative plate model which predicts a value of 71 mm/yr between Australia and Eurasia. The direction of motion matches the direction inferred from earthquake slip vectors at the trench but may be more northerly than the N20 deg E +/- 3 deg predicted by NUVEL-1. On June 2, 1994, almost a year after the last GPS survey, an M(sub W) = 7.5 earthquake with slip vector direction N5 deg occurred south of central Java.

  3. Optical Bench Interferometer - From LISA Pathfinder to NGO/eLISA

    NASA Astrophysics Data System (ADS)

    Taylor, A.; d'Arcio, L.; Bogenstahl, J.; Danzmann, K.; Diekmann, C.; Fitzsimons, E. D.; Gerberding, O.; Heinzel, G.; Hennig, J.-S.; Hogenhuis, H.; Killow, C. J.; Lieser, M.; Lucarelli, S.; Nikolov, S.; Perreur-Lloyd, M.; Pijnenburg, J.; Robertson, D. I.; Sohmer, A.; Tröbs, M.; Ward, H.; Weise, D.

    2013-01-01

    We present a short summary of some optical bench construction and alignment developments that build on experience gained during the LISA Pathfinder optical bench assembly. These include evolved fibre injectors, a new beam vector measurement system, and thermally stable mounting hardware. The beam vector measurement techniques allow the alignment of beams to targets with absolute accuracy of a few microns and 20 microradians. We also describe a newly designed ultra-low-return beam dump that is expected to be a crucial element in the control of ghost beams on the optical benches.

  4. Urbanization in Central Java and Yogyakarta.

    PubMed

    Soehartadji

    1980-06-01

    The author examines urbanization in the provinces of Central Java and Yogyakarta, Indonesia. Changes in the number and definition of rural and urban areas and in the proportion of the population living in these areas between 1930 and 1971 are analyzed. Causes of urbanization are then discussed, with attention to income levels, push and pull factors, and trade and communication. The study reveals that the rate of urbanization is comparatively low because economic conditions in the cities and towns of Central Java and Yogyakarta are less favorable than in the urban areas of other provinces, with the result that migrants tend to choose destinations in these other provinces.

  5. Developmental Process Model for the Java Intelligent Tutoring System

    ERIC Educational Resources Information Center

    Sykes, Edward

    2007-01-01

    The Java Intelligent Tutoring System (JITS) was designed and developed to support the growing trend of Java programming around the world. JITS is an advanced web-based personalized tutoring system that is unique in several ways. Most programming Intelligent Tutoring Systems require the teacher to author problems with corresponding solutions. JITS,…

  6. Techniques for identifying dust devils in mars pathfinder images

    USGS Publications Warehouse

    Metzger, S.M.; Carr, J.R.; Johnson, J. R.; Parker, T.J.; Lemmon, M.T.

    2000-01-01

    Image processing methods used to identify and enhance dust devil features imaged by IMP (Imager for Mars Pathfinder) are reviewed. Spectral differences, visible red minus visible blue, were used for initial dust devil searches, driven by the observation that Martian dust has high red and low blue reflectance. The Martian sky proved to be more heavily dust-laden than pre-Pathfinder predictions, based on analysis of images from the Hubble Space Telescope. As a result, these initial spectral difference methods failed to contrast dust devils with background dust haze. Imager artifacts (dust motes on the camera lens, flat-field effects caused by imperfections in the CCD, and projection onto a flat sensor plane by a convex lens) further impeded the ability to resolve subtle dust devil features. Consequently, reference images containing sky with a minimal horizon were first subtracted from each spectral filter image to remove camera artifacts and reduce the background dust haze signal. Once the sky-flat preprocessing step was completed, the red-minus-blue spectral difference scheme was attempted again. Dust devils then were successfully identified as bright plumes. False-color ratios using calibrated IMP images were found useful for visualizing dust plumes, verifying initial discoveries as vortex-like features. Enhancement of monochromatic (especially blue filter) images revealed dust devils as silhouettes against brighter background sky. Experiments with principal components transformation identified dust devils in raw, uncalibrated IMP images and further showed relative movement of dust devils across the Martian surface. A variety of methods therefore served qualitative and quantitative goals for dust plume identification and analysis in an environment where such features are obscure.

  7. JavaScript: Convenient Interactivity for the Class Web Page.

    ERIC Educational Resources Information Center

    Gray, Patricia

    This paper shows how JavaScript can be used within HTML pages to add interactive review sessions and quizzes incorporating graphics and sound files. JavaScript has the advantage of providing basic interactive functions without the use of separate software applications and players. Because it can be part of a standard HTML page, it is…

  8. Wheel Abrasion Experiment Metals Selection for Mars Pathfinder Mission

    NASA Technical Reports Server (NTRS)

    Hepp, Aloysius F.; Fatemi, Navid S.; Wilt, David M.; Ferguson, Dale C.; Hoffman, Richard; Hill, Maria M.; Kaloyeros, Alain E.

    1996-01-01

    A series of metals was examined for suitability for the Wheel Abrasion Experiment, one of ten microrover experiments of the Mars Pathfinder Mission. The seven candidate metals were: Ag, Al, Au, Cu, Ni, Pt, and W. Thin films of candidate metals from 0.1 to 1.0 micrometer thick were deposited on black anodized aluminum coupons by e-beam and resistive evaporation and chemical vapor deposition. Optical, corrosion, abrasion, and adhesion criteria were used to select Al, Ni, and Pt. A description is given of the deposition and testing of thin films, followed by a presentation of experimental data and a brief discussion of follow-on testing and flight qualification.

  9. Drill/borescope System for the Mars Polar Pathfinder

    NASA Technical Reports Server (NTRS)

    Paige, D. A.; Wood, S. E.; Vasavada, A. R.

    1993-01-01

    The primary goals of the Mars Polar Pathfinder (MPP) Discovery Mission are to characterize the composition and structure of Mars' north polar ice cap, and to determine whether a climate record may be preserved in layers of ice and dust. The MPP would land as close as possible to the geographic north pole of Mars and use a set of instruments similar to those used by glaciologists to study polar ice caps on Earth: a radar sounder, a drill/borescope system, and a thermal probe. The drill/borescope system will drill approximately 50 cm into the surface and image the sides of the hole at 10 micron resolution for compositional and stratigraphic analysis. Several uncertainties have guided the development of this instrument, and they are discussed.

  10. Mars Pathfinder Near-Field Rock Distribution Re-Evaluation

    NASA Technical Reports Server (NTRS)

    Haldemann, A. F. C.; Golombek, M. P.

    2003-01-01

    We have completed analysis of a new near-field rock count at the Mars Pathfinder landing site and determined that the previously published rock count suggesting 16% cumulative fractional area (CFA) covered by rocks is incorrect. The earlier value is not so much wrong (our new CFA is 20%), as right for the wrong reason: both the old and the new CFA's are consistent with remote sensing data, however the earlier determination incorrectly calculated rock coverage using apparent width rather than average diameter. Here we present details of the new rock database and the new statistics, as well as the importance of using rock average diameter for rock population statistics. The changes to the near-field data do not affect the far-field rock statistics.

  11. The 17 July 2006 Tsunami earthquake in West Java, Indonesia

    USGS Publications Warehouse

    Mori, J.; Mooney, W.D.; Afnimar,; Kurniawan, S.; Anaya, A.I.; Widiyantoro, S.

    2007-01-01

    A tsunami earthquake (Mw = 7.7) occurred south of Java on 17 July 2006. The event produced relatively low levels of high-frequency radiation, and local felt reports indicated only weak shaking in Java. There was no ground motion damage from the earthquake, but there was extensive damage and loss of life from the tsunami along 250 km of the southern coasts of West Java and Central Java. An inspection of the area a few days after the earthquake showed extensive damage to wooden and unreinforced masonry buildings that were located within several hundred meters of the coast. Since there was no tsunami warning system in place, efforts to escape the large waves depended on how people reacted to the earthquake shaking, which was only weakly felt in the coastal areas. This experience emphasizes the need for adequate tsunami warning systems for the Indian Ocean region.

  12. An Analysis of Coupling between the x1 and x12 Interferometers for LISA Pathfinder

    NASA Astrophysics Data System (ADS)

    Howard, Brittany

    2017-01-01

    Due to tolerances in the manufacturing process, noise from the jittering of the spacecraft housing LISA Pathfinder (LPF) is appearing in the differential measurement between its two test masses (TM's). This phenomenon manifests as a small but measurable coupling between the readouts of LPF's two heterodyne interferometers, x1 and x12. In this study, two LISA Pathfinder experiments are analyzed using three methods in an effort to characterize and quantify the coupling as well as to potentially identify its source. The main question considered is this: does the coupling change with the absolute displacement between the TM's? As a result of this work, reliable values for coupling between LPF's x1 and x12 interferometers are found, and they are seen to depend on the absolute displacement between the test masses to some degree. Completed at the Albert Einstein Institute for Gravitational Physics under the International REU program from the University of Florida.

  13. Charge-Induced Force Noise on Free-Falling Test Masses: Results from LISA Pathfinder.

    PubMed

    Armano, M; Audley, H; Auger, G; Baird, J T; Binetruy, P; Born, M; Bortoluzzi, D; Brandt, N; Bursi, A; Caleno, M; Cavalleri, A; Cesarini, A; Cruise, M; Danzmann, K; de Deus Silva, M; Diepholz, I; Dolesi, R; Dunbar, N; Ferraioli, L; Ferroni, V; Fitzsimons, E D; Flatscher, R; Freschi, M; Gallegos, J; García Marirrodriga, C; Gerndt, R; Gesa, L; Gibert, F; Giardini, D; Giusteri, R; Grimani, C; Grzymisch, J; Harrison, I; Heinzel, G; Hewitson, M; Hollington, D; Hueller, M; Huesler, J; Inchauspé, H; Jennrich, O; Jetzer, P; Johlander, B; Karnesis, N; Kaune, B; Killow, C J; Korsakova, N; Lloro, I; Liu, L; López-Zaragoza, J P; Maarschalkerweerd, R; Madden, S; Mance, D; Martín, V; Martin-Polo, L; Martino, J; Martin-Porqueras, F; Mateos, I; McNamara, P W; Mendes, J; Mendes, L; Moroni, A; Nofrarias, M; Paczkowski, S; Perreur-Lloyd, M; Petiteau, A; Pivato, P; Plagnol, E; Prat, P; Ragnit, U; Ramos-Castro, J; Reiche, J; Romera Perez, J A; Robertson, D I; Rozemeijer, H; Rivas, F; Russano, G; Sarra, P; Schleicher, A; Slutsky, J; Sopuerta, C; Sumner, T J; Texier, D; Thorpe, J I; Trenkel, C; Vetrugno, D; Vitale, S; Wanner, G; Ward, H; Wass, P J; Wealthy, D; Weber, W J; Wittchen, A; Zanoni, C; Ziegler, T; Zweifel, P

    2017-04-28

    We report on electrostatic measurements made on board the European Space Agency mission LISA Pathfinder. Detailed measurements of the charge-induced electrostatic forces exerted on free-falling test masses (TMs) inside the capacitive gravitational reference sensor are the first made in a relevant environment for a space-based gravitational wave detector. Employing a combination of charge control and electric-field compensation, we show that the level of charge-induced acceleration noise on a single TM can be maintained at a level close to 1.0  fm s^{-2} Hz^{-1/2} across the 0.1-100 mHz frequency band that is crucial to an observatory such as the Laser Interferometer Space Antenna (LISA). Using dedicated measurements that detect these effects in the differential acceleration between the two test masses, we resolve the stochastic nature of the TM charge buildup due to interplanetary cosmic rays and the TM charge-to-force coupling through stray electric fields in the sensor. All our measurements are in good agreement with predictions based on a relatively simple electrostatic model of the LISA Pathfinder instrument.

  14. adrift, a novel bnl-induced Drosophila gene, required for tracheal pathfinding into the CNS.

    PubMed

    Englund, C; Uv, A E; Cantera, R; Mathies, L D; Krasnow, M A; Samakovlis, C

    1999-04-01

    Neurons and glial cells provide guidance cues for migrating neurons. We show here that migrating epithelial cells also contact specific neurons and glia during their pathfinding, and we describe the first gene required in the process. In wild-type Drosophila embryos, the ganglionic tracheal branch navigates a remarkably complex path along specific neural and glial substrata, switching substrata five times before reaching its ultimate target in the CNS. In adrift mutants, ganglionic branches migrate normally along the intersegmental nerve, but sporadically fail to switch to the segmental nerve and enter the CNS; they wind up meandering along the ventral epidermis instead. adrift encodes a novel nuclear protein with an evolutionarily conserved motif. The gene is required in the trachea and is expressed in the leading cells of migrating ganglionic branches where it is induced by the branchless FGF pathway. We propose that Adrift regulates expression of tracheal genes required for pathfinding on the segmental nerve, and FGF induction of adrift expression in migrating tracheal cells promotes the switch from the intersegmental to the segmental nerve.

  15. Characterization of the Martian surface deposits by the Mars Pathfinder rover, Sojourner.

    NASA Astrophysics Data System (ADS)

    Matijevic, J. R.; Crisp, J.; Bickler, D. B.; Banes, R. S.; Cooper, B. K.; Eisen, H. J.; Gensler, J.; Haldemann, A.; Hartman, F.; Jewett, K. A.; Matthies, L. H.; Laubach, S. L.; Mishkin, A. H.; Morrison, J. C.; Nguyen, T. T.; Sirota, A. R.; Stone, H. W.; Stride, S.; Sword, L. F.; Tarsala, J. A.; Thompson, A. D.; Wallace, M. T.; Welch, R.; Wellman, E.; Wilcox, B. H.; Ferguson, D.; Jenkins, P.; Kolecki, J.; Landis, G. A.; Wilt, D.; Rover Team

    1997-12-01

    The Mars Pathfinder rover discovered pebbles on the surface and in rocks that may be sedimentary - not volcanic - in origin. Surface pebbles may have been rounded by Ares flood waters or liberated by weathering of sedimentary rocks called conglomerates. Conglomerates imply that water existed elsewhere and earlier than the Ares flood. Most soil-like deposits are similar to moderately dense soils on Earth. Small amounts of dust are currently settling from the atmosphere.

  16. Jannovar: a java library for exome annotation.

    PubMed

    Jäger, Marten; Wang, Kai; Bauer, Sebastian; Smedley, Damian; Krawitz, Peter; Robinson, Peter N

    2014-05-01

    Transcript-based annotation and pedigree analysis are two basic steps in the computational analysis of whole-exome sequencing experiments in genetic diagnostics and disease-gene discovery projects. Here, we present Jannovar, a stand-alone Java application as well as a Java library designed to be used in larger software frameworks for exome and genome analysis. Jannovar uses an interval tree to identify all transcripts affected by a given variant, and provides Human Genome Variation Society-compliant annotations both for variants affecting coding sequences and splice junctions as well as untranslated regions and noncoding RNA transcripts. Jannovar can also perform family-based pedigree analysis with Variant Call Format (VCF) files with data from members of a family segregating a Mendelian disorder. Using a desktop computer, Jannovar requires a few seconds to annotate a typical VCF file with exome data. Jannovar is freely available under the BSD2 license. Source code as well as the Java application and library file can be downloaded from http://compbio.charite.de (with tutorial) and https://github.com/charite/jannovar. © 2014 WILEY PERIODICALS, INC.

  17. Paintbrush of Discovery: Using Java Applets to Enhance Mathematics Education

    ERIC Educational Resources Information Center

    Eason, Ray; Heath, Garrett

    2004-01-01

    This article addresses the enhancement of the learning environment by using Java applets in the mathematics classroom. Currently, the first year mathematics program at the United States Military Academy involves one semester of modeling with discrete dynamical systems (DDS). Several faculty members from the Academy have integrated Java applets…

  18. JSBML: a flexible Java library for working with SBML.

    PubMed

    Dräger, Andreas; Rodriguez, Nicolas; Dumousseau, Marine; Dörr, Alexander; Wrzodek, Clemens; Le Novère, Nicolas; Zell, Andreas; Hucka, Michael

    2011-08-01

    The specifications of the Systems Biology Markup Language (SBML) define standards for storing and exchanging computer models of biological processes in text files. In order to perform model simulations, graphical visualizations and other software manipulations, an in-memory representation of SBML is required. We developed JSBML for this purpose. In contrast to prior implementations of SBML APIs, JSBML has been designed from the ground up for the Java programming language, and can therefore be used on all platforms supported by a Java Runtime Environment. This offers important benefits for Java users, including the ability to distribute software as Java Web Start applications. JSBML supports all SBML Levels and Versions through Level 3 Version 1, and we have strived to maintain the highest possible degree of compatibility with the popular library libSBML. JSBML also supports modules that can facilitate the development of plugins for end user applications, as well as ease migration from a libSBML-based backend. Source code, binaries and documentation for JSBML can be freely obtained under the terms of the LGPL 2.1 from the website http://sbml.org/Software/JSBML.

  19. Java Mission Evaluation Workstation System

    NASA Technical Reports Server (NTRS)

    Pettinger, Ross; Watlington, Tim; Ryley, Richard; Harbour, Jeff

    2006-01-01

    The Java Mission Evaluation Workstation System (JMEWS) is a collection of applications designed to retrieve, display, and analyze both real-time and recorded telemetry data. This software is currently being used by both the Space Shuttle Program (SSP) and the International Space Station (ISS) program. JMEWS was written in the Java programming language to satisfy the requirement of platform independence. An object-oriented design was used to satisfy additional requirements and to make the software easily extendable. By virtue of its platform independence, JMEWS can be used on the UNIX workstations in the Mission Control Center (MCC) and on office computers. JMEWS includes an interactive editor that allows users to easily develop displays that meet their specific needs. The displays can be developed and modified while viewing data. By simply selecting a data source, the user can view real-time, recorded, or test data.

  20. LISA pathfinder appreciably constrains collapse models

    NASA Astrophysics Data System (ADS)

    Helou, Bassam; Slagmolen, B. J. J.; McClelland, David E.; Chen, Yanbei

    2017-04-01

    Spontaneous collapse models are phenomological theories formulated to address major difficulties in macroscopic quantum mechanics. We place significant bounds on the parameters of the leading collapse models, the continuous spontaneous localization (CSL) model, and the Diosi-Penrose (DP) model, by using LISA Pathfinder's measurement, at a record accuracy, of the relative acceleration noise between two free-falling macroscopic test masses. In particular, we bound the CSL collapse rate to be at most (2.96 ±0.12 ) ×10-8 s-1 . This competitive bound explores a new frequency regime, 0.7 to 20 mHz, and overlaps with the lower bound 10-8 ±2 s-1 proposed by Adler in order for the CSL collapse noise to be substantial enough to explain the phenomenology of quantum measurement. Moreover, we bound the regularization cutoff scale used in the DP model to prevent divergences to be at least 40.1 ±0.5 fm , which is larger than the size of any nucleus. Thus, we rule out the DP model if the cutoff is the size of a fundamental particle.

  1. The Australian SKA Pathfinder: operations management and user engagement

    NASA Astrophysics Data System (ADS)

    Harvey-Smith, Lisa

    2016-07-01

    This paper describes the science operations model for the Australian Square Kilometre Array Pathfinder (ASKAP) telescope. ASKAP is a radio interferometer currently being commissioned in Western Australia. It will be operated by a dedicated team of observatory staff with the support of telescope monitoring, control and scheduling software. These tools, as well as the proposal tools and data archive will enable the telescope to operate with little direct input from the astronomy user. The paper also discusses how close engagement with the telescope user community has been maintained throughout the ASKAP construction and commissioning phase, leading to positive outcomes including early input into the design of telescope systems and a vibrant early science program.

  2. Statistical analysis of soil geochemical data to identify pathfinders associated with mineral deposits: An example from the Coles Hill uranium deposit, Virginia, USA

    USGS Publications Warehouse

    Levitan, Denise M.; Zipper, Carl E.; Donovan, Patricia; Schreiber, Madeline E.; Seal, Robert; Engle, Mark A.; Chermak, John A.; Bodnar, Robert J.; Johnson, Daniel K.; Aylor, Joseph G.

    2015-01-01

    Soil geochemical anomalies can be used to identify pathfinders in exploration for ore deposits. In this study, compositional data analysis is used with multivariate statistical methods to analyse soil geochemical data collected from the Coles Hill uranium deposit, Virginia, USA, to identify pathfinders associated with this deposit. Elemental compositions and relationships were compared between the collected Coles Hill soil and reference soil samples extracted from a regional subset of a national-scale geochemical survey. Results show that pathfinders for the Coles Hill deposit include light rare earth elements (La and Ce), which, when normalised by their Al content, are correlated with U/Al, and elevated Th/Al values, which are not correlated with U/Al, supporting decoupling of U from Th during soil generation. These results can be used in genetic and weathering models of the Coles Hill deposit, and can also be applied to future prospecting for similar U deposits in the eastern United States, and in regions with similar geological/climatic conditions.

  3. Cerberus Plains: A most excellent Pathfinder landing site

    NASA Technical Reports Server (NTRS)

    Plescia, Jeff B.

    1994-01-01

    The Cerberus Plains in southeastern Elysium and western Amazonis cover greater than 10(exp 5) sq km, extending an east-west distance of approximately 3000 km and a north-south distance of up to 700 km near 195 deg. Crater numbers are 89 plus or minus 15 craters greater than 1 km/10(exp 6) sq km, indicating a stratigraphic age of Upper Amazonian and an absolute age of 200-500 Ma. The material forming the surface is referred to as the Cerberus Formation. The two ideas postulated about the unit's origin are fluvial and volcanic. Regardless of which interpretation is correct, the Cerberus Plains is an important candidate for a pathfinder landing site because it represents the youngest major geologic event (be it fluvial or volcanic) on Mars.

  4. Big Crater as Viewed by Pathfinder Lander - Anaglyph

    NASA Technical Reports Server (NTRS)

    1997-01-01

    The 'Big Crater' is actually a relatively small Martian crater to the southeast of the Mars Pathfinder landing site. It is 1500 meters (4900 feet) in diameter, or about the same size as Meteor Crater in Arizona. Superimposed on the rim of Big Crater (the central part of the rim as seen here) is a smaller crater nicknamed 'Rimshot Crater.' The distance to this smaller crater, and the nearest portion of the rim of Big Crater, is 2200 meters (7200 feet). To the right of Big Crater, south from the spacecraft, almost lost in the atmospheric dust 'haze,' is the large streamlined mountain nicknamed 'Far Knob.' This mountain is over 450 meters (1480 feet) tall, and is over 30 kilometers (19 miles) from the spacecraft. Another, smaller and closer knob, nicknamed 'Southeast Knob' can be seen as a triangular peak to the left of the flanks of the Big Crater rim. This knob is 21 kilometers (13 miles) southeast from the spacecraft.

    The larger features visible in this scene - Big Crater, Far Knob, and Southeast Knob - were discovered on the first panoramas taken by the IMP camera on the 4th of July, 1997, and subsequently identified in Viking Orbiter images taken over 20 years ago. The scene includes rocky ridges and swales or 'hummocks' of flood debris that range from a few tens of meters away from the lander to the distance of South Twin Peak. The largest rock in the nearfield, just left of center in the foreground, nicknamed 'Otter', is about 1.5 meters (4.9 feet) long and 10 meters (33 feet) from the spacecraft.

    This view of Big Crater was produced by combining 6 individual 'Superpan' scenes from the left and right eyes of the IMP camera. Each frame consists of 8 individual frames (left eye) and 7 frames (right eye) taken with different color filters that were enlarged by 500% and then co-added using Adobe Photoshop to produce, in effect, a super-resolution panchromatic frame that is sharper than an individual frame would be.

    The anaglyph view of Big Crater was

  5. A Java application for tissue section image analysis.

    PubMed

    Kamalov, R; Guillaud, M; Haskins, D; Harrison, A; Kemp, R; Chiu, D; Follen, M; MacAulay, C

    2005-02-01

    The medical industry has taken advantage of Java and Java technologies over the past few years, in large part due to the language's platform-independence and object-oriented structure. As such, Java provides powerful and effective tools for developing tissue section analysis software. The background and execution of this development are discussed in this publication. Object-oriented structure allows for the creation of "Slide", "Unit", and "Cell" objects to simulate the corresponding real-world objects. Different functions may then be created to perform various tasks on these objects, thus facilitating the development of the software package as a whole. At the current time, substantial parts of the initially planned functionality have been implemented. Getafics 1.0 is fully operational and currently supports a variety of research projects; however, there are certain features of the software that currently introduce unnecessary complexity and inefficiency. In the future, we hope to include features that obviate these problems.

  6. Sedimentary deposits study of the 2006 Java tsunami, in Pangandaran, West Java (preliminary result)

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Maemunah, Imun, E-mail: imun-m2001@yahoo.com; Institute Technology of Bandung; Suparka, Emmy, E-mail: emmy@gc.itb.ac.id

    The 2006 Java Earthquake (Mw 7.2) has generated a tsunami that reached Pangandaran coastal plain with 9.7 m above sea level height of wave. In 2014 we examined the tsunami deposit exposed in shallow trenches along a∼300 m at 5 transect from shoreline to inland on Karapyak and Madasari, Pangandaran. We documented stratigraphically and sedimentologically, the characteristics of Java Tsunami deposit on Karapyak and Madasari and compared both sediments. In local farmland a moderately-sorted, brown soil is buried by a poorly-sorted, grey, medium-grained sand-sheet. The tsunami deposit was distinguished from the underlying soil by a pronounced increase in grain size that becomesmore » finner upwards and landwards. Decreasing concentration of coarse size particles with distance toward inland are in agreement with grain size analysis. The thickest tsunami deposit is about 25 cm found at 84 m from shoreline in Madasari and about 15 cm found at 80 m from shoreline in Karapyak. The thickness of tsunami deposits in some transect become thinner landward but in some other transect lack a consistent suggested strongly affected by local topography. Tsunami deposits at Karapyak and Madasari show many similarities. Both deposits consist of coarse sand that sharply overlies a finer sandy soil. The presence mud drapes and other sedimentary structure like graded bedding, massive beds, mud clasts in many locations shows a dynamics process of tsunami waves. The imbrication coarse and shell fragments of the 2006 Java, tsunami deposits also provide information about the curent direction, allowing us to distinguish run up deposits from backwash deposits.« less

  7. Coexpression of high-voltage-activated ion channels Kv3.4 and Cav1.2 in pioneer axons during pathfinding in the developing rat forebrain.

    PubMed

    Huang, Chia-Yi; Chu, Dachen; Hwang, Wei-Chao; Tsaur, Meei-Ling

    2012-11-01

    Precise axon pathfinding is crucial for establishment of the initial neuronal network during development. Pioneer axons navigate without the help of preexisting axons and pave the way for follower axons that project later. Voltage-gated ion channels make up the intrinsic electrical activity of pioneer axons and regulate axon pathfinding. To elucidate which channel molecules are present in pioneer axons, immunohistochemical analysis was performed to examine 14 voltage-gated ion channels (Kv1.1-Kv1.3, Kv3.1-Kv3.4, Kv4.3, Cav1.2, Cav1.3, Cav2.2, Nav1.2, Nav1.6, and Nav1.9) in nine axonal tracts in the developing rat forebrain, including the optic nerve, corpus callosum, corticofugal fibers, thalamocortical axons, lateral olfactory tract, hippocamposeptal projection, anterior commissure, hippocampal commissure, and medial longitudinal fasciculus. We found A-type K⁺ channel Kv3.4 in both pioneer axons and early follower axons and L-type Ca²⁺ channel Cav1.2 in pioneer axons and early and late follower axons. Spatially, Kv3.4 and Cav1.2 were colocalized with markers of pioneer neurons and pioneer axons, such as deleted in colorectal cancer (DCC), in most fiber tracts examined. Temporally, Kv3.4 and Cav1.2 were expressed abundantly in most fiber tracts during axon pathfinding but were downregulated beginning in synaptogenesis. By contrast, delayed rectifier Kv channels (e.g., Kv1.1) and Nav channels (e.g., Nav1.2) were absent from these fiber tracts (except for the corpus callosum) during pathfinding of pioneer axons. These data suggest that Kv3.4 and Cav1.2, two high-voltage-activated ion channels, may act together to control Ca²⁺ -dependent electrical activity of pioneer axons and play important roles during axon pathfinding. Copyright © 2012 Wiley Periodicals, Inc.

  8. Correspondence and Least Squares Analyses of Soil and Rock Compositions for the Viking Lander 1 and Pathfinder Sites

    NASA Technical Reports Server (NTRS)

    Larsen, K. W.; Arvidson, R. E.; Jolliff, B. L.; Clark, B. C.

    2000-01-01

    Correspondence and Least Squares Mixing Analysis techniques are applied to the chemical composition of Viking 1 soils and Pathfinder rocks and soils. Implications for the parent composition of local and global materials are discussed.

  9. Absence of plague in certain mammals from Java and Kalimantan (Borneo).

    PubMed

    Van Peenen, P F; Joseph, S W; Cavanaugh, D C; Williams, J E; Luyster, L F; Saroso, J S

    1976-09-01

    Antibodies against plague were lacking in 237 wild mammal sera from Java and 103 from Kalimantan. Wild mammal spleens, 114 from Java and 18 from Kalimantan were negative for plague bacilli. A variety of mammalian species and areas was examined.

  10. The EUSO-Balloon pathfinder

    NASA Astrophysics Data System (ADS)

    Adams, J. H.; Ahmad, S.; Albert, J.-N.; Allard, D.; Anchordoqui, L.; Andreev, V.; Anzalone, A.; Arai, Y.; Asano, K.; Ave Pernas, M.; Baragatti, P.; Barrillon, P.; Batsch, T.; Bayer, J.; Bechini, R.; Belenguer, T.; Bellotti, R.; Belov, K.; Berlind, A. A.; Bertaina, M.; Biermann, P. L.; Biktemerova, S.; Blaksley, C.; Blanc, N.; Błȩcki, J.; Blin-Bondil, S.; Blümer, J.; Bobik, P.; Bogomilov, M.; Bonamente, M.; Briggs, M. S.; Briz, S.; Bruno, A.; Cafagna, F.; Campana, D.; Capdevielle, J.-N.; Caruso, R.; Casolino, M.; Cassardo, C.; Castellinic, G.; Catalano, C.; Catalano, G.; Cellino, A.; Chikawa, M.; Christl, M. J.; Cline, D.; Connaughton, V.; Conti, L.; Cordero, G.; Crawford, H. J.; Cremonini, R.; Csorna, S.; Dagoret-Campagne, S.; de Castro, A. J.; De Donato, C.; de la Taille, C.; De Santis, C.; del Peral, L.; Dell'Oro, A.; De Simone, N.; Di Martino, M.; Distratis, G.; Dulucq, F.; Dupieux, M.; Ebersoldt, A.; Ebisuzaki, T.; Engel, R.; Falk, S.; Fang, K.; Fenu, F.; Fernández-Gómez, I.; Ferrarese, S.; Finco, D.; Flamini, M.; Fornaro, C.; Franceschi, A.; Fujimoto, J.; Fukushima, M.; Galeotti, P.; Garipov, G.; Geary, J.; Gelmini, G.; Giraudo, G.; Gonchar, M.; González Alvarado, C.; Gorodetzky, P.; Guarino, F.; Guzmán, A.; Hachisu, Y.; Harlov, B.; Haungs, A.; Hernández Carretero, J.; Higashide, K.; Ikeda, D.; Ikeda, H.; Inoue, N.; Inoue, S.; Insolia, A.; Isgrò, F.; Itow, Y.; Joven, E.; Judd, E. G.; Jung, A.; Kajino, F.; Kajino, T.; Kaneko, I.; Karadzhov, Y.; Karczmarczyk, J.; Karus, M.; Katahira, K.; Kawai, K.; Kawasaki, Y.; Keilhauer, B.; Khrenov, B. A.; Kim, J.-S.; Kim, S.-W.; Kim, S.-W.; Kleifges, M.; Klimov, P. A.; Kolev, D.; Kreykenbohm, I.; Kudela, K.; Kurihara, Y.; Kusenko, A.; Kuznetsov, E.; Lacombe, M.; Lachaud, C.; Lee, J.; Licandro, J.; Lim, H.; López, F.; Maccarone, M. C.; Mannheim, K.; Maravilla, D.; Marcelli, L.; Marini, A.; Martinez, O.; Masciantonio, G.; Mase, K.; Matev, R.; Medina-Tanco, G.; Mernik, T.; Miyamoto, H.; Miyazaki, Y.; Mizumoto, Y.; Modestino, G.; Monaco, A.; Monnier-Ragaigne, D.; Morales de los Ríos, J. A.; Moretto, C.; Morozenko, V. S.; Mot, B.; Murakami, T.; Murakami, M. Nagano; Nagata, M.; Nagataki, S.; Nakamura, T.; Napolitano, T.; Naumov, D.; Nava, R.; Neronov, A.; Nomoto, K.; Nonaka, T.; Ogawa, T.; Ogio, S.; Ohmori, H.; Olinto, A. V.; Orleański, P.; Osteria, G.; Panasyuk, M. I.; Parizot, E.; Park, I. H.; Park, H. W.; Pastircak, B.; Patzak, T.; Paul, T.; Pennypacker, C.; Perez Cano, S.; Peter, T.; Picozza, P.; Pierog, T.; Piotrowski, L. W.; Piraino, S.; Plebaniak, Z.; Pollini, A.; Prat, P.; Prévôt, G.; Prieto, H.; Putis, M.; Reardon, P.; Reyes, M.; Ricci, M.; Rodríguez, I.; Rodríguez Frías, M. D.; Ronga, F.; Roth, M.; Rothkaehl, H.; Roudil, G.; Rusinov, I.; Rybczyński, M.; Sabau, M. D.; Sáez-Cano, G.; Sagawa, H.; Saito, A.; Sakaki, N.; Sakata, M.; Salazar, H.; Sánchez, S.; Santangelo, A.; Santiago Crúz, L.; Sanz Palomino, M.; Saprykin, O.; Sarazin, F.; Sato, H.; Sato, M.; Schanz, T.; Schieler, H.; Scotti, V.; Segreto, A.; Selmane, S.; Semikoz, D.; Serra, M.; Sharakin, S.; Shibata, T.; Shimizu, H. M.; Shinozaki, K.; Shirahama, T.; Siemieniec-Oziȩbło, G.; Silva López, H. H.; Sledd, J.; Słomińska, K.; Sobey, A.; Sugiyama, T.; Supanitsky, D.; Suzuki, M.; Szabelska, B.; Szabelski, J.; Tajima, F.; Tajima, N.; Tajima, T.; Takahashi, Y.; Takami, H.; Takeda, M.; Takizawa, Y.; Tenzer, C.; Tibolla, O.; Tkachev, L.; Tokuno, H.; Tomida, T.; Tone, N.; Toscano, S.; Trillaud, F.; Tsenov, R.; Tsunesada, Y.; Tsuno, K.; Tymieniecka, T.; Uchihori, Y.; Unger, M.; Vaduvescu, O.; Valdés-Galicia, J. F.; Vallania, P.; Valore, L.; Vankova, G.; Vigorito, C.; Villaseñor, L.; von Ballmoos, P.; Wada, S.; Watanabe, J.; Watanabe, S.; Watts, J.; Weber, M.; Weiler, T. J.; Wibig, T.; Wiencke, L.; Wille, M.; Wilms, J.; Włodarczyk, Z.; Yamamoto, T.; Yamamoto, Y.; Yang, J.; Yano, H.; Yashin, I. V.; Yonetoku, D.; Yoshida, K.; Yoshida, S.; Young, R.; Zotov, M. Yu.; Zuccaro Marchi, A.

    2015-11-01

    EUSO-Balloon is a pathfinder for JEM-EUSO, the Extreme Universe Space Observatory which is to be hosted on-board the International Space Station. As JEM-EUSO is designed to observe Ultra-High Energy Cosmic Rays (UHECR)-induced Extensive Air Showers (EAS) by detecting their ultraviolet light tracks "from above", EUSO-Balloon is a nadir-pointing UV telescope too. With its Fresnel Optics and Photo-Detector Module, the instrument monitors a 50 km2 ground surface area in a wavelength band of 290-430 nm, collecting series of images at a rate of 400,000 frames/sec. The objectives of the balloon demonstrator are threefold: a) perform a full end-to-end test of a JEM-EUSO prototype consisting of all the main subsystems of the space experiment, b) measure the effective terrestrial UV background, with a spatial and temporal resolution relevant for JEM-EUSO. c) detect tracks of ultraviolet light from near space for the first time. The latter is a milestone in the development of UHECR science, paving the way for any future space-based UHECR observatory. On August 25, 2014, EUSO-Balloon was launched from Timmins Stratospheric Balloon Base (Ontario, Canada) by the balloon division of the French Space Agency CNES. From a float altitude of 38 km, the instrument operated during the entire astronomical night, observing UV-light from a variety of ground-covers and from hundreds of simulated EASs, produced by flashers and a laser during a two-hour helicopter under-flight.

  11. Longwave Radiative Flux Calculations in the TOVS Pathfinder Path A Data Set

    NASA Technical Reports Server (NTRS)

    Mehta, Amita; Susskind, Joel

    1999-01-01

    A radiative transfer model developed to calculate outgoing longwave radiation (OLR) and downwelling longwave, surface flux (DSF) from the Television and Infrared Operational Satellite (TIROS) Operational Vertical Sounder (TOVS) Pathfinder Path A retrieval products is described. The model covers the spectral range of 2 to 2800 cm in 14 medium medium spectral bands. For each band, transmittances are parameterized as a function of temperature, water vapor, and ozone profiles. The form of the band transmittance parameterization is a modified version of the approach we use to model channel transmittances for the High Resolution Infrared Sounder 2 (HIRS2) instrument. We separately derive effective zenith angle for each spectral band such that band-averaged radiance calculated at that angle best approximates directionally integrated radiance for that band. We develop the transmittance parameterization at these band-dependent effective zenith angles to incorporate directional integration of radiances required in the calculations of OLR and DSF. The model calculations of OLR and DSF are accurate and differ by less than 1% from our line-by-line calculations. Also, the model results are within 1% range of other line-by-line calculations provided by the Intercomparison of Radiation Codes in Climate Models (ICRCCM) project for clear-sky and cloudy conditions. The model is currently used to calculate global, multiyear (1985-1998) OLR and DSF from the TOVS Pathfinder Path A Retrievals.

  12. A Visual Editor in Java for View

    NASA Technical Reports Server (NTRS)

    Stansifer, Ryan

    2000-01-01

    In this project we continued the development of a visual editor in the Java programming language to create screens on which to display real-time data. The data comes from the numerous systems monitoring the operation of the space shuttle while on the ground and in space, and from the many tests of subsystems. The data can be displayed on any computer platform running a Java-enabled World Wide Web (WWW) browser and connected to the Internet. Previously a special-purpose program bad been written to display data on emulations of character-based display screens used for many years at NASA. The goal now is to display bit-mapped screens created by a visual editor. We report here on the visual editor that creates the display screens. This project continues the work we bad done previously. Previously we had followed the design of the 'beanbox,' a prototype visual editor created by Sun Microsystems. We abandoned this approach and implemented a prototype using a more direct approach. In addition, our prototype is based on newly released Java 2 graphical user interface (GUI) libraries. The result has been a visually more appealing appearance and a more robust application.

  13. Modelling of cayenne production in Central Java using ARIMA-GARCH

    NASA Astrophysics Data System (ADS)

    Tarno; Sudarno; Ispriyanti, Dwi; Suparti

    2018-05-01

    Some regencies/cities in Central Java Province are known as producers of horticultural crops in Indonesia, for example, Brebes which is the largest area of shallot producer in Central Java, while the others, such as Cilacap and Wonosobo are the areas of cayenne commodities production. Currently, cayenne is a strategic commodity and it has broad impact to Indonesian economic development. Modelling the cayenne production is necessary to predict about the commodity to meet the need for society. The needs fulfillment of society will affect stability of the concerned commodity price. Based on the reality, the decreasing of cayenne production will cause the increasing of society’s basic needs price, and finally it will affect the inflation level at that area. This research focused on autoregressive integrated moving average (ARIMA) modelling by considering the effect of autoregressive conditional heteroscedasticity (ARCH) to study about cayenne production in Central Java. The result of empirical study of ARIMA-GARCH modelling for cayenne production in Central Java from January 2003 to November 2015 is ARIMA([1,3],0,0)-GARCH(1,0) as the best model.

  14. Implications of the Java language on computer-based patient records.

    PubMed

    Pollard, D; Kucharz, E; Hammond, W E

    1996-01-01

    The growth of the utilization of the World Wide Web (WWW) as a medium for the delivery of computer-based patient records (CBPR) has created a new paradigm in which clinical information may be delivered. Until recently the authoring tools and environment for application development on the WWW have been limited to Hyper Text Markup Language (HTML) utilizing common gateway interface scripts. While, at times, this provides an effective medium for the delivery of CBPR, it is a less than optimal solution. The server-centric dynamics and low levels of interactivity do not provide for a robust application which is required in a clinical environment. The emergence of Sun Microsystems' Java language is a solution to the problem. In this paper we examine the Java language and its implications to the CBPR. A quantitative and qualitative assessment was performed. The Java environment is compared to HTML and Telnet CBPR environments. Qualitative comparisons include level of interactivity, server load, client load, ease of use, and application capabilities. Quantitative comparisons include data transfer time delays. The Java language has demonstrated promise for delivering CBPRs.

  15. Viewing multiple sequence alignments with the JavaScript Sequence Alignment Viewer (JSAV)

    PubMed Central

    Martin, Andrew C. R.

    2014-01-01

    The JavaScript Sequence Alignment Viewer (JSAV) is designed as a simple-to-use JavaScript component for displaying sequence alignments on web pages. The display of sequences is highly configurable with options to allow alternative coloring schemes, sorting of sequences and ’dotifying’ repeated amino acids. An option is also available to submit selected sequences to another web site, or to other JavaScript code. JSAV is implemented purely in JavaScript making use of the JQuery and JQuery-UI libraries. It does not use any HTML5-specific options to help with browser compatibility. The code is documented using JSDOC and is available from http://www.bioinf.org.uk/software/jsav/. PMID:25653836

  16. Viewing multiple sequence alignments with the JavaScript Sequence Alignment Viewer (JSAV).

    PubMed

    Martin, Andrew C R

    2014-01-01

    The JavaScript Sequence Alignment Viewer (JSAV) is designed as a simple-to-use JavaScript component for displaying sequence alignments on web pages. The display of sequences is highly configurable with options to allow alternative coloring schemes, sorting of sequences and 'dotifying' repeated amino acids. An option is also available to submit selected sequences to another web site, or to other JavaScript code. JSAV is implemented purely in JavaScript making use of the JQuery and JQuery-UI libraries. It does not use any HTML5-specific options to help with browser compatibility. The code is documented using JSDOC and is available from http://www.bioinf.org.uk/software/jsav/.

  17. Mars Pathfinder Landing Site Workshop 2: Characteristics of the Ares Vallis Region and Field Trips in the Channeled Scabland, Washington

    NASA Technical Reports Server (NTRS)

    Golombek, M. P. (Editor); Edgett, K. S. (Editor); Rice, J. W., Jr. (Editor)

    1995-01-01

    This volume, the first of two comprising the technical report for this workshop, contains papers that have been accepted for presentation at the Mars Pathfinder Landing Site Workshop 2: Characteristics of the Ares Vallis Region, September 24-30, 1995, in Spokane, Washington. The Mars Pathfinder Project received a new start in October 1993 as one of the next missions in NASA's long-term Mars exploration program. The mission involves landing a single vehicle on the surface of Mars in 1997. The project is one of the first Discovery-class missions and is required to be a quick, low-cost mission and achieve a set of significant but focused engineering, science, and technology objectives. The primary objective is to demonstrate a low-cost cruise, entry, descent, and landing system required to place a payload on the martian surface in a safe, operational configuration. Additional objectives include the deployment and operation of various science instruments and a microrover. Pathfinder paves the way for a cost-effective implementation of future Mars lander missions. Also included in this volume is the field trip guide to the Channeled Scabland and Missoula Lake Break-out. On July 4, 1997, Mars Pathfinder is scheduled to land near 19.5 deg N, 32.8 deg W, in a portion of Ares Vallis. The landing ellipse covers a huge (100 x 200 km) area that appears to include both depositional and erosional landforms created by one or more giant, catastrophic floods. One of the best known terrestrial analogs to martian outflow channels (such as Ares Vallis) is the region known as the Channeled Scabland. The field trip guide describes some of the geomorphological features of the Channeled Scabland and adjacent Lake Missoula break-out area near Lake Pend Oreille, Idaho.

  18. A Geostationary Earth Orbit Satellite Model Using Easy Java Simulation

    ERIC Educational Resources Information Center

    Wee, Loo Kang; Goh, Giam Hwee

    2013-01-01

    We develop an Easy Java Simulation (EJS) model for students to visualize geostationary orbits near Earth, modelled using a Java 3D implementation of the EJS 3D library. The simplified physics model is described and simulated using a simple constant angular velocity equation. We discuss four computer model design ideas: (1) a simple and realistic…

  19. Pathfinder: The Geospatial Intelligence Magazine Serving the Front Line, March/April 2009. Volume 7, Number 2

    DTIC Science & Technology

    2009-04-01

    ADDRESS(ES) National Geospatial-Intelligence Agency,4600 Sangamore Rd Mail Stop D-54,Bethesda,MD, 20816 -5003 8. PERFORMING ORGANIZATION REPORT NUMBER 9...Bethesda, MD 20816 -5003 Telephone: (301) 227-7388, DSN 287-7388 E-mail: pathfinder@nga.mil Director Vice Adm. Robert B. Murrett, U.S. Navy Deputy

  20. Multimedia consultation session recording and playback using Java-based browser in global PACS

    NASA Astrophysics Data System (ADS)

    Martinez, Ralph; Shah, Pinkesh J.; Yu, Yuan-Pin

    1998-07-01

    The current version of the Global PACS software system uses a Java-based implementation of the Remote Consultation and Diagnosis (RCD) system. The Java RCD includes a multimedia consultation session between physicians that includes text, static image, image annotation, and audio data. The JAVA RCD allows 2-4 physicians to collaborate on a patient case. It allows physicians to join the session via WWW Java-enabled browsers or stand alone RCD application. The RCD system includes a distributed database archive system for archiving and retrieving patient and session data. The RCD system can be used for store and forward scenarios, case reviews, and interactive RCD multimedia sessions. The RCD system operates over the Internet, telephone lines, or in a private Intranet. A multimedia consultation session can be recorded, and then played back at a later time for review, comments, and education. A session can be played back using Java-enabled WWW browsers on any operating system platform. The JAVA RCD system shows that a case diagnosis can be captured digitally and played back with the original real-time temporal relationships between data streams. In this paper, we describe design and implementation of the RCD session playback.

  1. The state of the Java universe

    ScienceCinema

    Gosling, James

    2018-05-22

    Speaker Bio: James Gosling received a B.Sc. in computer science from the University of Calgary, Canada in 1977. He received a Ph.D. in computer science from Carnegie-Mellon University in 1983. The title of his thesis was The Algebraic Manipulation of Constraints. He has built satellite data acquisition systems, a multiprocessor version of UNIX®, several compilers, mail systems, and window managers. He has also built a WYSIWYG text editor, a constraint-based drawing editor, and a text editor called Emacs, for UNIX systems. At Sun his early activity was as lead engineer of the NeWS window system. He did the original design of the Java programming language and implemented its original compiler and virtual machine. He has recently been a contributor to the Real-Time Specification for Java.

  2. Building Educational Programs for the Australian Square Kilometre Array Pathfinder

    NASA Astrophysics Data System (ADS)

    Hollow, R.; Hobbs, G.

    2010-08-01

    The Australian Square Kilometre Array Pathfinder (ASKAP) will be an array of 36 antennas in Western Australia, each 12-m in diameter, and is due for operation in 2013. With a large instantaneous field-of-view ASKAP will survey the whole sky faster than existing radio telescopes, producing massive data sets. Government funding for ASKAP was contingent on it being available for education purposes, providing an exciting opportunity to develop innovative education projects for schools and citizen science. Building on the PULSE@Parkes program we plan to have a range of activities and resources, providing scope for student investigations. Challenges and educational opportunities are discussed.

  3. Developing a java android application of KMV-Merton default rate model

    NASA Astrophysics Data System (ADS)

    Yusof, Norliza Muhamad; Anuar, Aini Hayati; Isa, Norsyaheeda Natasha; Zulkafli, Sharifah Nursyuhada Syed; Sapini, Muhamad Luqman

    2017-11-01

    This paper presents a developed java android application for KMV-Merton model in predicting the defaut rate of a firm. Predicting default rate is essential in the risk management area as default risk can be immediately transmitted from one entity to another entity. This is the reason default risk is known as a global risk. Although there are several efforts, instruments and methods used to manage the risk, it is said to be insufficient. To the best of our knowledge, there has been limited innovation in developing the default risk mathematical model into a mobile application. Therefore, through this study, default risk is predicted quantitatively using the KMV-Merton model. The KMV-Merton model has been integrated in the form of java program using the Android Studio Software. The developed java android application is tested by predicting the levels of default risk of the three different rated companies. It is found that the levels of default risk are equivalent to the ratings of the respective companies. This shows that the default rate predicted by the KMV-Merton model using the developed java android application can be a significant tool to the risk mangement field. The developed java android application grants users an alternative to predict level of default risk within less procedure.

  4. Development of a Long-Range Gliding Underwater Vehicle Utilizing Java Sun SPOT Technology

    DTIC Science & Technology

    2008-09-01

    release; distribution is unlimited DEVELOPMENT OF A LONG-RANGE GLIDING UNMANNED UNDERWATER VEHICLE UTILIZING JAVA SUN SPOT TECHNOLOGY by...TYPE AND DATES COVERED Master’s Thesis 4. TITLE AND SUBTITLE: Development of a Long-Range Gliding Underwater Vehicle Utilizing Java Sun SPOT...vehicle. Further work is needed to demonstrate the efficiency and effectiveness of this design. 15. NUMBER OF PAGES 117 14. SUBJECT TERMS Java

  5. Towards Crustal Structure of Java Island (Sunda Arc) from Ambient Seismic Noise Tomography

    NASA Astrophysics Data System (ADS)

    Widiyantoro, Sri; Zulhan, Zulfakriza; Martha, Agustya; Saygin, Erdinc; Cummins, Phil

    2015-04-01

    In our previous studies, P- and S-wave velocity structures beneath the Sunda Arc were successfully imaged using a global data set and a nested regional-global tomographic method was employed. To obtain more detailed P- and S-wave velocity structures beneath Java, in the central part of the Sunda Arc, we then used local data sets, i.e. newline from the MErapi AMphibious EXperiment (MERAMEX) and the Meteorological, Climatological and Geophysical Agency (MCGA), as well as employed a double-difference technique for tomographic imaging. The results of the imaging show e.g. that P- and S-wave velocities are significantly reduced in the uppermost mantle beneath central Java. In order to obtain detailed crustal structure information beneath Java, the Ambient Noise Tomography (ANT) method was used. The application of this method to the MERAMEX data has produced a good crustal model beneath central Java. We continue our experiment to image crustal structure of eastern Java. We have used seismic waveform data recorded by 22 MCGA stationary seismographic stations and 25 portable seismographs installed for 2 to 8 weeks. The data were processed to obtain waveforms of cross-correlated noise between pairs of seismographic stations. Our preliminary results presented here indicate that the Kendeng zone, an area of low gravity anomaly, is associated with a low velocity zone. On the other hand, the southern mountain range, which has a high gravity anomaly, is related to a high velocity anomaly (as shown by our tomographic images). In future work we will install more seismographic stations in eastern Java as well as in western Java to conduct ANT imaging for the whole of Java Island. The expected result combined with the mantle velocity models resulting from our body wave tomography will allow for accurate location of earthquake hypocenters and determination of regional tectonic structures. Both of these are valuable for understanding seismic hazard in Java, the most densely populated

  6. JAVA CLASSES FOR NONPROCEDURAL VARIOGRAM MONITORING. JOURNAL OF COMPUTERS AND GEOSCIENCE

    EPA Science Inventory

    NRMRL-ADA-00229 Faulkner*, B.P. Java Classes for Nonprocedural Variogram Monitoring. Journal of Computers and Geosciences ( Elsevier Science, Ltd.) 28:387-397 (2002). EPA/600/J-02/235. A set of Java classes was written for variogram modeling to support research for US EPA's Reg...

  7. Wake Flow About the Mars Pathfinder Entry Vehicle

    NASA Technical Reports Server (NTRS)

    Mitcheltree, R. A.; Gnoffo, P. A.

    1995-01-01

    A computational approach is used to describe the aerothermodynamics of the Mars Pathfinder vehicle entering the Mars atmosphere at the maximum heating and maximum deceleration points in its trajectory. Ablating and nonablating boundary conditions are developed which produce maximum recombination of CO2 on the surface. For the maximum heating trajectory point, an axisymmetric, nonablating calculation predicts a stagnation-point value for the convective heating of 115 W/cm(exp 2). Radiative heating estimates predict an additional 5-12 W/cm(exp 2) at the stagnation point. Peak convective heating on the afterbody occurs on the vehicle's flat stern with a value of 5.9% of the stagnation value. The forebody flow exhibits chemical nonequilibrium behavior, and the flow is frozen in the near wake. Including ablation injection on the forebody lowers the stagnation-point convective heating 18%.

  8. Detection and Characterization of Micrometeoroid Impacts on LISA Pathfinder

    NASA Astrophysics Data System (ADS)

    Hourihane, S.; Littenberg, T.; Baker, J. G.; Pagane, N.; Slutsky, J. P.; Thorpe, J. I.

    2017-12-01

    LISA Pathfinder (LPF) was a joint ESA/NASA technology demonstration mission for the Laser Interferometer Space Antenna (LISA) gravitational wave observatory. LPF, the most sensitive accelerometer ever flown in space, was launched in December 2015 and successfully concluded its mission in July 2017. Due in part to LPFs success, LISA was selected by the European Space Agency for launch in the early 2030s. An ancillary benefit of LPFs capabilities made it a sensitive detector of micrometeoroid impacts. We report on the capabilities of LPF to detect and characterize impacts, and progress towards using those inferences to advance our understanding of the micrometeoroid environment in the solar system. In doing so, we assess the prospect of space-based gravitational wave observatories as micrometeoroid detection instruments.

  9. A Test Generation Framework for Distributed Fault-Tolerant Algorithms

    NASA Technical Reports Server (NTRS)

    Goodloe, Alwyn; Bushnell, David; Miner, Paul; Pasareanu, Corina S.

    2009-01-01

    Heavyweight formal methods such as theorem proving have been successfully applied to the analysis of safety critical fault-tolerant systems. Typically, the models and proofs performed during such analysis do not inform the testing process of actual implementations. We propose a framework for generating test vectors from specifications written in the Prototype Verification System (PVS). The methodology uses a translator to produce a Java prototype from a PVS specification. Symbolic (Java) PathFinder is then employed to generate a collection of test cases. A small example is employed to illustrate how the framework can be used in practice.

  10. PrismTech Data Distribution Service Java API Evaluation

    NASA Technical Reports Server (NTRS)

    Riggs, Cortney

    2008-01-01

    My internship duties with Launch Control Systems required me to start performance testing of an Object Management Group's (OMG) Data Distribution Service (DDS) specification implementation by PrismTech Limited through the Java programming language application programming interface (API). DDS is a networking middleware for Real-Time Data Distribution. The performance testing involves latency, redundant publishers, extended duration, redundant failover, and read performance. Time constraints allowed only for a data throughput test. I have designed the testing applications to perform all performance tests when time is allowed. Performance evaluation data such as megabits per second and central processing unit (CPU) time consumption were not easily attainable through the Java programming language; they required new methods and classes created in the test applications. Evaluation of this product showed the rate that data can be sent across the network. Performance rates are better on Linux platforms than AIX and Sun platforms. Compared to previous C++ programming language API, the performance evaluation also shows the language differences for the implementation. The Java API of the DDS has a lower throughput performance than the C++ API.

  11. Java PathExplorer: A Runtime Verification Tool

    NASA Technical Reports Server (NTRS)

    Havelund, Klaus; Rosu, Grigore; Clancy, Daniel (Technical Monitor)

    2001-01-01

    We describe recent work on designing an environment called Java PathExplorer for monitoring the execution of Java programs. This environment facilitates the testing of execution traces against high level specifications, including temporal logic formulae. In addition, it contains algorithms for detecting classical error patterns in concurrent programs, such as deadlocks and data races. An initial prototype of the tool has been applied to the executive module of the planetary Rover K9, developed at NASA Ames. In this paper we describe the background and motivation for the development of this tool, including comments on how it relates to formal methods tools as well as to traditional testing, and we then present the tool itself.

  12. Review of subduction and its association with geothermal system in Sumatera-Java

    NASA Astrophysics Data System (ADS)

    Ladiba, A. F.; Putriyana, L.; Sibarani, B. br.; Soekarno, H.

    2017-12-01

    Java and Sumatera have the largest geothermal resources in Indonesia, in which mostly are spatially associated with volcanoes of subduction zones. However, those volcanoes are not distributed in a regular pattern due to the difference of subduction position. Subduction position in java is relatively more perpendicular to the trench than in Sumatera. In addition, Java has a concentration of large productive geothermal field with vapour dominated system in the western part of Java, which may be caused by the various subduction dip along the island. In order to understand the relationship between the subduction process and geothermal system in the subduction zone volcanoes, we examined several kinematic parameters of subduction that potentially relevant to the formation of geothermal system in overriding plate such as slab dip, subduction rate, and direction of subduction. Data and information regarding tectonic setting of Sumatera and Java and productive geothermal field in Sumatera and Java have been collected and evaluated. In conclusion, there are three condition that caused the geothermal fluid to be more likely being in vapour phase, which are: the subduction is in an orthogonal position, the slab dip is high, and rate of subduction is high. Although there are plenty researches of subduction zone volcanoes, only a few of them present information about its formation and implication to the geothermal system. The result of this study may be used as reference in exploration of geothermal field in mutual geologic environment.

  13. In-orbit performance of the LISA Pathfinder drag-free and attitude control system

    NASA Astrophysics Data System (ADS)

    Schleicher, A.; Ziegler, T.; Schubert, R.; Brandt, N.; Bergner, P.; Johann, U.; Fichter, W.; Grzymisch, J.

    2018-04-01

    LISA Pathfinder is a technology demonstrator mission that was funded by the European Space Agency and that was launched on December 3, 2015. LISA Pathfinder has been conducting experiments to demonstrate key technologies for the gravitational wave observatory LISA in its operational orbit at the L1 Lagrange point of the Earth-Sun system until final switch off on July 18, 2017. These key technologies include the inertial sensors, the optical metrology system, a set of µ-propulsion cold gas thrusters and in particular the high performance drag-free and attitude control system (DFACS) that controls the spacecraft in 15 degrees of freedom during its science phase. The main goal of the DFACS is to shield the two test masses inside the inertial sensors from all external disturbances to achieve a residual differential acceleration between the two test masses of less than 3 × 10-14 m/s2/√Hz over the frequency bandwidth of 1-30 mHz. This paper focuses on two important aspects of the DFACS that has been in use on LISA Pathfinder: the DFACS Accelerometer mode and the main DFACS Science mode. The Accelerometer mode is used to capture the test masses after release into free flight from the mechanical grabbing mechanism. The main DFACS Science Mode is used for the actual drag-free science operation. The DFACS control system has very strong interfaces with the LISA Technology Package payload which is a key aspect to master the design, development, and analysis of the DFACS. Linear as well as non-linear control methods are applied. The paper provides pre-flight predictions for the performance of both control modes and compares these predictions to the performance that is currently achieved in-orbit. Some results are also discussed for the mode transitions up to science mode, but the focus of the paper is on the Accelerometer mode performance and on the performance of the Science mode in steady state. Based on the achieved results, some lessons learnt are formulated to extend

  14. [Radiology information system using HTML, JavaScript, and Web server].

    PubMed

    Sone, M; Sasaki, M; Oikawa, H; Yoshioka, K; Ehara, S; Tamakawa, Y

    1997-12-01

    We have developed a radiology information system using intranet techniques, including hypertext markup language, JavaScript, and Web server. JavaScript made it possible to develop an easy-to-use application, as well as to reduce network traffic and load on the server. The system we have developed is inexpensive and flexible, and its development and maintenance are much easier than with the previous system.

  15. Experiments and Spectral Studies of Martian Volcanic Rocks: Implications for the Origin of Pathfinder Rocks and Soils

    NASA Technical Reports Server (NTRS)

    Rutherford, Malcolm J.; Mustard, Jack; Weitz, Catherine

    2002-01-01

    The composition and spectral properties of the Mars Pathfinder rocks and soils together with the identification of basaltic and andesitic Mars terrains based on Thermal Emission Spectrometer (TES) data raised interesting questions regarding the nature and origin of Mars surface rocks. We have investigated the following questions: (1) are the Pathfinder rocks igneous and is it possible these rocks could have formed by known igneous processes, such as equilibrium or fractional crystallization, operating within SNC magmas known to exist on Mars? If it is possible, what P (depth) and PH2O conditions are required? (2) whether TES-based interpretations of plagioclase-rich basalt and andesitic terrains in the south and north regions of Mars respectively are unique. Are the surface compositions of these regions plagioclase-rich, possibly indicating the presence of old AI-rich crust of Mars, or are the spectra being affected by something like surface weathering processes that might determine the spectral pyroxene to plagioclase ratio?

  16. Study on Design and Implementation of JAVA Programming Procedural Assessment Standard

    ERIC Educational Resources Information Center

    Tingting, Xu; Hua, Ma; Xiujuan, Wang; Jing, Wang

    2015-01-01

    The traditional JAVA course examination is just a list of questions from which we cannot know students' skills of programming. According to the eight abilities in curriculum objectives, we designed an assessment standard of JAVA programming course that is based on employment orientation and apply it to practical teaching to check the teaching…

  17. New Insights into the Geology of the Mars Pathfinder Landing Site from Spectral and Morphologic Analysis of the 12-Color Superpan Panorama

    NASA Technical Reports Server (NTRS)

    Murchie, S.; Barnouin-Jha, O.; Barnouin-Jha, K.; Bishop, J.; Johnson, J.; McSween, H.; Morris, R.

    2003-01-01

    New analyses of rocks and soils at the Mars Pathfinder landing site have been completed using the full Imager for Mars Pathfinder (IMP) 12- color SuperPan panorama. These revise early conclusions that rocks at the landing site are a single lithology coated only by windblown dust. We conclude instead that there is also a second lithology in addition to the dominant gray rock, and that it is consistent with highlands material excavated from beneath a thin veneer of northern plains; that many rocks have cemented coatings that formed during an early, probably wetter climate; and that young rocks excavated after coating formation ceased are mainly breccias or conglomerates.

  18. AGU Pathfinder: Career and Professional Development Resources for Earth and Space Scientists

    NASA Astrophysics Data System (ADS)

    Harwell, D. E.; Asher, P. M.; Hankin, E. R.; Janick, N. G.; Marasco, L.

    2017-12-01

    The American Geophysical Union (AGU) is committed to inspiring and educating present and future generations of diverse, innovative, and creative Earth and space scientists. To meet our commitment, AGU provides career and educational resources, webinars, mentoring, and support for students and professionals at each level of development to reduce barriers to achievement and to promote professional advancement. AGU is also working with other organizations and educational institutions to collaborate on projects benefiting the greater geoscience community. The presentation will include an overview of current Pathfinder efforts, collaborative efforts, and an appeal for additional partnerships.

  19. Wedge geometry, frictional properties and interseismic coupling of the Java megathrust

    NASA Astrophysics Data System (ADS)

    Koulali, Achraf; McClusky, Simon; Cummins, Phil; Tregoning, Paul

    2018-06-01

    The mechanical interaction between rocks at fault zones is a key element for understanding how earthquakes nucleate and propagate. Therefore, estimating frictional properties along fault planes allows us to infer the degree of elastic strain accumulation throughout the seismic cycle. The Java subduction zone is an active plate boundary where high seismic activity has long been documented. However, very little is known about the seismogenic processes of the megathrust, especially its shallowest portion where onshore geodetic networks are insensitive to recover the pattern of elastic strain. Here, we use the geometry of the offshore accretionary prism to infer frictional properties along the Java subduction zone, using Coulomb critical taper theory. We show that large portions of the inner wedge in the eastern part of the Java subduction megathrust are in a critical state, where the wedge is on the verge of failure everywhere. We identify four clusters with an internal coefficient of friction μint of ∼ 0.8 and hydrostatic pore pressure within the wedge. The average effective coefficient of friction ranges between 0.3 and 0.4, reflecting a strong décollement. Our results also show that the aftershock sequence of the 1994 Mw 7.9 earthquake halted adjacent to a critical segment of the wedge, suggesting that critical taper wedge areas in the eastern Java subduction interface may behave as a permanent barrier to large earthquake rupture. In contrast, in western Java topographic slope and slab dip profiles suggest that the wedge is mechanically stable, i.e deformation is restricted to sliding along the décollement, and likely to coincide with a seismogenic portion of the megathrust. We discuss the seismic hazard implications and highlight the importance of considering the segmentation of the Java subduction zone when assessing the seismic hazard of this region.

  20. Collaborative Scheduling Using JMS in a Mixed Java and .NET Environment

    NASA Technical Reports Server (NTRS)

    Wang, Yeou-Fang; Wax, Allan; Lam, Ray; Baldwin, John; Borden, Chet

    2006-01-01

    A viewgraph presentation to demonstrate collaborative scheduling using Java Message Service (JMS) in a mixed Java and .Net environment is given. The topics include: 1) NASA Deep Space Network scheduling; 2) Collaborative scheduling concept; 3) Distributed computing environment; 4) Platform concerns in a distributed environment; 5) Messaging and data synchronization; and 6) The prototype.

  1. Rock Statistics at the Mars Pathfinder Landing Site, Roughness and Roving on Mars

    NASA Technical Reports Server (NTRS)

    Haldemann, A. F. C.; Bridges, N. T.; Anderson, R. C.; Golombek, M. P.

    1999-01-01

    Several rock counts have been carried out at the Mars Pathfinder landing site producing consistent statistics of rock coverage and size-frequency distributions. These rock statistics provide a primary element of "ground truth" for anchoring remote sensing information used to pick the Pathfinder, and future, landing sites. The observed rock population statistics should also be consistent with the emplacement and alteration processes postulated to govern the landing site landscape. The rock population databases can however be used in ways that go beyond the calculation of cumulative number and cumulative area distributions versus rock diameter and height. Since the spatial parameters measured to characterize each rock are determined with stereo image pairs, the rock database serves as a subset of the full landing site digital terrain model (DTM). Insofar as a rock count can be carried out in a speedier, albeit coarser, manner than the full DTM analysis, rock counting offers several operational and scientific products in the near term. Quantitative rock mapping adds further information to the geomorphic study of the landing site, and can also be used for rover traverse planning. Statistical analysis of the surface roughness using the rock count proxy DTM is sufficiently accurate when compared to the full DTM to compare with radar remote sensing roughness measures, and with rover traverse profiles.

  2. The kinematics of crustal deformation in Java from GPS observations: Implications for fault slip partitioning

    NASA Astrophysics Data System (ADS)

    Koulali, A.; McClusky, S.; Susilo, S.; Leonard, Y.; Cummins, P.; Tregoning, P.; Meilano, I.; Efendi, J.; Wijanarto, A. B.

    2017-01-01

    Our understanding of seismic risk in Java has been focused primarily on the subduction zone, where the seismic records during the last century have shown the occurrence of a number of tsunami earthquakes. However, the potential of the existence of active crustal structures within the island of Java itself is less well known. Historical archives show the occurrence of several devastating earthquake ruptures north of the volcanic arc in west Java during the 18th and the 19th centuries, suggesting the existence of active faults that need to be identified in order to guide seismic hazard assessment. Here we use geodetic constraints from the Global Positioning System (GPS) to quantify the present day crustal deformation in Java. The GPS velocities reveal a homogeneous counterclockwise rotation of the Java Block independent of Sunda Block, consistent with a NE-SW convergence between the Australian Plate and southeast Asia. Continuous GPS observations show a time-dependent change in the linear rate of surface motion in west Java, which we interpret as an ongoing long-term post-seismic deformation following the 2006 Mw 7.7 Java earthquake. We use an elastic block model in combination with a viscoelastic model to correct for this post-seismic transient and derive the long-term inter-seismic velocity, which we interpret as a combination of tectonic block motions and crustal faults strain related deformation. There is a north-south gradient in the resulting velocity field with a decrease in the magnitude towards the North across the Kendeng Thrust in the east and the Baribis Thrust in the west. We suggest that the Baribis Thrust is active and accommodating a slow relative motion between Java and the Sunda Block at about 5 ± 0.2 mm /yr. We propose a kinematic model of convergence of the Australian Plate and the Sunda Block, involving a slip partitioning between the Java Trench and a left-lateral structure extending E-W along Java with most of the convergence being

  3. SPV: a JavaScript Signaling Pathway Visualizer.

    PubMed

    Calderone, Alberto; Cesareni, Gianni

    2018-03-24

    The visualization of molecular interactions annotated in web resources is useful to offer to users such information in a clear intuitive layout. These interactions are frequently represented as binary interactions that are laid out in free space where, different entities, cellular compartments and interaction types are hardly distinguishable. SPV (Signaling Pathway Visualizer) is a free open source JavaScript library which offers a series of pre-defined elements, compartments and interaction types meant to facilitate the representation of signaling pathways consisting of causal interactions without neglecting simple protein-protein interaction networks. freely available under Apache version 2 license; Source code: https://github.com/Sinnefa/SPV_Signaling_Pathway_Visualizer_v1.0. Language: JavaScript; Web technology: Scalable Vector Graphics; Libraries: D3.js. sinnefa@gmail.com.

  4. JAVA CLASSES FOR NONPROCEDURAL VARIOGRAM MONITORING

    EPA Science Inventory

    A set of Java classes was written for variogram modeling to support research for US EPA's Regional Vulnerability Assessment Program (ReVA). The modeling objectives of this research program are to use conceptual programming tools for numerical analysis for regional risk assessm...

  5. BioLayout(Java): versatile network visualisation of structural and functional relationships.

    PubMed

    Goldovsky, Leon; Cases, Ildefonso; Enright, Anton J; Ouzounis, Christos A

    2005-01-01

    Visualisation of biological networks is becoming a common task for the analysis of high-throughput data. These networks correspond to a wide variety of biological relationships, such as sequence similarity, metabolic pathways, gene regulatory cascades and protein interactions. We present a general approach for the representation and analysis of networks of variable type, size and complexity. The application is based on the original BioLayout program (C-language implementation of the Fruchterman-Rheingold layout algorithm), entirely re-written in Java to guarantee portability across platforms. BioLayout(Java) provides broader functionality, various analysis techniques, extensions for better visualisation and a new user interface. Examples of analysis of biological networks using BioLayout(Java) are presented.

  6. Prevalence of antibodies to Japanese encephalitis virus among pigs in Bali and East Java, Indonesia, 2008.

    PubMed

    Yamanaka, Atsushi; Mulyatno, Kris Cahyo; Susilowati, Helen; Hendrianto, Eryk; Utsumi, Takako; Amin, Mochamad; Lusida, Maria Inge; Soegijanto, Soegeng; Konishi, Eiji

    2010-01-01

    Japanese encephalitis virus (JEV) is a fatal disease in Asia. Pigs are considered to be the effective amplifying host for JEV in the peridomestic environment. Bali Island and Java Island in Indonesia provide a model to assess the effect of pigs on JEV transmission, since the pig density is nearly 100-fold higher in Bali than Java, while the geographic and climatologic environments are equivalent in these areas. We surveyed antibodies to JEV among 123 pigs in Mengwi (Bali) and 96 pigs in Tulungagung (East Java) in 2008 by the hemagglutination-inhibition (HAI) test. Overall prevalences were 49% in Bali and 6% in Java, with a significant difference between them (P < 0.001). Monthly infection rates estimated from age-dependent antibody prevalences were 11% in Bali and 2% in Java. In addition, 2-mercaptoethanol-sensitive antibodies were found only from Bali samples. Further, the average HAI antibody titer obtained from positive samples was significantly higher in Bali (1:52) than Java (1:10; P < 0.001). These results indicated that JEV transmission in nature is more active in Bali than East Java.

  7. Observations at the Mars Pathfinder site: Do they provide "unequivocal" evidence of catastrophic flooding?

    USGS Publications Warehouse

    Chapman, M.G.; Kargel, J.S.

    1999-01-01

    After Mars Pathfinder landed at the mouth of Ares Vallis, a large channel that drains into the Chryse Planitia basin, the mission reports unanimously supported the interpretation that the lander site is the locus of catastrophic flooding by noting that all aspects of the scene are consistent with this interpretation. However, alternatives cannot be ruled out by any site observations, as all aspects of the scene are equally consistent with other interpretations of origin, namely, ice and mass-flow processes subsequently modified by wind erosion. The authors discuss alternative explanations for the geologic history of the channel based on a regional view of the circum-Chryse channels from Viking images (our best broad-scale information to date) and the local view from the recent Pathfinder landing site. Mega-indicators of channel origin, the regional geomorphology, geology, and planetary climatic conditions, taken together suggest some combination of flood, mass flow, glacial, and eolian processes. The macro-indicators of channel origin (sedimentologic) are also not indicative of one process of emplacement, either as single criteria or taken cumulatively. Finally, the micro-indicators of channel origin (geochemical and mineralogic composition) do not provide very tight constraints on the deposits' possible origins other than that water was in some way involved.

  8. Parallel programming with Easy Java Simulations

    NASA Astrophysics Data System (ADS)

    Esquembre, F.; Christian, W.; Belloni, M.

    2018-01-01

    Nearly all of today's processors are multicore, and ideally programming and algorithm development utilizing the entire processor should be introduced early in the computational physics curriculum. Parallel programming is often not introduced because it requires a new programming environment and uses constructs that are unfamiliar to many teachers. We describe how we decrease the barrier to parallel programming by using a java-based programming environment to treat problems in the usual undergraduate curriculum. We use the easy java simulations programming and authoring tool to create the program's graphical user interface together with objects based on those developed by Kaminsky [Building Parallel Programs (Course Technology, Boston, 2010)] to handle common parallel programming tasks. Shared-memory parallel implementations of physics problems, such as time evolution of the Schrödinger equation, are available as source code and as ready-to-run programs from the AAPT-ComPADRE digital library.

  9. Tsunami Disaster Risk Assessment and Prevention in West Java, Indonesia

    NASA Astrophysics Data System (ADS)

    Deng, H.; Harris, R. A.; Horns, D. M.; Yulianto, E.; Bunds, M. P.; Prasetyadi, C.; Emmett, C.; Hall, S.

    2016-12-01

    Java Island, Indonesia is the most populated area and one of the most tectonically active coastal nations on Earth. This island is the volcanic arc and accretionary wedge of the subduction zone of the Sunda and the Australia plate, where the Java Trench is located. However, the Java Trench hasn't had a mega or giant earthquake for at least 430 years according to historical records. Up to 30 m of slip may have accumulated on the subduction zone interface during this time, which is enough to produce a Mw 9.0 earthquake and large tsunami. One of the largest seismic gaps along the Sunda Arc is a 640 km section of the coast of west Java. The largest population center in this region is Pelabuhan Ratu, with is partially built on ridge and swale coastal plain topography. Candidate tsunami deposits were found in swales that may indicate inundation up to 1 km inland. Numerical modeling of various possible tsunami scenarios indicate that the configuration of the coastline may amplify a tsunami and cause high run-up in the most populated areas or the coast. Also, data from questionnaire surveys administered in Pelabuhan Ratu show a lack of awareness about how tsunamis threaten these communities and plans of action.

  10. Data mining for clustering naming of the village at Java Island

    NASA Astrophysics Data System (ADS)

    Setiawan Abdullah, Atje; Nurani Ruchjana, Budi; Hidayat, Akik; Akmal; Setiana, Deni

    2017-10-01

    Clustering of query based data mining to identify the meaning of the naming of the village in Java island, done by exploring the database village with three categories namely: prefix in the naming of the village, syllables contained in the naming of the village, and full word naming of the village which is actually used. While syllables contained in the naming of the village are classified by the behaviour of the culture and character of each province that describes the business, feelings, circumstances, places, nature, respect, plants, fruits, and animals. Sources of data used for the clustering of the naming of the village on the island of Java was obtained from Geospatial Information Agency (BIG) in the form of a complete village name data with the coordinates in six provinces in Java, which is arranged in a hierarchy of provinces, districts / cities, districts and villages. The research method using KDD (Knowledge Discovery in Database) through the process of preprocessing, data mining and postprocessing to obtain knowledge. In this study, data mining applications to facilitate the search query based on the name of the village, using Java software. While the contours of a map is processed using ArcGIS software. The results of the research can give recommendations to stakeholders such as the Department of Tourism to describe the meaning of the classification of naming the village according to the character in each province at Java island.

  11. DSMC Simulations of Blunt Body Flows for Mars Entries: Mars Pathfinder and Mars Microprobe Capsules

    NASA Technical Reports Server (NTRS)

    Moss, James N.; Wilmoth, Richard G.; Price, Joseph M.

    1997-01-01

    The hypersonic transitional flow aerodynamics of the Mars Pathfinder and Mars Microprobe capsules are simulated with the direct simulation Monte Carlo method. Calculations of axial, normal, and static pitching coefficients were obtained over an angle of attack range comparable to actual flight requirements. Comparisons are made with modified Newtonian and free-molecular-flow calculations. Aerothermal results were also obtained for zero incidence entry conditions.

  12. Developing Interactive Educational Engineering Software for the World Wide Web with Java.

    ERIC Educational Resources Information Center

    Reed, John A.; Afjeh, Abdollah A.

    1998-01-01

    Illustrates the design and implementation of a Java applet for use in educational propulsion engineering curricula. The Java Gas Turbine Simulator applet provides an interactive graphical environment which allows the rapid, efficient construction and analysis of arbitrary gas turbine systems. The simulator can be easily accessed from the World…

  13. Annual risks of tuberculous infection in East Nusa Tenggara and Central Java Provinces, Indonesia.

    PubMed

    Bachtiar, A; Miko, T Y; Machmud, R; Besral, B; Yudarini, P; Mehta, F; Chadha, V K; Basri, C; Loprang, F; Jitendra, R

    2009-01-01

    East Nusa Tenggara (NTT) and Central Java Provinces, Indonesia. To estimate the average annual risk of tuberculous infection (ARTI) among school children aged 6-9 years in each province. Children attending Classes 1-4 in 65 schools in NTT and 79 in Central Java, selected by two-stage sampling, were intradermally administered 2 tuberculin units of purified protein derivative RT23 with Tween 80 on the mid-volar aspect of the left forearm. The maximum transverse diameter of induration was measured 72 h later. The analysis was carried out among 5479 satisfactorily test-read children in NTT and 6943 in Central Java. One hundred and fifty-five new sputum smear-positive pulmonary tuberculosis (PTB) cases (78 in NTT and 77 in Central Java) were also tuberculin tested. Based on the frequency distribution of reaction sizes among the children and PTB cases, the prevalence of infection was estimated by the mirror-image method using the modes of tuberculous reactions at 15 and 17 mm. Using the 15 mm mode, ARTI was estimated at 1% in NTT and 0.9% in Central Java. Using the 17 mm mode, ARTI was estimated at 0.5% in NTT and 0.4% in Central Java. Transmission of tuberculous infection may be further reduced by intensification of tuberculosis control efforts.

  14. Java 3D Interactive Visualization for Astrophysics

    NASA Astrophysics Data System (ADS)

    Chae, K.; Edirisinghe, D.; Lingerfelt, E. J.; Guidry, M. W.

    2003-05-01

    We are developing a series of interactive 3D visualization tools that employ the Java 3D API. We have applied this approach initially to a simple 3-dimensional galaxy collision model (restricted 3-body approximation), with quite satisfactory results. Running either as an applet under Web browser control, or as a Java standalone application, this program permits real-time zooming, panning, and 3-dimensional rotation of the galaxy collision simulation under user mouse and keyboard control. We shall also discuss applications of this technology to 3-dimensional visualization for other problems of astrophysical interest such as neutron star mergers and the time evolution of element/energy production networks in X-ray bursts. *Managed by UT-Battelle, LLC, for the U.S. Department of Energy under contract DE-AC05-00OR22725.

  15. Structural analyses of the JPL Mars Pathfinder impact

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Gwinn, K.W.

    1994-12-31

    The purpose of this paper is to demonstrate that finite element analysis can be used in the design process for high performance fabric structures. These structures exhibit extreme geometric nonlinearity; specifically, the contact and interaction of fabric surfaces with the large deformation which necessarily results from membrane structures introduces great complexity to analyses of this type. All of these features are demonstrated here in the analysis of the Jet Propulsion Laboratory (JPL) Mars Pathfinder impact onto Mars. This lander system uses airbags to envelope the lander experiment package, protecting it with large deformation upon contact. Results from the analysis showmore » the stress in the fabric airbags, forces in the internal tendon support system, forces in the latches and hinges which allow the lander to deploy after impact, and deceleration of the lander components. All of these results provide the JPL engineers with design guidance for the success of this novel lander system.« less

  16. Structural analyses of the JPL Mars Pathfinder impact

    NASA Astrophysics Data System (ADS)

    Gwinn, Kenneth W.

    The purpose of this paper is to demonstrate that finite element analysis can be used in the design process for high performance fabric structures. These structures exhibit extreme geometric nonlinearity; specifically, the contact and interaction of fabric surfaces with the large deformation which necessarily results from membrane structures introduces great complexity to analyses of this type. All of these features are demonstrated here in the analysis of the Jet Propulsion Laboratory (JPL) Mars Pathfinder impact onto Mars. This lander system uses airbags to envelope the lander experiment package, protecting it with large deformation upon contact. Results from the analysis show the stress in the fabric airbags, forces in the internal tendon support system, forces in the latches and hinges which allow the lander to deploy after impact, and deceleration of the lander components. All of these results provide the JPL engineers with design guidance for the success of this novel lander system.

  17. Pathfinding the Flight Advanced Stirling Convertor Design with the ASC-E3

    NASA Technical Reports Server (NTRS)

    Wong, Wayne A.; Wilson, Kyle; Smith, Eddie; Collins, Josh

    2012-01-01

    The Advanced Stirling Convertor (ASC) was initially developed by Sunpower, Inc. under contract to NASA Glenn Research Center (GRC) as a technology development project. The ASC technology fulfills NASA's need for high efficiency power convertors for future Radioisotope Power Systems (RPS). Early successful technology demonstrations between 2003 to 2005 eventually led to the expansion of the project including the decision in 2006 to use the ASC technology on the Advanced Stirling Radioisotope Generator (ASRG). Sunpower has delivered 22 ASC convertors of progressively mature designs to date to GRC. Currently, Sunpower with support from GRC, Lockheed Martin Space System Company (LMSSC), and the Department of Energy (DOE) is developing the flight ASC-F in parallel with the ASC-E3 pathfinders. Sunpower will deliver four pairs of ASC-E3 convertors to GRC which will be used for extended operation reliability assessment, independent validation and verification testing, system interaction tests, and to support LMSSC controller verification. The ASC-E3 and -F convertors are being built to the same design and processing documentation and the same product specification. The initial two pairs of ASC-E3 are built before the flight units and will validate design and processing changes prior to implementation on the ASC-F flight convertors. This paper provides a summary on development of the ASC technology and the status of the ASC-E3 build and how they serve the vital pathfinder role ahead of the flight build for ASRG. The ASRG is part of two of the three candidate missions being considered for selection for the Discovery 12 mission.

  18. Characteristic and Behavior of Rainfall Induced Landslides in Java Island, Indonesia : an Overview

    NASA Astrophysics Data System (ADS)

    Christanto, N.; Hadmoko, D. S.; Westen, C. J.; Lavigne, F.; Sartohadi, J.; Setiawan, M. A.

    2009-04-01

    Landslides are important natural hazards occurring on mountainous area situated in the wet tropical climate like in Java, Indonesia. As a central of economic and government activity, Java become the most populated island in Indonesia and is increasing every year. This condition create population more vulnerable to hazard. Java is populated by 120 million inhabitants or equivalent with 60% of Indonesian population in only 6,9% of the total surface of Indonesia. Due to its geological setting, its topographical characteristics, and its climatic characteristics, Java is the most exposed regions to landslide hazard and closely related to several factors: (1) located on a subduction zone, 60% of Java is mountainous, with volcano-tectonic mountain chains and 36 active volcanoes out of the 129 in Indonesia, and these volcanic materials are intensively weathered (2) Java is under a humid tropical climate associated with heavy rainfall during the rainy season from October to April. On top of these "natural" conditions, the human activity is an additional factor of landslide occurrence, driven by a high demographic density The purpose of this paper was to collect and analyze spatial and temporal data concerning landslide hazard for the period 1981-2007 and to evaluate and analyze the characteristic and the behavior of landslide in Java. The results provides a new insight into our understanding of landslide hazard and characteristic in the humid tropics, and a basis for predicting future landslides and assessing related hazards at a regional scale. An overview of characteristic and behavior of landslides in Java is given. The result of this work would be valuable for decision makers and communities in the frame of future landslide risk reduction programs. Landslide inventory data was collected from internal database at the different institutions. The result is then georefenced. The temporal changes of landslide activities was done by examining the changes in number and

  19. Exploring MEDLINE Space with Random Indexing and Pathfinder Networks

    PubMed Central

    Cohen, Trevor

    2008-01-01

    The integration of disparate research domains is a prerequisite for the success of the translational science initiative. MEDLINE abstracts contain content from a broad range of disciplines, presenting an opportunity for the development of methods able to integrate the knowledge they contain. Latent Semantic Analysis (LSA) and related methods learn human-like associations between terms from unannotated text. However, their computational and memory demands limits their ability to address a corpus of this size. Furthermore, visualization methods previously used in conjunction with LSA have limited ability to define the local structure of the associative networks LSA learns. This paper explores these issues by (1) processing the entire MEDLINE corpus using Random Indexing, a variant of LSA, and (2) exploring learned associations using Pathfinder Networks. Meaningful associations are inferred from MEDLINE, including a drug-disease association undetected by PUBMED search. PMID:18999236

  20. Exploring MEDLINE space with random indexing and pathfinder networks.

    PubMed

    Cohen, Trevor

    2008-11-06

    The integration of disparate research domains is a prerequisite for the success of the translational science initiative. MEDLINE abstracts contain content from a broad range of disciplines, presenting an opportunity for the development of methods able to integrate the knowledge they contain. Latent Semantic Analysis (LSA) and related methods learn human-like associations between terms from unannotated text. However, their computational and memory demands limits their ability to address a corpus of this size. Furthermore, visualization methods previously used in conjunction with LSA have limited ability to define the local structure of the associative networks LSA learns. This paper explores these issues by (1) processing the entire MEDLINE corpus using Random Indexing, a variant of LSA, and (2) exploring learned associations using Pathfinder Networks. Meaningful associations are inferred from MEDLINE, including a drug-disease association undetected by PUBMED search.

  1. Mars Pathfinder and the exploration of southern Amazonis Planitia

    NASA Technical Reports Server (NTRS)

    Barlow, Nadine G.

    1994-01-01

    The southern region of Amazonis Planitia provides a variety of target terrains for a roving vehicle such as the Mars Pathfinder Mission. A landing site is proposed at 4 deg N latitude 162 deg W longitude. This area has a reference altitude of between 0 and -1 km and consists of relatively smooth Amazonian-aged deposits within the entire 100 x 200 km landing ellipse. The proposed landing site is within the Upper Member Medusae Fossae Formation deposits (Amu) and near the boundary with Middle Member Medusae Fossae Formation deposits (Amm) and Member 1 Arcadia Formation plains (Aa(sub 1)). Slightly further afield are 107-km-diameter Nicholson crater, its ejecta deposits, and knobby terrain of proposed Hesperian age (HNu). Depending on the exact landing site of the spacecraft and the traverse distance of the rover, these materials also may be sampled.

  2. Lisp as an Alternative to Java

    NASA Technical Reports Server (NTRS)

    Gat, E.

    2000-01-01

    In a recent study, Prechelt compared the relative performance of Java and C++ in terms of execution time and memory utilization. Unlike many benchmark studies, Prechelt compared mulitple implementations of the same task by multiple programmers in order to control for the effects of difference in programmer skill.

  3. Distributed Object Technology with CORBA and Java: Key Concepts and Implications.

    DTIC Science & Technology

    1997-06-01

    commercial use should be addressed to the SEI Licensing Agent. NO WARRANTY THIS CARNEGIE MELLON UNIVERSITY AND SOFTWARE ENGINEERING INSTITUTE MATERIAL...retrieval. This power is not derived from the language per se, but from the architecture-neutral approach used by Java. The Java Virtual Machine...pattern that is focused on performance considerations, the PCo archi- tecture also uses CORBA interface definition language (IDL) to model the

  4. Apical root canal transportation of different pathfinding systems and their effects on shaping ability of ProTaper Next

    PubMed Central

    Türker, Sevinç-Aktemur

    2015-01-01

    Background This study aimed to compare glide path preparation of different pathfinding systems and their effects on the apical transportation of ProTaper Next (Dentsply Maillefer, Ballaigues, Switzerland) in mesial root canals of extracted human mandibular molars, using digital subtraction radiography. Material and Methods The mesial canals of 40 mandibular first molars (with curvature angles between 25° and 35°) were selected for this study. The specimens were divided randomly into 4 groups with 10 canals each. Glide paths were created in group 1 with #10, #15 and #20 K-type (Dentsply Maillefer, Ballaigues, Switzerland) stainless steel manual files; in group 2 with Path-File (Dentsply Maillefer) #1, #2, and #3 and in group 3 with #16 ProGlider (Dentsply Maillefer) rotary instruments; in group 4 no glide paths were created. All canals were instrumented up to ProTaper Next X2 to the working length. A double digital radiograph technique was used, pre and post-instrumentation, to assess whether apical transportation and/or aberration in root canal morphology occurred. Instrument failures were also recorded. The data were analyzed statistically using ANOVA and Tukey tests (p<0.05). Results No significant differences were found among groups regarding apical transportation (p>0.05). Two ProTaper Next instruments failed in-group 4. Conclusions Within the parameters of this study, there was no difference between the performance of path-finding files and ProTaper Next system maintained root canal curvature well and was safe to use either with path-finding files or alone. Key words:Glide path, PathFile, ProGlider, ProTaper Next, transportation. PMID:26330936

  5. Server-Side JavaScript Debugging: Viewing the Contents of an Object

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Hampton, J.; Simons, R.

    1999-04-21

    JavaScript allows the definition and use of large, complex objects. Unlike some other object-oriented languages, it also allows run-time modifications not only of the values of object components, but also of the very structure of the object itself. This feature is powerful and sometimes very convenient, but it can be difficult to keep track of the object's structure and values throughout program execution. What's needed is a simple way to view the current state of an object at any point during execution. There is a debug function that is included in the Netscape server-side JavaScript environment. The function outputs themore » value(s) of the expression given as the argument to the function in the JavaScript Application Manager's debug window [SSJS].« less

  6. Neogene subduction beneath Java, Indonesia: Slab tearing and changes in magmatism

    NASA Astrophysics Data System (ADS)

    Cottam, Michael; Hall, Robert; Cross, Lanu; Clements, Benjamin; Spakman, Wim

    2010-05-01

    Java is a Neogene calc-alkaline volcanic island arc formed by the northwards subduction of the Indo-Australian Plate beneath Sundaland, the continental core of SE Asia. The island has a complex history of volcanism and displays unusual subduction characteristics. These characteristics are consistent with the subduction of a hole in the down going slab that was formed by the arrival of a buoyant oceanic plateau at the trench. Subduction beneath Java began in the Eocene. However, the position and character of the calc-alkaline arc has changed over time. An older Paleogene arc ceased activity in the Early Miocene. Volcanic activity resumed in the Late Miocene producing a younger arc to the north of the older arc, and continues to the present day. An episode of Late Miocene thrusting at about 7 Ma is observed throughout Java and appears to be linked to northward movement of the arc. Arc rocks display typical calc-alkaline characteristics and reflect melting of the mantle wedge and subducted sediments associated with high fluid fluxes. Between West Java and Bali the present arc-trench gap is unusually wide at about 300 km. Seismicity identifies subducted Indian Ocean lithosphere that dips north at about 20° between the trench and the arc and then dips more steeply at about 60-70° from 100 to 600 km depth. In East Java there is gap in seismicity between about 250 and 500 km. Seismic tomography shows that this gap is not an aseismic section of the subduction zone but a hole in the slab. East Java is also unusual in the presence of K-rich volcanoes, now inactive, to the north of the calc-alkaline volcanoes of the active arc. In contrast to the calc-alkaline volcanism of the main arc, these K-rich melts imply lower fluid fluxes and a different mantle source. We suggest that all these observations can be explained by the tearing of the subducting slab when a buoyant oceanic plateau arrived at the trench south of East Java at about 8 Ma. With the slab unable to subduct

  7. JVM: Java Visual Mapping tool for next generation sequencing read.

    PubMed

    Yang, Ye; Liu, Juan

    2015-01-01

    We developed a program JVM (Java Visual Mapping) for mapping next generation sequencing read to reference sequence. The program is implemented in Java and is designed to deal with millions of short read generated by sequence alignment using the Illumina sequencing technology. It employs seed index strategy and octal encoding operations for sequence alignments. JVM is useful for DNA-Seq, RNA-Seq when dealing with single-end resequencing. JVM is a desktop application, which supports reads capacity from 1 MB to 10 GB.

  8. JAtlasView: a Java atlas-viewer for browsing biomedical 3D images and atlases.

    PubMed

    Feng, Guangjie; Burton, Nick; Hill, Bill; Davidson, Duncan; Kerwin, Janet; Scott, Mark; Lindsay, Susan; Baldock, Richard

    2005-03-09

    Many three-dimensional (3D) images are routinely collected in biomedical research and a number of digital atlases with associated anatomical and other information have been published. A number of tools are available for viewing this data ranging from commercial visualization packages to freely available, typically system architecture dependent, solutions. Here we discuss an atlas viewer implemented to run on any workstation using the architecture neutral Java programming language. We report the development of a freely available Java based viewer for 3D image data, descibe the structure and functionality of the viewer and how automated tools can be developed to manage the Java Native Interface code. The viewer allows arbitrary re-sectioning of the data and interactive browsing through the volume. With appropriately formatted data, for example as provided for the Electronic Atlas of the Developing Human Brain, a 3D surface view and anatomical browsing is available. The interface is developed in Java with Java3D providing the 3D rendering. For efficiency the image data is manipulated using the Woolz image-processing library provided as a dynamically linked module for each machine architecture. We conclude that Java provides an appropriate environment for efficient development of these tools and techniques exist to allow computationally efficient image-processing libraries to be integrated relatively easily.

  9. Imaging of upper crustal structure beneath East Java-Bali, Indonesia with ambient noise tomography

    NASA Astrophysics Data System (ADS)

    Martha, Agustya Adi; Cummins, Phil; Saygin, Erdinc; Sri Widiyantoro; Masturyono

    2017-12-01

    The complex geological structures in East Java and Bali provide important opportunities for natural resource exploitation, but also harbor perils associated with natural disasters. Such a condition makes the East Java region an important area for exploration of the subsurface seismic wave velocity structure, especially in its upper crust. We employed the ambient noise tomography method to image the upper crustal structure under this study area. We used seismic data recorded at 24 seismographs of BMKG spread over East Java and Bali. In addition, we installed 28 portable seismographs in East Java from April 2013 to January 2014 for 2-8 weeks, and we installed an additional 28 seismographs simultaneously throughout East Java from August 2015 to April 2016. We constructed inter-station Rayleigh wave Green's functions through cross-correlations of the vertical component of seismic noise recordings at 1500 pairs of stations. We used the Neighborhood Algorithm to construct depth profiles of shear wave velocity (Vs). The main result obtained from this study is the thickness of sediment cover. East Java's southern mountain zone is dominated by higher Vs, the Kendeng basin in the center is dominated by very low Vs, and the Rembang zone (to the North of Kendeng zone) is associated with medium Vs. The existence of structures with oil and gas potential in the Kendeng and Rembang zones can be identified by low Vs.

  10. Classification of java tea (Orthosiphon aristatus) quality using FTIR spectroscopy and chemometrics

    NASA Astrophysics Data System (ADS)

    Heryanto, R.; Pradono, D. I.; Marlina, E.; Darusman, L. K.

    2017-05-01

    Java tea (Orthosiphon aristatus) is a plant that widely used as a medicinal herb in Indonesia. Its quality is varying depends on various factors, such as cultivating area, climate and harvesting time. This study aimed to investigate the effectiveness of FTIR spectroscopy coupled with chemometrics for discriminating the quality of java tea from different cultivating area. FTIR spectra of ethanolic extracts were collected from five different regions of origin of java tea. Prior to chemometrics evaluation, spectra were pre-processed by using baselining, normalization and derivatization. Principal Components Analysis (PCA) was used to reduce the spectra to two PCs, which explained 73% of the total variance. Score plot of two PCs showed groupings of the samples according to their regions of origin. Furthermore, Partial Least Squares-Discriminant Analysis (PLSDA) was applied to the pre-processed data. The approach produced an external validation success rate of 100%. This study shows that FTIR analysis and chemometrics has discriminatory power to classify java tea based on its quality related to the region of origin.

  11. Cloud-Aerosol LIDAR and Infrared Pathfinder Satellite Observation (CALIPSO) Spacecraft: Independent Technical Assessment

    NASA Technical Reports Server (NTRS)

    Gilbrech, Richard J.; McManamen, John P.; Wilson, Timmy R.; Robinson, Frank; Schoren, William R.

    2004-01-01

    CALIPSO is a joint science mission between the CNES, LaRC and GSFC. It was selected as an Earth System Science Pathfinder satellite mission in December 1998 to address the role of clouds and aerosols in the Earth's radiation budget. The spacecraft includes a NASA light detecting and ranging (LIDAR) instrument, a NASA wide-field camera and a CNES imaging infrared radiometer. The scope of this effort was a review of the Proteus propulsion bus design and an assessment of the potential for personnel exposure to hydrazine propellant.

  12. Cloud-Aerosol LIDAR and Infrared Pathfinder Satellite Observation (CALIPSO) Spacecraft: Independent Technical Assessment

    NASA Technical Reports Server (NTRS)

    Gilbrech, Richard J.; McManamen, John P.; Wilson, Timmy R.; Robinson, Frank; Schoren, William R.

    2005-01-01

    CALIPSO is a joint science mission between the CNES, LaRC and GSFC. It was selected as an Earth System Science Pathfinder satellite mission in December 1998 to address the role of clouds and aerosols in the Earth's radiation budget. The spacecraft includes a NASA light detecting and ranging (LIDAR) instrument, a NASA wide-field camera and a CNES imaging infrared radiometer. The scope of this effort was a review of the Proteus propulsion bus design and an assessment of the potential for personnel exposure to hydrazine propellant.

  13. Predictive Validity of Measures of the Pathfinder Scaling Algorithm on Programming Performance: Alternative Assessment Strategy for Programming Education

    ERIC Educational Resources Information Center

    Lau, Wilfred W. F.; Yuen, Allan H. K.

    2009-01-01

    Recent years have seen a shift in focus from assessment of learning to assessment for learning and the emergence of alternative assessment methods. However, the reliability and validity of these methods as assessment tools are still questionable. In this article, we investigated the predictive validity of measures of the Pathfinder Scaling…

  14. West Java Snack Mapping based on Snack Types, Main Ingredients, and Processing Techniques

    NASA Astrophysics Data System (ADS)

    Nurani, A. S.; Subekti, S.; Ana

    2016-04-01

    The research was motivated by lack of literature on archipelago snack especially from West Java. It aims to explore the snack types, the processing techniques, and the main ingredients by planning a learning material on archipelago cake especially from West Java. The research methods used are descriptive observations and interviews. The samples were randomly chosen from all regions in West Java. The findings show the identification of traditional snack from West java including: 1. snack types which are similar in all regions as research sample namely: opak, rangginang, nagasari, aliagrem, cuhcur, keripik, semprong, wajit, dodol, kecimpring, combro, tape ketan, and surabi. The typical snack types involve burayot (Garut), simping kaum (Purwakarta), surabi hejo (Karawang), papais cisaat (Subang), Papais moyong, opak bakar (Kuningan), opak oded, ranggesing (Sumedang), gapit, tapel (Cirebon), gulampo, kue aci (Tasikmalaya), wajit cililin, gurilem (West Bandung), and borondong (Bandung District); 2. various processing techniques namely: steaming, boiling, frying, caramelizing, baking, grilling, roaster, sugaring; 3. various main ingredients namely rice, local glutinous rice, rice flour, glutinous rice flour, starch, wheat flour, hunkue flour, cassava, sweet potato, banana, nuts, and corn; 4. snack classification in West Java namely (1) traditional snack, (2) creation-snack, (3) modification-snack, (4) outside influence-snack.

  15. JSXGraph--Dynamic Mathematics with JavaScript

    ERIC Educational Resources Information Center

    Gerhauser, Michael; Valentin, Bianca; Wassermann, Alfred

    2010-01-01

    Since Java applets seem to be on the retreat in web application, other approaches for displaying interactive mathematics in the web browser are needed. One such alternative could be our open-source project JSXGraph. It is a cross-browser library for displaying interactive geometry, function plotting, graphs, and data visualization in a web…

  16. PDDL4J: a planning domain description library for java

    NASA Astrophysics Data System (ADS)

    Pellier, D.; Fiorino, H.

    2018-01-01

    PDDL4J (Planning Domain Description Library for Java) is an open source toolkit for Java cross-platform developers meant (1) to provide state-of-the-art planners based on the Pddl language, and (2) to facilitate research works on new planners. In this article, we present an overview of the Automated Planning concepts and languages. We present some planning systems and their most significant applications. Then, we detail the Pddl4j toolkit with an emphasis on the available informative structures, heuristics and search algorithms.

  17. Spatial modeling for estimation of earthquakes economic loss in West Java

    NASA Astrophysics Data System (ADS)

    Retnowati, Dyah Ayu; Meilano, Irwan; Riqqi, Akhmad; Hanifa, Nuraini Rahma

    2017-07-01

    Indonesia has a high vulnerability towards earthquakes. The low adaptive capacity could make the earthquake become disaster that should be concerned. That is why risk management should be applied to reduce the impacts, such as estimating the economic loss caused by hazard. The study area of this research is West Java. The main reason of West Java being vulnerable toward earthquake is the existence of active faults. These active faults are Lembang Fault, Cimandiri Fault, Baribis Fault, and also Megathrust subduction zone. This research tries to estimates the value of earthquakes economic loss from some sources in West Java. The economic loss is calculated by using HAZUS method. The components that should be known are hazard (earthquakes), exposure (building), and the vulnerability. Spatial modeling is aimed to build the exposure data and make user get the information easier by showing the distribution map, not only in tabular data. As the result, West Java could have economic loss up to 1,925,122,301,868,140 IDR ± 364,683,058,851,703.00 IDR, which is estimated from six earthquake sources with maximum possibly magnitude. However, the estimation of economic loss value in this research is the worst case earthquakes occurrence which is probably over-estimated.

  18. Constraints on Martian Soil Composition as Inferred from Viking XRFS and Pathfinder APXS and IMP Data

    NASA Technical Reports Server (NTRS)

    Bridges, N. T.; Crisp, J. A.

    2000-01-01

    With the successful operation of the Alpha Proton X-Ray Spectrometer (APXS) during 1997's Mars Pathfinder (MPF) mission, geochemistry data are now available from three sites on Mars. APXS raw spectra for six soils and five rocks have been converted to compositional abundances. The Viking Lander X-Ray Fluorescence Spectrometer (XRFS) successfully measured elemental abundances of nine soils at Viking 1 and eight soils at Viking 2. Although the three landing sites are located in different parts of Mars, the soils exhibit broad similarities, with an iron-rich chemistry similar to that of palagonite. However, the Pathfinder sods show some significant differences from Viking soils, notably an enrichment in silica and depletion in sulfur. The XRFS samples consisted of near-surface and deep (up to 22 cm) soils acquired by a collector head at the cod of a retractable boom. It was possible to collect and analyze pebbles as large a 2 cm, but only sod, some in the form of consolidated clods, was sampled. In contrast, the APXS measured materials in situ. This resulted in MPF "rock" analyses that probably had a significant dust component and, as explored here, "soil" analyses that may have contained a rocky component We examine several possibilities to explain these differences and other attributes of the APXS and XRFS data sets: 1) The APXS soil measurements actually sampled a mixture of Viking-like soil and small bits of high-silica, low-sulfur rock, 2) The soils were derived from high-silica rocks mixed with a minor component of globally-homogenized dust; these soils are chemically distinct and have a separate geologic history from the Viking soils. 3) The weathering environment was different at the Pathfinder landing site compared to the Viking sites, and 4) Uncertainties in the XRFS and APXS measurements result in reported elemental abundances different than those that are actually present We show that none of the possibilities can be discounted, but that an MPF soil

  19. Spatial durbin error model for human development index in Province of Central Java.

    NASA Astrophysics Data System (ADS)

    Septiawan, A. R.; Handajani, S. S.; Martini, T. S.

    2018-05-01

    The Human Development Index (HDI) is an indicator used to measure success in building the quality of human life, explaining how people access development outcomes when earning income, health and education. Every year HDI in Central Java has improved to a better direction. In 2016, HDI in Central Java was 69.98 %, an increase of 0.49 % over the previous year. The objective of this study was to apply the spatial Durbin error model using angle weights queen contiguity to measure HDI in Central Java Province. Spatial Durbin error model is used because the model overcomes the spatial effect of errors and the effects of spatial depedency on the independent variable. Factors there use is life expectancy, mean years of schooling, expected years of schooling, and purchasing power parity. Based on the result of research, we get spatial Durbin error model for HDI in Central Java with influencing factors are life expectancy, mean years of schooling, expected years of schooling, and purchasing power parity.

  20. Collaborative Scheduling Using JMS in a Mixed Java and .NET Environment

    NASA Technical Reports Server (NTRS)

    Wang, Yeou-Fang; Wax, Allan; Lam, Ray; Baldwin, John; Borden, Chet

    2006-01-01

    A collaborative framework/environment was proto-typed to prove the feasibility of scheduling space flight missions on NASA's Deep Space Network (DSN) in a distributed fashion. In this environment, effective collaboration relies on efficient communications among all flight mission and DSN scheduling users. There-fore, messaging becomes critical to timely event notification and data synchronization. In the prototype, a rapid messaging system using Java Message Service (JMS) in a mixed Java and .NET environment is established. This scheme allows both Java and .NET applications to communicate with each other for data synchronization and schedule negotiation. The JMS approach we used is based on a centralized messaging scheme. With proper use of a high speed messaging system, all users in this collaborative framework can communicate with each other to generate a schedule collaboratively to meet DSN and projects tracking needs.

  1. Seismicity of the Earth 1900-2012 Java and vicinity

    USGS Publications Warehouse

    Jones, Eric S.; Hayes, Gavin P.; Bernardino, Melissa; Dannemann, Fransiska K.; Furlong, Kevin P.; Benz, Harley M.; Villaseñor, Antonio

    2014-01-01

    The Sunda convergent margin extends for 5,600 km from the Bay of Bengal and the Andaman Sea, both located northwest of the map area, towards the island of Sumba in the southeast, and then continues eastward as the Banda arc system. This tectonically active margin is a result of the India and Australia plates converging with and subducting beneath the Sunda plate at a rate of approximately 50 to 70 mm/yr. The main physiographic feature associated with this convergent margin is the Sunda-Java Trench, which stretches for 3,000 km parallel to the Java and Sumatra land masses and terminates at 120° E. The convergence of the Indo-Australia and Sunda plates produces two active volcanic arcs: Sunda, which extends from 105 to 122° E and Banda, which extends from 122 to 128° E. The Sunda arc results solely from relatively simple oceanic plate subduction, while the Banda arc represents the transition from oceanic subduction to continental collision, where a complex, broad deforming zone is found. Based on modern activity, the Banda arc can be divided into three distinct zones: an inactive section, the Wetar Zone, bound by two active segments, the Flores Zone in the west and the Damar Zone in the east. The lack of volcanism in the Wetar Zone is attributed to the collision of Australia with the Sunda plate. The absence of gap in volcanic activity is underlain by a gap in intermediate depth seismicity, which is in contrast to nearly continuous, deep seismicity below all three sections of the arc. The Flores Zone is characterized by down-dip compression in the subducted slab at intermediate depths and late Quaternary uplift of the forearc. These unusual features, along with GPS data interpretations indicate that the Flores Zone marks the transition between subduction of oceanic crust in the west and the collision of continental crust in the east. The Java section of the Sunda arc is considered relatively aseismic historically when compared to the highly seismically active

  2. Data Analysis for the LISA Pathfinder Mission

    NASA Technical Reports Server (NTRS)

    Thorpe, James Ira

    2009-01-01

    The LTP (LISA Technology Package) is the core part of the Laser Interferometer Space Antenna (LISA) Pathfinder mission. The main goal of the mission is to study the sources of any disturbances that perturb the motion of the freely-falling test masses from their geodesic trajectories as well as 10 test various technologies needed for LISA. The LTP experiment is designed as a sequence of experimental runs in which the performance of the instrument is studied and characterized under different operating conditions. In order to best optimize subsequent experimental runs, each run must be promptly analysed to ensure that the following ones make best use of the available knowledge of the instrument ' In order to do this, all analyses must be designed and tested in advance of the mission and have sufficient built-in flexibility to account for unexpected results or behaviour. To support this activity, a robust and flexible data analysis software package is also required. This poster presents two of the main components that make up the data analysis effort: the data analysis software and the mock-data challenges used to validate analysis procedures and experiment designs.

  3. Pedestrian Pathfinding in Urban Environments: Preliminary Results

    NASA Astrophysics Data System (ADS)

    López-Pazos, G.; Balado, J.; Díaz-Vilariño, L.; Arias, P.; Scaioni, M.

    2017-12-01

    With the rise of urban population, many initiatives are focused upon the smart city concept, in which mobility of citizens arises as one of the main components. Updated and detailed spatial information of outdoor environments is needed to accurate path planning for pedestrians, especially for people with reduced mobility, in which physical barriers should be considered. This work presents a methodology to use point clouds to direct path planning. The starting point is a classified point cloud in which ground elements have been previously classified as roads, sidewalks, crosswalks, curbs and stairs. The remaining points compose the obstacle class. The methodology starts by individualizing ground elements and simplifying them into representative points, which are used as nodes in the graph creation. The region of influence of obstacles is used to refine the graph. Edges of the graph are weighted according to distance between nodes and according to their accessibility for wheelchairs. As a result, we obtain a very accurate graph representing the as-built environment. The methodology has been tested in a couple of real case studies and Dijkstra algorithm was used to pathfinding. The resulting paths represent the optimal according to motor skills and safety.

  4. Potential Development Essential Oil Production of Central Java, Indonesia

    NASA Astrophysics Data System (ADS)

    Alighiri, D.; Eden, W. T.; Supardi, K. I.; Masturi; Purwinarko, A.

    2017-04-01

    Indonesia is the source of raw essential oil in the world. Essential oils are used in various types of industries such as food and beverage, flavour, fragrance, perfumery, pharmaceuticals, and cosmetics. However, the development of Indonesian essential oil industry has not been encouraging for the production of essential oils, further it is unable to meet global demand. Besides that, the quality of volatile oil resulted cannot meet the international market standards. Based on the facts, the potential of Indonesian essential oils needs to be developed to provide added value, through increased production, improved quality and product diversification. One part of Indonesia having abundant of raw essential oil source is Central Java. Central Java has the quite large potential production of essential oils. Some essential oils produced from refining industry owned by the government, private and community sectors include cananga oils (Boyolali district), clove oils (Semarang district), patchouli oils (Brebes district, Pemalang district, and Klaten district). The main problem in the development of plants industries that producing essential oil in Central Java is low crops production, farming properties, quality of essential oils are diverse, providing poor-quality products and volatile oil price fluctuations. Marketing constraints of Central Java essential oils are quite complex supply chain. In general, marketing constraints of essential oils due to three factors, namely the low quality due to type of essential oil business that generally shaped small businesses with different capital and technology, domestic marketing is still a buyer-market (price determined by the buyer) because of weak bargaining position processors businessman, and prices fluctuate (domestic and foreign) due to uncontrolled domestic production and inter-country competition among manufacturers.

  5. Dust devil vortices seen by the Mars Pathfinder camera

    USGS Publications Warehouse

    Metzger, S.M.; Carr, J.R.; Johnson, J. R.; Parker, T.J.; Lemmon, M.T.

    1999-01-01

    Discovery of dust devil vortices in Mars Pathfinder (MPF) images reveals a dust entrainment mechanism at work on Mars. Scattering of visible light by dust in the Martian atmosphere creates a pronounced haze, preventing conventional image processing from displaying dust plumes. Spectral differencing techniques have enhanced five localized dust plumes from the general haze in images acquired near midday, which we determine to be dust devils. Processing of 440 nm images highlights dust devils as distinct occultation features against the horizon. The dust devils are interpreted to be 14-79 m wide, 46-350 m tall, travel at 0.5-4.6 m/s, with dust loading of 7E-5 kg m-3, relative to the general haze of 9E-8 kg m-3, and total particulate transport of 2.2 - 700 kg. The vortices match predictions from terrestrial analog studies. Copyright 1999 by the American Geophysical Union.

  6. An oceanic plateau subduction offshore Eastern Java

    NASA Astrophysics Data System (ADS)

    Shulgin, A.; Kopp, H.; Mueller, C.; Planert, L.; Lueschen, E.; Flueh, E. R.; Djajadihardja, Y.

    2010-12-01

    The area offshore Java represents one of a few places globally where the early stage of subduction of an oceanic plateau is observed. We study the little investigated Roo Rise oceanic plateau on the Indian plate, subducting beneath Eurasia.Our study area is located south of eastern Java and covers the edge of the Roo Rise plateau, the Java trench and the entire forearc section. For the first time the detailed deep structure of the Roo Rise is studied, subduction of which has a significant effect on the forearc dynamics and evolution and the increase of the geohazards risks. The tsunamogenic earthquakes of 1994 and 2006 are associated with the oceanic plateau edge been subducted. We present integrated results of a refraction/wide-angle reflection tomography, gravity modeling, and multichannel reflection seismic imaging using data acquired in 2006 along a corridor centered around 113°E and composed of a 340 km long N-S profile and a 130 km long E-W oriented profile. The composite structural models reveal the previously unresolved deep geometry of the collision zone and the structure of the oceanic plateau. The crustal thickness of the Roo Rise plateau is ranging from 18 to 12 km. The structure of the upper crust of the incoming oceanic plate shows the extreme degree of fracturing in its top section, and is associated with a plate bending. The forearc Moho has a depth range from 16 to 20 km. The gravity modeling requires a sharp crustal thickness increase below Java. Within our profiles we do not recover any direct evidence for the presence of the bathymetric features on the oceanic plate currently present below the accretionary prism, responsible for the tsunamogenic earthquake triggering. However vertical variations of the forearc basement edge are observed on the trench-parallel profile, which opens a discussion on the origin of such basement undulations, together with a localized patchy uplift character of the forearc high.The complex geometry of the backstop

  7. GC-MS analysis of clove (Syzygium aromaticum) bud essential oil from Java and Manado

    NASA Astrophysics Data System (ADS)

    Amelia, B.; Saepudin, E.; Cahyana, A. H.; Rahayu, D. U.; Sulistyoningrum, A. S.; Haib, J.

    2017-07-01

    The largest clove production contributors in Indonesia are mostly coming from Java and Manado. Different flavor among clove origins is caused by chemical constituents in clove oil. Unfortunately, scientific research and publications about flavor in clove from Indonesia's origin are still limited. The objective of this research is to determine significant differences of constituents in terms of flavor in clove oil originated from Java and Manado. The essential oils were isolated from cut clove bud samples by steam distillation method. The chemical constituents of clove bud oil were analyzed by using gas chromatography-mass spectrometry (GC-MS). Constituents were then identified by comparing the results of the chromatogram and reference retention time using Wiley mass spectra library (Wiley W9N11). Thirty-six and thirty-four chemical constituents were identified based on GC-MS from clove oil collected from Java and Manado, respectively. Major classes of compounds are sesquiterpenes, phenyl propanoid, oxygenated sesquiterpenes, and esters. Different compositions in major constituents were found between both origins. Clove Java contained eugenol (55.60 %), eugenyl acetate (20.54 %), caryophyllene (14.84 %), and α-humulene (2.75 %). While, in clove Manado, the composition were eugenol (74.64 %), caryophyllene (12.79 %), eugenyl acetate (8.70 %), and α-humulene (1.53 %). Moreover, minor constituents β-elemene (0.04 %), α-cadinene (0.05 %) and ledol (0.06 %) were existed only in clove Java, while clove Manado had some unique minor constituents which were not found in clove Java, i.e. β-gurjunene (0.04 %), γ-cadinene %), and humulene oxide (0.05 %). In conclusion, both clove oils from Java and Manado contained same major chemical constituents but different in their composition. In addition, some minor constituents existed only in specific origin.

  8. Identifying Intraplate Mechanism by B-Value Calculations in the South of Java Island

    NASA Astrophysics Data System (ADS)

    Bagus Suananda Y., Ida; Aufa, Irfan; Harlianti, Ulvienin

    2018-03-01

    Java is the most populous island in Indonesia with 50 million people live there. This island geologically formed at the Eurasia plate margin by the subduction of the Australian oceanic crust. At the south part of Java, beside the occurrence of 2-plate convergence earthquake (interplate), there are also the activities of the intraplate earthquake. Research for distinguish this 2 different earthquake type is necessary for estimating the behavior of the earthquake that may occur. The aim of this research is to map the b-value in the south of Java using earthquake data from 1963 until 2008. The research area are divided into clusters based on the epicenter mapping results with magnitude more than 4 and three different depth (0-30 km, 30-60 km, 60-100 km). This location clustering indicate group of earthquakes occurred by the same structure or mechanism. On some cluster in the south of Java, b-value obtained are between 0.8 and 1.25. This range of b-value indicates the region was intraplate earthquake zone, with 0.72-1.2 b-value range is the indication of intraplate earthquake zone. The final validation is to determine the mechanism of a segment done by correlating the epicenter and b-value plot with the available structural geology data. Based on this research, we discover that the earthquakes occur in Java not only the interplate earthquake, the intraplate earthquake also occurred here. By identifying the mechanism of a segment in the south of Java, earthquake characterization that may occur can be done for developing the accurate earthquake disaster mitigation system.

  9. SST cooling along coastal Java and Sumatra during positive Indian Ocean Dipole events

    NASA Astrophysics Data System (ADS)

    Delman, A. S.; McClean, J.; Sprintall, J.; Talley, L. D.; Bryan, F.; Johnson, B. K.; Carton, J.

    2016-02-01

    The evolution of positive Indian Ocean Dipole (pIOD) events is driven in part by anomalous SST cooling near the coasts of Java and Sumatra. However, the mechanisms and timeline of surface temperature changes near these two islands are distinct. Satellite data and mixed layer budgets in a forced ocean model simulation with 0.1° spatial resolution were used to characterize the dominant influences on SST in each region during pIOD events. Along the south coast of Java, where upwelling from southeasterly trade winds happens seasonally in June-September, strengthening/weakening of the trade winds has little effect on the interannual variability of SST. Instead, remotely-forced upwelling Kelvin waves are the primary mechanism for producing anomalous Java SST cooling in the early stages of a pIOD event. Other mechanisms that affect Java SST anomalies include inflows from the interior Indonesian Seas, mesoscale eddies, and air-sea heat fluxes; these influences can hasten the decay of cool Java SST anomalies and therefore may impact the strength and duration of pIOD events. Along the west coast of Sumatra, surface cooling is initially delayed by a deeper thermocline and a salinity-stratified barrier layer. Hence upwelling Kelvin waves do not substantially affect SST near Sumatra during the first 2-3 months of Java SST cooling; however, they do help drive surface cooling near Sumatra once the barrier layer has been sufficiently eroded by waters of decreasing temperature and increasing salinity. Upwelling Kelvin wave activity in the equatorial Indian Ocean starting in April is also shown to be a robust predictor of pIOD events later in the calendar year.

  10. A Standalone Vision Impairments Simulator for Java Swing Applications

    NASA Astrophysics Data System (ADS)

    Oikonomou, Theofanis; Votis, Konstantinos; Korn, Peter; Tzovaras, Dimitrios; Likothanasis, Spriridon

    A lot of work has been done lately in an attempt to assess accessibility. For the case of web rich-client applications several tools exist that simulate how a vision impaired or colour-blind person would perceive this content. In this work we propose a simulation tool for non-web JavaTM Swing applications. Developers and designers face a real challenge when creating software that has to cope with a lot of interaction situations, as well as specific directives for ensuring an accessible interaction. The proposed standalone tool will assist them to explore user-centered design and important accessibility issues for their JavaTM Swing implementations.

  11. Applications of Java and Vector Graphics to Astrophysical Visualization

    NASA Astrophysics Data System (ADS)

    Edirisinghe, D.; Budiardja, R.; Chae, K.; Edirisinghe, G.; Lingerfelt, E.; Guidry, M.

    2002-12-01

    We describe a series of projects utilizing the portability of Java programming coupled with the compact nature of vector graphics (SVG and SWF formats) for setup and control of calculations, local and collaborative visualization, and interactive 2D and 3D animation presentations in astrophysics. Through a set of examples, we demonstrate how such an approach can allow efficient and user-friendly control of calculations in compiled languages such as Fortran 90 or C++ through portable graphical interfaces written in Java, and how the output of such calculations can be packaged in vector-based animation having interactive controls and extremely high visual quality, but very low bandwidth requirements.

  12. Zika Virus, a Cause of Fever in Central Java, Indonesia

    DTIC Science & Technology

    1981-01-01

    ZIKA VIRUS , A CAUSE OF FEVER IN CENTRAL JAVA, INDONESIA J.G. Olson, T.G. Ksiazek, Suhandiman and Triwibowo REPORT NO. TR-879 NAMRU- DT1 &, AUG 0 9...75, No. 3, 1981 Zika virus , a cause of fever in Central Java, Indonesia J. G. OLSON’, T. G. KSIAZEK’, SUHANDIMAN 2 AND TRIwIBOWO 2 ’U.S. Naval...more days on admission. A physician member of the team recorded the Introduction patient’s age, sex and date of onset of symptoms and Zika virus ( ZIKA

  13. Implementing the Gaia Astrometric Global Iterative Solution (AGIS) in Java

    NASA Astrophysics Data System (ADS)

    O'Mullane, William; Lammers, Uwe; Lindegren, Lennart; Hernandez, Jose; Hobbs, David

    2011-10-01

    This paper provides a description of the Java software framework which has been constructed to run the Astrometric Global Iterative Solution for the Gaia mission. This is the mathematical framework to provide the rigid reference frame for Gaia observations from the Gaia data itself. This process makes Gaia a self calibrated, and input catalogue independent, mission. The framework is highly distributed typically running on a cluster of machines with a database back end. All code is written in the Java language. We describe the overall architecture and some of the details of the implementation.

  14. The Dust Cycle Observed by Pathfinder

    NASA Astrophysics Data System (ADS)

    Smith, P. H.; Lemmon, M. T.; Tomasko, M. G.

    1998-09-01

    The Imager for Mars Pathfinder observed the Sun through special filters nearly every sol throughout the 83 sol mission; a total of 1733 images of the Sun have been obtained. Optical depths at four wavelengths (450, 670, 883, and 989 nm) steadily increased from 0.4 to 0.6 during the mission (Ls 145-185). Comparing observations taken in the morning to those from the afternoon shows a general variability with the morning haze being somewhat thicker by 0.1 optical depths. Typically, the trend is more pronounced in the blue wavelength band; we interpret this to be the influence of a high level haze of water ice crystals that forms in the early morning and evaporates during the day. Small, Rayleigh scattering crystals explains the spectral signature that we measure. It may be that this upper haze layer is associated with the small, ice crystals seen by Mariner 9, the Viking orbiters, and the Phobos orbiter. UV images taken by HST show strong limb brightening that can be explained by this high level ice. Calculations of the haze lifetimes given the sedimentation rates measured from the Rover's solar panels and the magnetic targets, suggest that the haze should completely deposit onto the surface within 120 days. A primary mechanism for replenishing the haze may be the dust devils that were observed during the sol 11 gallery pan.

  15. A Wind Tunnel Study on the Mars Pathfinder (MPF) Lander Descent Pressure Sensor

    NASA Technical Reports Server (NTRS)

    Soriano, J. Francisco; Coquilla, Rachael V.; Wilson, Gregory R.; Seiff, Alvin; Rivell, Tomas

    2001-01-01

    The primary focus of this study was to determine the accuracy of the Mars Pathfinder lander local pressure readings in accordance with the actual ambient atmospheric pressures of Mars during parachute descent. In order to obtain good measurements, the plane of the lander pressure sensor opening should ideally be situated so that it is parallel to the freestream. However, due to two unfavorable conditions, the sensor was positioned in locations where correction factors are required. One of these disadvantages is due to the fact that the parachute attachment point rotated the lander's center of gravity forcing the location of the pressure sensor opening to be off tangent to the freestream. The second and most troublesome factor was that the lander descends with slight oscillations that could vary the amplitude of the sensor readings. In order to accurately map the correction factors required at each sensor position, an experiment simulating the lander descent was conducted in the Martian Surface Wind Tunnel at NASA Ames Research Center. Using a 115 scale model at Earth ambient pressures, the test settings provided the necessary Reynolds number conditions in which the actual lander was possibly subjected to during the descent. In the analysis and results of this experiment, the readings from the lander sensor were converted to the form of pressure coefficients. With a contour map of pressure coefficients at each lander oscillatory position, this report will provide a guideline to determine the correction factors required for the Mars Pathfinder lander descent pressure sensor readings.

  16. The lean service machine.

    PubMed

    Swank, Cynthia Karen

    2003-10-01

    Jefferson Pilot Financial, a life insurance and annuities firm, like many U.S. service companies at the end of the 1990s was looking for new ways to grow. Its top managers recognized that JPF needed to differentiate itself in the eyes of its customers, the independent life-insurance advisers who sell and service policies. To establish itself as these advisers' preferred partner, it set out to reduce the turnaround time on policy applications, simplify the submission process, and reduce errors. JPF's managers looked to the "lean production" practices that U.S. manufacturers adopted in response to competition from Japanese companies. Lean production is built around the concept of continuous-flow processing--a departure from traditional production systems, in which large batches are processed at each step. JPF appointed a "lean team" to reengineer its New Business unit's operations, beginning with the creation of a "model cell"--a fully functioning microcosm of JPF's entire process. This approach allowed managers to experiment and smooth out the kinks while working toward an optimal design. The team applied lean-manufacturing practices, including placing linked processes near one another, balancing employees' workloads, posting performance results, and measuring performance and productivity from the customer's perspective. Customer-focused metrics helped erode the employees' "My work is all that matters" mind-set. The results were so impressive that JPF is rolling out similar systems across many of its operations. To convince employees of the value of lean production, the lean team introduced a simulation in which teams compete to build the best paper airplane based on invented customer specifications. This game drives home lean production's basic principles, establishing a foundation for deep and far-reaching changes in the production system.

  17. Building interactive virtual environments for simulated training in medicine using VRML and Java/JavaScript.

    PubMed

    Korocsec, D; Holobar, A; Divjak, M; Zazula, D

    2005-12-01

    Medicine is a difficult thing to learn. Experimenting with real patients should not be the only option; simulation deserves a special attention here. Virtual Reality Modelling Language (VRML) as a tool for building virtual objects and scenes has a good record of educational applications in medicine, especially for static and animated visualisations of body parts and organs. However, to create computer simulations resembling situations in real environments the required level of interactivity and dynamics is difficult to achieve. In the present paper we describe some approaches and techniques which we used to push the limits of the current VRML technology further toward dynamic 3D representation of virtual environments (VEs). Our demonstration is based on the implementation of a virtual baby model, whose vital signs can be controlled from an external Java application. The main contributions of this work are: (a) outline and evaluation of the three-level VRML/Java implementation of the dynamic virtual environment, (b) proposal for a modified VRML Timesensor node, which greatly improves the overall control of system performance, and (c) architecture of the prototype distributed virtual environment for training in neonatal resuscitation comprising the interactive virtual newborn, active bedside monitor for vital signs and full 3D representation of the surgery room.

  18. Subduction erosion off central Java: transition from accretion to erosion manifested by wide-angle seismic studies

    NASA Astrophysics Data System (ADS)

    Wittwer, A.; Flueh, E.; Rabbel, W.; Wagner, D.

    2006-12-01

    In this study, offshore wide-angle data acquired by ocean bottom instruments of a combined onshore- offshore investigation of the tectonic framework of central Java will be presented. The joint interdisciplinary project MERAMEX (Merapi Amphibious Experiment) was carried out in order to characterize the subduction of the Indo-Australian plate beneath Eurasia. The interpretation of three wide-angle data profiles, modelled with forward raytracing, indicates that the subduction of the Roo Rise with its thickened oceanic crust strongly influences the subduction zone. The dip angle of the downgoing oceanic plate is 10° and its crustal thickness increases to the east from 8 km to 9 km between both dip profiles off central Java. Large scale forearc uplift is manifested in isolated forearc highs, reaching water depths of only 1000 m compared to 2000 m water depth off western Java, and results from oceanic basement relief subduction. A broad band of seamounts trends E-W at approximately 10°S. Its incipient subduction off central Java causes frontal erosion of the margin here and leads to mass wasting due to oversteepening of the upper trench wall. A suite of wide-angle profiles off southern Sumatra to central Java indicates a clear change in the tectonic environment between longitude 108°E and 109°E. The well-developed accretionary wedge off southern Sumatra and western Java changes into a small frontal prism with steep slope angles of the upper plate off central Java.

  19. The Twin Peaks in 3-D, as Viewed by the Mars Pathfinder IMP Camera

    NASA Technical Reports Server (NTRS)

    1997-01-01

    The Twin Peaks are modest-size hills to the southwest of the Mars Pathfinder landing site. They were discovered on the first panoramas taken by the IMP camera on the 4th of July, 1997, and subsequently identified in Viking Orbiter images taken over 20 years ago. The peaks are approximately 30-35 meters (-100 feet) tall. North Twin is approximately 860 meters (2800 feet) from the lander, and South Twin is about a kilometer away (3300 feet). The scene includes bouldery ridges and swales or 'hummocks' of flood debris that range from a few tens of meters away from the lander to the distance of the South Twin Peak. The large rock at the right edge of the scene is nicknamed 'Hippo'. This rock is about a meter (3 feet) across and 25 meters (80 feet) distant.

    This view of the Twin Peaks was produced by combining 4 individual 'Superpan' scenes from the left and right eyes of the IMP camera to cover both peaks. Each frame consists of 8 individual frames (left eye) and 7 frames (right eye) taken with different color filters that were enlarged by 500% and then co-added using Adobe Photoshop to produce, in effect, a super-resolution pancromatic frame that is sharper than an individual frame would be.

    The anaglyph view of the Twin Peaks was produced by combining the left and right eye mosaics (above) by assigning the left eye view to the red color plane and the right eye view to the green and blue color planes (cyan), to produce a stereo anaglyph mosaic. This mosaic can be viewed in 3-D on your computer monitor or in color print form by wearing red-blue 3-D glasses.

    Mars Pathfinder is the second in NASA's Discovery program of low-cost spacecraft with highly focused science goals. The Jet Propulsion Laboratory, Pasadena, CA, developed and manages the Mars Pathfinder mission for NASA's Office of Space Science, Washington, D.C. JPL is a division of the California Institute of Technology (Caltech). The IMP was developed by the University of Arizona Lunar and Planetary

  20. Geologic Measurements using Rover Images: Lessons from Pathfinder with Application to Mars 2001

    NASA Technical Reports Server (NTRS)

    Bridges, N. T.; Haldemann, A. F. C.; Herkenhoff, K. E.

    1999-01-01

    The Pathfinder Sojourner rover successfully acquired images that provided important and exciting information on the geology of Mars. This included the documentation of rock textures, barchan dunes, soil crusts, wind tails, and ventifacts. It is expected that the Marie Curie rover cameras will also successfully return important information on landing site geology. Critical to a proper analysis of these images will be a rigorous determination of rover location and orientation. Here, the methods that were used to compute rover position for Sojourner image analysis are reviewed. Based on this experience, specific recommendations are made that should improve this process on the '01 mission.

  1. Land subsidence threats and its management in the North Coast of Java

    NASA Astrophysics Data System (ADS)

    Sarah, D.; Soebowo, E.

    2018-02-01

    Cities on the north coast of Java such as Jakarta, Semarang, Pekalongan, and Surabaya are vulnerable to environmental pressures such as sea level change and land subsidence. Land subsidence can be caused by natural and anthropogenic processes. Geologically, the north coastal plain of Java consists of unconsolidated Holocene alluvial deposit. The recent alluvial deposit is prone to compaction, and further aggravated by anthropogenic forces such as groundwater extraction and land development. Understanding the complex interaction of natural and manmade factors is essential to establish mitigation strategy. Although the impacts of land subsidence are widely felt, many do not realize that land subsidence is taking place. This paper presents a brief review of the land subsidence threats in the North coast of Java and proposes a recommendation for suitable management response.

  2. Sub-Femto-g Free Fall for Space-Based Gravitational Wave Observatories: LISA Pathfinder Results.

    PubMed

    Armano, M; Audley, H; Auger, G; Baird, J T; Bassan, M; Binetruy, P; Born, M; Bortoluzzi, D; Brandt, N; Caleno, M; Carbone, L; Cavalleri, A; Cesarini, A; Ciani, G; Congedo, G; Cruise, A M; Danzmann, K; de Deus Silva, M; De Rosa, R; Diaz-Aguiló, M; Di Fiore, L; Diepholz, I; Dixon, G; Dolesi, R; Dunbar, N; Ferraioli, L; Ferroni, V; Fichter, W; Fitzsimons, E D; Flatscher, R; Freschi, M; García Marín, A F; García Marirrodriga, C; Gerndt, R; Gesa, L; Gibert, F; Giardini, D; Giusteri, R; Guzmán, F; Grado, A; Grimani, C; Grynagier, A; Grzymisch, J; Harrison, I; Heinzel, G; Hewitson, M; Hollington, D; Hoyland, D; Hueller, M; Inchauspé, H; Jennrich, O; Jetzer, P; Johann, U; Johlander, B; Karnesis, N; Kaune, B; Korsakova, N; Killow, C J; Lobo, J A; Lloro, I; Liu, L; López-Zaragoza, J P; Maarschalkerweerd, R; Mance, D; Martín, V; Martin-Polo, L; Martino, J; Martin-Porqueras, F; Madden, S; Mateos, I; McNamara, P W; Mendes, J; Mendes, L; Monsky, A; Nicolodi, D; Nofrarias, M; Paczkowski, S; Perreur-Lloyd, M; Petiteau, A; Pivato, P; Plagnol, E; Prat, P; Ragnit, U; Raïs, B; Ramos-Castro, J; Reiche, J; Robertson, D I; Rozemeijer, H; Rivas, F; Russano, G; Sanjuán, J; Sarra, P; Schleicher, A; Shaul, D; Slutsky, J; Sopuerta, C F; Stanga, R; Steier, F; Sumner, T; Texier, D; Thorpe, J I; Trenkel, C; Tröbs, M; Tu, H B; Vetrugno, D; Vitale, S; Wand, V; Wanner, G; Ward, H; Warren, C; Wass, P J; Wealthy, D; Weber, W J; Wissel, L; Wittchen, A; Zambotti, A; Zanoni, C; Ziegler, T; Zweifel, P

    2016-06-10

    We report the first results of the LISA Pathfinder in-flight experiment. The results demonstrate that two free-falling reference test masses, such as those needed for a space-based gravitational wave observatory like LISA, can be put in free fall with a relative acceleration noise with a square root of the power spectral density of 5.2±0.1  fm s^{-2}/sqrt[Hz], or (0.54±0.01)×10^{-15}  g/sqrt[Hz], with g the standard gravity, for frequencies between 0.7 and 20 mHz. This value is lower than the LISA Pathfinder requirement by more than a factor 5 and within a factor 1.25 of the requirement for the LISA mission, and is compatible with Brownian noise from viscous damping due to the residual gas surrounding the test masses. Above 60 mHz the acceleration noise is dominated by interferometer displacement readout noise at a level of (34.8±0.3)  fm/sqrt[Hz], about 2 orders of magnitude better than requirements. At f≤0.5  mHz we observe a low-frequency tail that stays below 12  fm s^{-2}/sqrt[Hz] down to 0.1 mHz. This performance would allow for a space-based gravitational wave observatory with a sensitivity close to what was originally foreseen for LISA.

  3. Sub-Femto-g Free Fall for Space-Based Gravitational Wave Observatories: LISA Pathfinder Results

    NASA Technical Reports Server (NTRS)

    Armano, M.; Audley, H.; Auger, G.; Baird, J. T.; Bassan, M.; Binetruy, P.; Born, M.; Bortoluzzi, D.; Brandt, N.; Thorpe, J. I.

    2016-01-01

    We report the first results of the LISA Pathfinder in-flight experiment. The results demonstrate that two free-falling reference test masses, such as those needed for a space-based gravitational wave observatory like LISA, can be put in free fall with a relative acceleration noise with a square root of the power spectral density of 5.2 +/- 0.1 fm s(exp -2)/square root of Hz, or (0.54 +/- 0.01) x 10(exp -15) g/square root of Hz, with g the standard gravity, for frequencies between 0.7 and 20 mHz. This value is lower than the LISA Pathfinder requirement by more than a factor 5 and within a factor 1.25 of the requirement for the LISA mission, and is compatible with Brownian noise from viscous damping due to the residual gas surrounding the test masses. Above 60 mHz the acceleration noise is dominated by interferometer displacement readout noise at a level of (34.8 +/- 0.3) fm square root of Hz, about 2 orders of magnitude better than requirements. At f less than or equal to 0.5 mHz we observe a low-frequency tail that stays below 12 fm s(exp -2)/square root of Hz down to 0.1 mHz. This performance would allow for a space-based gravitational wave observatory with a sensitivity close to what was originally foreseen for LISA.

  4. JPLEX: Java Simplex Implementation with Branch-and-Bound Search for Automated Test Assembly

    ERIC Educational Resources Information Center

    Park, Ryoungsun; Kim, Jiseon; Dodd, Barbara G.; Chung, Hyewon

    2011-01-01

    JPLEX, short for Java simPLEX, is an automated test assembly (ATA) program. It is a mixed integer linear programming (MILP) solver written in Java. It reads in a configuration file, solves the minimization problem, and produces an output file for postprocessing. It implements the simplex algorithm to create a fully relaxed solution and…

  5. Real-time Java simulations of multiple interference dielectric filters

    NASA Astrophysics Data System (ADS)

    Kireev, Alexandre N.; Martin, Olivier J. F.

    2008-12-01

    An interactive Java applet for real-time simulation and visualization of the transmittance properties of multiple interference dielectric filters is presented. The most commonly used interference filters as well as the state-of-the-art ones are embedded in this platform-independent applet which can serve research and education purposes. The Transmittance applet can be freely downloaded from the site http://cpc.cs.qub.ac.uk. Program summaryProgram title: Transmittance Catalogue identifier: AEBQ_v1_0 Program summary URL:http://cpc.cs.qub.ac.uk/summaries/AEBQ_v1_0.html Program obtainable from: CPC Program Library, Queen's University, Belfast, N. Ireland Licensing provisions: Standard CPC licence, http://cpc.cs.qub.ac.uk/licence/licence.html No. of lines in distributed program, including test data, etc.: 5778 No. of bytes in distributed program, including test data, etc.: 90 474 Distribution format: tar.gz Programming language: Java Computer: Developed on PC-Pentium platform Operating system: Any Java-enabled OS. Applet was tested on Windows ME, XP, Sun Solaris, Mac OS RAM: Variable Classification: 18 Nature of problem: Sophisticated wavelength selective multiple interference filters can include some tens or even hundreds of dielectric layers. The spectral response of such a stack is not obvious. On the other hand, there is a strong demand from application designers and students to get a quick insight into the properties of a given filter. Solution method: A Java applet was developed for the computation and the visualization of the transmittance of multilayer interference filters. It is simple to use and the embedded filter library can serve educational purposes. Also, its ability to handle complex structures will be appreciated as a useful research and development tool. Running time: Real-time simulations

  6. Automatic remote sensing detection of the convective boundary layer structure over flat and complex terrain using the novel PathfinderTURB algorithm

    NASA Astrophysics Data System (ADS)

    Poltera, Yann; Martucci, Giovanni; Hervo, Maxime; Haefele, Alexander; Emmenegger, Lukas; Brunner, Dominik; Henne, stephan

    2016-04-01

    We have developed, applied and validated a novel algorithm called PathfinderTURB for the automatic and real-time detection of the vertical structure of the planetary boundary layer. The algorithm has been applied to a year of data measured by the automatic LIDAR CHM15K at two sites in Switzerland: the rural site of Payerne (MeteoSwiss station, 491 m, asl), and the alpine site of Kleine Scheidegg (KSE, 2061 m, asl). PathfinderTURB is a gradient-based layer detection algorithm, which in addition makes use of the atmospheric variability to detect the turbulent transition zone that separates two low-turbulence regions, one characterized by homogeneous mixing (convective layer) and one above characterized by free tropospheric conditions. The PathfinderTURB retrieval of the vertical structure of the Local (5-10 km, horizontal scale) Convective Boundary Layer (LCBL) has been validated at Payerne using two established reference methods. The first reference consists of four independent human-expert manual detections of the LCBL height over the year 2014. The second reference consists of the values of LCBL height calculated using the bulk Richardson number method based on co-located radio sounding data for the same year 2014. Based on the excellent agreement with the two reference methods at Payerne, we decided to apply PathfinderTURB to the complex-terrain conditions at KSE during 2014. The LCBL height retrievals are obtained by tilting the CHM15K at an angle of 19 degrees with respect to the horizontal and aiming directly at the Sphinx Observatory (3580 m, asl) on the Jungfraujoch. This setup of the CHM15K and the processing of the data done by the PathfinderTURB allows to disentangle the long-transport from the local origin of gases and particles measured by the in-situ instrumentation at the Sphinx Observatory. The KSE measurements showed that the relation amongst the LCBL height, the aerosol layers above the LCBL top and the gas + particle concentration is all but

  7. Visualizing Mars Using Virtual Reality: A State of the Art Mapping Technique Used on Mars Pathfinder

    NASA Technical Reports Server (NTRS)

    Stoker, C.; Zbinden, E.; Blackmon, T.; Nguyen, L.

    1999-01-01

    We describe an interactive terrain visualization system which rapidly generates and interactively displays photorealistic three-dimensional (3-D) models produced from stereo images. This product, first demonstrated in Mars Pathfinder, is interactive, 3-D, and can be viewed in an immersive display which qualifies it for the name Virtual Reality (VR). The use of this technology on Mars Pathfinder was the first use of VR for geologic analysis. A primary benefit of using VR to display geologic information is that it provides an improved perception of depth and spatial layout of the remote site. The VR aspect of the display allows an operator to move freely in the environment, unconstrained by the physical limitations of the perspective from which the data were acquired. Virtual Reality offers a way to archive and retrieve information in a way that is intuitively obvious. Combining VR models with stereo display systems can give the user a sense of presence at the remote location. The capability, to interactively perform measurements from within the VR model offers unprecedented ease in performing operations that are normally time consuming and difficult using other techniques. Thus, Virtual Reality can be a powerful a cartographic tool. Additional information is contained in the original extended abstract.

  8. Drag-Free Performance of the ST7 Disturbance Reduction System Flight Experiment on the LISA Pathfinder

    NASA Technical Reports Server (NTRS)

    Maghami, Peiman; O'Donnell, James, Jr.; Hsu, Oscar; Ziemer, John; Dunn, Charles

    2017-01-01

    The Space Technology-7 Disturbance Reduction System (DRS) is an experiment package aboard the European Space Agency (ESA) LISA Pathfinder spacecraft. LISA Pathfinder launched from Kourou, French Guiana on December 3, 2015. The DRS is tasked to validate two specific technologies: colloidal micro-Newton thrusters (CMNT) to provide low-noise control capability of the spacecraft, and drag-free control flight. This validation is performed using highly sensitive drag-free sensors, which are provided by the LISA Technology Package of the European Space Agency. The Disturbance Reduction System is required to maintain the spacecrafts position with respect to a free-floating test mass to better than 10nmHz, along its sensitive axis (axis in optical metrology). It also has a goal of limiting the residual accelerations of any of the two test masses to below 30 (1 + [f3 mHz]) fmsHz, over the frequency range of 1 to 30 mHz.This paper briefly describes the design and the expected on-orbit performance of the control system for the two modes wherein the drag-free performance requirements are verified. The on-orbit performance of these modes are then compared to the requirements, as well as to the expected performance, and discussed.

  9. Wide-Angle Polarimetric Camera for Korea Pathfinder Lunar Orbiter

    NASA Astrophysics Data System (ADS)

    Choi, Y. J.; Kim, S.; Kang, K. I.

    2016-12-01

    A polarimetry data contains valuable information about the lunar surface such as the grain size and porosity of the regolith. However, a polarimetry toward the Moon in its orbit has not been performed. We plan to perform the polarimetry in lunar orbit through Korea Pathfinder Lunar Orbiter (KPLO), which will be launched around 2018/2019 as the first Korean lunar mission. Wide-Angle Polarimetric Camera (PolCam) is selected as one of the onboard instrument for KPLO. The science objectives are ; (1) To obtain the polarization data of the whole lunar surface at wavelengths of 430nm and 650nm for phase angle range from 0° to 120° with a spatial resolution of 80 m. (2) To obtain the reflectance ratios at 320 nm and 430 nm for the whole lunar surface with a spatial resolution of 80m. We will summarize recent results of lunar surface from ground-based polarimetric observations and will briefly introduce the science rationals and operation concept of PolCam.

  10. Soil-like deposits observed by Sojourner, the Pathfinder rover

    USGS Publications Warehouse

    Moore, Henry J.; Bickler, Donald B.; Crisp, Joy A.; Eisen, Howard J.; Gensler, Jeffrey A.; Haldemann, Albert F.C.; Matijevic, Jacob R.; Reid, Lisa K.; Pavlics, Ferenc

    1999-01-01

    Most of the soil-like materials at the Pathfinder landing site behave like moderately dense soils on Earth with friction angles near 34°-39° and are called cloddy deposits. Cloddy deposits appear to be poorly sorted with dust-sized to granule-sized mineral or rock grains; they may contain pebbles, small rock fragments, and clods. Thin deposits of porous, compressible drifts with friction angles near 26°-28° are also present. Drifts are fine grained. Cohesions of both types of deposits are small. There may be indurated soil-like deposits and/or coated or crusted rocks. Cloddy deposits may be fluvial sediments of the Ares-Tiu floods, but other origins, such as ejecta from nearby impact craters, should be considered. Drifts are probably dusts that settled from the Martian atmosphere. Remote-sensing signatures of the deposits inferred from rover observations are consistent with those observed from orbit and Earth.

  11. MSAViewer: interactive JavaScript visualization of multiple sequence alignments

    PubMed Central

    Yachdav, Guy; Wilzbach, Sebastian; Rauscher, Benedikt; Sheridan, Robert; Sillitoe, Ian; Procter, James; Lewis, Suzanna E.; Rost, Burkhard; Goldberg, Tatyana

    2016-01-01

    Summary: The MSAViewer is a quick and easy visualization and analysis JavaScript component for Multiple Sequence Alignment data of any size. Core features include interactive navigation through the alignment, application of popular color schemes, sorting, selecting and filtering. The MSAViewer is ‘web ready’: written entirely in JavaScript, compatible with modern web browsers and does not require any specialized software. The MSAViewer is part of the BioJS collection of components. Availability and Implementation: The MSAViewer is released as open source software under the Boost Software License 1.0. Documentation, source code and the viewer are available at http://msa.biojs.net/. Supplementary information: Supplementary data are available at Bioinformatics online. Contact: msa@bio.sh PMID:27412096

  12. A High-Availability, Distributed Hardware Control System Using Java

    NASA Technical Reports Server (NTRS)

    Niessner, Albert F.

    2011-01-01

    Two independent coronagraph experiments that require 24/7 availability with different optical layouts and different motion control requirements are commanded and controlled with the same Java software system executing on many geographically scattered computer systems interconnected via TCP/IP. High availability of a distributed system requires that the computers have a robust communication messaging system making the mix of TCP/IP (a robust transport), and XML (a robust message) a natural choice. XML also adds the configuration flexibility. Java then adds object-oriented paradigms, exception handling, heavily tested libraries, and many third party tools for implementation robustness. The result is a software system that provides users 24/7 access to two diverse experiments with XML files defining the differences

  13. Test Input Generation for Red-Black Trees using Abstraction

    NASA Technical Reports Server (NTRS)

    Visser, Willem; Pasareanu, Corina S.; Pelanek, Radek

    2005-01-01

    We consider the problem of test input generation for code that manipulates complex data structures. Test inputs are sequences of method calls from the data structure interface. We describe test input generation techniques that rely on state matching to avoid generation of redundant tests. Exhaustive techniques use explicit state model checking to explore all the possible test sequences up to predefined input sizes. Lossy techniques rely on abstraction mappings to compute and store abstract versions of the concrete states; they explore under-approximations of all the possible test sequences. We have implemented the techniques on top of the Java PathFinder model checker and we evaluate them using a Java implementation of red-black trees.

  14. Prediction and Validation of Mars Pathfinder Hypersonic Aerodynamic Data Base

    NASA Technical Reports Server (NTRS)

    Gnoffo, Peter A.; Braun, Robert D.; Weilmuenster, K. James; Mitcheltree, Robert A.; Engelund, Walter C.; Powell, Richard W.

    1998-01-01

    Postflight analysis of the Mars Pathfinder hypersonic, continuum aerodynamic data base is presented. Measured data include accelerations along the body axis and axis normal directions. Comparisons of preflight simulation and measurements show good agreement. The prediction of two static instabilities associated with movement of the sonic line from the shoulder to the nose and back was confirmed by measured normal accelerations. Reconstruction of atmospheric density during entry has an uncertainty directly proportional to the uncertainty in the predicted axial coefficient. The sensitivity of the moment coefficient to freestream density, kinetic models and center-of-gravity location are examined to provide additional consistency checks of the simulation with flight data. The atmospheric density as derived from axial coefficient and measured axial accelerations falls within the range required for sonic line shift and static stability transition as independently determined from normal accelerations.

  15. The Mars Pathfinder atmospheric structure investigation/meteorology (ASI/MET) experiment.

    PubMed

    Schofield, J T; Barnes, J R; Crisp, D; Haberle, R M; Larsen, S; Magalhães, J A; Murphy, J R; Seiff, A; Wilson, G

    1997-12-05

    The Mars Pathfinder atmospheric structure investigation/meteorology (ASI/MET) experiment measured the vertical density, pressure, and temperature structure of the martian atmosphere from the surface to 160 km, and monitored surface meteorology and climate for 83 sols (1 sol = 1 martian day = 24.7 hours). The atmospheric structure and the weather record are similar to those observed by the Viking 1 lander (VL-1) at the same latitude, altitude, and season 21 years ago, but there are differences related to diurnal effects and the surface properties of the landing site. These include a cold nighttime upper atmosphere; atmospheric temperatures that are 10 to 12 degrees kelvin warmer near the surface; light slope-controlled winds; and dust devils, identified by their pressure, wind, and temperature signatures. The results are consistent with the warm, moderately dusty atmosphere seen by VL-1.

  16. Waveform identification and retracking analyses of Jason-2 altimeter satellite data for improving sea surface height estimation in Southern Java Island Waters and Java Sea, Indonesia

    NASA Astrophysics Data System (ADS)

    Nababan, Bisman; Hakim, Muhammad R.; Panjaitan, James P.

    2018-05-01

    Indonesian waters containing many small islands and shallow waters leads to a less accurate of sea surface height (SSH) estimation from satellite altimetry. Little efforts are also given for the validation of SSH estimation from the satellite in Indonesian waters. The purpose of this research was to identify and retrack waveforms of Jason-2 altimeter satellite data in southern Java island waters and Java Sea using several retrackers and performed improvement percentage analyses for new SSH estimation. The study used data of the Sensor Geophysical Data Record type D (SGDR-D) of Jason-2 satellite altimeter of the year 2010 in the southern Java island waters and 2012-2014 in Java Sea. Waveform retracking analyses were conducted using several retrackers (Offset Center of Gravity, Ice, Threshold, and Improved Threshold) and examined using a world reference undulation geoid of EGM08 and Oceanic retracker. Result showed that shape and pattern of waveforms were varied in all passes, seasons, and locations specifically along the coastal regions. In general, non-Brownish and complex waveforms were identified along coastal region specifically within the distance of 0-10 km from the shoreline. In contrary, generally Brownish waveforms were found in offshore. However, Brownish waveform can also be found within coastal region and non-Brownish waveforms within offshore region. The results were also showed that the four retrackers produced a better SSH estimation in coastal region. However, there was no dominant retracker to improve the accuracy of the SSH estimate.

  17. Scientific Programming Using Java and C: A Remote Sensing Example

    NASA Technical Reports Server (NTRS)

    Prados, Donald; Johnson, Michael; Mohamed, Mohamed A.; Cao, Chang-Yong; Gasser, Jerry; Powell, Don; McGregor, Lloyd

    1999-01-01

    This paper presents results of a project to port code for processing remotely sensed data from the UNIX environment to Windows. Factors considered during this process include time schedule, cost, resource availability, reuse of existing code, rapid interface development, ease of integration, and platform independence. The approach selected for this project used both Java and C. By using Java for the graphical user interface and C for the domain model, the strengths of both languages were utilized and the resulting code can easily be ported to other platforms. The advantages of this approach are discussed in this paper.

  18. Interior structure and seasonal mass redistribution of Mars from radio tracking of Mars Pathfinder

    NASA Technical Reports Server (NTRS)

    Folkner, W. M.; Yoder, C. F.; Yuan, D. N.; Standish, E. M.; Preston, R. A.

    1997-01-01

    Doppler and range measurements to the Mars Pathfinder lander made using its radio communications system have been combined with similar measurements from the Viking landers to estimate improved values of the precession of Mars' pole of rotation and the variation in Mars' rotation rate. The observed precession of -7576 +/- 35 milliarc seconds of angle per year implies a dense core and constrains possible models of interior composition. The estimated annual variation in rotation is in good agreement with a model of seasonal mass exchange of carbon dioxide between the atmosphere and ice caps.

  19. Interior structure and seasonal mass redistribution of Mars from radio tracking of Mars Pathfinder.

    PubMed

    Folkner, W M; Yoder, C F; Yuan, D N; Standish, E M; Preston, R A

    1997-12-05

    Doppler and range measurements to the Mars Pathfinder lander made using its radio communications system have been combined with similar measurements from the Viking landers to estimate improved values of the precession of Mars' pole of rotation and the variation in Mars' rotation rate. The observed precession of -7576 +/- 35 milliarc seconds of angle per year implies a dense core and constrains possible models of interior composition. The estimated annual variation in rotation is in good agreement with a model of seasonal mass exchange of carbon dioxide between the atmosphere and ice caps.

  20. Interactive Learning with Java Applets: Using Interactive, Web-Based Java Applets to Present Science in a Concrete, Meaningful Manner

    ERIC Educational Resources Information Center

    Corder, Greg

    2005-01-01

    Science teachers face challenges that affect the quality of instruction. Tight budgets, limited resources, school schedules, and other obstacles limit students' opportunities to experience science that is visual and interactive. Incorporating web-based Java applets into science instruction offers a practical solution to these challenges. The…

  1. Descriptive Statistics and Cluster Analysis for Extreme Rainfall in Java Island

    NASA Astrophysics Data System (ADS)

    E Komalasari, K.; Pawitan, H.; Faqih, A.

    2017-03-01

    This study aims to describe regional pattern of extreme rainfall based on maximum daily rainfall for period 1983 to 2012 in Java Island. Descriptive statistics analysis was performed to obtain centralization, variation and distribution of maximum precipitation data. Mean and median are utilized to measure central tendency data while Inter Quartile Range (IQR) and standard deviation are utilized to measure variation of data. In addition, skewness and kurtosis used to obtain shape the distribution of rainfall data. Cluster analysis using squared euclidean distance and ward method is applied to perform regional grouping. Result of this study show that mean (average) of maximum daily rainfall in Java Region during period 1983-2012 is around 80-181mm with median between 75-160mm and standard deviation between 17 to 82. Cluster analysis produces four clusters and show that western area of Java tent to have a higher annual maxima of daily rainfall than northern area, and have more variety of annual maximum value.

  2. WWWinda Orchestrator: a mechanism for coordinating distributed flocks of Java Applets

    NASA Astrophysics Data System (ADS)

    Gutfreund, Yechezkal-Shimon; Nicol, John R.

    1997-01-01

    The WWWinda Orchestrator is a simple but powerful tool for coordinating distributed Java applets. Loosely derived from the Linda programming language developed by David Gelernter and Nicholas Carriero of Yale, WWWinda implements a distributed shared object space called TupleSpace where applets can post, read, or permanently store arbitrary Java objects. In this manner, applets can easily share information without being aware of the underlying communication mechanisms. WWWinda is a very useful for orchestrating flocks of distributed Java applets. Coordination event scan be posted to WWWinda TupleSpace and used to orchestrate the actions of remote applets. Applets can easily share information via the TupleSpace. The technology combines several functions in one simple metaphor: distributed web objects, remote messaging between applets, distributed synchronization mechanisms, object- oriented database, and a distributed event signaling mechanisms. WWWinda can be used a s platform for implementing shared VRML environments, shared groupware environments, controlling remote devices such as cameras, distributed Karaoke, distributed gaming, and shared audio and video experiences.

  3. Predictors of Errors of Novice Java Programmers

    ERIC Educational Resources Information Center

    Bringula, Rex P.; Manabat, Geecee Maybelline A.; Tolentino, Miguel Angelo A.; Torres, Edmon L.

    2012-01-01

    This descriptive study determined which of the sources of errors would predict the errors committed by novice Java programmers. Descriptive statistics revealed that the respondents perceived that they committed the identified eighteen errors infrequently. Thought error was perceived to be the main source of error during the laboratory programming…

  4. Interactive Economics Instruction with Java and CGI.

    ERIC Educational Resources Information Center

    Gerdes, Geoffrey R.

    2000-01-01

    States that this Web site is based on the conviction that Web-based materials must contain interactive modules to achieve value beyond that obtained by conventional media. Discusses three applets that can be reached at the homepage of the Web site by selecting the Java applets link. (CMK)

  5. Selection of radio sources for Venus balloon-Pathfinder Delta-DOR navigation at 1.7 GHz

    NASA Technical Reports Server (NTRS)

    Liewer, K. M

    1986-01-01

    In order to increase the success rate of the Delta-DOR (Delta-Differential One-way Range) VLBI navigational support for the French-Soviet Venus Balloon and Halley Pathfinder projects, forty-four extragalactic radio sources were observed in advance of these projects to determine which were suitable for use as reference sources. Of these forty-four radio sources taken from the existing JPL radio source catalogue, thirty-six were determined to be of sufficient strength for use in Delta-DOR VLBI navigation.

  6. Playing jigsaw with large igneous provinces - a plate-tectonic reconstruction of Ontong Java Nui

    NASA Astrophysics Data System (ADS)

    Hochmuth, Katharina; Gohl, Karsten; Uenzelmann-Neben, Gabriele; Werner, Reinhard

    2015-04-01

    Ontong Java Nui is a Cretaceous large igneous province (LIP), which was rifted apart into various smaller plateaus shortly after its emplacement around 125 Ma in the central Pacific. It incorporated the Ontong Java Plateau, the Hikurangi Plateau and the Manihiki Plateau as well as multiple smaller fragments, which have been subducted. Its size has been estimated to be approximately 0.8% of the Earth's surface. A volcanic edifice of this size has potentially had a great impact on the environment such as its CO2 release. The break-up of the "Super"-LIP is poorly constrained, because the break-up and subsequent seafloor spreading occurred within the Cretaceous Quiet Period. The Manihiki Plateau is presumably the centerpiece of this "Super"-LIP and shows by its margins and internal fragmentation that its tectonic and volcanic activity is related to the break-up of Ontong Java Nui. By incorporating two new seismic refraction/wide-angle reflection lines across two of the main sub-plateaus of the Manihiki Plateau, we can classify the break-up modes of the individual margins of the Manihiki Plateau. The Western Plateaus experienced crustal stretching due to the westward motion of the Ontong Java Plateau. The High Plateau shows sharp strike-slip movements at its eastern boundary towards an earlier part of Ontong Java Nui, which is has been subducted, and a rifted margin with a strong volcanic overprint at its southern edges towards the Hikurangi Plateau. These observations allow us a re-examination of the conjugate margins of the Hikurangi Plateau and the Ontong Java Plateau. The repositioning of the different plateaus leads to the conclusion that Ontong Java Nui was larger (~1.2% of the Earth's surface at emplacement) than previously anticipated. We use these finding to improve the plate tectonic reconstruction of the Cretaceous Pacific and to illuminate the role of the LIPs within the plate tectonic circuit in the western and central Pacific.

  7. Java-based cryptosystem for PACS and tele-imaging

    NASA Astrophysics Data System (ADS)

    Tjandra, Donny; Wong, Stephen T. C.; Yu, Yuan-Pin

    1998-07-01

    Traditional PACS systems are based on two-tier client server architectures, and require the use of costly, high-end client workstations for image viewing. Consequently, PACS systems using the two-tier architecture do not scale well as data increases in size and complexity. Furthermore, use of dedicated viewing workstations incurs costs in deployment and maintenance. To address these issues, the use of digital library technologies, such as the World Wide Web, Java, and CORBA, is being explored to distribute PACS data to serve a broader range of healthcare providers in an economic and efficient manner. Integration of PACS systems with digital library technologies allows access to medical information through open networks such as the Internet. However, use of open networks to transmit medical data introduces problems with maintaining privacy and integrity of patient information. Cryptography and digital timestamping is used to protect sensitive information from unauthorized access or tampering. A major concern when using cryptography and digital timestamping is the performance degradation associated with the mathematical calculations needed to encrypt/decrypt an image dataset, or to calculate the hash value of an image. The performance issue is compounded by the extra layer associated with the CORBA middleware, and the use of programming languages interpreted at the client side, such as Java. This paper study the extent to which Java-based cryptography and digital timestamping affects performance in a PACS system integrated with digital library technologies.

  8. Monitoring 2015 drought in West Java using Normalized Difference Water Index (NDWI)

    NASA Astrophysics Data System (ADS)

    Febrina Amalo, Luisa; Ma’rufah, Ummu; Ayu Permatasari, Prita

    2018-05-01

    Drought is a slow developing phenomenon that accumulates over period and affecting various sectors. It is one of natural hazards that occurs each year, particularly in Indonesia over Australian Monsoon period. During drought event, vegetation’s cover can be affected by water stress. Normalized Difference Water Index (NDWI) is a method for water resource assessment and known to be strongly related to the plant water content. NDWI is produced from MODIS bands Near-infrared (NIR) and Short Wave Infrared (SWIR). This research aims to monitor drought using NDWI in West Java during El Niño 2015 and its impact on rainfall variability. The result showed rainfall was decreased significantly starting from May-June, then increased in November. According to NDWI, it also showed that mostly West Java Region affected by drought during May-November. Very strong drought occurred on September-November. On December, areal extent of drought was decreasing significantly because rainfall had increased during November. Generally, areal extent of drought in West Java was dominated by strong and moderate drought. It implied that El Niño 2015, give great impact on increasing drought and decreasing rainfall in West Java. NDWI can be detected drought occurrence as it have good correlation with rainfall spatially.

  9. Strategies for teaching object-oriented concepts with Java

    NASA Astrophysics Data System (ADS)

    Sicilia, Miguel-Ángel

    2006-03-01

    A considerable amount of experiences in teaching object-oriented concepts using the Java language have been reported to date, some of which describe language pitfalls and concrete learning difficulties. In this paper, a number of additional issues that have been experienced as difficult for students to master, along with approaches intended to overcome them, are addressed. Concretely, practical issues regarding associations, interfaces, genericity and exceptions are described. These issues suggest that more emphasis is required on presenting Java programs as derivations of conceptual models, in order to guarantee that a thorough design of the object structure actually precedes implementation issues. In addition, common student misunderstandings about the uses of interfaces and exceptions point to the necessity of introducing both specific design philosophies and also a clear distinction between design-for-reuse and more specific implementation issues.

  10. The simulation of 3D structure of groundwater system based on Java/Java3D

    NASA Astrophysics Data System (ADS)

    Yang, Xiaodong; Cui, Weihong; Wang, Peifa; Huang, Yongqi

    2007-06-01

    With the singular development of Internet technique and 3DGIS as well as VR and the imminence demand of 3D visualization from Groundwater information management field, how to display, roam, anatomize and analyze of 3D structure of Groundwater system on Internet have become a research hotspot in hydrogeology field. We simulated the 3D Groundwater resource structure of Taiyuan basin and implemented displaying, roaming, anatomizing and analyzing functions on Internet by Java 3D.

  11. MpTheory Java library: a multi-platform Java library for systems biology based on the Metabolic P theory.

    PubMed

    Marchetti, Luca; Manca, Vincenzo

    2015-04-15

    MpTheory Java library is an open-source project collecting a set of objects and algorithms for modeling observed dynamics by means of the Metabolic P (MP) theory, that is, a mathematical theory introduced in 2004 for modeling biological dynamics. By means of the library, it is possible to model biological systems both at continuous and at discrete time. Moreover, the library comprises a set of regression algorithms for inferring MP models starting from time series of observations. To enhance the modeling experience, beside a pure Java usage, the library can be directly used within the most popular computing environments, such as MATLAB, GNU Octave, Mathematica and R. The library is open-source and licensed under the GNU Lesser General Public License (LGPL) Version 3.0. Source code, binaries and complete documentation are available at http://mptheory.scienze.univr.it. luca.marchetti@univr.it, marchetti@cosbi.eu Supplementary data are available at Bioinformatics online. © The Author 2014. Published by Oxford University Press. All rights reserved. For Permissions, please e-mail: journals.permissions@oup.com.

  12. Calibrating the system dynamics of LISA Pathfinder

    NASA Astrophysics Data System (ADS)

    Armano, M.; Audley, H.; Baird, J.; Binetruy, P.; Born, M.; Bortoluzzi, D.; Castelli, E.; Cavalleri, A.; Cesarini, A.; Cruise, A. M.; Danzmann, K.; de Deus Silva, M.; Diepholz, I.; Dixon, G.; Dolesi, R.; Ferraioli, L.; Ferroni, V.; Fitzsimons, E. D.; Freschi, M.; Gesa, L.; Gibert, F.; Giardini, D.; Giusteri, R.; Grimani, C.; Grzymisch, J.; Harrison, I.; Heinzel, G.; Hewitson, M.; Hollington, D.; Hoyland, D.; Hueller, M.; Inchauspé, H.; Jennrich, O.; Jetzer, P.; Karnesis, N.; Kaune, B.; Korsakova, N.; Killow, C. J.; Lobo, J. A.; Lloro, I.; Liu, L.; López-Zaragoza, J. P.; Maarschalkerweerd, R.; Mance, D.; Meshksar, N.; Martín, V.; Martin-Polo, L.; Martino, J.; Martin-Porqueras, F.; Mateos, I.; McNamara, P. W.; Mendes, J.; Mendes, L.; Nofrarias, M.; Paczkowski, S.; Perreur-Lloyd, M.; Petiteau, A.; Pivato, P.; Plagnol, E.; Ramos-Castro, J.; Reiche, J.; Robertson, D. I.; Rivas, F.; Russano, G.; Slutsky, J.; Sopuerta, C. F.; Sumner, T.; Texier, D.; Thorpe, J. I.; Vetrugno, D.; Vitale, S.; Wanner, G.; Ward, H.; Wass, P.; Weber, W. J.; Wissel, L.; Wittchen, A.; Zweifel, P.

    2018-06-01

    LISA Pathfinder (LPF) was a European Space Agency mission with the aim to test key technologies for future space-borne gravitational-wave observatories like LISA. The main scientific goal of LPF was to demonstrate measurements of differential acceleration between free-falling test masses at the sub-femto-g level, and to understand the residual acceleration in terms of a physical model of stray forces, and displacement readout noise. A key step toward reaching the LPF goals was the correct calibration of the dynamics of LPF, which was a three-body system composed by two test-masses enclosed in a single spacecraft, and subject to control laws for system stability. In this work, we report on the calibration procedures adopted to calculate the residual differential stray force per unit mass acting on the two test-masses in their nominal positions. The physical parameters of the adopted dynamical model are presented, together with their role on LPF performance. The analysis and results of these experiments show that the dynamics of the system was accurately modeled and the dynamical parameters were stationary throughout the mission. Finally, the impact and importance of calibrating system dynamics for future space-based gravitational wave observatories is discussed.

  13. Improving the interactivity and functionality of Web-based radiology teaching files with the Java programming language.

    PubMed

    Eng, J

    1997-01-01

    Java is a programming language that runs on a "virtual machine" built into World Wide Web (WWW)-browsing programs on multiple hardware platforms. Web pages were developed with Java to enable Web-browsing programs to overlay transparent graphics and text on displayed images so that the user could control the display of labels and annotations on the images, a key feature not available with standard Web pages. This feature was extended to include the presentation of normal radiologic anatomy. Java programming was also used to make Web browsers compatible with the Digital Imaging and Communications in Medicine (DICOM) file format. By enhancing the functionality of Web pages, Java technology should provide greater incentive for using a Web-based approach in the development of radiology teaching material.

  14. An Investigation of Factors Related to Self-Efficacy for Java Programming among Engineering Students

    ERIC Educational Resources Information Center

    Askar, Petek; Davenport, David

    2009-01-01

    The purpose of this study was to examine the factors related to self-efficacy for Java programming among first year engineering students. An instrument assessing Java programming self-efficacy was developed from the computer programming self-efficacy scale of Ramalingam & Wiedenbeck. The instrument was administered at the beginning of the…

  15. Volcanoes in Central Java, Indonesia

    NASA Technical Reports Server (NTRS)

    1991-01-01

    The Indonesian island of Java (8.0S, 112.0) has over 35 active volcanoes, some of which are the most explosive in the world, and form an east/west line of peaks the length of the island. Five are in this image and at least one is thought to be currently active. The plume flowing north from Welirang (just east of the central cloud mass) is believed to be steam emissions. Also, the lack of vegetation at the peak indicates volcanic activity.

  16. MSAViewer: interactive JavaScript visualization of multiple sequence alignments.

    PubMed

    Yachdav, Guy; Wilzbach, Sebastian; Rauscher, Benedikt; Sheridan, Robert; Sillitoe, Ian; Procter, James; Lewis, Suzanna E; Rost, Burkhard; Goldberg, Tatyana

    2016-11-15

    The MSAViewer is a quick and easy visualization and analysis JavaScript component for Multiple Sequence Alignment data of any size. Core features include interactive navigation through the alignment, application of popular color schemes, sorting, selecting and filtering. The MSAViewer is 'web ready': written entirely in JavaScript, compatible with modern web browsers and does not require any specialized software. The MSAViewer is part of the BioJS collection of components. The MSAViewer is released as open source software under the Boost Software License 1.0. Documentation, source code and the viewer are available at http://msa.biojs.net/Supplementary information: Supplementary data are available at Bioinformatics online. msa@bio.sh. © The Author 2016. Published by Oxford University Press.

  17. Ambient Noise Tomography of central Java, with Transdimensional Bayesian Inversion

    NASA Astrophysics Data System (ADS)

    Zulhan, Zulfakriza; Saygin, Erdinc; Cummins, Phil; Widiyantoro, Sri; Nugraha, Andri Dian; Luehr, Birger-G.; Bodin, Thomas

    2014-05-01

    Delineating the crustal structure of central Java is crucial for understanding its complex tectonic setting. However, seismic imaging of the strong heterogeneity typical of such a tectonically active region can be challenging, particularly in the upper crust where velocity contrasts are strongest and steep body wave ray-paths provide poor resolution. We have applied ambient noise cross correlation of pair stations in central Java, Indonesia by using the MERapi Amphibious EXperiment (MERAMEX) dataset. The data were collected between May to October 2004. We used 120 of 134 temporary seismic stations for about 150 days of observation, which covered central Java. More than 5000 Rayleigh wave Green's function were extracted by cross-correlating the noise simultaneously recorded at available station pairs. We applied a fully nonlinear 2D Bayesian inversion technique to the retrieved travel times. Features in the derived tomographic images correlate well with previous studies, and some shallow structures that were not evident in previous studies are clearly imaged with Ambient Noise Tomography. The Kendeng Basin and several active volcanoes appear with very low group velocities, and anomalies with relatively high velocities can be interpreted in terms of crustal sutures and/or surface geological features.

  18. Java-based browsing, visualization and processing of heterogeneous medical data from remote repositories.

    PubMed

    Masseroli, M; Bonacina, S; Pinciroli, F

    2004-01-01

    The actual development of distributed information technologies and Java programming enables employing them also in the medical arena to support the retrieval, integration and evaluation of heterogeneous data and multimodal images in a web browser environment. With this aim, we used them to implement a client-server architecture based on software agents. The client side is a Java applet running in a web browser and providing a friendly medical user interface to browse and visualize different patient and medical test data, integrating them properly. The server side manages secure connections and queries to heterogeneous remote databases and file systems containing patient personal and clinical data. Based on the Java Advanced Imaging API, processing and analysis tools were developed to support the evaluation of remotely retrieved bioimages through the quantification of their features in different regions of interest. The Java platform-independence allows the centralized management of the implemented prototype and its deployment to each site where an intranet or internet connection is available. Giving healthcare providers effective support for comprehensively browsing, visualizing and evaluating medical images and records located in different remote repositories, the developed prototype can represent an important aid in providing more efficient diagnoses and medical treatments.

  19. Rickettsia felis in Xenopsylla cheopis, Java, Indonesia

    PubMed Central

    Jiang, Ju; Soeatmadji, Djoko W.; Henry, Katherine M.; Ratiwayanto, Sutanti; Bangs, Michael J.

    2006-01-01

    Rickettsia typhi and R. felis, etiologic agents of murine typhus and fleaborne spotted fever, respectively, were detected in Oriental rat fleas (Xenopsylla cheopis) collected from rodents and shrews in Java, Indonesia. We describe the first evidence of R. felis in Indonesia and naturally occurring R. felis in Oriental rat fleas. PMID:16965716

  20. Pathfinders and Problem Solving: Comparative Effects of Two Cognitive-Behavioral Programs among Men and Women Offenders in Community and Prison

    ERIC Educational Resources Information Center

    Spiropoulos, Georgia V.; Spruance, Lisa; Van Voorhis, Patricia; Schmitt, Michelle M.

    2005-01-01

    The effects of "Problem Solving" (Taymans & Parese, 1998) are compared across small diversion and prison samples for men and women. A second program, "Pathfinders" (Hansen, 1993), was compared to the Problem Solving program among incarcerated women offenders to determine whether its focus upon empowerment and relationships enhanced the effects of…

  1. Java across Different Curricula, Courses and Countries Using a Common Pool of Teaching Material

    ERIC Educational Resources Information Center

    Ivanovic, Mirjana; Budimac, Zoran; Mishev, Anastas; Bothe, Klaus; Jurca, Ioan

    2013-01-01

    Under the auspices of a DAAD funded educational project, a subproject devoted to different aspects of teaching the Java programming language started several years ago. The initial intention of the subproject was to attract members of the subproject to prepare some teaching materials for teaching essentials of the Java programming language. During…

  2. jmzML, an open-source Java API for mzML, the PSI standard for MS data.

    PubMed

    Côté, Richard G; Reisinger, Florian; Martens, Lennart

    2010-04-01

    We here present jmzML, a Java API for the Proteomics Standards Initiative mzML data standard. Based on the Java Architecture for XML Binding and XPath-based XML indexer random-access XML parser, jmzML can handle arbitrarily large files in minimal memory, allowing easy and efficient processing of mzML files using the Java programming language. jmzML also automatically resolves internal XML references on-the-fly. The library (which includes a viewer) can be downloaded from http://jmzml.googlecode.com.

  3. Simulation-Based Verification of Autonomous Controllers via Livingstone PathFinder

    NASA Technical Reports Server (NTRS)

    Lindsey, A. E.; Pecheur, Charles

    2004-01-01

    AI software is often used as a means for providing greater autonomy to automated systems, capable of coping with harsh and unpredictable environments. Due in part to the enormous space of possible situations that they aim to addrs, autonomous systems pose a serious challenge to traditional test-based verification approaches. Efficient verification approaches need to be perfected before these systems can reliably control critical applications. This publication describes Livingstone PathFinder (LPF), a verification tool for autonomous control software. LPF applies state space exploration algorithms to an instrumented testbed, consisting of the controller embedded in a simulated operating environment. Although LPF has focused on NASA s Livingstone model-based diagnosis system applications, the architecture is modular and adaptable to other systems. This article presents different facets of LPF and experimental results from applying the software to a Livingstone model of the main propulsion feed subsystem for a prototype space vehicle.

  4. Non-linear quantization error reduction for the temperature measurement subsystem on-board LISA Pathfinder

    NASA Astrophysics Data System (ADS)

    Sanjuan, J.; Nofrarias, M.

    2018-04-01

    Laser Interferometer Space Antenna (LISA) Pathfinder is a mission to test the technology enabling gravitational wave detection in space and to demonstrate that sub-femto-g free fall levels are possible. To do so, the distance between two free falling test masses is measured to unprecedented sensitivity by means of laser interferometry. Temperature fluctuations are one of the noise sources limiting the free fall accuracy and the interferometer performance and need to be known at the ˜10 μK Hz-1/2 level in the sub-millihertz frequency range in order to validate the noise models for the future space-based gravitational wave detector LISA. The temperature measurement subsystem on LISA Pathfinder is in charge of monitoring the thermal environment at key locations with noise levels of 7.5 μK Hz-1/2 at the sub-millihertz. However, its performance worsens by one to two orders of magnitude when slowly changing temperatures are measured due to errors introduced by analog-to-digital converter non-linearities. In this paper, we present a method to reduce this effect by data post-processing. The method is applied to experimental data available from on-ground validation tests to demonstrate its performance and the potential benefit for in-flight data. The analog-to-digital converter effects are reduced by a factor between three and six in the frequencies where the errors play an important role. An average 2.7 fold noise reduction is demonstrated in the 0.3 mHz-2 mHz band.

  5. Non-linear quantization error reduction for the temperature measurement subsystem on-board LISA Pathfinder.

    PubMed

    Sanjuan, J; Nofrarias, M

    2018-04-01

    Laser Interferometer Space Antenna (LISA) Pathfinder is a mission to test the technology enabling gravitational wave detection in space and to demonstrate that sub-femto-g free fall levels are possible. To do so, the distance between two free falling test masses is measured to unprecedented sensitivity by means of laser interferometry. Temperature fluctuations are one of the noise sources limiting the free fall accuracy and the interferometer performance and need to be known at the ∼10 μK Hz -1/2 level in the sub-millihertz frequency range in order to validate the noise models for the future space-based gravitational wave detector LISA. The temperature measurement subsystem on LISA Pathfinder is in charge of monitoring the thermal environment at key locations with noise levels of 7.5 μK Hz -1/2 at the sub-millihertz. However, its performance worsens by one to two orders of magnitude when slowly changing temperatures are measured due to errors introduced by analog-to-digital converter non-linearities. In this paper, we present a method to reduce this effect by data post-processing. The method is applied to experimental data available from on-ground validation tests to demonstrate its performance and the potential benefit for in-flight data. The analog-to-digital converter effects are reduced by a factor between three and six in the frequencies where the errors play an important role. An average 2.7 fold noise reduction is demonstrated in the 0.3 mHz-2 mHz band.

  6. Java-based PACS and reporting system for nuclear medicine

    NASA Astrophysics Data System (ADS)

    Slomka, Piotr J.; Elliott, Edward; Driedger, Albert A.

    2000-05-01

    In medical imaging practice, images and reports often need be reviewed and edited from many locations. We have designed and implemented a Java-based Remote Viewing and Reporting System (JaRRViS) for a nuclear medicine department, which is deployed as a web service, at the fraction of the cost dedicated PACS systems. The system can be extended to other imaging modalities. JaRRViS interfaces to the clinical patient databases of imaging workstations. Specialized nuclear medicine applets support interactive displays of data such as 3-D gated SPECT with all the necessary options such as cine, filtering, dynamic lookup tables, and reorientation. The reporting module is implemented as a separate applet using Java Foundation Classes (JFC) Swing Editor Kit and allows composition of multimedia reports after selection and annotation of appropriate images. The reports are stored on the server in the HTML format. JaRRViS uses Java Servlets for the preparation and storage of final reports. The http links to the reports or to the patient's raw images with applets can be obtained from JaRRViS by any Hospital Information System (HIS) via standard queries. Such links can be sent via e-mail or included as text fields in any HIS database, providing direct access to the patient reports and images via standard web browsers.

  7. JDiffraction: A GPGPU-accelerated JAVA library for numerical propagation of scalar wave fields

    NASA Astrophysics Data System (ADS)

    Piedrahita-Quintero, Pablo; Trujillo, Carlos; Garcia-Sucerquia, Jorge

    2017-05-01

    JDiffraction, a GPGPU-accelerated JAVA library for numerical propagation of scalar wave fields, is presented. Angular spectrum, Fresnel transform, and Fresnel-Bluestein transform are the numerical algorithms implemented in the methods and functions of the library to compute the scalar propagation of the complex wavefield. The functionality of the library is tested with the modeling of easy to forecast numerical experiments and also with the numerical reconstruction of a digitally recorded hologram. The performance of JDiffraction is contrasted with a library written for C++, showing great competitiveness in the apparently less complex environment of JAVA language. JDiffraction also includes JAVA easy-to-use methods and functions that take advantage of the computation power of the graphic processing units to accelerate the processing times of 2048×2048 pixel images up to 74 frames per second.

  8. Designing and developing portable large-scale JavaScript web applications within the Experiment Dashboard framework

    NASA Astrophysics Data System (ADS)

    Andreeva, J.; Dzhunov, I.; Karavakis, E.; Kokoszkiewicz, L.; Nowotka, M.; Saiz, P.; Tuckett, D.

    2012-12-01

    Improvements in web browser performance and web standards compliance, as well as the availability of comprehensive JavaScript libraries, provides an opportunity to develop functionally rich yet intuitive web applications that allow users to access, render and analyse data in novel ways. However, the development of such large-scale JavaScript web applications presents new challenges, in particular with regard to code sustainability and team-based work. We present an approach that meets the challenges of large-scale JavaScript web application design and development, including client-side model-view-controller architecture, design patterns, and JavaScript libraries. Furthermore, we show how the approach leads naturally to the encapsulation of the data source as a web API, allowing applications to be easily ported to new data sources. The Experiment Dashboard framework is used for the development of applications for monitoring the distributed computing activities of virtual organisations on the Worldwide LHC Computing Grid. We demonstrate the benefits of the approach for large-scale JavaScript web applications in this context by examining the design of several Experiment Dashboard applications for data processing, data transfer and site status monitoring, and by showing how they have been ported for different virtual organisations and technologies.

  9. Empowerment model of biomass in west java

    NASA Astrophysics Data System (ADS)

    Mulyana, C.; Fitriani, N. I.; Saad, A.; Yuliah, Y.

    2017-06-01

    Scarcity of fossil energy accelerates the search of renewable energy sources as the substitution. In West Java, biomass has potential to be developed into bio-briquette because the resources are abundant. The objectives of this research are mapping the potency of biomass as bio-briquette in West Java, and making the model of the empowerment biomass potential involving five fundamental step which are raw material, pre-processing process, conversion mechanism, products, and end user. The main object of this model focused on 3 forms which are solid, liquid, and gas which was made by involving the community component as the owner biomass, district government, academics and researcher communities, related industries as users of biomass, and the central government as the policy holders and investors as a funder. In the model was described their respective roles and mutual relationship one with another so that the bio-briquette as a substitute of fossil fuels can be realized. Application of this model will provide the benefits in renewability energy sources, environmental, socio economical and energy security.

  10. Access Control of Web- and Java-Based Applications

    NASA Technical Reports Server (NTRS)

    Tso, Kam S.; Pajevski, Michael J.

    2013-01-01

    Cybersecurity has become a great concern as threats of service interruption, unauthorized access, stealing and altering of information, and spreading of viruses have become more prevalent and serious. Application layer access control of applications is a critical component in the overall security solution that also includes encryption, firewalls, virtual private networks, antivirus, and intrusion detection. An access control solution, based on an open-source access manager augmented with custom software components, was developed to provide protection to both Web-based and Javabased client and server applications. The DISA Security Service (DISA-SS) provides common access control capabilities for AMMOS software applications through a set of application programming interfaces (APIs) and network- accessible security services for authentication, single sign-on, authorization checking, and authorization policy management. The OpenAM access management technology designed for Web applications can be extended to meet the needs of Java thick clients and stand alone servers that are commonly used in the JPL AMMOS environment. The DISA-SS reusable components have greatly reduced the effort for each AMMOS subsystem to develop its own access control strategy. The novelty of this work is that it leverages an open-source access management product that was designed for Webbased applications to provide access control for Java thick clients and Java standalone servers. Thick clients and standalone servers are still commonly used in businesses and government, especially for applications that require rich graphical user interfaces and high-performance visualization that cannot be met by thin clients running on Web browsers

  11. Drag-Free Performance of the ST7 Disturbance Reduction System Flight Experiment on the LISA Pathfinder

    NASA Technical Reports Server (NTRS)

    Maghami, Peiman G.; O'Donnell, James R.; Hsu, Oscar H.; Ziemer, John K.; Dunn, Charles E.

    2017-01-01

    The Space Technology-7 Disturbance Reduction System (DRS) is an experiment package aboard the European Space Agency (ESA) LISA Pathfinder spacecraft. LISA Pathfinder launched from Kourou, French Guiana on December 3, 2015. The DRS is tasked to validate two specific technologies: colloidal micro-Newton thrusters (CMNT) to provide low-noise control capability of the spacecraft, and drag-free controlflight. This validation is performed using highly sensitive drag-free sensors, which are provided by the LISA Technology Package of the European Space Agency. The Disturbance Reduction System is required to maintain the spacecrafts position with respect to a free-floating test mass to better than 10nm/(square root of Hz), along its sensitive axis (axis in optical metrology). It also has a goal of limiting the residual accelerations of any of the two test masses to below 30 x 10(exp -14) (1 + ([f/3 mHz](exp 2))) m/sq s/(square root of Hz), over the frequency range of 1 to 30 mHz.This paper briefly describes the design and the expected on-orbit performance of the control system for the two modes wherein the drag-free performance requirements are verified. The on-orbit performance of these modes are then compared to the requirements, as well as to the expected performance, and discussed.

  12. AeroVironment's Jim Daley, Rik Meininger, Derek Lisoski and Wyatt Sadler (clockwise from bottom left) closely monitor systems testing of the Pathfinder-Plus.

    NASA Image and Video Library

    2004-09-17

    AeroVironment's test director Jim Daley, backup pilot Rik Meininger, stability and controls engineer Derek Lisoski and pilot Wyatt Sadler (clockwise from bottom left) closely monitor systems testing of the Pathfinder-Plus solar aircraft from the control station.

  13. An oceanic plateau subduction: A case study offshore Eastern Java.

    NASA Astrophysics Data System (ADS)

    Shulgin, Alexey; Kopp, Heidrun; Mueller, Christian; Planert, Lars; Lueschen, Ewald; Flueh, Ernst; Djajadihardja, Yusuf

    2010-05-01

    The area offshore Java represents one of a few places globally where the early stage of subduction of an oceanic plateau is observed. Our study area is located south of eastern Java and covers the edge of the Roo Rise plateau, the Java trench and the entire forearc section. For the first time the detailed deep structure of the Roo Rise is studied, subduction of which has a significant effect on the forearc dynamics and evolution and the increase of the geohazards risks. The tsunamogenic earthquakes of 1994 and 2006 are associated with the oceanic plateau edge been subducted. We present integrated results of a refraction/wide-angle reflection tomography, gravity modeling, and multichannel reflection seismic imaging using data acquired in 2006 along a corridor centered around 113°E and composed of a 340 km long N-S profile and a 130 km long E-W oriented profile. The composite structural models reveal the previously unresolved deep geometry of the collision zone and the structure of the oceanic plateau. The crustal thickness of the Roo Rise plateau is ranging from 18 to 12 km. The structure of the upper crust of the incoming oceanic plate shows the extreme degree of fracturing in its top section, and is associated with a plate bending. The forearc Moho has a depth range from 16 to 20 km. The gravity modeling requires a sharp crustal thickness increase below Java. Within our profiles we do not recover any direct evidence for the presence of the bathymetric features on the oceanic plate currently present below the accretionary prism, responsible for the tsunamogenic earthquake triggering. However vertical variations of the forearc basement edge are observed on the trench-parallel profile, which opens a discussion on the origin of such basement undulations, together with a localized patchy uplift character of the forearc high.

  14. The spirit of democracy in the implementation of public information policy at the provincial government of West Java

    NASA Astrophysics Data System (ADS)

    Sjoraida, D. F.; Asmawi, A.; Anwar, R. K.

    2018-03-01

    This article analyses the implementation of Law Number 14/2008 on Public Information Disclosure on the Provincial Government of West Java. This descriptive-qualitative study presents a discussion of the spirit of democracy in the implementation of the abovem-entioned policy in West Java Province. With the theory of policy implementation and democratization, data obtains that the element of democratic spirit in the implementation of public information policy in the government of West Java is quite thick. Therefore, there must be a massification of the implementation of the law in West Java, especially its socialization to districts/cities and society in general. It was found that the democratization of the West Java Provincial Government in implementing the Act has been well received in the community. However, the lack of publicity about this Law can reduce the strength of moral messages that exist in the law to the public.

  15. Size Scales for Thermal Inhomogeneities in Mars' Atmosphere Surface Layer: Mars Pathfinder

    NASA Technical Reports Server (NTRS)

    Mihalov, John D.; Haberle, Robert M.; Seiff, Alvin; Murphy, James R.; Schofield, John T.; DeVincenzi, Donald L. (Technical Monitor)

    2000-01-01

    Atmospheric temperature measurement at three heights with thin wire thermocouples on the 1.1 m Mars Pathfinder meteorology must allow estimates of the integral scale of the atmospheric thermal turbulence during an 83 sol period that begins in the summer. The integral scale is a measure for regions of perturbations. In turbulent media that roughly characterizes locations where the perturbations are correlated. Excluding some to intervals with violent excursions of the mean temperatures, integral scale values are found that increase relatively rapidly from a few tenths meters or less near down to several meters by mid-morning. During mid-morning, the diurnal and shorter time scale wind direction variations often place the meteorology mast in the thermal wake of the Lander.

  16. Relationships between anopheline mosquitoes and topography in West Timor and Java, Indonesia.

    PubMed

    Ndoen, Ermi; Wild, Clyde; Dale, Pat; Sipe, Neil; Dale, Mike

    2010-08-26

    Malaria is a serious health issue in Indonesia. Mosquito control is one aspect of an integrated malaria management programme. To focus resources on priority areas, information is needed about the vectors and their habitats. This research aimed to identify the relationship between anopheline mosquitoes and topography in West Timor and Java. Study areas were selected in three topographic types in West Timor and Java. These were: coastal plain, hilly (rice field) and highland. Adult mosquitoes were captured landing on humans identified to species level and counted. Eleven species were recorded, four of which were significant for malaria transmission: Anopheles aconitus, Anopheles barbirostris, Anopheles subpictus and Anopheles sundaicus. Each species occupied different topographies, but only five were significantly associated: Anopheles annularis, Anopheles vagus and Anopheles subpictus (Java only) with hilly rice fields; Anopheles barbirostris, Anopheles maculatus and Anopheles subpictus (West Timor only) with coastal areas. Information on significant malaria vectors associated with specific topography is useful for planning the mosquito control aspect of malaria management.

  17. A geostationary Earth orbit satellite model using Easy Java Simulation

    NASA Astrophysics Data System (ADS)

    Wee, Loo Kang; Hwee Goh, Giam

    2013-01-01

    We develop an Easy Java Simulation (EJS) model for students to visualize geostationary orbits near Earth, modelled using a Java 3D implementation of the EJS 3D library. The simplified physics model is described and simulated using a simple constant angular velocity equation. We discuss four computer model design ideas: (1) a simple and realistic 3D view and associated learning in the real world; (2) comparative visualization of permanent geostationary satellites; (3) examples of non-geostationary orbits of different rotation senses, periods and planes; and (4) an incorrect physics model for conceptual discourse. General feedback from the students has been relatively positive, and we hope teachers will find the computer model useful in their own classes.

  18. Java Source Code Analysis for API Migration to Embedded Systems

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Winter, Victor; McCoy, James A.; Guerrero, Jonathan

    Embedded systems form an integral part of our technological infrastructure and oftentimes play a complex and critical role within larger systems. From the perspective of reliability, security, and safety, strong arguments can be made favoring the use of Java over C in such systems. In part, this argument is based on the assumption that suitable subsets of Java’s APIs and extension libraries are available to embedded software developers. In practice, a number of Java-based embedded processors do not support the full features of the JVM. For such processors, source code migration is a mechanism by which key abstractions offered bymore » APIs and extension libraries can made available to embedded software developers. The analysis required for Java source code-level library migration is based on the ability to correctly resolve element references to their corresponding element declarations. A key challenge in this setting is how to perform analysis for incomplete source-code bases (e.g., subsets of libraries) from which types and packages have been omitted. This article formalizes an approach that can be used to extend code bases targeted for migration in such a manner that the threats associated the analysis of incomplete code bases are eliminated.« less

  19. Shuttle Data Center File-Processing Tool in Java

    NASA Technical Reports Server (NTRS)

    Barry, Matthew R.; Miller, Walter H.

    2006-01-01

    A Java-language computer program has been written to facilitate mining of data in files in the Shuttle Data Center (SDC) archives. This program can be executed on a variety of workstations or via Web-browser programs. This program is partly similar to prior C-language programs used for the same purpose, while differing from those programs in that it exploits the platform-neutrality of Java in implementing several features that are important for analysis of large sets of time-series data. The program supports regular expression queries of SDC archive files, reads the files, interleaves the time-stamped samples according to a chosen output, then transforms the results into that format. A user can choose among a variety of output file formats that are useful for diverse purposes, including plotting, Markov modeling, multivariate density estimation, and wavelet multiresolution analysis, as well as for playback of data in support of simulation and testing.

  20. JGromacs: a Java package for analyzing protein simulations.

    PubMed

    Münz, Márton; Biggin, Philip C

    2012-01-23

    In this paper, we introduce JGromacs, a Java API (Application Programming Interface) that facilitates the development of cross-platform data analysis applications for Molecular Dynamics (MD) simulations. The API supports parsing and writing file formats applied by GROMACS (GROningen MAchine for Chemical Simulations), one of the most widely used MD simulation packages. JGromacs builds on the strengths of object-oriented programming in Java by providing a multilevel object-oriented representation of simulation data to integrate and interconvert sequence, structure, and dynamics information. The easy-to-learn, easy-to-use, and easy-to-extend framework is intended to simplify and accelerate the implementation and development of complex data analysis algorithms. Furthermore, a basic analysis toolkit is included in the package. The programmer is also provided with simple tools (e.g., XML-based configuration) to create applications with a user interface resembling the command-line interface of GROMACS applications. JGromacs and detailed documentation is freely available from http://sbcb.bioch.ox.ac.uk/jgromacs under a GPLv3 license .

  1. JANIS: NEA JAva-based Nuclear Data Information System

    NASA Astrophysics Data System (ADS)

    Soppera, Nicolas; Bossant, Manuel; Cabellos, Oscar; Dupont, Emmeric; Díez, Carlos J.

    2017-09-01

    JANIS (JAva-based Nuclear Data Information System) software is developed by the OECD Nuclear Energy Agency (NEA) Data Bank to facilitate the visualization and manipulation of nuclear data, giving access to evaluated nuclear data libraries, such as ENDF, JEFF, JENDL, TENDL etc., and also to experimental nuclear data (EXFOR) and bibliographical references (CINDA). It is available as a standalone Java program, downloadable and distributed on DVD and also a web application available on the NEA website. One of the main new features in JANIS is the scripting capability via command line, which notably automatizes plots generation and permits automatically extracting data from the JANIS database. Recent NEA software developments rely on these JANIS features to access nuclear data, for example the Nuclear Data Sensitivity Tool (NDaST) makes use of covariance data in BOXER and COVERX formats, which are retrieved from the JANIS database. New features added in this version of the JANIS software are described along this paper with some examples.

  2. Glide path preparation in S-shaped canals with rotary pathfinding nickel-titanium instruments.

    PubMed

    Ajuz, Natasha C C; Armada, Luciana; Gonçalves, Lucio S; Debelian, Gilberto; Siqueira, José F

    2013-04-01

    This study compared the incidence of deviation along S-shaped (double-curved) canals after glide path preparation with 2 nickel-titanium (NiTi) rotary pathfinding instruments and hand K-files. S-shaped canals from 60 training blocks were filled with ink, and preinstrumentation images were obtained by using a stereomicroscope. Glide path preparation was performed by an endodontist who used hand stainless steel K-files (up to size 20), rotary NiTi PathFile instruments (up to size 19), or rotary NiTi Scout RaCe instruments (up to size 20). Postinstrumentation images were taken by using exactly the same conditions as for the preinstrumentation images, and both pictures were superimposed. Differences along the S-shaped canal for the mesial and distal aspects were measured to evaluate the occurrence of deviation. Intragroup analysis showed that all instruments promoted some deviation in virtually all levels. Overall, regardless of the group, deviations were observed in the mesial wall at the canal terminus and at levels 4, 5, 6 and 7 mm and in the distal wall at levels 1, 2, and 3 mm. These levels corresponded to the inner walls of each curvature. Both rotary NiTi instruments performed significantly better than hand K-files at all levels (P < .05), except for PathFiles at the 0-mm level. ScoutRaCe instruments showed significantly better results than PathFiles at levels 0, 2, 3, 5, and 6 mm (P < .05). Findings suggest that rotary NiTi instruments are suitable for adequate glide path preparation because they promoted less deviation from the original canal anatomy when compared with hand-operated instruments. Of the 2 rotary pathfinding instruments, Scout RaCe showed an overall significantly better performance. Copyright © 2013 American Association of Endodontists. Published by Elsevier Inc. All rights reserved.

  3. Limits on the Ultra-bright Fast Radio Burst Population from the CHIME Pathfinder

    NASA Astrophysics Data System (ADS)

    Amiri, M.; Bandura, K.; Berger, P.; Bond, J. R.; Cliche, J. F.; Connor, L.; Deng, M.; Denman, N.; Dobbs, M.; Domagalski, R. S.; Fandino, M.; Gilbert, A. J.; Good, D. C.; Halpern, M.; Hanna, D.; Hincks, A. D.; Hinshaw, G.; Höfer, C.; Hsyu, G.; Klages, P.; Landecker, T. L.; Masui, K.; Mena-Parra, J.; Newburgh, L. B.; Oppermann, N.; Pen, U. L.; Peterson, J. B.; Pinsonneault-Marotte, T.; Renard, A.; Shaw, J. R.; Siegel, S. R.; Sigurdson, K.; Smith, K.; Storer, E.; Tretyakov, I.; Vanderlinde, K.; Wiebe, D. V.; Scientific Collaboration20, CHIME

    2017-08-01

    We present results from a new incoherent-beam fast radio burst (FRB) search on the Canadian Hydrogen Intensity Mapping Experiment (CHIME) Pathfinder. Its large instantaneous field of view (FoV) and relative thermal insensitivity allow us to probe the ultra-bright tail of the FRB distribution, and to test a recent claim that this distribution’s slope, α \\equiv -\\tfrac{\\partial {log}N}{\\partial {log}S}, is quite small. A 256-input incoherent beamformer was deployed on the CHIME Pathfinder for this purpose. If the FRB distribution were described by a single power law with α = 0.7, we would expect an FRB detection every few days, making this the fastest survey on the sky at present. We collected 1268 hr of data, amounting to one of the largest exposures of any FRB survey, with over 2.4 × 105 deg2 hr. Having seen no bursts, we have constrained the rate of extremely bright events to <13 sky-1 day-1 above ˜ 220\\sqrt{(τ /{ms})} {Jy} {ms} for τ between 1.3 and 100 ms, at 400-800 MHz. The non-detection also allows us to rule out α ≲ 0.9 with 95% confidence, after marginalizing over uncertainties in the GBT rate at 700-900 MHz, though we show that for a cosmological population and a large dynamic range in flux density, α is brightness dependent. Since FRBs now extend to large enough distances that non-Euclidean effects are significant, there is still expected to be a dearth of faint events and relative excess of bright events. Nevertheless we have constrained the allowed number of ultra-intense FRBs. While this does not have significant implications for deeper, large-FoV surveys like full CHIME and APERTIF, it does have important consequences for other wide-field, small dish experiments.

  4. The Earth System Science Pathfinder Orbiting Carbon Observatory (OCO) Mission

    NASA Technical Reports Server (NTRS)

    Crisp, David

    2003-01-01

    A viewgraph presentation describing the Earth System Science Pathfinder Orbiting Carbon Observatory (OCO) Mission is shown. The contents include: 1) Why CO2?; 2) What Processes Control CO2 Sinks?; 3) OCO Science Team; 4) Space-Based Measurements of CO2; 5) Driving Requirement: Precise, Bias-Free Global Measurements; 6) Making Precise CO2 Measurements from Space; 7) OCO Spatial Sampling Strategy; 8) OCO Observing Modes; 9) Implementation Approach; 10) The OCO Instrument; 11) The OCO Spacecraft; 12) OCO Will Fly in the A-Train; 13) Validation Program Ensures Accuracy and Minimizes Spatially Coherent Biases; 14) Can OCO Provide the Required Precision?; 15) O2 Column Retrievals with Ground-based FTS; 16) X(sub CO2) Retrieval Simulations; 17) Impact of Albedo and Aerosol Uncertainty on X(sub CO2) Retrievals; 18) Carbon Cycle Modeling Studies: Seasonal Cycle; 19) Carbon Cycle Modeling Studies: The North-South Gradient in CO2; 20) Carbon Cycle Modeling Studies: Effect of Diurnal Biases; 21) Project Status and Schedule; and 22) Summary.

  5. Aeolian features and processes at the Mars Pathfinder landing site

    USGS Publications Warehouse

    Greeley, Ronald; Kraft, Michael; Sullivan, Robert; Wilson, Gregory; Bridges, Nathan; Herkenhoff, Ken; Kuzmin, Ruslan O.; Malin, Michael; Ward, Wes

    1999-01-01

    The Mars Pathfinder landing site contains abundant features attributed to aeolian, or wind, processes. These include wind tails, drift deposits, duneforms of various types, ripplelike features, and ventifacts (the first clearly seen on Mars). Many of these features are consistant with formation involving sand-size particles. Although some features, such as dunes, could develop from saltating sand-size aggregates of finer grains, the discovery of ventifact flutes cut in rocks strongly suggests that at least some of the grains are crystalline, rather than aggregates. Excluding the ventifacts, the orientations of the wind-related features correlate well with the orientations of bright wind steaks seen on Viking Orbiter images in the general area. They also correlate with wind direction predictions from the NASA-Ames General Circulation Model (GCM) which show that the strongest winds in the area occur in the northern hemisphere winter and are directed toward 209°. Copyright 1999 by the American Geophysical Union.

  6. Cognitive characteristics of learning Java, an object-oriented programming language

    NASA Astrophysics Data System (ADS)

    White, Garry Lynn

    Industry and Academia are moving from procedural programming languages (e.g., COBOL) to object-oriented programming languages, such as Java for the Internet. Past studies in the cognitive aspects of programming have focused primarily on procedural programming languages. Some of the languages used have been Pascal, C, Basic, FORTAN, and COBOL. Object-oriented programming (OOP) represents a new paradigm for computing. Industry is finding that programmers are having difficulty shifting to this new programming paradigm. This instruction in OOP is currently starting in colleges and universities across the country. What are the cognitive aspects for this new OOP language Java? When is a student developmentally ready to handle the cognitive characteristics of the OOP language Java? Which cognitive teaching style is best for this OOP language Java? Questions such as the aforementioned are the focus of this research Such research is needed to improve understanding of the learning process and identify students' difficulties with OOP methods. This can enhance academic teaching and industry training (Scholtz, 1993; Sheetz, 1997; Rosson, 1990). Cognitive development as measured by the Propositional Logic Test, cognitive style as measured by the Hemispheric Mode Indicator, and physical hemispheric dominance as measured by a self-report survey were obtained from thirty-six university students studying Java programming. Findings reveal that physical hemispheric dominance is unrelated to cognitive and programming language variables. However, both procedural and object oriented programming require Piaget's formal operation cognitive level as indicated by the Propositional Logic Test. This is consistent with prior research A new finding is that object oriented programming also requires formal operation cognitive level. Another new finding is that object oriented programming appears to be unrelated to hemispheric cognitive style as indicated by the Hemispheric Mode Indicator (HMI

  7. Providing the Persistent Data Storage in a Software Engineering Environment Using Java/COBRA and a DBMS

    NASA Technical Reports Server (NTRS)

    Dhaliwal, Swarn S.

    1997-01-01

    An investigation was undertaken to build the software foundation for the WHERE (Web-based Hyper-text Environment for Requirements Engineering) project. The TCM (Toolkit for Conceptual Modeling) was chosen as the foundation software for the WHERE project which aims to provide an environment for facilitating collaboration among geographically distributed people involved in the Requirements Engineering process. The TCM is a collection of diagram and table editors and has been implemented in the C++ programming language. The C++ implementation of the TCM was translated into Java in order to allow the editors to be used for building various functionality of the WHERE project; the WHERE project intends to use the Web as its communication back- bone. One of the limitations of the translated software (TcmJava), which militated against its use in the WHERE project, was persistent data management mechanisms which it inherited from the original TCM; it was designed to be used in standalone applications. Before TcmJava editors could be used as a part of the multi-user, geographically distributed applications of the WHERE project, a persistent storage mechanism must be built which would allow data communication over the Internet, using the capabilities of the Web. An approach involving features of Java, CORBA (Common Object Request Broker), the Web, a middle-ware (Java Relational Binding (JRB)), and a database server was used to build the persistent data management infrastructure for the WHERE project. The developed infrastructure allows a TcmJava editor to be downloaded and run from a network host by using a JDK 1.1 (Java Developer's Kit) compatible Web-browser. The aforementioned editor establishes connection with a server by using the ORB (Object Request Broker) software and stores/retrieves data in/from the server. The server consists of a CORBA object or objects depending upon whether the data is to be made persistent on a single server or multiple servers. The CORBA

  8. HEP data analysis using jHepWork and Java.

    DOE Office of Scientific and Technical Information (OSTI.GOV)

    Chekanov, S.; High Energy Physics

    2009-03-23

    A role of Java in high-energy physics (HEP) and recent progress in development of a platform-independent data-analysis framework, jHepWork, is discussed. The framework produces professional graphics and has many libraries for data manipulation.

  9. Java application for the superposition T-matrix code to study the optical properties of cosmic dust aggregates

    NASA Astrophysics Data System (ADS)

    Halder, P.; Chakraborty, A.; Deb Roy, P.; Das, H. S.

    2014-09-01

    In this paper, we report the development of a java application for the Superposition T-matrix code, JaSTA (Java Superposition T-matrix App), to study the light scattering properties of aggregate structures. It has been developed using Netbeans 7.1.2, which is a java integrated development environment (IDE). The JaSTA uses double precession superposition codes for multi-sphere clusters in random orientation developed by Mackowski and Mischenko (1996). It consists of a graphical user interface (GUI) in the front hand and a database of related data in the back hand. Both the interactive GUI and database package directly enable a user to model by self-monitoring respective input parameters (namely, wavelength, complex refractive indices, grain size, etc.) to study the related optical properties of cosmic dust (namely, extinction, polarization, etc.) instantly, i.e., with zero computational time. This increases the efficiency of the user. The database of JaSTA is now created for a few sets of input parameters with a plan to create a large database in future. This application also has an option where users can compile and run the scattering code directly for aggregates in GUI environment. The JaSTA aims to provide convenient and quicker data analysis of the optical properties which can be used in different fields like planetary science, atmospheric science, nano science, etc. The current version of this software is developed for the Linux and Windows platform to study the light scattering properties of small aggregates which will be extended for larger aggregates using parallel codes in future. Catalogue identifier: AETB_v1_0 Program summary URL:http://cpc.cs.qub.ac.uk/summaries/AETB_v1_0.html Program obtainable from: CPC Program Library, Queen's University, Belfast, N. Ireland Licensing provisions: Standard CPC licence, http://cpc.cs.qub.ac.uk/licence/licence.html No. of lines in distributed program, including test data, etc.: 571570 No. of bytes in distributed program

  10. High Resolution Hypocenter Relocation for Events in Central Java, Indonesia using Double-Difference Technique

    NASA Astrophysics Data System (ADS)

    Sahara, D. P.; Widiyantoro, S.; Nugraha, A. D.; Sule, R.; Luehr, B. G.

    2010-12-01

    Seismic and volcanic activities in Central Java are highly related to the subduction of the Indo-Australian plate. In the MERapi AMphibious Experiments (MERAMEX), a network consisting of 169 seismographic stations was installed onshore and offshore in central Java and recorded 282 events during the operation. In this study, we present the results of relative hypocenters relocation by using Double Difference (DD) method to image the subduction beneath the volcanic chain in central Java. The DD method is an iterative procedure using Least Square optimization to determine high-resolution hypocenter locations over large distances. This relocation method uses absolute travel-time measurements and/or cross-correlation of P- and S-wave differential travel-time measurements. The preliminary results of our study showed that the algorithm could collapse the diffused event locations obtained from previous study into a sharp image of seismicity structure and reduce the residual travel time errors significantly (7 - 60%). As a result, narrow regions of a double seismic zone which correlated with the subducting slab can be determined more accurately. The dip angle of the slab increases gradually from almost horizontal beneath offshore to very steep (65-80 degrees) beneath the northern part of central Java. The aseismic gap at depths of 140 km - 185 km is also depicted clearly. The next step of the ongoing research is to provide detailed quantitative constraints on the structures of the mantle wedge and crust beneath central Java and to show the ascending paths of fluids and partially molten materials below the volcanic arc by applying Double-Difference Tomography method (TomoDD).

  11. Modelling of land use change in Indramayu District, West Java Province

    NASA Astrophysics Data System (ADS)

    Handayani, L. D. W.; Tejaningrum, M. A.; Damrah, F.

    2017-01-01

    Indramayu District into a strategic area for a stopover and overseas from East Java area because Indramayu District passed the north coast main lane, which is the first as the economic lifeblood of the Java Island. Indramayu District is part of mainstream economic Java pathways so that physical development of the area and population density as well as community activities grew by leaps and bounds. Growth acceleration raised the level of land use change. Land use change and population activities in coastal area would reduce the carrying capacity and impact on environmental quality. This research aim to analyse landuse change of years 2000 and 2011 in Indramayu District. Using this land use change map, we can predict the condition of landuse change of year 2022 in Indramayu District. Cellular Automata Markov (Markov CA) Method is used to create a spatial model of land use changes. The results of this study are predictive of land use in 2022 and the suitability with Spatial Plan (RTRW). A settlement increase predicted to continue in the future the designation of the land according to the spatial plan should be maintained.

  12. Promoting innovative business in the fishery sector in West Java, Indonesia

    NASA Astrophysics Data System (ADS)

    Nurhayati, A.; Aisah, I.; Supriatna, A. K.

    2018-04-01

    West Java represents an important fisheries production center in Indonesia, owing to the abundant capture and aquaculture resources. However, the intrinsic characteristics of fish products such as perishable, voluminous, and seasonal currently prevent fisheries from having brought significant economic contribution to the province. In line with it, this research was aimed to analyze and identify leverage factors that will lead to fishery-based innovative business in West Java. Data used in this research were primary and secondary ones, which were collected through surveys involving 30 respondents representing fish processors and the same number representing consumers. A Focus Group Discussion (FGD) was also carried out to verify the collected data. Analytical tools adopted in this research were fishery triangle product model. Based on the analyses, it was found factors influencing the success of a fishery innovative business in West Java, Indonesia were consecutively: the existence of derivative products, product processing innovativeness, product price competitiveness, market place, and promotion. Based on the fishery trianggle product model, it was found that fish onboard handling, post-harvest handling, and procesing was in the development stage and therefore these production nodes need a particularly high attention.

  13. Monitoring the UPS and Downs of Sumatra and Java with D-Insar Time-Series

    NASA Astrophysics Data System (ADS)

    Chaussard, E.; Amelung, F.

    2010-12-01

    We performed, for the first time, a global D-InSAR survey of the Indonesian islands of Sumatra and Java to define locations where deformation is occurring. The goals of this study are 1) to create an inventory of actively deforming volcanic centers and 2) monitor all types of ground motion. This work provides ground deformation data for previously unmonitored areas and can assist the Indonesian authorities to improve hazards assessment. The D-InSAR survey covers an area of about 500 000 km2 and 3000 km long on the islands of Sumatra, Java and Bali. We used ALOS data from 45 tracks and more than 1500 granules obtained from the Alaska Satellite Facility (ASF) through the US Government Research Consortium (USGRC). We completed more than 1000 interferograms spanning a period from the end of 2006 to the beginning of 2009. L-band SAR images enable deformation mapping at global scales even in highly vegetated areas where C-band signal experiences loss of coherence. To identify locations where ground deformations are occurring, we used multiple SAR acquisitions of the same area and performed time series analysis using the Small BAseline Subset (SBAS) method. Interferograms with a maximum spatial baseline of 3000 m were phase-unwrapped and subsequently inverted for the phase with respect to the first acquisition. Temporal coherence of each pixel is computed on the set of interferograms in order to select only pixels with high temporal coherence. The compiled InSAR velocity map reveals the background level of activity of the 84 volcanic centers constituting the Sumatra, Java and Bali volcanic arcs. We identified possible uplift at 6 volcanic centers: Agung (Bali), Lamongan (Java), Lawu (Java), Slamet (Java), Kerinci (Sumatra) and Sinabung (Sumatra). Moreover, we identified subsidence in 5 major cities and 1 coastal area. Subsidence rates range from 6 cm/yr in Medan, the largest city of Sumatra, to more than 15 cm/yr in Jakarta. These major subsidence areas are probably due

  14. Distriblets: Java-Based Distributed Computing on the Web.

    ERIC Educational Resources Information Center

    Finkel, David; Wills, Craig E.; Brennan, Brian; Brennan, Chris

    1999-01-01

    Describes a system for using the World Wide Web to distribute computational tasks to multiple hosts on the Web that is written in Java programming language. Describes the programs written to carry out the load distribution, the structure of a "distriblet" class, and experiences in using this system. (Author/LRW)

  15. JIP: Java image processing on the Internet

    NASA Astrophysics Data System (ADS)

    Wang, Dongyan; Lin, Bo; Zhang, Jun

    1998-12-01

    In this paper, we present JIP - Java Image Processing on the Internet, a new Internet based application for remote education and software presentation. JIP offers an integrate learning environment on the Internet where remote users not only can share static HTML documents and lectures notes, but also can run and reuse dynamic distributed software components, without having the source code or any extra work of software compilation, installation and configuration. By implementing a platform-independent distributed computational model, local computational resources are consumed instead of the resources on a central server. As an extended Java applet, JIP allows users to selected local image files on their computers or specify any image on the Internet using an URL as input. Multimedia lectures such as streaming video/audio and digital images are integrated into JIP and intelligently associated with specific image processing functions. Watching demonstrations an practicing the functions with user-selected input data dramatically encourages leaning interest, while promoting the understanding of image processing theory. The JIP framework can be easily applied to other subjects in education or software presentation, such as digital signal processing, business, mathematics, physics, or other areas such as employee training and charged software consumption.

  16. The analysis of export commodity competitiveness in Central Java Province at period 2011-2015

    NASA Astrophysics Data System (ADS)

    Elysi, M. G.; Darsono; Riptanti, E. W.

    2018-03-01

    This study aims to determine the competitiveness of furniture export in Central Java Province Indonesia in terms of comparative and competitive advantages and to formulate the strategies to enhance the competitiveness of furniture export in Central Java Province. Descriptive analytic method was used for this research. Data used in this research are primary and secondary data. Data were analyzed using RCA (Revealed Comparative Advantage), TSI (Trade Specialization Index) and SOAR (Strength, Opportunity, Aspiration, Result). The results showed that furniture commodity in Central Java Province had strong comparative competitiveness with the value of RCA>1 and had strong competitiveness with positive index values in the range of 0 to 1. Based on SOAR analysis, strategy measures can be formulated, namely maintaining the existing and expanding targeted markets, improving product designs (innovations) and improving raw materials efficiency.

  17. Geographically Weighted Regression Model with Kernel Bisquare and Tricube Weighted Function on Poverty Percentage Data in Central Java Province

    NASA Astrophysics Data System (ADS)

    Nugroho, N. F. T. A.; Slamet, I.

    2018-05-01

    Poverty is a socio-economic condition of a person or group of people who can not fulfil their basic need to maintain and develop a dignified life. This problem still cannot be solved completely in Central Java Province. Currently, the percentage of poverty in Central Java is 13.32% which is higher than the national poverty rate which is 11.13%. In this research, data of percentage of poor people in Central Java Province has been analyzed through geographically weighted regression (GWR). The aim of this research is therefore to model poverty percentage data in Central Java Province using GWR with weighted function of kernel bisquare, and tricube. As the results, we obtained GWR model with bisquare and tricube kernel weighted function on poverty percentage data in Central Java province. From the GWR model, there are three categories of region which are influenced by different of significance factors.

  18. Nested generalized linear mixed model with ordinal response: Simulation and application on poverty data in Java Island

    NASA Astrophysics Data System (ADS)

    Widyaningsih, Yekti; Saefuddin, Asep; Notodiputro, Khairil A.; Wigena, Aji H.

    2012-05-01

    The objective of this research is to build a nested generalized linear mixed model using an ordinal response variable with some covariates. There are three main jobs in this paper, i.e. parameters estimation procedure, simulation, and implementation of the model for the real data. At the part of parameters estimation procedure, concepts of threshold, nested random effect, and computational algorithm are described. The simulations data are built for 3 conditions to know the effect of different parameter values of random effect distributions. The last job is the implementation of the model for the data about poverty in 9 districts of Java Island. The districts are Kuningan, Karawang, and Majalengka chose randomly in West Java; Temanggung, Boyolali, and Cilacap from Central Java; and Blitar, Ngawi, and Jember from East Java. The covariates in this model are province, number of bad nutrition cases, number of farmer families, and number of health personnel. In this modeling, all covariates are grouped as ordinal scale. Unit observation in this research is sub-district (kecamatan) nested in district, and districts (kabupaten) are nested in province. For the result of simulation, ARB (Absolute Relative Bias) and RRMSE (Relative Root of mean square errors) scale is used. They show that prov parameters have the highest bias, but more stable RRMSE in all conditions. The simulation design needs to be improved by adding other condition, such as higher correlation between covariates. Furthermore, as the result of the model implementation for the data, only number of farmer family and number of medical personnel have significant contributions to the level of poverty in Central Java and East Java province, and only district 2 (Karawang) of province 1 (West Java) has different random effect from the others. The source of the data is PODES (Potensi Desa) 2008 from BPS (Badan Pusat Statistik).

  19. Effects of a Case-Based Reasoning System on Student Performance in a Java Programming Course

    ERIC Educational Resources Information Center

    Schmidt, Cecil

    2007-01-01

    The purpose of this study was to determine if a case-based reasoning tool would improve a student's understanding of the complex concepts in a Java programming course. Subjects for the study were randomly assigned from two sections of an introductory Java programming course. Posttests were used to measure the effects of the case-based reasoning…

  20. V and V of Lexical, Syntactic and Semantic Properties for Interactive Systems Through Model Checking of Formal Description of Dialog

    NASA Technical Reports Server (NTRS)

    Brat, Guillaume P.; Martinie, Celia; Palanque, Philippe

    2013-01-01

    During early phases of the development of an interactive system, future system properties are identified (through interaction with end users in the brainstorming and prototyping phase of the application, or by other stakehold-ers) imposing requirements on the final system. They can be specific to the application under development or generic to all applications such as usability principles. Instances of specific properties include visibility of the aircraft altitude, speed… in the cockpit and the continuous possibility of disengaging the autopilot in whatever state the aircraft is. Instances of generic properties include availability of undo (for undoable functions) and availability of a progression bar for functions lasting more than four seconds. While behavioral models of interactive systems using formal description techniques provide complete and unambiguous descriptions of states and state changes, it does not provide explicit representation of the absence or presence of properties. Assessing that the system that has been built is the right system remains a challenge usually met through extensive use and acceptance tests. By the explicit representation of properties and the availability of tools to support checking these properties, it becomes possible to provide developers with means for systematic exploration of the behavioral models and assessment of the presence or absence of these properties. This paper proposes the synergistic use two tools for checking both generic and specific properties of interactive applications: Petshop and Java PathFinder. Petshop is dedicated to the description of interactive system behavior. Java PathFinder is dedicated to the runtime verification of Java applications and as an extension dedicated to User Interfaces. This approach is exemplified on a safety critical application in the area of interactive cockpits for large civil aircrafts.