Sample records for address space pgas

  1. Scalable PGAS Metadata Management on Extreme Scale Systems

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

    Chavarría-Miranda, Daniel; Agarwal, Khushbu; Straatsma, TP

    Programming models intended to run on exascale systems have a number of challenges to overcome, specially the sheer size of the system as measured by the number of concurrent software entities created and managed by the underlying runtime. It is clear from the size of these systems that any state maintained by the programming model has to be strictly sub-linear in size, in order not to overwhelm memory usage with pure overhead. A principal feature of Partitioned Global Address Space (PGAS) models is providing easy access to global-view distributed data structures. In order to provide efficient access to these distributedmore » data structures, PGAS models must keep track of metadata such as where array sections are located with respect to processes/threads running on the HPC system. As PGAS models and applications become ubiquitous on very large transpetascale systems, a key component to their performance and scalability will be efficient and judicious use of memory for model overhead (metadata) compared to application data. We present an evaluation of several strategies to manage PGAS metadata that exhibit different space/time tradeoffs. We use two real-world PGAS applications to capture metadata usage patterns and gain insight into their communication behavior.« less

  2. A highly scalable particle tracking algorithm using partitioned global address space (PGAS) programming for extreme-scale turbulence simulations

    NASA Astrophysics Data System (ADS)

    Buaria, D.; Yeung, P. K.

    2017-12-01

    A new parallel algorithm utilizing a partitioned global address space (PGAS) programming model to achieve high scalability is reported for particle tracking in direct numerical simulations of turbulent fluid flow. The work is motivated by the desire to obtain Lagrangian information necessary for the study of turbulent dispersion at the largest problem sizes feasible on current and next-generation multi-petaflop supercomputers. A large population of fluid particles is distributed among parallel processes dynamically, based on instantaneous particle positions such that all of the interpolation information needed for each particle is available either locally on its host process or neighboring processes holding adjacent sub-domains of the velocity field. With cubic splines as the preferred interpolation method, the new algorithm is designed to minimize the need for communication, by transferring between adjacent processes only those spline coefficients determined to be necessary for specific particles. This transfer is implemented very efficiently as a one-sided communication, using Co-Array Fortran (CAF) features which facilitate small data movements between different local partitions of a large global array. The cost of monitoring transfer of particle properties between adjacent processes for particles migrating across sub-domain boundaries is found to be small. Detailed benchmarks are obtained on the Cray petascale supercomputer Blue Waters at the University of Illinois, Urbana-Champaign. For operations on the particles in a 81923 simulation (0.55 trillion grid points) on 262,144 Cray XE6 cores, the new algorithm is found to be orders of magnitude faster relative to a prior algorithm in which each particle is tracked by the same parallel process at all times. This large speedup reduces the additional cost of tracking of order 300 million particles to just over 50% of the cost of computing the Eulerian velocity field at this scale. Improving support of PGAS models on

  3. On the Suitability of MPI as a PGAS Runtime

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

    Daily, Jeffrey A.; Vishnu, Abhinav; Palmer, Bruce J.

    2014-12-18

    Partitioned Global Address Space (PGAS) models are emerging as a popular alternative to MPI models for designing scalable applications. At the same time, MPI remains a ubiquitous communication subsystem due to its standardization, high performance, and availability on leading platforms. In this paper, we explore the suitability of using MPI as a scalable PGAS communication subsystem. We focus on the Remote Memory Access (RMA) communication in PGAS models which typically includes {\\em get, put,} and {\\em atomic memory operations}. We perform an in-depth exploration of design alternatives based on MPI. These alternatives include using a semantically-matching interface such as MPI-RMA,more » as well as not-so-intuitive interfaces such as MPI two-sided with a combination of multi-threading and dynamic process management. With an in-depth exploration of these alternatives and their shortcomings, we propose a novel design which is facilitated by the data-centric view in PGAS models. This design leverages a combination of highly tuned MPI two-sided semantics and an automatic, user-transparent split of MPI communicators to provide asynchronous progress. We implement the asynchronous progress ranks approach and other approaches within the Communication Runtime for Exascale which is a communication subsystem for Global Arrays. Our performance evaluation spans pure communication benchmarks, graph community detection and sparse matrix-vector multiplication kernels, and a computational chemistry application. The utility of our proposed PR-based approach is demonstrated by a 2.17x speed-up on 1008 processors over the other MPI-based designs.« less

  4. Tuning collective communication for Partitioned Global Address Space programming models

    DOE PAGES

    Nishtala, Rajesh; Zheng, Yili; Hargrove, Paul H.; ...

    2011-06-12

    Partitioned Global Address Space (PGAS) languages offer programmers the convenience of a shared memory programming style combined with locality control necessary to run on large-scale distributed memory systems. Even within a PGAS language programmers often need to perform global communication operations such as broadcasts or reductions, which are best performed as collective operations in which a group of threads work together to perform the operation. In this study we consider the problem of implementing collective communication within PGAS languages and explore some of the design trade-offs in both the interface and implementation. In particular, PGAS collectives have semantic issues thatmore » are different than in send–receive style message passing programs, and different implementation approaches that take advantage of the one-sided communication style in these languages. We present an implementation framework for PGAS collectives as part of the GASNet communication layer, which supports shared memory, distributed memory and hybrids. The framework supports a broad set of algorithms for each collective, over which the implementation may be automatically tuned. In conclusion, we demonstrate the benefit of optimized GASNet collectives using application benchmarks written in UPC, and demonstrate that the GASNet collectives can deliver scalable performance on a variety of state-of-the-art parallel machines including a Cray XT4, an IBM BlueGene/P, and a Sun Constellation system with InfiniBand interconnect.« less

  5. Hybrid-view programming of nuclear fusion simulation code in the PGAS parallel programming language XcalableMP

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

    Tsugane, Keisuke; Boku, Taisuke; Murai, Hitoshi

    Recently, the Partitioned Global Address Space (PGAS) parallel programming model has emerged as a usable distributed memory programming model. XcalableMP (XMP) is a PGAS parallel programming language that extends base languages such as C and Fortran with directives in OpenMP-like style. XMP supports a global-view model that allows programmers to define global data and to map them to a set of processors, which execute the distributed global data as a single thread. In XMP, the concept of a coarray is also employed for local-view programming. In this study, we port Gyrokinetic Toroidal Code - Princeton (GTC-P), which is a three-dimensionalmore » gyrokinetic PIC code developed at Princeton University to study the microturbulence phenomenon in magnetically confined fusion plasmas, to XMP as an example of hybrid memory model coding with the global-view and local-view programming models. In local-view programming, the coarray notation is simple and intuitive compared with Message Passing Interface (MPI) programming while the performance is comparable to that of the MPI version. Thus, because the global-view programming model is suitable for expressing the data parallelism for a field of grid space data, we implement a hybrid-view version using a global-view programming model to compute the field and a local-view programming model to compute the movement of particles. Finally, the performance is degraded by 20% compared with the original MPI version, but the hybrid-view version facilitates more natural data expression for static grid space data (in the global-view model) and dynamic particle data (in the local-view model), and it also increases the readability of the code for higher productivity.« less

  6. Hybrid-view programming of nuclear fusion simulation code in the PGAS parallel programming language XcalableMP

    DOE PAGES

    Tsugane, Keisuke; Boku, Taisuke; Murai, Hitoshi; ...

    2016-06-01

    Recently, the Partitioned Global Address Space (PGAS) parallel programming model has emerged as a usable distributed memory programming model. XcalableMP (XMP) is a PGAS parallel programming language that extends base languages such as C and Fortran with directives in OpenMP-like style. XMP supports a global-view model that allows programmers to define global data and to map them to a set of processors, which execute the distributed global data as a single thread. In XMP, the concept of a coarray is also employed for local-view programming. In this study, we port Gyrokinetic Toroidal Code - Princeton (GTC-P), which is a three-dimensionalmore » gyrokinetic PIC code developed at Princeton University to study the microturbulence phenomenon in magnetically confined fusion plasmas, to XMP as an example of hybrid memory model coding with the global-view and local-view programming models. In local-view programming, the coarray notation is simple and intuitive compared with Message Passing Interface (MPI) programming while the performance is comparable to that of the MPI version. Thus, because the global-view programming model is suitable for expressing the data parallelism for a field of grid space data, we implement a hybrid-view version using a global-view programming model to compute the field and a local-view programming model to compute the movement of particles. Finally, the performance is degraded by 20% compared with the original MPI version, but the hybrid-view version facilitates more natural data expression for static grid space data (in the global-view model) and dynamic particle data (in the local-view model), and it also increases the readability of the code for higher productivity.« less

  7. Pgas, a Low-pH-Induced Promoter, as a Tool for Dynamic Control of Gene Expression for Metabolic Engineering of Aspergillus niger

    PubMed Central

    Yin, Xian; Shin, Hyun-Dong; Li, Jianghua; Du, Guocheng; Chen, Jian

    2017-01-01

    ABSTRACT The dynamic control of gene expression is important for adjusting fluxes in order to obtain desired products and achieve appropriate cell growth, particularly when the synthesis of a desired product drains metabolites required for cell growth. For dynamic gene expression, a promoter responsive to a particular environmental stressor is vital. Here, we report a low-pH-inducible promoter, Pgas, which promotes minimal gene expression at pH values above 5.0 but functions efficiently at low pHs, such as pH 2.0. First, we performed a transcriptional analysis of Aspergillus niger, an excellent platform for the production of organic acids, and we found that the promoter Pgas may act efficiently at low pH. Then, a gene for synthetic green fluorescent protein (sGFP) was successfully expressed by Pgas at pH 2.0, verifying the results of the transcriptional analysis. Next, Pgas was used to express the cis-aconitate decarboxylase (cad) gene of Aspergillus terreus in A. niger, allowing the production of itaconic acid at a titer of 4.92 g/liter. Finally, we found that Pgas strength was independent of acid type and acid ion concentration, showing dependence on pH only. IMPORTANCE The promoter Pgas can be used for the dynamic control of gene expression in A. niger for metabolic engineering to produce organic acids. This promoter may also be a candidate tool for genetic engineering. PMID:28087530

  8. PGAS in-memory data processing for the Processing Unit of the Upgraded Electronics of the Tile Calorimeter of the ATLAS Detector

    NASA Astrophysics Data System (ADS)

    Ohene-Kwofie, Daniel; Otoo, Ekow

    2015-10-01

    The ATLAS detector, operated at the Large Hadron Collider (LHC) records proton-proton collisions at CERN every 50ns resulting in a sustained data flow up to PB/s. The upgraded Tile Calorimeter of the ATLAS experiment will sustain about 5PB/s of digital throughput. These massive data rates require extremely fast data capture and processing. Although there has been a steady increase in the processing speed of CPU/GPGPU assembled for high performance computing, the rate of data input and output, even under parallel I/O, has not kept up with the general increase in computing speeds. The problem then is whether one can implement an I/O subsystem infrastructure capable of meeting the computational speeds of the advanced computing systems at the petascale and exascale level. We propose a system architecture that leverages the Partitioned Global Address Space (PGAS) model of computing to maintain an in-memory data-store for the Processing Unit (PU) of the upgraded electronics of the Tile Calorimeter which is proposed to be used as a high throughput general purpose co-processor to the sROD of the upgraded Tile Calorimeter. The physical memory of the PUs are aggregated into a large global logical address space using RDMA- capable interconnects such as PCI- Express to enhance data processing throughput.

  9. UPC++ Programmer’s Guide, v1.0-2018.3.0

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

    Bachan, J.; Baden, S.; Bonachea, Dan

    UPC++ is a C++11 library that provides Partitioned Global Address Space (PGAS) programming. It is designed for writing parallel programs that run efficiently and scale well on distributed-memory parallel computers. The PGAS model is single program, multiple-data (SPMD), with each separate thread of execution (referred to as a rank, a term borrowed from MPI) having access to local memory as it would in C++. However, PGAS also provides access to a global address space, which is allocated in shared segments that are distributed over the ranks. UPC++ provides numerous methods for accessing and using global memory. In UPC++, all operationsmore » that access remote memory are explicit, which encourages programmers to be aware of the cost of communication and data movement. Moreover, all remote-memory access operations are by default asynchronous, to enable programmers to write code that scales well even on hundreds of thousands of cores.« less

  10. Space sciences - Keynote address

    NASA Technical Reports Server (NTRS)

    Alexander, Joseph K.

    1990-01-01

    The present status and projected future developments of the NASA Space Science and Applications Program are addressed. Emphasis is given to biochemistry experiments that are planned for the Space Station. Projects for the late 1990s which will study the sun, the earth's magnetosphere, and the geosphere are briefly discussed.

  11. Centrally managed unified shared virtual address space

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

    Wilkes, John

    Systems, apparatuses, and methods for managing a unified shared virtual address space. A host may execute system software and manage a plurality of nodes coupled to the host. The host may send work tasks to the nodes, and for each node, the host may externally manage the node's view of the system's virtual address space. Each node may have a central processing unit (CPU) style memory management unit (MMU) with an internal translation lookaside buffer (TLB). In one embodiment, the host may be coupled to a given node via an input/output memory management unit (IOMMU) interface, where the IOMMU frontendmore » interface shares the TLB with the given node's MMU. In another embodiment, the host may control the given node's view of virtual address space via memory-mapped control registers.« less

  12. Performance of the Heavy Flavor Tracker (HFT) detector in star experiment at RHIC

    NASA Astrophysics Data System (ADS)

    Alruwaili, Manal

    With the growing technology, the number of the processors is becoming massive. Current supercomputer processing will be available on desktops in the next decade. For mass scale application software development on massive parallel computing available on desktops, existing popular languages with large libraries have to be augmented with new constructs and paradigms that exploit massive parallel computing and distributed memory models while retaining the user-friendliness. Currently, available object oriented languages for massive parallel computing such as Chapel, X10 and UPC++ exploit distributed computing, data parallel computing and thread-parallelism at the process level in the PGAS (Partitioned Global Address Space) memory model. However, they do not incorporate: 1) any extension at for object distribution to exploit PGAS model; 2) the programs lack the flexibility of migrating or cloning an object between places to exploit load balancing; and 3) lack the programming paradigms that will result from the integration of data and thread-level parallelism and object distribution. In the proposed thesis, I compare different languages in PGAS model; propose new constructs that extend C++ with object distribution and object migration; and integrate PGAS based process constructs with these extensions on distributed objects. Object cloning and object migration. Also a new paradigm MIDD (Multiple Invocation Distributed Data) is presented when different copies of the same class can be invoked, and work on different elements of a distributed data concurrently using remote method invocations. I present new constructs, their grammar and their behavior. The new constructs have been explained using simple programs utilizing these constructs.

  13. Accelerating semantic graph databases on commodity clusters

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

    Morari, Alessandro; Castellana, Vito G.; Haglin, David J.

    We are developing a full software system for accelerating semantic graph databases on commodity cluster that scales to hundreds of nodes while maintaining constant query throughput. Our framework comprises a SPARQL to C++ compiler, a library of parallel graph methods and a custom multithreaded runtime layer, which provides a Partitioned Global Address Space (PGAS) programming model with fork/join parallelism and automatic load balancing over a commodity clusters. We present preliminary results for the compiler and for the runtime.

  14. Scaling Irregular Applications through Data Aggregation and Software Multithreading

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

    Morari, Alessandro; Tumeo, Antonino; Chavarría-Miranda, Daniel

    Bioinformatics, data analytics, semantic databases, knowledge discovery are emerging high performance application areas that exploit dynamic, linked data structures such as graphs, unbalanced trees or unstructured grids. These data structures usually are very large, requiring significantly more memory than available on single shared memory systems. Additionally, these data structures are difficult to partition on distributed memory systems. They also present poor spatial and temporal locality, thus generating unpredictable memory and network accesses. The Partitioned Global Address Space (PGAS) programming model seems suitable for these applications, because it allows using a shared memory abstraction across distributed-memory clusters. However, current PGAS languagesmore » and libraries are built to target regular remote data accesses and block transfers. Furthermore, they usually rely on the Single Program Multiple Data (SPMD) parallel control model, which is not well suited to the fine grained, dynamic and unbalanced parallelism of irregular applications. In this paper we present {\\bf GMT} (Global Memory and Threading library), a custom runtime library that enables efficient execution of irregular applications on commodity clusters. GMT integrates a PGAS data substrate with simple fork/join parallelism and provides automatic load balancing on a per node basis. It implements multi-level aggregation and lightweight multithreading to maximize memory and network bandwidth with fine-grained data accesses and tolerate long data access latencies. A key innovation in the GMT runtime is its thread specialization (workers, helpers and communication threads) that realize the overall functionality. We compare our approach with other PGAS models, such as UPC running using GASNet, and hand-optimized MPI code on a set of typical large-scale irregular applications, demonstrating speedups of an order of magnitude.« less

  15. Community Coordinated Modeling Center: Addressing Needs of Operational Space Weather Forecasting

    NASA Technical Reports Server (NTRS)

    Kuznetsova, M.; Maddox, M.; Pulkkinen, A.; Hesse, M.; Rastaetter, L.; Macneice, P.; Taktakishvili, A.; Berrios, D.; Chulaki, A.; Zheng, Y.; hide

    2012-01-01

    Models are key elements of space weather forecasting. The Community Coordinated Modeling Center (CCMC, http://ccmc.gsfc.nasa.gov) hosts a broad range of state-of-the-art space weather models and enables access to complex models through an unmatched automated web-based runs-on-request system. Model output comparisons with observational data carried out by a large number of CCMC users open an unprecedented mechanism for extensive model testing and broad community feedback on model performance. The CCMC also evaluates model's prediction ability as an unbiased broker and supports operational model selections. The CCMC is organizing and leading a series of community-wide projects aiming to evaluate the current state of space weather modeling, to address challenges of model-data comparisons, and to define metrics for various user s needs and requirements. Many of CCMC models are continuously running in real-time. Over the years the CCMC acquired the unique experience in developing and maintaining real-time systems. CCMC staff expertise and trusted relations with model owners enable to keep up to date with rapid advances in model development. The information gleaned from the real-time calculations is tailored to specific mission needs. Model forecasts combined with data streams from NASA and other missions are integrated into an innovative configurable data analysis and dissemination system (http://iswa.gsfc.nasa.gov) that is accessible world-wide. The talk will review the latest progress and discuss opportunities for addressing operational space weather needs in innovative and collaborative ways.

  16. UPC++ Specification v1.0, Draft 6

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

    Bachan, J.; Baden, Scott; Bonachea, Dan

    UPC++ is a C++11 library providing classes and functions that support Partitioned Global Address Space (PGAS) programming. We are revising the library under the auspices of the DOE’s Exascale Computing Project, to meet the needs of applications requiring PGAS support. UPC++ is intended for implementing elaborate distributed data structures where communication is irregular or fine-grained. The UPC++ interfaces for moving non-contiguous data and handling memories with different optimal access methods are composable and similar to those used in conventional C++. The UPC++ programmer can expect communication to run at close to hardware speeds. The key facilities in UPC++ are globalmore » pointers, that enable the programmer to express ownership information for improving locality, one-sided communication, both put/get and RPC, futures and continuations. Futures capture data readiness state, which is useful in making scheduling decisions, and continuations provide for completion handling via callbacks. Together, these enable the programmer to chain together a DAG of operations to execute asynchronously as high-latency dependencies become satisfied.« less

  17. Development of Individually Addressable Micro-Mirror-Arrays for Space Applications

    NASA Technical Reports Server (NTRS)

    Dutta, Sanghamitra B.; Ewin, Audrey J.; Jhabvala, Murzy; Kotecki, Carl A.; Kuhn, Jonathan L.; Mott, D. Brent

    2000-01-01

    We have been developing a 32 x 32 prototype array of individually addressable Micro-Mirrors capable of operating at cryogenic temperature for Earth and Space Science applications. Micro-Mirror-Array technology has the potential to revolutionize imaging and spectroscopy systems for NASA's missions of the 21st century. They can be used as programmable slits for the Next Generation Space Telescope, as smart sensors for a steerable spectrometer, as neutral density filters for bright scene attenuation etc. The, entire fabrication process is carried out in the Detector Development Laboratory at NASA, GSFC. The fabrication process is low temperature compatible and involves integration of conventional CMOS technology and surface micro-machining used in MEMS. Aluminum is used as the mirror material and is built on a silicon substrate containing the CMOS address circuit. The mirrors are 100 microns x l00 microns in area and deflect by +/- 10 deg induced by electrostatic actuation between two parallel plate capacitors. A pair of thin aluminum torsion straps allow the mirrors to tilt. Finite-element-analysis and closed form solutions using electrostatic and mechanical torque for mirror operation were developed and the results were compared with laboratory performance. The results agree well both at room temperature and at cryogenic temperature. The development demonstrates the first cryogenic operation of two-dimensional Micro-Mirrors with bi-state operation. Larger arrays will be developed meeting requirements for different science applications. Theoretical analysis, fabrication process, laboratory test results and different science applications will be described in detail.

  18. NASA Associate Administrator for Space Flight Rothenberg addresses guests at ribbon cutting for the

    NASA Technical Reports Server (NTRS)

    2000-01-01

    NASA Associate Administrator for Space Flight Joseph Rothenberg addresses attendees at a ribbon cutting for the new Checkout and Launch Control System (CLCS) at the Hypergolic Maintenance Facility (HMF). The CLCS was declared operational in a ribbon cutting ceremony earlier. The new control room will be used to process the Orbital Maneuvering System pods and Forward Reaction Control System modules at the HMF. This hardware is removed from Space Shuttle orbiters and routinely taken to the HMF for checkout and servicing.

  19. DEGAS: Dynamic Exascale Global Address Space Programming Environments

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

    Demmel, James

    The Dynamic, Exascale Global Address Space programming environment (DEGAS) project will develop the next generation of programming models and runtime systems to meet the challenges of Exascale computing. The Berkeley part of the project concentrated on communication-optimal code generation to optimize speed and energy efficiency by reducing data movement. Our work developed communication lower bounds, and/or communication avoiding algorithms (that either meet the lower bound, or do much less communication than their conventional counterparts) for a variety of algorithms, including linear algebra, machine learning and genomics. The Berkeley part of the project concentrated on communication-optimal code generation to optimize speedmore » and energy efficiency by reducing data movement. Our work developed communication lower bounds, and/or communication avoiding algorithms (that either meet the lower bound, or do much less communication than their conventional counterparts) for a variety of algorithms, including linear algebra, machine learning and genomics.« less

  20. Performance Characterization of Global Address Space Applications: A Case Study with NWChem

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

    Hammond, Jeffrey R.; Krishnamoorthy, Sriram; Shende, Sameer

    The use of global address space languages and one-sided communication for complex applications is gaining attention in the parallel computing community. However, lack of good evaluative methods to observe multiple levels of performance makes it difficult to isolate the cause of performance deficiencies and to understand the fundamental limitations of system and application design for future improvement. NWChem is a popular computational chemistry package which depends on the Global Arrays/ ARMCI suite for partitioned global address space functionality to deliver high-end molecular modeling capabilities. A workload characterization methodology was developed to support NWChem performance engineering on large-scale parallel platforms. Themore » research involved both the integration of performance instrumentation and measurement in the NWChem software, as well as the analysis of one-sided communication performance in the context of NWChem workloads. Scaling studies were conducted for NWChem on Blue Gene/P and on two large-scale clusters using different generation Infiniband interconnects and x86 processors. The performance analysis and results show how subtle changes in the runtime parameters related to the communication subsystem could have significant impact on performance behavior. The tool has successfully identified several algorithmic bottlenecks which are already being tackled by computational chemists to improve NWChem performance.« less

  1. Latent Class Analysis of Gambling Activities in a Sample of Young Swiss Men: Association with Gambling Problems, Substance Use Outcomes, Personality Traits and Coping Strategies.

    PubMed

    Studer, Joseph; Baggio, Stéphanie; Mohler-Kuo, Meichun; Simon, Olivier; Daeppen, Jean-Bernard; Gmel, Gerhard

    2016-06-01

    The study aimed to identify different patterns of gambling activities (PGAs) and to investigate how PGAs differed in gambling problems, substance use outcomes, personality traits and coping strategies. A representative sample of 4989 young Swiss males completed a questionnaire assessing seven distinct gambling activities, gambling problems, substance use outcomes, personality traits and coping strategies. PGAs were identified using latent class analysis (LCA). Differences between PGAs in gambling and substance use outcomes, personality traits and coping strategies were tested. LCA identified six different PGAs. With regard to gambling and substance use outcomes, the three most problematic PGAs were extensive gamblers, followed by private gamblers, and electronic lottery and casino gamblers, respectively. By contrast, the three least detrimental PGAs were rare or non-gamblers, lottery only gamblers and casino gamblers. With regard to personality traits, compared with rare or non-gamblers, private and casino gamblers reported higher levels of sensation seeking. Electronic lottery and casino gamblers, private gamblers and extensive gamblers had higher levels of aggression-hostility. Extensive and casino gamblers reported higher levels of sociability, whereas casino gamblers reported lower levels of anxiety-neuroticism. Extensive gamblers used more maladaptive and less adaptive coping strategies than other groups. Results suggest that gambling is not a homogeneous activity since different types of gamblers exist according to the PGA they are engaged in. Extensive gamblers, electronic and casino gamblers and private gamblers may have the most problematic PGAs. Personality traits and coping skills may predispose individuals to PGAs associated with more or less negative outcomes.

  2. Final Report from The University of Texas at Austin for DEGAS: Dynamic Global Address Space programming environments

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

    Erez, Mattan; Yelick, Katherine; Sarkar, Vivek

    The Dynamic, Exascale Global Address Space programming environment (DEGAS) project will develop the next generation of programming models and runtime systems to meet the challenges of Exascale computing. Our approach is to provide an efficient and scalable programming model that can be adapted to application needs through the use of dynamic runtime features and domain-specific languages for computational kernels. We address the following technical challenges: Programmability: Rich set of programming constructs based on a Hierarchical Partitioned Global Address Space (HPGAS) model, demonstrated in UPC++. Scalability: Hierarchical locality control, lightweight communication (extended GASNet), and ef- ficient synchronization mechanisms (Phasers). Performance Portability:more » Just-in-time specialization (SEJITS) for generating hardware-specific code and scheduling libraries for domain-specific adaptive runtimes (Habanero). Energy Efficiency: Communication-optimal code generation to optimize energy efficiency by re- ducing data movement. Resilience: Containment Domains for flexible, domain-specific resilience, using state capture mechanisms and lightweight, asynchronous recovery mechanisms. Interoperability: Runtime and language interoperability with MPI and OpenMP to encourage broad adoption.« less

  3. Park Smart

    NASA Technical Reports Server (NTRS)

    1999-01-01

    The Parking Garage Automation System (PGAS) is based on a technology developed by a NASA-sponsored project called Robot sensorSkin(TM). Merritt Systems, Inc., of Orlando, Florida, teamed up with NASA to improve robots working with critical flight hardware at Kennedy Space Center in Florida. The system, containing smart sensor modules and flexible printed circuit board skin, help robots to steer clear of obstacles using a proximity sensing system. Advancements in the sensor designs are being applied to various commercial applications, including the PGAS. The system includes a smartSensor(TM) network installed around and within public parking garages to autonomously guide motorists to open facilities, and once within, to free parking spaces. The sensors use non-invasive reflective-ultrasonic technology for high accuracy, high reliability, and low maintenance. The system is remotely programmable: it can be tuned to site-specific requirements, has variable range capability, and allows remote configuration, monitoring, and diagnostics. The sensors are immune to interference from metallic construction materials, such as rebar and steel beams. Inside the garage, smart routing signs mounted overhead or on poles in front of each row of parking spots guide the motorist precisely to free spaces.

  4. Law addresses question of space artifact ownership

    NASA Astrophysics Data System (ADS)

    Showstack, Randy

    2012-10-01

    U.S. astronauts who participated in many of NASA's early space missions will receive full ownership rights to artifacts from those missions through legislation that President Barack Obama signed into law on 25 September. The legislation, which received broad bipartisan support, provides artifact ownership rights to any of NASA's Mercury, Gemini, or Apollo space programs through the completion of the Apollo-Soyuz Test Project, whose flight occurred in July 1975. The law defines artifacts as expendable, disposable, or personal use items—including personal logs and flight hardware salvaged from jettisoned lunar modules—used by astronauts that were not required to be returned to NASA; lunar rocks and other lunar material are not defined as artifacts. Bill cosponsor Rep. Ralph Hall (R-Tex.), chair of the House of Representatives' Committee on Science, Space, and Technology, said on 19 September, “A majority of these items have been in the personal possession of the astronauts for 40 years or more. Over the last decade, NASA has begun to challenge the astronauts' ownership of these mementos. This issue was first brought to my attention late last year. I was surprised to learn that NASA had, on an irregular basis, intervened several times to claim ownership.”

  5. Nanoscale content-addressable memory

    NASA Technical Reports Server (NTRS)

    Davis, Bryan (Inventor); Principe, Jose C. (Inventor); Fortes, Jose (Inventor)

    2009-01-01

    A combined content addressable memory device and memory interface is provided. The combined device and interface includes one or more one molecular wire crossbar memories having spaced-apart key nanowires, spaced-apart value nanowires adjacent to the key nanowires, and configurable switches between the key nanowires and the value nanowires. The combination further includes a key microwire-nanowire grid (key MNG) electrically connected to the spaced-apart key nanowires, and a value microwire-nanowire grid (value MNG) electrically connected to the spaced-apart value nanowires. A key or value MNGs selects multiple nanowires for a given key or value.

  6. Common benefit from a perspective of "Non-traditional Partners": A proposed agenda to address the status quo in Global Space Governance

    NASA Astrophysics Data System (ADS)

    Aganaba-Jeanty, Timiebi

    2015-12-01

    It is presupposed that there is a dominant position in interpreting the freedom of Outer Space which has not given much real significance to the idea of common benefit. The reason that this causes difficulty is that there is an ambiguity to common benefit. This dominant position however sees the issue of benefit sharing in the context of the perceived tension between established space faring nations and emerging and aspirant States and the idea that freedom could take on a different meaning depending on where one is on the scale of development. It fails to recognize that solutions to contemporary and historical governance challenges have been much less oriented towards the interests of less developed States or new entrants, making the accrual and sharing of benefits dependent on the free will of those States able to carry out a variety of space activities independently. As a result of this, the debate around common benefit is exploited to seek individual benefit derived for a State as opposed to what our effort to use space collectively can generate. In recent times, the issue has not received much attention. This is because it is believed to be partly resolved through normative frameworks such as Article 1 of the Outer Space Treaty and the Space Benefits Declaration. While an attempt to re-address historical contentious issues, asserted to be resolved, may appear illusory or futile; such analysis can be useful depending on the account that the reader believes should be given to the normative character of human nature. To this end, the writings of legal, political and social theorists and methodologies from Critical Legal Schools may prove insightful for a deeper contextualization of the historical debate, the current understanding of the freedoms of Outer Space as well as unearth future perspectives to aid in addressing the current pressing space related issue of our time: Sustainability of Space Activities. This article proposes three main issue areas to

  7. Message Passing vs. Shared Address Space on a Cluster of SMPs

    NASA Technical Reports Server (NTRS)

    Shan, Hongzhang; Singh, Jaswinder Pal; Oliker, Leonid; Biswas, Rupak

    2000-01-01

    The convergence of scalable computer architectures using clusters of PCs (or PC-SMPs) with commodity networking has become an attractive platform for high end scientific computing. Currently, message-passing and shared address space (SAS) are the two leading programming paradigms for these systems. Message-passing has been standardized with MPI, and is the most common and mature programming approach. However message-passing code development can be extremely difficult, especially for irregular structured computations. SAS offers substantial ease of programming, but may suffer from performance limitations due to poor spatial locality, and high protocol overhead. In this paper, we compare the performance of and programming effort, required for six applications under both programming models on a 32 CPU PC-SMP cluster. Our application suite consists of codes that typically do not exhibit high efficiency under shared memory programming. due to their high communication to computation ratios and complex communication patterns. Results indicate that SAS can achieve about half the parallel efficiency of MPI for most of our applications: however, on certain classes of problems SAS performance is competitive with MPI. We also present new algorithms for improving the PC cluster performance of MPI collective operations.

  8. Message Passing and Shared Address Space Parallelism on an SMP Cluster

    NASA Technical Reports Server (NTRS)

    Shan, Hongzhang; Singh, Jaswinder P.; Oliker, Leonid; Biswas, Rupak; Biegel, Bryan (Technical Monitor)

    2002-01-01

    Currently, message passing (MP) and shared address space (SAS) are the two leading parallel programming paradigms. MP has been standardized with MPI, and is the more common and mature approach; however, code development can be extremely difficult, especially for irregularly structured computations. SAS offers substantial ease of programming, but may suffer from performance limitations due to poor spatial locality and high protocol overhead. In this paper, we compare the performance of and the programming effort required for six applications under both programming models on a 32-processor PC-SMP cluster, a platform that is becoming increasingly attractive for high-end scientific computing. Our application suite consists of codes that typically do not exhibit scalable performance under shared-memory programming due to their high communication-to-computation ratios and/or complex communication patterns. Results indicate that SAS can achieve about half the parallel efficiency of MPI for most of our applications, while being competitive for the others. A hybrid MPI+SAS strategy shows only a small performance advantage over pure MPI in some cases. Finally, improved implementations of two MPI collective operations on PC-SMP clusters are presented.

  9. Patterns of Gambling Activities and Gambling Problems Among Italian High School Students: Results from a Latent Class Analysis.

    PubMed

    De Luigi, Nicola; Gibertoni, Dino; Randon, Emanuela; Scorcu, Antonello E

    2018-06-01

    This study aims to provide an estimate of the prevalence of gambling among Italian adolescents and a description of their patterns of gambling activities (PGAs) using a latent class analysis on 13 different types of games. A nationwide sample of 10,959 Italian high school students was recruited in 2013. We assessed problem gambling using the South Oaks Gambling Screen: Revisited for Adolescent (SOGS-RA) scale. Approximately half (50.6%) of students reported gambling at least once in the previous year; 5.0% of them were problem gamblers and 9.1% were at-risk gamblers according to their SOGS-RA scores. Eight PGAs were identified, among which heavy players (1.7% of students) could be classified as problem gamblers and broad skill players (2.0%) and lotteries & sports players (2.4%) as "at-risk" players. These high-risk classes were consistently associated with risky behaviours in terms of substance use, school performance, money spent on gambling and family environment; the other five classes identified low-risk players associated with safe behaviours. To the best of our knowledge, this is the first study to identify PGAs among Italian adolescents. Problem gamblers are not a homogeneous group in terms of patterns of gambling activities and are associated with different risk factors, among which environmental factors, such as parents' gambling attitude and behaviour, deserve special attention. The acknowledgment of such patterns and risk factors could be useful in developing sensible public policies addressing prevention strategies and regulatory instruments.

  10. Runtime Detection of C-Style Errors in UPC Code

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

    Pirkelbauer, P; Liao, C; Panas, T

    2011-09-29

    Unified Parallel C (UPC) extends the C programming language (ISO C 99) with explicit parallel programming support for the partitioned global address space (PGAS), which provides a global memory space with localized partitions to each thread. Like its ancestor C, UPC is a low-level language that emphasizes code efficiency over safety. The absence of dynamic (and static) safety checks allows programmer oversights and software flaws that can be hard to spot. In this paper, we present an extension of a dynamic analysis tool, ROSE-Code Instrumentation and Runtime Monitor (ROSECIRM), for UPC to help programmers find C-style errors involving the globalmore » address space. Built on top of the ROSE source-to-source compiler infrastructure, the tool instruments source files with code that monitors operations and keeps track of changes to the system state. The resulting code is linked to a runtime monitor that observes the program execution and finds software defects. We describe the extensions to ROSE-CIRM that were necessary to support UPC. We discuss complications that arise from parallel code and our solutions. We test ROSE-CIRM against a runtime error detection test suite, and present performance results obtained from running error-free codes. ROSE-CIRM is released as part of the ROSE compiler under a BSD-style open source license.« less

  11. Shared address collectives using counter mechanisms

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

    Blocksome, Michael; Dozsa, Gabor; Gooding, Thomas M

    A shared address space on a compute node stores data received from a network and data to transmit to the network. The shared address space includes an application buffer that can be directly operated upon by a plurality of processes, for instance, running on different cores on the compute node. A shared counter is used for one or more of signaling arrival of the data across the plurality of processes running on the compute node, signaling completion of an operation performed by one or more of the plurality of processes, obtaining reservation slots by one or more of the pluralitymore » of processes, or combinations thereof.« less

  12. 14 CFR 47.45 - Change of address.

    Code of Federal Regulations, 2010 CFR

    2010-01-01

    ... Aeronautics and Space FEDERAL AVIATION ADMINISTRATION, DEPARTMENT OF TRANSPORTATION AIRCRAFT AIRCRAFT REGISTRATION Certificates of Aircraft Registration § 47.45 Change of address. Within 30 days after any change in his permanent mailing address, the holder of a Certificate of Aircraft Registration for an...

  13. Structure, synthesis and biological properties of the pentacyclic guanidinium alkaloids.

    PubMed

    Shi, Yunlong; Moazami, Yasamin; Pierce, Joshua G

    2017-06-01

    The pentacyclic guanidinium alkaloids (PGAs) are a family of marine natural products that possess a polycyclic guanidine-containing core and a long alkyl chain tethered spermidine-derived tail that is rarely observed in other natural products. These natural products exhibit potent activities on a wide range of organisms and therefore have attracted the attention of many synthetic chemists; however, the structure-activity relationships and mechanisms of action of PGAs remain largely elusive. Herein we summarize the structure, synthesis, toxicity and mechanisms of action of PGAs and highlight their potential as chemical probes and/or therapeutic leads. Copyright © 2017 Elsevier Ltd. All rights reserved.

  14. Work stealing for GPU-accelerated parallel programs in a global address space framework

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

    Arafat, Humayun; Dinan, James; Krishnamoorthy, Sriram

    Task parallelism is an attractive approach to automatically load balance the computation in a parallel system and adapt to dynamism exhibited by parallel systems. Exploiting task parallelism through work stealing has been extensively studied in shared and distributed-memory contexts. In this paper, we study the design of a system that uses work stealing for dynamic load balancing of task-parallel programs executed on hybrid distributed-memory CPU-graphics processing unit (GPU) systems in a global-address space framework. We take into account the unique nature of the accelerator model employed by GPUs, the significant performance difference between GPU and CPU execution as a functionmore » of problem size, and the distinct CPU and GPU memory domains. We consider various alternatives in designing a distributed work stealing algorithm for CPU-GPU systems, while taking into account the impact of task distribution and data movement overheads. These strategies are evaluated using microbenchmarks that capture various execution configurations as well as the state-of-the-art CCSD(T) application module from the computational chemistry domain« less

  15. STS-71 crew addresses news media

    NASA Technical Reports Server (NTRS)

    1995-01-01

    Following their arrival at KSC's Shuttle Landing Facility, the STS-71 flight crew takes a moment to address news media gathered to greet them. The journey from Johnson Space Center in Houston brings the flight crew one step closer to an historic spaceflight, the first docking of the U.S. Space Shuttle with the Russian Space Station Mir. The countdown clock already has begun ticking toward liftoff of the Shuttle Atlantis on that flight, currently scheduled for June 23 at 5:08 p.m. EDT.

  16. Addressing Human System Risks to Future Space Exploration

    NASA Technical Reports Server (NTRS)

    Paloski, W. H.; Francisco, D. R.; Davis, J. R.

    2015-01-01

    NASA is contemplating future human exploration missions to destinations beyond low Earth orbit, including the Moon, deep-space asteroids, and Mars. While we have learned much about protecting crew health and performance during orbital space flight over the past half-century, the challenges of these future missions far exceed those within our current experience base. To ensure success in these missions, we have developed a Human System Risk Board (HSRB) to identify, quantify, and develop mitigation plans for the extraordinary risks associated with each potential mission scenario. The HSRB comprises research, technology, and operations experts in medicine, physiology, psychology, human factors, radiation, toxicology, microbiology, pharmacology, and food sciences. Methods: Owing to the wide range of potential mission characteristics, we first identified the hazards to human health and performance common to all exploration missions: altered gravity, isolation/confinement, increased radiation, distance from Earth, and hostile/closed environment. Each hazard leads to a set of risks to crew health and/or performance. For example the radiation hazard leads to risks of acute radiation syndrome, central nervous system dysfunction, soft tissue degeneration, and carcinogenesis. Some of these risks (e.g., acute radiation syndrome) could affect crew health or performance during the mission, while others (e.g., carcinogenesis) would more likely affect the crewmember well after the mission ends. We next defined a set of design reference missions (DRM) that would span the range of exploration missions currently under consideration. In addition to standard (6-month) and long-duration (1-year) missions in low Earth orbit (LEO), these DRM include deep space sortie missions of 1 month duration, lunar orbital and landing missions of 1 year duration, deep space journey and asteroid landing missions of 1 year duration, and Mars orbital and landing missions of 3 years duration. We then

  17. Individually addressable cathodes with integrated focusing stack or detectors

    DOEpatents

    Thomas, Clarence E.; Baylor, Larry R.; Voelkl, Edgar; Simpson, Michael L.; Paulus, Michael J.; Lowndes, Douglas; Whealton, John; Whitson, John C.; Wilgen, John B.

    2005-07-12

    Systems and method are described for addressable field emission array (AFEA) chips. A plurality of individually addressable cathodes are integrated with an electrostatic focusing stack and/or a plurality of detectors on the addressable field emission array. The systems and methods provide advantages including the avoidance of space-charge blow-up.

  18. Mission Specialist Gregory J. Harbaugh addresses media

    NASA Technical Reports Server (NTRS)

    1995-01-01

    STS-71 Mission Specialist Gregory J. Harbaugh addresses members of the news media gathered to greet the flight crew following their arrival at the KSC Shuttle Landing Facility. Harbaugh is assigned as the flight engineer on STS-71, which will feature the first docking between the U.S. Space Shuttle and the Russian Space Station Mir. Liftoff of the Space Shuttle Atlantis is scheduled during a seven-minute window opening at 5:08 p.m. EDT, June 23. STS-71 also will be the 100th U.S. human space launch conducted from Florida's Cape.

  19. Addressing the Influence of Space Weather on Airline Navigation

    NASA Technical Reports Server (NTRS)

    Sparks, Lawrence

    2012-01-01

    The advent of satellite-based augmentation systems has made it possible to navigate aircraft safely using radio signals emitted by global navigation satellite systems (GNSS) such as the Global Positioning System. As a signal propagates through the earth's ionosphere, it suffers delay that is proportional to the total electron content encountered along the raypath. Since the magnitude of this total electron content is strongly influenced by space weather, the safety and reliability of GNSS for airline navigation requires continual monitoring of the state of the ionosphere and calibration of ionospheric delay. This paper examines the impact of space weather on GNSS-based navigation and provides an overview of how the Wide Area Augmentation System protects its users from positioning error due to ionospheric disturbances

  20. Inventing a Space Mission: The Story of the Herschel Space Observatory

    NASA Astrophysics Data System (ADS)

    Minier, Vincent; Bonnet, Roger-Maurice; Bontems, Vincent; de Graauw, Thijs; Griffin, Matt; Helmich, Frank; Pilbratt, Göran; Volonte, Sergio

    This book describes prominent technological achievements within a very successful space science mission: the Herschel space observatory. Focusing on the various processes of innovation it offers an analysis and discussion of the social, technological and scientific context of the mission that paved the way to its development. It addresses the key question raised by these processes in our modern society, i.e.: how knowledge management of innovation set the conditions for inventing the future? In that respect the book is based on a transdisciplinary analysis of the programmatic complexity of Herschel, with inputs from space scientists, managers, philosophers, and engineers. This book is addressed to decision makers, not only in space science, but also in other industries and sciences using or building large machines. It is also addressed to space engineers and scientists as well as students in science and management.

  1. View of human problems to be addressed for long-duration space flights

    NASA Technical Reports Server (NTRS)

    Berry, C. A.

    1973-01-01

    Review of the principal physiological changes seen in space flight, and discussion of various countermeasures which may prove to be useful in combating these changes in long-term space flight. A number of transient changes seen in Apollo astronauts following space flights are discussed, including cardiovascular and hemodynamic responses to weightlessness, musculoskeletal changes, changes in fluid and electrolyte balance, microbiological changes, and vestibular effects. A number of countermeasures to the effects of space flight on man are cited, including exercise, medication, diet, lower-body negative pressure, gradient positive pressure, venous occlusion cuffs, and others. A detailed review is then made of a number of psychological factors bearing on the ability of the human organism to withstand the rigors of long space flights.

  2. Random domain name and address mutation (RDAM) for thwarting reconnaissance attacks

    PubMed Central

    Chen, Xi; Zhu, Yuefei

    2017-01-01

    Network address shuffling is a novel moving target defense (MTD) that invalidates the address information collected by the attacker by dynamically changing or remapping the host’s network addresses. However, most network address shuffling methods are limited by the limited address space and rely on the host’s static domain name to map to its dynamic address; therefore these methods cannot effectively defend against random scanning attacks, and cannot defend against an attacker who knows the target’s domain name. In this paper, we propose a network defense method based on random domain name and address mutation (RDAM), which increases the scanning space of the attacker through a dynamic domain name method and reduces the probability that a host will be hit by an attacker scanning IP addresses using the domain name system (DNS) query list and the time window methods. Theoretical analysis and experimental results show that RDAM can defend against scanning attacks and worm propagation more effectively than general network address shuffling methods, while introducing an acceptable operational overhead. PMID:28489910

  3. 2012 CCCC Chair's Address: Stories Take Place--A Performance in One Act

    ERIC Educational Resources Information Center

    Powell, Malea

    2012-01-01

    This is a written version of the address that Malea Powell gave at the Conference on College Composition and Communication (CCCC) Convention in St. Louis, Missouri, on Thursday, March 22, 2012. This address is a collection of stories. According to her, stories take place. Stories practice place into space. Stories produce habitable spaces. She…

  4. Using remote sensing and GIS in addressing the future decisions regarding underused urban spaces; Hajj sites in Mecca as case study

    NASA Astrophysics Data System (ADS)

    Imam, Ayman; Roca, Josep

    2017-10-01

    The term Underused Urban Spaces (UUS) refers to spaces within urban areas that have become unused, or that are being used to a lesser degree than they could or should be such as former industrial zones, abandoned facilities or buildings and Expo or Olympic Games cities. The Islamic pilgrimage sites known as Hajj sites (HS) are considered form of the UUS concept as they are used lesser degree than they should be. However, the emergence of such spaces has therefore encouraged researchers, urban planner, social and local authorities to discuses about the appropriate decision regarding their future towards conversion or alternatively using those spaces in order to achieve positive social, economic and environmental benefits, according to Pagano and Bowman (2000), UUS can be a powerful tool for governments and investors to use during the urban growth (UG) of their cities. Since, remote sensing and GIS technologies are used recently to study and analyze the UG of cities; the main objective of this paper is to demonstrate the efficiency of those technologies in addressing the future decisions regarding the underused status of Hajj sites in relation to UG of the city of Mecca. Tow classified land cover maps of Mecca for two years (1998 and 2013), in addition to entropy index and multiple regression analyses were utilized in order to quantify the relationship between HS and Mecca UG. The results showed that the urban growth of Mecca has increased by approximately 56%, and almost 32% of that increased were around HS in on hand, and on the other hand the entropy and the regression analysis showed that there is 51% probability that the future growth to be also around HS. These findings will better addressing the future decisions regarding the underused status of HS, simultaneously revel that the use of RS and GIS was highly effective to be adopted within similar cases of UUS.

  5. Space Medicine

    NASA Technical Reports Server (NTRS)

    Pool, Sam L.

    2000-01-01

    The National Academy of Sciences Committee on Space Biology and Medicine points out that space medicine is unique among space sciences, because in addition to addressing questions of fundamental scientific interest, it must address clinical or human health and safety issues as well. Efforts to identify how microgravity affects human physiology began in earnest by the United States in 1960 with the establishment of the National Aeronautics and Space Administration (NASA's) Life Sciences program. Before the first human space missions, prediction about the physiological effects of microgravity in space ranged from extremely severe to none at all. The understanding that has developed from our experiences in space to date allows us to be guardedly optimistic about the ultimate accommodations of humans to space flight. Only by our travels into the microgravity environment of space have we begun to unravel the mysteries associated with gravity's role in shaping human physiology. Space medicine is still at its very earliest stages. Development of this field has been slow for several reasons, including the limited number of space flights, the small number of research subjects, and the competition within the life sciences community and other disciplines for flight opportunities. The physiological changes incurred during space flight may have a dramatic effect on the course of an injury or illness. These physiological changes present an exciting challenge for the field of space medicine: how to best preserve human health and safety while simultaneously deciphering the effects of microgravity on human performance. As the United States considers the future of humans in long-term space travel, it is essential that the many mysteries as to how microgravity affects human systems be addressed with vigor. Based on the current state of our knowledge, the justification is excellent indeed compelling- for NASA to develop a sophisticated capability in space medicine. Teams of physicians

  6. Prospective Evaluation of Germline Alterations in Patients With Exocrine Pancreatic Neoplasms.

    PubMed

    Lowery, Maeve A; Wong, Winston; Jordan, Emmet J; Lee, Jonathan W; Kemel, Yelena; Vijai, Joseph; Mandelker, Diana; Zehir, Ahmet; Capanu, Marinela; Salo-Mullen, Erin; Arnold, Angela G; Yu, Kenneth H; Varghese, Anna M; Kelsen, David P; Brenner, Robin; Kaufmann, Erica; Ravichandran, Vignesh; Mukherjee, Semanti; Berger, Michael F; Hyman, David M; Klimstra, David S; Abou-Alfa, Ghassan K; Tjan, Catherine; Covington, Christina; Maynard, Hannah; Allen, Peter J; Askan, Gokce; Leach, Steven D; Iacobuzio-Donahue, Christine A; Robson, Mark E; Offit, Kenneth; Stadler, Zsofia K; O'Reilly, Eileen M

    2018-02-28

    Identification of pathogenic germline alterations (PGAs) has important clinical and therapeutic implications in pancreas cancer. We performed comprehensive germline testing (GT) in an unselected prospective cohort of patients with exocrine pancreatic neoplasms with genotype and phenotype association to facilitate identification of prognostic and/or predictive biomarkers and examine potential therapeutic implications. Six hundred fifteen unselected patients with exocrine pancreatic neoplasms were prospectively consented for somatic tumor and matched sample profiling for 410-468 genes. GT for PGAs in 76 genes associated with cancer susceptibility was performed in an "identified" manner in 356 (57.9%) patients and in an "anonymized" manner in 259 (42.1%) patients, using an institutional review board-approved protocol. Detailed clinical and pathological features, response to platinum, and overall survival (OS) were collected for the identified cohort. OS was analyzed with Kaplan-Meier curves. PGAs were present in 122 (19.8%) of 615 patients involving 24 different genes, including BRCA1/2, ATM, PALB2, and multiple additional genes associated with the DNA damage response pathway. Of 122 patients with germline alterations, 41.8% did not meet current guidelines for GT. The difference in median OS was not statistically significant between patients with and without PGA (50.8 months, 95% confidence interval = 34.5 to not reached, two-sided P = .94). Loss of heterozygosity was found in 60.0% of BRCA1/2. PGAs frequently occur in pancreas exocrine neoplasms and involve multiple genes beyond those previously associated with hereditary pancreatic cancer. These PGAs are therapeutically actionable in about 5% to 10% of patients. These data support routinely offering GT in all pancreatic ductal adenocarcimona patients with a broad panel of known hereditary cancer predisposition genes.

  7. Gastric pyloric gland adenoma: a multicentre clinicopathological study of 67 cases.

    PubMed

    Choi, Won-Tak; Brown, Ian; Ushiku, Tetsuo; Yozu, Masato; Setia, Namrata; Srivastava, Amitabh; Johncilla, Melanie; Pai, Rish K; Gill, Ryan M; Fukayama, Masashi; Misdraji, Joseph; Lauwers, Gregory Y

    2018-05-01

    There is limited information regarding the clinicopathological and immunohistochemical characteristics of gastric pyloric gland adenomas (PGAs). Sixty-seven cases of gastric PGA from 57 patients were analysed. PGAs occurred with similar frequency in men and women (47.4 and 52.6%, respectively), with a mean age of 66 years. Most presented in the gastric body/fundus (67.2%). Fifteen cases (22.4%) developed against a background of autoimmune gastritis (AIG), whereas normal mucosa was seen in 35.8%. Only 16.4% (11 cases) developed in patients with a genetic predisposition, most commonly familial adenomatous polyposis. Low-grade lesions had a mean size of 1.5 cm, while PGAs with high-grade dysplasia (HGD) or adenocarcinoma had a mean size of 3.5 cm (P < 0.001) and more commonly showed tubulovillous architecture (50.0 versus 25.6% in low-grade dysplasia; P = 0.040). Most PGAs (61.2%) co-expressed mucin (MUC)5AC and MUC6 (mixed type), which was associated significantly with HGD or adenocarcinoma (P = 0.013). AIG was also associated with HGD (P = 0.027), but genetic predisposition did not correlate with the grade of dysplasia (P = 0.793). The recurrence rate of PGA was similar for high- (11.8%) and low-grade lesions (7.4%) (P = 0.624). The risk of HGD increases with the size of PGA, tubulovillous architecture and the presence of AIG as well as mixed immunophenotype. As the overall local recurrence rate is less than 10%, PGAs may be treated conservatively, but they should be excised completely if possible, particularly if they are large or show high-grade features. © 2017 John Wiley & Sons Ltd.

  8. 14 CFR 330.23 - To what address must air carriers send their applications?

    Code of Federal Regulations, 2010 CFR

    2010-01-01

    ... 14 Aeronautics and Space 4 2010-01-01 2010-01-01 false To what address must air carriers send their applications? 330.23 Section 330.23 Aeronautics and Space OFFICE OF THE SECRETARY, DEPARTMENT OF... Application Procedures § 330.23 To what address must air carriers send their applications? (a) You must submit...

  9. SpaceNet: Modeling and Simulating Space Logistics

    NASA Technical Reports Server (NTRS)

    Lee, Gene; Jordan, Elizabeth; Shishko, Robert; de Weck, Olivier; Armar, Nii; Siddiqi, Afreen

    2008-01-01

    This paper summarizes the current state of the art in interplanetary supply chain modeling and discusses SpaceNet as one particular method and tool to address space logistics modeling and simulation challenges. Fundamental upgrades to the interplanetary supply chain framework such as process groups, nested elements, and cargo sharing, enabled SpaceNet to model an integrated set of missions as a campaign. The capabilities and uses of SpaceNet are demonstrated by a step-by-step modeling and simulation of a lunar campaign.

  10. 14 CFR 47.45 - Change of address.

    Code of Federal Regulations, 2012 CFR

    2012-01-01

    ... Aeronautics and Space FEDERAL AVIATION ADMINISTRATION, DEPARTMENT OF TRANSPORTATION AIRCRAFT AIRCRAFT REGISTRATION Certificates of Aircraft Registration § 47.45 Change of address. Within 30 days after any change... will issue, without charge, a revised Certificate of Aircraft Registration, AC Form 8050-3, reflecting...

  11. 14 CFR 47.45 - Change of address.

    Code of Federal Regulations, 2014 CFR

    2014-01-01

    ... Aeronautics and Space FEDERAL AVIATION ADMINISTRATION, DEPARTMENT OF TRANSPORTATION AIRCRAFT AIRCRAFT REGISTRATION Certificates of Aircraft Registration § 47.45 Change of address. Within 30 days after any change... will issue, without charge, a revised Certificate of Aircraft Registration, AC Form 8050-3, reflecting...

  12. 14 CFR 47.45 - Change of address.

    Code of Federal Regulations, 2013 CFR

    2013-01-01

    ... Aeronautics and Space FEDERAL AVIATION ADMINISTRATION, DEPARTMENT OF TRANSPORTATION AIRCRAFT AIRCRAFT REGISTRATION Certificates of Aircraft Registration § 47.45 Change of address. Within 30 days after any change... will issue, without charge, a revised Certificate of Aircraft Registration, AC Form 8050-3, reflecting...

  13. 14 CFR 47.45 - Change of address.

    Code of Federal Regulations, 2011 CFR

    2011-01-01

    ... Aeronautics and Space FEDERAL AVIATION ADMINISTRATION, DEPARTMENT OF TRANSPORTATION AIRCRAFT AIRCRAFT REGISTRATION Certificates of Aircraft Registration § 47.45 Change of address. Within 30 days after any change... will issue, without charge, a revised Certificate of Aircraft Registration, AC Form 8050-3, reflecting...

  14. STS-79 John Blaha address news media

    NASA Technical Reports Server (NTRS)

    1996-01-01

    STS-79 Mission Specialist John E. Blaha addresses news media gathered for the flight crew's late night arrival at the KSC Shuttle Landing Facility. A veteran space traveler who served as either commander or pilot on his four previous Shuttle flights, Blaha is taking a mission specialist's slot on STS-79 because he will be transferring to the Russian Space Station Mir for an extended stay. American astronaut Shannon Lucid will take his place aboard the Space Shuttle Atlantis for the return trip home. Final preparations are under way for launch of Atlantis on Mission STS-79, with liftoff scheduled to occur during an approximately seven-minute window opening at 4:54 a.m. EDT, Sept.16.

  15. Possible Mechanisms for Generation of Anomalously High PGA During the 2011 Tohoku Earthquake

    NASA Astrophysics Data System (ADS)

    Pavlenko, O. V.

    2017-08-01

    Mechanisms are suggested that could explain anomalously high PGAs (peak ground accelerations) exceeding 1 g recorded during the 2011 Tohoku earthquake ( M w = 9.0). In my previous research, I studied soil behavior during the Tohoku earthquake based on KiK-net vertical array records and revealed its `atypical' pattern: instead of being reduced in the near-source zones as usually observed during strong earthquakes, shear moduli in soil layers increased, indicating soil hardening, and reached their maxima at the moments of the highest intensity of strong motion, then reduced. We could explain this assuming that the soils experienced some additional compression. The observed changes in the shapes of acceleration time histories with distance from the source, such as a decrease of the duration and an increase of the intensity of strong motion, indicate phenomena similar to overlapping of seismic waves and a shock wave generation, which led to the compression of soils. The phenomena reach their maximum in the vicinity of stations FKSH10, TCGH16, and IBRH11, where the highest PGAs were recorded; at larger epicentral distances, PGAs sharply fall. Thus, the occurrence of anomalously high PGAs on the surface can result from the combination of the overlapping of seismic waves at the bottoms of soil layers and their increased amplification by the pre-compressed soils.

  16. Space Station Engineering and Technology Development: Proceedings of the Panel on In-Space Engineering Research and Technology Development

    NASA Technical Reports Server (NTRS)

    1985-01-01

    In 1984 the ad hoc committee on Space Station Engineering and Technology Development of the Aeronautics and Space Engineering Board (ASEB) conducted a review of the National Aeronautics and Space Administration's (NASA's) space station program planning. The review addressed the initial operating configuration (IOC) of the station. The ASEB has reconstituted the ad hoc committee which then established panels to address each specific related subject. The participants of the panels come from the committee, industry, and universities. The proceedings of the Panel on In Space Engineering Research and Technology Development are presented in this report. Activities, and plans for identifying and developing R&T programs to be conducted by the space station and related in space support needs including module requirements are addressed. Consideration is given to use of the station for R&T for other government agencies, universities, and industry.

  17. UPC++ Specification v1.0, Draft 4

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

    Bachan, J.; Baden, S.; Bonachea, Dan

    UPC++ is a C++11 library providing classes and functions that support Asynchronous Partitioned Global Address Space (APGAS) programming. We are revising the library under the auspices of the DOE’s Exascale Computing Project, to meet the needs of applications requiring PGAS support. UPC++ is intended for implementing elaborate distributed data structures where communication is irregular or fine-grained. The UPC++ interfaces for moving non-contiguous data and handling memories with different optimal access methods are composable and similar to those used in conventional C++. The UPC++ programmer can expect communication to run at close to hardware speeds. The key facilities in UPC++ aremore » global pointers, that enable the programmer to express ownership information for improving locality, one-sided communication, both put/get and RPC, futures and continuations. Futures capture data readiness state, which is useful in making scheduling decisions, and continuations provide for completion handling via callbacks. Together, these enable the programmer to chain together a DAG of operations to execute asynchronously as high-latency dependencies become satisfied.« less

  18. The perfect boring situation-Addressing the experience of monotony during crewed deep space missions through habitability design

    NASA Astrophysics Data System (ADS)

    Peldszus, Regina; Dalke, Hilary; Pretlove, Stephen; Welch, Chris

    2014-01-01

    In contemporary orbital missions, workloads are so high and varied that crew may rarely experience stretches of monotony. However, in historical long duration missions, occurrences of monotony were, indeed, reported anecdotally by crew. Of the effective countermeasures that appear to be at hand, many rely on visual or logistical proximity to the Earth, and are not feasible in the remote context of an extended deep space mission scenario. There, particularly in- and outbound cruising stages would be characterised by longer, comparably uneventful periods of low workload, coupled with confinement and unchanging vehicle surroundings. While the challenge of monotony has been pointed out as an exploration-related research area, it has received less explicit attention from a habitation design perspective than other human behaviour and performance issues. The paper addresses this gap through a literature review of the theory and application of design-based mitigation strategies. It outlines models of emergence of monotony, situates the phenomenon in a remote mission context as a problem of sensory, social and spatio-temporal isolation, and discusses proposed countermeasures related to habitability. The scope of the literature is extended to primary sources in the form of a qualitative review of six onboard diaries from orbital and simulator missions, highlighting a range of habitat-related design themes. These are translated into the autonomous deep space setting with the overall rationale of integrating affordances into onboard habitation systems and placing emphasis on reinforcing positive situational characteristics.

  19. Addressing Challenges to the Design & Test of Operational Lighting Environments for the International Space Station

    NASA Technical Reports Server (NTRS)

    Clark, Toni A.

    2014-01-01

    In our day to day lives, the availability of light, with which to see our environment, is often taken for granted. The designers of land based lighting systems use sunlight and artificial light as their toolset. The availability of power, quantity of light sources, and variety of design options are often unlimited. The accessibility of most land based lighting systems makes it easy for the architect and engineer to verify and validate their design ideas. Failures with an implementation, while sometimes costly, can easily be addressed by renovation. Consider now, an architectural facility orbiting in space, 260 miles above the surface of the earth. This human rated architectural facility, the International Space Station (ISS) must maintain operations every day, including life support and appropriate human comforts without fail. The facility must also handle logistics of regular shipments of cargo, including new passengers. The ISS requires accommodations necessary for human control of machine systems. Additionally, the ISS is a research facility and supports investigations performed inside and outside its livable volume. Finally, the facility must support remote operations and observations by ground controllers. All of these architectural needs require a functional, safe, and even an aesthetic lighting environment. At Johnson Space Center, our Habitability and Human Factors team assists our diverse customers with their lighting environment challenges, via physical test and computer based analysis. Because of the complexity of ISS operational environment, our team has learned and developed processes that help ISS operate safely. Because of the dynamic exterior lighting environment, uses computational modeling to predict the lighting environment. The ISS' orbit exposes it to a sunrise every 90 minutes, causing work surfaces to quickly change from direct sunlight to earthshine to total darkness. Proper planning of vehicle approaches, robotics operations, and crewed

  20. Space construction system analysis. Part 2: Space construction experiments concepts

    NASA Technical Reports Server (NTRS)

    Boddy, J. A.; Wiley, L. F.; Gimlich, G. W.; Greenberg, H. S.; Hart, R. J.; Lefever, A. E.; Lillenas, A. N.; Totah, R. S.

    1980-01-01

    Technology areas in the orbital assembly of large space structures are addressed. The areas included structures, remotely operated assembly techniques, and control and stabilization. Various large space structure design concepts are reviewed and their construction procedures and requirements are identified.

  1. Integrated Communications, Navigation and Surveillance Technologies Keynote Address

    NASA Technical Reports Server (NTRS)

    Lebacqz, J. Victor

    2004-01-01

    Slides for the Keynote Address present graphics to enhance the discussion of NASA's vision, the National Space Exploration Initiative, current Mars exploration, and aeronautics exploration. The presentation also focuses on development of an Air Transportation System and transformation from present systems.

  2. Space Station Freedom Utilization Conference

    NASA Technical Reports Server (NTRS)

    1992-01-01

    The topics addressed in Space Station Freedom Utilization Conference are: (1) space station freedom overview and research capabilities; (2) space station freedom research plans and opportunities; (3) life sciences research on space station freedom; (4) technology research on space station freedom; (5) microgravity research and biotechnology on space station freedom; and (6) closing plenary.

  3. Methods for Intelligent Mapping of the IPV6 Address Space

    DTIC Science & Technology

    2015-03-01

    the " Internet of Things " ( IoT ). (2013, Jan. 7). Forbes. [Online]. Available: http://www.forbes.com/sites/quora/2013/01/07/ how-many- things -are...currently-connected-to-the- internet -of- things - iot / 57 [13] G. Huston, “IPv4 address report,” Mar 2015. [Online]. Available: http://www.potaroo.net/tools/ipv4...distribution is unlimited 12b. DISTRIBUTION CODE 13. ABSTRACT (maximum 200 words) Due to the rapid growth of the Internet , the available pool of unique

  4. ALI (Autonomous Lunar Investigator): Revolutionary Approach to Exploring the Moon with Addressable Reconfigurable Technology

    NASA Technical Reports Server (NTRS)

    Clark, P. E.; Curtis, S. A.; Rilee, M. L.; Floyd, S. R.

    2005-01-01

    Addressable Reconfigurable Technology (ART) based structures: Mission Concepts based on Addressable Reconfigurable Technology (ART), originally studied for future ANTS (Autonomous Nanotechnology Swarm) Space Architectures, are now being developed as rovers for nearer term use in lunar and planetary surface exploration. The architecture is based on the reconfigurable tetrahedron as a building block. Tetrahedra are combined to form space-filling networks, shaped for the required function. Basic structural components are highly modular, addressable arrays of robust nodes (tetrahedral apices) from which highly reconfigurable struts (tetrahedral edges), acting as supports or tethers, are efficiently reversibly deployed/stowed, transforming and reshaping the structures as required.

  5. Open space and imagination

    Treesearch

    G. Scott Place; Bruce Hronek

    2001-01-01

    Open space is a necessary tool in our park system for fostering creativity and allowing for relaxation. In addition, open space areas allow people to exercise, find self-worth, and to use their imagination. This manuscript addresses the issue of what is happening in open space provided in several park settings. Do residents use open space as a place where they can play...

  6. NASA Acting Administrator Robert Lightfoot addresses members of the National Space Club at a breakfast meeting in the Jackson Conference Center in Huntsville, Alabama.

    NASA Image and Video Library

    2018-03-22

    NASA Acting Administrator Robert Lightfoot addresses a standing room-only crowd at the March 20 National Space Club Huntsville breakfast. Lightfoot, who recently announced he will be retiring from the agency on April 30, praised NASA's Marshall Space Flight Center and spoke about where the agency is headed over the next two decades. “I get to be nostalgic now, as I leave the Agency. This work was going on before I got here, and it’s going to keep going on after I leave,” said Lightfoot. “In this nation where we hear a lot about what we can't do, NASA is a demonstration of what this nation can do. The Space Launch System rocket is taking shape right here at Marshall. The passion our team has on our exploration journey is second to none and there seems to be a sense of urgency to get to that first launch. Exploration gives us hope for the future, and brings today's generation on board to forge its own path to the next great milestones for humanity.” National Space Club Huntsville's mission is to promote the awareness of civilian and military applications for rocketry and astronautics. Participation in its events helps raise money for scholarships and STEM engagement in the community.

  7. State of STEM (SoSTEM) Address

    NASA Image and Video Library

    2014-01-29

    NASA associate administrator for education and former astronaut Leland Melvin, left, watches as astronauts, Rick Mastracchio, screen left, and Michael Hopkins, deliver a message from the International Space Station (ISS) to attendees of the annual White House State of Science, Technology, Engineering, and Math (SoSTEM) address, Wednesday, Jan. 29, 2014, in the South Court Auditorium in the Eisenhower Executive Office Building on the White House complex in Washington. Photo Credit: (NASA/Bill Ingalls)

  8. Models Required to Mitigate Impacts of Space Weather on Space Systems

    NASA Technical Reports Server (NTRS)

    Barth, Janet L.

    2003-01-01

    This viewgraph presentation attempts to develop a model of factors which need to be considered in the design and construction of spacecraft to lessen the effects of space weather on these vehicles. Topics considered include: space environments and effects, radiation environments and effects, space weather drivers, space weather models, climate models, solar proton activity and mission design for the GOES mission. The authors conclude that space environment models need to address issues from mission planning through operations and a program to develop and validate authoritative space environment models for application to spacecraft design does not exist at this time.

  9. Hierarchical auto-configuration addressing in mobile ad hoc networks (HAAM)

    NASA Astrophysics Data System (ADS)

    Ram Srikumar, P.; Sumathy, S.

    2017-11-01

    Addressing plays a vital role in networking to identify devices uniquely. A device must be assigned with a unique address in order to participate in the data communication in any network. Different protocols defining different types of addressing are proposed in literature. Address auto-configuration is a key requirement for self organizing networks. Existing auto-configuration based addressing protocols require broadcasting probes to all the nodes in the network before assigning a proper address to a new node. This needs further broadcasts to reflect the status of the acquired address in the network. Such methods incur high communication overheads due to repetitive flooding. To address this overhead, a new partially stateful address allocation scheme, namely Hierarchical Auto-configuration Addressing (HAAM) scheme is extended and proposed. Hierarchical addressing basically reduces latency and overhead caused during address configuration. Partially stateful addressing algorithm assigns addresses without the need for flooding and global state awareness, which in turn reduces the communication overhead and space complexity respectively. Nodes are assigned addresses hierarchically to maintain the graph of the network as a spanning tree which helps in effectively avoiding the broadcast storm problem. Proposed algorithm for HAAM handles network splits and merges efficiently in large scale mobile ad hoc networks incurring low communication overheads.

  10. CCMC: Serving research and space weather communities with unique space weather services, innovative tools and resources

    NASA Astrophysics Data System (ADS)

    Zheng, Yihua; Kuznetsova, Maria M.; Pulkkinen, Antti; Maddox, Marlo

    2015-04-01

    With the addition of Space Weather Research Center (a sub-team within CCMC) in 2010 to address NASA’s own space weather needs, CCMC has become a unique entity that not only facilitates research through providing access to the state-of-the-art space science and space weather models, but also plays a critical role in providing unique space weather services to NASA robotic missions, developing innovative tools and transitioning research to operations via user feedback. With scientists, forecasters and software developers working together within one team, through close and direct connection with space weather customers and trusted relationship with model developers, CCMC is flexible, nimble and effective to meet customer needs. In this presentation, we highlight a few unique aspects of CCMC/SWRC’s space weather services, such as addressing space weather throughout the solar system, pushing the frontier of space weather forecasting via the ensemble approach, providing direct personnel and tool support for spacecraft anomaly resolution, prompting development of multi-purpose tools and knowledge bases, and educating and engaging the next generation of space weather scientists.

  11. IPv6 Addressing Proxy: Mapping Native Addressing from Legacy Technologies and Devices to the Internet of Things (IPv6)

    PubMed Central

    Jara, Antonio J.; Moreno-Sanchez, Pedro; Skarmeta, Antonio F.; Varakliotis, Socrates; Kirstein, Peter

    2013-01-01

    Sensors utilize a large number of heterogeneous technologies for a varied set of application environments. The sheer number of devices involved requires that this Internet be the Future Internet, with a core network based on IPv6 and a higher scalability in order to be able to address all the devices, sensors and things located around us. This capability to connect through IPv6 devices, sensors and things is what is defining the so-called Internet of Things (IoT). IPv6 provides addressing space to reach this ubiquitous set of sensors, but legacy technologies, such as X10, European Installation Bus (EIB), Controller Area Network (CAN) and radio frequency ID (RFID) from the industrial, home automation and logistic application areas, do not support the IPv6 protocol. For that reason, a technique must be devised to map the sensor and identification technologies to IPv6, thus allowing homogeneous access via IPv6 features in the context of the IoT. This paper proposes a mapping between the native addressing of each technology and an IPv6 address following a set of rules that are discussed and proposed in this work. Specifically, the paper presents a technology-dependent IPv6 addressing proxy, which maps each device to the different subnetworks built under the IPv6 prefix addresses provided by the internet service provider for each home, building or user. The IPv6 addressing proxy offers a common addressing environment based on IPv6 for all the devices, regardless of the device technology. Thereby, this offers a scalable and homogeneous solution to interact with devices that do not support IPv6 addressing. The IPv6 addressing proxy has been implemented in a multi-protocol card and evaluated successfully its performance, scalability and interoperability through a protocol built over IPv6. PMID:23686145

  12. IPv6 addressing proxy: mapping native addressing from legacy technologies and devices to the Internet of Things (IPv6).

    PubMed

    Jara, Antonio J; Moreno-Sanchez, Pedro; Skarmeta, Antonio F; Varakliotis, Socrates; Kirstein, Peter

    2013-05-17

    Sensors utilize a large number of heterogeneous technologies for a varied set of application environments. The sheer number of devices involved requires that this Internet be the Future Internet, with a core network based on IPv6 and a higher scalability in order to be able to address all the devices, sensors and things located around us. This capability to connect through IPv6 devices, sensors and things is what is defining the so-called Internet of Things (IoT). IPv6 provides addressing space to reach this ubiquitous set of sensors, but legacy technologies, such as X10, European Installation Bus (EIB), Controller Area Network (CAN) and radio frequency ID (RFID) from the industrial, home automation and logistic application areas, do not support the IPv6 protocol. For that reason, a technique must be devised to map the sensor and identification technologies to IPv6, thus allowing homogeneous access via IPv6 features in the context of the IoT. This paper proposes a mapping between the native addressing of each technology and an IPv6 address following a set of rules that are discussed and proposed in this work. Specifically, the paper presents a technology-dependent IPv6 addressing proxy, which maps each device to the different subnetworks built under the IPv6 prefix addresses provided by the internet service provider for each home, building or user. The IPv6 addressing proxy offers a common addressing environment based on IPv6 for all the devices, regardless of the device technology. Thereby, this offers a scalable and homogeneous solution to interact with devices that do not support IPv6 addressing. The IPv6 addressing proxy has been implemented in a multi-protocol Sensors 2013, 13 6688 card and evaluated successfully its performance, scalability and interoperability through a protocol built over IPv6.

  13. Von Braun's Dream: Space Camp.

    ERIC Educational Resources Information Center

    Coleman, C. C.

    1982-01-01

    Describes the "Space Camp" program for boys and girls at the Alabama Space and Rocket Center (Huntsville, Alabama), including typical activities. Includes address for obtaining information on participation in the program. (JN)

  14. National directory of space grant contacts

    NASA Technical Reports Server (NTRS)

    1995-01-01

    In this directory of space grant contacts of the NASA Space Grant College and Fellowship Program a listing of participating universities and other institutions are shown from all 50 states and from the District of Columbia and Puerto Rico. These 52 Space Grant State consortia currently consist of 395 institutions of higher learning, 66 industry affiliates, 26 state/local government offices, 40 nonprofit organizations, and 25 other educational entities. This directory is organized alphabetically by state and the contacts, addresses, phone numbers, and internet email addresses (where available) are included.

  15. Slowly progressive insulin-dependent diabetes mellitus associated with pernicious anemia.

    PubMed

    Kinoshita, Jun; Hata, Shoichi; Yamazaki, Hiroyuki; Tajima, Naoko

    2010-01-01

    A 59-year-old man was found to have diabetes mellitus five months after the diagnosis of pernicious anemia. Although the urinary C-peptide level corresponded to a non-insulin-dependent stage (39.9 microg/day), the markedly extremely elevated titers of GAD antibody suggested that this case very likely represented a non-insulin-dependent stage of slowly progressive insulin-dependent diabetes mellitus (SPIDDM). Because thyroid and adrenal functions were normal, this our case was not considered to be polyglandular autoimmune syndrome (PGAS). We report this case because patients with pernicious anemia and SPIDDM in the absence of PGAS are rare in Japan.

  16. Analysis of Network Address Shuffling as a Moving Target Defense

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

    Carroll, Thomas E.; Crouse, Michael B.; Fulp, Errin W.

    2014-06-10

    Address shuffling is a type of moving target defense that prevents an attacker from reliably contacting a system by periodically remapping network addresses. Although limited testing has demonstrated it to be effective, little research has been conducted to examine the theoretical limits of address shuffling. As a result, it is difficult to understand how effective shuffling is and under what circumstances it is a viable moving target defense. This paper introduces probabilistic models that can provide insight into the performance of address shuffling. These models quantify the probability of attacker success in terms of network size, quantity of addresses scanned,more » quantity of vulnerable systems, and the frequency of shuffling. Theoretical analysis will show that shuffling is an acceptable defense if there is a small population of vulnerable systems within a large network address space, however shuffling has a cost for legitimate users. These results will also be shown empirically using simulation and actual traffic traces.« less

  17. Our Future in the Cosmos: Space

    NASA Technical Reports Server (NTRS)

    Asimov, I.

    1985-01-01

    The possibility and consequences of the extension of human society into space are addressed. The establishment of space colonies, orbital power plants and factories, and space exploration are discussed. The necessity of world cooperation to realize such projects and the development of a global space-centered society are considered.

  18. Adapting PC104Plus for Space

    NASA Technical Reports Server (NTRS)

    Abbott, Larry; Cox, Gary; Nguyen, Hai

    2000-01-01

    This article addresses the issues associated with adapting the commercial PC104Plus standard and its associated architecture to the requirements of space applications. In general, space applications exhibit extreme constraints on power, weight, and volume. EMI and EMC are also issues of significant concern. Additionally, space applications have to survive high radiation environment. Finally, NASA is always concerned about achieving cost effective solutions that are compatible with safety and launch constraints. Weight and volume constraints are directly related to high launch cost. Power on the other hand is not only related to the high launch costs, but are related to the problem of dissipating the resulting heat once in space. The article addresses why PC104Plus is an appropriate solution for the weight and volume issues. The article also addresses what NASA did electrically to reduce power consumption and mechanically dissipate the associated heat in a microgravity and vacuum environment, and how these solutions allow NASA to integrate various sizes of ruggedized custom PC104 boards with COTS, PC104 complaint boards for space applications. In addition to the mechanical changes to deal with thermal dissipation NASA also made changes to minimize EMI. Finally, radiation issues are addressed as well as the architectural and testing solutions and the implications for use of COTS PC104Plus boards.

  19. Trends in space activities in 2014: The significance of the space activities of governments

    NASA Astrophysics Data System (ADS)

    Paikowsky, Deganit; Baram, Gil; Ben-Israel, Isaac

    2016-01-01

    This article addresses the principal events of 2014 in the field of space activities, and extrapolates from them the primary trends that can be identified in governmental space activities. In 2014, global space activities centered on two vectors. The first was geopolitical, and the second relates to the matrix between increasing commercial space activities and traditional governmental space activities. In light of these two vectors, the article outlines and analyzes trends of space exploration, human spaceflights, industry and technology, cooperation versus self-reliance, and space security and sustainability. It also reviews the space activities of the leading space-faring nations.

  20. Space tourism risks: A space insurance perspective

    NASA Astrophysics Data System (ADS)

    Bensoussan, Denis

    2010-06-01

    Space transportation is inherently risky to humans, whether they are trained astronauts or paying tourists, given that spaceflight is still in its relative infancy. However, this is easy to forget when subjected to the hype often associated with space tourism and the ventures seeking to enter that market. The development of commercial spaceflight constitutes a challenge as much as a great opportunity to the insurance industry as new risks emerge and standards, policies and procedures to minimise/mitigate and cover them still to be engineered. Therefore the creation of a viable and affordable insurance regime for future space tourists is a critical step in the development of a real space tourism market to address burning risk management issues that may otherwise ultimately hamper this nascent industry before it has a chance to prove itself.

  1. Space transportation alternatives for large space programs - The International Space University summer session - 1992

    NASA Technical Reports Server (NTRS)

    Palaszewski, Bryan

    1993-01-01

    The issues discussed in this paper are the result of a 10-week study by the Space Solar Power Program design project members and the Space Transportation Group at the International Space University (ISU) summer session of 1992 to investigate new paradigms in space propulsion and how those paradigms might reduce the costs for large space programs. The program plan was to place a series of power satellites in Earth orbit. Several designs were studied where many kW, MW or GW of power would be transmitted to Earth or to other spacecraft in orbit. During the summer session, a space solar power system was also detailed and analyzed. At ISU, the focus of the study was to foster and develop some of the new paradigms that may eliminate the barriers to low cost for space exploration and exploitation. Many international and technical aspects of a large multinational program were studied. Environmental safety, space construction and maintenance, legal and policy issues of frequency allocation, technology transfer and control and many other areas were addressed.

  2. Intuitive Space Weather Displays to Improve Space Situational Awareness (SSA)

    DTIC Science & Technology

    2011-09-01

    parsimonious offering. After engaging several mathematicians and space physicists to devise valid computational formulas for aggregating the four hazard... PROJECT NUMBER 5e. TASK NUMBER 5f. WORK UNIT NUMBER 7. PERFORMING ORGANIZATION NAME(S) AND ADDRESS(ES) Aptima, Inc.,12 Gill Street Ste 200,Woburn,MA... physicists , the operational users find little use in receiving particle fluxes or magnetometer readings collected by the scientific community. Fortunately

  3. Language, Gesture, and Space.

    ERIC Educational Resources Information Center

    Emmorey, Karen, Ed.; Reilly, Judy S., Ed.

    A collection of papers addresses a variety of issues regarding the nature and structure of sign language, gesture, and gesture systems. Articles include: "Theoretical Issues Relating Language, Gesture, and Space: An Overview" (Karen Emmorey, Judy S. Reilly); "Real, Surrogate, and Token Space: Grammatical Consequences in ASL American…

  4. Law in Outer Space.

    ERIC Educational Resources Information Center

    Schmidt, William G.

    1997-01-01

    Provides an overview of the current practice and fascinating future of legal issues involved in outer space exploration and colonization. Current space law, by necessity, addresses broad principles rather than specific incidents. Nonetheless, it covers a variety of issues including commercial development, rescue agreements, object registration,…

  5. Space data routers: Space networking for enhancing data exploitation for space weather applications

    NASA Astrophysics Data System (ADS)

    Daglis, I.; Anastasiadis, A.; Balasis, G.; Paronis, D.; Diamantopoulos, S.

    2013-09-01

    Data sharing and access are major issues in space sciences, as they influence the degree of data exploitation. The project “Space-Data Routers” relies on space internetworking and in particular on Delay Tolerant Networking (DTN), which marks the new era in space communications, unifies space and earth communication infrastructures and delivers a set of tools and protocols for space-data exploitation. The main goal is to allow space agencies, academic institutes and research centers to share space-data generated by single or multiple missions, in an efficient, secure and automated manner. Here we are presenting the architecture and basic functionality of a DTN-based application specifically designed in the framework of the SDR project, for data query, retrieval and administration that will enable to address outstanding science questions related to space weather, by providing simultaneous real- time sampling of space plasmas from multiple points with cost-effective means and measuring of phenomena with higher resolution and better coverage. This work has received funding from the European Community's Seventh Framework Programme (FP7-SPACE-2010-1, SP1 Cooperation, Collaborative project) under grant agreement No 263330 (project title: Space-Data Routers for Exploiting Space Data). This presentation reflects only the authors’ views and the Union is not liable for any use that may be made of the information contained therein.

  6. Highlights of Space Weather Services/Capabilities at NASA/GSFC Space Weather Center

    NASA Technical Reports Server (NTRS)

    Fok, Mei-Ching; Zheng, Yihua; Hesse, Michael; Kuznetsova, Maria; Pulkkinen, Antti; Taktakishvili, Aleksandre; Mays, Leila; Chulaki, Anna; Lee, Hyesook

    2012-01-01

    The importance of space weather has been recognized world-wide. Our society depends increasingly on technological infrastructure, including the power grid as well as satellites used for communication and navigation. Such technologies, however, are vulnerable to space weather effects caused by the Sun's variability. NASA GSFC's Space Weather Center (SWC) (http://science.gsfc.nasa.gov//674/swx services/swx services.html) has developed space weather products/capabilities/services that not only respond to NASA's needs but also address broader interests by leveraging the latest scientific research results and state-of-the-art models hosted at the Community Coordinated Modeling Center (CCMC: http://ccmc.gsfc.nasa.gov). By combining forefront space weather science and models, employing an innovative and configurable dissemination system (iSWA.gsfc.nasa.gov), taking advantage of scientific expertise both in-house and from the broader community as well as fostering and actively participating in multilateral collaborations both nationally and internationally, NASA/GSFC space weather Center, as a sibling organization to CCMC, is poised to address NASA's space weather needs (and needs of various partners) and to help enhancing space weather forecasting capabilities collaboratively. With a large number of state-of-the-art physics-based models running in real-time covering the whole space weather domain, it offers predictive capabilities and a comprehensive view of space weather events throughout the solar system. In this paper, we will provide some highlights of our service products/capabilities. In particular, we will take the 23 January and the 27 January space weather events as examples to illustrate how we can use the iSWA system to track them in the interplanetary space and forecast their impacts.

  7. [VDT worker's posture and workload in free-address office system].

    PubMed

    Iwakiri, Kazuyuki; Mori, Ippei; Sotoyama, Midori; Nose, Kaori; Ochiai, Takanori; Jonai, Hiroshi; Saito, Susumu

    2006-01-01

    A free-address system is a new office layout in which a worker can freely sit in their favorite place with a computer and materials. Since this layout has recently been introduced in offices, we conducted a questionnaire survey which aimed to clarify the effects of the free-address system on visual display terminals (VDT) workers' posture and workload. A total of 203 male VDT workers who were system engineers aged 20 to 59 using a notebook computer were evaluated, of whom 150 used the free-address layout, and 53 used the fixed-address layout. The free-address layout was effective in the improvement of individual work space compared with the fixed-address layout. Also, in this layout the worker did not feel dissatisfaction with communication or support between workers. However, workers using the free-address layout assumed an unsuitable work posture, without adjusting the height of their chairs. Furthermore, this layout might have risk factors which increase neck/shoulder and low back stiffness and/or pain. Therefore, the free-address layout may have incipient problems, and it will be necessary to examine further the effects of this layout on VDT worker's health.

  8. Space development and space science together, an historic opportunity

    NASA Astrophysics Data System (ADS)

    Metzger, P. T.

    2016-11-01

    The national space programs have an historic opportunity to help solve the global-scale economic and environmental problems of Earth while becoming more effective at science through the use of space resources. Space programs will be more cost-effective when they work to establish a supply chain in space, mining and manufacturing then replicating the assets of the supply chain so it grows to larger capacity. This has become achievable because of advances in robotics and artificial intelligence. It is roughly estimated that developing a lunar outpost that relies upon and also develops the supply chain will cost about 1/3 or less of the existing annual budgets of the national space programs. It will require a sustained commitment of several decades to complete, during which time science and exploration become increasingly effective. At the end, this space industry will capable of addressing global-scale challenges including limited resources, clean energy, economic development, and preservation of the environment. Other potential solutions, including nuclear fusion and terrestrial renewable energy sources, do not address the root problem of our limited globe and there are real questions whether they will be inadequate or too late. While industry in space likewise cannot provide perfect assurance, it is uniquely able to solve the root problem, and it gives us an important chance that we should grasp. What makes this such an historic opportunity is that the space-based solution is obtainable as a side-benefit of doing space science and exploration within their existing budgets. Thinking pragmatically, it may take some time for policymakers to agree that setting up a complete supply chain is an achievable goal, so this paper describes a strategy of incremental progress. The most crucial part of this strategy is establishing a water economy by mining on the Moon and asteroids to manufacture rocket propellant. Technologies that support a water economy will play an

  9. The 1991 Marshall Space Flight Center research and technology

    NASA Technical Reports Server (NTRS)

    1991-01-01

    A compilation of 194 articles addressing research and technology activities at the Marshall Space Flight Center (MSFC) is given. Activities are divided into three major areas: advanced studies addressing transportation systems, space systems, and space science activities conducted primarily in the Program Development Directorate; research tasks carried out in the Space Science Laboratory; and technology programs hosted by a wide array of organizations at the Center. The theme for this year's report is 'Building for the Future'.

  10. Aging and space travel

    NASA Technical Reports Server (NTRS)

    Mohler, S. R.

    1982-01-01

    The matter of aging and its relation to space vehicle crewmembers undertaking prolonged space missions is addressed. The capabilities of the older space traveler to recover from bone demineralization and muscle atrophy are discussed. Certain advantages of the older person are noted, for example, a greater tolerance of monotony and repetitious activities. Additional parameters are delineated including the cardiovascular system, the reproductive system, ionizing radiation, performance, and group dynamics.

  11. Space Shuttle news reference

    NASA Technical Reports Server (NTRS)

    1981-01-01

    A detailed description of the space shuttle vehicle and associated subsystems is given. Space transportation system propulsion, power generation, environmental control and life support system and avionics are among the topics. Also, orbiter crew accommodations and equipment, mission operations and support, and flight crew complement and crew training are addressed.

  12. STS-87 Mission Specialist Doi addresses the media at the SLF

    NASA Technical Reports Server (NTRS)

    1997-01-01

    As STS-87 Commander Kevin Kregel looks on, Mission Specialist Takao Doi, Ph.D., of the National Space Development Agency of Japan addresses members of the press and media at Kennedy Space Center's Shuttle Landing Facility after arriving for the final prelaunch activities leading up to the scheduled Nov. 19 liftoff. Other STS-87 crew members not pictured are Pilot Steven Lindsey; Mission Specialists Kalpana Chawla, Ph.D., and Winston Scott; and Payload Specialist Leonid Kadenyuk of the National Space Agency of Ukraine. STS-87 will be the fourth flight of the United States Microgravity Payload and the Spartan-201 deployable satellite.

  13. STEREO Space Weather and the Space Weather Beacon

    NASA Technical Reports Server (NTRS)

    Biesecker, D. A.; Webb, D F.; SaintCyr, O. C.

    2007-01-01

    The Solar Terrestrial Relations Observatory (STEREO) is first and foremost a solar and interplanetary research mission, with one of the natural applications being in the area of space weather. The obvious potential for space weather applications is so great that NOAA has worked to incorporate the real-time data into their forecast center as much as possible. A subset of the STEREO data will be continuously downlinked in a real-time broadcast mode, called the Space Weather Beacon. Within the research community there has been considerable interest in conducting space weather related research with STEREO. Some of this research is geared towards making an immediate impact while other work is still very much in the research domain. There are many areas where STEREO might contribute and we cannot predict where all the successes will come. Here we discuss how STEREO will contribute to space weather and many of the specific research projects proposed to address STEREO space weather issues. We also discuss some specific uses of the STEREO data in the NOAA Space Environment Center.

  14. Space Gerontology

    NASA Technical Reports Server (NTRS)

    Miquel, J. (Editor); Economos, A. C. (Editor)

    1982-01-01

    Presentations are given which address the effects of space flght on the older person, the parallels between the physiological responses to weightlessness and the aging process, and experimental possibilities afforded by the weightless environment to fundamental research in gerontology and geriatrics.

  15. The space shuttle at work

    NASA Technical Reports Server (NTRS)

    Allaway, H.

    1979-01-01

    The concept of the orbital flight of the space shuttle and the development of the space transportation system are addressed. How the system came to be, why it is designed the way it is, what is expected of it, and how it may grow are among the questions considered. Emphasis is placed on the effect of the space transportation system on U.S. space exploration in the next decade, including plans to make space an extension of life on the Earth's surface.

  16. Food Production for Space Exploration

    NASA Technical Reports Server (NTRS)

    Massa, Gioia

    2017-01-01

    The desire for exploration is deeply ingrained in the human psyche. However, as we push the frontiers of discovery, the challenges we face become equally daunting. The overall goal of this section is to address one of the most critical concerns, How do we reliably feed those humans we send into space? Currently, all supplies consumed by space missions must be sent via exorbitantly expensive rockets that necessarily prevent us from venturing too far from Earth. Astro-agriculture aims to address this problem in several ways. This talk will describe future food production systems for space and focus on the Veggie system on ISS as a way to answer the many questions that remain to enable exploration to Mars and beyond.

  17. Space Station Freedom operations planning

    NASA Technical Reports Server (NTRS)

    Smith, Kevin J.

    1988-01-01

    This paper addresses the development of new planning methodologies which will evolve to serve the Space Station Freedom program; these planning processes will focus on the complex task of effectively managing the resources provided by the Space Station Freedom and will be made available to the diverse international community of space station users in support of their ongoing investigative activities.

  18. Gravitational Biology Facility on Space Station: Meeting the needs of space biology

    NASA Technical Reports Server (NTRS)

    Allen, Katherine; Wade, Charles

    1992-01-01

    The Gravitational Biology Facility (GBF) is a set of generic laboratory equipment needed to conduct research on Space Station Freedom (SSF), focusing on Space Biology Program science (Cell and Developmental Biology and Plant Biology). The GBF will be functional from the earliest utilization flights through the permanent manned phase. Gravitational biology research will also make use of other Life Sciences equipment on the space station as well as existing equipment developed for the space shuttle. The facility equipment will be developed based on requirements derived from experiments proposed by the scientific community to address critical questions in the Space Biology Program. This requires that the facility have the ability to house a wide variety of species, various methods of observation, and numerous methods of sample collection, preservation, and storage. The selection of the equipment will be done by the members of a scientific working group (5 members representing cell biology, 6 developmental biology, and 6 plant biology) who also provide requirements to design engineers to ensure that the equipment will meet scientific needs. All equipment will undergo extensive ground based experimental validation studies by various investigators addressing a variety of experimental questions. Equipment will be designed to be adaptable to other space platforms. The theme of the Gravitational Biology Facility effort is to provide optimal and reliable equipment to answer the critical questions in Space Biology as to the effects of gravity on living systems.

  19. 14 CFR 331.25 - To what address must operators or providers send their applications?

    Code of Federal Regulations, 2010 CFR

    2010-01-01

    ... 14 Aeronautics and Space 4 2010-01-01 2010-01-01 false To what address must operators or providers send their applications? 331.25 Section 331.25 Aeronautics and Space OFFICE OF THE SECRETARY... Transportation, Office of Aviation Analysis (X-50)Aviation Relief Desk, 1200 New Jersey Avenue, SE., Washington...

  20. SSME - Materials and Methods for Addressing High-Pressure Hydrogen Embrittlement

    NASA Technical Reports Server (NTRS)

    Matejczk, Daniel; Russell, Dale; Frandsen, Jon; Swanson, Greg

    2010-01-01

    From the humid, corrosion-friendly atmosphere of KSC, to the extreme heat of ascent, to the cold vacuum of space, the Space Shuttle faced one hostile environment after another. One of those harsh environments the hydrogen environment existed within the shuttle itself. Liquid hydrogen was the fuel that powered the shuttle s complex, powerful, and reusable main engine. Hydrogen provided the high specific impulse the bang per pound of fuel needed to perform the shuttle s heavy lifting duties. Hydrogen, however, was also a potential threat to the very metal of the propulsion system that used it. The diffusion of hydrogen atoms into a metal can make it more brittle and prone to cracking a process called hydrogen embrittlement. This effect can reduce the toughness of carefully selected and prepared materials. A concern that exposure to hydrogen might encourage crack growth was present from the beginning of the Space Shuttle Program, but the rationale for using hydrogen was compelling. This paper outlines the material characterization, anomaly resolution, and path to understanding of hydrogen embrittlement on superalloys through the course of the SSME program. Specific examples of nickel alloy turbine housings and single crystal turbine blades are addressed. The evolution of fracture mechanics analytical methods is also addressed.

  1. 14 CFR 135.150 - Public address and crewmember interphone systems.

    Code of Federal Regulations, 2014 CFR

    2014-01-01

    ... to alert flight crewmembers; (iii) For the alerting system required by paragraph (b)(7)(ii) of this... systems. 135.150 Section 135.150 Aeronautics and Space FEDERAL AVIATION ADMINISTRATION, DEPARTMENT OF... Aircraft and Equipment § 135.150 Public address and crewmember interphone systems. No person may operate an...

  2. 14 CFR 135.150 - Public address and crewmember interphone systems.

    Code of Federal Regulations, 2013 CFR

    2013-01-01

    ... to alert flight crewmembers; (iii) For the alerting system required by paragraph (b)(7)(ii) of this... systems. 135.150 Section 135.150 Aeronautics and Space FEDERAL AVIATION ADMINISTRATION, DEPARTMENT OF... Aircraft and Equipment § 135.150 Public address and crewmember interphone systems. No person may operate an...

  3. 14 CFR 135.150 - Public address and crewmember interphone systems.

    Code of Federal Regulations, 2012 CFR

    2012-01-01

    ... to alert flight crewmembers; (iii) For the alerting system required by paragraph (b)(7)(ii) of this... systems. 135.150 Section 135.150 Aeronautics and Space FEDERAL AVIATION ADMINISTRATION, DEPARTMENT OF... Aircraft and Equipment § 135.150 Public address and crewmember interphone systems. No person may operate an...

  4. 14 CFR 135.150 - Public address and crewmember interphone systems.

    Code of Federal Regulations, 2010 CFR

    2010-01-01

    ... to alert flight crewmembers; (iii) For the alerting system required by paragraph (b)(7)(ii) of this... systems. 135.150 Section 135.150 Aeronautics and Space FEDERAL AVIATION ADMINISTRATION, DEPARTMENT OF... Aircraft and Equipment § 135.150 Public address and crewmember interphone systems. No person may operate an...

  5. 14 CFR 135.150 - Public address and crewmember interphone systems.

    Code of Federal Regulations, 2011 CFR

    2011-01-01

    ... to alert flight crewmembers; (iii) For the alerting system required by paragraph (b)(7)(ii) of this... systems. 135.150 Section 135.150 Aeronautics and Space FEDERAL AVIATION ADMINISTRATION, DEPARTMENT OF... Aircraft and Equipment § 135.150 Public address and crewmember interphone systems. No person may operate an...

  6. Behavioral Health and Performance Operations at the NASA Johnson Space Center: A Comprehensive Program that Addresses Flight and Spaceflight Duty Adaptability

    NASA Technical Reports Server (NTRS)

    Beven, G. E.

    2017-01-01

    NASA astronauts on active status require medical certification for aircraft flying duties as well as readiness for long duration spaceflight training, launch to the International Space Station (ISS), and mission continuation during spaceflight operations. Behavioral fitness and adaptability is an inherent component of medical certification at NASA and requires a unique approach that spans the professional life-span of all active astronauts. TOPIC: This presentation will address the Behavioral Health and Performance (BHP) operations program at the Johnson Space Center. Components of BHP operations include astronaut selection, as well as annual, elective, preflight, inflight, and postflight BHP assessments. Each aspect of the BHP operations program will be discussed, with a focus on behavioral fitness determination and resultant outcomes. Specifically, astronaut selection generates a rating of suitability for long duration spaceflight as well as psychiatric qualification; annual, preflight and postflight BHP assessments provoke a decision regarding the presence of any aeromedical concerns; and inflight assessment requires a conclusion pertaining to mission impact. The combination of these elements provide for a unique, comprehensive approach to flight and spaceflight adaptability. APPLICATIONS: Attendees will understand the differing facets of NASA's comprehensive BHP operations program that occurs over the course of an astronaut's career and be able to compare and contrast this to the Adaptability Rating for Military Aviation (ARMA) and proposed models presented by others on this panel.

  7. Large space systems technology, 1981. [conferences

    NASA Technical Reports Server (NTRS)

    Boyer, W. J. (Compiler)

    1982-01-01

    A total systems approach including structures, analyses, controls, and antennas is presented as a cohesive, programmatic plan for large space systems. Specifically, program status, structures, materials, and analyses, and control of large space systems are addressed.

  8. [Assessment of the Space Station Program

    NASA Technical Reports Server (NTRS)

    Kerrebrock, Jack L.

    1994-01-01

    This letter report by the National Research Council's (NRC's) Aeronautics and Space Engineering Board addresses comments on NASA's response to the Board's 1993 letter report, NASA's response to technical and management recommendations from previous NRC technical reports on the Space Station, and an assessment of the current International Space Station Alpha (ISSA) program.

  9. Identifying the mathematics middle year students use as they address a community issue

    NASA Astrophysics Data System (ADS)

    Marshman, Margaret

    2017-03-01

    Middle year students often do not see the mathematics in the real world whereas the Australian Curriculum: Mathematics aims for students to be "confident and creative users and communicators of mathematics" (Australian Curriculum Assessment and Reporting Authority [ACARA] 2012). Using authentic and real mathematics tasks can address this situation. This paper is an account of how, working within a Knowledge Producing Schools' framework, a group of middle year students addressed a real community issue, the problem of the lack of a teenage safe space using mathematics and technology. Data were collected for this case study via journal observations and reflections, semi-structured interviews, samples of the students' work and videos of students working. The data were analysed by identifying the mathematics the students used determining the function and location of the space and focused on problem negotiation, formulation and solving through the statistical investigation cycle. The paper will identify the mathematics and statistics these students used as they addressed a real problem in their local community.

  10. Work stealing for GPU-accelerated parallel programs in a global address space framework: WORK STEALING ON GPU-ACCELERATED SYSTEMS

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

    Arafat, Humayun; Dinan, James; Krishnamoorthy, Sriram

    Task parallelism is an attractive approach to automatically load balance the computation in a parallel system and adapt to dynamism exhibited by parallel systems. Exploiting task parallelism through work stealing has been extensively studied in shared and distributed-memory contexts. In this paper, we study the design of a system that uses work stealing for dynamic load balancing of task-parallel programs executed on hybrid distributed-memory CPU-graphics processing unit (GPU) systems in a global-address space framework. We take into account the unique nature of the accelerator model employed by GPUs, the significant performance difference between GPU and CPU execution as a functionmore » of problem size, and the distinct CPU and GPU memory domains. We consider various alternatives in designing a distributed work stealing algorithm for CPU-GPU systems, while taking into account the impact of task distribution and data movement overheads. These strategies are evaluated using microbenchmarks that capture various execution configurations as well as the state-of-the-art CCSD(T) application module from the computational chemistry domain.« less

  11. 75 FR 4875 - NASA Commercial Space Committee; Meeting

    Federal Register 2010, 2011, 2012, 2013, 2014

    2010-01-29

    ... NATIONAL AERONAUTICS AND SPACE ADMINISTRATION [Notice: (10-014)] NASA Commercial Space Committee... and Space Administration announces a meeting of the Commercial Space Committee to the NASA Advisory Council. DATES: Tuesday, February 16, 2010, 10 a.m.-5 p.m., Eastern. ADDRESSES: NASA Headquarters, 300 E...

  12. The history of space exploration

    NASA Technical Reports Server (NTRS)

    Collins, Martin J.; Kraemer, Sylvia K.

    1994-01-01

    Presented are the acknowledgements and introduction sections of the book 'Space: Discovery and Exploration.' The goal of the book is to address some basic questions of American space history, including how this history compares with previous eras of exploration, why the space program was initiated when it was, and how the U.S. space program developed. In pursuing these questions, the intention is not to provide exhaustive answers, but to point the reader toward a more varied picture of how our venture in space has intersected with American government, politics, business, and science.

  13. Space transportation alternatives for large space programs: The International Space University Summer Session, 1992

    NASA Technical Reports Server (NTRS)

    Palaszewski, Bryan A.

    1993-01-01

    In 1992, the International Space University (ISU) held its Summer Session in Kitakyushu, Japan. This paper summarizes and expands upon some aspects of space solar power and space transportation that were considered during that session. The issues discussed in this paper are the result of a 10-week study by the Space Solar Power Program design project members and the Space Transportation Group to investigate new paradigms in space propulsion and how those paradigms might reduce the costs for large space programs. The program plan was to place a series of power satellites in Earth orbit. Several designs were studied where many kW, MW, or GW of power would be transmitted to Earth or to other spacecraft in orbit. During the summer session, a space solar power system was also detailed and analyzed. A high-cost space transportation program is potentially the most crippling barrier to such a space power program. At ISU, the focus of the study was to foster and develop some of the new paradigms that may eliminate the barriers to low cost for space exploration and exploitation. Many international and technical aspects of a large multinational program were studied. Environmental safety, space construction and maintenance, legal and policy issues of frequency allocation, technology transfer and control and many other areas were addressed. Over 120 students from 29 countries participated in this summer session. The results discussed in this paper, therefore, represent the efforts of many nations.

  14. Atomic power in space: A history

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

    Not Available

    1987-03-01

    ''Atomic Power in Space,'' a history of the Space Isotope Power Program of the United States, covers the period from the program's inception in the mid-1950s through 1982. Written in non-technical language, the history is addressed to both the general public and those more specialized in nuclear and space technologies. 19 figs., 3 tabs.

  15. Space Station crew safety alternatives study. Volume 5: Space Station safety plan

    NASA Technical Reports Server (NTRS)

    Mead, G. H.; Peercy, R. L., Jr.; Raasch, R. F.

    1985-01-01

    The Space Station Safety Plan has been prepared as an adjunct to the subject contract final report, suggesting the tasks and implementation procedures to ensure that threats are addressed and resolution strategy options identified and incorporated into the space station program. The safety program's approach is to realize minimum risk exposure without levying undue design and operational constraints. Safety objectives and risk acceptances are discussed.

  16. The application of micromachined sensors to manned space systems

    NASA Technical Reports Server (NTRS)

    Bordano, Aldo; Havey, Gary; Wald, Jerry; Nasr, Hatem

    1993-01-01

    Micromachined sensors promise significant system advantages to manned space vehicles. Vehicle Health Monitoring (VHM) is a critical need for most future space systems. Micromachined sensors play a significant role in advancing the application of VHM in future space vehicles. This paper addresses the requirements that future VHM systems place on micromachined sensors such as: system integration, performance, size, weight, power, redundancy, reliability and fault tolerance. Current uses of micromachined sensors in commercial, military and space systems are used to document advantages that are gained and lessons learned. Based on these successes, the future use of micromachined sensors in space programs is discussed in terms of future directions and issues that need to be addressed such as how commercial and military sensors can meet future space system requirements.

  17. Enabling the space exploration initiative: NASA's exploration technology program in space power

    NASA Technical Reports Server (NTRS)

    Bennett, Gary L.; Cull, Ronald C.

    1991-01-01

    Space power requirements for Space Exploration Initiative (SEI) are reviewed, including the results of a NASA 90-day study and reports by the National Research Council, the American Institute of Aeronautics and Astronautics (AIAA), NASA, the Advisory Committee on the Future of the U.S. Space Program, and the Synthesis Group. The space power requirements for the SEI robotic missions, lunar spacecraft, Mars spacecraft, and human missions are summarized. Planning for exploration technology is addressed, including photovoltaic, chemical and thermal energy conversion; high-capacity power; power and thermal management for the surface, Earth-orbiting platform and spacecraft; laser power beaming; and mobile surface systems.

  18. 41 CFR 102-79.35 - What elements must Federal agencies address in their planning effort for establishing fitness...

    Code of Federal Regulations, 2011 CFR

    2011-01-01

    ... Federal agencies address in their planning effort for establishing fitness programs? 102-79.35 Section 102... Utilization of Space Fitness Centers § 102-79.35 What elements must Federal agencies address in their planning effort for establishing fitness programs? Federal agencies must address the following elements in their...

  19. 41 CFR 102-79.35 - What elements must Federal agencies address in their planning effort for establishing fitness...

    Code of Federal Regulations, 2014 CFR

    2014-01-01

    ... Federal agencies address in their planning effort for establishing fitness programs? 102-79.35 Section 102... Utilization of Space Fitness Centers § 102-79.35 What elements must Federal agencies address in their planning effort for establishing fitness programs? Federal agencies must address the following elements in their...

  20. Wireless Communications in Space

    NASA Technical Reports Server (NTRS)

    2004-01-01

    In 1992, NASA and the U.S. Department of Defense jointly commissioned the research and development of a technology solution to address the challenges and requirements of communicating with their spacecraft. The project yielded an international consortium composed of representatives from the space science community, industry, and academia. This group of experts developed a broad suite of protocols specifically designed for space-based communications, known today as Space Communications Protocol Standards (SCPS). Having been internationally standardized by the Consultative Committee on Space Data Systems and the International Standards Organization, SCPS is distributed as open source technology by NASA s Jet Propulsion Laboratory (JPL). The protocols are used for every national space mission that takes place today.

  1. Space Experiment Concepts: Cup-Burner Flame Extinguishment

    NASA Technical Reports Server (NTRS)

    Takahashi, Fumiaki

    2004-01-01

    Space Fire Suppression Processes & Technology. Space experiment concepts of cup-burner flame extinguishment have been conceived to address to the key issues (i.e., organizing questions) in space fire suppression. Cup-burner flame extinguishment experiment can reveal physical and chemical suppression processes and provide agent effectiveness data useful for technology development of space fire suppression systems in various reduced-gravity platforms.

  2. Living and working in space; IAA Man in Space Symposium, 9th, Cologne, Federal Republic of Germany, June 17-21, 1991, Selection of Papers

    NASA Technical Reports Server (NTRS)

    Klein, Karl E. (Editor); Contant, Jean-Michel (Editor)

    1992-01-01

    The present symposium on living and working in space encompasses the physiological responses of humans in space and biomedical support for the conditions associated with space travel. Specific physiological issues addressed include cerebral and sensorimotor functions, effects on the cardiovascular and respiratory system, musculoskeletal system, body fluid, hormones and electrolytes, and some orthostatic hypotension mechanisms as countermeasures. The biomedical support techniques examined include selection training, and care, teleoperation and artificial intelligence, robotic automation, bioregenerative life support, and toxic hazard risks in space habitats. Also addressed are determinants of orientation in microgravity, the hormonal control of body fluid metabolism, integrated human-machine intelligence in space machines, and material flow estimation in CELSS.

  3. Atomic Power in Space: A History

    DOE R&D Accomplishments Database

    1987-03-01

    "Atomic Power in Space," a history of the Space Isotope Power Program of the United States, covers the period from the program's inception in the mid-1950s through 1982. Written in non-technical language, the history is addressed to both the general public and those more specialized in nuclear and space technologies. Interplanetary space exploration successes and achievements have been made possible by this technology, for which there is no known substitue.

  4. Deep space network energy program

    NASA Technical Reports Server (NTRS)

    Friesema, S. E.

    1980-01-01

    If the Deep Space Network is to exist in a cost effective and reliable manner in the next decade, the problems presented by international energy cost increases and energy availability must be addressed. The Deep Space Network Energy Program was established to implement solutions compatible with the ongoing development of the total network.

  5. Space station proposed

    NASA Astrophysics Data System (ADS)

    In his State of the Union address on January 25, President Ronald Reagan announced that he was directing the National Aeronautics and Space Administration (NASA) to “develop a permanently manned space station, and to do it within a decade.”Included in the NASA budget proposal sent to Congress the following week was $150 million for the station. This is the first request of many; expected costs will total roughly $8 billion by the early 1990's.

  6. Space Station Freedom crew training

    NASA Technical Reports Server (NTRS)

    Bobko, K. J.; Gibson, E. G.; Maroney, S. A.; Muccio, J. D.

    1990-01-01

    The nature of the Space Station Freedom Program presents an array of new and enhanced challenges which need to be addressed en route to developing an effective and affordable infrastructure for crew training. Such an infrastructure is essential for the safety and success of the program. The three major challenges that affect crew training are the long lifetime of the program (thirty years), the interdependence of successive increments, and the participation of the three International Partners (Canada, European Space Agency, and Japan) and a myriad of experimenters. This paper addresses these major challenges as they drive the development of a crew training capability and the actual conduct of crew training.

  7. Space Station

    NASA Image and Video Library

    1985-12-01

    Skylab's success proved that scientific experimentation in a low gravity environment was essential to scientific progress. A more permanent structure was needed to provide this space laboratory. President Ronald Reagan, on January 25, 1984, during his State of the Union address, claimed that the United States should exploit the new frontier of space, and directed NASA to build a permanent marned space station within a decade. The idea was that the space station would not only be used as a laboratory for the advancement of science and medicine, but would also provide a staging area for building a lunar base and manned expeditions to Mars and elsewhere in the solar system. President Reagan invited the international community to join with the United States in this endeavour. NASA and several countries moved forward with this concept. By December 1985, the first phase of the space station was well underway with the design concept for the crew compartments and laboratories. Pictured are two NASA astronauts, at Marshall Space Flight Center's (MSFC) Neutral Buoyancy Simulator (NBS), practicing construction techniques they later used to construct the space station after it was deployed.

  8. Research and Technology, 1987, Goddard Space Flight Center

    NASA Technical Reports Server (NTRS)

    Guerny, Gene (Editor); Moe, Karen (Editor); Paddack, Steven (Editor); Soffen, Gerald (Editor); Sullivan, Walter (Editor); Ballard, Jan (Editor)

    1987-01-01

    Research at Goddard Space Flight Center during 1987 is summarized. Topics addressed include space and earth sciences, technology, flight projects and mission definition studies, and institutional technology.

  9. An AI approach for scheduling space-station payloads at Kennedy Space Center

    NASA Technical Reports Server (NTRS)

    Castillo, D.; Ihrie, D.; Mcdaniel, M.; Tilley, R.

    1987-01-01

    The Payload Processing for Space-Station Operations (PHITS) is a prototype modeling tool capable of addressing many Space Station related concerns. The system's object oriented design approach coupled with a powerful user interface provide the user with capabilities to easily define and model many applications. PHITS differs from many artificial intelligence based systems in that it couples scheduling and goal-directed simulation to ensure that on-orbit requirement dates are satisfied.

  10. Policy issues in space analogues

    NASA Astrophysics Data System (ADS)

    Auger, Robin N.; Facktor, Debra D.

    Space mission planning is increasingly focusing on destinations beyond Earth orbit. Advancements in technology will inevitably be required to enable long-duration human spaceflight missions, and breakthroughs in the policy arena will also be needed to achieve success in such missions. By exploring how policy issues have been addressed in analogous extreme environments, policymakers can develop a framework for addressing these issues as they apply to long-term human spaceflight. Policy issues that need to be addressed include: crew selection, training, organization, and activities, medical testing, illness, injury, and death; communication; legal accountability and liability; mission safety and risk management; and environmental contamination. This paper outlines the approach of a study underway by The George Washington University and ANSER to examine how these policy issues have been addressed in several analogues and how the experiences of these analogues can help formulate policies for long-duration human spaceflight missions. Analogues being studied include Antarctic bases, submarine voyages, undersea stations, Biosphere 2, and the U.S. Skylab and Russian Mir space stations.

  11. LifeSat - A satellite for space biological research

    NASA Technical Reports Server (NTRS)

    Halstead, Thora W.; Morey-Holton, Emily R.

    1990-01-01

    The LifeSat Program addresses the need for continuing access by biological scientists to space experimentation by accommodating a wide range of experiments involving animals and plants for durations up to 60 days in an unmanned satellite. The program will encourage interdisciplinary and international cooperation at both the agency and scientist levels, and will provide a recoverable, reusable facility for low-cost missions addressing key scientific issues that can only be answered by space experimentation. It will provide opportunities for research in gravitational biology and on the effects of cosmic radiation on life systems. The scientific aspects of LifeSat are addressed here.

  12. Space Law and China

    NASA Astrophysics Data System (ADS)

    Tronchetti, Fabio

    2017-08-01

    Over the past few years, China has made remarkable achievements in the space sector and become one of the most relevant players in the outer space domain. Highlights of this process have been the deployment in orbit of the first Chinese space station, Tiangong-1, on September 29, 2011; and the landing of the Yutu rover on the lunar surface on December 14, 2013. While technological developments have occurred at such a rapid pace, the same cannot be said of the regulatory framework governing Chinese space activities, which still lays at its infant stage. Indeed, unlike other major space-faring countries, China lacks comprehensive and uniform national space legislation; as of now, China has enacted two low-level administrative regulations addressing the issues of launching and registration of space objects. With the growth of the Chinese space program, such a lack of a structured national space law is beginning to show its limits and to create concerns about its negative impact on business opportunities and the ability of China to fully comply with international obligations. One should keep in mind that the international space treaties (China is part to four international space law treaties) are not self-executing, thus requiring States to adopt domestic measures to ensure their effective implementation. Importantly, Chinese authorities appear to be aware of these issues; as stated by the secretary-general of the Chinese National Space Administration (CNSA) in 2014, national space law has been listed in the national legislation plan and the CNSA is directly engaged in such a process. However, questions remain as to how this drafting process will be conducted and what legal form and content the law will have. For example, China could either decide to proceed with a gradual approach, consisting in the adoption of laws addressing selected issues to be eventually assembled into one single law; or to directly move to the adoption of one comprehensive law. In any case, if

  13. Songs for the Soul: A Program to Address a Nurse's Grief
.

    PubMed

    Phillips, Carolyn; Welcer, Barbara

    2017-04-01

    When caring for patients with cancer, a number of situations arise that cause nurses to grieve. Nurses need time and space to grieve to prevent the untoward effects of cumulative grief. While providing a safe space for nurses to be vulnerable in grief, Songs for the Soul combines the healing effects of expressive writing, storytelling, and music to help nurses address the grief and suffering they experience in their work. The use of storytelling through music portrays an expression of their grief that matches the intensity of their caregiving experience.

  14. TANK SPACE ALTERNATIVES ANALYSIS REPORT

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

    TURNER DA; KIRCH NW; WASHENFELDER DJ

    2010-04-27

    This report addresses the projected shortfall of double-shell tank (DST) space starting in 2018. Using a multi-variant methodology, a total of eight new-term options and 17 long-term options for recovering DST space were evaluated. These include 11 options that were previously evaluated in RPP-7702, Tank Space Options Report (Rev. 1). Based on the results of this evaluation, two near-term and three long-term options have been identified as being sufficient to overcome the shortfall of DST space projected to occur between 2018 and 2025.

  15. Outer space law: A problem of astronautics

    NASA Technical Reports Server (NTRS)

    Mandl, V.

    1984-01-01

    The theory of space law is discussed from the point of view of similarities and differences between hypothetical space law and current (1932) aviation law. International legal aspects and economic and cultural effects are also addressed.

  16. 75 FR 16197 - NASA Advisory Council; Space Operations Committee; Meeting

    Federal Register 2010, 2011, 2012, 2013, 2014

    2010-03-31

    ... NATIONAL AERONAUTICS AND SPACE ADMINISTRATION [Notice (10-036)] NASA Advisory Council; Space..., the National Aeronautics and Space Administration announces a meeting of the NASA Advisory Council Space Operations Committee. DATES: Tuesday, April 13, 2010, 3-5 p.m. CDT. ADDRESSES: NASA Johnson Space...

  17. Environmental Assessment for Air Force Research Laboratory Space Vehicles Integrated Experiments Division Office Space at Kirtland Air Force Base, Albuquerque, New Mexico

    DTIC Science & Technology

    2005-06-01

    AIR FORCE RESEARCH LABORATORY SPACE VEHICLES INTEGRATED EXPERMENTS DIVISION OFFICE SPACE AT KIRTLAND AIR FORCE ... Kirtland Air Force Base (KAFB). The office building would house the Air Force Research Laboratory Space Vehicles Integrated Experiments Division...ADDRESS(ES) Air Force Research Laboratory ,Space Vehicles Directorate,3550 Aberdeen Ave. SE, Kirtland

  18. Space Missions Trade Space Generation and Assessment Using JPL Rapid Mission Architecture (RMA) Team Approach

    NASA Technical Reports Server (NTRS)

    Moeller, Robert C.; Borden, Chester; Spilker, Thomas; Smythe, William; Lock, Robert

    2011-01-01

    The JPL Rapid Mission Architecture (RMA) capability is a novel collaborative team-based approach to generate new mission architectures, explore broad trade space options, and conduct architecture-level analyses. RMA studies address feasibility and identify best candidates to proceed to further detailed design studies. Development of RMA first began at JPL in 2007 and has evolved to address the need for rapid, effective early mission architectural development and trade space exploration as a precursor to traditional point design evaluations. The RMA approach integrates a small team of architecture-level experts (typically 6-10 people) to generate and explore a wide-ranging trade space of mission architectures driven by the mission science (or technology) objectives. Group brainstorming and trade space analyses are conducted at a higher level of assessment across multiple mission architectures and systems to enable rapid assessment of a set of diverse, innovative concepts. This paper describes the overall JPL RMA team, process, and high-level approach. Some illustrative results from previous JPL RMA studies are discussed.

  19. The Challenge of Space Infrastructure Construction

    NASA Technical Reports Server (NTRS)

    Howe, A. Scott; Colombano, Silvano P.

    2010-01-01

    This paper reviews the range of technologies that will contribute to the construction of space infrastructure that will both enable and, in some cases, provide the motivation for space exploration. Five parts are addressed: Managing complexity, robotics based construction, materials acquisition, manufacturing, and self-sustaining systems.

  20. Space Debris: Its Causes and Management

    NASA Technical Reports Server (NTRS)

    Johnson, Nicholas L.

    2002-01-01

    Orbital debris is internationally recognized as an environmental issue which needs to be addressed today to preserve near-Earth space for future generations. All major space agencies are committed to mitigating the growth of the debris environment. Many commercial space system operators have responded positively to orbital debris mitigation principles and recommendations. Orbital debris mitigation measures are most cost-effective if included in the design development phase.

  1. Space station operations task force. Panel 3 report: User development and integration

    NASA Technical Reports Server (NTRS)

    1987-01-01

    The User Development and Integration Panel of the Space Station Operations Task Force was chartered to develop concepts relating to the operations of the Space Station manned base and the platforms, user accommodation and integration activities. The needs of the user community are addressed in the context with the mature operations phase of the Space Station. Issues addressed include space station pricing options, marketing strategies, payload selection and resource allocation options, and manifesting techniques.

  2. Cells in Space

    NASA Technical Reports Server (NTRS)

    Sibonga, Jean D. (Editor); Mains, Richard C. (Editor); Fast, Thomas N. (Editor); Callahan, Paul X. (Editor); Winget, Charles M. (Editor)

    1989-01-01

    Discussions and presentations addressed three aspects of cell research in space: the suitability of the cell as a subject in microgravity experiments, the requirements for generic flight hardware to support cell research, and the potential for collaboration between academia, industry, and government to develop these studies in space. Synopses are given for the presentations and follow-on discussions at the conference and papers are presented from which the presentations were based. An Executive Summary outlines the recommendations and conclusions generated at the conference.

  3. Mrs. Chandrasekhar addresses the media in TRW Media Hospitality Tent

    NASA Technical Reports Server (NTRS)

    1999-01-01

    Mrs. Lalitha Chandrasekhar (right), wife of the late Indian- American Nobel Laureate Subrahmanyan Chandrasekhar, addresses the media and other invited guests in the TRW Media Hospitality Tent at the NASA Press Site at KSC as Dr. Alan Bunner, Science Program Director, Structure and Evolution of the Universe, Office of Space Science, NASA Headquarters, Washington, D.C., looks on. The name 'Chandra,' a shortened version of her husband's name which he preferred among friends and colleagues, was chosen in a contest to rename the Advanced X-ray Astrophysics Facility. 'Chandra' also means 'Moon' or 'luminous' in Sanskrit. The observatory is scheduled to be launched aboard Columbia on Space Shuttle mission STS-93.

  4. Space Station Software Issues

    NASA Technical Reports Server (NTRS)

    Voigt, S. (Editor); Beskenis, S. (Editor)

    1985-01-01

    Issues in the development of software for the Space Station are discussed. Software acquisition and management, software development environment, standards, information system support for software developers, and a future software advisory board are addressed.

  5. The Space-Time Topography of English Speakers

    ERIC Educational Resources Information Center

    Duman, Steve

    2016-01-01

    English speakers talk and think about Time in terms of physical space. The past is behind us, and the future is in front of us. In this way, we "map" space onto Time. This dissertation addresses the specificity of this physical space, or its topography. Inspired by languages like Yupno (Nunez, et al., 2012) and Bamileke-Dschang (Hyman,…

  6. Advances in Planetary Protection at the Deep Space Gateway

    NASA Astrophysics Data System (ADS)

    Spry, J. A.; Siegel, B.; Race, M.; Rummel, J. D.; Pugel, D. E.; Groen, F. J.; Kminek, G.; Conley, C. A.; Carosso, N. J.

    2018-02-01

    Planetary protection knowledge gaps that can be addressed by science performed at the Deep Space Gateway in the areas of human health and performance, space biology, and planetary sciences that enable future exploration in deep space, at Mars, and other targets.

  7. Space Station Engineering Design Issues

    NASA Technical Reports Server (NTRS)

    Mcruer, Duane T.; Boehm, Barry W.; Debra, Daniel B.; Green, C. Cordell; Henry, Richard C.; Maycock, Paul D.; Mcelroy, John H.; Pierce, Chester M.; Stafford, Thomas P.; Young, Laurence R.

    1989-01-01

    Space Station Freedom topics addressed include: general design issues; issues related to utilization and operations; issues related to systems requirements and design; and management issues relevant to design.

  8. Anti-satellite Weapons, Deterrence and Sino-American Space Relations

    DTIC Science & Technology

    2013-09-01

    REPORT NUMBER 9. SPONSORING/MONITORING AGENCY NAME(S) AND ADDRESS(ES) 10. SPONSOR/MONITOR’S ACRONYM(S) 11 . SPONSOR/MONITOR’S REPORT NUMBER(S) 12...DTRA). The project also wishes to thank Stimson’s Communications team-David Egner and Rich Robinson-copy editor Nancy Lewis, designer Neal Ashby, and...payloads with ever-greater capabilities. Scientific study, helped by access to space, flourished. Civil and military use of space-based communications

  9. Space Shuttle interactive meteorological data system study

    NASA Technical Reports Server (NTRS)

    Young, J. T.; Fox, R. J.; Benson, J. M.; Rueden, J. P.; Oehlkers, R. A.

    1985-01-01

    Although focused toward the operational meteorological support review and definition of an operational meteorological interactive data display systems (MIDDS) requirements for the Space Meteorology Support Group at NASA/Johnson Space Center, the total operational meteorological support requirements and a systems concept for the MIDDS network integration of NASA and Air Force elements to support the National Space Transportation System are also addressed.

  10. Kennedy Space Center Director Update

    NASA Image and Video Library

    2014-03-06

    CAPE CANAVERAL, Fla. – NASA Kennedy Space Center Director Robert Cabana addresses the community leaders, business executives, educators, community organizers, and state and local government leaders attending the Kennedy Space Center Director in the Kennedy Space Center Visitor Complex Debus Center. Attendees talked with Cabana and other senior Kennedy managers and visited displays featuring updates on Kennedy programs and projects, including International Space Station, Commercial Crew, Ground System Development and Operations, Launch Services, Center Planning and Development, Technology, KSC Swamp Works and NASA Education. The morning concluded with a tour of the new Space Shuttle Atlantis exhibit at the visitor complex. For more information, visit http://www.nasa.gov/kennedy. Photo credit: NASA/Daniel Casper

  11. Statistical prediction of space motion sickness

    NASA Technical Reports Server (NTRS)

    Reschke, Millard F.

    1990-01-01

    Studies designed to empirically examine the etiology of motion sickness to develop a foundation for enhancing its prediction are discussed. Topics addressed include early attempts to predict space motion sickness, multiple test data base that uses provocative and vestibular function tests, and data base subjects; reliability of provocative tests of motion sickness susceptibility; prediction of space motion sickness using linear discriminate analysis; and prediction of space motion sickness susceptibility using the logistic model.

  12. Space Congress, 27th, Cocoa Beach, FL, Apr. 24-27, 1990, Proceedings

    NASA Technical Reports Server (NTRS)

    1990-01-01

    The present symposium on aeronautics and space encompasses DOD research and development, science payloads, small microgravity carriers, the Space Station, technology payloads and robotics, commercial initiatives, STS derivatives, space exploration, and DOD space operations. Specific issues addressed include the use of AI to meet space requirements, the Astronauts Laboratory Smart Structures/Skins Program, the Advanced Liquid Feed Experiment, an overview of the Spacelab program, the Autonomous Microgravity Industrial Carrier Initiative, and the Space Station requirements and transportation options for a lunar outpost. Also addressed are a sensor-data display for telerobotic systems, the Pegasus and Taurus launch vehicles, evolutionary transportation concepts, the upgrade of the Space Shuttle avionics, space education, orbiting security sentinels, and technologies for improving launch-vehicle responsiveness.

  13. Overview of DOE space nuclear propulsion programs

    NASA Technical Reports Server (NTRS)

    Newhouse, Alan R.

    1993-01-01

    An overview of Department of Energy space nuclear propulsion programs is presented in outline and graphic form. DOE's role in the development and safety assurance of space nuclear propulsion is addressed. Testing issues and facilities are discussed along with development needs and recent research activities.

  14. Marshall Space Flight Center Research and Technology Report 2016

    NASA Technical Reports Server (NTRS)

    Tinker, M. L.; Abney, M. B. (Compiler); Reynolds, D. W. (Compiler); Morris, H. C. (Compiler)

    2017-01-01

    Marshall Space Flight Center is essential to human space exploration and our work is a catalyst for ongoing technological development. As we address the challenges facing human deep space exploration, we advance new technologies and applications here on Earth, expand scientific knowledge and discovery, create new economic opportunities, and continue to lead global space exploration.

  15. Taking SiC Power Devices to the Final Frontier: Addressing Challenges of the Space Radiation Environment

    NASA Technical Reports Server (NTRS)

    Lauenstein, Jean-Marie; Casey, Megan

    2017-01-01

    Silicon carbide power device technology has the potential to enable a new generation of aerospace power systems that demand high efficiency, rapid switching, and reduced mass and volume in order to expand space-based capabilities. For this potential to be realized, SiC devices must be capable of withstanding the harsh space radiation environment. Commercial SiC components exhibit high tolerance to total ionizing dose but to date, have not performed well under exposure to heavy ion radiation representative of the on-orbit galactic cosmic rays. Insertion of SiC power device technology into space applications to achieve breakthrough performance gains will require intentional development of components hardened to the effects of these highly-energetic heavy ions. This work presents heavy-ion test data obtained by the authors over the past several years for discrete SiC power MOSFETs, JFETs, and diodes in order to increase the body of knowledge and understanding that will facilitate hardening of this technology to space radiation effects. Specifically, heavy-ion irradiation data taken under different bias, temperature, and ion beam conditions is presented for devices from different manufacturers, and the emerging patterns discussed.

  16. Addressing System Reconfiguration and Incremental Integration within IMA Systems

    NASA Astrophysics Data System (ADS)

    Ferrero, F.; Rodríques, A. I.

    2009-05-01

    Recently space industry is paying special attention to Integrated Modular Avionics (IMA) systems due to the benefits that modular concepts could bring to the development of space applications, especially in terms of interoperability, flexibility and software reuse. Two important IMA goals to be highlighted are system reconfiguration, and incremental integration of new functionalities into a pre-existing system. The purpose of this paper is to show how system reconfiguration is conducted based on Allied Standard Avionics Architecture Council (ASAAC) concepts for IMA Systems. Besides, it aims to provide a proposal for addressing the incremental integration concept supported by our experience gained during European Technology Acquisition Program (ETAP) TDP1.7 programme. All these topics will be discussed taking into account safety issues and showing the blueprint as an appropriate technique to support these concepts.

  17. Growth anomalies on the coral genera Acropora and Porites are strongly associated with host density and human population size across the Indo-Pacific

    USGS Publications Warehouse

    Aeby, Greta S.; Williams, Gareth J.; Franklin, Erik C.; Haapkyla, Jessica; Harvell, C. Drew; Neale, Stephen; Page, Cathie A.; Raymundo, Laurie; Vargas-Angel, Bernardo; Willis, Bette L.; Work, Thierry M.; Davy, Simon K.

    2011-01-01

    Growth anomalies (GAs) are common, tumor-like diseases that can cause significant morbidity and decreased fecundity in the major Indo-Pacific reef-building coral genera, Acropora and Porites. GAs are unusually tractable for testing hypotheses about drivers of coral disease because of their pan-Pacific distributions, relatively high occurrence, and unambiguous ease of identification. We modeled multiple disease-environment associations that may underlie the prevalence of Acropora growth anomalies (AGA) (n = 304 surveys) and Porites growth anomalies (PGA) (n = 602 surveys) from across the Indo-Pacific. Nine predictor variables were modeled, including coral host abundance, human population size, and sea surface temperature and ultra-violet radiation anomalies. Prevalence of both AGAs and PGAs were strongly host density-dependent. PGAs additionally showed strong positive associations with human population size. Although this association has been widely posited, this is one of the first broad-scale studies unambiguously linking a coral disease with human population size. These results emphasize that individual coral diseases can show relatively distinct patterns of association with environmental predictors, even in similar diseases (growth anomalies) found on different host genera (Acropora vs. Porites). As human densities and environmental degradation increase globally, the prevalence of coral diseases like PGAs could increase accordingly, halted only perhaps by declines in host density below thresholds required for disease establishment.

  18. Growth Anomalies on the Coral Genera Acropora and Porites Are Strongly Associated with Host Density and Human Population Size across the Indo-Pacific

    PubMed Central

    Franklin, Erik C.; Haapkyla, Jessica; Harvell, C. Drew; Neale, Stephen; Page, Cathie A.; Raymundo, Laurie; Vargas-Ángel, Bernardo; Willis, Bette L.; Work, Thierry M.; Davy, Simon K.

    2011-01-01

    Growth anomalies (GAs) are common, tumor-like diseases that can cause significant morbidity and decreased fecundity in the major Indo-Pacific reef-building coral genera, Acropora and Porites. GAs are unusually tractable for testing hypotheses about drivers of coral disease because of their pan-Pacific distributions, relatively high occurrence, and unambiguous ease of identification. We modeled multiple disease-environment associations that may underlie the prevalence of Acropora growth anomalies (AGA) (n = 304 surveys) and Porites growth anomalies (PGA) (n = 602 surveys) from across the Indo-Pacific. Nine predictor variables were modeled, including coral host abundance, human population size, and sea surface temperature and ultra-violet radiation anomalies. Prevalence of both AGAs and PGAs were strongly host density-dependent. PGAs additionally showed strong positive associations with human population size. Although this association has been widely posited, this is one of the first broad-scale studies unambiguously linking a coral disease with human population size. These results emphasize that individual coral diseases can show relatively distinct patterns of association with environmental predictors, even in similar diseases (growth anomalies) found on different host genera (Acropora vs. Porites). As human densities and environmental degradation increase globally, the prevalence of coral diseases like PGAs could increase accordingly, halted only perhaps by declines in host density below thresholds required for disease establishment. PMID:21365011

  19. Legal Consequences of the Pollution of Outer Space with Space Debris

    NASA Astrophysics Data System (ADS)

    Stubbe, Peter

    2017-07-01

    Space debris has grown to be a significant problem for outer space activities. The remnants of human activities in space are very diverse; they can be tiny paint flakes, all sorts of fragments, or entirely intact—but otherwise nonfunctional spacecraft and rocket bodies. The amount of debris is increasing at a growing pace, thus raising the risk of collision with operational satellites. Due to the relative high velocities involved in on-orbit collisions, their consequences are severe; collisions lead to significant damage or the complete destruction of the affected spacecraft. Protective measures and collision avoidance have thus become a major concern for spacecraft operators. The pollution of space with debris must, however, not only be seen as an unfavorable circumstance that accompanies space activities and increases the costs and complexity of outer space activities. Beyond this rather technical perspective, the presence of man-made, nonfunctional objects in space represents a global environmental concern. Similar to the patterns of other environmental problems on Earth, debris generation appears to have surpassed the absorption capacity of the space environment. Studies indicate that the evolution of the space object environment has crossed the tipping point to a runaway situation in which an increasing number of collisions―mostly among debris―leads to an uncontrolled population growth. It is thus in the interest of all mankind to address the debris problem in order to preserve the space environment for future generations. International space law protects the space environment. Article IX of the Outer Space Treaty obligates States to avoid the harmful contamination of outer space. The provision corresponds to the obligation to protect the environment in areas beyond national jurisdiction under the customary "no harm" rule of general environmental law. These norms are applicable to space debris and establish the duty not to pollute outer space by limiting

  20. Space station needs, attributes and architectural options study. Final executive review

    NASA Technical Reports Server (NTRS)

    1983-01-01

    Identification and validation of missions, the benefits of manned presence in space, attributes and architectures, space station requirements, orbit selection, space station architectural options, technology selection, and program planning are addressed.

  1. Composites Materials and Manufacturing Technologies for Space Applications

    NASA Technical Reports Server (NTRS)

    Vickers, J. H.; Tate, L. C.; Gaddis, S. W.; Neal, R. E.

    2016-01-01

    Composite materials offer significant advantages in space applications. Weight reduction is imperative for deep space systems. However, the pathway to deployment of composites alternatives is problematic. Improvements in the materials and processes are needed, and extensive testing is required to validate the performance, qualify the materials and processes, and certify components. Addressing these challenges could lead to the confident adoption of composites in space applications and provide spin-off technical capabilities for the aerospace and other industries. To address the issues associated with composites applications in space systems, NASA sponsored a Technical Interchange Meeting (TIM) entitled, "Composites Materials and Manufacturing Technologies for Space Applications," the proceedings of which are summarized in this Conference Publication. The NASA Space Technology Mission Directorate and the Game Changing Program chartered the meeting. The meeting was hosted by the National Center for Advanced Manufacturing (NCAM)-a public/private partnership between NASA, the State of Louisiana, Louisiana State University, industry, and academia, in association with the American Composites Manufacturers Association. The Louisiana Center for Manufacturing Sciences served as the coordinator for the TIM.

  2. Space Station Workshop: Commercial Missions and User Requirements

    NASA Technical Reports Server (NTRS)

    1988-01-01

    The topics of discussion addressed during a three day workshop on commercial application in space are presented. Approximately half of the program was directed towards an overview and orientation to the Space Station Project; the technical attributes of space; and present and future potential commercial opportunities. The remaining time was spent addressing technological issues presented by previously-formed industry working groups, who attempted to identify the technology needs, problems or issues faced and/or anticipated by the following industries: extraction (mining, agriculture, petroleum, fishing, etc.); fabrication (manufacturing, automotive, aircraft, chemical, pharmaceutical and electronics); and services (communications, transportation and retail robotics). After the industry groups presented their technology issues, the workshop divided into smaller discussion groups composed of: space experts from NASA; academia; industry experts in the appropriate disciplines; and other workshop participants. The needs identified by the industry working groups, space station technical requirements, proposed commercial ventures and other issues related to space commercialization were discussed. The material summarized and reported are the consensus from the discussion groups.

  3. Space station operations task force. Panel 4 report: Management integration

    NASA Technical Reports Server (NTRS)

    1987-01-01

    The Management Integration Panel of the Space Station Operations Task Force was chartered to provide a structure and ground rules for integrating the efforts of the other three panels and to address a number of cross cutting issues that affect all areas of space station operations. Issues addressed include operations concept implementation, alternatives development and integration process, strategic policy issues and options, and program management emphasis areas.

  4. Hybrid Enhanced Epidermal SpaceSuit Design Approaches

    NASA Astrophysics Data System (ADS)

    Jessup, Joseph M.

    A Space suit that does not rely on gas pressurization is a multi-faceted problem that requires major stability controls to be incorporated during design and construction. The concept of Hybrid Epidermal Enhancement space suit integrates evolved human anthropomorphic and physiological adaptations into its functionality, using commercially available bio-medical technologies to address shortcomings of conventional gas pressure suits, and the impracticalities of MCP suits. The prototype HEE Space Suit explored integumentary homeostasis, thermal control and mobility using advanced bio-medical materials technology and construction concepts. The goal was a space suit that functions as an enhanced, multi-functional bio-mimic of the human epidermal layer that works in attunement with the wearer rather than as a separate system. In addressing human physiological requirements for design and construction of the HEE suit, testing regimes were devised and integrated into the prototype which was then subject to a series of detailed tests using both anatomical reproduction methods and human subject.

  5. Designing the Orbital Space Tourism Experience

    NASA Astrophysics Data System (ADS)

    Webber, Derek

    2006-01-01

    Sub-orbital space tourism is now well on its way to becoming a reality, with offerings by Virgin Galactic, Rocketplane, and others soon to be made available. Orbital space tourism is harder to achieve, but, if successful as a business model, will make significant contributions towards improved operational efficiencies, reusability, reliability and economies of scale to the world of crewed space flight. Some responses to the President's Vision for Space Exploration have included public space travel in low Earth orbit as sustaining and enabling elements of the vision in a post-Shuttle space architecture. This paper addresses the steps necessary to make possible such a US-based orbital space tourism business, and will assist commercial and government agencies concerned with the development of this new sector.

  6. Time-multiplexed, optically-addressed, gigabit optical crossbar switch

    NASA Technical Reports Server (NTRS)

    Lang, Robert J. (Inventor); Cheng, Li-Jen (Inventor); Maserjian, Joseph (Inventor)

    1994-01-01

    A time-multiplexed, optically-addressed, crossbar switch (38) is provided using a two-dimensional, optically-addressed, reflective spatial light modulator (O-SLM) (20). Since the optical addressing is time-multiplexed, only N addressing lines are required for an N.times.N crossbar, rather than the N.sup.2 lines needed in the prior art. This reduction in addressing lines makes possible the development of enormous crossbar switches, such as 100.times.100, for the first time. In addition, since data paths remain entirely in the optics domain, data speeds can reach the multi-gigabit level. In the switch, a row (40) of N inputs (42) at the read wavelength is spread over one axis of the O-SLM. The light is refocused along the other axis to an output array (48) of detectors (50), so that each input has the potential to talk to any one output. The O-SLM is normally off, i.e., non-reflective, so that the output is, in the absence of an input signal, zero. A one-dimensional array (52) of lasers (54) at the write wavelength is imaged onto the O-SLM. Each laser scans across an entire row of the O-SLM; where the laser is on, it turns on a portion of the O-SLM and establishes a connection between a particular input and a particular output. A full row is scanned in a time much shorter than the response time of the O-SLM, so that state of the O-SLM is capacitively stored and dynamically refreshed. The scanning is accomplished by tuning the wavelength of the laser and passing it through a grating, which sweeps the beam in space.

  7. Management of space networks

    NASA Technical Reports Server (NTRS)

    Markley, R. W.; Williams, B. F.

    1993-01-01

    NASA has proposed missions to the Moon and Mars that reflect three areas of emphasis: human presence, exploration, and space resource development for the benefit of Earth. A major requirement for such missions is a robust and reliable communications architecture. Network management--the ability to maintain some degree of human and automatic control over the span of the network from the space elements to the end users on Earth--is required to realize such robust and reliable communications. This article addresses several of the architectural issues associated with space network management. Round-trip delays, such as the 5- to 40-min delays in the Mars case, introduce a host of problems that must be solved by delegating significant control authority to remote nodes. Therefore, management hierarchy is one of the important architectural issues. The following article addresses these concerns, and proposes a network management approach based on emerging standards that covers the needs for fault, configuration, and performance management, delegated control authority, and hierarchical reporting of events. A relatively simple approach based on standards was demonstrated in the DSN 2000 Information Systems Laboratory, and the results are described.

  8. International Space Station External Contamination Environment for Space Science Utilization

    NASA Technical Reports Server (NTRS)

    Soares, Carlos E.; Mikatarian, Ronald R.; Steagall, Courtney A.; Huang, Alvin Y.; Koontz, Steven; Worthy, Erica

    2014-01-01

    The International Space Station (ISS) is the largest and most complex on-orbit platform for space science utilization in low Earth orbit. Multiple sites for external payloads, with exposure to the associated natural and induced environments, are available to support a variety of space science utilization objectives. Contamination is one of the induced environments that can impact performance, mission success and science utilization on the vehicle. The ISS has been designed, built and integrated with strict contamination requirements to provide low levels of induced contamination on external payload assets. This paper addresses the ISS induced contamination environment at attached payload sites, both at the requirements level as well as measurements made on returned hardware, and contamination forecasting maps being generated to support external payload topology studies and science utilization.

  9. Impact of the introduction of generic latanoprost on glaucoma medication adherence.

    PubMed

    Stein, Joshua D; Shekhawat, Nakul; Talwar, Nidhi; Balkrishnan, Rajesh

    2015-04-01

    To assess possible changes in medication adherence to prostaglandin analog (PGA) regimens among patients with open-angle glaucoma (OAG) after the initial introduction of generic PGAs. Longitudinal cohort analysis. Patients older than 40 years with OAG continuously enrolled in a nationwide managed-care network during 2009-2012 who used PGAs. Mean adherence rates were calculated for topical PGA use during the 18 months before the introduction of generic latanoprost (September 2009-February 2011) and the 18 months after generic latanoprost became available (July 2011-December 2012). The rates were compared between persons who continued to use brand-name PGAs once generic latanoprost became available and others who switched to generic latanoprost. Multivariable logistic regression identified variables associated with an improvement or worsening of adherence of ≥25%. Mean adherence rates and odds of 25% or more improved or worsened adherence (with 95% confidence intervals [CIs]). A total of 8427 patients met the study eligibility criteria. Compared with persons switching to generic latanoprost, patients who continued taking brand name PGAs were 28% less likely to have improved adherence (odds ratio [OR], 0.72; 95% CI, 0.55-0.94) and 39% more likely to have reduced adherence (OR, 1.39; 1.04-1.86) of ≥25%. Improved adherence after the generic drug's introduction was also associated with higher monthly medication copay in the pregeneric period (P = 0.02), lower copay after introduction of the generic drug (P < 0.0001), and black race (OR, 1.25; 95% CI, 1.04-1.50). Six-hundred twelve patients (7.3%) discontinued all antiglaucoma interventions when generic latanoprost became available. Given that cost can significantly deter adherence, switching patients to generic medications may help improve patients' drug-regimen adherence. A considerable number of patients discontinued glaucoma drug use altogether when generic latanoprost became available. Ophthalmologists should

  10. Space Biology and Medicine. Volume 4; Health, Performance, and Safety of Space Crews

    NASA Technical Reports Server (NTRS)

    Dietlein, Lawrence F. (Editor); Pestov, Igor D. (Editor)

    2004-01-01

    Volume IV is devoted to examining the medical and associated organizational measures used to maintain the health of space crews and to support their performance before, during, and after space flight. These measures, collectively known as the medical flight support system, are important contributors to the safety and success of space flight. The contributions of space hardware and the spacecraft environment to flight safety and mission success are covered in previous volumes of the Space Biology and Medicine series. In Volume IV, we address means of improving the reliability of people who are required to function in the unfamiliar environment of space flight as well as the importance of those who support the crew. Please note that the extensive collaboration between Russian and American teams for this volume of work resulted in a timeframe of publication longer than originally anticipated. Therefore, new research or insights may have emerged since the authors composed their chapters and references. This volume includes a list of authors' names and addresses should readers seek specifics on new information. At least three groups of factors act to perturb human physiological homeostasis during space flight. All have significant influence on health, psychological, and emotional status, tolerance, and work capacity. The first and most important of these factors is weightlessness, the most specific and radical change in the ambient environment; it causes a variety of functional and structural changes in human physiology. The second group of factors precludes the constraints associated with living in the sealed, confined environment of spacecraft. Although these factors are not unique to space flight, the limitations they entail in terms of an uncomfortable environment can diminish the well-being and performance of crewmembers in space. The third group of factors includes the occupational and social factors associated with the difficult, critical nature of the

  11. Space station architectural elements model study. Space station human factors research review

    NASA Technical Reports Server (NTRS)

    Taylor, Thomas C.; Khan, Eyoub; Spencer, John; Rocha, Carlos; Cliffton, Ethan Wilson

    1987-01-01

    Presentation visuals and an extended abstract represent a study to explore and analyze the interaction of major utilities distribution, generic workstation, and spatial composition of the SPACEHAB space station module. Issues addressed include packing densities vs. circulation, efficiency of packing vs. standardization, flexibility vs. diversity, and composition of interior volume as space for living vs. residual negative volume. The result of the study is expected to be a series of observations and preliminary evaluation criteria which focus on the productive living environment for a module in orbit.

  12. Mrs. Chandrasekhar addresses the media in TRW Media Hospitality Tent

    NASA Technical Reports Server (NTRS)

    1999-01-01

    Mrs. Lalitha Chandrasekhar (at podium), wife of the late Indian- American Nobel Laureate Subrahmanyan Chandrasekhar, addresses the media and other invited guests in the TRW Media Hospitality Tent at the NASA Press Site at KSC. Other participants in the program (seated facing the audience, left to right) are the winners of the contest to rename the telescope, Jatila van der Veen, academic coordinator and lecturer, Physics Dept., University of Santa Barbara, Calif., and Tyrel Johnson, high school student, Laclede, Idaho; Joanne Maguire, vice-president and general manager, TRW Space & Laser Programs Division; and Dr. Alan Bunner, Science Program Director, Structure and Evolution of the Universe, Office of Space Science, NASA Headquarters, Washington, D.C. The name 'Chandra,' a shortened version of Chandrasekhar, was the name the Nobel Laureate preferred among friends and colleagues. 'Chandra' also means 'Moon' or 'luminous' in Sanskrit. The observatory is scheduled to be launched aboard Columbia on Space Shuttle mission STS-93.

  13. Building an intellectual infrastructure for space commerce

    NASA Technical Reports Server (NTRS)

    Stone, Barbara A.; Struthers, Jeffrey L.

    1992-01-01

    Competition in commerce requires an 'intellectual infrastructure', that is, a work force with extensive scientific and technical knowledge and a thorough understanding of the business world. This paper focuses on the development of such intellectual infrastructure for space commerce. Special consideration is given to the contributions to this development by the 17 Centers for the Commercial Development of Space Program conducting commercially oriented research in eight specialized areas: automation and robotics, remote sensing, life sciences, materials processing in space, space power, space propulsion, space structures and materials, and advanced satellite communications. Attention is also given to the Space Business Development Center concept aimed at addressing a variety of barriers common to the development of space commerce.

  14. The Space House TM : Space Technologies in Architectural Design

    NASA Astrophysics Data System (ADS)

    Gampe, F.; Raitt, D.

    2002-01-01

    The word "space" has always been associated with and had a profound impact upon architectural design. Until relatively recently, however, the term has been used in a different sense to that understood by the aerospace community - for them, space was less abstract, more concrete and used in the context of space flight and space exploration, rather than, say, an empty area or space requiring to be filled by furniture. However, the two senses of the word space have now converged to some extent. Interior designers and architects have been involved in designing the interior of Skylab, the structure of the International Space Station, and futuristic space hotels. Today, architects are designing, and builders are building, houses, offices and other structures which incorporate a plethora of new technologies, materials and production processes in an effort not only to introduce innovative and adventurous ideas but also in an attempt to address environmental and social issues. Foremost among these new technologies and materials being considered today are those that have been developed for and by the space industry. This paper examines some of these space technologies, such as energy efficient solar cells, durable plastics, air and water filtration techniques, which have been adapted to both provide power while reducing energy consumption, conserve resources and so on. Several of these technologies have now been employed by the European Space Agency to develop a Space House TM - the first of its kind, which will be deployed not so much on planets like Mars, but rather here on Earth. The Space House TM, which exhibits many innovative features such as high strength light-weight carbon composites, active noise-damped, (glass and plastic) windows, low-cost solar arrays and latent heat storage, air and water purification systems will be described.

  15. Marshall Space Flight Center Technology Capabilities for Use in Space Situational Awareness Activities

    NASA Technical Reports Server (NTRS)

    Gagliano, Larry; McLeod, Todd; Hovater, Mary A.

    2017-01-01

    Marshall performs research, integrates information, matures technologies, and enhances science to bring together a diverse portfolio of products and services of interest for Space Situational Awareness (SSA) and Space Asset Management (SAM), all of which can be accessed through partnerships with Marshall. Integrated Space Situational Awareness and Asset Management (ISSAAM) is an initiative of NASA's Marshall Space Flight Center to improve space situational awareness and space asset management through technical innovation, collaboration, and cooperation with U.S. Government agencies and the global space community. Marshall Space Flight Center provides solutions for complex issues with in-depth capabilities, a broad range of experience, and expertise unique in the world, and all available in one convenient location. NASA has longstanding guidelines that are used to assess space objects. Specifically, Marshall Space Flight Center has the capabilities, facilities and expertise to address the challenges that space objects, such as near-Earth objects (NEO) or Orbital Debris pose. ISSAAM's three pronged approach brings together vital information and in-depth tools working simultaneously toward examining the complex problems encountered in space situational awareness. Marshall's role in managing, understanding and planning includes many projects grouped under each prong area: Database/Analyses/Visualization; Detection/Tracking/ Mitigation/Removal. These are not limited to those listed below.

  16. 76 FR 3673 - NASA Advisory Council; Space Operations Committee; Meeting.

    Federal Register 2010, 2011, 2012, 2013, 2014

    2011-01-20

    ... NATIONAL AERONAUTICS AND SPACE ADMINISTRATION [Notice: (11-005)] NASA Advisory Council; Space..., the National Aeronautics and Space Administration announces a meeting of the NASA Advisory Council.... ADDRESSES: NASA Headquarters, 300 E Street, SW., Room 7C61, Washington, DC 20546. FOR FURTHER INFORMATION...

  17. Space industrialization: A national perspective

    NASA Technical Reports Server (NTRS)

    Reis, V. H.

    1984-01-01

    Space industrialization (or commercialization) has the potential to be a major player in America's space program. If this potential is to be realized, however, industrialization efforts must be considered within the context of the other major portions of the space program: shuttle, space station, and civil remote sensing. Further, development efforts must be based upon a sound scientific and technical understanding of the products and processes, and there must be a trained cadre of dedicated individuals willing to devote time and effort to this effort. There remain considerable risks and uncertainties. Given all this, the best path to follow would seem to be a long term, balanced commitment, emphasizing government, industry, and academia partnerships. Several points are addressed: (1) the place of space industrialization in the overall national space program; (2) the meaning of space industrialization with respect to the historic, national aims of space; and (3) specifically what is being industrialized.

  18. Innovative Ideas for Coordinating International Space Activities: International Center for Space Medicine, International Space Authority, and other Global Youth Space Initiatives

    NASA Astrophysics Data System (ADS)

    Marshall, W.

    2002-01-01

    The Space Generation Forum SGF, at UNISPACE-III, as one of its ten formal recommendations to the United Nations in 1999, put forward the suggestion that the an international space authority should be created. Other recommendations were the establishment of an International Center for Space Medicine, creation of a global space exploration and development program, establishment of a global space (Nobel) prize, and a global space library. These projects are being further developed at the Space Generation Summit (SGS), an event at World Space Congress (WSC) which shall unite international students and young professionals to develop a youth vision and strategy for the peaceful uses of space. SGS, endorsed by the United Nations, will take place from October 11- 13th, during which the 200 delegates will discuss ongoing youth space activities, particularly those stemming from the UNISPACE-III/SGF and taken forward by the Space Generation Advisory Council. Delegates will address a variety of topics with the goal of devising new recommendations according to the theme, 'Accelerating Our Pace in Space'. The material presented here and in other technical sessions throughout WSC includes the findings of these discussions. In this paper, we present the International Space Authority idea together with recommendations on how that might be taken forward. The purpose of such an organization would be to allow: 1. Oversight and enforcement for the balanced regulation of multiple interests in space 2. Access for all peoples to the material benefits and knowledge and understanding enabled by the exploration and 3. Pooling of national and industry resources for the creation of space infrastructure, missions and enterprises for Operating principles: 1. The ISA regulatory regime would encourage commercialization and the harnessing of competitive market 2. Consistent with its charter to ensure access to all peoples, all UN member states and appropriate NGOs would 3. Close coordination with

  19. Carrington Mission and Beyond - What are the Challenges to be Scientifically and Operationally Addressed?

    NASA Astrophysics Data System (ADS)

    Gibbs, M.

    2016-12-01

    The proposed Carrington mission to L5 will bring many benefits of space weather forecasting, some of them glimpsed from the NASA STEREO Mission. How can any new data from L5 be used to maximum benefit? But what about other areas of potential space weather impacts. I'll address future needs and requirements from our Government Stakeholder view, protecting Critical National Infrastructure and key sectors. What are their needs and how can the global space weather enterprise (research & development and operations) begin to tackle these challenges. What new observations will we need (space borne or ground based), what models need developing and how will we use them to best effect? I will explore the key issues without delving deep into the science required.

  20. 2011 Space Weather Workshop to Be Held in April

    NASA Astrophysics Data System (ADS)

    Peltzer, Thomas

    2011-04-01

    The annual Space Weather Workshop will be held in Boulder, Colo., 26-29 April 2011. The workshop will bring customers, forecasters, commercial service providers, researchers, and government agencies together in a lively dialogue about space weather. The workshop will include 4 days of plenary sessions on a variety of topics, with poster sessions focusing on the Sun, interplanetary space, the magnetosphere, and the ionosphere. The conference will address the remarkably diverse impacts of space weather on today's technology. Highlights on this year's agenda will include presentations on space weather impacts on the Global Positioning System (GPS), the Solar Terrestrial Relations Observatory's (STEREO) mission milestone of a 360° view of the Sun, the latest from NASA's Solar Dynamics Observatory (SDO), and space weather impacts on emergency response by the Federal Emergency Management Agency (FEMA). Additionally, the vulnerabilities of satellites and the power grid to space weather will be addressed. Additional highlights will include the Commercial Space Weather Interest Group's (CSWIG) roundtable session and a presentation from the Office of the Federal Coordinator for Meteorology (OFCM). The CSWIG roundtable session on the growth of the space weather enterprise will feature distinguished panelists. As always, lively interaction between the audience and the panel is anticipated. The OFCM will present the National Space Weather Program's new strategic plan.

  1. Responsive space: Concept analysis and theoretical framework

    NASA Astrophysics Data System (ADS)

    Saleh, Joseph H.; Dubos, Gregory F.

    2009-08-01

    Customers' needs are dynamic and evolve in response to unfolding environmental uncertainties. The ability of a company or an industry to address these changing customers' needs in a timely and cost-effective way is a measure of its responsiveness. In the space industry, a systemic discrepancy exists between the time constants associated with the change of customers' needs, and the response time of the industry in delivering on-orbit solutions to these needs. There are important penalties associated with such delays, and space responsiveness is recognized as a strategic imperative in commercial competitive and military environments. In this paper, we provide a critical assessment of the literature on responsive space and introduce a new multi-disciplinary framework for thinking about and addressing issues of space responsiveness. Our framework advocates three levels of responsiveness: a global industry-wide responsiveness, a local stakeholder responsiveness, and an interactive or inter-stakeholder responsiveness. We introduce and motivate the use of "responsiveness maps" for multiple stakeholders. We then identify "levers of responsiveness": technical spacecraft- and launch-centric, as well as "soft" levers (e.g., acquisition policies) for improving the responsiveness of the space industry. Finally, we propose a series of research questions to aggressively tackle problems associated with space responsiveness.

  2. Space batteries for mobile battlefield power applications

    NASA Technical Reports Server (NTRS)

    O'Donnell, Patricia M.

    1991-01-01

    A review of space power systems was undertaken to identify advanced space batteries for mobile applications. State-of-the-art systems are described. The technology issues that need to be addressed in order to bring these systems along and meet the needs of the user are discussed. Future research directions are examined.

  3. Impact of space on science

    NASA Technical Reports Server (NTRS)

    Elachi, Charles

    1993-01-01

    The advent of the capability to conduct space-based measurements has revolutionized the study of the Earth, the planetary system and the astrophysical universe. The resultant knowledge has yielded insights into the management of our planet's resources and provides intellectual enrichment for our civilization. New investigation techniques hold promise for extending the scope of space science to address topics in fundamental physics such as gravitational waves and certain aspects of Einstein's Theory of General Relativity.

  4. "Filming in Progress": New Spaces for Multimodal Designing

    ERIC Educational Resources Information Center

    Mills, Kathy A.

    2010-01-01

    Global trends call for new research to investigate multimodal designing mediated by new technologies and the implications for classroom spaces. This article addresses the relationship between new technologies, students' multimodal designing, and the social production of classroom spaces. Multimodal semiotics and sociological principles are applied…

  5. New initiatives in the commercial development of space

    NASA Technical Reports Server (NTRS)

    Rose, James T.; Stone, Barbara A.

    1988-01-01

    This paper provides a status report on aggressive new initiatives by the NASA Office of Commercial Programs to implement new commercial space policy. The promotion of a strong U.S. commercial presence in space via Spacehab, the Space Shuttle external tanks, privatization of the Space Station, and the development of commercial remote sensing systems is addressed. The privatization of launch services and the development of a talent base for commercial space efforts are considered. Groups, policies, and plans involved in these developments are discussed.

  6. Intentional Process for Intentional Space: Higher Education Classroom Spaces for Learning

    ERIC Educational Resources Information Center

    Olsen, Taimi; Guffey, Stanley

    2016-01-01

    This chapter addresses the confluence of theory and practice in developing and using "flexible" classrooms for student learning. A large classroom building renovation will be described, in terms of how collaboration and co-creation of value led to early success of the renovated space. Co-creation of value for staff and faculty can help…

  7. Addressing Social Media Presence: Shifting from Place to Space in Career/Transfer ePortfolios

    ERIC Educational Resources Information Center

    Apostel, Shawn

    2015-01-01

    Institutions of higher education are increasingly utilizing ePortfolio projects to allow students a space to showcase their work to their instructors, peers, and potential employers, and with the primary audience focusing on instructor or peer, the ePortfolio has worked well over the years. However, as the audience shifted more to potential…

  8. Deep Space Telecommunications Systems Engineering

    NASA Technical Reports Server (NTRS)

    Yuen, J. H. (Editor)

    1982-01-01

    Descriptive and analytical information useful for the optimal design, specification, and performance evaluation of deep space telecommunications systems is presented. Telemetry, tracking, and command systems, receiver design, spacecraft antennas, frequency selection, interference, and modulation techniques are addressed.

  9. The Space Station - Past, present and future with some thoughts on some legal questions that need to be addressed

    NASA Technical Reports Server (NTRS)

    Hosenball, S. N.

    1985-01-01

    The history of the concept of a space station is briefly considered, taking into account a story written by Hale (1869), quantitative work provided by Oberth and Tsiolkovsky, von Braun, and the U.S. decision regarding the establishment of a space station. Arguments in favor of constructing a space station are related to the utility of a laboratory in earth orbit, the importance of a repair and maintenance base for satellites, the provision of capabilities for the commercial utilization of space, and the employment of a space station as a staging base for missions to the moon, Mars, and, possibly, the asteroids. Plans for the implementation of the Space Station concept are discussed, taking into account also legal issues involved in such an implementation. Attention is given to questions regarding the applicability of the Liability convention, U.S. domestic law, the domestic law of other countries, and four treaties.

  10. Teaching Time-Space Compression

    ERIC Educational Resources Information Center

    Warf, Barney

    2011-01-01

    Time-space compression shows students that geographies are plastic, mutable and forever changing. This paper justifies the need to teach this topic, which is rarely found in undergraduate course syllabi. It addresses the impacts of transportation and communications technologies to explicate its dynamics. In summarizing various conceptual…

  11. Space colonization.

    PubMed

    Parrish, Clyde F

    2003-12-01

    A series of workshops were sponsored by the Physical Science Division of NASA's Office of Biological and Physical Research to address operational gravity-compliant in-situ resource utilization and life support techologies. Workshop participants explored a Mars simulation study on Devon Island, Canada; the processing of carbon dioxide in regenerative life support systems; space tourism; rocket technology; plant growth research for closed ecological systems; and propellant extraction of planetary regoliths.

  12. How to Extend the Capabilities of Space Systems for Long Duration Space Exploration Systems

    NASA Technical Reports Server (NTRS)

    Marzwell, Neville I.; Waterman, Robert D.; KrishnaKumar, Kalmanje; Waterman, Susan J.

    2005-01-01

    For sustainable Exploration Missions the need exists to assemble systems-of-systems in space, on the Moon or on other planetary surfaces. To fulfill this need new and innovative system architecture is needed that can be satisfied with the present lift capability of existing rocket technology without the added cost of developing a new heavy lift vehicle. To enable ultra-long life missions with minimum redundancy and lighter mass the need exists to develop system soft,i,are and hardware reconfigurability, which enables increasing functionality and multiple use of launched assets while at the same time overcoming any components failures. Also the need exists to develop the ability to dynamically demate and reassemble individual system elements during a mission in order to work around failed hardware or changed mission requirements. Therefore to meet the goals of Space Exploration Missions in hiteroperability and Reconfigurability, many challenges must be addressed to transform the traditional static avionics architecture into architecture with dynamic capabilities. The objective of this paper is to introduce concepts associated with reconfigurable computer systems; review the various needs and challenges associated with reconfigurable avionics space systems; provide an operational example that illustrates the needs applicable to either the Crew Exploration Vehicle or a collection of "Habot like" mobile surface elements; summarize the approaches that address key challenges to acceptance of a Flexible, Intelligent, Modular and Affordable reconfigurable avionics space system.

  13. Questions of Matter: Critical Conversations in Online Spaces

    ERIC Educational Resources Information Center

    Albers, Peggy; Turnbull, Sarah; Angay-Crowder, Tuba

    2015-01-01

    How professional development is delivered in today's networked world has shifted greatly, and research into online spaces of learning is growing. Numerous questions, however, remain regarding how online spaces can be leveraged to foster meaningful conversations that address current critical educational issues. This qualitative study examines the…

  14. Third NASA Workshop on Wiring for Space Applications

    NASA Technical Reports Server (NTRS)

    Hammoud, Ahmad (Compiler); Stavnes, Mark (Compiler)

    1995-01-01

    This workshop addressed key technology issues in the field of electrical power wiring for space applications, and transferred information and technology related to space wiring for use in government and commercial applications. Speakers from space agencies, U.S. Federal labs, industry, and academia presented program overviews and discussed topics on arc tracking phenomena, advancements in insulation materials and constructions, and new wiring system topologies.

  15. KENNEDY SPACE CENTER, FLA. - Former astronaut James Lovell addresses the audience at a ribbon cutting ceremony officially opening the U.S. Astronaut Hall of Fame as part of the Kennedy Space Center Visitor Complex. The ceremony was held in conjunction with the induction of four Space Shuttle astronauts into the Hall of Fame including Daniel Brandenstein, Robert "Hoot" Gibson, Story Musgrave, and Sally Ride. Conceived by six of the Mercury Program astronauts, the U.S. Astronaut Hall of Fame opened in 1990 to provide a place where space travelers could be remembered for their participation and accomplishments in the U.S. space program. The four new inductees join 48 previously honored astronauts from the ranks of the Gemini, Apollo, Skylab, Apollo-Soyuz, and Space Shuttle programs.

    NASA Image and Video Library

    2003-06-20

    KENNEDY SPACE CENTER, FLA. - Former astronaut James Lovell addresses the audience at a ribbon cutting ceremony officially opening the U.S. Astronaut Hall of Fame as part of the Kennedy Space Center Visitor Complex. The ceremony was held in conjunction with the induction of four Space Shuttle astronauts into the Hall of Fame including Daniel Brandenstein, Robert "Hoot" Gibson, Story Musgrave, and Sally Ride. Conceived by six of the Mercury Program astronauts, the U.S. Astronaut Hall of Fame opened in 1990 to provide a place where space travelers could be remembered for their participation and accomplishments in the U.S. space program. The four new inductees join 48 previously honored astronauts from the ranks of the Gemini, Apollo, Skylab, Apollo-Soyuz, and Space Shuttle programs.

  16. Space Shuttle Abort Evolution

    NASA Technical Reports Server (NTRS)

    Henderson, Edward M.; Nguyen, Tri X.

    2011-01-01

    This paper documents some of the evolutionary steps in developing a rigorous Space Shuttle launch abort capability. The paper addresses the abort strategy during the design and development and how it evolved during Shuttle flight operations. The Space Shuttle Program made numerous adjustments in both the flight hardware and software as the knowledge of the actual flight environment grew. When failures occurred, corrections and improvements were made to avoid a reoccurrence and to provide added capability for crew survival. Finally some lessons learned are summarized for future human launch vehicle designers to consider.

  17. Environment and the Space Program

    ERIC Educational Resources Information Center

    Schirra, Walter W., Jr.

    1969-01-01

    Data collected at projected space station will contribute to solution of environmental problems on earth and will enable more efficient use of earth's natural resources. Adapted from commencement address delivered at Newark College of Engineering, June 5, 1969. (WM)

  18. Space station needs, attributes, and architectural options study. Volume 1: Missions and requirements

    NASA Technical Reports Server (NTRS)

    1983-01-01

    Science and applications, NOAA environmental observation, commercial resource observations, commercial space processing, commercial communications, national security, technology development, and GEO servicing are addressed. Approach to time phasing of mission requirements, system sizing summary, time-phased user mission payload support, space station facility requirements, and integrated time-phased system requirements are also addressed.

  19. The role of tethers on space station

    NASA Technical Reports Server (NTRS)

    Vontiesenhausen, G. (Editor)

    1985-01-01

    The results of research and development that addressed the usefulness of tether applications in space, particularly for space station are described. A well organized and structured effort of considerable magnitude involving NASA, industry and academia have defined the engineering and technological requirements of space tethers and their broad range of economic and operational benefits. The work directed by seven NASA Field Centers is consolidated and structured to cover the general and specific roles of tethers in space as they apply to NASA's planned space station. This is followed by a description of tether systems and operations. A summary of NASA's plans for tether applications in space for years to come is given.

  20. THOR contribution to space weather science

    NASA Astrophysics Data System (ADS)

    Vaivads, A.; Opgenoorth, H. J.; Retino, A.; Khotyaintsev, Y. V.; Soucek, J.; Valentini, F.; Escoubet, C. P.; Chen, C. H. K.; Vainio, R. O.; Fazakerley, A. N.; Lavraud, B.; Narita, Y.; Marcucci, M. F.; Kucharek, H.; Bale, S. D.; Moore, T. E.; Kistler, L. M.; Samara, M.

    2016-12-01

    Turbulence Heating ObserveR - THOR is a mission proposal to study energy dissipation and particle acceleration in turbulent space plasma. THOR will focus on turbulent plasma in pristine solar wind, bow shock and magnetosheath. The orbit of THOR is tuned to spend long times in those regions allowing THOR to obtain high resolution data sets that can be used also for space weather science. Here we will discuss the space weather science questions that can be addressed and significantly advanced using THOR. Link to THOR: http://thor.irfu.se.

  1. In-Space Assembly Capability Assessment for Potential Human Exploration and Science Applications

    NASA Technical Reports Server (NTRS)

    Jefferies, Sharon A.; Jones, Christopher A.; Arney, Dale C.; Stillwagen, Frederic H.; Chai, Patrick R.; Hutchinson, Craig D.; Stafford, Matthew A.; Moses, Robert W.; Dempsey, James A.; Rodgers, Erica M.; hide

    2017-01-01

    Human missions to Mars present several major challenges that must be overcome, including delivering multiple large mass and volume elements, keeping the crew safe and productive, meeting cost constraints, and ensuring a sustainable campaign. Traditional methods for executing human Mars missions minimize or eliminate in-space assembly, which provides a narrow range of options for addressing these challenges and limits the types of missions that can be performed. This paper discusses recent work to evaluate how the inclusion of in-space assembly in space mission architectural concepts could provide novel solutions to address these challenges by increasing operational flexibility, robustness, risk reduction, crew health and safety, and sustainability. A hierarchical framework is presented to characterize assembly strategies, assembly tasks, and the required capabilities to assemble mission systems in space. The framework is used to identify general mission system design considerations and assembly system characteristics by assembly strategy. These general approaches are then applied to identify potential in-space assembly applications to address each challenge. Through this process, several focus areas were identified where applications of in-space assembly could affect multiple challenges. Each focus area was developed to identify functions, potential assembly solutions and operations, key architectural trades, and potential considerations and implications of implementation. This paper helps to identify key areas to investigate were potentially significant gains in addressing the challenges with human missions to Mars may be realized, and creates a foundation on which to further develop and analyze in-space assembly concepts and assembly-based architectures.

  2. University of Tennessee Center for Space Transportation and Applied Research (CSTAR)

    NASA Astrophysics Data System (ADS)

    1995-10-01

    The Center for Space Transportation and Applied Research had projects with space applications in six major areas: laser materials processing, artificial intelligence/expert systems, space transportation, computational methods, chemical propulsion, and electric propulsion. The closeout status of all these projects is addressed.

  3. University of Tennessee Center for Space Transportation and Applied Research (CSTAR)

    NASA Technical Reports Server (NTRS)

    1995-01-01

    The Center for Space Transportation and Applied Research had projects with space applications in six major areas: laser materials processing, artificial intelligence/expert systems, space transportation, computational methods, chemical propulsion, and electric propulsion. The closeout status of all these projects is addressed.

  4. Effects of Four Formulations of Prostaglandin Analogs on Eye Surface Cells. A Comparative Study

    PubMed Central

    Pérez-Roca, Fernando; Rodrigo-Morales, Esther; Garzón, Ingrid; Oliveira, Ana-Celeste; Martín-Piedra, Miguel-Ángel; Carriel, Víctor; Ortiz-Pérez, Ana-Isabel; Sánchez-Montesinos, Indalecio; Campos, Antonio; Alaminos, Miguel

    2015-01-01

    We evaluated the cytotoxic effects of four prostaglandin analogs (PGAs) used to treat glaucoma. First we established primary cultures of conjunctival stromal cells from healthy donors. Then cell cultures were incubated with different concentrations (0, 0.1, 1, 5, 25, 50 and 100%) of commercial formulations of bimatoprost, tafluprost, travoprost and latanoprost for increasing periods (5 and 30 min, 1 h, 6 h and 24 h) and cell survival was assessed with three different methods: WST-1, MTT and calcein/AM-ethidium homodimer-1 assays. Our results showed that all PGAs were associated with a certain level of cell damage, which correlated significantly with the concentration of PGA used, and to a lesser extent with culture time. Tafluprost tended to be less toxic than bimatoprost, travoprost and latanoprost after all culture periods. The results for WST-1, MTT and calcein/AM-ethidium homodimer-1 correlated closely. When the average lethal dose 50 was calculated, we found that the most cytotoxic drug was latanoprost, whereas tafluprost was the most sparing of the ocular surface in vitro. These results indicate the need to design novel PGAs with high effectiveness but free from the cytotoxic effects that we found, or at least to obtain drugs that are functional at low dosages. The fact that the commercial formulation of tafluprost used in this work was preservative-free may support the current tendency to eliminate preservatives from eye drops for clinical use. PMID:26067827

  5. Imprint of Rupture Directivity From Ground Motions of the 24 August 2016 Mw6.2 Central Italy Earthquake

    NASA Astrophysics Data System (ADS)

    Ren, Yefei; Wang, Hongwei; Wen, Ruizhi

    2017-12-01

    An Mw6.2 earthquake occurred in Central Italy on 24 August 2016. The objective of this study was to reveal the imprint of rupture directivity using the strong motion recordings. The strong motion stations were separated into two groups: southeast (SE) and northwest (NW). The effects of rupture directivity on the peak ground acceleration (PGA), peak ground velocity (PGV), and pseudo spectral acceleration (PSA) were investigated. The observed values of these parameters were compared with predicted values derived from ground motion prediction equations. The results showed that the residuals between the observed and predicted PGAs, PGVs, and PSAs at periods of T < 1 s were correlated significantly with azimuth angle and generally larger in the NW sector, reflecting that the observed PGAs, PGVs, and short-period PSAs in the NW sector were generally larger than observed in the SE sector. These phenomena are accordant with the theoretical law that the rupture directivity causes higher amplitudes in the forward direction compared with the backward direction. Finally, selected source rupture parameters were inverted using PGAs and PGVs. This revealed that the rupture was predominantly unilateral rupture, the major rupture was likely at an azimuth of 360°, and the length of the major rupture was proportional to 70%-100% of the total ruptured fault, confirming that rupture directivity caused the differences in the ground motions observed in the SE and NW sectors.

  6. Space resources. Volume 3: Materials

    NASA Technical Reports Server (NTRS)

    Mckay, Mary Fae (Editor); Mckay, David S. (Editor); Duke, Michael B. (Editor)

    1992-01-01

    Space Resources addresses the issues of using space resources to support life on the Moon and for exploration of Mars. This volume - Materials - covers a number of technical and policy issues regarding the materials in space (mainly lunar and asteroidal) which can be used to support space operations. In part 1, nature and location of these materials, exploration strategy, evaluation criteria, and the technical means to collect or mine these materials is discussed. A baseline lunar mine and the basics of asteroid mining are presented and critiqued. In part 2, the beneficiation of ores and the extraction of such materials as oxygen, metals, and the makings of concrete are discussed. In part 3, the manufacturing and fabrication of nonterrestrial products are discussed. The economic tradeoffs between bringing needed products from Earth and making these products on location in space is considered.

  7. The aerobraking space transfer vehicle

    NASA Technical Reports Server (NTRS)

    Andrews, Glen; Carpenter, Brian; Corns, Steve; Harris, Robert; Jun, Brian; Munro, Bruce; Pulling, Eric; Sekhon, Amrit; Welton, Walt; Jakubowski, A.

    1990-01-01

    With the advent of the Space Station and the proposed Geosynchronous Operation Support Center (GeoShack) in the early 21st century, the need for a cost effective, reusable orbital transport vehicle has arisen. This transport vehicle will be used in conjunction with the Space Shuttle, the Space Station, and GeoShack. The vehicle will transfer mission crew and payloads between low earth and geosynchronous orbits with minimal cost. Recent technological advances in thermal protection systems such as those employed in the Space Shuttle have made it possible to incorporate and aerobrake on the transfer vehicle to further reduce transport costs. The research and final design configuration of the aerospace senior design team from VPISU, working in conjunction with NASA, are presented. The topic of aerobraking and focuses on the evolution of an Aerobraking Space Transfer Vehicle (ASTV), is addressed.

  8. Performance of High-Reliability Space-Qualified Processors Implementing Software Defined Radios

    DTIC Science & Technology

    2014-03-01

    ADDRESS(ES) AND ADDRESS(ES) Naval Postgraduate School, Department of Electrical and Computer Engineering, 833 Dyer Road, Monterey, CA 93943-5121 8...Chairman Jeffrey D. Paduan Electrical and Computer Engineering Dean of Research iii THIS PAGE...capability. Radiation in space poses a considerable threat to modern microelectronic devices, in particular to the high-performance low-cost computing

  9. Ethical and medical dilemmas of space tourism

    NASA Astrophysics Data System (ADS)

    Marsh, Melinda

    Space tourism is an important new venture, however it raises several issues that must be addressed; namely, the medical implications associated with space flight and potential for ethical problems surrounding the safety of such travel. It seems highly likely that businesses involved in space tourism could find themselves liable for any passenger deaths or injuries, if they are found to have been negligent. This paper, therefore, discusses such issues as the medical facilities that need to be made available on board a space facility, and the companies' duty to disclose to potential passengers the risks associated with microgravity and the likelihood of space sickness, loss of bone density, disease, and pregnancy.

  10. The STS-95 crew addresses KSC employees in the Training Auditorium

    NASA Technical Reports Server (NTRS)

    1998-01-01

    In the Kennedy Space Center (KSC) Training Auditorium, STS-95 Commander Curtis L. Brown Jr. (at podium) addresses KSC employees who were invited to hear the STS-95 crew describe their experiences during their successful mission dedicated to microgravity research and to view a videotape of the highlights of the mission. The other STS-95 crew members are (seated, from left to right) Pilot Steven W. Lindsey; Mission Specialist and Payload Commander Stephen K. Robinson; Mission Specialists Scott E. Parazynski and Pedro Duque, with the European Space Agency (ESA); and Payload Specialists Chiaki Mukai, with the National Space Development Agency of Japan (NASDA), and John H. Glenn Jr., a senator from Ohio and one of the original seven Project Mercury astronauts. Later in the afternoon, the crew will participate in a parade down State Road A1A in nearby Cocoa Beach, reminiscent of those held after missions during the Mercury Program.

  11. Earth Observatory Satellite system definition study. Report no. 6: Space shuttle interfaces/utilization

    NASA Technical Reports Server (NTRS)

    1974-01-01

    The impacts of achieving compatibility of the Earth Observatory Satellite (EOS) with the space shuttle and the potential benefits of space shuttle utilization are discussed. Mission requirements and mission suitability, including the effects of multiple spacecraft missions, are addressed for the full spectrum of the missions. Design impact is assessed primarily against Mission B, but unique requirements reflected by Mission A, B, and C are addressed. The preliminary results indicated that the resupply mission had the most pronounced impact on spacecraft design and cost. Program costs are developed for the design changes necessary to achieve EOS-B compatibility with Space Shuttle operations. Non-recurring and recurring unit costs are determined, including development, test, ground support and logistics, and integration efforts. Mission suitability is addressed in terms of performance, volume, and center of gravity compatibility with both space shuttle and conventional launch vehicle capabilities.

  12. [Research in space environmental medicine: review and future].

    PubMed

    Yu, Xue-jun; Qi, Zhang-nian; Chang, Shao-yong; Liang, Hong; Liu, Hong-tao

    2003-01-01

    The investigation progress of space environmental medicine in China is summarized. Then, the application of space environmental medicine to formulating medical requirements for the crew module design, and performing medical evaluation for Shenzhou spaceship are addressed. Additionally, the medical and engineering means for the protection from harmful agents during spaceflight is illustrated. Finally, the objective and challenge of space environment medicine faced in the future research in China are presented.

  13. Human Space Flight Plans Committee

    NASA Image and Video Library

    2009-06-16

    Douglas R. Cooke, Associate Administrator for Exploration Systems Mission Directorate, at podium, addresses the Human Space Flight Review Committee, Wednesday, June 17, 2009, at the Carnegie Institution in Washington. The panel will examine ongoing and planned NASA development activities and potential alternatives in order to present options for advancing a safe, innovative, affordable and sustainable human space flight program following the space shuttle's retirement. The committee wil present its results by August 2009. Seated from left on the panel is Jeffrey Greason, Bohdan Bejmuk, Dr. Leroy Chiao, Norman Augustine (chair), Dr. Wanda Austin, Dr. Edward Crawley, Dr. Christopher Chyba and Philip McAlister. Photo Credit: (NASA/Paul E. Alers)

  14. Human Space Flight Plans Committee

    NASA Image and Video Library

    2009-06-16

    U.S. Sen. Bill Nelson, D-Fla., at podium, addresses members of the Human Space Flight Review Committee, Wednesday, June 17, 2009, at the Carnegie Institution in Washington. Seated from left are Jeffrey Greason, Bohdan Bejmuk, Dr. Leroy Chiao, Norman Augustine (chair), Dr. Wanda Austin, Dr. Edward Crawley, Dr. Christopher Chyba and Philip McAlister. The panel will examine ongoing and planned NASA development activities and potential alternatives in order to present options for advancing a safe, innovative, affordable and sustainable human space flight program following the space shuttle's retirement. The committee wil present its results by August 2009. Photo Credit: (NASA/Paul E. Alers)

  15. Habitability and Performance Issues for Long Duration Space Flights

    NASA Technical Reports Server (NTRS)

    Whitmore, Mihriban; McQuilkin, Meredith L.; Woolford, Barbara J.

    1997-01-01

    Advancing technology, coupled with the desire to explore space has resulted in increasingly longer manned space missions. Although the Long Duration Space Flights (LDSF) have provided a considerable amount of scientific research on human ability to function in extreme environments, findings indicate long duration missions take a toll on the individual, both physiologically and psychologically. These physiological and psychological issues manifest themselves in performance decrements; and could lead to serious errors endangering the mission, spacecraft and crew. The purpose of this paper is to document existing knowledge of the effects of LDSF on performance, habitability, and workload and to identify and assess potential tools designed to address these decrements as well as propose an implementation plan to address the habitability, performance and workload issues.

  16. Habitability and performance issues for long duration space flights.

    PubMed

    Whitmore, M; McQuilkin, M L; Woolford, B J

    1998-09-01

    Advancing technology, coupled with the desire to explore space has resulted in increasingly longer manned space missions. Although the Long Duration Space Flights (LDSF) have provided a considerable amount of scientific research on human ability to function in extreme environments, findings indicate long duration missions take a toll on the individual, both physiologically and psychologically. These physiological and psychological issues manifest themselves in performance decrements; and could lead to serious errors endangering the mission, spacecraft and crew. The purpose of this paper is threefold: 1) to document existing knowledge of the effects of LDSF on performance, habitability, and workload, 2) to identify and assess potential tools designed to address these decrements, and 3) to propose an implementation plan to address these habitability, performance and workload issues.

  17. Implementation of ionizing radiation environment requirements for Space Station

    NASA Technical Reports Server (NTRS)

    Boeder, Paul A.; Watts, John W.

    1993-01-01

    Proper functioning of Space Station hardware requires that the effects of high-energy ionizing particles from the natural environment and (possibly) from man-made sources be considered during design. At the Space Station orbit of 28.5-deg inclination and 330-440 km altitude, geomagnetically trapped protons and electrons contribute almost all of the dose, while galactic cosmic rays and anomalous cosmic rays may produce Single Event Upsets (SEUs), latchups, and burnouts of microelectronic devices. Implementing ionizing radiation environment requirements for Space Station has been a two part process, including the development of a description of the environment for imposing requirements on the design and the development of a control process for assessing how well the design addresses the effects of the ionizing radiation environment. We will review both the design requirements and the control process for addressing ionizing radiation effects on Space Station.

  18. Analysis of space systems for the space disposal of nuclear waste follow-on study. Volume 2: Technical report

    NASA Technical Reports Server (NTRS)

    1982-01-01

    The space option for disposal of certain high-level nuclear wastes in space as a complement to mined geological repositories is studied. A brief overview of the study background, scope, objective, guidelines and assumptions, and contents is presented. The determination of the effects of variations in the waste mix on the space systems concept to allow determination of the space systems effect on total system risk benefits when used as a complement to the DOE reference mined geological repository is studied. The waste payload system, launch site, launch system, and orbit transfer system are all addressed. Rescue mission requirements are studied. The characteristics of waste forms suitable for space disposal are identified. Trajectories and performance requirements are discussed.

  19. Dual-Use Partnership Addresses Performance Problems with "Y" Pattern Control Valves

    NASA Technical Reports Server (NTRS)

    Bailey, John W.

    2004-01-01

    A Dual-Use Cooperative Agreement between the Propulsion Test Directorate (PTD) at Stennis Space Center (SSC) and Oceaneering Reflange, Inc. of Houston, TX has produced an improved 'Y' pattern split-body control valve for use in the propulsion test facilities at Stennis Space Center. The split-body, or clamped bonnet technology, provides for a 'cleaner' valve design featuring enhanced performance and increased flow capacity with extended life expectancy. Other points addressed by the partnership include size, weight and costs. Overall size and weight of each valve will be reduced by 50% compared to valves currently in use at SSC. An initial procurement of two 10 inch valves will result in an overall cost reduction of 15% or approximately $50,000 per valve.

  20. The Gateway Garden — A Prototype Food Production Facility for Deep Space Exploration

    NASA Astrophysics Data System (ADS)

    Fritsche, R. F.; Romeyn, M. W.; Massa, G.

    2018-02-01

    CIS-lunar space provides a unique opportunity to perform deep space microgravity crop science research while also addressing and advancing food production technologies that will be deployed on the Deep Space Transport.

  1. Semi-Autonomous Rodent Habitat for Deep Space Exploration

    NASA Technical Reports Server (NTRS)

    Alwood, J. S.; Shirazi-Fard, Y.; Pletcher, D.; Globus, R.

    2018-01-01

    NASA has flown animals to space as part of trailblazing missions and to understand the biological responses to spaceflight. Mice traveled in the Lunar Module with the Apollo 17 astronauts and now mice are frequent research subjects in LEO on the ISS. The ISS rodent missions have focused on unravelling biological mechanisms, better understanding risks to astronaut health, and testing candidate countermeasures. A critical barrier for longer-duration animal missions is the need for humans-in-the-loop to perform animal husbandry and perform routine tasks during a mission. Using autonomous or telerobotic systems to alleviate some of these tasks would enable longer-duration missions to be performed at the Deep Space Gateway. Rodent missions performed using the Gateway as a platform could address a number of critical risks identified by the Human Research Program (HRP), as well as Space Biology Program questions identified by NRC Decadal Survey on Biological and Physical Sciences in Space, (2011). HRP risk areas of potentially greatest relevance that the Gateway rodent missions can address include those related to visual impairment (VIIP) and radiation risks to central nervous system, cardiovascular disease, as well as countermeasure testing. Space Biology focus areas addressed by the Gateway rodent missions include mechanisms and combinatorial effects of microgravity and radiation. The objectives of the work proposed here are to 1) develop capability for semi-autonomous rodent research in cis-lunar orbit, 2) conduct key experiments for testing countermeasures against low gravity and space radiation. The hardware and operations system developed will enable experiments at least one month in duration, which potentially could be extended to one year in duration. To gain novel insights into the health risks to crew of deep space travel (i.e., exposure to space radiation), results obtained from Gateway flight rodents can be compared to ground control groups and separate groups

  2. Space telerobotic systems: Applications and concepts

    NASA Technical Reports Server (NTRS)

    Jenkins, L.

    1987-01-01

    The definition of a variety of assembly, servicing, and maintenance missions has led to the generation of a number of space telerobot concepts. The remote operation of a space telerobot is seen as a means to increase astronaut productivity. Dexterous manipulator arms are controlled from the Space Shuttle Orbiter cabin or a Space Station module. Concepts for the telerobotic work system have been developed by the Lyndon B. Johnson Space Center through contracts with the Grumman Aerospace Corporation and Marin Marietta Corporation. These studies defined a concept for a telerobot with extravehicular activity (EVA) astronaut equivalent capability that would be controlled from the Space Shuttle. An evolutionary development of the system is proposed as a means of incorporating technology advances. Early flight testing is seen as needed to address the uncertainties of robotic manipulation in space. Space robotics can be expected to spin off technology to terrestrial robots, particularly in hazardous and unstructured applications.

  3. Space resources. Volume 4: Social concerns

    NASA Technical Reports Server (NTRS)

    Mckay, Mary Fae (Editor); Mckay, David S. (Editor); Duke, Michael B. (Editor)

    1992-01-01

    Space resources must be used to support life on the Moon and exploration of Mars. This volume, Social Concerns, covers some of the most important issues which must be addressed in any major program for the human exploration of space. The volume begins with a consideration of the economics and management of large scale space activities. Then the legal aspects of these activities are discussed, particularly the interpretation of treaty law with respect to the Moon and asteroids. The social and cultural issues of moving people into space are considered in detail, and the eventual emergence of a space culture different from the existing culture is envisioned. The environmental issues raised by the development of space settlements are faced. Some innovative approaches are proposed to space communities and habitats and self-sufficiency is considered along with human safety at a lunar base or outpost.

  4. Quarantined Apollo 11 Astronauts Address by Hawaiian Governor

    NASA Technical Reports Server (NTRS)

    1969-01-01

    The Apollo 11 mission, the first manned lunar mission, launched from the Kennedy Space Center, Florida via the Marshall Space Flight Center (MSFC) developed Saturn V launch vehicle on July 16, 1969 and safely returned to Earth on July 24, 1969. Aboard the space craft were astronauts Neil A. Armstrong, commander; Michael Collins, Command Module (CM) pilot; and Edwin E. Aldrin Jr., Lunar Module (LM) pilot. The CM, piloted by Michael Collins remained in a parking orbit around the Moon while the LM, named 'Eagle'', carrying astronauts Neil Armstrong and Edwin Aldrin, landed on the Moon. During 2½ hours of surface exploration, the crew collected 47 pounds of lunar surface material for analysis back on Earth. The recovery operation took place in the Pacific Ocean where Navy para-rescue men recovered the capsule housing the 3-man Apollo 11 crew. The crew was airlifted to safety aboard the U.S.S. Hornet recovery ship, where they were quartered in a Mobile Quarantine Facility (MQF) for 21 days. The recovery vessel docked in Pearl Harbor Hawaii, where the occupied MQF was transferred for transport to the to NASA Manned Spacecraft Center (MSC) Lunar Receiving Laboratory in Houston, Texas. In this photo the quarantined astronauts are addressed by Hawaiian Governor John Burns upon their arrival at Pearl Harbor.

  5. Space station needs, attributes and architectural options study. Volume 1: Executive study

    NASA Technical Reports Server (NTRS)

    1983-01-01

    Mission identification and validation, the benefits of a manned presence in space; attributes and architectures; time-phased mission and system requirements imposed on the space station; orbit selection; space station architectural options; technology selection; and program planning are addressed.

  6. U.S. view of human problems to be addressed for long duration space flights. [physiological and psychological effects

    NASA Technical Reports Server (NTRS)

    Berry, C. A.

    1973-01-01

    The Russian and American space programs have consisted of several thousands of hours of exposure of man to the space environment. In spite of numerous biological phenomena of adaptation observed, the space travellers have displayed, after their return, no enduring pathological effect. Although the usable data remain too limited to reflect fully the effects of space flight, it is possible to sketch the biological responses in the absence of gravity and to define the work bases for the future. Beyond its basic physiological effects, weightlessness has operational consequences in the daily life of the astronauts. These consequences will be still more evident during missions of long duration. The conclusions drawn in flight as well as on the ground are reviewed, and future requirements concerning prolonged flights are outlined. The gaps in actual knowledge are discussed and solutions are suggested. The problems of habitability are considered, particularly those which remain at present without satisfactory solutions: psychological responses to a confined life, cleaning, hygiene, and used material.

  7. "Journal of Space Economics - theoretical and practical considerations"

    NASA Astrophysics Data System (ADS)

    Beldavs, VZ; Sommers, J.

    2017-09-01

    This paper will address theoretical and practical considerations for the emerging field of space economics and propose an editorial policy for a journal of space economics to provide a forum for the discussion of space economics issues. It is anticipated that initially the Journal of Space Economics will operate from two different nodes one offering a European perspective (University of Latvia) and the other a U.S. perspective (University of Wisconsin at Milwaukee). The first edition of the Journal of Space Economics will focus on issues likely to arise during the course of the International Lunar Decade 2020-2030.

  8. Convocation address.

    PubMed

    Swaminathan, M S

    1998-07-01

    This address delivered to the 40th convocation of the International Institute for Population Sciences in India in 1998 opens by noting that a shortage of jobs for youth is India's most urgent problem but that the problems that attend the increasing numbers of elderly also require serious attention. The address then notes that the Earth's population is growing at an unsustainable rate while economic inequities among countries are increasing, so that, while intellectual property is becoming the most important asset in developed countries, nutritional anemia among pregnant women causes their offspring to be unable to achieve their full intellectual potential from birth. Next, the address uses a discussion of the 18th-century work on population of the Marquis de Condorcet and of Thomas Malthus to lead into a consideration of estimated increased needs of countries like India and China to import food grains in the near future. Next, the progress of demographic transition in Indian states is covered and applied to Mahbub ul Haq's measure of human deprivation developed for and applied to the region of the South Asian Association for Regional Cooperation (India, Pakistan, Bangladesh, Nepal, Sri Lanka, Bhutan, and the Maldives). The address continues by reiterating some of the major recommendations forwarded by a government of India committee charged in 1995 with drafting a national population policy. Finally, the address suggests specific actions that could be important components of the Hunger-Free India Programme and concludes that all success rests on the successful implementation of appropriate population policies.

  9. Space tourism optimized reusable spaceplane design

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

    Penn, J.P.; Lindley, C.A.

    Market surveys suggest that a viable space tourism industry will require flight rates about two orders of magnitude higher than those required for conventional spacelift. Although enabling round-trip cost goals for a viable space tourism business are about {dollar_sign}240 per pound ({dollar_sign}529/kg), or {dollar_sign}72,000 per passenger round-trip, goals should be about {dollar_sign}50 per pound ({dollar_sign}110/kg) or approximately {dollar_sign}15,000 for a typical passenger and baggage. The lower price will probably open space tourism to the general population. Vehicle reliabilities must approach those of commercial aircraft as closely as possible. This paper addresses the development of spaceplanes optimized for the ultra-high flightmore » rate and high reliability demands of the space tourism mission. It addresses the fundamental operability, reliability, and cost drivers needed to satisfy this mission need. Figures of merit similar to those used to evaluate the economic viability of conventional commercial aircraft are developed, including items such as payload/vehicle dry weight, turnaround time, propellant cost per passenger, and insurance and depreciation costs, which show that infrastructure can be developed for a viable space tourism industry. A reference spaceplane design optimized for space tourism is described. Subsystem allocations for reliability, operability, and costs are made and a route to developing such a capability is discussed. The vehicle{close_quote}s ability to also satisfy the traditional spacelift market is shown. {copyright} {ital 1997 American Institute of Physics.}« less

  10. Space Shuttle Strategic Planning Status

    NASA Technical Reports Server (NTRS)

    Henderson, Edward M.; Norbraten, Gordon L.

    2006-01-01

    The Space Shuttle Program is aggressively planning the Space Shuttle manifest for assembling the International Space Station and servicing the Hubble Space Telescope. Implementing this flight manifest while concurrently transitioning to the Exploration architecture creates formidable challenges; the most notable of which is retaining critical skills within the Shuttle Program workforce. The Program must define a strategy that will allow safe and efficient fly-out of the Shuttle, while smoothly transitioning Shuttle assets (both human and facility) to support early flight demonstrations required in the development of NASA s Crew Exploration Vehicle (CEV) and Crew and Cargo Launch Vehicles (CLV). The Program must accomplish all of this while maintaining the current level of resources. Therefore, it will be necessary to initiate major changes in operations and contracting. Overcoming these challenges will be essential for NASA to fly the Shuttle safely, accomplish the President s "Vision for Space Exploration," and ultimately meet the national goal of maintaining a robust space program. This paper will address the Space Shuttle Program s strategy and its current status in meeting these challenges.

  11. Space Shuttle Strategic Planning Status

    NASA Technical Reports Server (NTRS)

    Norbraten, Gordon L.; Henderson, Edward M.

    2007-01-01

    The Space Shuttle Program is aggressively flying the Space Shuttle manifest for assembling the International Space Station and servicing the Hubble Space Telescope. Completing this flight manifest while concurrently transitioning to the Exploration architecture creates formidable challenges; the most notable of which is retaining critical skills within the Shuttle Program workforce. The Program must define a strategy that will allow safe and efficient fly-out of the Shuttle, while smoothly transitioning Shuttle assets (both human and facility) to support early flight demonstrations required in the development of NASA's Crew Exploration Vehicle (Orion) and Crew and Cargo Launch Vehicles (Ares I). The Program must accomplish all of this while maintaining the current level of resources. Therefore, it will be necessary to initiate major changes in operations and contracting. Overcoming these challenges will be essential for NASA to fly the Shuttle safely, accomplish the Vision for Space Exploration, and ultimately meet the national goal of maintaining a robust space program. This paper will address the Space Shuttle Program s strategy and its current status in meeting these challenges.

  12. Space station needs, attributes and architectural options study. Volume 2: Mission definition

    NASA Technical Reports Server (NTRS)

    1983-01-01

    The space applications and science programs appropriate to the era beyond 1990, those user missions which can utilize the Space Station to an advantage, and user mission concepts so that requirements, which will drive the Space Stations (SS) design are addressed.

  13. An Inquiry-Based Approach to Teaching Space Weather to Undergraduate Non-Science Majors

    NASA Astrophysics Data System (ADS)

    Cade, W. B., III

    2016-12-01

    Undergraduate Space Weather education is an important component of creating a society that is knowledgeable about space weather and its societal impacts. The space physics community has made great strides in providing academic education for students, typically physics and engineering majors, who are interested in pursuing a career in the space sciences or space weather. What is rarely addressed, however, is providing a broader space weather education to undergraduate students as a whole. To help address this gap, I have created an introductory space weather course for non-science majors, with the idea of expanding exposure to space weather beyond the typical physics and engineering students. The philosophy and methodologies used in this course will be presented, as well as the results of the first attempts to teach it. Using an approach more tailored to the non-scientist, courses such as this can be an effective means of broadening space weather education and outreach.

  14. A Technology Plan for Enabling Commercial Space Business

    NASA Technical Reports Server (NTRS)

    Lyles, Garry M.

    1997-01-01

    The National Aeronautics and Space Administration's (NASA) Advanced Space Transportation Program is a customer driven, focused technology program that supports the NASA Strategic Plan and considers future commercial space business projections. The initial cycle of the Advanced Space Transportation Program implementation planning was conducted from December 1995 through February 1996 and represented increased NASA emphasis on broad base technology development with the goal of dramatic reductions in the cost of space transportation. The second planning cycle, conducted in January and February 1997, updated the program implementation plan based on changes in the external environment, increased maturity of advanced concept studies, and current technology assessments. The program has taken a business-like approach to technology development with a balanced portfolio of near, medium, and long-term strategic targets. Strategic targets are influenced by Earth science, space science, and exploration objectives as well as commercial space markets. Commercial space markets include those that would be enhanced by lower cost transportation as well as potential markets resulting in major increases in space business induced by reductions in transportation cost. The program plan addresses earth-to-orbit space launch, earth orbit operations and deep space systems. It also addresses all critical transportation system elements; including structures, thermal protection systems, propulsion, avionics, and operations. As these technologies are matured, integrated technology flight experiments such as the X-33 and X-34 flight demonstrator programs support near-term (one to five years) development or operational decisions. The Advanced Space Transportation Program and the flight demonstrator programs combine business planning, ground-based technology demonstrations and flight demonstrations that will permit industry and NASA to commit to revolutionary new space transportation systems

  15. An expert systems application to space base data processing

    NASA Technical Reports Server (NTRS)

    Babb, Stephen M.

    1988-01-01

    The advent of space vehicles with their increased data requirements are reflected in the complexity of future telemetry systems. Space based operations with its immense operating costs will shift the burden of data processing and routine analysis from the space station to the Orbital Transfer Vehicle (OTV). A research and development project is described which addresses the real time onboard data processing tasks associated with a space based vehicle, specifically focusing on an implementation of an expert system.

  16. Use of automation and robotics for the Space Station

    NASA Technical Reports Server (NTRS)

    Cohen, Aaron

    1987-01-01

    An overview is presented of the various possible applications of automation and robotics technology to the Space Station system. The benefits of such technology to the private sector and the national economy are addressed. NASA's overall approach to incorporating advanced technology into the Space Station is examined.

  17. Space Station Freedom: A foothold on the future

    NASA Technical Reports Server (NTRS)

    1989-01-01

    An overview of the Space Station Freedom is given. Its modules are discussed and illustrated along with its microgravity research facilities. These facilities include the advanced protein crystal growth facility, the containerless processing facility, a furnace facility, a combustion facility, and a fluid physics/dynamics facility. The topic of living in space is also addressed.

  18. URISA Address Standard

    EPA Pesticide Factsheets

    The Urban and Regional Information Systems Association (URISA) standard for addresses. The document covers thoroughfare, landmark, and postal addresses within the United States, including its outlying territories and possessions.

  19. Deep Space Test Bed for Radiation Studies

    NASA Technical Reports Server (NTRS)

    Adams, James H.; Christl, Mark; Watts, John; Kuznetsov, Eugene; Lin, Zi-Wei

    2006-01-01

    A key factor affecting the technical feasibility and cost of missions to Mars or the Moon is the need to protect the crew from ionizing radiation in space. Some analyses indicate that large amounts of spacecraft shielding may be necessary for crew safety. The shielding requirements are driven by the need to protect the crew from Galactic cosmic rays (GCR). Recent research activities aimed at enabling manned exploration have included shielding materials studies. A major goal of this research is to develop accurate radiation transport codes to calculate the shielding effectiveness of materials and to develop effective shielding strategies for spacecraft design. Validation of these models and calculations must be addressed in a relevant radiation environment to assure their technical readiness and accuracy. Test data obtained in the deep space radiation environment can provide definitive benchmarks and yield uncertainty estimates of the radiation transport codes. The two approaches presently used for code validation are ground based testing at particle accelerators and flight tests in high-inclination low-earth orbits provided by the shuttle, free-flyer platforms, or polar-orbiting satellites. These approaches have limitations in addressing all the radiation-shielding issues of deep space missions in both technical and practical areas. An approach based on long duration high altitude polar balloon flights provides exposure to the galactic cosmic ray composition and spectra encountered in deep space at a lower cost and with easier and more frequent access than afforded with spaceflight opportunities. This approach also results in shorter development times than spaceflight experiments, which is important for addressing changing program goals and requirements.

  20. Power technologies and the space future

    NASA Technical Reports Server (NTRS)

    Faymon, Karl A.; Fordyce, J. Stuart; Brandhorst, Henry W., Jr.

    1991-01-01

    Advancements in space power and energy technologies are critical to serve space development needs and help solve problems on Earth. The availability of low cost power and energy in space will be the hallmark of this advance. Space power will undergo a dramatic change for future space missions. The power systems which have served the U.S. space program so well in the past will not suffice for the missions of the future. This is especially true if the space commercialization is to become a reality. New technologies, and new and different space power architectures and topologies will replace the lower power, low-voltage systems of the past. Efficiencies will be markedly improved, specific powers will be greatly increased, and system lifetimes will be markedly extended. Space power technology is discussed - its past, its current status, and predictions about where it will go in the future. A key problem for power and energy is its cost of affordability. Power must be affordable or it will not serve future needs adequately. This aspect is also specifically addressed.

  1. National Space Biomedical Research Institute

    NASA Technical Reports Server (NTRS)

    1998-01-01

    The National Space Biomedical Research Institute (NSBRI) sponsors and performs fundamental and applied space biomedical research with the mission of leading a world-class, national effort in integrated, critical path space biomedical research that supports NASA's Human Exploration and Development of Space (HEDS) Strategic Plan. It focuses on the enabling of long-term human presence in, development of, and exploration of space. This will be accomplished by: designing, implementing, and validating effective countermeasures to address the biological and environmental impediments to long-term human space flight; defining the molecular, cellular, organ-level, integrated responses and mechanistic relationships that ultimately determine these impediments, where such activity fosters the development of novel countermeasures; establishing biomedical support technologies to maximize human performance in space, reduce biomedical hazards to an acceptable level, and deliver quality medical care; transferring and disseminating the biomedical advances in knowledge and technology acquired through living and working in space to the benefit of mankind in space and on Earth, including the treatment of patients suffering from gravity- and radiation-related conditions on Earth; and ensuring open involvement of the scientific community, industry, and the public at large in the Institute's activities and fostering a robust collaboration with NASA, particularly through Johnson Space Center.

  2. Space Weather Research: Indian perspective

    NASA Astrophysics Data System (ADS)

    Bhardwaj, Anil; Pant, Tarun Kumar; Choudhary, R. K.; Nandy, Dibyendu; Manoharan, P. K.

    2016-12-01

    Space weather, just like its meteorological counterpart, is of extreme importance when it comes to its impact on terrestrial near- and far-space environments. In recent years, space weather research has acquired an important place as a thrust area of research having implications both in space science and technology. The presence of satellites and other technological systems from different nations in near-Earth space necessitates that one must have a comprehensive understanding not only of the origin and evolution of space weather processes but also of their impact on technology and terrestrial upper atmosphere. To address this aspect, nations across the globe including India have been investing in research concerning Sun, solar processes and their evolution from solar interior into the interplanetary space, and their impact on Earth's magnetosphere-ionosphere-thermosphere system. In India, over the years, a substantial amount of work has been done in each of these areas by various agencies/institutions. In fact, India has been, and continues to be, at the forefront of space research and has ambitious future programs concerning these areas encompassing space weather. This review aims at providing a glimpse of this Indian perspective on space weather research to the reader and presenting an up-to-date status of the same.

  3. Space - The long range future

    NASA Technical Reports Server (NTRS)

    Von Puttkamer, J.

    1985-01-01

    Space exploration goals for NASA in the year 2000 time frame are examined. A lunar base would offer the opportunity for continuous earth viewing, further cosmogeochemical exploration and rudimentary steps at self-sufficiency in space. The latter two factors are also compelling reasons to plan a manned Mars base. Furthermore, competition and cooperation in a Mars mission and further interplanetary exploration is an attractive substitute for war. The hardware requirements for various configurations of Mars missions are briefly addressed, along with other, unmanned missions to the asteroid belt, Mercury, Venus, Jupiter and the moons of Jupiter and Saturn. Finally, long-range technological requirements for providing adequate living/working facilities for larger human populations in Space Station environments are summarized.

  4. Space Wire Upper Layer Protocols

    NASA Technical Reports Server (NTRS)

    Rakow, Glenn; Schnurr, Richard; Gilley, Daniel; Parkes, Steve

    2004-01-01

    This viewgraph presentation addresses efforts to provide a streamlined approach for developing SpaceWire Upper layer protocols which allows industry to drive standardized communication solutions for real projects. The presentation proposes a simple packet header that will allow flexibility in implementing a diverse range of protocols.

  5. Space Security Law

    NASA Astrophysics Data System (ADS)

    Blount, P. J.

    2017-06-01

    Since the very beginning of the space age, security has been the critical, overriding concern at the heart of both international and domestic space law regimes. While these regimes certainly encompass broader interests, such as commercial uses of outer space, they are built on a legal foundation that is largely intended to regularize interactions among space actors to ensure security, safety, and sustainability in the space environment. Space security law, as a result, has central goals of both maintaining peace and providing security as a public good for the benefit of humankind. The idea of security is a technical and political construct. The law is a tool that is used to articulate that construct as concept and operationalize it as a value. As such, space security law is a network of law and regulation that governs a wide variety of space activities. There are four broad categories that typify the various manifestations of space security law: international peace and security; national security; human security; and space safety and sustainability. International peace and security, the first category, is directly concerned with the international law and norms that have been adopted to decrease the risk of conflict between states. National security, category two, consists of domestic law that implements, at the national level, the obligations found in the first category as well as law that promotes other national security goals. Human security, the third category, is the loose set of law and policy directed at the use of space for the protection of human populations, such as disaster response and planetary protection. Finally, the fourth category, space safety and security, represents the emerging body of law and policy that seeks to protect the space environment through measures that address space debris and harmful contamination. Obviously, these categories overlap and laws can serve duplicative purposes, but this compartmentalization reveals much about the legal

  6. Space Station Software Recommendations

    NASA Technical Reports Server (NTRS)

    Voigt, S. (Editor)

    1985-01-01

    Four panels of invited experts and NASA representatives focused on the following topics: software management, software development environment, languages, and software standards. Each panel deliberated in private, held two open sessions with audience participation, and developed recommendations for the NASA Space Station Program. The major thrusts of the recommendations were as follows: (1) The software management plan should establish policies, responsibilities, and decision points for software acquisition; (2) NASA should furnish a uniform modular software support environment and require its use for all space station software acquired (or developed); (3) The language Ada should be selected for space station software, and NASA should begin to address issues related to the effective use of Ada; and (4) The space station software standards should be selected (based upon existing standards where possible), and an organization should be identified to promulgate and enforce them. These and related recommendations are described in detail in the conference proceedings.

  7. Considerations for Micro- and Nano-scale Space Payloads

    NASA Technical Reports Server (NTRS)

    Altemir, David A.

    1995-01-01

    This paper collects and summarizes many of the issues associated with the design, analysis, and flight of space payloads. However, highly miniaturized experimental packages are highly susceptible to the deleterious effects of induced contamination and charged particles when they are directly exposed to the space environment. These two problem areas are addressed and a general discussion of space environments, applicable design and analysis practices (with extensive references to the open literature) and programmatic considerations are presented.

  8. Space transfer concepts and analysis for exploration missions

    NASA Technical Reports Server (NTRS)

    1991-01-01

    Covered here is the second phase of a broad scoped and systematic study of space transfer concepts for human lunar and Mars missions. The study addressed issues that were raised during Phase 1, developed generic Mars missions profile analysis data, and conducted preliminary analysis of the Mars in-space transportation requirements and implementation from the Stafford Committee Synthesis Report.

  9. Industry and Government Officials Meet for Space Weather Summit

    NASA Astrophysics Data System (ADS)

    Intriligator, Devrie S.

    2008-10-01

    Commercial airlines, electric power grids, cell phones, handheld Global Positioning Systems: Although the Sun is less active due to solar minimum, the number and types of situations and technologies that can benefit from up-to-date space weather information are growing. To address this, the second annual summit of the Commercial Space Weather Interest Group (CSWIG) and the National Oceanic and Atmospheric Administration's Space Weather Prediction Center (SWPC) was held on 1 May 2008 during Space Weather Workshop (SWW), in Boulder, Colo.

  10. U.S. commercial space policies - Implications for developing countries

    NASA Technical Reports Server (NTRS)

    Gillam, Isaac T., IV; Stone, Barbara A.

    1987-01-01

    Recent U.S. policy developments on the commercial use of space are summarized and their international implications are considered. Attention is given to successful applications of technology developed in space, including an implantable cancer medication system, an implantable defibrillator, an ultrasonic residual stress monitor, and aquaculture treatment techniques. NASA projects involving bioengineering and rehabilitation applications are summarized, and plans to investigate high-temperature superconductors in space are addressed. Recent agreements entred into by NASA for space commercial studies are reviewed.

  11. High Frontier: The Journal for Space and Missile Professionals. Volume 7, Number 3, May 2011

    DTIC Science & Technology

    2011-05-01

    The Journal for Space & Missile Professionals. Volume 7, Number 3, May 2011 5a. CONTRACT NUMBER 5b. GRANT NUMBER 5c. PROGRAM ELEMENT NUMBER 6...AUTHOR(S) 5d. PROJECT NUMBER 5e. TASK NUMBER 5f. WORK UNIT NUMBER 7. PERFORMING ORGANIZATION NAME(S) AND ADDRESS(ES) Air Force Space Command (AFSPC...Ingols . . . . . . . . . . . . . . 9 Winning in Cyberspace: Air Force Space Command’s Approach to Defending the Air Force Network Ms. Jill Baker

  12. Winnicott and Arendt: bridging potential and political spaces.

    PubMed

    LaMothe, Ryan

    2014-04-01

    In this article, the author seeks to bridge analytic theory, which is used as an interpretive framework to understand patients' psychic lives, and political philosophy, which accounts for individuals living a life in common as citizens. Specifically, I address how we can understand the relation between the psychosocial space of a parent(s) and child interaction, which becomes part of the child's psychic life, and the political space between and within citizens. The underlying claim is that there is a correlation between political space and the space between parent and child. I use an emended version of Donald Winnicott's concept of potential space and political philosopher Hannah Arendt's notion of the space of appearances to suggest connections between the consulting room and political space.

  13. Space station needs, attributes and architectural options study. Volume 2: Mission analysis

    NASA Technical Reports Server (NTRS)

    1983-01-01

    Space environment studies, astrophysics, Earth environment, life sciences, and material sciences are discussed. Commercial communication, materials processing, and Earth observation missions are addressed. Technology development, space operations, scenarios of operational capability, mission requirements, and benefits analysis results for space-produced gallium arsenide crystals, direct broadcasting satellite systems, and a high inclination space station are covered.

  14. Space station needs, attributes, and architectural options study. Volume 3: Cost and benefits

    NASA Technical Reports Server (NTRS)

    1983-01-01

    Cost and schedule, cost/incremental capability, and schedule impact analyses are presented. Quantifiable benefits, space technology, non-quantifiable benefits, and space commercialization are addressed.

  15. The National Aerospace Initiative (NAI): Technologies For Responsive Space Access

    NASA Technical Reports Server (NTRS)

    Culbertson, Andrew; Bhat, Biliyar N.

    2003-01-01

    The Secretary of Defense has set new goals for the Department of Defense (DOD) to transform our nation's military forces. The Director for Defense Research and Engineering (DDR&E) has responded to this challenge by defining and sponsoring a transformational initiative in Science and Technology (S&T) - the National Aerospace Initiative (NAI) - which will have a fundamental impact on our nation's military capabilities and on the aerospace industry in general. The NAI is planned as a joint effort among the tri-services, DOD agencies and National Aeronautics and Space Administration (NASA). It is comprised of three major focus areas or pillars: 1) High Speed Hypersonics (HSH), 2) Space Access (SA), and 3) Space Technology (ST). This paper addresses the Space Access pillar. The NAI-SA team has employed a unique approach to identifying critical technologies and demonstrations for satisfying both military and civilian space access capabilities needed in the future. For planning and implementation purposes the NAI-SA is divided into five technology subsystem areas: Airframe, Propulsion, Flight Subsystems, Operations and Payloads. Detailed technology roadmaps were developed under each subsystem area using a time-phased, goal oriented approach that provides critical space access capabilities in a timely manner and involves subsystem ground and flight demonstrations. This S&T plan addresses near-term (2009), mid-term (2016), and long-term (2025) goals and objectives for space access. In addition, system engineering and integration approach was used to make sure that the plan addresses the requirements of the end users. This paper describes in some detail the technologies in NAI-Space Access pillar. Some areas of emphasis are: high temperature materials, thermal protection systems, long life, lightweight, highly efficient airframes, metallic and composite cryotanks, advanced liquid rocket engines, integrated vehicle health monitoring and management, highly operable systems and

  16. Committee on solar and space physics

    NASA Astrophysics Data System (ADS)

    Lanzerotti, L. J.

    The Committee on Solar and Space Physics (CSSP) is the Committee of the Space Science Board (SSB) of the National Research Council that is responsible for providing scientific advice to NASA in areas of solar/solar-terrestrial/space-plasma physics. The committee, composed of members who serve 3-year terms, wishes to solicit comments from colleagues on topics of interest to them and related to issues in the field.Current subjects on which the committee is devoting considerable effort include the following: (a) considerations of data handling and data systems in solar-terrestrial research for the future (This is being carried out with the encouragement of the SSB and its Committee on Data Management. The activity is in collaboration with the Committee on Solar-Terrestrial Research (CSTR) of the Geophysics Research Board. The handling, integration, and dissemination of solar-terrestrial data obtained by all techniques will be addressed. Chairmen of the responsible subgroup are D. J. Williams (CSSP) and M. A. Shea (CSTR).); (b) consideration of the policies and issues associated with a revitalized Explorer satellite program responsive to the requirements of the solar-terrestrial physics community (Inputs of ideas for potential Explorer missions have been received from a wide range of the community and will be further elaborated upon by additional community participation. A number of these ideas and examples will form a portion of a report discussing solar-terrestrial science topics of high contemporary interest that could be well addressed with Explorerclass missions.); (c) inputs to a more comprehensive consideration of the requirements for theoretical research in all the space sciences (This is an overall task of the Space Science Board. The CSSP response relies heavily upon the Colgate committee report on space plasma physics.); (d) a future workshop, in collaboration with the Space Science Committee of the European Science foundation, on potential cooperative work

  17. In-space assembly and servicing infrastructures for the Evolvable Space Telescope (EST)

    NASA Astrophysics Data System (ADS)

    Lillie, Charles F.; MacEwen, Howard A.

    2016-07-01

    The concept for EST presented in past SPIE forums will benefit significantly from the current efforts of DARPA, NASA and several commercial organizations to develop an in-space infrastructure that will enable on-orbit assembly, servicing, repair and repurposing of space vehicles. Two documents provide particularly relevant discussions: "NASA's Journey to Mars: Pioneering Next Steps in Space Exploration" provides a recent (2015) outline of NASA's thoughts on human deep space exploration and the tools that will enable it, while the "On-Orbit Satellite Servicing Study: Project Report" details a number of the concepts and technologies that must be developed. In this paper we examine the concepts in these and related documents to explore how systems such as EST will shape and support the infrastructure needed by future space vehicles. In so doing, we address previous examples of on-orbit assembly and servicing of space vehicles; the lessons learned from these efforts and the existing systems and facilities available to execute servicing missions; the EST concept for an LUVOIR telescope designed for in-orbit assembly and servicing and the resulting requirements for a servicing vehicle; the use of heavy lift launch vehicles, including the SLS and Exploration Upper Stage to co-manifest other large payloads along with a crewed Orion mission; Deep Space Habitats (DSHs) in cislunar space as a site for assembly and servicing spacecraft vehicles, and a base for Maneuverable Servicing Vehicles; and how space vehicles need to be designed for in-space assembly and servicing (i.e., commonality of parts, systems, modularity, accessibility, and stable maneuverability).

  18. Transceiver for Space Station Freedom

    NASA Technical Reports Server (NTRS)

    Fitzmaurice, M.; Bruno, R.

    1990-01-01

    This paper describes the design of the Laser Communication Transceiver (LCT) system which was planned to be flight tested as an attached payload on Space Station Freedom. The objective in building and flight-testing the LCT is to perform a broad class of tests addressing the critical aspects of space-based optical communications systems, providing a base of experience for applying laser communications technology toward future communications needs. The LCT's functional and performance requirements and capabilities with respect to acquisition, spatial tracking and pointing, communications, and attitude determination are discussed.

  19. Transceiver for Space Station Freedom

    NASA Astrophysics Data System (ADS)

    Fitzmaurice, M.; Bruno, R.

    1990-07-01

    This paper describes the design of the Laser Communication Transceiver (LCT) system which was planned to be flight tested as an attached payload on Space Station Freedom. The objective in building and flight-testing the LCT is to perform a broad class of tests addressing the critical aspects of space-based optical communications systems, providing a base of experience for applying laser communications technology toward future communications needs. The LCT's functional and performance requirements and capabilities with respect to acquisition, spatial tracking and pointing, communications, and attitude determination are discussed.

  20. Aviation & Space Weather Policy Research: Integrating Space Weather Observations & Forecasts into Operations

    NASA Astrophysics Data System (ADS)

    Fisher, G.; Jones, B.

    2006-12-01

    The American Meteorological Society and SolarMetrics Limited are conducting a policy research project leading to recommendations that will increase the safety, reliability, and efficiency of the nation's airline operations through more effective use of space weather forecasts and information. This study, which is funded by a 3-year National Science Foundation grant, also has the support of the Federal Aviation Administration and the Joint Planning and Development Office (JPDO) who is planning the Next Generation Air Transportation System. A major component involves interviewing and bringing together key people in the aviation industry who deal with space weather information. This research also examines public and industrial strategies and plans to respond to space weather information. The focus is to examine policy issues in implementing effective application of space weather services to the management of the nation's aviation system. The results from this project will provide government and industry leaders with additional tools and information to make effective decisions with respect to investments in space weather research and services. While space weather can impact the entire aviation industry, and this project will address national and international issues, the primary focus will be on developing a U.S. perspective for the airlines.

  1. Constellation Space Suit System Development Status

    NASA Technical Reports Server (NTRS)

    Ross, Amy; Aitchison, Lindsay; Daniel, Brian

    2007-01-01

    The Constellation Program has initiated the first new flight suit development project since the Extravehicular Mobility Unit (EMU) was developed for the Space Shuttle Program in the 1970s. The Constellation suit system represents a significant challenge to designers in that the system is required to address all space suit functions needed through all missions and mission phases. This is in marked contrast to the EMU, which was designed specifically for micro-gravity space walks. The Constellation suit system must serve in all of the following scenarios: launch, entry and abort crew survival; micro-gravity extravehicular activity (EVA); and lunar (1/6th-gravity) surface EVA. This paper discusses technical efforts performed from May 2006 through February 2007 for the Constellation space suit system pressure garment.

  2. Synopsis of the Review on Space Weather in Latin America: Space Science, Research Networks and Space Weather Center

    NASA Astrophysics Data System (ADS)

    Denardini, Clezio Marcos; Dasso, Sergio; Gonzalez-Esparza, Americo

    2016-07-01

    The present work is a synopsis of a three-part review on space weather in Latin America. The first paper (part 1) comprises the evolution of several Latin American institutions investing in space science since the 1960's, focusing on the solar-terrestrial interactions, which today is commonly called space weather. Despite recognizing advances in space research in all of Latin America, this part 1 is restricted to the development observed in three countries in particular (Argentina, Brazil and Mexico), due to the fact that these countries have recently developed operational centers for monitoring space weather. The review starts with a brief summary of the first groups to start working with space science in Latin America. This first part of the review closes with the current status and the research interests of these groups, which are described in relation to the most significant works and challenges of the next decade in order to aid in the solving of space weather open issues. The second paper (part 2) comprises a summary of scientific challenges in space weather research that are considered to be open scientific questions and how they are being addressed in terms of instrumentation by the international community, including the Latin American groups. We also provide an inventory of the networks and collaborations being constructed in Latin America, including details on the data processing, capabilities and a basic description of the resulting variables. These instrumental networks currently used for space science research are gradually being incorporated into the space weather monitoring data pipelines as their data provides key variables for monitoring and forecasting space weather, which allow these centers to monitor space weather and issue warnings and alerts. The third paper (part 3) presents the decision process for the spinning off of space weather prediction centers from space science groups with our interpretation of the reason/opportunities that leads to

  3. The STS-103 crew address family and friends at Pad 39B

    NASA Technical Reports Server (NTRS)

    1999-01-01

    The STS-103 crew address family and friends at Launch Pad 39B. From left to right are Pilot Scott J. Kelly, Commander Curtis L. Brown Jr., and Mission Specialists C. Michael Foale (Ph.D.), John M. Grunsfeld (Ph.D.), Jean-Frangois Clervoy of France , Claude Nicollier of Switzerland and Steven L. Smith. Nicollier and Clervoy are with the European Space Agency. In the background is Space Shuttle Discovery, alongside the lighted Fixed Service Structure. The STS-103 mission, to service the Hubble Space Telescope, is scheduled for launch Dec. 17 at 8:47 p.m. EST from Launch Pad 39B. Mission objectives include replacing gyroscopes and an old computer, installing another solid state recorder, and replacing damaged insulation in the telescope. The mission is expected to last about 8 days and 21 hours. Discovery is expected to land at KSC Sunday, Dec. 26, at about 6:25 p.m. EST.

  4. Analysis of Big Data from Space

    NASA Astrophysics Data System (ADS)

    Tan, J.; Osborne, B.

    2017-09-01

    Massive data have been collected through various space mission. To maximize the investment, the data need to be exploited to the fullest. In this paper, we address key topics on big data from space about the status and future development using the system engineering method. First, we summarized space data including operation data and mission data, on their sources, access way, characteristics of 5Vs and application models based on the concept of big data, as well as the challenges they faced in application. Second, we gave proposals on platform design and architecture to meet the demand and challenges on space data application. It has taken into account of features of space data and their application models. It emphasizes high scalability and flexibility in the aspects of storage, computing and data mining. Thirdly, we suggested typical and promising practices for space data application, that showed valuable methodologies for improving intelligence on space application, engineering, and science. Our work will give an interdisciplinary knowledge to space engineers and information engineers.

  5. Space Biology and Medicine. Volume I; Space and Its Exploration

    NASA Technical Reports Server (NTRS)

    Nicogossian, Arnauld E.; Mohler, Stanley R.; Gazenko, Oleg G.; Grigoryev, Anatoliy I.

    1993-01-01

    and a path to our common future. But for humanity to embark on this path, we need to understand ourselves in a new environment. As such, an understanding of the biological consequences of and opportunities in space flight is essential. In this, the first volume of a joint U.S./Russian series on space biology and medicine, we describe the current status of our understanding of space and present general information that will prove useful when reading subsequent volumes. Since we are witnesses to the beginning of a new era of interplanetary travel, a significant portion of the first volume will concentrate on the physical and ecological conditions that exist in near and outer space, as well as heavenly bodies from the smallest ones to the giant planets and stars. While space exploration is a comparatively recent endeavor, its foundations were laid much more than 30 years ago, and its history has been an eventful one. In the first part of this volume, Rauschenbach, Sokolskiy, and Gurjian address the "Historical Aspects of Space Exploration" from its beginnings to a present-day view of the events of the space age. The nature of space itself and its features is the focus of the second section of the volume. In the first chapter of the part, "Stars and Interstellar Space," the origin and evolution of stars, and the nature of the portions of space most distant from Earth are described by Galeev and Marochnik. In Chapter 2, Pisarenko, Logachev, and Kurt in "The Sun and Interplanetary Space" bring us to the vicinity of our own solar system and provide a description and discussion of the nearest star and its influence on the space environment that our Earth and the other planets inhabit. In our solar system there are many fascinating objects, remnants of the formation of a rather ordinary star in a rather obscure portion of the galaxy. Historical accident has caused us to be much more curious (and knowledgeable) about "The Inner Planets of the Solar System" than about any of

  6. National Aero-Space Plane (NASP) program

    NASA Technical Reports Server (NTRS)

    Tank, Ming H.

    1991-01-01

    A program to develop the technology for reusable airbreathing hypersonic/transatmospheric vehicles is addressed. Information on the following topics is presented in viewgraph form: (1) the National Aerospace Plane (NASP) program schedule; (2) the NASP program organization; (3) competitive strategy; (4) propulsion options; (5) wind tunnel data available for NASP; (6) ground track of envelope expansion; and (7) altitude vs. Mach number. A NASP/Space Shuttle comparison, NASP configuration matrix, and the propulsion concept of a high speed scramjet are also briefly addressed.

  7. A Possible Future for Space-Based Interferometry

    NASA Technical Reports Server (NTRS)

    Labadie, L.; Leger, A.; Malbet, F.; Danchi, William C.; Lopez, B.

    2013-01-01

    We address the question of space interferometry following the recent outcome of the science themes selection by ESA for the L2/L3 missions slots. We review the current context of exoplanetary sciences and its impact for an interferometric mission. We argue that space interferometry will make a major step forward when the scientific communities interested in this technique will merge their efforts into a coherent technology development plan.

  8. Fifth Conference on Artificial Intelligence for Space Applications

    NASA Technical Reports Server (NTRS)

    Odell, Steve L. (Compiler)

    1990-01-01

    The Fifth Conference on Artificial Intelligence for Space Applications brings together diverse technical and scientific work in order to help those who employ AI methods in space applications to identify common goals and to address issues of general interest in the AI community. Topics include the following: automation for Space Station; intelligent control, testing, and fault diagnosis; robotics and vision; planning and scheduling; simulation, modeling, and tutoring; development tools and automatic programming; knowledge representation and acquisition; and knowledge base/data base integration.

  9. Advanced-to-Revolutionary Space Technology Options - The Responsibly Imaginable

    NASA Technical Reports Server (NTRS)

    Bushnell, Dennis M.

    2013-01-01

    Paper summarizes a spectrum of low TRL, high risk technologies and systems approaches which could massively change the cost and safety of space exploration/exploitation/industrialization. These technologies and approaches could be studied in a triage fashion, the method of evaluation wherein several prospective solutions are investigated in parallel to address the innate risk of each, with resources concentrated on the more successful as more is learned. Technology areas addressed include Fabrication, Materials, Energetics, Communications, Propulsion, Radiation Protection, ISRU and LEO access. Overall and conceptually it should be possible with serious research to enable human space exploration beyond LEO both safe and affordable with a design process having sizable positive margins. Revolutionary goals require, generally, revolutionary technologies. By far, Revolutionary Energetics is the most important, has the most leverage, of any advanced technology for space exploration applications.

  10. Astrophysics space systems critical technology needs

    NASA Technical Reports Server (NTRS)

    Gartrell, C. F.

    1982-01-01

    This paper addresses an independent assessment of space system technology needs for future astrophysics flight programs contained within the NASA Space Systems Technology Model. The critical examination of the system needs for the approximately 30 flight programs in the model are compared to independent technology forecasts and possible technology deficits are discussed. These deficits impact the developments needed for spacecraft propulsion, power, materials, structures, navigation, guidance and control, sensors, communications and data processing. There are also associated impacts upon in-orbit assembly technology and space transportation systems. A number of under-utilized technologies are highlighted which could be exploited to reduce cost and enhance scientific return.

  11. NASA Glenn Research Center's Materials International Space Station Experiments (MISSE 1-7)

    NASA Technical Reports Server (NTRS)

    deGroh, Kim K.; Banks, Bruce a.; Dever, Joyce A.; Jaworske, Donald A.; Miller, Sharon K.; Sechkar, Edward A.; Panko, Scott R.

    2008-01-01

    NASA Glenn Research Center (Glenn) has 39 individual materials flight experiments (>540 samples) flown as part of the Materials International Space Station Experiment (MISSE) to address long duration environmental durability of spacecraft materials in low Earth orbit (LEO). MISSE is a series of materials flight experiments consisting of trays, called Passive Experiment Carriers (PECs) that are exposed to the space environment on the exterior of the International Space Station (ISS). MISSE 1-5 have been successfully flown and retrieved and were exposed to the space environment from one to four years. MISSE 6A & 6B were deployed during the STS-123 shuttle mission in March 2008, and MISSE 7A & 7B are being prepared for launch in 2009. The Glenn MISSE experiments address atomic oxygen (AO) effects such as erosion and undercutting of polymers, AO scattering, stress effects on AO erosion, and in-situ AO fluence monitoring. Experiments also address solar radiation effects such as radiation induced polymer shrinkage, stress effects on radiation degradation of polymers, and radiation degradation of indium tin oxide (ITO) coatings and spacesuit fabrics. Additional experiments address combined AO and solar radiation effects on thermal control films, paints and cermet coatings. Experiments with Orion Crew Exploration Vehicle (CEV) seals and UltraFlex solar array materials are also being flown. Several experiments were designed to provide ground-facility to in-space calibration data thus enabling more accurate in-space performance predictions based on ground-laboratory testing. This paper provides an overview of Glenn s MISSE 1-7 flight experiments along with a summary of results from Glenn s MISSE 1 & 2 experiments.

  12. Space 2000 Symposium

    NASA Technical Reports Server (NTRS)

    1999-01-01

    The purpose of the Space 2000 Symposium is to present the creativity and achievements of key figures of the 20th century. It offers a retrospective discussion on space exploration. It considers the future of the enterprise, and the legacy that will be left for future generations. The symposium includes panel discussions, smaller session meetings with some panelists, exhibits, and displays. The first session entitled "From Science Fiction to Science Facts" commences after a brief overview of the symposium. The panel discussions include talks on space exploration over many decades, and the missions of the millennium to search for life on Mars. The second session, "Risks and Rewards of Human Space Exploration," focuses on the training and health risks that astronauts face on their exploratory mission to space. Session three, "Messages and Messengers Informing and Inspire Space Exploration and the Public," focuses on the use of TV medium by educators and actors to inform and inspire a wide variety of audiences with adventures of space exploration. Session four, "The Legacy of Carl Sagan," discusses the influences made by Sagan to scientific research and the general public. In session five, "Space Exploration for a new Generation," two student speakers and the NASA Administrator Daniel S. Goldin address the group. Session six, "Destiny or Delusion? -- Humankind's Place in the Cosmos," ends the symposium with issues of space exploration and some thought provoking questions. Some of these issues and questions are: what will be the societal implications if we discover the origin of the universe, stars, or life; what will be the impact if scientists find clear evidence of life outside the domains of the Earth; should there be limits to what humans can or should learn; and what visionary steps should space-faring people take now for future generations.

  13. Optoelectronic devices product assurance guideline for space application

    NASA Astrophysics Data System (ADS)

    Bensoussan, A.; Vanzi, M.

    2017-11-01

    New opportunities are emerging for the implementation of hardware sub-systems based on OptoElectronic Devices (OED) for space application. Since the end of this decade the main players for space systems namely designers and users including Industries, Agencies, Manufacturers and Laboratories are strongly demanding of adequate strategies to qualify and validate new optoelectronics products and sub-systems [1]. The long term space application mission will require to address either inter-satellite link (free space communication, positioning systems, tracking) or intra-satellite connectivity/flexibility/reconfigurability or high volume of data transfer between equipment installed into payload.

  14. The impact evaluation of soil liquefaction on low-rise building in the Meinong earthquake

    NASA Astrophysics Data System (ADS)

    Lu, Chih-Chieh; Hwang, Jin-Hung; Hsu, Shang-Yi

    2017-08-01

    This paper presents major preliminary observations on the liquefaction-induced damages in the Meinong earthquake ( M L = 6.4). The severe damages to buildings centered on Huian and Sanmin Streets in Tainan City where the places were reclaimed fish or farm ponds with poor construction quality from many decades ago. To better understand the effect due to the soil liquefaction at these sites, the information provided by the in situ 13 Standard Penetration Test boreholes and 5 Cone Penetration Test soundings accompanying with the PGAs derived from the near seismographs was used to conduct the soil liquefaction evaluation by the Seed method (Seed et al. in J Geotech Eng ASCE 111(12):1425-1445, 1985) when subject to the Meinong earthquake. The liquefaction potential index (LPI) was then evaluated accordingly. From the results, it was found that the estimated damage severity was not consistent to the field conditions if the local site effect was not taken into account. To better reflect the site response in such sites, the sites' PGAs in the PGA contour map were multiplied by 1.5 times to quantify the amplification effects due to the soft geological condition. In addition, the PGAs based on other simple approaches were evaluated as well for comparison. Besides, the effects of fines content and magnitude scaling factor were also discussed in this paper. After that, several common simplified methods were also used to calculate the LPI when subject to the Meinong earthquake in order to evaluate the applicability of these simplified methods.

  15. Neutral Buoyancy Simulator - Space Station

    NASA Technical Reports Server (NTRS)

    1985-01-01

    Skylab's success proved that scientific experimentation in a low gravity environment was essential to scientific progress. A more permanent structure was needed to provide this space laboratory. President Ronald Reagan, on January 25, 1984, during his State of the Union address, claimed that the United States should exploit the new frontier of space, and directed NASA to build a permanent marned space station within a decade. The idea was that the space station would not only be used as a laboratory for the advancement of science and medicine, but would also provide a staging area for building a lunar base and manned expeditions to Mars and elsewhere in the solar system. President Reagan invited the international community to join with the United States in this endeavour. NASA and several countries moved forward with this concept. By December 1985, the first phase of the space station was well underway with the design concept for the crew compartments and laboratories. Pictured are two NASA astronauts, at Marshall Space Flight Center's (MSFC) Neutral Buoyancy Simulator (NBS), practicing construction techniques they later used to construct the space station after it was deployed.

  16. Vertebrate development in the environment of space: models, mechanisms, and use of the medaka

    NASA Technical Reports Server (NTRS)

    Wolgemuth, D. J.; Herrada, G.; Kiss, S.; Cannon, T.; Forsstrom, C.; Pranger, L. A.; Weismann, W. P.; Pearce, L.; Whalon, B.; Phillips, C. R.

    1997-01-01

    With the advent of space travel, it is of immediate interest and importance to study the effects of exposure to various aspects of the altered environment of space, including microgravity, on Earth-based life forms. Initial studies of space travel have focused primarily on the short-term effects of radiation and microgravity on adult organisms. However, with the potential for increased lengths of time in space, it is critical to now address the effects of space on all phases of an organism's life cycle, from embryogenesis to post-natal development to reproduction. It is already possible for certain species to undergo multiple generations within the confines of the Mir Space Station. The possibility now exists for scientists to consider the consequences of even potentially subtle defects in development through multiple phases of an organism's life cycle, or even through multiple generations. In this discussion, we highlight a few of the salient observations on the effects of the space environment on vertebrate development and reproductive function. We discuss some of the many unanswered questions, in particular, in the context of the choice of appropriate models in which to address these questions, as well as an assessment of the availability of hardware already existing or under development which would be useful in addressing these questions.

  17. NASA Systems Autonomy Demonstration Program - A step toward Space Station automation

    NASA Technical Reports Server (NTRS)

    Starks, S. A.; Rundus, D.; Erickson, W. K.; Healey, K. J.

    1987-01-01

    This paper addresses a multiyear NASA program, the Systems Autonomy Demonstration Program (SADP), whose main objectives include the development, integration, and demonstration of automation technology in Space Station flight and ground support systems. The role of automation in the Space Station is reviewed, and the main players in SADP and their roles are described. The core research and technology being promoted by SADP are discussed, and a planned 1988 milestone demonstration of the automated monitoring, operation, and control of a complete mission operations subsystem is addressed.

  18. Geometric state space uncertainty as a new type of uncertainty addressing disparity in ';emergent properties' between real and modeled systems

    NASA Astrophysics Data System (ADS)

    Montero, J. T.; Lintz, H. E.; Sharp, D.

    2013-12-01

    Do emergent properties that result from models of complex systems match emergent properties from real systems? This question targets a type of uncertainty that we argue requires more attention in system modeling and validation efforts. We define an ';emergent property' to be an attribute or behavior of a modeled or real system that can be surprising or unpredictable and result from complex interactions among the components of a system. For example, thresholds are common across diverse systems and scales and can represent emergent system behavior that is difficult to predict. Thresholds or other types of emergent system behavior can be characterized by their geometry in state space (where state space is the space containing the set of all states of a dynamic system). One way to expedite our growing mechanistic understanding of how emergent properties emerge from complex systems is to compare the geometry of surfaces in state space between real and modeled systems. Here, we present an index (threshold strength) that can quantify a geometric attribute of a surface in state space. We operationally define threshold strength as how strongly a surface in state space resembles a step or an abrupt transition between two system states. First, we validated the index for application in greater than three dimensions of state space using simulated data. Then, we demonstrated application of the index in measuring geometric state space uncertainty between a real system and a deterministic, modeled system. In particular, we looked at geometric space uncertainty between climate behavior in 20th century and modeled climate behavior simulated by global climate models (GCMs) in the Coupled Model Intercomparison Project phase 5 (CMIP5). Surfaces from the climate models came from running the models over the same domain as the real data. We also created response surfaces from a real, climate data based on an empirical model that produces a geometric surface of predicted values in state

  19. Avionic architecture requirements for Space Exploration Initiative systems

    NASA Technical Reports Server (NTRS)

    Herbella, C. G.; Brown, D. C.

    1991-01-01

    The authors discuss NASA's Strategic Avionics Technology Working Group (SATWG) and the results of the first study commissioned by the SATWG, the Space Avionics Requirements Study (SARS). The goal of the SARS task was to show that an open avionics architecture, using modular, standardized components, could be applied across the wide range of systems that comprise the Space Exploration Initiative. The study addressed systems ranging from expendable launch vehicles and the space station to surface systems such as Mars or lunar rovers and habitats. Top-level avionics requirements were derived from characterizations of each of the systems considered. Then a set of avionics subsystems were identified, along with estimates of the numbers and types of modules needed to meet the requirements. Applicability of these results across the infrastructure was then illustrated. In addition to these tasks, critical technologies were identified, characterized, and assessed in terms of their criticality and impact on the program. Design, development, test, and evaluation methods were addressed to identify potential areas of improvement.

  20. Center of Excellence in Space Data and Information Sciences

    NASA Technical Reports Server (NTRS)

    1997-01-01

    This report summarizes the range of computer science-related activities undertaken by CESDIS for NASA in the twelve months from July 1, 1996 through June 30, 1997. These activities address issues related to accessing, processing, and analyzing data from space observing systems through collaborative efforts with university, industry,and NASA space and Earth scientists. The sections of this report which follow, detail the activities undertaken by the members of each of the CESDIS branches. This includes contributions from university faculty members and graduate students as well as CESDIS employees. Phone numbers and e-mail addresses appear in Appendix D (CESDIS Personnel and Associates) to facilitate interactions and new collaborations.

  1. Center of Excellence in Space Data and Information Sciences

    NASA Technical Reports Server (NTRS)

    1998-01-01

    This report summarizes the range of computer science-related activities undertaken by CESDIS for NASA in the twelve months from July 1, 1997 through June 30, 1998. These activities address issues related to accessing, processing, and analyzing data from space observing systems through collaborative efforts with university, industry, and NASA space and Earth scientists. The sections of this report which follow, detail the activities undertaken by the members of each of the CESDIS branches. This includes contributions from university faculty members and graduate students as well as CESDIS employees. Phone numbers and e-mail addresses appear in Appendix E (CESDIS Personnel and Associates) to facilitate interactions and new collaborations.

  2. Center of Excellence in Space Data and Information Sciences

    NASA Technical Reports Server (NTRS)

    Yesha, Yelena

    1999-01-01

    This report summarizes the range of computer science-related activities undertaken by CESDIS for NASA in the twelve months from July 1, 1998 through June 30, 1999. These activities address issues related to accessing, processing, and analyzing data from space observing systems through collaborative efforts with university, industry, and NASA space and Earth scientists. The sections of this report which follow, detail the activities undertaken by the members of each of the CESDIS branches. This includes contributions from university faculty members and graduate students as well as CESDIS employees. Phone numbers and e-mail addresses appear in Appendix F (CESDIS Personnel and Associates) to facilitate interactions and new collaborations.

  3. The Space Medicine Exploration Medical Condition List

    NASA Technical Reports Server (NTRS)

    Watkins, Sharmi; Barr, Yael; Kerstman, Eric

    2011-01-01

    Exploration Medical Capability (ExMC) is an element of NASA s Human Research Program (HRP). ExMC's goal is to address the risk of the "Inability to Adequately Recognize or Treat an Ill or Injured Crewmember." This poster highlights the approach ExMC has taken to address this risk. The Space Medicine Exploration Medical Condition List (SMEMCL) was created to define the set of medical conditions that are most likely to occur during exploration space flight missions. The list was derived from the International Space Station Medical Checklist, the Shuttle Medical Checklist, in-flight occurrence data from the Lifetime Surveillance of Astronaut Health, and NASA subject matter experts. The list of conditions was further prioritized for eight specific design reference missions with the assistance of the ExMC Advisory Group. The purpose of the SMEMCL is to serve as an evidence-based foundation for the conditions that could affect a crewmember during flight. This information is used to ensure that the appropriate medical capabilities are available for exploration missions.

  4. Evolutionary space platform concept study. Volume 1: Executive summary

    NASA Technical Reports Server (NTRS)

    1982-01-01

    The Evolutionary Space Platform Concept Study encompassed a 10 month effort to define, evaluate and compare approaches and concepts for evolving unmanned and manned capability platforms beyond the current Space Platform concepts to an evolutionary goal of establishing a permanent manned presence in space. Areas addressed included: special emphasis trade studies on the current unmanned concept, assessment of manned platform concepts, and utility analysis of a manned platform for defense related missions.

  5. MDP: Reliable File Transfer for Space Missions

    NASA Technical Reports Server (NTRS)

    Rash, James; Criscuolo, Ed; Hogie, Keith; Parise, Ron; Hennessy, Joseph F. (Technical Monitor)

    2002-01-01

    This paper presents work being done at NASA/GSFC by the Operating Missions as Nodes on the Internet (OMNI) project to demonstrate the application of the Multicast Dissemination Protocol (MDP) to space missions to reliably transfer files. This work builds on previous work by the OMNI project to apply Internet communication technologies to space communication. The goal of this effort is to provide an inexpensive, reliable, standard, and interoperable mechanism for transferring files in the space communication environment. Limited bandwidth, noise, delay, intermittent connectivity, link asymmetry, and one-way links are all possible issues for space missions. Although these are link-layer issues, they can have a profound effect on the performance of transport and application level protocols. MDP, a UDP-based reliable file transfer protocol, was designed for multicast environments which have to address these same issues, and it has done so successfully. Developed by the Naval Research Lab in the mid 1990's, MDP is now in daily use by both the US Post Office and the DoD. This paper describes the use of MDP to provide automated end-to-end data flow for space missions. It examines the results of a parametric study of MDP in a simulated space link environment and discusses the results in terms of their implications for space missions. Lessons learned are addressed, which suggest minor enhancements to the MDP user interface to add specific features for space mission requirements, such as dynamic control of data rate, and a checkpoint/resume capability. These are features that are provided for in the protocol, but are not implemented in the sample MDP application that was provided. A brief look is also taken at the status of standardization. A version of MDP known as NORM (Neck Oriented Reliable Multicast) is in the process of becoming an IETF standard.

  6. Space-Data Routers: Advanced data routing protocols for enhancing data exploitation for space weather applications

    NASA Astrophysics Data System (ADS)

    Anastasiadis, Anastasios; Daglis, Ioannis A.; Balasis, George; Papadimitriou, Constantinos; Tsaoussidis, Vassilios; Diamantopoulos, Sotirios

    2014-05-01

    Data sharing and access are major issues in space sciences, as they influence the degree of data exploitation. The availability of multi-spacecraft distributed observation methods and adaptive mission architectures require computationally intensive analysis methods. Moreover, accurate space weather forecasting and future space exploration far from Earth will be in need of real-time data distribution and assimilation technologies. The FP7-Space collaborative research project "Space-Data Routers" (SDR) relies on space internetworking and in particular on Delay Tolerant Networking (DTN), which marks the new era in space communications. SDR unifies space and earth communication infrastructures and delivers a set of tools and protocols for space-data exploitation. The main goal is to allow space agencies, academic institutes and research centers to share space-data generated by single or multiple missions, in an efficient, secure and automated manner. Here we are presenting the architecture and basic functionality of a DTN-based application specifically designed in the framework of the SDR project, for data query, retrieval and administration that will enable addressing outstanding science questions related to space weather, through the provision of simultaneous real-time data sampling at multiple points in space. The work leading to this paper has received funding from the European Union's Seventh Framework Programme (FP7-SPACE-2010-1) under grant agreement no. 263330 for the SDR (Space-Data Routers for Exploiting Space Data) collaborative research project. This paper reflects only the authors' views and the Union is not liable for any use that may be made of the information contained therein.

  7. The disposal of nuclear waste in space

    NASA Technical Reports Server (NTRS)

    Burns, R. E.

    1978-01-01

    The important problem of disposal of nuclear waste in space is addressed. A prior study proposed carrying only actinide wastes to space, but the present study assumes that all actinides and all fission products are to be carried to space. It is shown that nuclear waste in the calcine (oxide) form can be packaged in a container designed to provide thermal control, radiation shielding, mechanical containment, and an abort reentry thermal protection system. This package can be transported to orbit via the Space Shuttle. A second Space Shuttle delivers an oxygen-hydrogen orbit transfer vehicle to a rendezvous compatible orbit and the mated OTV and waste package are sent to the preferred destination. Preferred locations are either a lunar crater or a solar orbit. Shuttle traffic densities (which vary in time) are given and the safety of space disposal of wastes discussed.

  8. 77 FR 52067 - NASA Advisory Council; Commercial Space Committee; Meeting

    Federal Register 2010, 2011, 2012, 2013, 2014

    2012-08-28

    ... NATIONAL AERONAUTICS AND SPACE ADMINISTRATION [12-069] NASA Advisory Council; Commercial Space.... DATES: Tuesday, September 18, 2012, 11:45 a.m.-5:30 p.m.; Local Time. ADDRESSES: NASA Ames Research Center (ARC), The Showroom, Building M-3, NASA Ames Conference Center, 500 Severyns Road, NASA Research...

  9. 75 FR 17437 - NASA Advisory Council; Commercial Space Committee; Meeting

    Federal Register 2010, 2011, 2012, 2013, 2014

    2010-04-06

    ... NATIONAL AERONAUTICS AND SPACE ADMINISTRATION [Notice: (10-039)] NASA Advisory Council; Commercial... Committee of the NASA Advisory Council. DATES: Monday, April 26, 2010, 1:30 p.m.-6 p.m. CDT. ADDRESSES: NASA Johnson Space Center, Gilruth Conference Center, 2101 NASA Parkway, Houston, TX 77058. FOR FURTHER...

  10. 75 FR 39974 - NASA Advisory Council; Space Operations Committee; Meeting

    Federal Register 2010, 2011, 2012, 2013, 2014

    2010-07-13

    ... NATIONAL AERONAUTICS AND SPACE ADMINISTRATION [Notice: (10-074)] NASA Advisory Council; Space... Committee of the NASA Advisory Council. DATES: Wednesday, July 28, 2010, 2-5 p.m. EDT. ADDRESSES: Doubletree..., Washington, DC 20546, 202/358-1507, [email protected]nasa.gov . SUPPLEMENTARY INFORMATION: The agenda for the...

  11. Overview of space propulsion systems for identifying nondestructive evaluation and health monitoring opportunities

    NASA Technical Reports Server (NTRS)

    Generazio, Edward R.

    1991-01-01

    The next generation of space propulsion systems will be designed to incorporate advanced health monitoring and nondestructive inspection capabilities. As a guide to help the nondestructive evaluation (NDE) community impact the development of these space propulsion systems, several questions should be addressed. An overview of background and current information on space propulsion systems at both the programmatic and technical levels is provided. A framework is given that will assist the NDE community in addressing key questions raised during the 2 to 5 April 1990 meeting of the Joint Army-Navy-NASA-Air Force (JANNAF) Nondestructive Evaluation Subcommittee (NDES).

  12. Moving Toward Space Internetworking via DTN: Its Operational Challenges, Benefits, and Management

    NASA Technical Reports Server (NTRS)

    Barkley, Erik; Burleigh, Scott; Gladden, Roy; Malhotra, Shan; Shames, Peter

    2010-01-01

    The international space community has begun to recognize that the established model for management of communications with spacecraft - commanded data transmission over individual pair-wise contacts - is operationally unwieldy and will not scale in support of increasingly complex and sophisticated missions such as NASA's Constellation project. Accordingly, the international Inter-Agency Operations Advisory Group (IOAG) ichartered a Space Internetworking Strategy Group (SISG), which released its initial recommendations in a November 2008 report. The report includes a recommendation that the space flight community adopt Delay-Tolerant Networking (DTN) to address the problem of interoperability and communication scaling, especially in mission environments where there are multiple spacecraft operating in concert. This paper explores some of the issues that must be addressed in implementing, deploying, and operating DTN as part of a multi-mission, multi-agency space internetwork as well as benefits and future operational scenarios afforded by DTN-based space internetworking.

  13. Lead-Free Experiment in a Space Environment

    NASA Technical Reports Server (NTRS)

    Blanche, J. F.; Strickland, S. M.

    2012-01-01

    This Technical Memorandum addresses the Lead-Free Technology Experiment in Space Environment that flew as part of the seventh Materials International Space Station Experiment outside the International Space Station for approximately 18 months. Its intent was to provide data on the performance of lead-free electronics in an actual space environment. Its postflight condition is compared to the preflight condition as well as to the condition of an identical package operating in parallel in the laboratory. Some tin whisker growth was seen on a flight board but the whiskers were few and short. There were no solder joint failures, no tin pest formation, and no significant intermetallic compound formation or growth on either the flight or ground units.

  14. Bridging the Worlds of Entertainment and Space - One Element of the Space Generation Foundation

    NASA Astrophysics Data System (ADS)

    Hildago, L.

    2002-01-01

    Programme on Space Applications, SGSabstracts@unsgac.org/fax +1(281)244-7478 The Space Generation Foundation, founder of ISU, is the current home for Space Rocks!, Yuri's Night, and other space projects focused on education, outreach, and sustainable development worldwide. One particular area of success in 2001/2002 has been the involvement of the entertainment community in space events. Yuri's Night brought together musicians, DJs, artists, and the public to celebrate space. Space Rocks will do the same on a much larger scale, employing film, theatre, poetry, music, art, advertising firms, and other unconventional media to communicate space to the public. We will present about the aims and future plans of the Foundation. The Space Generation Advisory Council in support of the United Nations Programme on Space Applications has as its main focus Space education and outreach. Since the Space Generation Forum in 1999, successful global education and outreach projects have been implemented by young people around the world. These and new ideas are being further developed at the Space Generation Summit (SGS), an event at World Space Congress (WSC) that will unite international students and young professionals to develop a youth vision and strategy for the peaceful uses of space. SGS, endorsed by the United Nations, will take place from October 11-13th, during which the 200 delegates will discuss ongoing youth space activities, particularly those stemming from the UNISPACE- III/SGF and taken forward by the Space Generation Advisory Council. Delegates will address a variety of topics with the goal of devising new recommendations according to the theme, 'Accelerating Our Pace in Space'. The material presented here and in other technical sessions throughout WSC includes the results of these discussions.

  15. A spacefaring nation - Perspectives on American space history and policy

    NASA Technical Reports Server (NTRS)

    Collins, Martin J. (Editor); Fries, Sylvia D. (Editor)

    1991-01-01

    The present volume on perspectives on American space history and policy discusses decision-making, space science and scientific communities, postwar aeronautical research in the federal laboratory, and civilian and military remote sensing and reconnaissance. Attention is given to the interpenetration of science, technology, and politics; space 'sociology'; and space technology and planetary science from 1950 to 1985. Other topics addressed include the aeronautics infrastructure as it applies to aeronautics history, the Lewis Research Center and its transition to space, the relationship between NASA and the users of earth resources data, and methodology for researching a classified system for space reconnaissance.

  16. Improving Safety and Reliability of Space Auxiliary Power Units

    NASA Technical Reports Server (NTRS)

    Viterna, Larry A.

    1998-01-01

    Auxiliary Power Units (APU's) play a critical role in space vehicles. On the space shuttle, APU's provide the hydraulic power for the aerodynamic control surfaces, rocket engine gimballing, landing gear, and brakes. Future space vehicles, such as the Reusable Launch Vehicle, will also need APU's to provide electrical power for flight control actuators and other vehicle subsystems. Vehicle designers and mission managers have identified safety, reliability, and maintenance as the primary concerns for space APU's. In 1997, the NASA Lewis Research Center initiated an advanced technology development program to address these concerns.

  17. Military Training: DOD’s Annual Sustainable Ranges Report Addressed Statutory Reporting Requirements

    DTIC Science & Technology

    2015-06-01

    electromagnetic spectrum, (5) continued growth in domestic use of Unmanned Aerial Systems, (6) early coordination with renewable energy industry, and (7...unclassified b. ABSTRACT unclassified c. THIS PAGE unclassified Standard Form 298 (Rev. 8-98) Prescribed by ANSI Std Z39-18 United States Government...challenges; (4) manage increasing military demand for range space; (5) address effects from new energy infrastructure and renewable energy effects; (6

  18. A new conceptual design approach for habitative space modules

    NASA Astrophysics Data System (ADS)

    Burattini, C.; Bisegna, F.; Gugliermetti, F.; Marchetti, M.

    2014-04-01

    Existing Space modules were designed to meet the standards established by NASA, basically oriented to functionality. In future Space environments a high level of habitability in long duration missions will become a priority: besides comfort and ergonomics, these habitats will require the application of criteria to address human needs for living in confined environments.

  19. The Application of the Human Engineering Modeling and Performance Laboratory for Space Vehicle Ground Processing Tasks at Kennedy Space Center

    NASA Technical Reports Server (NTRS)

    Woodbury, Sarah K.

    2008-01-01

    The introduction of United Space Alliance's Human Engineering Modeling and Performance Laboratory began in early 2007 in an attempt to address the problematic workspace design issues that the Space Shuttle has imposed on technicians performing maintenance and inspection operations. The Space Shuttle was not expected to require the extensive maintenance it undergoes between flights. As a result, extensive, costly resources have been expended on workarounds and modifications to accommodate ground processing personnel. Consideration of basic human factors principles for design of maintenance is essential during the design phase of future space vehicles, facilities, and equipment. Simulation will be needed to test and validate designs before implementation.

  20. Space Station Environmental Control and Life Support System Test Facility at Marshall Space Flight Center

    NASA Technical Reports Server (NTRS)

    Springer, Darlene

    1989-01-01

    Different aspects of Space Station Environmental Control and Life Support System (ECLSS) testing are currently taking place at Marshall Space Flight Center (MSFC). Unique to this testing is the variety of test areas and the fact that all are located in one building. The north high bay of building 4755, the Core Module Integration Facility (CMIF), contains the following test areas: the Subsystem Test Area, the Comparative Test Area, the Process Material Management System (PMMS), the Core Module Simulator (CMS), the End-use Equipment Facility (EEF), and the Pre-development Operational System Test (POST) Area. This paper addresses the facility that supports these test areas and briefly describes the testing in each area. Future plans for the building and Space Station module configurations will also be discussed.

  1. An outline of the review on space weather in Latin America: space science, research networks and space weather center

    NASA Astrophysics Data System (ADS)

    De Nardin, C. M.; Dasso, S.; Gonzalez-Esparza, A.

    2016-12-01

    The present work is an outline of a three-part review on space weather in Latin America. The first paper (part 1) comprises the evolution of several Latin American institutions investing in space science since the 1960's, focusing on the solar-terrestrial interactions, which today is commonly called space weather. Despite recognizing advances in space research in all of Latin America, this part 1 is restricted to the development observed in three countries in particular (Argentina, Brazil and Mexico), due to the fact that these countries have recently developed operational centers for monitoring space weather. The review starts with a brief summary of the first groups to start working with space science in Latin America. This first part of the review closes with the current status and the research interests of these groups, which are described in relation to the most significant works and challenges of the next decade in order to aid in the solving of space weather open issues. The second paper (part 2) comprises a summary of scientific challenges in space weather research that are considered to be open scientific questions and how they are being addressed in terms of instrumentation by the international community, including the Latin American groups. We also provide an inventory of the networks and collaborations being constructed in Latin America, including details on the data processing, capabilities and a basic description of the resulting variables. These instrumental networks currently used for space science research are gradually being incorporated into the space weather monitoring data pipelines as their data provides key variables for monitoring and forecasting space weather, which allow these centers to monitor space weather and issue warnings and alerts. The third paper (part 3) presents the decision process for the spinning off of space weather prediction centers from space science groups with our interpretation of the reason/opportunities that leads to

  2. NASA GSFC Space Weather Center - Innovative Space Weather Dissemination: Web-Interfaces, Mobile Applications, and More

    NASA Technical Reports Server (NTRS)

    Maddox, Marlo; Zheng, Yihua; Rastaetter, Lutz; Taktakishvili, A.; Mays, M. L.; Kuznetsova, M.; Lee, Hyesook; Chulaki, Anna; Hesse, Michael; Mullinix, Richard; hide

    2012-01-01

    The NASA GSFC Space Weather Center (http://swc.gsfc.nasa.gov) is committed to providing forecasts, alerts, research, and educational support to address NASA's space weather needs - in addition to the needs of the general space weather community. We provide a host of services including spacecraft anomaly resolution, historical impact analysis, real-time monitoring and forecasting, custom space weather alerts and products, weekly summaries and reports, and most recently - video casts. There are many challenges in providing accurate descriptions of past, present, and expected space weather events - and the Space Weather Center at NASA GSFC employs several innovative solutions to provide access to a comprehensive collection of both observational data, as well as space weather model/simulation data. We'll describe the challenges we've faced with managing hundreds of data streams, running models in real-time, data storage, and data dissemination. We'll also highlight several systems and tools that are utilized by the Space Weather Center in our daily operations, all of which are available to the general community as well. These systems and services include a web-based application called the Integrated Space Weather Analysis System (iSWA http://iswa.gsfc.nasa.gov), two mobile space weather applications for both IOS and Android devices, an external API for web-service style access to data, google earth compatible data products, and a downloadable client-based visualization tool.

  3. Solar Power Generation in Extreme Space Environments

    NASA Technical Reports Server (NTRS)

    Elliott, Frederick W.; Piszczor, Michael F.

    2016-01-01

    The exploration of space requires power for guidance, navigation, and control; instrumentation; thermal control; communications and data handling; and many subsystems and activities. Generating sufficient and reliable power in deep space through the use of solar arrays becomes even more challenging as solar intensity decreases and high radiation levels begin to degrade the performance of photovoltaic devices. The Extreme Environments Solar Power (EESP) project goal is to develop advanced photovoltaic technology to address these challenges.

  4. Marshall Space Flight Center CFD overview

    NASA Technical Reports Server (NTRS)

    Schutzenhofer, Luke A.

    1989-01-01

    Computational Fluid Dynamics (CFD) activities at Marshall Space Flight Center (MSFC) have been focused on hardware specific and research applications with strong emphasis upon benchmark validation. The purpose here is to provide insight into the MSFC CFD related goals, objectives, current hardware related CFD activities, propulsion CFD research efforts and validation program, future near-term CFD hardware related programs, and CFD expectations. The current hardware programs where CFD has been successfully applied are the Space Shuttle Main Engines (SSME), Alternate Turbopump Development (ATD), and Aeroassist Flight Experiment (AFE). For the future near-term CFD hardware related activities, plans are being developed that address the implementation of CFD into the early design stages of the Space Transportation Main Engine (STME), Space Transportation Booster Engine (STBE), and the Environmental Control and Life Support System (ECLSS) for the Space Station. Finally, CFD expectations in the design environment will be delineated.

  5. Psychological health maintenance on Space Station Freedom

    NASA Technical Reports Server (NTRS)

    Santy, Patricia A.

    1990-01-01

    The scheduling of crew rotations at intervals of as much as 180 days on NASA's Space Station Freedom entails that the cumulative effects of psychological, emotional, and social stressors on astronauts be monitored. The Space Station's Health Maintenance Facility (HMF) will furnish preventive, diagnostic, and therapeutic assistance for significant psychiatric and interpersonal problems. Mental health professionals must be part of the team of medical personnel charged with facilitating the physiological and phychological transition from earth to space and back. An account is presently given of the critical factors to be addressed by HMF personnel on extended-duration missions.

  6. Programmable 2-D Addressable Cryogenic Aperture Masks

    NASA Technical Reports Server (NTRS)

    Kutyrev, A. S.; Moseley, S. H.; Jhabvala, M.; Li, M.; Schwinger, D. S.; Silverberg, R. F.; Wesenberg, R. P.

    2004-01-01

    We are developing a two-dimensional array of square microshutters (programmable aperture mask) for a multi-object spectrometer for the James Webb Space Telescope (JWST). This device will provide random access selection of the areas in the field to be studied. The device is in essence a close packed array of square slits, each of which can be opened independently to select areas of the sky for detailed study.The device is produced using a 100-micron thick silicon wafer as a substrate with 0.5-micron thick silicon nitride shutters on top of it. Silicon nitride has been selected as the blade and flexure material because its stiffness allows thinner and lighter structures than single crystal Si, the chief alternative, and because of its ease of manufacture. The 100 micron silicon wafer is backetched in a high aspect ratio Deep Reactive Ion Etching (Deep RIE) to leave only a support grid for the shutters and the address electronics. The shutter actuation is done magnetically whereas addressing is electrostatic. 128x128 format microshutter arrays have been produced. Their operation has been demostarted on 32x32 subarrays. Good reliability of the fabrication process and good quality of the microshutters has been achieved. The mechanical behavior and optical performance of the fabricated arrays at cryogenic temperature are being studied.

  7. 75 FR 28821 - NASA Advisory Council; Commercial Space Committee; Meeting

    Federal Register 2010, 2011, 2012, 2013, 2014

    2010-05-24

    ... NATIONAL AERONAUTICS AND SPACE ADMINISTRATION [Notice (10-060)] NASA Advisory Council; Commercial... Committee of the NASA Advisory Council. DATES: Thursday, June 17, 2010, 1 p.m.-4 p.m., EDST. ADDRESSES: NASA... Space Administration, Washington, DC 20546. Phone 202- 358-1686, fax: 202-358-3878, [email protected]nasa...

  8. 75 FR 5630 - NASA Advisory Council; Space Operations Committee; Meeting

    Federal Register 2010, 2011, 2012, 2013, 2014

    2010-02-03

    ... NATIONAL AERONAUTICS AND SPACE ADMINISTRATION [Notice (10-017)] NASA Advisory Council; Space... Committee of the NASA Advisory Council. DATES: Wednesday, February 17, 2010, 9 a.m.-12 p.m. EST. ADDRESSES: NASA Headquarters, 300 E Street, SW., Washington, DC 20456, Room 2U22. FOR FURTHER INFORMATION CONTACT...

  9. CSI related dynamics and control issues in space robotics

    NASA Technical Reports Server (NTRS)

    Schmitz, Eric; Ramey, Madison

    1993-01-01

    The research addressed includes: (1) CSI issues in space robotics; (2) control of elastic payloads, which includes 1-DOF example, and 3-DOF harmonic drive arm with elastic beam; and (3) control of large space arms with elastic links, which includes testbed description, modeling, and experimental implementation of colocated PD and end-point tip position controllers.

  10. Blue Marble Space Institute essay contest

    NASA Astrophysics Data System (ADS)

    Wendel, JoAnna

    2014-04-01

    The Blue Marble Space Institute of Science, based in Seattle, Wash., is inviting college students to participate in its essay contest. Essays need to address the question, "In the next 100 years, how can human civilization prepare for the long-term changes to the Earth system that will occur over the coming millennium?" According to the institute, the purpose of the contest is "to stimulate creative thinking relating to space exploration and global issues by exploring how changes in the Earth system will affect humanity's future."

  11. Asthenia--does it exist in space?

    NASA Technical Reports Server (NTRS)

    Kanas, N.; Salnitskiy, V.; Gushin, V.; Weiss, D. S.; Grund, E. M.; Flynn, C.; Kozerenko, O.; Sled, A.; Marmar, C. R.

    2001-01-01

    OBJECTIVE: First popularized as neurasthenia in the late 1800s by American George Beard, asthenia has been viewed by Russian psychologists and flight surgeons as a major problem that affects cosmonauts participating in long-duration space missions. However, there is some controversy about whether this syndrome exists in space; this controversy is attributable in part to the fact that it is not recognized in the current American psychiatric diagnostic system. METHODS: To address this issue empirically, we retrospectively examined the data from our 4 1/2-year, NASA-funded study of crew member and mission control interactions during the Shuttle/Mir space program. Three of the authors identified eight items of stage 1 asthenia from one of our measures, the Profile of Mood States (POMS). Scores on these items from 13 Russian and American crew members were compared with scores derived from the opinions of six Russian space experts. RESULTS: Crew members' scores in space were significantly lower than the experts' scores on seven of the eight items, and they generally were in the "not at all" to "a little" range of the item scales. There were no differences in mean scores before and after launch or across the four quarters of the missions. There were no differences in response between Russian and American crew members. CONCLUSIONS: We could not demonstrate the presence of asthenia in space as operationally defined using the POMS. However, the POMS addresses only emotional and not physiological aspects of the syndrome, and the subject responses in our study generally were skewed toward the positive end of the scales. Further research on this syndrome needs to be done and should include physiological measures and measures that are specific to asthenia.

  12. Space Station personal hygiene study

    NASA Technical Reports Server (NTRS)

    Prejean, Stephen E.; Booher, Cletis R.

    1986-01-01

    A personal hygiene system is currently under development for Space Station application that will provide capabilities equivalent to those found on earth. This paper addresses the study approach for specifying both primary and contingency personal hygiene systems and provisions for specified growth. Topics covered are system definition and subsystem descriptions. Subsystem interfaces are explored to determine which concurrent NASA study efforts must be monitored during future design phases to stay up-to-date on critical Space Station parameters. A design concept for a three (3) compartment personal hygiene facility is included as a baseline for planned test and verification activities.

  13. 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.

  14. Closely-Spaced Objects and Mathematical Groups Combined With a Robust Observational Method

    DTIC Science & Technology

    2009-09-01

    AUTHOR( S ) 5d. PROJECT NUMBER 5e. TASK NUMBER 5f. WORK UNIT NUMBER 7. PERFORMING ORGANIZATION NAME( S ) AND ADDRESS(ES) Air Force Research Laboratory...Space Vehicles Directorate,Kirtland AFB,NM,87117 8. PERFORMING ORGANIZATION REPORT NUMBER 9. SPONSORING/MONITORING AGENCY NAME( S ) AND ADDRESS(ES...10. SPONSOR/MONITOR’S ACRONYM( S ) 11. SPONSOR/MONITOR’S REPORT NUMBER( S ) 12. DISTRIBUTION/AVAILABILITY STATEMENT Approved for public release

  15. Decision Space and Capacities in the Decentralization of Health Services in FijiComment on "Decentralisation of Health Services in Fiji: A Decision Space Analysis".

    PubMed

    Bossert, Thomas J

    2016-05-08

    The study of decentralization in Fiji shows that increasing capacities is not necessarily related to increasing decision space of local officials, which is in contrast with earlier studies in Pakistan. Future studies should address the relationship among decision space, capacities, and health system performance. © 2016 by Kerman University of Medical Sciences.

  16. Center of Excellence in Space Data and Information Science, Year 9

    NASA Technical Reports Server (NTRS)

    Yesha, Yelena

    1997-01-01

    This report summarizes the range of computer science related activities undertaken by CESDIS(Center of Excellence in Space Data and Information Sciences) for NASA in the twelve months from July 1, 1996 through June 30, 1997. These activities address issues related to accessing, processing, and analyzing data from space observing systems through collaborative efforts with university, industry, and NASA space and Earth scientists.

  17. Canadian Activities in Space Debris Mitigation Technologies

    NASA Astrophysics Data System (ADS)

    Nikanpour, Darius; Jiang, Xin Xiang; Goroshin, Samuel; Haddad, Emile; Kruzelecky, Roman; Hoa, Suong; Merle, Philippe; Kleiman, Jacob; Gendron, Stephane; Higgins, Andrew; Jamroz, Wes

    The space environment, and in particular the Low Earth Orbit (LEO), is becoming increasingly populated with space debris which include fragments of dysfunctional spacecraft parts and materials traveling at speeds up to 15 km per second. These pose an escalating potential threat to LEO spacecraft, the international space station, and manned missions. This paper presents the Canadian activities to address the concerns over space debris in terms of debris mitigation measures and technologies; these include novel spacecraft demise technologies to safely decommission the spacecraft at the end of the mission, integrated self-healing material technologies for spacecraft structures to facilitate self-repair and help maintain the spacecraft structural and thermal performance, hypervelocity ground test capability to predict the impact of space debris on spacecraft performance, and ways of raising awareness within the space community through participation in targeted Science and Technology conferences and international forums.

  18. Zero Robotics at Kennedy Space Center Visitor Complex

    NASA Image and Video Library

    2017-08-11

    Darth Vader and other Star Wars characters from the 501st Legion address students and sponsors in the Center for Space Education at NASA’s Kennedy Space Center in Florida. Teams from across the state of Florida were gathered at Kennedy for the finals of the Zero Robotics Middle School Summer Program national championship. The five-week program allows rising sixth- through ninth-graders to write programs for small satellites called SPHERES (Synchronized, Position, Hold, Engage, Reorient, Experimental Satellites). Finalists saw their code tested aboard the International Space Station.

  19. Space Mirror Memorial

    NASA Image and Video Library

    2007-01-27

    Former astronaut John Young addresses guests and attendees at a ceremony at the KSC Visitor Complex held in remembrance of the astronauts lost in the Apollo 1 fire: Virgil "Gus" Grissom, Edward H. White II and Roger B. Chaffee. Members of their families, along with Associate Administrator for Space Operations William Gerstenmaier, President of the Astronauts Memorial Foundation Stephen Feldman, Chairman of the Board of Directors of the Astronauts Memorial Foundation William Potter and former astronaut John Young, attended the ceremony. Behind the stage is the Space Mirror Memorial, designated as a national memorial by Congress and President George Bush in 1991 to honor fallen astronauts. Their names are emblazoned on the monument’s 42-1/2-foot-high by 50-foot-wide black granite surface as if to be projected into the heavens.

  20. Requirements and approach for a space tourism launch system

    NASA Astrophysics Data System (ADS)

    Penn, Jay P.; Lindley, Charles A.

    2003-01-01

    Market surveys suggest that a viable space tourism industry will require flight rates about two orders of magnitude higher than those required for conventional spacelift. Although enabling round-trip cost goals for a viable space tourism business are about 240/pound (529/kg), or 72,000/passenger round-trip, goals should be about 50/pound (110/kg) or approximately 15,000 for a typical passenger and baggage. The lower price will probably open space tourism to the general population. Vehicle reliabilities must approach those of commercial aircraft as closely as possible. This paper addresses the development of spaceplanes optimized for the ultra-high flight rate and high reliability demands of the space tourism mission. It addresses the fundamental operability, reliability, and cost drivers needed to satisfy this mission need. Figures of merit similar to those used to evaluate the economic viability of conventional commercial aircraft are developed, including items such as payload/vehicle dry weight, turnaround time, propellant cost per passenger, and insurance and depreciation costs, which show that infrastructure can be developed for a viable space tourism industry. A reference spaceplane design optimized for space tourism is described. Subsystem allocations for reliability, operability, and costs are made and a route to developing such a capability is discussed. The vehicle's ability to satisfy the traditional spacelift market is also shown.

  1. Space surveillance satellite catalog maintenance

    NASA Astrophysics Data System (ADS)

    Jackson, Phoebe A.

    1990-04-01

    The United States Space Command (USSPACECOM) is a Unified Command of the Department of Defense with headquarters at Peterson Air Force Base, Colorado Springs, Co. One of the responsibilities of USSPACECOM is to detect, track, identify, and maintain a catalog of all manmade objects in earth orbit. This satellite catalog is the most important tool for space surveillance. The purpose of this paper is threefold. First, to identify why the command does the job of satellite catalog maintenance. Second, to describe what the satellite catalog is and how it is maintained. Third, and finally, to identify the questions that must be addressed if this command is to track small space object debris. This paper's underlying rationale is to describe our catalog maintenance services so that the members of our community can use them with assurance.

  2. Challenges in building intelligent systems for space mission operations

    NASA Technical Reports Server (NTRS)

    Hartman, Wayne

    1991-01-01

    The purpose here is to provide a top-level look at the stewardship functions performed in space operations, and to identify the major issues and challenges that must be addressed to build intelligent systems that can realistically support operations functions. The focus is on decision support activities involving monitoring, state assessment, goal generation, plan generation, and plan execution. The bottom line is that problem solving in the space operations domain is a very complex process. A variety of knowledge constructs, representations, and reasoning processes are necessary to support effective human problem solving. Emulating these kinds of capabilities in intelligent systems offers major technical challenges that the artificial intelligence community is only beginning to address.

  3. National Space Biomedical Research Institute

    NASA Technical Reports Server (NTRS)

    2005-01-01

    NSBRI partners with NASA to develop countermeasures against the deleterious effects of long duration space flight. NSBRI's science and technology projects are directed toward this goal, which is accomplished by: 1. Designing, testing and validating effective countermeasures to address the biological and environmental impediments to long-term human space flight. 2. Defining the molecular, cellular, organ-level, integrated responses and mechanistic relationships that ultimately determine these impediments, where such activity fosters the development of novel countermeasures. 3. Establishing biomedical support technologies to maximize human performance in space, reduce biomedical hazards to an acceptable level and deliver quality medical care. 4. Transferring and disseminating the biomedical advances in knowledge and technology acquired through living and working in space to the general benefit of humankind; including the treatment of patients suffering from gravity- and radiation-related conditions on Earth. and 5. ensuring open involvement of the scientific community,industry and the public in the Institute's activities and fostering a robust collaboration with NASA, particularly through JSC.

  4. Infrastructure for large space telescopes

    NASA Astrophysics Data System (ADS)

    MacEwen, Howard A.; Lillie, Charles F.

    2016-10-01

    It is generally recognized (e.g., in the National Aeronautics and Space Administration response to recent congressional appropriations) that future space observatories must be serviceable, even if they are orbiting in deep space (e.g., around the Sun-Earth libration point, SEL2). On the basis of this legislation, we believe that budgetary considerations throughout the foreseeable future will require that large, long-lived astrophysics missions must be designed as evolvable semipermanent observatories that will be serviced using an operational, in-space infrastructure. We believe that the development of this infrastructure will include the design and development of a small to mid-sized servicing vehicle (MiniServ) as a key element of an affordable infrastructure for in-space assembly and servicing of future space vehicles. This can be accomplished by the adaptation of technology developed over the past half-century into a vehicle approximately the size of the ascent stage of the Apollo Lunar Module to provide some of the servicing capabilities that will be needed by very large telescopes located in deep space in the near future (2020s and 2030s). We specifically address the need for a detailed study of these servicing requirements and the current proposals for using presently available technologies to provide the appropriate infrastructure.

  5. NASA Research Announcement for Space Suit Survivability Enhancement

    NASA Technical Reports Server (NTRS)

    Fredrickson, Thad H.; Ware, Joanne S.; Lin, John K.; Pastore, Christopher M.

    1998-01-01

    This report documents the research activities for space suit survivability material enhancements. Self-sealing mechanisms for the pressure envelope were addressed, as were improvements in materials for cut, puncture, and hypervelocity impact resistance.

  6. Human behavioral research in space: quandaries for research subjects and researchers

    NASA Technical Reports Server (NTRS)

    Shepanek, Marc

    2005-01-01

    With the advent of long-duration spaceflight on board the International Space Station (ISS) and possible future missions beyond low Earth orbit (LEO) such as Mars, it is critical that those at NASA have a realistic assessment of the challenges that will face individuals on long-duration missions so that they can develop preventive and real-time countermeasures to behavioral health issues. While space travellers are very interested in having countermeasures to the deleterious effects of space missions, they have a powerful disincentive to participate in this research if they feel it could in any way negatively affect their flight status. The behavioral issues of isolation and confinement for extended-duration space missions are reviewed. Areas of basic and clinical behavioral research are listed. And the classical clinical model for research is not considered appropriate for the current configuration of the space program. The use of analogue environments and advanced statistical analysis are suggested as ways to address the limited spaceflight research opportunities. The challenge of research subject or patient confidentiality vs. mission safety and issues of personal flight status are addressed.

  7. Human behavioral research in space: quandaries for research subjects and researchers.

    PubMed

    Shepanek, Marc

    2005-06-01

    With the advent of long-duration spaceflight on board the International Space Station (ISS) and possible future missions beyond low Earth orbit (LEO) such as Mars, it is critical that those at NASA have a realistic assessment of the challenges that will face individuals on long-duration missions so that they can develop preventive and real-time countermeasures to behavioral health issues. While space travellers are very interested in having countermeasures to the deleterious effects of space missions, they have a powerful disincentive to participate in this research if they feel it could in any way negatively affect their flight status. The behavioral issues of isolation and confinement for extended-duration space missions are reviewed. Areas of basic and clinical behavioral research are listed. And the classical clinical model for research is not considered appropriate for the current configuration of the space program. The use of analogue environments and advanced statistical analysis are suggested as ways to address the limited spaceflight research opportunities. The challenge of research subject or patient confidentiality vs. mission safety and issues of personal flight status are addressed.

  8. Updates on CCMC Activities and GSFC Space Weather Services

    NASA Technical Reports Server (NTRS)

    Zhengm Y.; Hesse, M.; Kuznetsova, M.; Pulkkinen, A.; Rastaetter, L.; Maddox, M.; Taktakishvili, A.; Berrios, D.; Chulaki, A.; Lee, H.; hide

    2011-01-01

    In this presentation, we provide updates on CCMC modeling activities, CCMC metrics and validation studies, and other CCMC efforts. In addition, an overview of GSFC Space Weather Services (a sibling organization to the Community Coordinated Modeling Center) and its products/capabilities will be given. We show how some of the research grade models, if running in an operational mode, can help address NASA's space weather needs by providing forecasting/now casting capabilities of significant space weather events throughout the solar system.

  9. THE FLUIDS AND COMBUSTION FACILITY: ENABLING THE EXPLORATION OF SPACE

    NASA Technical Reports Server (NTRS)

    Weiland, Karen J.; Gati, Frank G.; Hill, Myron E.; OMalley, Terence; Zurawski, Robert L.

    2005-01-01

    The Fluids and Combustion Facility (FCF) is an International Space Station facility designed to support physical and biological research as well as technology experiments in space. The FCF consists of two racks called the Combustion Integrated Rack (CIR) and the Fluids Integrated Rack (FIR). The capabilities of the CIR and the FIR and plans for their utilization will support the President s vision for space exploration. The CIR will accommodate physical research and technology experiments that address needs in the areas of spacecraft fire prevention, detection and suppression, incineration of solid wastes, and power generation. Initial experiments will provide data to support design decisions for exploration spacecraft. The CIR provides a large sealed chamber in a near-weightless environment. The chamber supports many simulated atmospheres including lunar or Martian environments. The FIR will accommodate experiments that address needs for advanced life support, power, propulsion, and spacecraft thermal control systems. The FIR can also serve as a platform for experiments that address human health and performance, medical technologies, and biological sciences. The FIR provides a large volume for payload hardware, reconfigurable diagnostics, customizable software, active rack-level vibration isolation, and data acquisition and management in a nearly uniform temperature environment.

  10. The Fluids and Combustion Facility: Enabling the Exploration of Space

    NASA Technical Reports Server (NTRS)

    Weiland, Karen J.; Gati, Frank G.; Hill, Myron E.; O'Malley Terence F.; Zurawski, Robert L.

    2005-01-01

    The Fluids and Combustion Facility (FCF) is an International Space Station facility designed to support physical and biological research as well as technology experiments in space. The FCF consists of two racks called the Combustion Integrated Rack (CIR) and the Fluids Integrated Rack (FIR). The capabilities of the CIR and the FIR and plans for their utilization will support the President's vision for space exploration. The CIR will accommodate physical research and technology experiments that address needs in the areas of spacecraft fire prevention, detection and suppression, incineration of solid wastes, and power generation. Initial experiments will provide data to support design decisions for exploration spacecraft. The CIR provides a large sealed chamber in a near-weightless environment. The chamber supports many simulated atmospheres including lunar or Martian environments. The FIR will accommodate experiments that address needs for advanced life support, power, propulsion, and spacecraft thermal control systems. The FIR can also serve as a platform for experiments that address human health and performance, medical technologies, and biological sciences. The FIR provides a large volume for payload hardware, reconfigurable diagnostics, customizable software, active rack-level vibration isolation, and data acquisition and management in a nearly uniform temperature environment.

  11. The Space Puppets

    NASA Astrophysics Data System (ADS)

    Lago, M. Miguel; Esteban Berea, J.; Miñambres Fernández, M.; Rufino, M.

    2002-01-01

    travels in Space driving the dance artist on its tail. On the journey, they discover the alphabet letters, letters that make words, words which are concepts of physics, physics which is on the stage this stage being space. The teacher before, during and after the performance, will analyse, review and discuss through this simple tool "an alphabet", space vocabulary and also the meaning of communication and teaching. They will relate to the present situation of physics and science education in general and Space in particular and how to address this problem through our language. Instructions Name of Conference to which this abstract is53rd IAC submitted FirstFirst Submission Subrnission/Update/Correction/Withdrawal Title of Contribution in plain ASCII.The Space Puppets Author(s): a) Last Name, Initial(s) - b) LastMIGUEL LAGO., M. Name, lnitial(s) - c) etc. Number and Title or Abbreviation of SessionP. Space and Education Symposium to which this abstract is submitted.P.3. Educational and Outreach Name of Chairs of that SessionFrank Friedlaender and Dennis Stone Indicate any equipment you need in addition to the standard equipment: One overhead projector and screen will be available in ail IAC sessions. A limited number of LCD and 35mm slide projectors will be provided in sessions based on advance notice of need and availability of projectors. All presenters should bring copies of their computer presentations in overhead format in case LCD projection is not available for a specific session. Type of abstract file added/attached/sentWord file sent by e-mail separately Address of Main Author:Miguel Lago NameMónica. First Name Dept. Company/University: PO Box/Street:P.O. Box ZIP Code:D-22415 City: Country: Telephone: E-mail:+31 71 565 36 84 E-mail:+31 71 565 55 90 Have you obtained or will you obtain approval to attend the Congress? Yes Are you willing to present this paper at the IAC Public Outreach Program: Yes

  12. Musculoskeletal adaptation to mechanical forces on Earth and in space

    NASA Technical Reports Server (NTRS)

    Whalen, Robert

    1993-01-01

    A major concern of the US and Russian space programs is the health and safety of astronauts and cosmonauts. One of the areas receiving the most attention has been the effects of long duration space flight on the musculoskeletel system. After three decades of space flight and research, questions continue. Can exercise in space maintain musculoskeletal tissue mass and function in an adult? The objective of this paper is to address this question in a way that hopefully provides a rational basis for quantifying and evaluating the influnence of daily activities on muscle and bone on Earth and in space.

  13. Aiming Instruments On The Space Station

    NASA Technical Reports Server (NTRS)

    Estus, Jay M.; Laskin, Robert; Lin, Yu-Hwan

    1989-01-01

    Report discusses capabilities and requirements for aiming scientific instruments carried aboard proposed Space Station. Addresses two issues: whether system envisioned for pointing instruments at celestial targets offers sufficiently low jitter, high accuracy, and high stability to meet scientific requirements; whether it can do so even in presence of many vibrations and other disturbances on Space Station. Salient conclusion of study, recommendation to develop pointing-actuator system including mechanical/fluid base isolator underneath reactionaless gimbal subsystem. This kind of system offers greatest promise of high performance, cost-effectiveness, and modularity for job at hand.

  14. Space artificial gravity facilities - An approach to their construction

    NASA Technical Reports Server (NTRS)

    Wercinski, P. F.; Searby, N. D.; Tillman, B. W.

    1988-01-01

    In the course of adaptation to a space microgravity environment, humans experience cardiovascular deconditioning, loss of muscle mass, and loss of bone minerals. One possible solution to these space adaptation problems is to simulate earth's gravity using the centripetal acceleration created by a rotating system. The design and construction of rotating space structures pose many challenges. Before committing to the use of artificial gravity in future space missions, a man-rated Variable Gravity Research Facility (VGRF) should be developed in earth orbit as a gravitational research tool and testbed. This paper addresses the requirements and presents preliminary concepts for such a facility.

  15. Autonomous Space Shuttle

    NASA Technical Reports Server (NTRS)

    Siders, Jeffrey A.; Smith, Robert H.

    2004-01-01

    The continued assembly and operation of the International Space Station (ISS) is the cornerstone within NASA's overall Strategic P an. As indicated in NASA's Integrated Space Transportation Plan (ISTP), the International Space Station requires Shuttle to fly through at least the middle of the next decade to complete assembly of the Station, provide crew transport, and to provide heavy lift up and down mass capability. The ISTP reflects a tight coupling among the Station, Shuttle, and OSP programs to support our Nation's space goal . While the Shuttle is a critical component of this ISTP, there is a new emphasis for the need to achieve greater efficiency and safety in transporting crews to and from the Space Station. This need is being addressed through the Orbital Space Plane (OSP) Program. However, the OSP is being designed to "complement" the Shuttle as the primary means for crew transfer, and will not replace all the Shuttle's capabilities. The unique heavy lift capabilities of the Space Shuttle is essential for both ISS, as well as other potential missions extending beyond low Earth orbit. One concept under discussion to better fulfill this role of a heavy lift carrier, is the transformation of the Shuttle to an "un-piloted" autonomous system. This concept would eliminate the loss of crew risk, while providing a substantial increase in payload to orbit capability. Using the guidelines reflected in the NASA ISTP, the autonomous Shuttle a simplified concept of operations can be described as; "a re-supply of cargo to the ISS through the use of an un-piloted Shuttle vehicle from launch through landing". Although this is the primary mission profile, the other major consideration in developing an autonomous Shuttle is maintaining a crew transportation capability to ISS as an assured human access to space capability.

  16. Lasers in space

    NASA Astrophysics Data System (ADS)

    Michaelis, M. M.; Forbes, A.; Bingham, R.; Kellett, B. J.; Mathye, A.

    2008-05-01

    A variety of laser applications in space, past, present, future and far future are reviewed together with the contributions of some of the scientists and engineers involved, especially those that happen to have South African connections. Historically, two of the earliest laser applications in space, were atmospheric LIDAR and lunar ranging. These applications involved atmospheric physicists, several astronauts and many of the staff recruited into the Soviet and North American lunar exploration programmes. There is a strong interest in South Africa in both LIDAR and lunar ranging. Shortly after the birth of the laser (and even just prior) theoretical work on photonic propulsion and space propulsion by laser ablation was initiated by Georgii Marx, Arthur Kantrowitz and Eugen Saenger. Present or near future experimental programs are developing in the following fields: laser ablation propulsion, possibly coupled with rail gun or gas gun propulsion; interplanetary laser transmission; laser altimetry; gravity wave detection by space based Michelson interferometry; the de-orbiting of space debris by high power lasers; atom laser interferometry in space. Far future applications of laser-photonic space-propulsion were also pioneered by Carl Sagan and Robert Forward. They envisaged means of putting Saenger's ideas into practice. Forward also invented a laser based method for manufacturing solid antimatter or SANTIM, well before the ongoing experiments at CERN with anti-hydrogen production and laser-trapping. SANTIM would be an ideal propellant for interstellar missions if it could be manufactured in sufficient quantities. It would be equally useful as a power source for the transmission of information over light year distances. We briefly mention military lasers. Last but not least, we address naturally occurring lasers in space and pose the question: "did the Big Bang lase?"

  17. Women in Space

    NASA Astrophysics Data System (ADS)

    Mukai, Chiaki

    Since 1963 women have successfully flown and worked in space so much so that having a female aboard the shuttle, on Soyuz or on the International Space Station is considered commonplace. We do know that women have historically been virturally equal in capabilities and performance with their male counterparts. For example, there have been superb shuttle pilots, shuttle commanders, EVA participants as well as mission specialists and payload specialists. Thus, gender is not an issue within the ranks, rather a simple fact. In addition, there is a positive psychological factor that has been noted in that a mixed crew seems to have better intercommunications dynamics. JAXA has conducted the experiments on 7 subjects on bone mineral density in short duration of space flight and noticed a slight decrease in that density in both male and female. Lean body mass was also examined and found to be reduced by 3.0 % on average. There was no significant difference between male and female subjects in short duration of space flight. Unfortunately, only 1 of the 7 subjects was a woman. In fact, only 48 women have flown in total, some more than once, and science is still discovering the effects of the space experience. This is due to the limited exposure on orbit and in microgravity and the limited number of potential subjects. Time in space is beginning to increase with the continued progress of the ISS, thereby creating a demand for more knowledge on what effects long term exposure will have on the female of the species. The presentation will address these and other concerns involved with women in space from the perspective of a female scientist and an astronaut.

  18. Advanced Solid State Lighting for AES Deep Space Hab Project

    NASA Technical Reports Server (NTRS)

    Holbert, Eirik

    2015-01-01

    The advanced Solid State Lighting (SSL) assemblies augmented 2nd generation modules under development for the Advanced Exploration Systems Deep Space Habitat in using color therapy to synchronize crew circadian rhythms. Current RGB LED technology does not produce sufficient brightness to adequately address general lighting in addition to color therapy. The intent is to address both through a mix of white and RGB LEDs designing for fully addressable alertness/relaxation levels as well as more dramatic circadian shifts.

  19. Space Station RT and E Utilization Study

    NASA Technical Reports Server (NTRS)

    Wunsch, P. K.; Anderson, P. H.

    1989-01-01

    Descriptive information on a set of 241 mission concepts was reviewed to establish preliminary Space Station outfitting needs for technology development missions. The missions studied covered the full range of in-space technology development activities envisioned for early Space Station operations and included both pressurized volume and attached payload requirements. Equipment needs were compared with outfitting plans for the life sciences and microgravity user communities, and a number of potential outfitting additions were identified. Outfitting implementation was addressed by selecting a strawman mission complement for each of seven technical themes, by organizing the missions into flight scenarios, and by assessing the associated outfitting buildup for planning impacts.

  20. The US space station: Potential base for a spaceborne microwave facility

    NASA Technical Reports Server (NTRS)

    Mcconnell, D.

    1983-01-01

    Concepts for a U.S. space station were studied to achieve the full potential of the Space Shuttle and to provide a more permanent presence in space. The space station study is summarized in the following questions: Given a space station in orbit in the 1990's, how should it best be used to achieve science and applications objectives important at that time? To achieve those objectives, of what elements should the station be comprised and how should the elements be configured and equipped. These questions are addressed.

  1. Overview of NASA Heliophysics and the Science of Space Weather

    NASA Astrophysics Data System (ADS)

    Talaat, E. R.

    2017-12-01

    In this paper, an overview is presented on the various activities within NASA that address space weather-related observations, model development, and research to operations. Specific to space weather, NASA formulates and implements, through the Heliophysics division, a national research program for understanding the Sun and its interactions with the Earth and the Solar System and how these phenomena impact life and society. NASA researches and prototypes new mission and instrument capabilities in this area, providing new physics-based algorithms to advance the state of solar, space physics, and space weather modeling.

  2. Development and Preliminary Examination of the Psychometric Properties of the Psychoeducational Group Alliance Scale for Children (PGA-c) in Two Samples of Children Participating in Groups

    ERIC Educational Resources Information Center

    Brouzos, Andreas; Vassilopoulos, Stephanos P.; Baourda, Vasiliki C.

    2018-01-01

    Studies examining processes in youth group psychotherapy are scarce. This article reports on the development and psychometric properties of the Psychoeducational Group Alliance Scale for Children (PGAS-c). This scale was designed to assess the therapeutic alliance that develops between the members and the facilitator in a psychoeducational group…

  3. International Space Station Research Plan, Assembly Sequence Rev., F

    DTIC Science & Technology

    2000-08-01

    muscles ü Higher risk for bone fracture upon return to Earth ü Potential for “slipped discs” ü Diminished ability to quickly respond to emergencies...Office of Biological and Physical Research International Space Station Research Plan Assembly Sequence Rev. F, Aug. 2000l . , . Report...Organization Name(s) and Address(es) NASA, Office of Biological and Physical Research Performing Organization Report Number Sponsoring/Monitoring Agency

  4. Space operations center: Shuttle interaction study extension, executive summary

    NASA Technical Reports Server (NTRS)

    1982-01-01

    The Space Operations Center (SOC) is conceived as a permanent facility in low Earth orbit incorporating capabilities for space systems construction; space vehicle assembly, launching, recovery and servicing; and the servicing of co-orbiting satellites. The Shuttle Transportation System is an integral element of the SOC concept. It will transport the various elements of the SOC into space and support the assembly operation. Subsequently, it will regularly service the SOC with crew rotations, crew supplies, construction materials, construction equipment and components, space vehicle elements, and propellants and spare parts. The implications to the SOC as a consequence of the Shuttle supporting operations are analyzed. Programmatic influences associated with propellant deliveries, spacecraft servicing, and total shuttle flight operations are addressed.

  5. NOAA Environmental Satellite Measurements of Extreme Space Weather Events

    NASA Astrophysics Data System (ADS)

    Denig, W. F.; Wilkinson, D. C.; Redmon, R. J.

    2015-12-01

    For over 40 years the National Oceanic and Atmospheric Administration (NOAA) has continuously monitored the near-earth space environment in support of space weather operations. Data from this period have covered a wide range of geophysical conditions including periods of extreme space weather such as the great geomagnetic March 1989, the 2003 Halloween storm and the more recent St Patrick's Day storm of 2015. While not specifically addressed here, these storms have stressed our technology infrastructure in unexpected and surprising ways. Space weather data from NOAA geostationary (GOES) and polar (POES) satellites along with supporting data from the Air Force are presented to compare and contrast the space environmental conditions measured during extreme events.

  6. STS-85 Cmdr Brown addresses media during TCDT

    NASA Technical Reports Server (NTRS)

    1997-01-01

    STS-85 Commander Curtis L. Brown, Jr., addresses the news media at a briefing at Launch Pad 39A while the other members of the flight crew in the background prepare to field questions during a break in Terminal Countdown Demonstration Test (TCDT) activities for that mission. They are (back row, from left): Pilot Kent V. Rominger; Payload Commander N. Jan Davis; Mission Specialist Stephen K. Robinson; Payload Specialist Bjarni V. Tryggvason; and Mission Specialist Robert L. Curbeam, Jr. The primary payload aboard the Space Shuttle orbiter Discovery is the Cryogenic Infrared Spectrometers and Telescopes for the Atmosphere-2 (CRISTA-SPAS-2). Other payloads on the 11-day mission include the Manipulator Flight Demonstration (MFD), and Technology Applications and Science-1 (TAS-1) and International Extreme Ultraviolet Hitchhiker-2 (IEH-2) experiments.

  7. Vice President Mike Pence Visits Kennedy Space Center

    NASA Image and Video Library

    2017-07-06

    NASA Kennedy Space Center Director Robert Cabana addresses agency leaders, U.S. and Florida government officials, and employees inside the Vehicle Assembly Building during a visit by Vice President Mike Pence. Pence thanked employees for advancing American leadership in space. During his visit to Kennedy, the Vice President also toured several facilities highlighting the public-private partnerships, as both NASA and commercial companies prepare to launch American astronauts from the multi-user spaceport.

  8. Space station automation study-satellite servicing, volume 2

    NASA Technical Reports Server (NTRS)

    Meissinger, H. F.

    1984-01-01

    Technology requirements for automated satellite servicing operations aboard the NASA space station were studied. The three major tasks addressed: (1) servicing requirements (satellite and space station elements) and the role of automation; (2) assessment of automation technology; and (3) conceptual design of servicing facilities on the space station. It is found that many servicing functions cloud benefit from automation support; and the certain research and development activities on automation technologies for servicing should start as soon as possible. Also, some advanced automation developments for orbital servicing could be effectively applied to U.S. industrial ground based operations.

  9. Fourth Conference on Artificial Intelligence for Space Applications

    NASA Technical Reports Server (NTRS)

    Odell, Stephen L. (Compiler); Denton, Judith S. (Compiler); Vereen, Mary (Compiler)

    1988-01-01

    Proceedings of a conference held in Huntsville, Alabama, on November 15-16, 1988. The Fourth Conference on Artificial Intelligence for Space Applications brings together diverse technical and scientific work in order to help those who employ AI methods in space applications to identify common goals and to address issues of general interest in the AI community. Topics include the following: space applications of expert systems in fault diagnostics, in telemetry monitoring and data collection, in design and systems integration; and in planning and scheduling; knowledge representation, capture, verification, and management; robotics and vision; adaptive learning; and automatic programming.

  10. Space Transfer Concepts and Analyses for Exploration Missions

    NASA Technical Reports Server (NTRS)

    Woodcock, Gordon R.

    1993-01-01

    This report covers the third phase of a broad-scoped and systematic study of space transfer concepts for human lunar and Mars missions. The study addressed issues that were raised during Phase 2, developed generic Mars missions profile analysis data, and conducted preliminary analysis of the Mars in-space transportation requirements and implementation from Stafford Committee Synthesis Report. The major effort of the study was the development of the first Lunar Outpost (FLO) baseline which evolved from the Space Station Freedom Hab Module. Modifications for the First Lunar Outpost were made to meet mission requirements and technology advancements.

  11. Atmosphere Revitalization Technology Development for Crewed Space Exploration

    NASA Technical Reports Server (NTRS)

    Perry, Jay L.; Carrasquillo, Robyn L.; Harris, Danny W.

    2006-01-01

    As space exploration objectives extend human presence beyond low Earth orbit, the solutions to technological challenges presented by supporting human life in the hostile space environment must build upon experience gained during past and present crewed space exploration programs. These programs and the cabin atmosphere revitalization process technologies and systems developed for them represent the National Aeronautics and Space Administration s (NASA) past and present operational knowledge base for maintaining a safe, comfortable environment for the crew. The contributions of these programs to the NASA s technological and operational working knowledge base as well as key strengths and weaknesses to be overcome are discussed. Areas for technological development to address challenges inherent with the Vision for Space Exploration (VSE) are presented and a plan for their development employing unit operations principles is summarized

  12. Large space systems technology electronics: Data and power distribution

    NASA Technical Reports Server (NTRS)

    Dunbar, W. G.

    1980-01-01

    The development of hardware technology and manufacturing techniques required to meet space platform and antenna system needs in the 1980s is discussed. Preliminary designs for manned and automatically assembled space power system cables, connectors, and grounding and bonding materials and techniques are reviewed. Connector concepts, grounding design requirements, and bonding requirements are discussed. The problem of particulate debris contamination for large structure spacecraft is addressed.

  13. Marshall Space Flight Center's role in EASE/ACCESS mission management

    NASA Technical Reports Server (NTRS)

    Hawkins, Gerald W.

    1987-01-01

    The Marshall Space Flight Center (MSFC) Spacelab Payload Project Office was responsible for the mission management and development of several successful payloads. Two recent space construction experiments, the Experimental Assembly of Structures in Extravehicular Activity (EASE) and the Assembly Concept for Construction of Erectable Space Structures (ACCESS), were combined into a payload managed by the center. The Ease/ACCESS was flown aboard the Space Shuttle Mission 61-B. The EASE/ACCESS experiments were the first structures assembled in space, and the method used to manage this successful effort will be useful for future space construction missions. The MSFC mission management responsibilities for the EASE/ACCESS mission are addressed and how the lessons learned from the mission can be applied to future space construction projects are discussed.

  14. Library learning space--empirical research and perspective.

    PubMed

    Littleton, Dawn; Rethlefsen, Melissa

    2008-01-01

    Navigate the Net columns offer navigation to Web sites of value to medical librarians. For this issue, the authors recognize that librarians are frequently challenged to justify the need for the physical space occupied by a library in the context of the wide availability of electronic resources, ubiquitous student laptops, and competition for space needed by other institutional priorities. While this trend started years ago, it continues to raise a number of important practical and philosophical questions for libraries and the institutions they serve. What is the library for? What is library space best used for? How does the concept of "Library as Place" support informed decisions for librarians and space planners? In this issue, Web-based resources are surveyed that address these questions for libraries generally and health sciences libraries more specifically.

  15. Space Biology Initiative. Trade Studies, volume 1

    NASA Technical Reports Server (NTRS)

    1989-01-01

    The six studies which are addressed are entitled: Design Modularity and Commonality; Modification of Existing Hardware (COTS) vs. New Hardware Build Cost Analysis; Automation Cost vs. Crew Utilization; Hardware Miniaturization versus Cost; Space Station Freedom/Spacelab Modules Compatibility vs. Cost; and Prototype Utilization in the Development of Space Hardware. The product of these six studies was intended to provide a knowledge base and methodology that enables equipment produced for the Space Biology Initiative program to meet specific design and functional requirements in the most efficient and cost effective form consistent with overall mission integration parameters. Each study promulgates rules of thumb, formulas, and matrices that serves has a handbook for the use and guidance of designers and engineers in design, development, and procurement of Space Biology Initiative (SBI) hardware and software.

  16. Novel In-Space Manufacturing Concepts for the Development of Large Space Telescopes

    NASA Technical Reports Server (NTRS)

    Mooney, James T.; Reardon, Patrick; Gregory Don; Manning, Andrew; Blackmon, Jim; Howsman, Tom; Williams, Philip; Brantley, Whitt; Rakoczy, John; Herren, Kenneth

    2006-01-01

    There is a continuous demand for larger, lighter, and higher quality telescopes. Over the past several decades, we have seen the evolution from launchable 2 meter-class telescopes (such as Hubble), to today s demand for deployable 6 meter-class telescopes (such as JWST), to tomorrow s need for up to 150 meter-class telescopes. As the apertures continue to grow, it will become much more difficult and expensive to launch assembled telescope structures. To address this issue, we are seeing the emergence of new novel structural concepts, such as inflatable structures and membrane optics. While these structural concepts do show promise, it is very difficult to achieve and maintain high surface figure quality. Another potential solution to develop large space telescopes is to move the fabrication facility into space and launch the raw materials. In this paper we present initial in-space manufacturing concepts to enable the development of large telescopes. This includes novel approaches for the fabrication of both the optical elements and the telescope support structure. We will also discuss potential optical designs for large space telescopes and describe their relation to the fabrication methods. These concepts are being developed to meet the demanding requirements of DARPA s LASSO (Large Aperture Space Surveillance Optic) program which currently requires a 150 meter optical aperture with a 17 degree field of view.

  17. Space Psychology: A New Frontier. Implications for the Profession of Psychology.

    ERIC Educational Resources Information Center

    Ponterotto, Joseph G.; Hayden, Davis C.

    As many of the physical problems of space travel are solved, scientists are beginning to address the psychological needs of the astronauts. While the last decade has produced technological advances making space travel and work a definite possibility, psychologists and the public are largely unaware of the psychological and socio-psychological…

  18. Critical issues related to registration of space objects and transparency of space activities

    NASA Astrophysics Data System (ADS)

    Jakhu, Ram S.; Jasani, Bhupendra; McDowell, Jonathan C.

    2018-02-01

    The main purpose of the 1975 Registration Convention is to achieve transparency in space activities and this objective is motivated by the belief that a mandatory registration system would assist in the identification of space objects launched into outer space. This would also consequently contribute to the application and development of international law governing the exploration and use of outer space. States Parties to the Convention furnish the required information to the United Nations' Register of Space Objects. However, the furnished information is often so general that it may not be as helpful in creating transparency as had been hoped by the drafters of the Convention. While registration of civil satellites has been furnished with some general details, till today, none of the Parties have described the objects as having military functions despite the fact that a large number of such objects do perform military functions as well. In some cases, the best they have done is to indicate that the space objects are for their defense establishments. Moreover, the number of registrations of space objects is declining. This paper addresses the challenges posed by the non-registration of space objects. Particularly, the paper provides some data about the registration and non-registration of satellites and the States that have and have not complied with their legal obligations. It also analyses the specific requirements of the Convention, the reasons for non-registration, new challenges posed by the registration of small satellites and the on-orbit transfer of satellites. Finally, the paper provides some recommendations on how to enhance the registration of space objects, on the monitoring of the implementation of the Registration Convention and consequently how to achieve maximum transparency in space activities.

  19. Reuse and Interoperability of Avionics for Space Systems

    NASA Technical Reports Server (NTRS)

    Hodson, Robert F.

    2007-01-01

    The space environment presents unique challenges for avionics. Launch survivability, thermal management, radiation protection, and other factors are important for successful space designs. Many existing avionics designs use custom hardware and software to meet the requirements of space systems. Although some space vendors have moved more towards a standard product line approach to avionics, the space industry still lacks similar standards and common practices for avionics development. This lack of commonality manifests itself in limited reuse and a lack of interoperability. To address NASA s need for interoperable avionics that facilitate reuse, several hardware and software approaches are discussed. Experiences with existing space boards and the application of terrestrial standards is outlined. Enhancements and extensions to these standards are considered. A modular stack-based approach to space avionics is presented. Software and reconfigurable logic cores are considered for extending interoperability and reuse. Finally, some of the issues associated with the design of reusable interoperable avionics are discussed.

  20. Addressing Theory and Performance Enhancements for the Independent Sustain and Address AC Plasma Display

    NASA Astrophysics Data System (ADS)

    Warren, Kevin Wilson

    The Independent Sustain and Address (ISA) AC plasma panel is a flat, flicker-free, gas discharge type of display device. This display technology promises to reduce both the cost of manufacturing and operation of AC plasma displays. The ISA technology uses a vastly different mechanism to change the state of the display pixels than the standard AC plasma technology. This addressing mechanism is an exploitation of some of the natural characteristics associated with the plasma that can form during strong gas discharges. This thesis presents detailed data from experiments that were designed to evaluate and test the effectiveness of this mechanism. Through these experiments, the theory that the addressing methodology is based upon is developed and evaluated. These experiments show that the address margin windows for this technology are very large, minimally two to three times larger than the address margins for the standard XY AC plasma addressing techniques. New capabilities are also described, such as global brightness control for the ISA technology and a technique for increasing the addressing rate. These advances were designed into working prototypes and transferred to industry where there are currently commercial products available based upon these advances. A technique for implementing gray scale using some of these advances is also proposed.

  1. The NASA technology push towards future space mission systems

    NASA Technical Reports Server (NTRS)

    Sadin, Stanley R.; Povinelli, Frederick P.; Rosen, Robert

    1988-01-01

    As a result of the new Space Policy, the NASA technology program has been called upon to a provide a solid base of national capabilities and talent to serve NASA's civil space program, commercial, and other space sector interests. This paper describes the new technology program structure and its characteristics, traces its origin and evolution, and projects the likely near- and far-term strategic steps. It addresses the alternative 'push-pull' approaches to technology development, the readiness levels to which the technology needs to be developed for effective technology transfer, and the focused technology programs currently being implemented to satisfy the needs of future space systems.

  2. International Space Station Materials: Selected Lessons Learned

    NASA Technical Reports Server (NTRS)

    Golden, Johnny L.

    2007-01-01

    The International Space Station (ISS) program is of such complexity and scale that there have been numerous issues addressed regarding safety of materials: from design to manufacturing, test, launch, assembly on-orbit, and operations. A selection of lessons learned from the ISS materials perspective will be provided. Topics of discussion are: flammability evaluation of materials with connection to on-orbit operations; toxicity findings for foams; compatibility testing for materials in fluid systems; and contamination control in precision clean systems and critical space vehicle surfaces.

  3. Application of advanced technology to space automation

    NASA Technical Reports Server (NTRS)

    Schappell, R. T.; Polhemus, J. T.; Lowrie, J. W.; Hughes, C. A.; Stephens, J. R.; Chang, C. Y.

    1979-01-01

    Automated operations in space provide the key to optimized mission design and data acquisition at minimum cost for the future. The results of this study strongly accentuate this statement and should provide further incentive for immediate development of specific automtion technology as defined herein. Essential automation technology requirements were identified for future programs. The study was undertaken to address the future role of automation in the space program, the potential benefits to be derived, and the technology efforts that should be directed toward obtaining these benefits.

  4. Tethered Satellites as Enabling Platforms for an Operational Space Weather Monitoring System

    NASA Technical Reports Server (NTRS)

    Krause, L. Habash; Gilchrist, B. E.; Bilen, S.; Owens, J.; Voronka, N.; Furhop, K.

    2013-01-01

    Space weather nowcasting and forecasting models require assimilation of near-real time (NRT) space environment data to improve the precision and accuracy of operational products. Typically, these models begin with a climatological model to provide "most probable distributions" of environmental parameters as a function of time and space. The process of NRT data assimilation gently pulls the climate model closer toward the observed state (e.g. via Kalman smoothing) for nowcasting, and forecasting is achieved through a set of iterative physics-based forward-prediction calculations. The issue of required space weather observatories to meet the spatial and temporal requirements of these models is a complex one, and we do not address that with this poster. Instead, we present some examples of how tethered satellites can be used to address the shortfalls in our ability to measure critical environmental parameters necessary to drive these space weather models. Examples include very long baseline electric field measurements, magnetized ionospheric conductivity measurements, and the ability to separate temporal from spatial irregularities in environmental parameters. Tethered satellite functional requirements will be presented for each space weather parameter considered in this study.

  5. Research on intercultural effectiveness and its relevance to multicultural crews in space.

    PubMed

    Kealey, Daniel J

    2004-07-01

    The planning for and managing of missions in space is changing dramatically due to, among other things, the involvement of more and more national cultures. In light of the need to better understand the influence and management of cultural differences among the crewmembers who will live and work in space in the future, the aim of this paper is threefold. First, some of the key research findings on intercultural effectiveness on Earth are presented and their relevance to the functioning of multicultural crews in space is discussed. Second, issues that will need to be addressed in order to maximize the effective functioning of multicultural teams in space are identified. These include improving the procedures for the screening and selection, intercultural training, monitoring and support, and debriefing and re-entry of astronauts and their families. Finally, the paper concludes with the presentation and discussion of some of the key activities that will need to be undertaken to address these issues and, thereby, enhance the overall functioning of multicultural teams living and working in space.

  6. Applications of Tethers in Space: Workshop Proceedings, Volume 2

    NASA Technical Reports Server (NTRS)

    Baracat, W. A. (Compiler)

    1986-01-01

    Topics addressed include: tethered orbital transfer vehicle operations, Centaur and Shuttle tether technology; tethered constellations, gravitational effects; Shuttle continuous open wind tunnel; optimal control laws, electrodynamic tether technology; and space station facilities.

  7. Space station: The role of software

    NASA Technical Reports Server (NTRS)

    Hall, D.

    1985-01-01

    Software will play a critical role throughout the Space Station Program. This presentation sets the stage and prompts participant interaction at the Software Issues Forum. The presentation is structured into three major topics: (1) an overview of the concept and status of the Space Station Program; (2) several charts designed to lay out the scope and role of software; and (3) information addressing the four specific areas selected for focus at the forum, specifically: software management, the software development environment, languages, and standards. NASA's current thinking is highlighted and some of the relevant critical issues are raised.

  8. Website for the Space Science Division

    NASA Technical Reports Server (NTRS)

    Schilling, James; DeVincenzi, Donald (Technical Monitor)

    2002-01-01

    The Space Science Division at NASA Ames Research Center is dedicated to research in astrophysics, exobiology, advanced life support technologies, and planetary science. These research programs are structured around Astrobiology (the study of life in the universe and the chemical and physical forces and adaptions that influence life's origin, evolution, and destiny), and address some of the most fundamental questions pursued by science. These questions examine the origin of life and our place in the universe. Ames is recognized as a world leader in Astrobiology. In pursuing our mission in Astrobiology, Space Science Division scientists perform pioneering basic research and technology development.

  9. Space radiation and cardiovascular disease risk

    PubMed Central

    Boerma, Marjan; Nelson, Gregory A; Sridharan, Vijayalakshmi; Mao, Xiao-Wen; Koturbash, Igor; Hauer-Jensen, Martin

    2015-01-01

    Future long-distance space missions will be associated with significant exposures to ionizing radiation, and the health risks of these radiation exposures during manned missions need to be assessed. Recent Earth-based epidemiological studies in survivors of atomic bombs and after occupational and medical low dose radiation exposures have indicated that the cardiovascular system may be more sensitive to ionizing radiation than was previously thought. This has raised the concern of a cardiovascular disease risk from exposure to space radiation during long-distance space travel. Ground-based studies with animal and cell culture models play an important role in estimating health risks from space radiation exposure. Charged particle space radiation has dense ionization characteristics and may induce unique biological responses, appropriate simulation of the space radiation environment and careful consideration of the choice of the experimental model are critical. Recent studies have addressed cardiovascular effects of space radiation using such models and provided first results that aid in estimating cardiovascular disease risk, and several other studies are ongoing. Moreover, astronauts could potentially be administered pharmacological countermeasures against adverse effects of space radiation, and research is focused on the development of such compounds. Because the cardiovascular response to space radiation has not yet been clearly defined, the identification of potential pharmacological countermeasures against cardiovascular effects is still in its infancy. PMID:26730293

  10. Space radiation and cardiovascular disease risk.

    PubMed

    Boerma, Marjan; Nelson, Gregory A; Sridharan, Vijayalakshmi; Mao, Xiao-Wen; Koturbash, Igor; Hauer-Jensen, Martin

    2015-12-26

    Future long-distance space missions will be associated with significant exposures to ionizing radiation, and the health risks of these radiation exposures during manned missions need to be assessed. Recent Earth-based epidemiological studies in survivors of atomic bombs and after occupational and medical low dose radiation exposures have indicated that the cardiovascular system may be more sensitive to ionizing radiation than was previously thought. This has raised the concern of a cardiovascular disease risk from exposure to space radiation during long-distance space travel. Ground-based studies with animal and cell culture models play an important role in estimating health risks from space radiation exposure. Charged particle space radiation has dense ionization characteristics and may induce unique biological responses, appropriate simulation of the space radiation environment and careful consideration of the choice of the experimental model are critical. Recent studies have addressed cardiovascular effects of space radiation using such models and provided first results that aid in estimating cardiovascular disease risk, and several other studies are ongoing. Moreover, astronauts could potentially be administered pharmacological countermeasures against adverse effects of space radiation, and research is focused on the development of such compounds. Because the cardiovascular response to space radiation has not yet been clearly defined, the identification of potential pharmacological countermeasures against cardiovascular effects is still in its infancy.

  11. Towards a National Space Weather Predictive Capability

    NASA Astrophysics Data System (ADS)

    Fox, N. J.; Lindstrom, K. L.; Ryschkewitsch, M. G.; Anderson, B. J.; Gjerloev, J. W.; Merkin, V. G.; Kelly, M. A.; Miller, E. S.; Sitnov, M. I.; Ukhorskiy, A. Y.; Erlandson, R. E.; Barnes, R. J.; Paxton, L. J.; Sotirelis, T.; Stephens, G.; Comberiate, J.

    2014-12-01

    National needs in the area of space weather informational and predictive tools are growing rapidly. Adverse conditions in the space environment can cause disruption of satellite operations, communications, navigation, and electric power distribution grids, leading to a variety of socio-economic losses and impacts on our security. Future space exploration and most modern human endeavors will require major advances in physical understanding and improved transition of space research to operations. At present, only a small fraction of the latest research and development results from NASA, NOAA, NSF and DoD investments are being used to improve space weather forecasting and to develop operational tools. The power of modern research and space weather model development needs to be better utilized to enable comprehensive, timely, and accurate operational space weather tools. The mere production of space weather information is not sufficient to address the needs of those who are affected by space weather. A coordinated effort is required to support research-to-applications transition efforts and to develop the tools required those who rely on this information. In this presentation we will review datasets, tools and models that have resulted from research by scientists at JHU/APL, and examine how they could be applied to support space weather applications in coordination with other community assets and capabilities.

  12. Limitations in predicting the space radiation health risk for exploration astronauts.

    PubMed

    Chancellor, Jeffery C; Blue, Rebecca S; Cengel, Keith A; Auñón-Chancellor, Serena M; Rubins, Kathleen H; Katzgraber, Helmut G; Kennedy, Ann R

    2018-01-01

    Despite years of research, understanding of the space radiation environment and the risk it poses to long-duration astronauts remains limited. There is a disparity between research results and observed empirical effects seen in human astronaut crews, likely due to the numerous factors that limit terrestrial simulation of the complex space environment and extrapolation of human clinical consequences from varied animal models. Given the intended future of human spaceflight, with efforts now to rapidly expand capabilities for human missions to the moon and Mars, there is a pressing need to improve upon the understanding of the space radiation risk, predict likely clinical outcomes of interplanetary radiation exposure, and develop appropriate and effective mitigation strategies for future missions. To achieve this goal, the space radiation and aerospace community must recognize the historical limitations of radiation research and how such limitations could be addressed in future research endeavors. We have sought to highlight the numerous factors that limit understanding of the risk of space radiation for human crews and to identify ways in which these limitations could be addressed for improved understanding and appropriate risk posture regarding future human spaceflight.

  13. Making Space: A Gay-Straight Alliance's Fight to Build Inclusive Environments

    ERIC Educational Resources Information Center

    Collin, Ross

    2013-01-01

    Background: Education researchers are paying increasing attention to student activism and to the social production of school spaces. Few studies, however, have brought these two concerns together to examine how student activists work to rebuild school spaces in line with their political commitments. In the present study, I address this gap at the…

  14. Research Space: Who Needs It, Who Gets It, Who Pays for It?

    ERIC Educational Resources Information Center

    Fink, Ira

    2004-01-01

    Today, the amount of space devoted to research at research universities exceeds that of classrooms and class laboratories. This research space portfolio presents important policy and management challenges. As stewards of this portfolio, universities must address issues of funding the construction of research facilities, equipping and…

  15. Space station crew safety alternatives study, volume 1

    NASA Technical Reports Server (NTRS)

    Peercy, R. L., Jr.; Raasch, R. F.; Rockoff, L. A.

    1985-01-01

    The first 15 years of accumulated space station concepts for initial operational capability (IOC) during the early 1990's were considered. Twenty-five threats to the space station are identified and selected threats addressed as impacting safety criteria, escape and rescue, and human factors safety concerns. Of the 25 threats identified, eight are discussed including strategy options for threat control: fire, biological or toxic contamination, injury/illness, explosion, loss of pressurization, radiation, meteoroid penetration and debris.

  16. 75 FR 41790 - Address Management Services-Elimination of the Manual Card Option for Address Sequencing Services

    Federal Register 2010, 2011, 2012, 2013, 2014

    2010-07-19

    ... Electronic Address Sequencing (EAS) service processes a customer's addresses file for walk sequence and/or... POSTAL SERVICE 39 CFR Part 111 Address Management Services--Elimination of the Manual Card Option for Address Sequencing Services AGENCY: Postal Service TM . ACTION: Proposed rule. SUMMARY: The Postal...

  17. Behavioral biology of mammalian reproduction and development for a space station

    NASA Technical Reports Server (NTRS)

    Alberts, J. R.

    1983-01-01

    Space Station research includes two kinds of adaption to space: somatic (the adjustments made by an organism, within its lifetime, in response to local conditions), and transgenerational adaption (continuous exposure across sequential life cycles of genetic descendents). Transgenerational effects are akin to evolutionary process. Areas of a life Sciences Program in a space station address the questions of the behavioral biology of mammalian reproduction and development, using the Norway rat as the focus of experimentation.

  18. Actuators for a space manipulator

    NASA Technical Reports Server (NTRS)

    Chun, W.; Brunson, P.

    1987-01-01

    The robotic manipulator can be decomposed into distinct subsytems. One particular area of interest of mechanical subsystems is electromechanical actuators (or drives). A drive is defined as a motor with an appropriate transmission. An overview is given of existing, as well as state-of-the-art drive systems. The scope is limited to space applications. A design philosophy and adequate requirements are the initial steps in designing a space-qualified actuator. The focus is on the d-c motor in conjunction with several types of transmissions (harmonic, tendon, traction, and gear systems). The various transmissions will be evaluated and key performance parameters will be addressed in detail. Included in the assessment is a shuttle RMS joint and a MSFC drive of the Prototype Manipulator Arm. Compound joints are also investigated. Space imposes a set of requirements for designing a high-performance drive assembly. Its inaccessibility and cryogenic conditions warrant special considerations. Some guidelines concerning these conditions are present. The goal is to gain a better understanding in designing a space actuator.

  19. Transportation node space station conceptual design

    NASA Technical Reports Server (NTRS)

    1988-01-01

    A number of recent studies have addressed the problem of a transportation node space station. How things would change or what addition facilities would be needed to support a major lunar or Mars initiative is a much often asked question. The support of a lunar base, requiring stacks on the order of 200 metric tons each to land 25 m tons on the lunar surface with reusable vehicles is addressed. The problem of maintaining and reusing large single stage Orbit Transfer Vehicles (OTVs) and single stage lander/launchers in space are examined. The required people and equipment needed, to maintain these vehicles are only vaguely known at present. The people and equipment needed depend on how well the OTV and lander/launcher can be designed for easy reuse. Since the OTV and lander/launcher are only conceptually defined at present, the real maintenance and refurbishment requirements are unobtainable. An estimate of what is needed, based on previous studies and obvious requirements was therefore made. An attempt was made to err on the conservative side.

  20. Space Fission Propulsion System Development Status

    NASA Technical Reports Server (NTRS)

    Houts, Mike; VanDyke, Melissa; Godfroy, Tom; Pedersen, Kevin; Martin, James; Dickens, Ricky; Williams, Eric; Harper, Roger; Salvail, Pat; Hrbud, Ivana; hide

    2001-01-01

    The world's first man-made self-sustaining fission reaction was achieved in 1942. Since then fission has been used to propel submarines, generate tremendous amounts of electricity, produce medical isotopes, and provide numerous other benefits to society. Fission systems operate independently of solar proximity or orientation, and are thus well suited for deep spare or planetary surface missions. In addition, the fuel for fission systems (enriched uranium) is virtually non-radioactive. The primary safety issue with fission systems is avoiding inadvertent system start - addressing this issue through proper system design is straightforward. Despite the relative simplicity and tremendous potential of space fission systems, the development and utilization of these systems has proven elusive. The first use of fission technology in space occurred 3 April 1965 with the US launch of the SNAP-10A reactor. There have been no additional US uses of space fission system. While space fission system were used extensively by the former Soviet Union, their application was limited to earth-orbital missions. Early space fission systems must be safely and affordably utilized if Ae are to reap the benefits of advanced space fission systems.

  1. Space Telecommunications Radio Architecture (STRS)

    NASA Technical Reports Server (NTRS)

    Reinhart, Richard C.

    2006-01-01

    A software defined radio (SDR) architecture used in space-based platforms proposes to standardize certain aspects of radio development such as interface definitions, functional control and execution, and application software and firmware development. NASA has charted a team to develop an open software defined radio hardware and software architecture to support NASA missions and determine the viability of an Agency-wide Standard. A draft concept of the proposed standard has been released and discussed among organizations in the SDR community. Appropriate leveraging of the JTRS SCA, OMG's SWRadio Architecture and other aspects are considered. A standard radio architecture offers potential value by employing common waveform software instantiation, operation, testing and software maintenance. While software defined radios offer greater flexibility, they also poses challenges to the radio development for the space environment in terms of size, mass and power consumption and available technology. An SDR architecture for space must recognize and address the constraints of space flight hardware, and systems along with flight heritage and culture. NASA is actively participating in the development of technology and standards related to software defined radios. As NASA considers a standard radio architecture for space communications, input and coordination from government agencies, the industry, academia, and standards bodies is key to a successful architecture. The unique aspects of space require thorough investigation of relevant terrestrial technologies properly adapted to space. The talk will describe NASA s current effort to investigate SDR applications to space missions and a brief overview of a candidate architecture under consideration for space based platforms.

  2. Future Photovoltaic Power Generation for Space-Based Power Utilities

    NASA Technical Reports Server (NTRS)

    Bailey, Sheila; Landis, Geoffrey; Hepp, Aloysius; Raffaelle, Ryne

    2002-01-01

    This paper discusses requirements for large earth orbiting power stations that can serve as central utilities for other orbiting spacecraft, or for beaming power to the earth itself. The current state of the art of space solar cells, and a variety of both evolving thin film cells as well as new technologies that may impact the future choice of space solar cells for high power mission applications are addressed.

  3. NASA Space Rocket Logistics Challenges

    NASA Technical Reports Server (NTRS)

    Bramon, Chris; Neeley, James R.; Jones, James V.; Watson, Michael D.; Inman, Sharon K.; Tuttle, Loraine

    2014-01-01

    The Space Launch System (SLS) is the new NASA heavy lift launch vehicle in development and is scheduled for its first mission in 2017. SLS has many of the same logistics challenges as any other large scale program. However, SLS also faces unique challenges. This presentation will address the SLS challenges, along with the analysis and decisions to mitigate the threats posed by each.

  4. Address by James C. Fletcher, Administrator National Aeronautics and Space Administration at the National Academy of Engineering, Washington, D.C., 10 November 1975

    NASA Technical Reports Server (NTRS)

    1975-01-01

    Future plans and programs of the space agency are discussed. Topics discussed include solar energy, space stations, planetary exploration, interstellar exploration, the space shuttles, and satellites.

  5. Green space definition affects associations of green space with overweight and physical activity.

    PubMed

    Klompmaker, Jochem O; Hoek, Gerard; Bloemsma, Lizan D; Gehring, Ulrike; Strak, Maciej; Wijga, Alet H; van den Brink, Carolien; Brunekreef, Bert; Lebret, Erik; Janssen, Nicole A H

    2018-01-01

    In epidemiological studies, exposure to green space is inconsistently associated with being overweight and physical activity, possibly because studies differ widely in their definition of green space exposure, inclusion of important confounders, study population and data analysis. We evaluated whether the association of green space with being overweight and physical activity depended upon definition of greenspace. We conducted a cross-sectional study using data from a Dutch national health survey of 387,195 adults. Distance to the nearest park entrance and surrounding green space, based on the Normalized Difference Vegetation Index (NDVI) or a detailed Dutch land-use database (TOP10NL), was calculated for each residential address. We used logistic regression analyses to study the association of green space exposure with being overweight and being moderately or vigorously physically active outdoors at least 150min/week (self-reported). To study the shape of the association, we specified natural splines and quintiles. The distance to the nearest park entrance was not associated with being overweight or outdoor physical activity. Associations of surrounding green space with being overweight or outdoor physical activity were highly non-linear. For NDVI surrounding greenness, we observed significantly decreased odds of being overweight [300m buffer, odds ratio (OR) = 0.88; 95% CI: 0.86, 0.91] and increased odds for outdoor physical activity [300m buffer, OR = 1.14; 95% CI: 1.10, 1.17] in the highest quintile compared to the lowest quintile. For TOP10NL surrounding green space, associations were mostly non-significant. Associations were generally stronger for subjects living in less urban areas and for the smaller buffers. Associations of green space with being overweight and outdoor physical activity differed considerably between different green space definitions. Associations were strongest for NDVI surrounding greenness. Copyright © 2017 The Authors. Published by

  6. High Performance Processors for Space Environments: A Subproject of the NASA Exploration Missions Systems Directorate "Radiation Hardened Electronics for Space Environments" Technology Development Program

    NASA Technical Reports Server (NTRS)

    Johnson, M.; Label, K.; McCabe, J.; Powell, W.; Bolotin, G.; Kolawa, E.; Ng, T.; Hyde, D.

    2007-01-01

    Implementation of challenging Exploration Systems Missions Directorate objectives and strategies can be constrained by onboard computing capabilities and power efficiencies. The Radiation Hardened Electronics for Space Environments (RHESE) High Performance Processors for Space Environments project will address this challenge by significantly advancing the sustained throughput and processing efficiency of high-per$ormance radiation-hardened processors, targeting delivery of products by the end of FY12.

  7. Electrostatically focused addressable field emission array chips (AFEA's) for high-speed massively parallel maskless digital E-beam direct write lithography and scanning electron microscopy

    DOEpatents

    Thomas, Clarence E.; Baylor, Larry R.; Voelkl, Edgar; Simpson, Michael L.; Paulus, Michael J.; Lowndes, Douglas H.; Whealton, John H.; Whitson, John C.; Wilgen, John B.

    2002-12-24

    Systems and methods are described for addressable field emission array (AFEA) chips. A method of operating an addressable field-emission array, includes: generating a plurality of electron beams from a pluralitly of emitters that compose the addressable field-emission array; and focusing at least one of the plurality of electron beams with an on-chip electrostatic focusing stack. The systems and methods provide advantages including the avoidance of space-charge blow-up.

  8. Space Wear Vision -Development of a Wardrobe for Life in Space Vehicles and Habitats

    NASA Technical Reports Server (NTRS)

    Orndorff, Evelyne

    2015-01-01

    one of shirts used as sleep-wear. The IVA (Intra Vehicular Activity) Clothing Study has been the first study with Roscosmos under the "Utilization Sharing Plan On-Board ISS," while the other studies have been conducted at the Johnson Space Center in a controlled environment similar to the ISS. For exercise clothing, study participants wore garments during aerobic exercise. For routine wear clothing, study participants wore the T-shirts daily in an office or laboratory. Daily questionnaires collected data on ordinal preferences of nine sensory elements and on reasons for retiring a used garment. More studies have been initiated on Earth, and some should be planned to engage more astronauts and cosmonauts in the design of the new space wear. Future studies will extend to other types of garments in the wardrobe; another will address microbial growth on textiles. Others will address cleaning and sanitation of clothing in space vehicles. Efforts will be made for additional ISS studies with NASA's international partners.

  9. Space rescue system definition (system performance analysis and trades)

    NASA Astrophysics Data System (ADS)

    Housten, Sam; Elsner, Tim; Redler, Ken; Svendsen, Hal; Wenzel, Sheri

    This paper addresses key technical issues involved in the system definition of the Assured Crew Return Vehicle (ACRV). The perspective on these issues is that of a prospective ACRV contractor, performing system analysis and trade studies. The objective of these analyses and trade studies is to develop the recovery vehicle system concept and top level requirements. The starting point for this work is the definition of the set of design missions for the ACRV. This set of missions encompasses three classes of contingency/emergency (crew illness/injury, space station catastrophe/failure, transportation element catastrophe/failure). The need is to provide a system to return Space Station crew to Earth quickly (less than 24 hours) in response to randomly occurring contingency events over an extended period of time (30 years of planned Space Station life). The main topics addressed and characterized in this paper include the following: Key Recovery (Rescue) Site Access Considerations; Rescue Site Locations and Distribution; Vehicle Cross Range vs Site Access; On-orbit Loiter Capability and Vehicle Design; and Water vs. Land Recovery.

  10. Microgravity Particle Research on the Space Station

    NASA Technical Reports Server (NTRS)

    Squyres, Steven W. (Editor); Mckay, Christopher P. (Editor); Schwartz, Deborah E. (Editor)

    1987-01-01

    Science questions that could be addressed by a Space Station Microgravity Particle Research Facility for studying small suspended particles were discussed. Characteristics of such a facility were determined. Disciplines covered include astrophysics and the solar nebula, planetary science, atmospheric science, exobiology and life science, and physics and chemistry.

  11. The effects of space radiation on flight film

    NASA Technical Reports Server (NTRS)

    Holly, Mark H.

    1995-01-01

    The Shuttle and its cargo are occasionally exposed to an amount of radiation large enough to create non-image forming exposures (fog) on photographic flight film. The television/photography working group proposed a test plan to quantify the sensitivity of photographic films to space radiation. This plan was flown on STS-37 and was later incorporated into a detailed supplementary objective (DSO) which was flown on STS48. This DSO addressed the effects of significant space radiation on representative samples of six highly sensitive flight films. In addition, a lead-lined bag was evaluated as a potential shield for flight film against space radiation.

  12. Status of the James Webb Space Telescope Observatory

    NASA Technical Reports Server (NTRS)

    Clampin, Mark

    2013-01-01

    The James Webb Space Telescope (JWST) is the largest cryogenic, space telescope ever built, and will address a broad range of scientific goals from first light in the universe and re-ionization, to characterization of the atmospheres of extrasolar planets. Recently, significant progress has been made in the construction of the observatory with the completion of all 21 flight mirrors that comprise the telescope's optical chain, and the start of flight instrument deliveries to the Goddard Space Flight Center. In this paper we discuss the design of the observatory, and focus on the recent milestone achievements in each of the major observatory sub-systems.

  13. Vice President Mike Pence Visits Kennedy Space Center

    NASA Image and Video Library

    2017-07-06

    NASA Kennedy Space Center Deputy Director Janet Petro addresses agency leaders, U.S. and Florida government officials and employees inside the Vehicle Assembly Building during a visit by Vice President Mike Pence. Pence thanked employees for advancing American leadership in space. Behind the podium are, from the left, a flown SpaceX Dragon capsule, the Orion spacecraft flown on Exploration Flight test-1 in 2014, and a mockup of Boeing's CST-100 Starliner. During his visit to Kennedy, the Vice President also toured several facilities highlighting the public-private partnerships, as both NASA and commercial companies prepare to launch American astronauts from the multi-user spaceport.

  14. Vice President Mike Pence Visits Kennedy Space Center

    NASA Image and Video Library

    2017-07-06

    Acting NASA Administrator Robert Lightfoot addresses agency leaders, U.S. and Florida government officials, and employees inside the Vehicle Assembly Building at NASA's Kennedy Space Center in Florida during a visit by Vice President Mike Pence. Pence thanked employees for advancing American leadership in space. Behind the podium are, from the left, a flown SpaceX Dragon capsule, the Orion spacecraft flown on Exploration Flight test-1 in 2014, and a mockup of Boeing's CST-100 Starliner. During his visit to Kennedy, the Vice President also toured several facilities highlighting the public-private partnerships, as both NASA and commercial companies prepare to launch American astronauts from the multi-user spaceport.

  15. Information Presentation: Human Research Program - Space Human Factors and Habitability, Space Human Factors Engineering Project

    NASA Technical Reports Server (NTRS)

    Holden, Kristina L.; Sandor, Aniko; Thompson, Shelby G.; Kaiser, Mary K.; McCann, Robert S.; Begault, D. R.; Adelstein, B. D.; Beutter, B. R.; Wenzel, E. M.; Godfroy, M.; hide

    2010-01-01

    The goal of the Information Presentation Directed Research Project (DRP) is to address design questions related to the presentation of information to the crew. The major areas of work, or subtasks, within this DRP are: 1) Displays, 2) Controls, 3) Electronic Procedures and Fault Management, and 4) Human Performance Modeling. This DRP is a collaborative effort between researchers atJohnson Space Center and Ames Research Center. T

  16. The NASA Space Life Sciences Training Program - Preparing the way

    NASA Technical Reports Server (NTRS)

    Biro, Ronald; Munsey, Bill; Long, Irene

    1990-01-01

    Attention is given to the goals and methods adopted in the NASA Space Life Sciences Training Program (SLSTP) for preparing scientists and engineers for space-related life-sciences research and operations. The SLSTP is based on six weeks of projects and lectures which give an overview of payload processing and experiment flow in the space environment. The topics addressed in the course of the program include descriptions of space vehicles, support hardware, equipment, and research directions. Specific lecture topics include the gravity responses of plants, mission integration of a flight experiment, and the cardiovascular deconditioning. The SLSTP is shown to be an important part of the process of recruiting and training qualified scientists and engineers to support space activities.

  17. Voxel-Space Ambient Occlusion

    DTIC Science & Technology

    2012-02-01

    a collection of information if it does not display a currently valid OMB control number. PLEASE DO NOT RETURN YOUR FORM TO THE ABOVE ADDRESS. a...represents the BRDF of the surface material, for incoming direction ψ and an outgoing direction. L(y) is the incoming radiance in the direction ψ from a...10-1-0338). Models come from the Stanford repository. References [BS09] L. Bavoil, M.Sainz Multi-layer dual-resolution screen-space ambient occlusion

  18. Energy from space; Proceedings of the Symposium on Solar Energy from Space, Vienna, Austria, August 9-21, 1982

    NASA Astrophysics Data System (ADS)

    Freeman, J. W.

    Aspects of solar power generation in space are considered. The subjects discussed include: a vision of future energy from space; solar power satellite concept for utilization of energy from space; the institutional challenge of solar power satellites; system study of the solar power satellite concept; market potential and possible limitations for satellite solar power stations; financing a solar power satellite project; and European questions related to satellite power systems. Also addressed are: options and high payoff choices for transportation; an electric propulsion transportation system from low-earth orbit to geostationary orbit utilizing beamed microwave power; the Canadarm robot arm of the Shuttle Remote Manipulator System; an early experimental solar power satellite; power economical considerations for the integration of terrestrial and extraterrestrial solar generators into existing power generation stations; and space solar power in perspective. For individual items see A84-21477 to A84-21489

  19. Space station tracking requirements feasibility study, volume 2

    NASA Technical Reports Server (NTRS)

    Udalov, Sergei; Dodds, James

    1988-01-01

    The objective of this feasibility study is to determine analytically the accuracies of various sensors being considered as candidates for Space Station use. Specifically, the studies were performed whether or not the candidate sensors are capable of providing the required accuracy, or if alternate sensor approaches should be investigated. Other topics related to operation in the Space Station environment were considered as directed by NASA-JSC. The following topics are addressed: (1) Space Station GPS; (2) Space Station Radar; (3) Docking Sensors; (4) Space Station Link Analysis; (5) Antenna Switching, Power Control, and AGC Functions for Multiple Access; (6) Multichannel Modems; (7) FTS/EVA Emergency Shutdown; (8) Space Station Information Systems Coding; (9) Wanderer Study; and (10) Optical Communications System Analysis. Brief overviews of the abovementioned topics are given. Wherever applicable, the appropriate appendices provide detailed technical analysis. The report is presented in two volumes. This is Volume 2, containing Appendices K through U.

  20. Space station tracking requirements feasibility study, volume 1

    NASA Technical Reports Server (NTRS)

    Udalov, Sergei; Dodds, James

    1988-01-01

    The objective of this feasibility study is to determine analytically the accuracies of various sensors being considered as candidates for Space Station use. Specifically, the studies were performed whether or not the candidate sensors are capable of providing the required accuracy, or if alternate sensor approaches be investigated. Other topics related to operation in the Space Station environment were considered as directed by NASA-JCS. The following topics are addressed: (1) Space Station GPS; (2) Space Station Radar; (3) Docking Sensors; (4) Space Station Link Analysis; (5) Antenna Switching, Power Control, and AGC Functions for Multiple Access; (6) Multichannel Modems; (7) FTS/EVA Emergency Shutdown; (8) Space Station Information Systems Coding; (9) Wanderer Study; and (10) Optical Communications System Analysis. Brief overviews of the abovementioned topics are given. Wherever applicable, the appropriate appendices provide detailed technical analysis. The report is presented in two volumes. This is Volume 1, containing the main body and Appendices A through J.

  1. Mapping virtual addresses to different physical addresses for value disambiguation for thread memory access requests

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

    Gala, Alan; Ohmacht, Martin

    A multiprocessor system includes nodes. Each node includes a data path that includes a core, a TLB, and a first level cache implementing disambiguation. The system also includes at least one second level cache and a main memory. For thread memory access requests, the core uses an address associated with an instruction format of the core. The first level cache uses an address format related to the size of the main memory plus an offset corresponding to hardware thread meta data. The second level cache uses a physical main memory address plus software thread meta data to store the memorymore » access request. The second level cache accesses the main memory using the physical address with neither the offset nor the thread meta data after resolving speculation. In short, this system includes mapping of a virtual address to a different physical addresses for value disambiguation for different threads.« less

  2. A Study of Space Station Contamination Effects. [conference

    NASA Technical Reports Server (NTRS)

    Torr, M. R. (Editor); Spann, J. F. (Editor); Moorehead, T. W. (Editor)

    1988-01-01

    A workshop was held with the specific objective of reviewing the state-of-knowledge regarding Space Station contamination, the extent to which the various categories of contamination can be predicted, and the extent to which the predicted levels would interfere with onboard scientific investigations or space station functions. The papers presented at the workshop are compiled and address the following topics: natural environment, plasma electromagnetic environment, optical environment, particulate environment, spacecraft contamination, surface physics processes, laboratory experiments and vented chemicals/contaminants.

  3. International ties. [international cooperation in the space sciences

    NASA Technical Reports Server (NTRS)

    1980-01-01

    A historical overview of NASA's participation in international activities in space science is given. The Ariel, Alouette, Isis, and San Marco satellite programs are addressed along with sounding rocket and ground based projects. Relations and cooperation with the Soviet Union are also discussed.

  4. How the Station will operate. [operation, management, and maintenance in space

    NASA Technical Reports Server (NTRS)

    Cox, John T.

    1988-01-01

    Aspects of the upcoming operational phase of the Space Station (SS) are examined. What the crew members will do with their time in their specialized roles is addressed. SS maintenance and servicing and the interaction of the SS Control Center with Johnson Space Center is discussed. The planning of payload operations and strategic planning for the SS are examined.

  5. The Photovoltaic Array Space Power plus Diagnostics (PASP Plus) Flight Experiment

    NASA Technical Reports Server (NTRS)

    Piszczor, Michael F.; Curtis, Henry B.; Guidice, Donald A.; Severance, Paul S.

    1992-01-01

    An overview of the Photovoltaic Array Space Power Plus Diagnostics (PASP Plus) flight experiment is presented in outline and graphic form. The goal of the experiment is to test a variety of photovoltaic cell and array technologies under various space environmental conditions. Experiment objectives, flight hardware, experiment control and diagnostic instrumentation, and illuminated thermal vacuum testing are addressed.

  6. Address-event-based platform for bioinspired spiking systems

    NASA Astrophysics Data System (ADS)

    Jiménez-Fernández, A.; Luján, C. D.; Linares-Barranco, A.; Gómez-Rodríguez, F.; Rivas, M.; Jiménez, G.; Civit, A.

    2007-05-01

    Address Event Representation (AER) is an emergent neuromorphic interchip communication protocol that allows a real-time virtual massive connectivity between huge number neurons, located on different chips. By exploiting high speed digital communication circuits (with nano-seconds timings), synaptic neural connections can be time multiplexed, while neural activity signals (with mili-seconds timings) are sampled at low frequencies. Also, neurons generate "events" according to their activity levels. More active neurons generate more events per unit time, and access the interchip communication channel more frequently, while neurons with low activity consume less communication bandwidth. When building multi-chip muti-layered AER systems, it is absolutely necessary to have a computer interface that allows (a) reading AER interchip traffic into the computer and visualizing it on the screen, and (b) converting conventional frame-based video stream in the computer into AER and injecting it at some point of the AER structure. This is necessary for test and debugging of complex AER systems. In the other hand, the use of a commercial personal computer implies to depend on software tools and operating systems that can make the system slower and un-robust. This paper addresses the problem of communicating several AER based chips to compose a powerful processing system. The problem was discussed in the Neuromorphic Engineering Workshop of 2006. The platform is based basically on an embedded computer, a powerful FPGA and serial links, to make the system faster and be stand alone (independent from a PC). A new platform is presented that allow to connect up to eight AER based chips to a Spartan 3 4000 FPGA. The FPGA is responsible of the network communication based in Address-Event and, at the same time, to map and transform the address space of the traffic to implement a pre-processing. A MMU microprocessor (Intel XScale 400MHz Gumstix Connex computer) is also connected to the FPGA

  7. The Outer Space Treaty

    NASA Astrophysics Data System (ADS)

    Johnson, Christopher Daniel

    2018-01-01

    Negotiated at the United Nations and in force since 1967, the Outer Space Treaty has been ratified by over 100 countries and is the most important and foundational source of space law. The treaty, whose full title is "Treaty on Principles Governing the Activities of States in the Exploration and Use of Outer Space, Including the Moon and Other Celestial Bodies," governs all of humankind's activities in outer space, including activities on other celestial bodies and many activities on Earth related to outer space. All space exploration and human spaceflight, planetary sciences, and commercial uses of space—such as the global telecommunications industry and the use of space technologies such as position, navigation, and timing (PNT), take place against the backdrop of the general regulatory framework established in the Outer Space Treaty. A treaty is an international legal instrument which balances rights and obligations between states, and exists as a kind of mutual contract of shared understandings, rights, and responsibilities between them. Negotiated and drafted during the Cold War era of heightened political tensions, the Outer Space Treaty is largely the product of efforts by the United States and the USSR to agree on certain minimum standards and obligations to govern their competition in "conquering" space. Additionally, the Outer Space Treaty is similar to other treaties, including treaties governing the high seas, international airspace, and the Antarctic, all of which govern the behavior of states outside of their national borders. The treaty is brief in nature and only contains 17 articles, and is not comprehensive in addressing and regulating every possible scenario. The negotiating states knew that the Outer Space Treaty could only establish certain foundational concepts such as freedom of access, state responsibility and liability, non-weaponization of space, the treatment of astronauts in distress, and the prohibition of non-appropriation of

  8. Internet Address Space Management in Digital

    DTIC Science & Technology

    1992-09-01

    password: % passwd Changing password for wade Old password: New password: Retype new password: 3. Log out of the cluster center machine by typing...that on some machine, you can use the " passwd " command on the machine where the change is needed. 16

  9. NASA Space Engineering Research Center Symposium on VLSI Design

    NASA Technical Reports Server (NTRS)

    Maki, Gary K.

    1990-01-01

    The NASA Space Engineering Research Center (SERC) is proud to offer, at its second symposium on VLSI design, presentations by an outstanding set of individuals from national laboratories and the electronics industry. These featured speakers share insights into next generation advances that will serve as a basis for future VLSI design. Questions of reliability in the space environment along with new directions in CAD and design are addressed by the featured speakers.

  10. Experiments to ensure Space Station fire safety - A challenge

    NASA Technical Reports Server (NTRS)

    Youngblood, W. W.; Seiser, K. M.

    1988-01-01

    Three experiments have been formulated in order to address prominent fire safety requirements aboard the NASA Space Shuttle; these experiments are to be conducted as part of a Space Station-based Technology Development Mission for the growth phase of Space Station construction and operation. The experiments are: (1) an investigation of the flame-spread rate and combustion-product evolution in the burning of typical spacecraft materials in low gravity; (2) an evaluation of the interaction of fires and candidate fire extinguishers in low gravity; and (3) an investigation of the persistence and propagation of smoldering and deep-seated combustion in low gravity.

  11. Ceramics and composites for rocket engines and space structures

    NASA Astrophysics Data System (ADS)

    Upadhya, Kamleshwar

    1992-05-01

    The use of ceramic and other nonmetallic composites is considered for engine and structural elements of the National Aerospace Plane (NASP), the Space Shuttle, and space stations. Attention is given to the application of refractory composites with protective coatings for oxidation and hydrogen contamination to the NASP to address the high-temperature environments the vehicle is expected to encounter. Existing applications of metal-matrix composite struts and Gr-Ep cargo-bay doors on the Space Shuttle are reviewed, and the need for more data on the service life and failure modes of the materials is identified.

  12. Space Transportation Propulsion Technology Symposium. Volume 1: Executive summary

    NASA Technical Reports Server (NTRS)

    1991-01-01

    The Space Transportation Propulsion Technology Symposium was held to provide a forum for communication within the propulsion within the propulsion technology developer and user communities. Emphasis was placed on propulsion requirements and initiatives to support current, next generation, and future space transportation systems, with the primary objectives of discerning whether proposed designs truly meet future transportation needs and identifying possible technology gaps, overlaps, and other programmatic deficiencies. Key space transportation propulsion issues were addressed through four panels with government, industry, and academia membership. The panels focused on systems engineering and integration; development, manufacturing and certification; operational efficiency; and program development and cultural issues.

  13. Space Transportation Propulsion Technology Symposium. Volume 2: Symposium proceedings

    NASA Technical Reports Server (NTRS)

    1991-01-01

    The Space Transportation Propulsion Symposium was held to provide a forum for communication within the propulsion technology developer and user communities. Emphasis was placed on propulsion requirements and initiatives to support current, next generation, and future space transportation systems, with the primary objectives of discerning whether proposed designs truly meet future transportation needs and identifying possible technology gaps, overlaps, and other programmatic deficiencies. Key space transportation propulsion issues were addressed through four panels with government, industry, and academia membership. The panels focused on systems engineering and integration; development, manufacturing and certification; operational efficiency; and program development and cultural issues.

  14. Invited Review Article: Advanced light microscopy for biological space research

    NASA Astrophysics Data System (ADS)

    De Vos, Winnok H.; Beghuin, Didier; Schwarz, Christian J.; Jones, David B.; van Loon, Jack J. W. A.; Bereiter-Hahn, Juergen; Stelzer, Ernst H. K.

    2014-10-01

    As commercial space flights have become feasible and long-term extraterrestrial missions are planned, it is imperative that the impact of space travel and the space environment on human physiology be thoroughly characterized. Scrutinizing the effects of potentially detrimental factors such as ionizing radiation and microgravity at the cellular and tissue level demands adequate visualization technology. Advanced light microscopy (ALM) is the leading tool for non-destructive structural and functional investigation of static as well as dynamic biological systems. In recent years, technological developments and advances in photochemistry and genetic engineering have boosted all aspects of resolution, readout and throughput, rendering ALM ideally suited for biological space research. While various microscopy-based studies have addressed cellular response to space-related environmental stressors, biological endpoints have typically been determined only after the mission, leaving an experimental gap that is prone to bias results. An on-board, real-time microscopical monitoring device can bridge this gap. Breadboards and even fully operational microscope setups have been conceived, but they need to be rendered more compact and versatile. Most importantly, they must allow addressing the impact of gravity, or the lack thereof, on physiologically relevant biological systems in space and in ground-based simulations. In order to delineate the essential functionalities for such a system, we have reviewed the pending questions in space science, the relevant biological model systems, and the state-of-the art in ALM. Based on a rigorous trade-off, in which we recognize the relevance of multi-cellular systems and the cellular microenvironment, we propose a compact, but flexible concept for space-related cell biological research that is based on light sheet microscopy.

  15. Invited review article: Advanced light microscopy for biological space research.

    PubMed

    De Vos, Winnok H; Beghuin, Didier; Schwarz, Christian J; Jones, David B; van Loon, Jack J W A; Bereiter-Hahn, Juergen; Stelzer, Ernst H K

    2014-10-01

    As commercial space flights have become feasible and long-term extraterrestrial missions are planned, it is imperative that the impact of space travel and the space environment on human physiology be thoroughly characterized. Scrutinizing the effects of potentially detrimental factors such as ionizing radiation and microgravity at the cellular and tissue level demands adequate visualization technology. Advanced light microscopy (ALM) is the leading tool for non-destructive structural and functional investigation of static as well as dynamic biological systems. In recent years, technological developments and advances in photochemistry and genetic engineering have boosted all aspects of resolution, readout and throughput, rendering ALM ideally suited for biological space research. While various microscopy-based studies have addressed cellular response to space-related environmental stressors, biological endpoints have typically been determined only after the mission, leaving an experimental gap that is prone to bias results. An on-board, real-time microscopical monitoring device can bridge this gap. Breadboards and even fully operational microscope setups have been conceived, but they need to be rendered more compact and versatile. Most importantly, they must allow addressing the impact of gravity, or the lack thereof, on physiologically relevant biological systems in space and in ground-based simulations. In order to delineate the essential functionalities for such a system, we have reviewed the pending questions in space science, the relevant biological model systems, and the state-of-the art in ALM. Based on a rigorous trade-off, in which we recognize the relevance of multi-cellular systems and the cellular microenvironment, we propose a compact, but flexible concept for space-related cell biological research that is based on light sheet microscopy.

  16. Setting Priorities for Space Research: Opportunities and Imperatives

    NASA Technical Reports Server (NTRS)

    Dutton, John A.; Abelson, Philip H.; Beckwith, Steven V. W.; Bishop, William P.; Byerly, Radford, Jr.; Crowe, Lawson; Dews, Peter; Garriott, Owen K.; Lunine, Jonathan; Macauley, Molly K.

    1992-01-01

    This report represents the first phase of a study by a task group convened by the Space Studies Board to ascertain whether it should attempt to develop a methodology for recommending priorities among the various initiatives in space research (that is, scientific activities concerned with phenomena in space or utilizing observations from space). The report argues that such priority statements by the space research community are both necessary and desirable and would contribute to the formulation and implementation of public policy. The report advocates the establishment of priorities to enhance effective management of the nation's scientific research program in space. It argues that scientific objectives and purposes should determine how and under what circumstances scientific research should be done. The report does not take a position on the controversy between advocates of manned space exploration and those who favor the exclusive use of unmanned space vehicles. Nor does the report address questions about the value or appropriateness of Space Station Freedom or proposals to establish a permanent manned Moon base or to undertake a manned mission to Mars. These issues lie beyond the charge to the task group.

  17. Bringing Gravity to Space

    NASA Technical Reports Server (NTRS)

    Norsk, P.; Shelhamer, M.

    2016-01-01

    This panel will present NASA's plans for ongoing and future research to define the requirements for Artificial Gravity (AG) as a countermeasure against the negative health effects of long-duration weightlessness. AG could mitigate the gravity-sensitive effects of spaceflight across a host of physiological systems. Bringing gravity to space could mitigate the sensorimotor and neuro-vestibular disturbances induced by G-transitions upon reaching a planetary body, and the cardiovascular deconditioning and musculoskeletal weakness induced by weightlessness. Of particular interest for AG during deep-space missions is mitigation of the Visual Impairment Intracranial Pressure (VIIP) syndrome that the majority of astronauts exhibit in space to varying degrees, and which presumably is associated with weightlessness-induced fluid shift from lower to upper body segments. AG could be very effective for reversing the fluid shift and thus help prevent VIIP. The first presentation by Dr. Charles will summarize some of the ground-based and (very little) space-based research that has been conducted on AG by the various space programs. Dr. Paloski will address the use of AG during deep-space exploration-class missions and describe the different AG scenarios such as intra-vehicular, part-of-vehicle, or whole-vehicle centrifugations. Dr. Clement will discuss currently planned NASA research as well as how to coordinate future activities among NASA's international partners. Dr. Barr will describe some possible future plans for using space- and ground-based partial-G analogs to define the relationship between physiological responses and G levels between 0 and 1. Finally, Dr. Stenger will summarize how the human cardiovascular system could benefit from intermittent short-radius centrifugations during long-duration missions.

  18. Reusable space systems (Eugen Saenger Lecture, 1987)

    NASA Technical Reports Server (NTRS)

    Fletcher, J. C.

    1988-01-01

    The history and current status of reusable launch vehicle (RLV) development are surveyed, with emphases on the contributions of Eugen Saenger and ongoing NASA projects. Topics addressed include the capabilities and achievements of the Space Shuttle, the need to maintain a fleet with both ELVs and RLVs to meet different mission requirements, the X-30 testbed aircraft for the National Aerospace Plane program, current design concepts for Shuttle II (a 1000-ton fully reusable two-stage rocket-powered spacecraft capable of carrying 11,000 kg to Space Station orbit), proposals for dual-fuel-propulsion SSTO RLVs, and the Space Station Orbital Maneuvering Vehicle and Orbital Transfer Vehicle. The importance of RLVs and of international cooperation in establishing the LEO infrastructure needed for planetary exploration missions is stressed.

  19. MEMS Microshutter Arrays for James Webb Space Telescope

    NASA Technical Reports Server (NTRS)

    Li, Mary J.; Beamesderfer, Michael; Babu, Sachi; Bajikar, Sateesh; Ewin, Audrey; Franz, Dave; Hess, Larry; Hu, Ron; Jhabvala, Murzy; Kelly, Dan; hide

    2006-01-01

    MEMS microshutter arrays are being developed at NASA Goddard Space Flight Center for use as an aperture array for a Near-Infrared Spectrometer (NirSpec). The instruments will be carried on the James Webb Space Telescope (JWST), the next generation of space telescope after Hubble Space Telescope retires. The microshutter arrays are designed for the selective transmission of light with high efficiency and high contrast, Arrays are close-packed silicon nitride membranes with a pixel size of 100x200 microns. Individual shutters are patterned with a torsion flexure permitting shutters to open 90 degrees with a minimized mechanical stress concentration. Light shields are made on to each shutter for light leak prevention so to enhance optical contrast, Shutters are actuated magnetically, latched and addressed electrostatically. The shutter arrays are fabricated using MEMS technologies.

  20. Space Station - Government and industry launch joint venture

    NASA Astrophysics Data System (ADS)

    Nichols, R. G.

    1985-04-01

    After the development of the space transportation system over the last decade, the decision to launch a permanently manned space station was announced by President Reagan in his 1984 State of the Union Address. As a result of work performed by the Space Station Task Force created in 1982, NASA was able to present Congress with a plan for achieving the President's objective. The plan envisions a space station which would cost about $8 billion and be operational as early as 1992. The functions of the Space Station would include the servicing of satellites. In addition, the station would serve as a base for the construction of large space structures, and provide facilities for research and development. The Space Station design selected by NASA is the 'Power Tower', a 450-foot-long truss structure which will travel in orbit with its main axis perpendicular to the earth's surface. Attention is given to the living and working quarters for the crew, the location of earth observation equipment and astronomical instruments, and details regarding the employment of the Station.

  1. The Case For Space: A Legislative Framework For An Independent United States Space Force

    DTIC Science & Technology

    2018-04-01

    However, this proposal has merit, and is the subject of extensive studies . AU/ACSC/Neil, M/Grant, D/AY18 10 One primary purpose of such...issues with DOD space acquisition, yet even within this one confined area of study noted problems that appear to be systemic. The GAO report...recommendations drawn from these studies seem to have fallen on deaf ears, and whatever changes these various studies prompted failed to adequately address

  2. Ground Robotic Hand Applications for the Space Program study (GRASP)

    NASA Astrophysics Data System (ADS)

    Grissom, William A.; Rafla, Nader I.

    1992-04-01

    This document reports on a NASA-STDP effort to address research interests of the NASA Kennedy Space Center (KSC) through a study entitled, Ground Robotic-Hand Applications for the Space Program (GRASP). The primary objective of the GRASP study was to identify beneficial applications of specialized end-effectors and robotic hand devices for automating any ground operations which are performed at the Kennedy Space Center. Thus, operations for expendable vehicles, the Space Shuttle and its components, and all payloads were included in the study. Typical benefits of automating operations, or augmenting human operators performing physical tasks, include: reduced costs; enhanced safety and reliability; and reduced processing turnaround time.

  3. Space Weather in the Machine Learning Era: A Multidisciplinary Approach

    NASA Astrophysics Data System (ADS)

    Camporeale, E.; Wing, S.; Johnson, J.; Jackman, C. M.; McGranaghan, R.

    2018-01-01

    The workshop entitled Space Weather: A Multidisciplinary Approach took place at the Lorentz Center, University of Leiden, Netherlands, on 25-29 September 2017. The aim of this workshop was to bring together members of the Space Weather, Mathematics, Statistics, and Computer Science communities to address the use of advanced techniques such as Machine Learning, Information Theory, and Deep Learning, to better understand the Sun-Earth system and to improve space weather forecasting. Although individual efforts have been made toward this goal, the community consensus is that establishing interdisciplinary collaborations is the most promising strategy for fully utilizing the potential of these advanced techniques in solving Space Weather-related problems.

  4. Ground Robotic Hand Applications for the Space Program study (GRASP)

    NASA Technical Reports Server (NTRS)

    Grissom, William A.; Rafla, Nader I. (Editor)

    1992-01-01

    This document reports on a NASA-STDP effort to address research interests of the NASA Kennedy Space Center (KSC) through a study entitled, Ground Robotic-Hand Applications for the Space Program (GRASP). The primary objective of the GRASP study was to identify beneficial applications of specialized end-effectors and robotic hand devices for automating any ground operations which are performed at the Kennedy Space Center. Thus, operations for expendable vehicles, the Space Shuttle and its components, and all payloads were included in the study. Typical benefits of automating operations, or augmenting human operators performing physical tasks, include: reduced costs; enhanced safety and reliability; and reduced processing turnaround time.

  5. Flat monodromies and a Moduli Space Size Conjecture

    NASA Astrophysics Data System (ADS)

    Hebecker, Arthur; Henkenjohann, Philipp; Witkowski, Lukas T.

    2017-12-01

    We investigate how super-Planckian axions can arise when type IIB 3-form flux is used to restrict a two-axion field space to a one-dimensional winding trajectory. If one does not attempt to address notoriously complicated issues like Kähler moduli stabilization, SUSY-breaking and inflation, this can be done very explicitly. We show that the presence of flux generates flat monodromies in the moduli space which we therefore call `Monodromic Moduli Space'. While we do indeed find long axionic trajectories, these are non-geodesic. Moreover, the length of geodesics remains highly constrained, in spite of the (finite) monodromy group introduced by the flux. We attempt to formulate this in terms of a `Moduli Space Size Conjecture'. Interesting mathematical structures arise in that the relevant spaces turn out to be fundamental domains of congruence subgroups of the modular group. In addition, new perspectives on inflation in string theory emerge.

  6. Seismology and space-based geodesy

    NASA Technical Reports Server (NTRS)

    Tralli, David M.; Tajima, Fumiko

    1993-01-01

    The potential of space-based geodetic measurement of crustal deformation in the context of seismology is explored. The achievements of seismological source theory and data analyses, mechanical modeling of fault zone behavior, and advances in space-based geodesy are reviewed, with emphasis on realizable contributions of space-based geodetic measurements specifically to seismology. The fundamental relationships between crustal deformation associated with an earthquake and the geodetically observable data are summarized. The response and spatial and temporal resolution of the geodetic data necessary to understand deformation at various phases of the earthquake cycle is stressed. The use of VLBI, SLR, and GPS measurements for studying global geodynamics properties that can be investigated to some extent with seismic data is discussed. The potential contributions of continuously operating strain monitoring networks and globally distributed geodetic observatories to existing worldwide modern digital seismographic networks are evaluated in reference to mutually addressable problems in seismology, geophysics, and tectonics.

  7. United States Civil Space Policy: Summary of a Workshop

    NASA Technical Reports Server (NTRS)

    2008-01-01

    What are the principal purposes, goals, and priorities of the U.S. civil space program? This question was the focus of the workshop on civil space policy held November 29-30, 2007, by the Space Studies Board (SSB) and the Aeronautics and Space Engineering Board (ASEB) of the National Research Council (NRC). In addressing this question, invited speakers and panelists and the general discussion from this public workshop explored a series of topics, including the following: (1) Key changes and developments in the U.S. civil space program since the new national Vision for Space Exploration2 (the Vision) was articulated by the executive branch in 2004; (2) The fit of space exploration within a broader national and international context; (3) Affordability, public interest, and political will to sustain the civil space program; (4) Definitions, metrics, and decision criteria for the mix and balance of activities within the program portfolio; (5) Roles of government in Earth observations from space; and (6) Gaps in capabilities and infrastructure to support the program.

  8. Risk to space sustainability from large constellations of satellites

    NASA Astrophysics Data System (ADS)

    Bastida Virgili, B.; Dolado, J. C.; Lewis, H. G.; Radtke, J.; Krag, H.; Revelin, B.; Cazaux, C.; Colombo, C.; Crowther, R.; Metz, M.

    2016-09-01

    The number of artificial objects in orbit continues to increase and, with it, a key threat to space sustainability. In response, space agencies have identified a set of mitigation guidelines aimed at enabling space users to reduce the generation of space debris by, for example, limiting the orbital lifetime of their spacecraft and launcher stages after the end of their mission. Planned, large constellations of satellites in low Earth orbit (LEO), though addressing the lack of basic internet coverage in some world regions, may disrupt the sustainability of the space environment enabled by these mitigation practices. We analyse the response of the space object population to the introduction of a large constellation conforming to the post-mission disposal guideline with differing levels of success and with different disposal orbit options. The results show that a high success rate of post-mission disposal by constellation satellites is a key driver for space sustainability.

  9. Cost-estimating relationships for space programs

    NASA Technical Reports Server (NTRS)

    Mandell, Humboldt C., Jr.

    1992-01-01

    Cost-estimating relationships (CERs) are defined and discussed as they relate to the estimation of theoretical costs for space programs. The paper primarily addresses CERs based on analogous relationships between physical and performance parameters to estimate future costs. Analytical estimation principles are reviewed examining the sources of errors in cost models, and the use of CERs is shown to be affected by organizational culture. Two paradigms for cost estimation are set forth: (1) the Rand paradigm for single-culture single-system methods; and (2) the Price paradigms that incorporate a set of cultural variables. For space programs that are potentially subject to even small cultural changes, the Price paradigms are argued to be more effective. The derivation and use of accurate CERs is important for developing effective cost models to analyze the potential of a given space program.

  10. Gamers as Designers: A Framework for Investigating Design in Gaming Affinity Spaces

    ERIC Educational Resources Information Center

    Duncan, Sean C.

    2010-01-01

    This article addresses recent approaches to uncovering and theorizing the design activities that occur in online gaming affinity spaces. Examples are presented of productive d/Discourse present within online forums around three video game series, video games, or game platforms, and key design practices engaged upon by gamers in these spaces. It is…

  11. Space Radiation Program Element Tissue Sharing Initiative

    NASA Technical Reports Server (NTRS)

    Wu, H.; Huff, J. L.; Simonsen, L. C.

    2014-01-01

    Over the years, a large number of animal experiments have been conducted at the NASA Space Radiation Laboratory and other facilities under the support of the NASA Space Radiation Program Element (SRPE). Studies using rodents and other animal species to address the space radiation risks will remain a significant portion of the research portfolio of the Element. In order to maximize scientific return of the animal studies, SRPE is taking the initiative to promote tissue sharing among the scientists in the space radiation research community. This initiative is enthusiastically supported by the community members as voiced in the responses to a recent survey. For retrospective tissue samples, an online platform will be established for the PIs to post a list of the available samples, and to exchange information with the potential recipients. For future animal experiments, a tissue sharing policy is being developed by SRPE.

  12. Advances in space robotics

    NASA Technical Reports Server (NTRS)

    Varsi, Giulio

    1989-01-01

    The problem of the remote control of space operations is addressed by identifying the key technical challenge: the management of contact forces and the principal performance parameters. Three principal classes of devices for remote operation are identified: anthropomorphic exoskeletons, computer aided teleoperators, and supervised telerobots. Their fields of application are described, and areas in which progress has reached the level of system or subsystem laboratory demonstrations are indicated. Key test results, indicating performance at a level useful for design tradeoffs, are reported.

  13. Lesbian Lacunae: Invisible Spaces in Dance Education

    ERIC Educational Resources Information Center

    Mozingo, Karen A.

    2005-01-01

    Recent research about sexuality and dance has begun to address the needs of gay male dancers, yet the needs of lesbian dancers have remained mostly absent from scholarly discourse. Exploring the lesbian lacunae, or invisible spaces of dance education, reveals the personal, political, and pedagogical implications of their existence within the dance…

  14. The Development of a Modelling Solution to Address Manpower and Personnel Issues Using the IPME

    DTIC Science & Technology

    2010-11-01

    training for a military system. It deals with the number of personnel spaces and available people. One of the main concerns in this domain is to...are often addressed by examining existing solutions for similar systems and/or a trial-and-error method based on human-in- the -loop tests. Such an...significant effort and resources on the development of a human performance modelling software, the Integrated Performance Modelling Environment (IPME

  15. Space Weather Workshop 2010 to Be Held in April

    NASA Astrophysics Data System (ADS)

    Peltzer, Thomas

    2010-03-01

    The annual Space Weather Workshop will be held in Boulder, Colo., 27-30 April 2010. The workshop will bring customers, forecasters, commercial service providers, researchers, and government agencies together in a lively dialogue about space weather. The workshop will include 4 days of plenary sessions on a variety of topics, with poster sessions focusing on the Sun, interplanetary space, the magnetosphere, and the ionosphere. The conference will address the remarkably diverse impacts of space weather on today's technology. Highlights on this year's agenda include ionospheric storms and their impacts on the Global Navigation Satellite System (GNSS), an update on NASA's recently launched Solar Dynamics Observatory (SDO), and new space weather-related activities in the Federal Emergency Management Agency (FEMA). Also this year, the Commercial Space Weather Interest Group will feature a presentation by former NOAA administrator, Vice Admiral Conrad Lautenbacher, U.S. Navy (Ret.).

  16. Ionic liquids for addressing unmet needs in healthcare

    PubMed Central

    Agatemor, Christian; Ibsen, Kelly N.; Tanner, Eden E. L.

    2018-01-01

    Abstract Advances in the field of ionic liquids have opened new applications beyond their traditional use as solvents into other fields especially healthcare. The broad chemical space, rich with structurally diverse ions, and coupled with the flexibility to form complementary ion pairs enables task‐specific optimization at the molecular level to design ionic liquids for envisioned functions. Consequently, ionic liquids now are tailored as innovative solutions to address many problems in medicine. To date, ionic liquids have been designed to promote dissolution of poorly soluble drugs and disrupt physiological barriers to transport drugs to targeted sites. Also, their antimicrobial activity has been demonstrated and could be exploited to prevent and treat infectious diseases. Metal‐containing ionic liquids have also been designed and offer unique features due to incorporation of metals. Here, we review application‐driven investigations of ionic liquids in medicine with respect to current status and future potential. PMID:29376130

  17. Interplay of space radiation and microgravity in DNA damage and DNA damage response.

    PubMed

    Moreno-Villanueva, María; Wong, Michael; Lu, Tao; Zhang, Ye; Wu, Honglu

    2017-01-01

    In space, multiple unique environmental factors, particularly microgravity and space radiation, pose constant threat to the DNA integrity of living organisms. Specifically, space radiation can cause damage to DNA directly, through the interaction of charged particles with the DNA molecules themselves, or indirectly through the production of free radicals. Although organisms have evolved strategies on Earth to confront such damage, space environmental conditions, especially microgravity, can impact DNA repair resulting in accumulation of severe DNA lesions. Ultimately these lesions, namely double strand breaks, chromosome aberrations, micronucleus formation, or mutations, can increase the risk for adverse health effects, such as cancer. How spaceflight factors affect DNA damage and the DNA damage response has been investigated since the early days of the human space program. Over the years, these experiments have been conducted either in space or using ground-based analogs. This review summarizes the evidence for DNA damage induction by space radiation and/or microgravity as well as spaceflight-related impacts on the DNA damage response. The review also discusses the conflicting results from studies aimed at addressing the question of potential synergies between microgravity and radiation with regard to DNA damage and cellular repair processes. We conclude that further experiments need to be performed in the true space environment in order to address this critical question.

  18. Characteristics of strong motions and damage implications of M S6.5 Ludian earthquake on August 3, 2014

    NASA Astrophysics Data System (ADS)

    Xu, Peibin; Wen, Ruizhi; Wang, Hongwei; Ji, Kun; Ren, Yefei

    2015-02-01

    The Ludian County of Yunnan Province in southwestern China was struck by an M S6.5 earthquake on August 3, 2014, which was another destructive event following the M S8.0 Wenchuan earthquake in 2008, M S7.1 Yushu earthquake in 2010, and M S7.0 Lushan earthquake in 2013. National Strong-Motion Observation Network System of China collected 74 strong motion recordings, which the maximum peak ground acceleration recorded by the 053LLT station in Longtoushan Town was 949 cm/s2 in E-W component. The observed PGAs and spectral ordinates were compared with ground-motion prediction equation in China and the NGA-West2 developed by Pacific Earthquake Engineering Researcher Center. This earthquake is considered as the first case for testing applicability of NGA-West2 in China. Results indicate that the observed PGAs and the 5 % damped pseudo-response spectral accelerations are significantly lower than the predicted ones. The field survey around some typical strong motion stations verified that the earthquake damage was consistent with the official isoseismal by China Earthquake Administration.

  19. Experimental Evaluation of the IP Address Space Randomisation (IASR) Technique and Its Disruption to Selected Network Services

    DTIC Science & Technology

    2014-11-01

    Canada (Department of National Defence), 2014 c© Sa Majesté la Reine en droit du Canada (Ministère de la Défense nationale), 2014 Abstract In recent...2006), Network security mechanisms utilising network address translation, International journal of critical infrastructures, 2(1), 10–49. [5] Dunlop...Lu, S. (2008), Full service hopping for proactive cyber-defense, In ICNSC 2008: IEEE International Conference on Networking, Sensing and Control, pp

  20. Group structure and group process for effective space station astronaut teams

    NASA Technical Reports Server (NTRS)

    Nicholas, J. M.; Kagan, R. S.

    1985-01-01

    Space Station crews will encounter new problems, many derived from the social interaction of groups working in space for extended durations. Solutions to these problems must focus on the structure of groups and the interaction of individuals. A model of intervention is proposed to address problems of interpersonal relationships and emotional stress, and improve the morale, cohesiveness, and productivity of astronaut teams.

  1. Nuclear reactor power as applied to a space-based radar mission

    NASA Technical Reports Server (NTRS)

    Jaffe, L.; Beatty, R.; Bhandari, P.; Chow, E.; Deininger, W.; Ewell, R.; Fujita, T.; Grossman, M.; Bloomfield, H.; Heller, J.

    1988-01-01

    A space-based radar mission and spacecraft are examined to determine system requirements for a 300 kWe space nuclear reactor power system. The spacecraft configuration and its orbit, launch vehicle, and propulsion are described. Mission profiles are addressed, and storage in assembly orbit is considered. Dynamics and attitude control and the problems of nuclear and thermal radiation are examined.

  2. Center Director Bridges addresses guests at ribbon cutting for the new Checkout & Launch Control

    NASA Technical Reports Server (NTRS)

    2000-01-01

    KSC Director Roy Bridges addresses attendees at a ribbon cutting for the new Checkout and Launch Control System (CLCS) at the Hypergolic Maintenance Facility (HMF). The CLCS was declared operational in a ribbon cutting ceremony earlier. The new control room will be used to process the Orbital Maneuvering System pods and Forward Reaction Control System modules at the HMF. This hardware is removed from Space Shuttle orbiters and routinely taken to the HMF for checkout and servicing.

  3. Perspectives on energy storage wheels for space station application

    NASA Technical Reports Server (NTRS)

    Oglevie, R. E.

    1984-01-01

    Several of the issues of the workshop are addressed from the perspective of a potential Space Station developer and energy wheel user. Systems' considerations are emphasized rather than component technology. The potential of energy storage wheel (ESW) concept is discussed. The current status of the technology base is described. Justification for advanced technology development is also discussed. The study concludes that energy storage in wheels is an attractive concept for immediate technology development and future Space Station application.

  4. Wireless Sensor Needs in the Space Shuttle and CEV Structures Communities

    NASA Technical Reports Server (NTRS)

    James, George H., III

    2007-01-01

    This presentation will clarify some of the structural measurement needs of NASA's Space Shuttle and Crew Exploration Vehicles. Emerging technologies in wireless sensor systems can be of some advantage in both Programs. The presentation will address how wireless instrumentation has helped in the past and what has gone unmeasured on Shuttle due to various limitations. Finally, it will address the needs of the CEV program that can be met with reliable wireless systems, if modular avionics interfaces are provided to accommodate the usual evolving needs of an ambitious space vehicle development program. Examples of the advantages of flight data to support flight certification engineering analyses and of areas where add-on wireless instrumentation can be used will be shown. Without flight instrumentation, it is necessary to retain the conservative assumptions used in the design process. It will be shown how the lessons learned on Space Shuttle for wired and wireless structural measurements apply to the Orion Crew Exploration Vehicle (CEV), which is currently being designed.

  5. Communication spaces

    PubMed Central

    Coiera, Enrico

    2014-01-01

    Background and objective Annotations to physical workspaces such as signs and notes are ubiquitous. When densely annotated, work areas become communication spaces. This study aims to characterize the types and purpose of such annotations. Methods A qualitative observational study was undertaken in two wards and the radiology department of a 440-bed metropolitan teaching hospital. Images were purposefully sampled; 39 were analyzed after excluding inferior images. Results Annotation functions included signaling identity, location, capability, status, availability, and operation. They encoded data, rules or procedural descriptions. Most aggregated into groups that either created a workflow by referencing each other, supported a common workflow without reference to each other, or were heterogeneous, referring to many workflows. Higher-level assemblies of such groupings were also observed. Discussion Annotations make visible the gap between work done and the capability of a space to support work. Annotations are repairs of an environment, improving fitness for purpose, fixing inadequacy in design, or meeting emergent needs. Annotations thus record the missing information needed to undertake tasks, typically added post-implemented. Measuring annotation levels post-implementation could help assess the fit of technology to task. Physical and digital spaces could meet broader user needs by formally supporting user customization, ‘programming through annotation’. Augmented reality systems could also directly support annotation, addressing existing information gaps, and enhancing work with context sensitive annotation. Conclusions Communication spaces offer a model of how work unfolds. Annotations make visible local adaptation that makes technology fit for purpose post-implementation and suggest an important role for annotatable information systems and digital augmentation of the physical environment. PMID:24005797

  6. Reach Address Database (RAD)

    EPA Pesticide Factsheets

    The Reach Address Database (RAD) stores the reach address of each Water Program feature that has been linked to the underlying surface water features (streams, lakes, etc) in the National Hydrology Database (NHD). (A reach is the portion of a stream between two points of confluence. A confluence is the location where two or more streams flow together.)

  7. Antimicrobial Medication Stability During Space Flight

    NASA Technical Reports Server (NTRS)

    Putcha, Lakshmi; Berens, Kurt; Du, Jianping

    2004-01-01

    The current vision for manned space flight involves lunar and Martian exploration within the next two decades. In order for NASA to achieve these goals, a significant amount of preparation is necessary to assure crew health and safety. A mission critical component of this vision centers around the stability of pharmaceutical preparations contained in the space medicine kits. Evidence suggests that even brief periods of space flight have significant detrimental effects for some pharmaceutical formulations. The effects observed include decreases in physical stability of drug formulations of sufficient magnitude to effect bioavailability. Other formulations exhibit decreases in chemical stability resulting in a loss of potency. Physical or-chemical instability of pharmaceutical formulations i n space medicine kits could render the products ineffective. Of additional concern is the potential for formation of toxic degradation products as a result of the observed product instability. This proposal addresses Question number 11 of Clinical Capabilities in the Critical Path Roadmap. In addition, this proposal will reduce the risks and/or enhance the capabilities of humans exposed to the environments of space flight or an extraterrestrial destination by identifying drugs that may be unstable during spaceflight.

  8. Space weather forecasting: Past, Present, Future

    NASA Astrophysics Data System (ADS)

    Lanzerotti, L. J.

    2012-12-01

    There have been revolutionary advances in electrical technologies over the last 160 years. The historical record demonstrates that space weather processes have often provided surprises in the implementation and operation of many of these technologies. The historical record also demonstrates that as the complexity of systems increase, including their interconnectedness and interoperability, they can become more susceptible to space weather effects. An engineering goal, beginning during the decades following the 1859 Carrington event, has been to attempt to forecast solar-produced disturbances that could affect technical systems, be they long grounded conductor-based or radio-based or required for exploration, or the increasingly complex systems immersed in the space environment itself. Forecasting of space weather events involves both frontier measurements and models to address engineering requirements, and industrial and governmental policies that encourage and permit creativity and entrepreneurship. While analogies of space weather forecasting to terrestrial weather forecasting are frequently made, and while many of the analogies are valid, there are also important differences. This presentation will provide some historical perspectives on the forecast problem, a personal assessment of current status of several areas including important policy issues, and a look into the not-too-distant future.

  9. Automating Battlefield Event Reporting Using Conceptual Spaces and Fuzzy Logic for Passive Speech Interpretation

    DTIC Science & Technology

    2009-10-01

    SPACES AND FUZZY LOGIC FOR PASSIVE SPEECH INTERPRETATION Katie T. McConky Research Scientist CUBRC Buffalo, NY, U.S.A. mcconky@cubrc.org...ORGANIZATION NAME(S) AND ADDRESS(ES) CUBRC ,4455 Genesee Street, Suite 106,Buffalo,NY,14225 8. PERFORMING ORGANIZATION REPORT NUMBER 9. SPONSORING

  10. Space Station Freedom Toxic and Reactive Materials Handling

    NASA Technical Reports Server (NTRS)

    Baugher, Charles R. (Editor)

    1990-01-01

    Viable research in materials processing in space requires the utilization of a wide variety of chemicals and materials, many of which are considered toxic and/or highly reactive with other substances. A realistic view of the experiments which are most likely to be accomplished in the early Space Station phases are examined and design issues addressed which are related to their safe implementation. Included are discussions of materials research on Skylab, Spacelab, and the Shuttle mid-deck; overviews of early concepts for specialized Space Station systems designed to help contain potential problems; descriptions of industrial experience with ground-based research; and an overview of the state-of-the-art in contamination detection systems.

  11. Toward an electrical power utility for space exploration

    NASA Technical Reports Server (NTRS)

    Bercaw, Robert W.

    1989-01-01

    Plans for space exploration depend on today's technology programs addressing the novel requirements of space-based enterprise. The requirements for electrical power will be formidable: megawatts in magnitude, reliability for multi-year missions and the flexibility to adapt to needs unanticipated at design time. The reasons for considering the power management and distribution in the various systems from a total mission perspective, rather than simply extrapolating current spacecraft design practice, are discussed. A utility approach to electric power being developed at the Lewis Research Center is described. It integrates requirements from a broad selection of current development programs with studies in which both space and terrestrial technologies are conceptually applied to exploration mission scenarios.

  12. What is the Value of Space Exploration? - A Prairie Perspective

    NASA Technical Reports Server (NTRS)

    1995-01-01

    The symposium addresses different topics within Space Exploration. The symposium was fed, using satellite downlinks, to several communities in North Dakota, the first such symposium of its type ever held. The specific topics presented by different community members within the state of North Dakota were: the economic, cultural, scientific and technical, political, educational and social value of Space Exploration. Included is a 22 minute VHS video cassette highlighting the symposium.

  13. Towards a National Space Weather Predictive Capability

    NASA Astrophysics Data System (ADS)

    Fox, N. J.; Ryschkewitsch, M. G.; Merkin, V. G.; Stephens, G. K.; Gjerloev, J. W.; Barnes, R. J.; Anderson, B. J.; Paxton, L. J.; Ukhorskiy, A. Y.; Kelly, M. A.; Berger, T. E.; Bonadonna, L. C. M. F.; Hesse, M.; Sharma, S.

    2015-12-01

    National needs in the area of space weather informational and predictive tools are growing rapidly. Adverse conditions in the space environment can cause disruption of satellite operations, communications, navigation, and electric power distribution grids, leading to a variety of socio-economic losses and impacts on our security. Future space exploration and most modern human endeavors will require major advances in physical understanding and improved transition of space research to operations. At present, only a small fraction of the latest research and development results from NASA, NOAA, NSF and DoD investments are being used to improve space weather forecasting and to develop operational tools. The power of modern research and space weather model development needs to be better utilized to enable comprehensive, timely, and accurate operational space weather tools. The mere production of space weather information is not sufficient to address the needs of those who are affected by space weather. A coordinated effort is required to support research-to-applications transition efforts and to develop the tools required those who rely on this information. In this presentation we will review the space weather system developed for the Van Allen Probes mission, together with other datasets, tools and models that have resulted from research by scientists at JHU/APL. We will look at how these, and results from future missions such as Solar Probe Plus, could be applied to support space weather applications in coordination with other community assets and capabilities.

  14. Mediating Transnational Spaces: International Students and Intercultural Responsibility

    ERIC Educational Resources Information Center

    Tran, Ly Thi; Vu, Thao Thi Phuong

    2017-01-01

    Despite the significant body of literature on international students' intercultural development, the core issue of how they see their own responsibility in transnational intercultural spaces is largely neglected. This paper addresses this paucity by examining the intercultural responsibility perceived by international students. It is based on a…

  15. Man-systems distributed system for Space Station Freedom

    NASA Technical Reports Server (NTRS)

    Lewis, J. L.

    1990-01-01

    Viewgraphs on man-systems distributed system for Space Station Freedom are presented. Topics addressed include: description of man-systems (definition, requirements, scope, subsystems, and topologies); implementation (approach, tools); man-systems interfaces (system to element and system to system); prime/supporting development relationship; selected accomplishments; and technical challenges.

  16. Radiation Transport Tools for Space Applications: A Review

    NASA Technical Reports Server (NTRS)

    Jun, Insoo; Evans, Robin; Cherng, Michael; Kang, Shawn

    2008-01-01

    This slide presentation contains a brief discussion of nuclear transport codes widely used in the space radiation community for shielding and scientific analyses. Seven radiation transport codes that are addressed. The two general methods (i.e., Monte Carlo Method, and the Deterministic Method) are briefly reviewed.

  17. National Aeronautics and Space Administration Biological and Physical Research Enterprise Strategy

    NASA Technical Reports Server (NTRS)

    2003-01-01

    As the 21st century begins, NASA's new Vision and Mission focuses the Agency's Enterprises toward exploration and discovery.The Biological and Physical Research Enterprise has a unique and enabling role in support of the Agency's Vision and Mission. Our strategic research seeks innovations and solutions to enable the extension of life into deep space safely and productively. Our fundamental research, as well as our research partnerships with industry and other agencies, allow new knowledge and tech- nologies to bring improvements to life on Earth. Our interdisciplinary research in the unique laboratory of microgravity addresses opportunities and challenges on our home planet as well as in space environments. The Enterprise maintains a key role in encouraging and engaging the next generation of explorers from primary school through the grad- uate level via our direct student participation in space research.The Biological and Physical Research Enterprise encompasses three themes. The biological sciences research theme investigates ways to support a safe human presence in space. This theme addresses the definition and control of physiological and psychological risks from the space environment, including radiation,reduced gravity, and isolation. The biological sciences research theme is also responsible for the develop- ment of human support systems technology as well as fundamental biological research spanning topics from genomics to ecologies. The physical sciences research theme supports research that takes advantage of the space environment to expand our understanding of the fundamental laws of nature. This theme also supports applied physical sciences research to improve safety and performance of humans in space. The research partnerships and flight support theme establishes policies and allocates space resources to encourage and develop entrepreneurial partners access to space research.Working together across research disciplines, the Biological and Physical

  18. The New National Vision for Space Exploration

    NASA Technical Reports Server (NTRS)

    Sackheim, Robert L.; Geveden, Rex; King, David A.

    2004-01-01

    From the Apollo landings on the Moon, to robotic surveys of the Sun and the planets, to the compelling images captured by advanced space telescopes, U.S. achievements in space have revolutionized humanity s view of the universe and have inspired Americans and people around the world. These achievements also have led to the development of technologies that have widespread applications to address problems on Earth. As the world enters the second century of powered flight, it is appropriate to articulate a new vision that will define and guide U.S. space exploration activities for the next several decades. Today, humanity has the potential to seek answers to the most fundamental questions posed about the existence of life beyond Earth. Telescopes have found planets around other stars. Robotic probes have identified potential resources on the Moon, and evidence of water - a key ingredient for life - has been found on Mars and the moons of Jupiter. Direct human experience in space has fundamentally altered our perspective of humanity and our place in the universe. Humans have the ability to respond to the unexpected developments inherent in space travel and possess unique skills that enhance discoveries. Just as Mercury, Gemini, and Apollo challenged a generation of Americans, a renewed U.S. space exploration program with a significant human component can inspire us - and our youth - to greater achievements on Earth and in space. The loss of Space Shuttles Challenger and Columbia and their crews are a stark reminder of the inherent risks of space flight and the severity of the challenges posed by space exploration. In preparation for future human exploration, we must advance our ability to live and work safely in space and, at the same time, develop the technologies to extend humanity s reach to the Moon, Mars, and beyond. The new technologies required for further space exploration also will improve the Nation s other space activities and may provide applications that

  19. Omicron space habitat—research stage II

    NASA Astrophysics Data System (ADS)

    Doule, Ondřej; Šálený, Vratislav; Hérin, Benoît; Rousek, Tomáš

    2012-01-01

    The design presented in this paper is in response to the revolution in private space activities, the increasing public interest in commercial flights to space and the utilization of structures such as space hotels or private orbital habitats. The baseline for the Omicron design concept is the Russian Salyut derived space station module. Salyut was the first space station to orbit the Earth. Its unique design and technical features were what made the development of space stations Salyut 1-7, MIR and the International Space Station (ISS) Zwezda service module possible. Due to its versatility and the reliable operating launch vehicle Proton, this space module series has the potential to be adapted for space hotel development. This paper proposes a conceptual design of the space habitat called Omicron, with particular focus on interior design for the microgravity environment. The Omicron concepts address the needs of space tourism with a strong emphasis on the safety and comfort of the spaceflight participants. The Omicron habitat supports three inhabitants in nominal conditions (e.g., two passengers and one astronaut). The habitat provides a flexible interior, facilities and spaces dynamically transforming in order to accommodate various types of activities, which will be performed in an organically formed interior supporting spatial orientation and movement in microgravity. The future development potential of Omicron is also considered. The baseline version is composed solely of one rigid module with an inverted cupola for observations. An alternative version offers more space using an inflatable structure. Finally, a combination of multiple Omicron modules enables the creation of a larger orbital habitat. The Omicron's subsystems support a few days visit by trained passengers. The transport to the habitat would be provided e.g., by the Soyuz TMA spacecraft carried by the Soyuz launch vehicle in the early stage of Omicron's development, before a fully reusable

  20. A proposal to demonstrate production of salad crops in the Space Station Mockup facility with particular attention to space, energy, and labor constraints

    NASA Technical Reports Server (NTRS)

    Brooks, Carolyn

    1992-01-01

    This research has continued along two lines, one at Marshall Space Flight Center with Salad Machine Rack development and the design and construction of a mockup for placement in the Huntsville Space Station Freedom mockup. The second avenue of research has addressed issues of relevance to the operation of the Salad Machine and Bioregenerative systems. These issues include plant species compatibility when grown on shared hydroponic systems and microbial populations of mixed species hydroponic systems. Significant progress is reported.

  1. Static Atmospheres in a Rotating Space Habitat.

    ERIC Educational Resources Information Center

    McKinley, John M.

    1980-01-01

    Discusses O'Neill's proposal for the colonization of space as it offers new problems in pure physics. Addresses specifically the distribution of the atmosphere in O'Neill's habitat and whether there will be enough air at the axis of rotation to allow human-powered flight, with particular reference to the habitat's "artificial gravity."…

  2. Tensor discriminant color space for face recognition.

    PubMed

    Wang, Su-Jing; Yang, Jian; Zhang, Na; Zhou, Chun-Guang

    2011-09-01

    Recent research efforts reveal that color may provide useful information for face recognition. For different visual tasks, the choice of a color space is generally different. How can a color space be sought for the specific face recognition problem? To address this problem, this paper represents a color image as a third-order tensor and presents the tensor discriminant color space (TDCS) model. The model can keep the underlying spatial structure of color images. With the definition of n-mode between-class scatter matrices and within-class scatter matrices, TDCS constructs an iterative procedure to obtain one color space transformation matrix and two discriminant projection matrices by maximizing the ratio of these two scatter matrices. The experiments are conducted on two color face databases, AR and Georgia Tech face databases, and the results show that both the performance and the efficiency of the proposed method are better than those of the state-of-the-art color image discriminant model, which involve one color space transformation matrix and one discriminant projection matrix, specifically in a complicated face database with various pose variations.

  3. Space transportation activities in the United States

    NASA Technical Reports Server (NTRS)

    Gabris, Edward A.

    1994-01-01

    The status of the existing space transportation systems in the U.S. and options for increased capability is being examined in the context of mission requirements, options for new vehicles, cost to operate the existing vehicles, cost to develop new vehicles, and the capabilities and plans of other suppliers. This assessment is addressing the need to build and resupply the space station, to maintain necessary military assets in a rapidly changing world, and to continue a competitive commercial space transportation industry. The Department of Defense (DOD) and NASA each conducted an 'access to space' study using a common mission model but with the emphasis on their unique requirements. Both studies considered three options: maintain and improve the existing capability, build a new launch vehicle using contemporary technology, and build a new launch vehicle using advanced technology. While no decisions have been made on a course of action, it will be influenced by the availability of funds in the U.S. budget, the changing need for military space assets, the increasing competition among space launch suppliers, and the emerging opportunity for an advanced technology, low cost system and international partnerships to develop it.

  4. NASA Aircraft Vortex Spacing System Development Status

    NASA Technical Reports Server (NTRS)

    Hinton, David A.; Charnock, James K.; Bagwell, Donald R.; Grigsby, Donner

    1999-01-01

    The National Aeronautics and Space Administration (NASA) is addressing airport capacity enhancements during instrument meteorological conditions through the Terminal Area Productivity (TAP) program. Within TAP, the Reduced Spacing Operations (RSO) subelement at the NASA Langley Research Center is developing an Aircraft VOrtex Spacing System (AVOSS). AVOSS will integrate the output of several systems to produce weather dependent, dynamic wake vortex spacing criteria. These systems provide current and predicted weather conditions, models of wake vortex transport and decay in these weather conditions, and real-time feedback of wake vortex behavior from sensors. The goal of the NASA program is to provide the research and development to demonstrate an engineering model AVOSS in real-time operation at a major airport. The demonstration is only of concept feasibility, and additional effort is required to deploy an operational system for actual aircraft spacing reduction. This paper describes the AVOSS system architecture, a wake vortex facility established at the Dallas-Fort Worth International Airport (DFW), initial operational experience with the AVOSS system, and emerging considerations for subsystem requirements. Results of the initial system operation suggest a significant potential for reduced spacing.

  5. Photosensitive biosensor array system using optical addressing without an addressing circuit on array biochips

    NASA Astrophysics Data System (ADS)

    Ahn, Chang-Geun; Ah, Chil Seong; Kim, Tae-Youb; Park, Chan Woo; Yang, Jong-Heon; Kim, Ansoon; Sung, Gun Yong

    2010-09-01

    This paper introduces a photosensitive biosensor array system with a simple photodiode array that detects photocurrent changes caused by reactions between probe and target molecules. Using optical addressing, the addressing circuit on the array chip is removed for low-cost application, and real cell addressing is achieved using an externally located computer-controllable light-emitting diode array module. The fabricated biosensor array chip shows a good dynamic range of 1-100 ng/mL under prostate-specific antigen detection, with an on-chip resolution of roughly 1 ng/mL.

  6. Analog FM/FM versus digital color TV transmission aboard space station

    NASA Technical Reports Server (NTRS)

    Hart, M. M.

    1985-01-01

    Langley Research Center is developing an integrated fault tolerant network to support data, voice, and video communications aboard Space Station. The question of transmitting the video data via dedicated analog channels or converting it to the digital domain for consistancy with the test of the data is addressed. The recommendations in this paper are based on a comparison in the signal-to-noise ratio (SNR), the type of video processing required aboard Space Station, the applicability to Space Station, and how they integrate into the network.

  7. Proceedings of the NASA Conference on Space Telerobotics, volume 1

    NASA Technical Reports Server (NTRS)

    Rodriguez, Guillermo (Editor); Seraji, Homayoun (Editor)

    1989-01-01

    The theme of the Conference was man-machine collaboration in space. Topics addressed include: redundant manipulators; man-machine systems; telerobot architecture; remote sensing and planning; navigation; neural networks; fundamental AI research; and reasoning under uncertainty.

  8. Holography in Rindler Space

    NASA Astrophysics Data System (ADS)

    Samantray, Prasant

    This thesis addresses certain quantum aspects of the event horizon using the AdS/CFT correspondence. This correspondence is profound since it describes a quantum theory of gravity in d + 1 dimensions from the perspective of a dual quantum field theory living in d dimensions. We begin by considering Rindler space which is the part of Minkowski space seen by an observer with a constant proper acceleration. Because it has an event horizon, Rindler space has been studied in great detail within the context of quantum field theory. However, a quantum gravitational treatment of Rindler space is handicapped by the fact that quantum gravity in flat space is poorly understood. By contrast, quantum gravity in anti-de Sitter space (AdS), is relatively well understood via the AdS/CFT correspondence. Taking this cue, we construct Rindler coordinates for AdS (Rindler-AdS space) in d + 1 spacetime dimensions. In three spacetime dimensions, we find novel one-parameter families of stationary vacua labeled by a rotation parameter β. The interesting thing about these rotating Rindler-AdS spaces is that they possess an observer-dependent ergoregion in addition to having an event horizon. Turning next to the application of AdS/CFT correspondence to Rindler-AdS space, we posit that the two Rindler wedges in AdSd +1 are dual to an entangled conformal field theory (CFT) that lives on two boundaries with geometry R × Hd-1. Specializing to three spacetime dimensions, we derive the thermodynamics of Rindler-AdS space using the boundary CFT. We then probe the causal structure of the spacetime by sending in a time-like source and observe that the CFT “knows” when the source has fallen past the Rindler horizon. We conclude by proposing an alternate foliation of Rindler-AdS which is dual to a CFT living in de Sitter space. Towards the end, we consider the concept of weak measurements in quantum mechanics, wherein the measuring instrument is weakly coupled to the system being measured. We

  9. Design of a fast Mars space transfer system

    NASA Astrophysics Data System (ADS)

    Woo, Henry H.; Glass, James F.; Roy, Claude

    1992-02-01

    Architecture strategies and concepts for manned missions to Mars are being developed by NASA and industry. This paper addresses the key Mars transfer vehicle (MTV) design requirements which include surface payload mass, MTV mass, propulsion system characteristics, launch vehicle capability, in-space operations, abort considerations, crew exposure to interplanetary environments, and crew reconditioning for planetary entry. Different mission strategies are presented along with their implications. A representative artificial-g MTV using nuclear thermal propulsion is defined to show concepts which minimize extravehicular activity operations for in-space assembly, inspection, and maintenance.

  10. Developing the human-computer interface for Space Station Freedom

    NASA Technical Reports Server (NTRS)

    Holden, Kritina L.

    1991-01-01

    For the past two years, the Human-Computer Interaction Laboratory (HCIL) at the Johnson Space Center has been involved in prototyping and prototype reviews of in support of the definition phase of the Space Station Freedom program. On the Space Station, crew members will be interacting with multi-monitor workstations where interaction with several displays at one time will be common. The HCIL has conducted several experiments to begin to address design issues for this complex system. Experiments have dealt with design of ON/OFF indicators, the movement of the cursor across multiple monitors, and the importance of various windowing capabilities for users performing multiple tasks simultaneously.

  11. Technology for Space Station Evolution. Executive summary and overview

    NASA Technical Reports Server (NTRS)

    1990-01-01

    NASA's Office of Aeronautics and Space Technology (OAST) conducted a workshop on technology for space station evolution 16-19 Jan. 1990. The purpose of this workshop was to collect and clarify Space Station Freedom technology requirements for evolution and to describe technologies that can potentially fill those requirements. These proceedings are organized into an Executive Summary and Overview and five volumes containing the technology discipline presentations. The Executive Summary and Overview contains an executive summary for the workshop, the technology discipline summary packages, and the keynote address. The executive summary provides a synopsis of the events and results of the workshop and the technology discipline summary packages.

  12. Holograms of Flat Space

    NASA Astrophysics Data System (ADS)

    Bagchi, Arjun; Grumiller, Daniel

    2013-07-01

    The holographic principle has a concrete realization in the Anti-de Sitter/Conformal Field Theory (AdS/CFT) correspondence. If this principle is a true fact about quantum gravity then it must also hold beyond AdS/CFT. In this paper, we address specifically holographic field theory duals of gravitational theories in asymptotically flat spacetimes. We present some evidence of our recent conjecture that three-dimensional (3d) conformal Chern-Simons gravity (CSG) with flat space boundary conditions is dual to an extremal CFT.

  13. Bone Quest - A Space-Based Science and Health Education Unit

    NASA Technical Reports Server (NTRS)

    Smith, Scott M.; David-Street, Janis E.; Abrams, Steve A.

    2000-01-01

    This proposal addresses the need for effective and innovative science and health education materials that focus on space bone biology and its implications for bone health on Earth. The focus of these materials, bone biology and health, will increase science knowledge as well as health awareness. Current investigations of the bone loss observed after long-duration space missions provide a link between studies of bone health in space, and studies of osteoporosis, a disease characterized by bone loss and progressive skeletal weakness. The overall goal of this project is to design and develop web-based and print-based materials for high school science students, that will address the following: a) knowledge of normal bone biology and bone biology in a microgravity environment; b) knowledge of osteoporosis; c) knowledge of treatment modalities for space- and Earth-based bone loss; and d} bone-related nutrition knowledge and behavior. To this end, we propose to design and develop a Bone Biology Tutorial which will instruct students about normal bone biology, bone biology in a microgravity environment, osteoporosis - its definition, detection, risk factors, and prevention, treatment modalities for space- and Earth-based bone loss, and the importance of nutrition in bone health. Particular emphasis will be placed on current trends in . adolescent nutrition, and their relationships to bone health. Additionally, we propose to design and develop two interactive nutrition/health ' education activities that will allow students to apply the information provided in the Bone Biology Tutorial. In the first, students will apply constructs provided in the Bone Biology Tutorial to design "Bone Health Plans" for space travelers.

  14. Optically addressed ultra-wideband phased antenna array

    NASA Astrophysics Data System (ADS)

    Bai, Jian

    Demands for high data rate and multifunctional apertures from both civilian and military users have motivated development of ultra-wideband (UWB) electrically steered phased arrays. Meanwhile, the need for large contiguous frequency is pushing operation of radio systems into the millimeter-wave (mm-wave) range. Therefore, modern radio systems require UWB performance from VHF to mm-wave. However, traditional electronic systems suffer many challenges that make achieving these requirements difficult. Several examples includes: voltage controlled oscillators (VCO) cannot provide a tunable range of several octaves, distribution of wideband local oscillator signals undergo high loss and dispersion through RF transmission lines, and antennas have very limited bandwidth or bulky sizes. Recently, RF photonics technology has drawn considerable attention because of its advantages over traditional systems, with the capability of offering extreme power efficiency, information capacity, frequency agility, and spatial beam diversity. A hybrid RF photonic communication system utilizing optical links and an RF transducer at the antenna potentially provides ultra-wideband data transmission, i.e., over 100 GHz. A successful implementation of such an optically addressed phased array requires addressing several key challenges. Photonic generation of an RF source with over a seven-octave bandwidth has been demonstrated in the last few years. However, one challenge which still remains is how to convey phased optical signals to downconversion modules and antennas. Therefore, a feed network with phase sweeping capability and low excessive phase noise needs to be developed. Another key challenge is to develop an ultra-wideband array antenna. Modern frontends require antennas to be compact, planar, and low-profile in addition to possessing broad bandwidth, conforming to stringent space, weight, cost, and power constraints. To address these issues, I will study broadband and miniaturization

  15. Space Radiation Program Element Tissue Sharing Forum

    NASA Technical Reports Server (NTRS)

    Wu, H.; Mayeaux, B M.; Huff, J. L.; Simonsen, L. C.

    2016-01-01

    Over the years, a large number of animal experiments have been conducted at the NASA Space Radiation Laboratory and other facilities under the support of the NASA Space Radiation Program Element (SRPE). Studies using rodents and other animal species to address the space radiation risks will remain a significant portion of the research portfolio of the Element. In order to maximize scientific return of the animal studies, the SRPE has recently released the Space Radiation Tissue Sharing Forum. The Forum provides access to an inventory of investigator-stored tissue samples and enables both NASA SRPE members and NASA-funded investigators to exchange information regarding stored and future radiobiological tissues available for sharing. Registered users may review online data of available tissues, inquire about tissues posted, or request tissues for an upcoming study using an online form. Investigators who have upcoming sacrifices are also encouraged to post the availability of samples using the discussion forum. A brief demo of the forum will be given during the presentation

  16. The French Space Operation Act: Technical Regulations

    NASA Astrophysics Data System (ADS)

    Trinchero, J. P.; Lazare, B.

    2010-09-01

    The French Space Operation Act(FSOA) stipulates that a prime objective of the National technical regulations is to protect people, property, public health and the environment. Compliance with these technical regulations is mandatory as of 10 December 2010 for space operations by French space operators and for space operations from French territory. The space safety requirements and regulations governing procedures are based on national and international best practices and experience. A critical design review of the space system and procedures shall be carried out by the applicant, in order to verify compliance with the Technical Regulations. An independent technical assessment of the operation is delegated to CNES. The principles applied when drafting technical regulations are as follows: requirements must as far as possible establish the rules according to the objective to be obtained, rather than how it is to be achieved; requirements must give preference to international standards recognised as being the state of the art; requirements must take previous experience into account. Technical regulations are divided into three sections covering common requirements for the launch, control and return of a space object. A dedicated section will cover specific rules to be applied at the Guiana Space Centre. The main topics addressed by the technical regulations are: operator safety management system; study of risks to people, property, public health and the Earth’s environment; impact study on the outer space environment: space debris generated by the operation; planetary protection.

  17. Manned Space Exploration Can Provide Great Scientific Benefits

    NASA Astrophysics Data System (ADS)

    Singer, S. Fred

    2005-08-01

    An AGU Council statement (NASA: Earth and space sciences at risk, available at http:// www.agu.org/sci_soc/policy/positions/ earthspace_risk.shtml) and an Eos editorial [Barron, 2005], addressing NASA's envisioned manned Moon-Mars initiative, implicitly assume a zero-sum situation between manned and unmanned space programs. They also imply that the NASA initiative will not contribute significantly to science but will ``impact on the current and future health of Earth and space science research.'' I wish to respond to these concerns. It is generally agreed that the International Space Station and shuttle program have limited value and need to be terminated. But one should not assume that funds freed up by elimination of manned programs will accrue to unmanned programs. On the contrary, without a manned component, NASA will probably cease to exist. Congress likely will not continue to fund unmanned planetary exploration over the long term, and Earth and space researchers will then have to compete for support with scientists using non-space techniques.

  18. Fifth Space Weather Enterprise Forum Reaches New Heights

    NASA Astrophysics Data System (ADS)

    Williamson, Samuel P.; Babcock, Michael R.; Bonadonna, Michael F.

    2011-09-01

    As the world's commercial infrastructure grows more dependent on sensitive electronics and space-based technologies, the global economy is becoming increasingly vulnerable to solar storms. Experts from the federal government, academia, and the private sector met to discuss the societal effects of major solar storms and other space weather at the fifth annual Space Weather Enterprise Forum (SWEF), held on 21 June 2011 at the National Press Club in Washington, D. C. More than 200 members of the space weather community attended this year's SWEF, which focused on the consequences of severe space weather for national security, critical infrastructure, and human safety. Participants also addressed the question of how to prepare for and mitigate those consequences as the current solar cycle approaches and reaches its peak, expected in 2013. This year's forum included details of plans for a "Unified National Space Weather Capability," a new interagency initiative which will be implemented over the next two years, designed to improve forecasting, warning, and other services ahead of the coming solar maximum.

  19. Compensated individually addressable array technology for human breast imaging

    DOEpatents

    Lewis, D. Kent

    2003-01-01

    A method of forming broad bandwidth acoustic or microwave beams which encompass array design, array excitation, source signal preprocessing, and received signal postprocessing. This technique uses several different methods to achieve improvement over conventional array systems. These methods are: 1) individually addressable array elements; 2) digital-to-analog converters for the source signals; 3) inverse filtering from source precompensation; and 4) spectral extrapolation to expand the bandwidth of the received signals. The components of the system will be used as follows: 1) The individually addressable array allows scanning around and over an object, such as a human breast, without any moving parts. The elements of the array are broad bandwidth elements and efficient radiators, as well as detectors. 2) Digital-to-analog converters as the source signal generators allow virtually any radiated field to be created in the half-space in front of the array. 3) Preprocessing allows for corrections in the system, most notably in the response of the individual elements and in the ability to increase contrast and resolution of signal propagating through the medium under investigation. 4) Postprocessing allows the received broad bandwidth signals to be expanded in a process similar to analytic continuation. Used together, the system allows for compensation to create beams of any desired shape, control the wave fields generated to correct for medium differences, and improve contract and resolution in and through the medium.

  20. Morphometry of network and nonnetwork space of basins

    NASA Astrophysics Data System (ADS)

    Chockalingam, L.; Daya Sagar, B. S.

    2005-08-01

    Morphometric analysis of channel network of a basin provides several scale- independent measures. To better characterize basin morphology, one requires, besides channel morphometric properties, scale-independent but shape-dependent measures to record the sensitive differences in the morphological organization of nonnetwork spaces. These spaces are planar forms of hillslopes or the retained portion after subtracting the channel network from the basin space. The principal aim of this paper is to focus on explaining the importance of alternative scale-independent but shape-dependent measures of nonnetwork spaces of basins. Toward this goal, we explore how mathematical morphology-based decomposition procedures can be used to derive basic measures required to quantify estimates, such as dimensionless power laws, that are useful to express the importance of characteristics of nonnetwork spaces via decomposition rules. We demonstrate our results through characterization of nonnetwork spaces of eight subbasins of the Gunung Ledang region of peninsular Malaysia. We decompose the nonnetwork spaces of eight fourth-order basins in a two-dimensional discrete space into simple nonoverlapping disks (NODs) of various sizes by employing morphological transformations. Furthermore, we show relationships between the dimensions estimated via morphometries of the network and their corresponding nonnetwork spaces. This study can be extended to characterize hillslope morphologies, where decomposition of three-dimensional hillslopes needs to be addressed.

  1. Activities on space debris in Europe

    NASA Astrophysics Data System (ADS)

    Flury, W.

    2001-10-01

    Activities on space debris in Europe are carried out by ESA, by national space agencies such as ASI (Italy), BNSC (United Kingdom), CNES (France) and DLR (Germany) and by various research groups. The objectives of ESA's activities in the field of space debris have been defined by the Council of ESA in 1989, and were updated in 2000 with the adoption of the Resolution for a European policy on the protection of the space environment from debris. ESA's debris-related activities comprise research, application of debris mitigation measures and international cooperation. The research activities address the knowledge of the terrestrial particulate environment, risk assessment, hypervelocity impacts and protection, and preventative measures. In all these areas substantial progress has been achieved. Examples are the MASTER 99 model, the DISCOS database, beam-park experiments with the FGAN radar, the discovery of a small-size debris population in GEO with the Space Debris telescope at the Teide observatory, and the GORID dust detector in the geostationary orbit. The ESA Space Debris Mitigation Handbook was issued, and in a joint effort of ESA and the national agencies ASI, BNSC, CNES and DLR the European Space Debris Safety and Mitigation Standard (draft) was established. This standard will be harmonized with standards of other agencies through the deliberations in the Inter-Agency Space Debris Coordination Committee (IADC). In order to strengthen the European cooperation, the pilot network of centers - Working Group on Space Debris was created in 2000. The members are ESA, ASI, BNSC, CNES and DLR. An integrated work plan has been established for the period 2001-2003. Global cooperation among the space-faring nations is achieved through the IADC. ESA and its Member States strongly support the deliberations on space debris within the United Nations Committee on the Peaceful Uses of Outer Space (UNCOPUOS).

  2. The contributions of occupational science to the readiness of long duration deep space exploration.

    PubMed

    Davis, Janis; Burr, Macy; Absi, Maria; Telles, Rochelle; Koh, Howard

    2017-01-01

    This study introduces the contributions of occupational science (OS) to the preparation and support of astronauts during long duration space exploration. Given the hostile environment of space, it is not surprising that there is grave deterioration of both physical and mental health when off Earth. However, OS, through occupational therapy (OT), can identify strategies that maintain health and minimize disruptions in task performance for mission success. To determine the gaps in NASA's preparation of astronauts for long duration space exploration and the viable contributions of OT. Because occupational therapists are trained to address deficits and modify environments to support meaningful engagement in occupations, the OT practitioner is well suited to address the disabling conditions astronauts experience in space. A literature review revealing the challenges of deep space travel on humans was completed. A survey was also sent to (N = 170) occupational therapists worldwide to identify opinions about the profession's involvement in deep space exploration. Ninety-seven percent (N = 163) of the participants believed that OS can inform long duration space travel. Approximately ninety-eight percent (N = 166) of respondents believed that OT interventions can be used on space travelers during long duration space flights. OT interventions can be implemented in any phase of space flight to increase the likelihood of mission success and astronaut safety and well-being.

  3. NASA Space Shuttle Program: Shuttle Environmental Assurance (SEA) Initiative

    NASA Technical Reports Server (NTRS)

    Glover, Steve E.; McCool, Alex (Technical Monitor)

    2002-01-01

    The first Space Shuttle flight was in 1981 and the fleet was originally expected to be replaced with a new generation vehicle in the early 21st century. Space Shuttle Program (SSP) elements proactively address environmental and obsolescence concerns and continue to improve safety and supportability. The SSP manager created the Shuttle Environmental Assurance (SEA) Initiative in 2000. SEA is to provide an integrated approach for the SSP to promote environmental excellence, proactively manage materials obsolescence, and optimize associated resources.

  4. Space Station crew safety alternatives study. Volume 4: Appendices

    NASA Technical Reports Server (NTRS)

    Peercy, R. L., Jr.; Raasch, R. F.; Rockoff, L. A.

    1985-01-01

    The scope of this study considered the first 15 years of accumulated space station concepts for Initial Operational Capability (10C) during the early 1990's. Twenty-five threats to the space station are identified and selected threats addressed as impacting safety criteria, escape and rescue, and human factors safety concerns. Of the 25 threats identified, eight are discussed including strategy options for threat control: fire, biological or toxic contamination, injury/illness, explosion, loss of pressurization, radiation, meteoroid penetration and debris.

  5. KENNEDY SPACE CENTER, FLA. -- KSC management and other employees gather in the Center’s television studio to watch the address by President George W. Bush at NASA Headquarters in Washington, D.C., stating his goals for NASA’s new mission: Completing the International Space Station, retiring the Space Shuttle orbiters, developing a new crew exploration vehicle, and returning to the moon and beyond within the next two decades. Pres. Bush was welcomed by NASA Administrator Sean O’Keefe and Expedition 8 Commander Michael Foale, who greeted him from the International Space Station. Members of the Washington, D.C., audience included astronauts Eileen Collins, Ed Lu and Michael Lopez-Alegria, and former astronaut Gene Cernan.

    NASA Image and Video Library

    2004-01-14

    KENNEDY SPACE CENTER, FLA. -- KSC management and other employees gather in the Center’s television studio to watch the address by President George W. Bush at NASA Headquarters in Washington, D.C., stating his goals for NASA’s new mission: Completing the International Space Station, retiring the Space Shuttle orbiters, developing a new crew exploration vehicle, and returning to the moon and beyond within the next two decades. Pres. Bush was welcomed by NASA Administrator Sean O’Keefe and Expedition 8 Commander Michael Foale, who greeted him from the International Space Station. Members of the Washington, D.C., audience included astronauts Eileen Collins, Ed Lu and Michael Lopez-Alegria, and former astronaut Gene Cernan.

  6. Space propulsion

    NASA Astrophysics Data System (ADS)

    Kazaroff, John M.

    1993-02-01

    Lewis Research Center is developing broad-based new technologies for space chemical engines to satisfy long-term needs of ETO launch vehicles and other vehicles operating in and beyond Earth orbit. Specific objectives are focused on high performance LO2/LH2 engines providing moderate thrusts of 7,5-200 klb. This effort encompasses research related to design analysis and manufacturing processes needed to apply advanced materials to subcomponents, components, and subsystems of space-based systems and related ground-support equipment. High-performance space-based chemical engines face a number of technical challenges. Liquid hydrogen turbopump impellers are often so large that they cannot be machined from a single piece, yet high stress at the vane/shroud interface makes bonding extremely difficult. Tolerances on fillets are critical on large impellers. Advanced materials and fabricating techniques are needed to address these and other issues of interest. Turbopump bearings are needed which can provide reliable, long life operation at high speed and high load with low friction losses. Hydrostatic bearings provide good performance, but transients during pump starts and stops may be an issue because no pressurized fluid is available unless a separate bearing pressurization system is included. Durable materials and/or coatings are needed that can demonstrate low wear in the harsh LO2/LH2 environment. Advanced materials are also needed to improve the lifetime, reliability and performance of other propulsion system elements such as seals and chambers.

  7. Fire safety concerns in space operations

    NASA Technical Reports Server (NTRS)

    Friedman, Robert

    1987-01-01

    This paper reviews the state-of-the-art in fire control techniques and identifies important issues for continuing research, technology, and standards. For the future permanent orbiting facility, the space station, fire prevention and control calls for not only more stringent fire safety due to the long-term and complex missions, but also for simplified and flexible safety rules to accommodate the variety of users. Future research must address a better understanding of the microgravity space environment as it influences fire propagation and extinction and the application of the technology of fire detection, extinguishment, and material assessment. Spacecraft fire safety should also consider the adaptation of methods and concepts derived from aircraft and undersea experience.

  8. Experiments in Planetary and Related Sciences and the Space Station

    NASA Technical Reports Server (NTRS)

    Greeley, Ronald (Editor); Williams, Richard J. (Editor)

    1987-01-01

    Numerous workshops were held to provide a forum for discussing the full range of possible experiments, their science rationale, and the requirements on the Space Station, should such experiments eventually be flown. During the workshops, subgroups met to discuss areas of common interest. Summaries of each group and abstracts of contributed papers as they developed from a workshop on September 15 to 16, 1986, are included. Topics addressed include: planetary impact experimentation; physics of windblown particles; particle formation and interaction; experimental cosmochemistry in the space station; and an overview of the program to place advanced automation and robotics on the space station.

  9. Evolutionary space platform concept study. Volume 2, part A: SASP special emphasis trade studies

    NASA Technical Reports Server (NTRS)

    1982-01-01

    Efforts are in progress to define an approach to provide a simple and cost effective solution to the problem of long duration space flight. This approach involves a Space Platform in low Earth orbit, which can be tended by the Space Shuttle and which will provide, for extended periods of time, stability, utilities and access for a variety of replaceable payloads. The feasibility of an evolutionary space system which would cost effectively support unmanned payloads in groups, using a Space Platform which provides centralized basic subsystems is addressed.

  10. On dual and three space problems for the compact approximation property

    NASA Astrophysics Data System (ADS)

    Choi, Changsun; Kim, Ju Myung

    2006-11-01

    We introduce the properties W*D and BW*D for the dual space of a Banach space. And then solve the dual problem for the compact approximation property (CAP): if X* has the CAP and the W*D, then X has the CAP. Also, we solve the three space problem for the CAP: for example, if M is a closed subspace of a Banach space such that M[perpendicular] is complemented in X* and X* has the W*D, then X has the CAP whenever X/M has the CAP and M has the bounded CAP. Corresponding problems for the bounded compact approximation property are also addressed.

  11. Status of the Space Station environmental control and life support system design concept

    NASA Technical Reports Server (NTRS)

    Ray, C. D.; Humphries, W. R.

    1986-01-01

    The current status of the Space Station (SS) environmental control and life support system (ECLSS) design is outlined. The concept has been defined at the subsystem level. Data supporting these definitions are provided which identify general configuratioons for all modules. Requirements, guidelines and assumptions used in generating these configurations are detailed. The basic 2 US module 'core' Space Station is addressed along with system synergism issues and early man-tended and future growth considerations. Along with these basic studies, also addressed here are options related to variation in the 'core' module makeup and more austere Station concepts such as commonality, automation and design to cost.

  12. We Must Take the Next Steps Towards Safe, Routine Space Travel

    NASA Technical Reports Server (NTRS)

    Lyles, G. M.

    2000-01-01

    This paper presents, in viewgraph form, six in a half generations of airplanes in a century. Some of the topics include: 1) Enterprise goals; 2) Generations of Reusable Launch Vehicles; 3) Space Transportation Across NASA; 4) Three Tiered Implementation Approach for Future Space Transportation Technology; 5) Develop a Comprehensive, Agency Level Space Transportation Plan That Will Enable NASA's Strategic Plan; 6) Timeline for Addressing NASA's Needs; 7) Significant 2nd Generation Technology Drivers; 8) Example Large Scale Ground Demonstrations; and 9) Example Pathfinder Demonstrations. The paper also includes various aircraft designs and propulsion system technology.

  13. Technology Developments in Radiation-Hardened Electronics for Space Environments

    NASA Technical Reports Server (NTRS)

    Keys, Andrew S.; Howell, Joe T.

    2008-01-01

    The Radiation Hardened Electronics for Space Environments (RHESE) project consists of a series of tasks designed to develop and mature a broad spectrum of radiation hardened and low temperature electronics technologies. Three approaches are being taken to address radiation hardening: improved material hardness, design techniques to improve radiation tolerance, and software methods to improve radiation tolerance. Within these approaches various technology products are being addressed including Field Programmable Gate Arrays (FPGA), Field Programmable Analog Arrays (FPAA), MEMS, Serial Processors, Reconfigurable Processors, and Parallel Processors. In addition to radiation hardening, low temperature extremes are addressed with a focus on material and design approaches. System level applications for the RHESE technology products are discussed.

  14. Characterization of frictional interference in closely-spaced reinforcements in MSE walls.

    DOT National Transportation Integrated Search

    2014-09-01

    This research addresses one of several knowledge gaps in the understanding of tall MSE wall behavior: prediction of reinforcement loads impacted by frictional interference of closely-spaced reinforcements associated with tall walls.

  15. RADECS Short Course Session I: The Space Radiation Environment

    NASA Technical Reports Server (NTRS)

    Xapsos, Michael; Bourdarie, Sebastien

    2007-01-01

    The presented slides and accompanying paper focus on radiation in the space environment. Since space exploration has begun it has become evident that the space environment is a highly aggressive medium. Beyond the natural protection provided by the Earth's atmosphere, various types of radiation can be encountered. Their characteristics (energy and nature), origins and distributions in space are extremely variable. This environment degrades electronic systems and on-board equipment in particular and creates radiobiological hazards during manned space flights. Based on several years of space exploration, a detailed analysis of the problems on satellites shows that the part due to the space environment is not negligible. It appears that the malfunctions are due to problems linked to the space environment, electronic problems, design problems, quality problems, other issues, and unexplained reasons. The space environment is largely responsible for about 20% of the anomalies occurring on satellites and a better knowledge of that environment could only increase the average lifetime of space vehicles. This naturally leads to a detailed study of the space environment and of the effects that it induces on space vehicles and astronauts. Sources of radiation in the space environment are discussed here and include the solar activity cycle, galactic cosmic rays, solar particle events, and Earth radiation belts. Future challenges for space radiation environment models are briefly addressed.

  16. Space in Space: Designing for Privacy in the Workplace

    NASA Technical Reports Server (NTRS)

    Akin, Jonie

    2015-01-01

    Privacy is cultural, socially embedded in the spatial, temporal, and material aspects of the lived experience. Definitions of privacy are as varied among scholars as they are among those who fight for their personal rights in the home and the workplace. Privacy in the workplace has become a topic of interest in recent years, as evident in discussions on Big Data as well as the shrinking office spaces in which people work. An article in The New York Times published in February of this year noted that "many companies are looking to cut costs, and one way to do that is by trimming personal space". Increasingly, organizations ranging from tech start-ups to large corporations are downsizing square footage and opting for open-office floorplans hoping to trim the budget and spark creative, productive communication among their employees. The question of how much is too much to trim when it comes to privacy, is one that is being actively addressed by the National Aeronautics and Space Administration (NASA) as they explore habitat designs for future space missions. NASA recognizes privacy as a design-related stressor impacting human health and performance. Given the challenges of sustaining life in an isolated, confined, and extreme environment such as Mars, NASA deems it necessary to determine the acceptable minimal amount for habitable volume for activities requiring at least some level of privacy in order to support optimal crew performance. Ethnographic research was conducted in 2013 to explore perceptions of privacy and privacy needs among astronauts living and working in space as part of a long-distance, long-duration mission. The allocation of space, or habitable volume, becomes an increasingly complex issue in outer space due to the costs associated with maintaining an artificial, confined environment bounded by limitations of mass while located in an extreme environment. Privacy in space, or space in space, provides a unique case study of the complex notions of

  17. 'Talk, talk, cry, laugh': learning, healing and building an Aboriginal workforce to address family violence.

    PubMed

    Lauw, Marlene L; Spangaro, Jo; Herring, Sigrid; McNamara, Lorna D

    2013-02-01

    Sexual abuse and family violence are widespread and under-reported phenomena for which Aboriginal victims face even greater barriers to asking for and receiving assistance than do others in the community. There is a need for strategies to address abuse without disempowering and alienating Aboriginal people. A program developed by the New South Wales Health Education Centre Against Violence is addressing this issue at the same time as contributing towards a strengthened Aboriginal health workforce. The training program which is a 1-year qualification course has grown from a 52% rate of graduation in its first 6 years to 92%. Three practices in the classroom have contributed to this success. These are: (i) recognition of the emotional impact of the training and its links to participants own histories; (ii) providing space to address participants negative prior educational experiences; and (iii) further developing content on the recent sociopolitical history of Aboriginal people. These practices have strengthened this successful course, which is building a skilled workforce to provide accessible, culturally sensitive services for Aboriginal people experiencing abuse.

  18. Space Station tethered elevator system

    NASA Technical Reports Server (NTRS)

    Haddock, Michael H.; Anderson, Loren A.; Hosterman, K.; Decresie, E.; Miranda, P.; Hamilton, R.

    1989-01-01

    The optimized conceptual engineering design of a space station tethered elevator is presented. The tethered elevator is an unmanned, mobile structure which operates on a ten-kilometer tether spanning the distance between Space Station Freedom and a platform. Its capabilities include providing access to residual gravity levels, remote servicing, and transportation to any point along a tether. The report discusses the potential uses, parameters, and evolution of the spacecraft design. Emphasis is placed on the elevator's structural configuration and three major subsystem designs. First, the design of elevator robotics used to aid in elevator operations and tethered experimentation is presented. Second, the design of drive mechanisms used to propel the vehicle is discussed. Third, the design of an onboard self-sufficient power generation and transmission system is addressed.

  19. The Reach Address Database (RAD)

    EPA Pesticide Factsheets

    The Reach Address Database (RAD) stores reach address information for each Water Program feature that has been linked to the underlying surface water features (streams, lakes, etc) in the National Hydrology Database (NHD) Plus dataset.

  20. Explicit knowledge about the availability of visual feedback affects grasping with the left but not the right hand.

    PubMed

    Tang, Rixin; Whitwell, Robert L; Goodale, Melvyn A

    2014-01-01

    Previous research (Whitwell et al. in Exp Brain Res 188:603-611, 2008; Whitwell and Goodale in Exp Brain Res 194:619-629, 2009) has shown that trial history, but not anticipatory knowledge about the presence or absence of visual feedback on an upcoming trial, plays a vital role in determining how that feedback is exploited when grasping with the right hand. Nothing is known about how the non-dominant left hand behaves under the same feedback regimens. In present study, therefore, we compared peak grip aperture (PGA) for left- and right-hand grasps executed with and without visual feedback (i.e., closed- vs. open-loop conditions) in right-handed individuals under three different trial schedules: the feedback conditions were blocked separately, they were randomly interleaved, or they were alternated. When feedback conditions were blocked, the PGA was much larger for open-loop trials as compared to closed-loop trials, although this difference was more pronounced for right-hand grasps than left-hand grasps. Like Whitwell et al., we found that mixing open- and closed-loop trials together, compared to blocking them separately, homogenized the PGA for open- and closed-loop grasping in the right hand (i.e., the PGAs became smaller on open-loop trials and larger on closed-loop trials). In addition, the PGAs for right-hand grasps were entirely determined by trial history and not by knowledge of whether or not visual feedback would be available on an upcoming trial. In contrast to grasps made with the right hand, grasps made by the left hand were affected both by trial history and by anticipatory knowledge of the upcoming visual feedback condition. But these effects were observed only on closed-loop trials, i.e., the PGAs of grasps made with the left hand on closed-loop trials were smaller when participants could anticipate the availability of feedback on an upcoming trial (alternating trials) than when they could not (randomized trials). In contrast, grasps made with the