Search NASASearch

SEARCH · Search NASA

Results for “nested structure”

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 109 records · Page 6

Flame Synthesis Used to Create Metal-Catalyzed Carbon Nanotubes

Metal-catalyzed carbon nanotubes are highly ordered carbon structures of nanoscale dimensions. They may be thought of as hollow cylinders whose walls are formed by single atomic layers of graphite. Such cylinders may be composed of many nested, concentric atomic layers of carbon or only a single layer, the latter forming a single-walled carbon nanotube. This article reports unique results using a flame for their synthesis. Only recently were carbon nanotubes discovered within an arc discharge and recognized as fullerene derivatives. Today metal-catalyzed carbon nanotubes are of great interest for many reasons. They can be used as supports for the metal catalysts like those found in catalytic converters. Open-ended nanotubes are highly desirable because they can be filled by other elements, metals or gases, for battery and fuel cell applications. Because of their highly crystalline structure, they are significantly stronger than the commercial carbon fibers that are currently available (10 times as strong as steel but possessing one-sixth of the weight). This property makes them highly desirable for strengthening polymer and ceramic composite materials. Current methods of synthesizing carbon nanotubes include thermal pyrolysis of organometallics, laser ablation of metal targets within hydrocarbon atmospheres at high temperatures, and arc discharges. Each of these methods is costly, and it is unclear if they can be scaled for the commercial synthesis of carbon nanotubes. In contrast, flame synthesis is an economical means of bulk synthesis of a variety of aerosol materials such as carbon black. Flame synthesis of carbon nanotubes could potentially realize an economy of scale that would enable their use in common structural materials such as car-body panels. The top figure is a transmission electron micrograph of a multiwalled carbon nanotube. The image shows a cross section of the atomic structure of the nanotube. The dark lines are individual atomic layer planes of carbon, seen here in cross section. They form a nested series of concentric cylinders, much like the growth rings on a tree. This sample was obtained by the supported catalyst method, whereby the nanoscale catalysts are dispersed on a substrate providing their support. The substrate with catalyst particles was immersed within an acetylene diffusion flame to which nitrogen had been added to eliminate soot formation. Upon removal from the flame, the nanotubes were dispersed on a holder suitable for electron microscopy. Although not seen in the figure, the tube diameter reflects that of the catalyst particle.

VanderWal, Randy L.

Fermi Surface Nesting Driving the RKKY Interaction in the Centrosymmetric Skyrmion Magnet Gd 2 PdSi 3

The magnetic skyrmions generated in a centrosymmetric crystal were recently first discovered in Gd 2 PdSi 3 . In light of this, we observe the electronic structure by angle-resolved photoemission spectroscopy (ARPES) and unveil its direct relationship with the magnetism in this compound. The Fermi surface and band dispersions are demonstrated to have a good agreement with the density functional theory (DFT) calculations carried out with careful consideration of the crystal superstructure. Most importantly, we find that the three-dimensional Fermi surface has extended nesting which matches well the q vector of the magnetic order detected by recent scattering measurements. Finally, the consistency we find among ARPES, DFT, and the scattering measurements suggests the Ruderman-Kittel-Kasuya-Yosida (RKKY) interaction involving itinerant electrons to be the formation mechanism of skyrmions in Gd 2 PdSi 3 .

71 CLASSICAL AND QUANTUM MECHANICS, GENERAL PHYSIC

Design and fabrication of a radiative actively cooled honeycomb sandwich structural panel for a hypersonic aircraft

The panel assembly consisted of an external thermal protection system (metallic heat shields and insulation blankets) and an aluminum honeycomb structure. The structure was cooled to temperature 442K (300 F) by circulating a 60/40 mass solution of ethylene glycol and water through dee shaped coolant tubes nested in the honeycomb and adhesively bonded to the outer skin. Rene'41 heat shields were designed to sustain 5000 cycles of a uniform pressure of + or - 6.89kPa (+ or - 1.0 psi) and aerodynamic heating conditions equivalent to 136 kW sq m (12 Btu sq ft sec) to a 422K (300 F) surface temperature. High temperature flexible insulation blankets were encased in stainless steel foil to protect them from moisture and other potential contaminates. The aluminum actively cooled honeycomb sandwich structural panel was designed to sustain 5000 cycles of cyclic in-plane loading of + or - 210 kN/m (+ or - 1200 lbf/in.) combined with a uniform panel pressure of + or - 6.89 kPa (?1.0 psi).

Ellis, D. A.

