Search NASASearch

SEARCH · Search NASA

Results for “Supportability”

Search indexed NASA NTRS and DOE OSTI research on propulsion, heat transfer, battery materials and energy systems. Follow report and document links to the original sources.

Quote a phrase for an exact phrase match. Source license links do not imply unrestricted reuse.

At least 199 records · Page 11

Advanced Life Support Systems: Opportunities for Technology Transfer

NASA's future missions to explore the solar system will be of long-duration possibly lasting years at a time. Human life support systems will have to operate with very high reliability for these long periods with essentially no resupply from Earth. Such life support systems will make extensive use of higher plants, microorganisms, and physicochemical processes for recycling air and water, processing wastes, and producing food. Development of regenerative life support systems will be a pivotal capability for NASA's future human missions. A fully functional closed loop human life support system currently does not exist and thus represents a major technical challenge for space exploration. Technologies where all life support consumables are recycled have many potential terrestrial applications as well. Potential applications include providing human habitation in hostile environments such as the polar regions or the desert in such a way as to minimize energy expenditures and to minimize negative impacts on those often ecologically-sensitive areas. Other potential applications include production of food and ornamental crops without damaging the environment from fertilizers that contaminate water supplies; removal of trace gas contaminants from tightly sealed, energy-efficient buildings (the so-called sick building syndrome); and even the potential of gaining insight into the dynamics of the Earth's biosphere such that we can better manage our global environment. Two specific advanced life support technologies being developed by NASA, with potential terrestrial application, are the zeoponic plant growth system and the Hybrid Regenerative Water Recovery System (HRWRS). The potential applications for these candidate dual use technologies are quite different as are the mechanisms for transfer. In the case of zeoponics, a variety of commercial applications has been suggested which represent potentially lucrative markets. Also, the patented nature of this product offers opportunities for licensing to commercial entities. In the case of the HRWRS, commercial markets with broad applications have not been identified but some terrestrial applications are being explored where this approach has advantages over other methods of waste water processing. Although these potential applications do not appear to have the same broad attraction from the standpoint of rapid commercialization, they represent niches where commercialization possibilities as well as social benefits could be realized.

Fields, B.

Experiences in Interagency and International Interfaces for Mission Support

The Flight Dynamics Division (FDD) of the National Aeronautics and Space Administration (NASA) Goddard Space Flight Center (GFSC) provides extensive support and products for Space Shuttle missions, expendable launch vehicle launches, and routine on-orbit operations for a variety of spacecraft. A major challenge in providing support for these missions is defining and generating the products required for mission support and developing the method by which these products are exchanged between supporting agencies. As interagency and international cooperation has increased in the space community, the FDD customer base has grown and with it the number and variety of external interfaces and product definitions. Currently, the FDD has working interfaces with the NASA Space and Ground Networks, the Johnson Space Center, the White Sands Complex, the Jet propulsion Laboratory (including the Deep Space Network), the United States Air Force, the Centre National d'Etudes Spatiales, the German Spaceflight Operations Center, the European Space Agency, and the National Space Development Agency of Japan. With the increasing spectrum of possible data product definitions and delivery methods, the FDD is using its extensive interagency experience to improve its support of established customers and to provide leadership in adapting/developing new interfaces. This paper describes the evolution of the interfaces between the FDD and its customers, discusses many of the joint activities ith these customers, and summarizes key lessons learned that can be applied to current and future support.

Dell, G. T.

An Acceleration Measurement Capability on International Space Station Supporting Microgravity Science Payloads