A Tool for Automatic Data Distribution for CFD Applications on Structured Grids

Development of HPF versions of NPB and ARC3D has shown that HPF provides an efficient, concise way to express parallelism and to organize data traffic. The use of HPF, as noted in the papers, requires an intimate knowledge of the applications and a detailed analysis of data affinity, data movement, and data granularity. To simplify and accelerate the task of developing HPF versions of existing CFD applications we have designed and implemented ADAPT (Automatic Data Alignment and Placement Tool). ADAPT analyzes a CFD application working on a single structured grid and generates HPF TEMPLATE, (RE)DISTRIBUTION, ALIGNMENT, and INDEPENDENT directives. The directives can be generated on the nest level, subroutine level, application level, or on the application interface level. ADAPT annotates an existing CFD FORTRAN application, performing computations on single or multiple grids. On each grid the application is considered as a sequence of operators, each applied to a set of variables defined in a particular grid domain. ADAPT automatically detects implicit operators (i.e., having data dependences) and explicit operators (without data dependences). For parallelization of an explicit operator ADAPT creates a template for the operator domain, aligns arrays used in the operator with the template, distributes the template, and declares the loops over the distributed dimensions as INDEPENDENT. For parallelization of an implicit operator, the distribution of the operator's domain should be consistent with the operator's dependences. Any dependence between sections distributed on different processors would preclude parallelization if the compiler does not have an ability to pipeline computations. If a data distribution is "orthogonal" to the dependences of an implicit operator, then the loop which implements the operator can be declared as INDEPENDENT. ADAPT starts with an analysis of array index expressions of the loop nests. For each pair of arrays referenced in an assignment statement, it generates an arc in the alignment graph and annotates it with an affinity relation. The template, alignment, and distribution directives for a particular loop nest are then derived from a transitive closure of the affinity relation. A compromise of data distributions in different nests and subroutines is achieved by merging annotated alignment graphs for adjacent nests/stibroutine calls in the nest/call graph of the application in the process called distribution lifting. ADAPT has been implemented as a C++ program running in conjunction with a parallelization tool called CAPTools. ADAPT uses the parse tree, interprocedural analysis and application database generated by CAPTools. It also uses the Directed Graph class, initially implemented in p2d2 (parallel debugger oi distributed programs), and some other classes supporting symbolic computations. ADAPT uses data distribution techniques described. ADAPT was tested with ARC3D and the FT benchmark and has demonstrated a code performance within a factor of 1.5 of handwritten versions.

Frumkin, Michael

Automatic Data Distribution for CFD Applications on Structured Grids

Development of HPF versions of NPB and ARC3D showed that HPF has potential to be a high level language for parallelization of CFD applications. The use of HPF requires an intimate knowledge of the applications and a detailed analysis of data affinity, data movement and data granularity. Since HPF hides data movement from the user even with this knowledge it is easy to overlook pieces of the code causing low performance of the application. In order to simplify and accelerate the task of developing HPF versions of existing CFD applications we have designed and partially implemented ADAPT (Automatic Data Distribution and Placement Tool). The ADAPT analyzes a CFD application working on a single structured grid and generates HPF TEMPLATE, (RE)DISTRIBUTION, ALIGNMENT and INDEPENDENT directives. The directives can be generated on the nest level, subroutine level, application level or inter application level. ADAPT is designed to annotate existing CFD FORTRAN application performing computations on single or multiple grids. On each grid the application can considered as a sequence of operators each applied to a set of variables defined in a particular grid domain. The operators can be classified as implicit, having data dependences, and explicit, without data dependences. In order to parallelize an explicit operator it is sufficient to create a template for the domain of the operator, align arrays used in the operator with the template, distribute the template, and declare the loops over the distributed dimensions as INDEPENDENT. In order to parallelize an implicit operator, the distribution of the operator's domain should be consistent with the operator's dependences. Any dependence between sections distributed on different processors would preclude parallelization if compiler does not have an ability to pipeline computations. If a data distribution is "orthogonal" to the dependences of an implicit operator then the loop which implements the operator can be declared as INDEPENDENT.

Frumkin, Michael

Charge correlations and magnetoelastic coupling in intercalated transition metal dichalcogenides