The conditions present in low-earth-orbit have enabled various scientific investigations to be conducted. A fundamental reason that space is a useful environment for science is the presence of a decreased effect of gravity while in orbital free-fall. Science investigations are conducted to study phenomena occurring as a result of reductions in buoyancy forces and phenomena enabled as a result of the apparent lack of gravity. The science community requires knowledge of the environment in which their experiments are being conducted. A general purpose measurement system was developed in the 1980's to supply scientific investigators with data of the residual acceleration environment. The Space Acceleration Measurement System, or SAMS, has flown aboard the NASA shuttle fleet over fourteen times, successfully acquiring acceleration measurement data in support of microgravity science experiments. As NASA continues its development of the International Space Station and its associated research payloads, it once again becomes necessary to address the requirement to measure the residual acceleration in support of the planned scientific investigations. As a follow-on to the SAMS project, SAMS-2 was initiated to investigate the requirements and develop the measurement system to support the microgravity science payloads aboard the International Space Station. The characteristics of the payload complement to be supported by SAMS-2 and the different capabilities provided by the station requires a fresh look at the design implementation of a general purpose measurement system. Not only is there a requirement for measurements in support of numerous, potentially simultaneous experiments, but this support is required to be provided for at least ten years of on-orbit operation as compared to a ten to fourteen day mission on shuttle. These differences in fundamental requirements result in the design configuration of the space station-based SAMS-2 being significantly different than that of the shuttle-based SAMS. This paper describes these differences in requirements and the planned features to be provided to the science user community. Some of the unique challenges faced in developing a general purpose measurement system are also discussed.

Sutliff, Thomas J.

NASA Approach to HPCCP Support Software and Tools

The NASA HPCC Program, together with other agencies participating in the Federal HPCC Program, intends to advance technologies to enable the execution of grand challenge applications at sustained rates up to TeraFLOPS. During 1995-6 NASA undertook two major systems software efforts to improve the state of high performance support software and tools. The first of these activities was a replanning of support software and tools activities internal to the Agency. In replanning the software activities emphasis was placed on Meeting the needs of Grand Challenge Uses Few projects Near term useful results. The revised NASA plan calls for support software and tools activities in four areas: Application Creation Process Support Application Usage/Operations Support Advanced Support Software and Tools Concepts Metrics Based Monitoring and Management The second major activity undertaken was participation in a multiagency Task Force resulting from the Second Pasadena Workshop on System Software and Tools. The task force developed the Guidelines for Writing System Software and Tools Requirements for Parallel and Clustered Computers.

Blaylock, Bruce

Cooperative Data Sharing: Simple Support for Clusters of SMP Nodes

Libraries like PVM and MPI send typed messages to allow for heterogeneous cluster computing. Lower-level libraries, such as GAM, provide more efficient access to communication by removing the need to copy messages between the interface and user space in some cases. still lower-level interfaces, such as UNET, get right down to the hardware level to provide maximum performance. However, these are all still interfaces for passing messages from one process to another, and have limited utility in a shared-memory environment, due primarily to the fact that message passing is just another term for copying. This drawback is made more pertinent by today's hybrid architectures (e.g. clusters of SMPs), where it is difficult to know beforehand whether two communicating processes will share memory. As a result, even portable language tools (like HPF compilers) must either map all interprocess communication, into message passing with the accompanying performance degradation in shared memory environments, or they must check each communication at run-time and implement the shared-memory case separately for efficiency. Cooperative Data Sharing (CDS) is a single user-level API which abstracts all communication between processes into the sharing and access coordination of memory regions, in a model which might be described as "distributed shared messages" or "large-grain distributed shared memory". As a result, the user programs to a simple latency-tolerant abstract communication specification which can be mapped efficiently to either a shared-memory or message-passing based run-time system, depending upon the available architecture. Unlike some distributed shared memory interfaces, the user still has complete control over the assignment of data to processors, the forwarding of data to its next likely destination, and the queuing of data until it is needed, so even the relatively high latency present in clusters can be accomodated. CDS does not require special use of an MMU, which can add overhead to some DSM systems, and does not require an SPMD programming model. unlike some message-passing interfaces, CDS allows the user to implement efficient demand-driven applications where processes must "fight" over data, and does not perform copying if processes share memory and do not attempt concurrent writes. CDS also supports heterogeneous computing, dynamic process creation, handlers, and a very simple thread-arbitration mechanism. Additional support for array subsections is currently being considered. The CDS1 API, which forms the kernel of CDS, is built primarily upon only 2 communication primitives, one process initiation primitive, and some data translation (and marshalling) routines, memory allocation routines, and priority control routines. The entire current collection of 28 routines provides enough functionality to implement most (or all) of MPI 1 and 2, which has a much larger interface consisting of hundreds of routines. still, the API is small enough to consider integrating into standard os interfaces for handling inter-process communication in a network-independent way. This approach would also help to solve many of the problems plaguing other higher-level standards such as MPI and PVM which must, in some cases, "play OS" to adequately address progress and process control issues. The CDS2 API, a higher level of interface roughly equivalent in functionality to MPI and to be built entirely upon CDS1, is still being designed. It is intended to add support for the equivalent of communicators, reduction and other collective operations, process topologies, additional support for process creation, and some automatic memory management. CDS2 will not exactly match MPI, because the copy-free semantics of communication from CDS1 will be supported. CDS2 application programs will be free to carefully also use CDS1. CDS1 has been implemented on networks of workstations running unmodified Unix-based operating systems, using UDP/IP and vendor-supplied high- performance locks. Although its inter-node performance is currently unimpressive due to rudimentary implementation technique, it even now outperforms highly-optimized MPI implementation on intra-node communication due to its support for non-copy communication. The similarity of the CDS1 architecture to that of other projects such as UNET and TRAP suggests that the inter-node performance can be increased significantly to surpass MPI or PVM, and it may be possible to migrate some of its functionality to communication controllers.