The large van der Waals gap in transition metal dichalcogenides (TMDs) offers an avenue to tune the ground state of 2D materials through the intercalation of magnetic atoms. Here, we investigate the charge correlations in Fe 1/3 ⁢TaS 2 , Co 1/3 ⁢TaS 2 , and Fe 0.35 ⁢NbS 2 by combining angle-resolved photoemission spectroscopy (ARPES), x-ray scattering, magnetometry, and density functional theory (DFT). We find that, while short-range charge fluctuations develop in Ta-based compounds, Fe 0.35 ⁢NbS 2 exhibits long-range charge order which is strongly coupled with magnetic order and tunable by external magnetic field. Our electronic structure analysis reveals that intercalation reconstructs the Fermi surface via charge transfer and band renormalization, yet does not generate the nesting conditions compatible with the observed ordering vectors. Complementary phonon calculations further exclude a conventional electron-phonon origin of charge order. Together, these results establish magnetoelastic coupling as the dominant mechanism behind charge ordering in Fe 0.35 ⁢NbS 2 and highlight the contrasting role of Nb and Ta hosts in stabilizing correlated ground states in intercalated TMDs.

36 MATERIALS SCIENCE

Multiple buoyancy driven flows in a vertical cylinder heated from below

The structure of axisymmetric buoyancy-driven convection in a vertical cylinder heated from below is probed by finite element solution of the Boussinesq equations coupled with computed-implemented perturbation techniques for detecting and tracking multiple flows and for determining flow stability. Results are reported for fluids with Prandtl number of one and for cylinders with aspect ratio (Lambda) (defined as the height to radius of the cylinder) between 0.5 and 2.25. Extensive calculations of the neutral stability curve for the static solution and of the nonlinear motions along the bifurcating flow families show a continuous evolution of the primary cellular motion from a single toroidal cell to two and three cells nested radially in the cylinder, instead of the sharp transitions found for a cylinder with shear-free sidewalls. The smooth transitions in flow structure with Rayleigh number and lambda are explained by nonlinear connectivity between the first two bifurcating flow families formed either by a secondary bifurcation point for Lambda or = Lambda * approximately 0.80 or by a limit point for Lambda Lambda *. The transition between these two modes may be described by the theory of multiple limit point bifurcation.

Yamaguchi, Y.

A Biologically Inspired Cooperative Multi-Robot Control Architecture

A prototype cooperative multi-robot control architecture suitable for the eventual construction of large space structures has been developed. In nature, there are numerous examples of complex architectures constructed by relatively simple insects, such as termites and wasps, which cooperatively assemble their nests. The prototype control architecture emulates this biological model. Actions of each of the autonomous robotic construction agents are only indirectly coordinated, thus mimicking the distributed construction processes of various social insects. The robotic construction agents perform their primary duties stigmergically i.e., without direct inter-agent communication and without a preprogrammed global blueprint of the final design. Communication and coordination between individual agents occurs indirectly through the sensed modifications that each agent makes to the structure. The global stigmergic building algorithm prototyped during the initial research assumes that the robotic builders only perceive the current state of the structure under construction. Simulation studies have established that an idealized form of the proposed architecture was indeed capable of producing representative large space structures with autonomous robots. This paper will explore the construction simulations in order to illustrate the multi-robot control architecture.

Howsman, Tom

"Easy-on, Easy-off" Blanket Fastener

Fasteners hold flexible blanket on set of posts on supporting structure. Disk of silicone rubber cast on disk of Mylar, fastened to blanket and press-fit over post to nest securely in groove. No tools needed for installation or removal.

Kolecki, Ronald E.

A Stigmergic Cooperative Multi-Robot Control Architecture

In nature, there are numerous examples of complex architectures constructed by relatively simple insects, such as termites and wasps, which cooperatively assemble their nests. A prototype cooperative multi-robot control architecture which may be suitable for the eventual construction of large space structures has been developed which emulates this biological model. Actions of each of the autonomous robotic construction agents are only indirectly coordinated, thus mimicking the distributed construction processes of various social insects. The robotic construction agents perform their primary duties stigmergically, i.e., without direct inter-agent communication and without a preprogrammed global blueprint of the final design. Communication and coordination between individual agents occurs indirectly through the sensed modifications that each agent makes to the structure. The global stigmergic building algorithm prototyped during the initial research assumes that the robotic builders only perceive the current state of the structure under construction. Simulation studies have established that an idealized form of the proposed architecture was indeed capable of producing representative large space structures with autonomous robots. This paper will explore the construction simulations in order to illustrate the multi-robot control architecture.

Howsman, Thomas G.

An approach to structure/control simultaneous optimization for large flexible spacecraft

This paper presents an approach to the simultaneous optimal design of a structure and control system for large flexible spacecrafts based on realistic objective function and constraints. The weight or total cost of structure and control system is minimized subject to constraints on the magnitude of response to a given disturbance involving both rigid-body and elastic modes. A nested optimization technique is developed to solve the combined problem. As an example, simple beam-like spacecraft under a steady-state white-noise disturbance force is investigated and some results of optimization are presented. In the numerical examples, the stiffness distribution, location of controller, and control gains are optimized. Direct feedback control and linear quadratic optimal controls laws are used with both inertial and noninertial disturbing force. It is shown that the total cost is sensitive to the overall structural stiffness, so that simultaneous optimization of the structure and control system is indeed useful.

Onoda, Junjiro

Simultaneous structure/control optimization of large flexible spacecraft

This paper presents an approach to the simultaneous optimal design of a structure and control system for large flexible spacecrafts based on realistic objective function and constraints. The weight or total cost of structure and control system is minimized subject to constraints on the magnitude of response to a given disturbance involving both rigid-body and elastic modes. A nested optimization technique is developed to solve the combined problem. As an example, simple beam-like spacecraft under a steady-state white-noise disturbance force is investigated and some results of optimization are presented. In the numerical examples, the stiffness distribution, the location of controller and the control gains are optimized. Direct feedback control and linear quadratic optimal control laws are used with both inertial and non-inertial disturbing force. It is shown that the total cost is sensitive to the overall structural stiffness so that a simultaneous optimization of the structure and control system is indeed useful.

Onoda, Junjiro

Modular flow in JT gravity and entanglement wedge reconstruction

It has been shown in recent works that JT gravity with matter with two boundaries has a type II ∞ algebra on each side. As the bulk spacetime between the two boundaries fluctuates in quantum nature, we can only define the entanglement wedge for each side in a pure algebraic sense. As we take the semiclassical limit, we will have a fixed long wormhole spacetime for a generic partially entangled thermal state (PETS), which is prepared by inserting heavy operators on the Euclidean path integral. Under this limit, with appropriate assumptions of the matter theory, geometric notions of the causal wedge and entanglement wedge emerge in this background. In particular, the causal wedge is manifestly nested in the entanglement wedge. Different PETS are orthogonal to each other, and thus the Hilbert space has a direct sum structure over sub-Hilbert spaces labeled by different Euclidean geometries. The full algebra for both sides is decomposed accordingly. From the algebra viewpoint, the causal wedge is dual to an emergent type III 1 subalgebra, which is generated by boundary light operators. To reconstruct the entanglement wedge, we consider the modular flow in a generic PETS for each boundary. We show that the modular flow acts locally and is the boost transformation around the global RT surface in the semiclassical limit. It follows that we can extend the causal wedge algebra to a larger type III 1 algebra corresponding to the entanglement wedge. Within each sub-Hilbert space, the original type II ∞ reduces to type III 1 .

2D Gravity

ISEE studies of the quasi-parallel bow shock

ISEE-1 and-2 plasma and magnetic field observations are used to examine several encounters with brief magnetic pulsations in the quasi-parallel region of the earth's bow shock. The two-spacecraft timing of the magnetic field signature is examined to see if the pulsation encounters are nested (as for back and forth motion of the shock over the spacecraft) or simply time-shifted (as for a structure convected anti-sunward across the spacecraft). Examples of both types of signatures are found, some within minutes of each other, suggesting that at least some pulsations probably originate from the growth and steepening of upstream waves but may eventually be able to stand in the upstream flow, perhaps becoming part of the shock surface itself. The possibility that some of the pulsations may simply be brief encounters with the moving shock is also not ruled out.

Thomsen, M. F.

Perl Modules for Constructing Iterators

The Iterator Perl Module provides a general-purpose framework for constructing iterator objects within Perl, and a standard API for interacting with those objects. Iterators are an object-oriented design pattern where a description of a series of values is used in a constructor. Subsequent queries can request values in that series. These Perl modules build on the standard Iterator framework and provide iterators for some other types of values. Iterator::DateTime constructs iterators from DateTime objects or Date::Parse descriptions and ICal/RFC 2445 style re-currence descriptions. It supports a variety of input parameters, including a start to the sequence, an end to the sequence, an Ical/RFC 2445 recurrence describing the frequency of the values in the series, and a format description that can refine the presentation manner of the DateTime. Iterator::String constructs iterators from string representations. This module is useful in contexts where the API consists of supplying a string and getting back an iterator where the specific iteration desired is opaque to the caller. It is of particular value to the Iterator::Hash module which provides nested iterations. Iterator::Hash constructs iterators from Perl hashes that can include multiple iterators. The constructed iterators will return all the permutations of the iterations of the hash by nested iteration of embedded iterators. A hash simply includes a set of keys mapped to values. It is a very common data structure used throughout Perl programming. The Iterator:: Hash module allows a hash to include strings defining iterators (parsed and dispatched with Iterator::String) that are used to construct an overall series of hash values.