DiNucci, David C.

Integration of Biological, Physical/Chemical and Energy Efficient Systems in the CELSS Antarctic Analog: Performance of Prototype Systems and Issues for Life Support

The Controlled Ecological Life Support System (CELSS) Antarctic Analog Project (CAAP) is a joint endeavor between the National Science Foundation, Office of Polar Programs (NSF-OPP), and the National Aeronautics and Space Administration (NASA). The fundamental objective is to develop, deploy, and operate a testbed of advanced life support technologies at the Amundsen-Scott South Pole Station that enable the objectives of both the NSF and NASA. The functions of food production, water purification, and waste treatment, recycle, and reduction provided by CAAP will improve the quality of life for the South Pole inhabitants, reduce logistics dependence, enhance safety, and minimize environmental impacts associated with human presence on the polar plateau. Because of the analogous technical, scientific, and mission features with Planetary missions, such as a mission to Mars, CAAP provides NASA with a method for validating technologies and overall approaches to supporting humans. Prototype systems for waste treatment, water recycle, resource recovery and crop production are being evaluated in a testbed at Ames Research Center. The combined performance of these biological and physical/chemical systems as an integrated function in support of the human habitat will be discussed. Overall system performance will be emphasized. The effectiveness and efficiency of component technologies will be discussed in the context of energy and mass flow within the system and contribution to achieving a mass and energy conservative system. Critical to the discussion are interfaces with habitat functions outside of the closed-loop life support: the ability of the system to satisfy the life support requirements of the habitat and the ability to define input requirements. The significance of analog functions in relation to future Mars habitats will be discussed.

Bubenheim, David L.

Equivalent Mass versus Life Cycle Cost for Life Support Technology Selection

The decision to develop a particular life support technology or to select it for flight usually depends on the cost to develop and fly it. Other criteria - performance, safety, reliability, crew time, and risk - are considered, but cost is always an important factor. Because launch cost accounts for most of the cost of planetary missions, and because launch cost is directly proportional to the mass launched, equivalent mass has been used instead of cost to select life support technology. The equivalent mass of a life support system includes the estimated masses of the hardware and of the pressurized volume, power supply, and cooling system that the hardware requires. The equivalent mass is defined as the total payload launch mass needed to provide and support the system. An extension of equivalent mass, Equivalent System Mass (ESM), has been established for use in Advanced Life Support. A crew time mass-equivalent and sometimes other non-mass factors are added to equivalent mass to create ESM. Equivalent mass is an estimate of the launch cost only. For earth orbit rather than planetary missions, the launch cost is usually exceeded by the cost of Design, Development, Test, and Evaluation (DDT&E). Equivalent mass is used only in life support analysis. Life Cycle Cost (LCC) is much more commonly used. LCC includes DDT&E, launch, and operations costs. Since LCC includes launch cost, it is always a more accurate cost estimator than equivalent mass. The relative costs of development, launch, and operations vary depending on the mission design, destination, and duration. Since DDT&E or operations may cost more than launch, LCC may give a more accurate cost ranking than equivalent mass. To be sure of identifying the lowest cost technology for a particular mission, we should use LCC rather than equivalent mass.

Jones, Harry

Equivalent Mass versus Life Cycle Cost for Life Support Technology Selection

The decision to develop a particular life support technology or to select it for flight usually depends on the cost to develop and fly it. Other criteria such as performance, safety, reliability, crew time, and technical and schedule risk are considered, but cost is always an important factor. Because launch cost would account for much of the cost of a future planetary mission, and because launch cost is directly proportional to the mass launched, equivalent mass has been used instead of cost to select advanced life support technology. The equivalent mass of a life support system includes the estimated mass of the hardware and of the spacecraft pressurized volume, power supply, and cooling system that the hardware requires. The equivalent mass of a system is defined as the total payload launch mass needed to provide and support the system. An extension of equivalent mass, Equivalent System Mass (ESM), has been established for use in the Advanced Life Support project. ESM adds a mass-equivalent of crew time and possibly other cost factors to equivalent mass. Traditional equivalent mass is strictly based on flown mass and reflects only the launch cost. ESM includes other important cost factors, but it complicates the simple flown mass definition of equivalent mass by adding a non-physical mass penalty for crew time that may exceed the actual flown mass. Equivalent mass is used only in life support analysis. Life Cycle Cost (LCC) is much more commonly used. LCC includes DDT&E, launch, and operations costs. For Earth orbit rather than planetary missions, the launch cost is less than the cost of Design, Development, Test, and Evaluation (DDTBE). LCC is a more inclusive cost estimator than equivalent mass. The relative costs of development, launch, and operations vary depending on the mission destination and duration. Since DDTBE or operations may cost more than launch, LCC gives a more accurate relative cost ranking than equivalent mass. To select the lowest cost technology for a particular application we should use LCC rather than equivalent mass.

Jones, Harry

Learning to Control Advanced Life Support Systems

Advanced life support systems have many interacting processes and limited resources. Controlling and optimizing advanced life support systems presents unique challenges. In particular, advanced life support systems are nonlinear coupled dynamical systems and it is difficult for humans to take all interactions into account to design an effective control strategy. In this project. we developed several reinforcement learning controllers that actively explore the space of possible control strategies, guided by rewards from a user specified long term objective function. We evaluated these controllers using a discrete event simulation of an advanced life support system. This simulation, called BioSim, designed by Nasa scientists David Kortenkamp and Scott Bell has multiple, interacting life support modules including crew, food production, air revitalization, water recovery, solid waste incineration and power. They are implemented in a consumer/producer relationship in which certain modules produce resources that are consumed by other modules. Stores hold resources between modules. Control of this simulation is via adjusting flows of resources between modules and into/out of stores. We developed adaptive algorithms that control the flow of resources in BioSim. Our learning algorithms discovered several ingenious strategies for maximizing mission length by controlling the air and water recycling systems as well as crop planting schedules. By exploiting non-linearities in the overall system dynamics, the learned controllers easily out- performed controllers written by human experts. In sum, we accomplished three goals. We (1) developed foundations for learning models of coupled dynamical systems by active exploration of the state space, (2) developed and tested algorithms that learn to efficiently control air and water recycling processes as well as crop scheduling in Biosim, and (3) developed an understanding of the role machine learning in designing control systems for advanced life support.