Tilmes, Curt

Dynamic Transmission Line Switching Amid Wildfire-Prone Weather Under Decision-Dependent Uncertainty

During dry and windy seasons, environmental conditions significantly increase the risk of wildfires, exposing power grids to disruptions caused by transmission line failures. Wildfire propagation exacerbates grid vulnerability, potentially leading to prolonged power outages. To address this challenge, we propose a multistage optimization model that dynamically adjusts transmission grid topology in response to wildfire propagation, aiming to develop an optimal response policy. By accounting for decision-dependent uncertainty, where line survival probabilities depend on usage, we employ distributionally robust optimization to model uncertainty in line survival distributions. We adapt the stochastic nested decomposition algorithm and derive a deterministic upper bound for its finite convergence. To enhance computational efficiency, we exploit the Lagrangian dual problem structure for a faster generation of Lagrangian cuts. Using realistic data from the California transmission grid, we demonstrate the superior performance of dynamic response policies against two-stage alternatives through a comprehensive case study. In addition, after solving the multistage formulation, we construct easy-to-implement policies that significantly reduce computational burden while maintaining good performance in real-time deployment. History: Accepted by Russell Bent, Area Editor for Network Optimization: Algorithms and Applications. Funding: This work was supported by the U.S. Department of Energy, Office of Electricity [Grant DE-AC02-05CH11231]. The work of R. Jiang was supported in part by the U.S. National Science Foundation, Division of Electrical, Communications and Cyber Systems [Grant ECCS-1845980] and the U.S. Air Force Office of Scientific Research [Grant FA9550-23-1-0323]. Supplemental Material: The software that supports the findings of this study is available within the paper and its Supplemental Information ( https://pubsonline.informs.org/doi/suppl/10.1287/ijoc.2025.1210 ) as well as from the IJOC GitHub software repository ( https://github.com/INFORMSJoC/2025.1210 ). The complete IJOC Software and Data Repository is available at https://informsjoc.github.io/ .

Estrada-Garcia, Juan-Alberto

Latching mechanism for deployable/re-stowable columns useful in satellite construction

A column longeron latch assembly provides the securing mechanism for the deployable, telescoping column of a hoop/column antenna. The column is an open lattice structure with three longerons disposed 120 deg apart as the principle load bearing member. The column is deployed from a pair of eleven nested bays disposed on opposite sides of a center section under the influence of a motor-cable-pulley system. The longeron latch is a four bar linkage mechanism using the over-center principle for automatically locking the longeron sections into position during deployment. The latch is unlocked when the antenna is to be restowed. A spring pack disposed in the end of each longeron serves to absorb stress forces on the deployed column through the cam head piston and abutting latch from an adjacent longeron.

Ahl, E. L., Jr.

Experimental confirmation of the magnetic ordering transition induced by an electronic structure change in the metallic triangular antiferromagnet Co 1/3⁢ TaS 2

We report angle-resolved photoemission spectroscopy (ARPES) studies combined with DFT+DMFT calculations to confirm that the magnetic ordering vector transition from Q=(1/2,0,0) to Q=(1/3,0,0) in the metallic triangular antiferromagnets Co 1/3±𝜀⁢ TaS 2 (𝜀 ≈ 0.007) is induced by the electronic structure change in the system. The ARPES-measured Fermi surface (FS) maps of Co 0.325 ⁢TaS 2 show two hexagonal and one circular holelike FSs around Γ, which matches well with the triple- Q state by taking into account the contribution of nesting vectors occurring between Co 3⁢𝑑 and Ta 5⁢𝑑 orbitals. In the case of Co 0.340 ⁢TaS 2 , a new electron pocket around K appears, and the FS geometry changes as a result of the correlation effect of Co 4 ⁢S 18 tripods forming in the system. The magnetic susceptibility calculations based on the charge-self-consistent DFT+DMFT band structures and the random phase approximation indicate that the most stable magnetic ordering vector (1/2,0,0) split into (1/6,0,0) and (1/2,0,0), which is consistent with the magnetic phase transition around 𝑥=1/3 in Co 𝑥 ⁢TaS 2 .

Fermi surface