Subramanian, Devika

Research Opportunities Supporting the Vision for Space Exploration from the Transformation of the Former Microgravity Materials Science Program

The Microgravity Materials Science Program established a strong research capability through partnerships between NASA and the scientific research community. With the announcement of the vision for space exploration, additional emphasis in strategic materials science areas was necessary. The President's Commission recognized that achieving its exploration objectives would require significant technical innovation, research, and development in focal areas defined as "enabling technologies." Among the 17 enabling technologies identified for initial focus were: advanced structures, advanced power and propulsion; closed-loop life support and habitability; extravehicular activity systems; autonomous systems and robotics; scientific data collection and analysis, biomedical risk mitigation; and planetary in situ resource utilization. Mission success may depend upon use of local resources to fabricate a replacement part to repair a critical system. Future propulsion systems will require materials with a wide range of mechanical, thermophysical, and thermochemical properties, many of them well beyond capabilities of today's materials systems. Materials challenges have also been identified by experts working to develop advanced life support systems. In responding to the vision for space exploration, the Microgravity Materials Science Program aggressively transformed its research portfolio and focused materials science areas of emphasis to include space radiation shielding; in situ fabrication and repair for life support systems; in situ resource utilization for life support consumables; and advanced materials for exploration, including materials science for space propulsion systems and for life support systems. The purpose of this paper is to inform the scientific community of these new research directions and opportunities to utilize their materials science expertise and capabilities to support the vision for space exploration.

Clinton, R. G., Jr.

Proposed Project Selection Method for Human Support Research and Technology Development (HSR&TD)

The purpose of HSR&TD is to deliver human support technologies to the Exploration Systems Mission Directorate (ESMD) that will be selected for future missions. This requires identifying promising candidate technologies and advancing them in technology readiness until they are acceptable. HSR&TD must select an may of technology development projects, guide them, and either terminate or continue them, so as to maximize the resulting number of usable advanced human support technologies. This paper proposes an effective project scoring methodology to support managing the HSR&TD project portfolio. Researchers strongly disagree as to what are the best technology project selection methods, or even if there are any proven ones. Technology development is risky and outstanding achievements are rare and unpredictable. There is no simple formula for success. Organizations that are satisfied with their project selection approach typically use a mix of financial, strategic, and scoring methods in an open, established, explicit, formal process. This approach helps to build consensus and develop management insight. It encourages better project proposals by clarifying the desired project attributes. We propose a project scoring technique based on a method previously used in a federal laboratory and supported by recent research. Projects are ranked by their perceived relevance, risk, and return - a new 3 R's. Relevance is the degree to which the project objective supports the HSR&TD goal of developing usable advanced human support technologies. Risk is the estimated probability that the project will achieve its specific objective. Return is the reduction in mission life cycle cost obtained if the project is successful. If the project objective technology performs a new function with no current cost, its return is the estimated cash value of performing the new function. The proposed project selection scoring method includes definitions of the criteria, a project evaluation questionnaire, and a scoring formula.

Jones, Harry

Contingency Operations Support to NASA Johnson Space Center Medical Operations Division

The Wyle Laboratories Contingency Operations Group provides support to the NASA Johnson Space Center (JSC) Medical Operations Division in the event of a space flight vehicle accident or JSC mishap. Support includes development of Emergency Medical System (EMS) requirements, procedures, training briefings and real-time support of mishap investigations. The Contingency Operations Group is compliant with NASA documentation that provides guidance in these areas and maintains contact with the United States Department of Defense (DOD) to remain current on military plans to support NASA. The contingency group also participates in Space Operations Medical Support Training Courses (SOMSTC) and represents the NASA JSC Medical Operations Division at contingency exercises conducted worldwide by the DOD or NASA. The events of September 11, 2001 have changed how this country prepares and protects itself from possible terrorist attacks on high-profile targets. As a result, JSC is now considered a high-profile target and thus, must prepare for and develop a response to a Weapons of Mass Destruction (WMD) incident. The Wyle Laboratories Contingency Operations Group supports this plan, specifically the medical response, by providing expertise and manpower.

Stepaniak, Philip

New Direction of NASA Exploration Life Support

NASA's activities in life support Research and Technology Development (R&TD) have changed in both focus and scope following implementation of recommendations from the Exploration System Architecture Study (ESAS). The limited resources available and the compressed schedule to conduct life support R&TD have required that future efforts address the needs of the Crew Exploration Vehicle (CEV), the Lunar Surface Access Module (LSAM) and Lunar Outpost (LO). Advanced Life Support (ALS) efforts related to long duration planetary bases have been deferred or canceled. This paper describes the scope of the new Exploration Life Support (ELS) project; how it differs from ALS, and how it supports critical needs for the CEV, LSAM and LO. In addition, this paper provides rationale for changes in the scope and focus of technical content within ongoing life support R&TD activities.

Chambliss, Joe

The Effect of Sensory Noise Created by Compliant and Sway-Referenced Support Surfaces on Postural Stability

The purpose of the present experiment was to compare in normal human subjects the differential effects on postural stability of introducing somatosensory noise via compliant and/or sway-referenced support surfaces during quiet standing. The use of foam surfaces (two thicknesses: thin (0.95cm) and thick (7.62cm)) and sway-referenced support allowed comparison between two different types of destabilizing factors that increased ankle/foot somatosensory noise. Under some conditions neck extensions were used to increase sensory noise by deviating the vestibular system from its optimal orientation for balance control. The impact of these conditions on postural control was assessed through objective measures of instability. Thick foam and sway-referenced support conditions generated comparable instability in subjects, as measured by equilibrium score and minimum time-to-contact. However, simultaneous application of the conditions resulted in greater instability, suggesting a higher level of generated sensory noise and thus, different receptor types affected during each manipulation. Indeed, sway-referenced support generated greater anterior-posterior center-of-mass (COM) sway, while thick foam generated greater medio-lateral COM sway and velocity. Neck extension had minimal effect on postural stability until combined with simultaneous thick foam and sway-referenced support. Thin foam never generated enough sensory noise to affect postural stability even with noise added by sway-reference support or neck extension. These results provide an interesting window into the central integration of redundant sensory information and indicate the postural impact of sensory inputs is not solely based on their existence, but also their level of noise.

Forth, Katharine E.

Telemetry carrier ring and support

A telemetry carrier ring for use in a gas turbine engine includes an annular support ring connected to the engine and an annular carrier ring coupled to the support ring, each ring exhibiting different growth characteristics in response to thermal and mechanical loading. The carrier ring is coupled to the support ring by a plurality of circumferentially spaced web members which are relatively thin in an engine radial direction to provide a predetermined degree of radial flexibility. the web members have a circumferential width and straight axial line of action selected to transfer torque and thrust between the support ring and the carrier ring without substantial deflection. The use of the web members with radial flexibility provides compensation between the support ring and the carrier ring since the carrier ring grows at a different rate than the supporting ring.

Wakeman, Thomas G.

Proposed Facility Modifications to Support Propulsion Systems Testing Under Simulated Space Conditions at Plum Brook Station's Spacecraft Propulsion Research Facility (B-2)

Preparing NASA's Plum Brook Station's Spacecraft Propulsion Research Facility (B-2) to support NASA's new generation of launch vehicles has raised many challenges for B-2 s support staff. The facility provides a unique capability to test chemical propulsion systems/vehicles while simulating space thermal and vacuum environments. Designed and constructed 4 decades ago to support upper stage cryogenic engine/vehicle system development, the Plum Brook Station B-2 facility will require modifications to support the larger, more powerful, and more advanced engine systems for the next generation of vehicles leaving earth's orbit. Engine design improvements over the years have included large area expansion ratio nozzles, greater combustion chamber pressures, and advanced materials. Consequently, it has become necessary to determine what facility changes are required and how the facility can be adapted to support varying customers and their specific test needs. Instrumental in this task is understanding the present facility capabilities and identifying what reasonable changes can be implemented. A variety of approaches and analytical tools are being employed to gain this understanding. This paper discusses some of the challenges in applying these tools to this project and expected facility configuration to support the varying customer needs.

Edwards, Daryl A.

New Directions for NASA's Advanced Life Support Program

Advanced Life Support (ALS), an element of Human Systems Research and Technology s (HSRT) Life Support and Habitation Program (LSH), has been NASA s primary sponsor of life support research and technology development for the agency. Over its history, ALS sponsored tasks across a diverse set of institutions, including field centers, colleges and universities, industry, and governmental laboratories, resulting in numerous publications and scientific articles, patents and new technologies, as well as education and training for primary, secondary and graduate students, including minority serving institutions. Prior to the Vision for Space Exploration (VSE) announced on January 14th, 2004 by the President, ALS had been focused on research and technology development for long duration exploration missions, emphasizing closed-loop regenerative systems, including both biological and physicochemical. Taking a robust and flexible approach, ALS focused on capabilities to enable visits to multiple potential destinations beyond low Earth orbit. ALS developed requirements, reference missions, and assumptions upon which to structure and focus its development program. The VSE gave NASA a plan for steady human and robotic space exploration based on specific, achievable goals. Recently, the Exploration Systems Architecture Study (ESAS) was chartered by NASA s Administrator to determine the best exploration architecture and strategy to implement the Vision. The study identified key technologies required to enable and significantly enhance the reference exploration missions and to prioritize near-term and far-term technology investments. This technology assessment resulted in a revised Exploration Systems Mission Directorate (ESMD) technology investment plan. A set of new technology development projects were initiated as part of the plan s implementation, replacing tasks previously initiated under HSRT and its sister program, Exploration Systems Research and Technology (ESRT). The Exploration Life Support (ELS) Project, under the Exploration Technology Development Program, has recently been initiated to perform directed life support technology development in support of Constellation and the Crew Exploration Vehicle (CEV). ELS) has replaced ALS, with several major differences. Thermal Control Systems have been separated into a new stand alone project (Thermal Systems for Exploration Missions). Tasks in Advanced Food Technology have been relocated to the Human Research Program. Tasks in a new discipline area, Habitation Engineering, have been added. Research and technology development for capabilities required for longer duration stays on the Moon and Mars, including bioregenerative system, have been deferred.

Barta, Daniel J.

Proposed Facility Modifications to Support Propulsion Systems Testing Under Simulated Space Conditions at Plum Brook Station's Spacecraft Propulsion Research Facility (B-2)

Preparing NASA's Plum Brook Station's Spacecraft Propulsion Research Facility (B-2) to support NASA's new generation of launch vehicles has raised many challenges for B-2's support staff. The facility provides a unique capability to test chemical propulsion systems/vehicles while simulating space thermal and vacuum environments. Designed and constructed in the early 1960s to support upper stage cryogenic engine/vehicle system development, the Plum Brook Station B-2 facility will require modifications to support the larger, more powerful, and more advanced engine systems for the next generation of vehicles leaving earth's orbit. Engine design improvements over the years have included large area expansion ratio nozzles, greater combustion chamber pressures, and advanced materials. Consequently, it has become necessary to determine what facility changes are required and how the facility can be adapted to support varying customers and their specific test needs. Exhaust system performance, including understanding the present facility capabilities, is the primary focus of this work. A variety of approaches and analytical tools are being employed to gain this understanding. This presentation discusses some of the challenges in applying these tools to this project and expected facility configuration to support the varying customer needs.

Edwards, Daryl A.