Sample records for nano-threads programming model

  1. Cribellate thread production in spiders: Complex processing of nano-fibres into a functional capture thread.

    PubMed

    Joel, Anna-Christin; Kappel, Peter; Adamova, Hana; Baumgartner, Werner; Scholz, Ingo

    2015-11-01

    Spider silk production has been studied intensively in the last years. However, capture threads of cribellate spiders employ an until now often unnoticed alternative of thread production. This thread in general is highly interesting, as it not only involves a controlled arrangement of three types of threads with one being nano-scale fibres (cribellate fibres), but also a special comb-like structure on the metatarsus of the fourth leg (calamistrum) for its production. We found the cribellate fibres organized as a mat, enclosing two parallel larger fibres (axial fibres) and forming the typical puffy structure of cribellate threads. Mat and axial fibres are punctiform connected to each other between two puffs, presumably by the action of the median spinnerets. However, this connection alone does not lead to the typical puffy shape of a cribellate thread. Removing the calamistrum, we found a functional capture thread still being produced, but the puffy shape of the thread was lost. Therefore, the calamistrum is not necessary for the extraction or combination of fibres, but for further processing of the nano-scale cribellate fibres. Using data from Uloborus plumipes we were able to develop a model of the cribellate thread production, probably universally valid for cribellate spiders. Copyright © 2015 Elsevier Ltd. All rights reserved.

  2. On the utility of threads for data parallel programming

    NASA Technical Reports Server (NTRS)

    Fahringer, Thomas; Haines, Matthew; Mehrotra, Piyush

    1995-01-01

    Threads provide a useful programming model for asynchronous behavior because of their ability to encapsulate units of work that can then be scheduled for execution at runtime, based on the dynamic state of a system. Recently, the threaded model has been applied to the domain of data parallel scientific codes, and initial reports indicate that the threaded model can produce performance gains over non-threaded approaches, primarily through the use of overlapping useful computation with communication latency. However, overlapping computation with communication is possible without the benefit of threads if the communication system supports asynchronous primitives, and this comparison has not been made in previous papers. This paper provides a critical look at the utility of lightweight threads as applied to data parallel scientific programming.

  3. Efficient Thread Labeling for Monitoring Programs with Nested Parallelism

    NASA Astrophysics Data System (ADS)

    Ha, Ok-Kyoon; Kim, Sun-Sook; Jun, Yong-Kee

    It is difficult and cumbersome to detect data races occurred in an execution of parallel programs. Any on-the-fly race detection techniques using Lamport's happened-before relation needs a thread labeling scheme for generating unique identifiers which maintain logical concurrency information for the parallel threads. NR labeling is an efficient thread labeling scheme for the fork-join program model with nested parallelism, because its efficiency depends only on the nesting depth for every fork and join operation. This paper presents an improved NR labeling, called e-NR labeling, in which every thread generates its label by inheriting the pointer to its ancestor list from the parent threads or by updating the pointer in a constant amount of time and space. This labeling is more efficient than the NR labeling, because its efficiency does not depend on the nesting depth for every fork and join operation. Some experiments were performed with OpenMP programs having nesting depths of three or four and maximum parallelisms varying from 10,000 to 1,000,000. The results show that e-NR is 5 times faster than NR labeling and 4.3 times faster than OS labeling in the average time for creating and maintaining the thread labels. In average space required for labeling, it is 3.5 times smaller than NR labeling and 3 times smaller than OS labeling.

  4. Thread scheduling for GPU-based OPC simulation on multi-thread

    NASA Astrophysics Data System (ADS)

    Lee, Heejun; Kim, Sangwook; Hong, Jisuk; Lee, Sooryong; Han, Hwansoo

    2018-03-01

    As semiconductor product development based on shrinkage continues, the accuracy and difficulty required for the model based optical proximity correction (MBOPC) is increasing. OPC simulation time, which is the most timeconsuming part of MBOPC, is rapidly increasing due to high pattern density in a layout and complex OPC model. To reduce OPC simulation time, we attempt to apply graphic processing unit (GPU) to MBOPC because OPC process is good to be programmed in parallel. We address some issues that may typically happen during GPU-based OPC simulation in multi thread system, such as "out of memory" and "GPU idle time". To overcome these problems, we propose a thread scheduling method, which manages OPC jobs in multiple threads in such a way that simulations jobs from multiple threads are alternatively executed on GPU while correction jobs are executed at the same time in each CPU cores. It was observed that the amount of GPU peak memory usage decreases by up to 35%, and MBOPC runtime also decreases by 4%. In cases where out of memory issues occur in a multi-threaded environment, the thread scheduler was used to improve MBOPC runtime up to 23%.

  5. VoiceThread: A Useful Program Evaluation Tool

    ERIC Educational Resources Information Center

    Mott, Rebecca

    2018-01-01

    With today's technology, Extension professionals have a variety of tools available for program evaluation. This article describes an innovative platform called VoiceThread that has been used in many classrooms but also is useful for conducting virtual focus group research. I explain how this tool can be used to collect qualitative participant…

  6. Thread mapping using system-level model for shared memory multicores

    NASA Astrophysics Data System (ADS)

    Mitra, Reshmi

    Exploring thread-to-core mapping options for a parallel application on a multicore architecture is computationally very expensive. For the same algorithm, the mapping strategy (MS) with the best response time may change with data size and thread counts. The primary challenge is to design a fast, accurate and automatic framework for exploring these MSs for large data-intensive applications. This is to ensure that the users can explore the design space within reasonable machine hours, without thorough understanding on how the code interacts with the platform. Response time is related to the cycles per instructions retired (CPI), taking into account both active and sleep states of the pipeline. This work establishes a hybrid approach, based on Markov Chain Model (MCM) and Model Tree (MT) for system-level steady state CPI prediction. It is designed for shared memory multicore processors with coarse-grained multithreading. The thread status is represented by the MCM states. The program characteristics are modeled as the transition probabilities, representing the system moving between active and suspended thread states. The MT model extrapolates these probabilities for the actual application size (AS) from the smaller AS performance. This aspect of the framework, along with, the use of mathematical expressions for the actual AS performance information, results in a tremendous reduction in the CPI prediction time. The framework is validated using an electromagnetics application. The average performance prediction error for steady state CPI results with 12 different MSs is less than 1%. The total run time of model is of the order of minutes, whereas the actual application execution time is in terms of days.

  7. Argobots: A Lightweight Low-Level Threading and Tasking Framework

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

    Seo, Sangmin; Amer, Abdelhalim; Balaji, Pavan

    In the past few decades, a number of user-level threading and tasking models have been proposed in the literature to address the shortcomings of OS-level threads, primarily with respect to cost and flexibility. Current state-of-the-art user-level threading and tasking models, however, are either too specific to applications or architectures or are not as powerful or flexible. In this paper, we present Argobots, a lightweight, low-level threading and tasking framework that is designed as a portable and performant substrate for high-level programming models or runtime systems. Argobots offers a carefully designed execution model that balances generality of functionality with providing amore » rich set of controls to allow specialization by the user or high-level programming model. We describe the design, implementation, and optimization of Argobots and present integrations with three example high-level models: OpenMP, MPI, and co-located I/O service. Evaluations show that (1) Argobots outperforms existing generic threading runtimes; (2) our OpenMP runtime offers more efficient interoperability capabilities than production OpenMP runtimes do; (3) when MPI interoperates with Argobots instead of Pthreads, it enjoys reduced synchronization costs and better latency hiding capabilities; and (4) I/O service with Argobots reduces interference with co-located applications, achieving performance competitive with that of the Pthreads version.« less

  8. Argobots: A Lightweight Low-Level Threading and Tasking Framework

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

    Seo, Sangmin; Amer, Abdelhalim; Balaji, Pavan

    In the past few decades, a number of user-level threading and tasking models have been proposed in the literature to address the shortcomings of OS-level threads, primarily with respect to cost and flexibility. Current state-of-the-art user-level threading and tasking models, however, either are too specific to applications or architectures or are not as powerful or flexible. In this paper, we present Argobots, a lightweight, low-level threading and tasking framework that is designed as a portable and performant substrate for high-level programming models or runtime systems. Argobots offers a carefully designed execution model that balances generality of functionality with providing amore » rich set of controls to allow specialization by end users or high-level programming models. We describe the design, implementation, and performance characterization of Argobots and present integrations with three high-level models: OpenMP, MPI, and colocated I/O services. Evaluations show that (1) Argobots, while providing richer capabilities, is competitive with existing simpler generic threading runtimes; (2) our OpenMP runtime offers more efficient interoperability capabilities than production OpenMP runtimes do; (3) when MPI interoperates with Argobots instead of Pthreads, it enjoys reduced synchronization costs and better latency-hiding capabilities; and (4) I/O services with Argobots reduce interference with colocated applications while achieving performance competitive with that of a Pthreads approach.« less

  9. Argobots: A Lightweight Low-Level Threading and Tasking Framework

    DOE PAGES

    Seo, Sangmin; Amer, Abdelhalim; Balaji, Pavan; ...

    2017-10-24

    In the past few decades, a number of user-level threading and tasking models have been proposed in the literature to address the shortcomings of OS-level threads, primarily with respect to cost and flexibility. Current state-of-the-art user-level threading and tasking models, however, are either too specific to applications or architectures or are not as powerful or flexible. In this article, we present Argobots, a lightweight, low-level threading and tasking framework that is designed as a portable and performant substrate for high-level programming models or runtime systems. Argobots offers a carefully designed execution model that balances generality of functionality with providing amore » rich set of controls to allow specialization by the user or high-level programming model. Here, we describe the design, implementation, and optimization of Argobots and present integrations with three example high-level models: OpenMP, MPI, and co-located I/O service. Evaluations show that (1) Argobots outperforms existing generic threading runtimes; (2) our OpenMP runtime offers more efficient interoperability capabilities than production OpenMP runtimes do; (3) when MPI interoperates with Argobots instead of Pthreads, it enjoys reduced synchronization costs and better latency hiding capabilities; and (4) I/O service with Argobots reduces interference with co-located applications, achieving performance competitive with that of the Pthreads version.« less

  10. Argobots: A Lightweight Low-Level Threading and Tasking Framework

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

    Seo, Sangmin; Amer, Abdelhalim; Balaji, Pavan

    In the past few decades, a number of user-level threading and tasking models have been proposed in the literature to address the shortcomings of OS-level threads, primarily with respect to cost and flexibility. Current state-of-the-art user-level threading and tasking models, however, are either too specific to applications or architectures or are not as powerful or flexible. In this article, we present Argobots, a lightweight, low-level threading and tasking framework that is designed as a portable and performant substrate for high-level programming models or runtime systems. Argobots offers a carefully designed execution model that balances generality of functionality with providing amore » rich set of controls to allow specialization by the user or high-level programming model. Here, we describe the design, implementation, and optimization of Argobots and present integrations with three example high-level models: OpenMP, MPI, and co-located I/O service. Evaluations show that (1) Argobots outperforms existing generic threading runtimes; (2) our OpenMP runtime offers more efficient interoperability capabilities than production OpenMP runtimes do; (3) when MPI interoperates with Argobots instead of Pthreads, it enjoys reduced synchronization costs and better latency hiding capabilities; and (4) I/O service with Argobots reduces interference with co-located applications, achieving performance competitive with that of the Pthreads version.« less

  11. Practical Formal Verification of MPI and Thread Programs

    NASA Astrophysics Data System (ADS)

    Gopalakrishnan, Ganesh; Kirby, Robert M.

    Large-scale simulation codes in science and engineering are written using the Message Passing Interface (MPI). Shared memory threads are widely used directly, or to implement higher level programming abstractions. Traditional debugging methods for MPI or thread programs are incapable of providing useful formal guarantees about coverage. They get bogged down in the sheer number of interleavings (schedules), often missing shallow bugs. In this tutorial we will introduce two practical formal verification tools: ISP (for MPI C programs) and Inspect (for Pthread C programs). Unlike other formal verification tools, ISP and Inspect run directly on user source codes (much like a debugger). They pursue only the relevant set of process interleavings, using our own customized Dynamic Partial Order Reduction algorithms. For a given test harness, DPOR allows these tools to guarantee the absence of deadlocks, instrumented MPI object leaks and communication races (using ISP), and shared memory races (using Inspect). ISP and Inspect have been used to verify large pieces of code: in excess of 10,000 lines of MPI/C for ISP in under 5 seconds, and about 5,000 lines of Pthread/C code in a few hours (and much faster with the use of a cluster or by exploiting special cases such as symmetry) for Inspect. We will also demonstrate the Microsoft Visual Studio and Eclipse Parallel Tools Platform integrations of ISP (these will be available on the LiveCD).

  12. THREAD: A programming environment for interactive planning-level robotics applications

    NASA Technical Reports Server (NTRS)

    Beahan, John J., Jr.

    1989-01-01

    THREAD programming language, which was developed to meet the needs of researchers in developing robotics applications that perform such tasks as grasp, trajectory design, sensor data analysis, and interfacing with external subsystems in order to perform servo-level control of manipulators and real time sensing is discussed. The philosophy behind THREAD, the issues which entered into its design, and the features of the language are discussed from the viewpoint of researchers who want to develop algorithms in a simulation environment, and from those who want to implement physical robotics systems. The detailed functions of the many complex robotics algorithms and tools which are part of the language are not explained, but an overall impression of their capability is given.

  13. Thread gauge for tapered threads

    DOEpatents

    Brewster, Albert L.

    1994-01-11

    The thread gauge permits the user to determine the pitch diameter of tapered threads at the intersection of the pitch cone and the end face of the object being measured. A pair of opposed anvils having lines of threads which match the configuration and taper of the threads on the part being measured are brought into meshing engagement with the threads on opposite sides of the part. The anvils are located linearly into their proper positions by stop fingers on the anvils that are brought into abutting engagement with the end face of the part. This places predetermined reference points of the pitch cone of the thread anvils in registration with corresponding points on the end face of the part being measured, resulting in an accurate determination of the pitch diameter at that location. The thread anvils can be arranged for measuring either internal or external threads.

  14. Thread gauge for tapered threads

    DOEpatents

    Brewster, A.L.

    1994-01-11

    The thread gauge permits the user to determine the pitch diameter of tapered threads at the intersection of the pitch cone and the end face of the object being measured. A pair of opposed anvils having lines of threads which match the configuration and taper of the threads on the part being measured are brought into meshing engagement with the threads on opposite sides of the part. The anvils are located linearly into their proper positions by stop fingers on the anvils that are brought into abutting engagement with the end face of the part. This places predetermined reference points of the pitch cone of the thread anvils in registration with corresponding points on the end face of the part being measured, resulting in an accurate determination of the pitch diameter at that location. The thread anvils can be arranged for measuring either internal or external threads. 13 figures.

  15. A software bus for thread objects

    NASA Technical Reports Server (NTRS)

    Callahan, John R.; Li, Dehuai

    1995-01-01

    The authors have implemented a software bus for lightweight threads in an object-oriented programming environment that allows for rapid reconfiguration and reuse of thread objects in discrete-event simulation experiments. While previous research in object-oriented, parallel programming environments has focused on direct communication between threads, our lightweight software bus, called the MiniBus, provides a means to isolate threads from their contexts of execution by restricting communications between threads to message-passing via their local ports only. The software bus maintains a topology of connections between these ports. It routes, queues, and delivers messages according to this topology. This approach allows for rapid reconfiguration and reuse of thread objects in other systems without making changes to the specifications or source code. A layered approach that provides the needed transparency to developers is presented. Examples of using the MiniBus are given, and the value of bus architectures in building and conducting simulations of discrete-event systems is discussed.

  16. Exploiting Thread Parallelism for Ocean Modeling on Cray XC Supercomputers

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

    Sarje, Abhinav; Jacobsen, Douglas W.; Williams, Samuel W.

    The incorporation of increasing core counts in modern processors used to build state-of-the-art supercomputers is driving application development towards exploitation of thread parallelism, in addition to distributed memory parallelism, with the goal of delivering efficient high-performance codes. In this work we describe the exploitation of threading and our experiences with it with respect to a real-world ocean modeling application code, MPAS-Ocean. We present detailed performance analysis and comparisons of various approaches and configurations for threading on the Cray XC series supercomputers.

  17. Model for threading dislocations in metamorphic tandem solar cells on GaAs (001) substrates

    NASA Astrophysics Data System (ADS)

    Song, Yifei; Kujofsa, Tedi; Ayers, John E.

    2018-02-01

    We present an approximate model for the threading dislocations in III-V heterostructures and have applied this model to study the defect behavior in metamorphic triple-junction solar cells. This model represents a new approach in which the coefficient for second-order threading dislocation annihilation and coalescence reactions is considered to be determined by the length of misfit dislocations, LMD, in the structure, and we therefore refer to it as the LMD model. On the basis of this model we have compared the average threading dislocation densities in the active layers of triple junction solar cells using linearly-graded buffers of varying thicknesses as well as S-graded (complementary error function) buffers with varying thicknesses and standard deviation parameters. We have shown that the threading dislocation densities in the active regions of metamorphic tandem solar cells depend not only on the thicknesses of the buffer layers but on their compositional grading profiles. The use of S-graded buffer layers instead of linear buffers resulted in lower threading dislocation densities. Moreover, the threading dislocation densities depended strongly on the standard deviation parameters used in the S-graded buffers, with smaller values providing lower threading dislocation densities.

  18. A C++ Thread Package for Concurrent and Parallel Programming

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

    Jie Chen; William Watson

    1999-11-01

    Recently thread libraries have become a common entity on various operating systems such as Unix, Windows NT and VxWorks. Those thread libraries offer significant performance enhancement by allowing applications to use multiple threads running either concurrently or in parallel on multiprocessors. However, the incompatibilities between native libraries introduces challenges for those who wish to develop portable applications.

  19. A Review of Lightweight Thread Approaches for High Performance Computing

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

    Castello, Adrian; Pena, Antonio J.; Seo, Sangmin

    High-level, directive-based solutions are becoming the programming models (PMs) of the multi/many-core architectures. Several solutions relying on operating system (OS) threads perfectly work with a moderate number of cores. However, exascale systems will spawn hundreds of thousands of threads in order to exploit their massive parallel architectures and thus conventional OS threads are too heavy for that purpose. Several lightweight thread (LWT) libraries have recently appeared offering lighter mechanisms to tackle massive concurrency. In order to examine the suitability of LWTs in high-level runtimes, we develop a set of microbenchmarks consisting of commonlyfound patterns in current parallel codes. Moreover, wemore » study the semantics offered by some LWT libraries in order to expose the similarities between different LWT application programming interfaces. This study reveals that a reduced set of LWT functions can be sufficient to cover the common parallel code patterns and that those LWT libraries perform better than OS threads-based solutions in cases where task and nested parallelism are becoming more popular with new architectures.« less

  20. Thread gauge for measuring thread pitch diameters

    DOEpatents

    Brewster, A.L.

    1985-11-19

    A thread gauge which attaches to a vernier caliper to measure the thread pitch diameter of both externally threaded and internally threaded parts is disclosed. A pair of anvils are externally threaded with threads having the same pitch as those of the threaded part. Each anvil is mounted on a stem having a ball on which the anvil can rotate to properly mate with the parts to which the anvils are applied. The stems are detachably secured to the caliper blades by attachment collars having keyhole openings for receiving the stems and caliper blades. A set screw is used to secure each collar on its caliper blade. 2 figs.

  1. Thread gauge for measuring thread pitch diameters

    DOEpatents

    Brewster, Albert L.

    1985-01-01

    A thread gauge which attaches to a vernier caliper to measure the thread pitch diameter of both externally threaded and internally threaded parts. A pair of anvils are externally threaded with threads having the same pitch as those of the threaded part. Each anvil is mounted on a stem having a ball on which the anvil can rotate to properly mate with the parts to which the anvils are applied. The stems are detachably secured to the caliper blades by attachment collars having keyhole openings for receiving the stems and caliper blades. A set screw is used to secure each collar on its caliper blade.

  2. Platform-Independence and Scheduling In a Multi-Threaded Real-Time Simulation

    NASA Technical Reports Server (NTRS)

    Sugden, Paul P.; Rau, Melissa A.; Kenney, P. Sean

    2001-01-01

    Aviation research often relies on real-time, pilot-in-the-loop flight simulation as a means to develop new flight software, flight hardware, or pilot procedures. Often these simulations become so complex that a single processor is incapable of performing the necessary computations within a fixed time-step. Threads are an elegant means to distribute the computational work-load when running on a symmetric multi-processor machine. However, programming with threads often requires operating system specific calls that reduce code portability and maintainability. While a multi-threaded simulation allows a significant increase in the simulation complexity, it also increases the workload of a simulation operator by requiring that the operator determine which models run on which thread. To address these concerns an object-oriented design was implemented in the NASA Langley Standard Real-Time Simulation in C++ (LaSRS++) application framework. The design provides a portable and maintainable means to use threads and also provides a mechanism to automatically load balance the simulation models.

  3. Improving threading algorithms for remote homology modeling by combining fragment and template comparisons

    PubMed Central

    Zhou, Hongyi; Skolnick, Jeffrey

    2010-01-01

    In this work, we develop a method called FTCOM for assessing the global quality of protein structural models for targets of medium and hard difficulty (remote homology) produced by structure prediction approaches such as threading or ab initio structure prediction. FTCOM requires the Cα coordinates of full length models and assesses model quality based on fragment comparison and a score derived from comparison of the model to top threading templates. On a set of 361 medium/hard targets, FTCOM was applied to and assessed for its ability to improve upon the results from the SP3, SPARKS, PROSPECTOR_3, and PRO-SP3-TASSER threading algorithms. The average TM-score improves by 5%–10% for the first selected model by the new method over models obtained by the original selection procedure in the respective threading methods. Moreover the number of foldable targets (TM-score ≥0.4) increases from least 7.6% for SP3 to 54% for SPARKS. Thus, FTCOM is a promising approach to template selection. PMID:20455261

  4. Real-time inextensible surgical thread simulation.

    PubMed

    Xu, Lang; Liu, Qian

    2018-03-27

    This paper discusses a real-time simulation method of inextensible surgical thread based on the Cosserat rod theory using position-based dynamics (PBD). The method realizes stable twining and knotting of surgical thread while including inextensibility, bending, twisting and coupling effects. The Cosserat rod theory is used to model the nonlinear elastic behavior of surgical thread. The surgical thread model is solved with PBD to achieve a real-time, extremely stable simulation. Due to the one-dimensional linear structure of surgical thread, the direct solution of the distance constraint based on tridiagonal matrix algorithm is used to enhance stretching resistance in every constraint projection iteration. In addition, continuous collision detection and collision response guarantee a large time step and high performance. Furthermore, friction is integrated into the constraint projection process to stabilize the twining of multiple threads and complex contact situations. Through comparisons with existing methods, the surgical thread maintains constant length under large deformation after applying the direct distance constraint in our method. The twining and knotting of multiple threads correspond to stable solutions to contact and friction forces. A surgical suture scene is also modeled to demonstrate the practicality and simplicity of our method. Our method achieves stable and fast simulation of inextensible surgical thread. Benefiting from the unified particle framework, the rigid body, elastic rod, and soft body can be simultaneously simulated. The method is appropriate for applications in virtual surgery that require multiple dynamic bodies.

  5. Dedicated memory structure holding data for detecting available worker thread(s) and informing available worker thread(s) of task(s) to execute

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

    Chiu, George L.; Eichenberger, Alexandre E.; O'Brien, John K. P.

    The present disclosure relates generally to a dedicated memory structure (that is, hardware device) holding data for detecting available worker thread(s) and informing available worker thread(s) of task(s) to execute.

  6. Testing the Digital Thread in Support of Model-Based Manufacturing and Inspection

    PubMed Central

    Hedberg, Thomas; Lubell, Joshua; Fischer, Lyle; Maggiano, Larry; Feeney, Allison Barnard

    2016-01-01

    A number of manufacturing companies have reported anecdotal evidence describing the benefits of Model-Based Enterprise (MBE). Based on this evidence, major players in industry have embraced a vision to deploy MBE. In our view, the best chance of realizing this vision is the creation of a single “digital thread.” Under MBE, there exists a Model-Based Definition (MBD), created by the Engineering function, that downstream functions reuse to complete Model-Based Manufacturing and Model-Based Inspection activities. The ensemble of data that enables the combination of model-based definition, manufacturing, and inspection defines this digital thread. Such a digital thread would enable real-time design and analysis, collaborative process-flow development, automated artifact creation, and full-process traceability in a seamless real-time collaborative development among project participants. This paper documents the strengths and weaknesses in the current, industry strategies for implementing MBE. It also identifies gaps in the transition and/or exchange of data between various manufacturing processes. Lastly, this paper presents measured results from a study of model-based processes compared to drawing-based processes and provides evidence to support the anecdotal evidence and vision made by industry. PMID:27325911

  7. Support of Multidimensional Parallelism in the OpenMP Programming Model

    NASA Technical Reports Server (NTRS)

    Jin, Hao-Qiang; Jost, Gabriele

    2003-01-01

    OpenMP is the current standard for shared-memory programming. While providing ease of parallel programming, the OpenMP programming model also has limitations which often effect the scalability of applications. Examples for these limitations are work distribution and point-to-point synchronization among threads. We propose extensions to the OpenMP programming model which allow the user to easily distribute the work in multiple dimensions and synchronize the workflow among the threads. The proposed extensions include four new constructs and the associated runtime library. They do not require changes to the source code and can be implemented based on the existing OpenMP standard. We illustrate the concept in a prototype translator and test with benchmark codes and a cloud modeling code.

  8. Thread concept for automatic task parallelization in image analysis

    NASA Astrophysics Data System (ADS)

    Lueckenhaus, Maximilian; Eckstein, Wolfgang

    1998-09-01

    Parallel processing of image analysis tasks is an essential method to speed up image processing and helps to exploit the full capacity of distributed systems. However, writing parallel code is a difficult and time-consuming process and often leads to an architecture-dependent program that has to be re-implemented when changing the hardware. Therefore it is highly desirable to do the parallelization automatically. For this we have developed a special kind of thread concept for image analysis tasks. Threads derivated from one subtask may share objects and run in the same context but may process different threads of execution and work on different data in parallel. In this paper we describe the basics of our thread concept and show how it can be used as basis of an automatic task parallelization to speed up image processing. We further illustrate the design and implementation of an agent-based system that uses image analysis threads for generating and processing parallel programs by taking into account the available hardware. The tests made with our system prototype show that the thread concept combined with the agent paradigm is suitable to speed up image processing by an automatic parallelization of image analysis tasks.

  9. Three-dimensional investigations of the threading regime in a microfluidic flow-focusing channel

    NASA Astrophysics Data System (ADS)

    Gowda, Krishne; Brouzet, Christophe; Lefranc, Thibault; Soderberg, L. Daniel; Lundell, Fredrik

    2017-11-01

    We study the flow dynamics of the threading regime in a microfluidic flow-focusing channel through 3D numerical simulations and experiments. Making strong filaments from cellulose nano-fibrils (CNF) could potentially steer to new high-performance bio-based composites competing with conventional glass fibre composites. CNF filaments can be obtained through hydrodynamic alignment of dispersed CNF by using the concept of flow-focusing. The aligned structure is locked by diffusion of ions resulting in a dispersion-gel transition. Flow-focusing typically refers to a microfluidic channel system where the core fluid is focused by the two sheath fluids, thereby creating an extensional flow at the intersection. In this study, threading regime corresponds to an extensional flow field generated by the water sheath fluid stretching the dispersed CNF core fluid and leading to formation of long threads. The experimental measurements are performed using optical coherence tomography (OCT) and 3D numerical simulations with OpenFOAM. The prime focus is laid on the 3D characteristics of thread formation such as wetting length of core fluid, shape, aspect ratio of the thread and velocity flow-field in the microfluidic channel.

  10. Modeling Cooperative Threads to Project GPU Performance for Adaptive Parallelism

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

    Meng, Jiayuan; Uram, Thomas; Morozov, Vitali A.

    Most accelerators, such as graphics processing units (GPUs) and vector processors, are particularly suitable for accelerating massively parallel workloads. On the other hand, conventional workloads are developed for multi-core parallelism, which often scale to only a few dozen OpenMP threads. When hardware threads significantly outnumber the degree of parallelism in the outer loop, programmers are challenged with efficient hardware utilization. A common solution is to further exploit the parallelism hidden deep in the code structure. Such parallelism is less structured: parallel and sequential loops may be imperfectly nested within each other, neigh boring inner loops may exhibit different concurrency patternsmore » (e.g. Reduction vs. Forall), yet have to be parallelized in the same parallel section. Many input-dependent transformations have to be explored. A programmer often employs a larger group of hardware threads to cooperatively walk through a smaller outer loop partition and adaptively exploit any encountered parallelism. This process is time-consuming and error-prone, yet the risk of gaining little or no performance remains high for such workloads. To reduce risk and guide implementation, we propose a technique to model workloads with limited parallelism that can automatically explore and evaluate transformations involving cooperative threads. Eventually, our framework projects the best achievable performance and the most promising transformations without implementing GPU code or using physical hardware. We envision our technique to be integrated into future compilers or optimization frameworks for autotuning.« less

  11. Analysis of Modeling Parameters on Threaded Screws.

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

    Vigil, Miquela S.; Brake, Matthew Robert; Vangoethem, Douglas

    2015-06-01

    Assembled mechanical systems often contain a large number of bolted connections. These bolted connections (joints) are integral aspects of the load path for structural dynamics, and, consequently, are paramount for calculating a structure's stiffness and energy dissipation prop- erties. However, analysts have not found the optimal method to model appropriately these bolted joints. The complexity of the screw geometry cause issues when generating a mesh of the model. This paper will explore different approaches to model a screw-substrate connec- tion. Model parameters such as mesh continuity, node alignment, wedge angles, and thread to body element size ratios are examined. Themore » results of this study will give analysts a better understanding of the influences of these parameters and will aide in finding the optimal method to model bolted connections.« less

  12. A Locality-Based Threading Algorithm for the Configuration-Interaction Method

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

    Shan, Hongzhang; Williams, Samuel; Johnson, Calvin

    The Configuration Interaction (CI) method has been widely used to solve the non-relativistic many-body Schrodinger equation. One great challenge to implementing it efficiently on manycore architectures is its immense memory and data movement requirements. To address this issue, within each node, we exploit a hybrid MPI+OpenMP programming model in lieu of the traditional flat MPI programming model. Here in this paper, we develop optimizations that partition the workloads among OpenMP threads based on data locality,-which is essential in ensuring applications with complex data access patterns scale well on manycore architectures. The new algorithm scales to 256 threadson the 64-core Intelmore » Knights Landing (KNL) manycore processor and 24 threads on dual-socket Ivy Bridge (Xeon) nodes. Compared with the original implementation, the performance has been improved by up to 7× on theKnights Landing processor and 3× on the dual-socket Ivy Bridge node.« less

  13. A Locality-Based Threading Algorithm for the Configuration-Interaction Method

    DOE PAGES

    Shan, Hongzhang; Williams, Samuel; Johnson, Calvin; ...

    2017-07-03

    The Configuration Interaction (CI) method has been widely used to solve the non-relativistic many-body Schrodinger equation. One great challenge to implementing it efficiently on manycore architectures is its immense memory and data movement requirements. To address this issue, within each node, we exploit a hybrid MPI+OpenMP programming model in lieu of the traditional flat MPI programming model. Here in this paper, we develop optimizations that partition the workloads among OpenMP threads based on data locality,-which is essential in ensuring applications with complex data access patterns scale well on manycore architectures. The new algorithm scales to 256 threadson the 64-core Intelmore » Knights Landing (KNL) manycore processor and 24 threads on dual-socket Ivy Bridge (Xeon) nodes. Compared with the original implementation, the performance has been improved by up to 7× on theKnights Landing processor and 3× on the dual-socket Ivy Bridge node.« less

  14. Multi-threaded Event Processing with DANA

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

    David Lawrence; Elliott Wolin

    2007-05-14

    The C++ data analysis framework DANA has been written to support the next generation of Nuclear Physics experiments at Jefferson Lab commensurate with the anticipated 12GeV upgrade. The DANA framework was designed to allow multi-threaded event processing with a minimal impact on developers of reconstruction software. This document describes how DANA implements multi-threaded event processing and compares it to simply running multiple instances of a program. Also presented are relative reconstruction rates for Pentium4, Xeon, and Opteron based machines.

  15. The effect of thread pattern upon implant osseointegration.

    PubMed

    Abuhussein, Heba; Pagni, Giorgio; Rebaudi, Alberto; Wang, Hom-Lay

    2010-02-01

    Implant design features such as macro- and micro-design may influence overall implant success. Limited information is currently available. Therefore, it is the purpose of this paper to examine these factors such as thread pitch, thread geometry, helix angle, thread depth and width as well as implant crestal module may affect implant stability. A literature search was conducted using MEDLINE to identify studies, from simulated laboratory models, animal, to human, related to this topic using the keywords of implant thread, implant macrodesign, thread pitch, thread geometry, helix angle, thread depth, thread width and implant crestal module. The results showed how thread geometry affects the distribution of stress forces around the implant. A decreased thread pitch may positively influence implant stability. Excess helix angles in spite of a faster insertion may jeopardize the ability of implants to sustain axial load. Deeper threads seem to have an important effect on the stabilization in poorer bone quality situations. The addition of threads or microthreads up to the crestal module of an implant might provide a potential positive contribution on bone-to to-implant contact as well as on the preservation of marginal bone; nonetheless this remains to be determined. Appraising the current literature on this subject and combining existing data to verify the presence of any association between the selected characteristics may be critical in the achievement of overall implant success.

  16. Spiders spinning electrically charged nano-fibres

    PubMed Central

    Kronenberger, Katrin; Vollrath, Fritz

    2015-01-01

    Most spider threads are on the micrometre and sub-micrometre scale. Yet, there are some spiders that spin true nano-scale fibres such as the cribellate orb spider, Uloborus plumipes. Here, we analyse the highly specialized capture silk-spinning system of this spider and compare it with the silk extrusion systems of the more standard spider dragline threads. The cribellar silk extrusion system consists of tiny, morphologically basic glands each terminating through exceptionally long and narrow ducts in uniquely shaped silk outlets. Depending on spider size, hundreds to thousands of these outlet spigots cover the cribellum, a phylogenetically ancient spinning plate. We present details on the unique functional design of the cribellate gland–duct–spigot system and discuss design requirements for its specialist fibrils. The spinning of fibres on the nano-scale seems to have been facilitated by the evolution of a highly specialist way of direct spinning, which differs from the aqua-melt silk extrusion set-up more typical for other spiders. PMID:25631231

  17. Self-locking threaded fasteners

    DOEpatents

    Glovan, Ronald J.; Tierney, John C.; McLean, Leroy L.; Johnson, Lawrence L.

    1996-01-01

    A threaded fastener with a shape memory alloy (SMA) coatings on its threads is disclosed. The fastener has special usefulness in high temperature applications where high reliability is important. The SMA coated fastener is threaded into or onto a mating threaded part at room temperature to produce a fastened object. The SMA coating is distorted during the assembly. At elevated temperatures the coating tries to recover its original shape and thereby exerts locking forces on the threads. When the fastened object is returned to room temperature the locking forces dissipate. Consequently the threaded fasteners can be readily disassembled at room temperature but remains securely fastened at high temperatures. A spray technique is disclosed as a particularly useful method of coating of threads of a fastener with a shape memory alloy.

  18. Self-locking threaded fasteners

    DOEpatents

    Glovan, R.J.; Tierney, J.C.; McLean, L.L.; Johnson, L.L.

    1996-01-16

    A threaded fastener with a shape memory alloy (SMA) coatings on its threads is disclosed. The fastener has special usefulness in high temperature applications where high reliability is important. The SMA coated fastener is threaded into or onto a mating threaded part at room temperature to produce a fastened object. The SMA coating is distorted during the assembly. At elevated temperatures the coating tries to recover its original shape and thereby exerts locking forces on the threads. When the fastened object is returned to room temperature the locking forces dissipate. Consequently the threaded fasteners can be readily disassembled at room temperature but remains securely fastened at high temperatures. A spray technique is disclosed as a particularly useful method of coating of threads of a fastener with a shape memory alloy. 13 figs.

  19. Nano-enabled sensors, electronics and energy source on polymer, paper and thread substrates

    NASA Astrophysics Data System (ADS)

    Mostafalu, Pooria

    Over the past decades, design and development of portable devices for monitoring of biomarkers especially for at risk patients is receiving considerable attention. These devices are either single use diagnostic platforms, wearable on body or on fabric, or they are implanted close to the tissue and organ that it monitors and cures. Sensors, energy sources, and data acquisition devices are the main components of a such monitoring platform. Sensors collect the information using bio-recognition tools such as enzymes and antibodies. Then, the transducers (electrodes, fluorophore, etc) convert it to the appropriate format, for instance electrical and optical signals. After that, data acquisition system amplifies and digitizes the signal and transfers the data to the recording instruments for further processing. Moreover, energy sources are necessary for powering the sensors and electronics. In wearable and implantable applications, these devices need to be flexible, light weight and biocompatible, and their performance should be similar to their rigid counterparts. In this dissertation we address these requirement for wearable and implantable devices. We showed integrated sensors, electronics, and energy sources on flexible polymers, paper, and thread. These devices provide many advantages for monitoring of the physiological condition of a patient and treatment accordingly. Real-time capability of the platform was enabled using wireless telemetry. One of the major innovations of this dissertation is the use of thread as a substrate for making medical diagnostic devices. While conventional substrates (glass, silicon, polyimide, PDMS etc) hold great promise for making wearable and implantable devices, their overall structure and form has remained essentially two dimensional, limiting their function to tissue surfaces such as skin. However, the ability to integrate functional components such as sensors, actuators, and electronics in a way that they penetrate multiple layers

  20. Improved Screw-Thread Lock

    NASA Technical Reports Server (NTRS)

    Macmartin, Malcolm

    1995-01-01

    Improved screw-thread lock engaged after screw tightened in nut or other mating threaded part. Device does not release contaminating material during tightening of screw. Includes pellet of soft material encased in screw and retained by pin. Hammer blow on pin extrudes pellet into slot, engaging threads in threaded hole or in nut.

  1. Cutting thread at flexible endoscopy.

    PubMed

    Gong, F; Swain, P; Kadirkamanathan, S; Hepworth, C; Laufer, J; Shelton, J; Mills, T

    1996-12-01

    New thread-cutting techniques were developed for use at flexible endoscopy. A guillotine was designed to follow and cut thread at the endoscope tip. A new method was developed for guiding suture cutters. Efficacy of Nd: YAG laser cutting of threads was studied. Experimental and clinical experience with thread-cutting methods is presented. A 2.4 mm diameter flexible thread-cutting guillotine was constructed featuring two lateral holes with sharp edges through which sutures to be cut are passed. Standard suture cutters were guided by backloading thread through the cutters extracorporeally. A snare cutter was constructed to retrieve objects sewn to tissue. Efficacy and speed of Nd: YAG laser in cutting twelve different threads were studied. The guillotine cut thread faster (p < 0.05) than standard suture cutters. Backloading thread shortened time taken to cut thread (p < 0.001) compared with free-hand cutting. Nd: YAG laser was ineffective in cutting uncolored threads and slower than mechanical cutters. Results of thread cutting in clinical studies using sewing machine (n = 77 cutting episodes in 21 patients), in-vivo experiments (n = 156), and postsurgical cases (n = 15 over 15 years) are presented. New thread-cutting methods are described and their efficacy demonstrated in experimental and clinical studies.

  2. Bending and buckling of viscoplastic threads

    NASA Astrophysics Data System (ADS)

    Hewitt, Ian; Balmforth, Neil

    2012-11-01

    We use a slender body theory to describe the dynamics of a thin viscoplastic thread undergoing extrusion, such as occurs when squeezing toothpaste from a tube. The theory adopts the Bingham model for a yield stress fluid, together with an asymptotic approximation for the stress and strain-rate profiles across the narrow width of the thread, which imply that the thread must either be rigid or fully yielded across its entire width. A compact description of the resultant longitudinal stress and moment acting on the thread allows these yielded and unyielded regions to be identified for given external forces. The theory is applied to extrusion flows; the yield stress prevents any deformation until a critical length of extrusion is reached, after which the dynamically evolving yielded regions mediate a distinctive drooping of a horizontal beam, or a catastrophic collapse of an upright beam.

  3. Program Model Checking: A Practitioner's Guide

    NASA Technical Reports Server (NTRS)

    Pressburger, Thomas T.; Mansouri-Samani, Masoud; Mehlitz, Peter C.; Pasareanu, Corina S.; Markosian, Lawrence Z.; Penix, John J.; Brat, Guillaume P.; Visser, Willem C.

    2008-01-01

    Program model checking is a verification technology that uses state-space exploration to evaluate large numbers of potential program executions. Program model checking provides improved coverage over testing by systematically evaluating all possible test inputs and all possible interleavings of threads in a multithreaded system. Model-checking algorithms use several classes of optimizations to reduce the time and memory requirements for analysis, as well as heuristics for meaningful analysis of partial areas of the state space Our goal in this guidebook is to assemble, distill, and demonstrate emerging best practices for applying program model checking. We offer it as a starting point and introduction for those who want to apply model checking to software verification and validation. The guidebook will not discuss any specific tool in great detail, but we provide references for specific tools.

  4. Thread bonds in molecules

    NASA Astrophysics Data System (ADS)

    Ivlev, B.

    2017-07-01

    Unusual chemical bonds are proposed. Each bond is characterized by the thread of a small radius, 10-11 cm, extended between two nuclei in a molecule. An analogue of a potential well, of the depth of MeV scale, is formed within the thread. This occurs due to the local reduction of zero point electromagnetic energy. This is similar to formation of the Casimir well. The electron-photon interaction only is not sufficient for formation of thread state. The mechanism of electron mass generation is involved in the close vicinity, 10-16 cm, of the thread. Thread bonds are stable and cannot be created or destructed in chemical or optical processes.

  5. Servicing a globally broadcast interrupt signal in a multi-threaded computer

    DOEpatents

    Attinella, John E.; Davis, Kristan D.; Musselman, Roy G.; Satterfield, David L.

    2015-12-29

    Methods, apparatuses, and computer program products for servicing a globally broadcast interrupt signal in a multi-threaded computer comprising a plurality of processor threads. Embodiments include an interrupt controller indicating in a plurality of local interrupt status locations that a globally broadcast interrupt signal has been received by the interrupt controller. Embodiments also include a thread determining that a local interrupt status location corresponding to the thread indicates that the globally broadcast interrupt signal has been received by the interrupt controller. Embodiments also include the thread processing one or more entries in a global interrupt status bit queue based on whether global interrupt status bits associated with the globally broadcast interrupt signal are locked. Each entry in the global interrupt status bit queue corresponds to a queued global interrupt.

  6. Spiders spinning electrically charged nano-fibres.

    PubMed

    Kronenberger, Katrin; Vollrath, Fritz

    2015-01-01

    Most spider threads are on the micrometre and sub-micrometre scale. Yet, there are some spiders that spin true nano-scale fibres such as the cribellate orb spider, Uloborus plumipes. Here, we analyse the highly specialized capture silk-spinning system of this spider and compare it with the silk extrusion systems of the more standard spider dragline threads. The cribellar silk extrusion system consists of tiny, morphologically basic glands each terminating through exceptionally long and narrow ducts in uniquely shaped silk outlets. Depending on spider size, hundreds to thousands of these outlet spigots cover the cribellum, a phylogenetically ancient spinning plate. We present details on the unique functional design of the cribellate gland-duct-spigot system and discuss design requirements for its specialist fibrils. The spinning of fibres on the nano-scale seems to have been facilitated by the evolution of a highly specialist way of direct spinning, which differs from the aqua-melt silk extrusion set-up more typical for other spiders. © 2015 The Author(s) Published by the Royal Society. All rights reserved.

  7. Threaded cognition: an integrated theory of concurrent multitasking.

    PubMed

    Salvucci, Dario D; Taatgen, Niels A

    2008-01-01

    The authors propose the idea of threaded cognition, an integrated theory of concurrent multitasking--that is, performing 2 or more tasks at once. Threaded cognition posits that streams of thought can be represented as threads of processing coordinated by a serial procedural resource and executed across other available resources (e.g., perceptual and motor resources). The theory specifies a parsimonious mechanism that allows for concurrent execution, resource acquisition, and resolution of resource conflicts, without the need for specialized executive processes. By instantiating this mechanism as a computational model, threaded cognition provides explicit predictions of how multitasking behavior can result in interference, or lack thereof, for a given set of tasks. The authors illustrate the theory in model simulations of several representative domains ranging from simple laboratory tasks such as dual-choice tasks to complex real-world domains such as driving and driver distraction. (c) 2008 APA, all rights reserved

  8. Performance of an adjustable, threaded inertance tube

    NASA Astrophysics Data System (ADS)

    Zhou, W. J.; Pfotenhauer, J. M.; Nellis, G. F.; Liu, S. Y.

    2015-12-01

    The performance of the Stirling type pulse tube cryocooler depends strongly on the design of the inertance tube. The phase angle produced by the inertance tube is very sensitive to its diameter and length. Recent developments are reported here regarding an adjustable inertance device that can be adjusted in real time. The inertance passage is formed by the root of a concentric cylindrical threaded device. The depth of the threads installed on the outer screw varies. In this device, the outer screw can be rotated four and half turns. At the zero turn position the length of the passage is 1.74 m and the hydraulic diameter is 7 mm. By rotating the outer screw, the inner threaded rod engages with additional, larger depth threads. Therefore, at its upper limit of rotation, the inertance passage includes both the original 1.74 m length with 7mm hydraulic diameter plus an additional 1.86 m length with a 10 mm hydraulic diameter. A phase shift change of 24° has been experimentally measured by changing the position of outer screw while operating the device at a frequency of 60 Hz. This phase angle shift is less than the theoretically predicted value due to the presence of a relatively large leak through the thread clearance. Therefore, the distributed component model of the inertance tube was modified to account for the leak path causing the data to agree with the model. Further, the application of vacuum grease to the threads causes the performance of the device to improve substantially.

  9. Method for Estimating Thread Strength Reduction of Damaged Parent Holes with Inserts

    NASA Technical Reports Server (NTRS)

    Johnson, David L.; Stratton, Troy C.

    2005-01-01

    During normal assembly and disassembly of bolted-joint components, thread damage and/or deformation may occur. If threads are overloaded, thread damage/deformation can also be anticipated. Typical inspection techniques (e.g. using GO-NO GO gages) may not provide adequate visibility of the extent of thread damage. More detailed inspection techniques have provided actual pitch-diameter profiles of damaged-hardware holes. A method to predict the reduction in thread shear-out capacity of damaged threaded holes has been developed. This method was based on testing and analytical modeling. Test samples were machined to simulate damaged holes in the hardware of interest. Test samples containing pristine parent-holes were also manufactured from the same bar-stock material to provide baseline results for comparison purposes. After the particular parent-hole thread profile was machined into each sample a helical insert was installed into the threaded hole. These samples were tested in a specially designed fixture to determine the maximum load required to shear out the parent threads. It was determined from the pristine-hole samples that, for the specific material tested, each individual thread could resist an average load of 3980 pounds. The shear-out loads of the holes having modified pitch diameters were compared to the ultimate loads of the specimens with pristine holes. An equivalent number of missing helical coil threads was then determined based on the ratio of shear-out loads for each thread configuration. These data were compared with the results from a finite element model (FEM). The model gave insights into the ability of the thread loads to redistribute for both pristine and simulated damage configurations. In this case, it was determined that the overall potential reduction in thread load-carrying capability in the hardware of interest was equal to having up to three fewer threads in the hole that bolt threads could engage. One- half of this potential reduction

  10. Modified locking thread form for fastener

    NASA Technical Reports Server (NTRS)

    Roopnarine, (Inventor); Vranish, John D. (Inventor)

    1998-01-01

    A threaded fastener has a standard part with a standard thread form characterized by thread walls with a standard included angle, and a modified part complementary to the standard part having a modified thread form characterized by thread walls which are symmetrically inclined with a modified included angle that is different from the standard included angle of the standard part's thread walls, such that the threads of one part make pre-loaded edge contact with the thread walls of the other part. The thread form of the modified part can have an included angle that is greater, less, or compound as compared to the included angle of the standard part. The standard part may be a bolt and the modified part a nut, or vice versa. The modified thread form holds securely even under large vibrational forces, it permits bi-directional use of standard mating threads, is impervious to the build up of tolerances and can be manufactured with a wider range of tolerances without loss of functionality, and distributes loading stresses (per thread) in a manner that decreases the possibility of single thread failure.

  11. Threaded average temperature thermocouple

    NASA Technical Reports Server (NTRS)

    Ward, Stanley W. (Inventor)

    1990-01-01

    A threaded average temperature thermocouple 11 is provided to measure the average temperature of a test situs of a test material 30. A ceramic insulator rod 15 with two parallel holes 17 and 18 through the length thereof is securely fitted in a cylinder 16, which is bored along the longitudinal axis of symmetry of threaded bolt 12. Threaded bolt 12 is composed of material having thermal properties similar to those of test material 30. Leads of a thermocouple wire 20 leading from a remotely situated temperature sensing device 35 are each fed through one of the holes 17 or 18, secured at head end 13 of ceramic insulator rod 15, and exit at tip end 14. Each lead of thermocouple wire 20 is bent into and secured in an opposite radial groove 25 in tip end 14 of threaded bolt 12. Resulting threaded average temperature thermocouple 11 is ready to be inserted into cylindrical receptacle 32. The tip end 14 of the threaded average temperature thermocouple 11 is in intimate contact with receptacle 32. A jam nut 36 secures the threaded average temperature thermocouple 11 to test material 30.

  12. High Resolution Modelling of the Congo River's Multi-Threaded Main Stem Hydraulics

    NASA Astrophysics Data System (ADS)

    Carr, A. B.; Trigg, M.; Tshimanga, R.; Neal, J. C.; Borman, D.; Smith, M. W.; Bola, G.; Kabuya, P.; Mushie, C. A.; Tschumbu, C. L.

    2017-12-01

    We present the results of a summer 2017 field campaign by members of the Congo River users Hydraulics and Morphology (CRuHM) project, and a subsequent reach-scale hydraulic modelling study on the Congo's main stem. Sonar bathymetry, ADCP transects, and water surface elevation data have been collected along the Congo's heavily multi-threaded middle reach, which exhibits complex in-channel hydraulic processes that are not well understood. To model the entire basin's hydrodynamics, these in-channel hydraulic processes must be parameterised since it is not computationally feasible to represent them explicitly. Furthermore, recent research suggests that relative to other large global rivers, in-channel flows on the Congo represent a relatively large proportion of total flow through the river-floodplain system. We therefore regard sufficient representation of in-channel hydraulic processes as a Congo River hydrodynamic research priority. To enable explicit representation of in-channel hydraulics, we develop a reach-scale (70 km), high resolution hydraulic model. Simulation of flow through individual channel threads provides new information on flow depths and velocities, and will be used to inform the parameterisation of a broader basin-scale hydrodynamic model. The basin-scale model will ultimately be used to investigate floodplain fluxes, flood wave attenuation, and the impact of future hydrological change scenarios on basin hydrodynamics. This presentation will focus on the methodology we use to develop a reach-scale bathymetric DEM. The bathymetry of only a small proportion of channel threads can realistically be captured, necessitating some estimation of the bathymetry of channels not surveyed. We explore different approaches to this bathymetry estimation, and the extent to which it influences hydraulic model predictions. The CRuHM project is a consortium comprising the Universities of Kinshasa, Rhodes, Dar es Salaam, Bristol, and Leeds, and is funded by Royal

  13. Tool Removes Coil-Spring Thread Inserts

    NASA Technical Reports Server (NTRS)

    Collins, Gerald J., Jr.; Swenson, Gary J.; Mcclellan, J. Scott

    1991-01-01

    Tool removes coil-spring thread inserts from threaded holes. Threads into hole, pries insert loose, grips insert, then pulls insert to thread it out of hole. Effects essentially reverse of insertion process to ease removal and avoid further damage to threaded inner surface of hole.

  14. Hierarchical resilience with lightweight threads.

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

    Wheeler, Kyle Bruce

    2011-10-01

    This paper proposes methodology for providing robustness and resilience for a highly threaded distributed- and shared-memory environment based on well-defined inputs and outputs to lightweight tasks. These inputs and outputs form a failure 'barrier', allowing tasks to be restarted or duplicated as necessary. These barriers must be expanded based on task behavior, such as communication between tasks, but do not prohibit any given behavior. One of the trends in high-performance computing codes seems to be a trend toward self-contained functions that mimic functional programming. Software designers are trending toward a model of software design where their core functions are specifiedmore » in side-effect free or low-side-effect ways, wherein the inputs and outputs of the functions are well-defined. This provides the ability to copy the inputs to wherever they need to be - whether that's the other side of the PCI bus or the other side of the network - do work on that input using local memory, and then copy the outputs back (as needed). This design pattern is popular among new distributed threading environment designs. Such designs include the Barcelona STARS system, distributed OpenMP systems, the Habanero-C and Habanero-Java systems from Vivek Sarkar at Rice University, the HPX/ParalleX model from LSU, as well as our own Scalable Parallel Runtime effort (SPR) and the Trilinos stateless kernels. This design pattern is also shared by CUDA and several OpenMP extensions for GPU-type accelerators (e.g. the PGI OpenMP extensions).« less

  15. THE THERMAL INSTABILITY OF SOLAR PROMINENCE THREADS

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

    Soler, R.; Goossens, M.; Ballester, J. L., E-mail: roberto.soler@wis.kuleuven.be

    The fine structure of solar prominences and filaments appears as thin and long threads in high-resolution images. In H{alpha} observations of filaments, some threads can be observed for only 5-20 minutes before they seem to fade and eventually disappear, suggesting that these threads may have very short lifetimes. The presence of an instability might be the cause of this quick disappearance. Here, we study the thermal instability of prominence threads as an explanation of their sudden disappearance from H{alpha} observations. We model a prominence thread as a magnetic tube with prominence conditions embedded in a coronal environment. We assume amore » variation of the physical properties in the transverse direction so that the temperature and density continuously change from internal to external values in an inhomogeneous transitional layer representing the particular prominence-corona transition region (PCTR) of the thread. We use the nonadiabatic and resistive magnetohydrodynamic equations, which include terms due to thermal conduction parallel and perpendicular to the magnetic field, radiative losses, heating, and magnetic diffusion. We combine both analytical and numerical methods to study linear perturbations from the equilibrium state, focusing on unstable thermal solutions. We find that thermal modes are unstable in the PCTR for temperatures higher than 80,000 K, approximately. These modes are related to temperature disturbances that can lead to changes in the equilibrium due to rapid plasma heating or cooling. For typical prominence parameters, the instability timescale is of the order of a few minutes and is independent of the form of the temperature profile within the PCTR of the thread. This result indicates that thermal instability may play an important role for the short lifetimes of threads in the observations.« less

  16. Aerospace Threaded Fastener Strength in Combined Shear and Tension Loading

    NASA Technical Reports Server (NTRS)

    Steeve, B. E.; Wingate, R. J.

    2012-01-01

    A test program was initiated by Marshall Space Flight Center and sponsored by the NASA Engineering and Safety Center to characterize the failure behavior of a typical high-strength aerospace threaded fastener under a range of shear to tension loading ratios for both a nut and an insert configuration where the shear plane passes through the body and threads, respectively. The testing was performed with a customized test fixture designed to test a bolt with a single shear plane at a discrete range of loading angles. The results provide data to compare against existing combined loading failure criteria and to quantify the bolt strength when the shear plane passes through the threads.

  17. Mobile Thread Task Manager

    NASA Technical Reports Server (NTRS)

    Clement, Bradley J.; Estlin, Tara A.; Bornstein, Benjamin J.

    2013-01-01

    The Mobile Thread Task Manager (MTTM) is being applied to parallelizing existing flight software to understand the benefits and to develop new techniques and architectural concepts for adapting software to multicore architectures. It allocates and load-balances tasks for a group of threads that migrate across processors to improve cache performance. In order to balance-load across threads, the MTTM augments a basic map-reduce strategy to draw jobs from a global queue. In a multicore processor, memory may be "homed" to the cache of a specific processor and must be accessed from that processor. The MTTB architecture wraps access to data with thread management to move threads to the home processor for that data so that the computation follows the data in an attempt to avoid L2 cache misses. Cache homing is also handled by a memory manager that translates identifiers to processor IDs where the data will be homed (according to rules defined by the user). The user can also specify the number of threads and processors separately, which is important for tuning performance for different patterns of computation and memory access. MTTM efficiently processes tasks in parallel on a multiprocessor computer. It also provides an interface to make it easier to adapt existing software to a multiprocessor environment.

  18. Measurement of Sound Speed in Thread

    NASA Astrophysics Data System (ADS)

    Saito, Shigemi; Shibata, Yasuhiro; Ichiki, Akira; Miyazaki, Akiho

    2006-05-01

    By employing thin wires, human hairs and threads, the measurement of sound speed in a thread whose diameter is smaller than 0.2 mm has been attempted. Preparing two cylindrical ceramic transducers with a 300 kHz resonance frequency, a perforated glass bead to be knotted by a sample thread is bonded to the center of the end surface of each transducer. After connecting these transducers with a sample thread, a receiving transducer is attached at a ceiling so as to hang another transmitting transducer with the thread. A glass bead is bonded to another end surface of the transmitting transducer so that tension, varied with a hanged plumb, can be applied to the sample thread. The time delay of the received signal relative to the transmitting pulse is measured while gradually shortening the thread. Sound speed is determined by the proportionality of time delay with thread length. Although the measured values for metallic wires are somewhat different from the values derived from the density and Young’s modulus cited in references, they are reproducible. The sound speed for human hairs of over twenty samples, which varies between 2000 and 2500 m/s, seems to depend on hair quality. Sound speed in a cotton thread is found to approach a constant value under large tension. An advanced measurement system available for uncut threads is also presented, where semi cylindrical transducers pinch the thread.

  19. FR/HR Sewing Thread

    DTIC Science & Technology

    2015-09-01

    position unless so designated by other authorized documents. Citation of trade names in this report does not constitute an official endorsement or...project to design and develop a Fire Resistant (FR) and Heat Resistant (HR) sewing thread. The main goal of the project is to produce sewing threads made...addresses the design , development and testing of various Fire Resistant (FR)/Heat Resistant (HR) sewing threads for US Army applications. Such a sewing

  20. Constant time worker thread allocation via configuration caching

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

    Eichenberger, Alexandre E; O'Brien, John K. P.

    Mechanisms are provided for allocating threads for execution of a parallel region of code. A request for allocation of worker threads to execute the parallel region of code is received from a master thread. Cached thread allocation information identifying prior thread allocations that have been performed for the master thread are accessed. Worker threads are allocated to the master thread based on the cached thread allocation information. The parallel region of code is executed using the allocated worker threads.

  1. Model Checking JAVA Programs Using Java Pathfinder

    NASA Technical Reports Server (NTRS)

    Havelund, Klaus; Pressburger, Thomas

    2000-01-01

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

  2. Threaded-Field-Line Model for the Transition Region and Solar Corona

    NASA Astrophysics Data System (ADS)

    Sokolov, I.; van der Holst, B.; Gombosi, T. I.

    2014-12-01

    In numerical simulations of the solar corona, both for the ambient state and especially for dynamical processes the most computational resources are spent for maintaining the numerical solution in the Low Solar Corona and in the transition region, where the temperature gradients are very sharp and the magnetic field has a complicated topology. The degraded computational efficiency is caused by the need in a highest resolution as well as the use of the fully three-dimensional implicit solver for electron heat conduction. On the other hand, the physical nature of the processes involved is rather simple (which still does not facilitate the numerical methods) as long as the heat fluxes as well as slow plasma motional velocities are aligned with the magnetic field. The Alfven wave turbulence, which is often believed to be the main driver of the solar wind and the main source of the coronal heating, is characterized by the Poynting flux of the waves, which is also aligned with the magnetic field. Therefore, the plasma state in any point of the three-dimensional grid in the Low Solar Corona can be found by solving a set of one-dimensional equations for the magnetic field line ("thread"), which passes through this point and connects it to the chromosphere and to the global Solar Corona. In the present paper we describe an innovative computational technology based upon the use of the magnetic-field-line-threads to forlmulate the boundary condition for the global solar corona model which traces the connection of each boundary point to the cromosphere along the threads.

  3. High-quality AlN epitaxy on nano-patterned sapphire substrates prepared by nano-imprint lithography.

    PubMed

    Zhang, Lisheng; Xu, Fujun; Wang, Jiaming; He, Chenguang; Guo, Weiwei; Wang, Mingxing; Sheng, Bowen; Lu, Lin; Qin, Zhixin; Wang, Xinqiang; Shen, Bo

    2016-11-04

    We report epitaxial growth of AlN films with atomically flat surface on nano-patterned sapphire substrates (NPSS) prepared by nano-imprint lithography. The crystalline quality can be greatly improved by using the optimized 1-μm-period NPSS. The X-ray diffraction ω-scan full width at half maximum values for (0002) and (102) reflections are 171 and 205 arcsec, respectively. The optimized NPSS contribute to eliminating almost entirely the threading dislocations (TDs) originating from the AlN/sapphire interface via bending the dislocations by image force from the void sidewalls before coalescence. In addition, reducing the misorientations of the adjacent regions during coalescence adopting the low lateral growth rate is also essential for decreasing TDs in the upper AlN epilayer.

  4. High-quality AlN epitaxy on nano-patterned sapphire substrates prepared by nano-imprint lithography

    NASA Astrophysics Data System (ADS)

    Zhang, Lisheng; Xu, Fujun; Wang, Jiaming; He, Chenguang; Guo, Weiwei; Wang, Mingxing; Sheng, Bowen; Lu, Lin; Qin, Zhixin; Wang, Xinqiang; Shen, Bo

    2016-11-01

    We report epitaxial growth of AlN films with atomically flat surface on nano-patterned sapphire substrates (NPSS) prepared by nano-imprint lithography. The crystalline quality can be greatly improved by using the optimized 1-μm-period NPSS. The X-ray diffraction ω-scan full width at half maximum values for (0002) and (102) reflections are 171 and 205 arcsec, respectively. The optimized NPSS contribute to eliminating almost entirely the threading dislocations (TDs) originating from the AlN/sapphire interface via bending the dislocations by image force from the void sidewalls before coalescence. In addition, reducing the misorientations of the adjacent regions during coalescence adopting the low lateral growth rate is also essential for decreasing TDs in the upper AlN epilayer.

  5. High-quality AlN epitaxy on nano-patterned sapphire substrates prepared by nano-imprint lithography

    PubMed Central

    Zhang, Lisheng; Xu, Fujun; Wang, Jiaming; He, Chenguang; Guo, Weiwei; Wang, Mingxing; Sheng, Bowen; Lu, Lin; Qin, Zhixin; Wang, Xinqiang; Shen, Bo

    2016-01-01

    We report epitaxial growth of AlN films with atomically flat surface on nano-patterned sapphire substrates (NPSS) prepared by nano-imprint lithography. The crystalline quality can be greatly improved by using the optimized 1-μm-period NPSS. The X-ray diffraction ω-scan full width at half maximum values for (0002) and (102) reflections are 171 and 205 arcsec, respectively. The optimized NPSS contribute to eliminating almost entirely the threading dislocations (TDs) originating from the AlN/sapphire interface via bending the dislocations by image force from the void sidewalls before coalescence. In addition, reducing the misorientations of the adjacent regions during coalescence adopting the low lateral growth rate is also essential for decreasing TDs in the upper AlN epilayer. PMID:27812006

  6. Two years' outcome of thread lifting with absorbable barbed PDO threads: Innovative score for objective and subjective assessment.

    PubMed

    Ali, Yasser Helmy

    2018-02-01

    Thread-lifting rejuvenation procedures have evolved again, with the development of absorbable threads. Although they have gained popularity among plastic surgeons and dermatologists, very few articles have been written in literature about absorbable threads. This study aims to evaluate two years' outcome of thread lifting using absorbable barbed threads for facial rejuvenation. Prospective comparative stud both objectively and subjectively and follow-up assessment for 24 months. Thread lifting for face rejuvenation has significant long-lasting effects that include skin lifting from 3-10 mm and high degree of patients' satisfaction with less incidence rate of complications, about 4.8%. Augmented results are obtained when thread lifting is combined with other lifting and rejuvenation modalities. Significant facial rejuvenation is achieved by thread lifting and highly augmented results are observed when they are combined with Botox, fillers, and/or platelet rich plasma (PRP) rejuvenations.

  7. Too Much Control Can Hurt: A Threaded Cognition Model of the Attentional Blink

    ERIC Educational Resources Information Center

    Taatgen, Niels A.; Juvina, Ion; Schipper, Marc; Borst, Jelmer P.; Martens, Sander

    2009-01-01

    Explanations for the attentional blink (AB; a deficit in identifying the second of two targets when presented 200-500ms after the first) have recently shifted from limitations in memory consolidation to disruptions in cognitive control. With a new model based on the threaded cognition theory of multi-tasking we propose a different explanation: the…

  8. Lack of ubiquitin immunoreactivities at both ends of neuropil threads. Possible bidirectional growth of neuropil threads.

    PubMed

    Iwatsubo, T; Hasegawa, M; Esaki, Y; Ihara, Y

    1992-02-01

    Immunocytochemically, neuropil threads (curly fibers) were investigated in the Alzheimer's disease brain using a confocal laser scanning fluorescence microscope by double labeling with tau/ubiquitin antibodies. Ubiquitin immunoreactivities were found to be lacking at one or both ends in more than 40% of tau-positive threads. Immunoelectron microscopy showed that bundles of paired helical filaments, which constitute neuropil threads, were positive for ubiquitin around their midportions, but often negative at their ends. Since it is reasonable to postulate that tau deposition as paired helical filaments precedes ubiquitination, the aforementioned observation suggests that the ends of the threads are newly formed portions, and thus the threads are often growing bidirectionally in small neuronal processes.

  9. Method for molding threads in graphite panels

    DOEpatents

    Short, W.W.; Spencer, C.

    1994-11-29

    A graphite panel with a hole having a damaged thread is repaired by drilling the hole to remove all of the thread and making a new hole of larger diameter. A bolt with a lubricated thread is placed in the new hole and the hole is packed with graphite cement to fill the hole and the thread on the bolt. The graphite cement is cured, and the bolt is unscrewed therefrom to leave a thread in the cement which is at least as strong as that of the original thread. 8 figures.

  10. Lack of ubiquitin immunoreactivities at both ends of neuropil threads. Possible bidirectional growth of neuropil threads.

    PubMed Central

    Iwatsubo, T.; Hasegawa, M.; Esaki, Y.; Ihara, Y.

    1992-01-01

    Immunocytochemically, neuropil threads (curly fibers) were investigated in the Alzheimer's disease brain using a confocal laser scanning fluorescence microscope by double labeling with tau/ubiquitin antibodies. Ubiquitin immunoreactivities were found to be lacking at one or both ends in more than 40% of tau-positive threads. Immunoelectron microscopy showed that bundles of paired helical filaments, which constitute neuropil threads, were positive for ubiquitin around their midportions, but often negative at their ends. Since it is reasonable to postulate that tau deposition as paired helical filaments precedes ubiquitination, the aforementioned observation suggests that the ends of the threads are newly formed portions, and thus the threads are often growing bidirectionally in small neuronal processes. Images Figure 1 Figure 2 PMID:1310831

  11. A discrete geometric approach for simulating the dynamics of thin viscous threads

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

    Audoly, B., E-mail: audoly@lmm.jussieu.fr; Clauvelin, N.; Brun, P.-T.

    We present a numerical model for the dynamics of thin viscous threads based on a discrete, Lagrangian formulation of the smooth equations. The model makes use of a condensed set of coordinates, called the centerline/spin representation: the kinematic constraints linking the centerline's tangent to the orientation of the material frame is used to eliminate two out of three degrees of freedom associated with rotations. Based on a description of twist inspired from discrete differential geometry and from variational principles, we build a full-fledged discrete viscous thread model, which includes in particular a discrete representation of the internal viscous stress. Consistencymore » of the discrete model with the classical, smooth equations for thin threads is established formally. Our numerical method is validated against reference solutions for steady coiling. The method makes it possible to simulate the unsteady behavior of thin viscous threads in a robust and efficient way, including the combined effects of inertia, stretching, bending, twisting, large rotations and surface tension.« less

  12. Three-dimensional optimization and sensitivity analysis of dental implant thread parameters using finite element analysis.

    PubMed

    Geramizadeh, Maryam; Katoozian, Hamidreza; Amid, Reza; Kadkhodazadeh, Mahdi

    2018-04-01

    This study aimed to optimize the thread depth and pitch of a recently designed dental implant to provide uniform stress distribution by means of a response surface optimization method available in finite element (FE) software. The sensitivity of simulation to different mechanical parameters was also evaluated. A three-dimensional model of a tapered dental implant with micro-threads in the upper area and V-shaped threads in the rest of the body was modeled and analyzed using finite element analysis (FEA). An axial load of 100 N was applied to the top of the implants. The model was optimized for thread depth and pitch to determine the optimal stress distribution. In this analysis, micro-threads had 0.25 to 0.3 mm depth and 0.27 to 0.33 mm pitch, and V-shaped threads had 0.405 to 0.495 mm depth and 0.66 to 0.8 mm pitch. The optimized depth and pitch were 0.307 and 0.286 mm for micro-threads and 0.405 and 0.808 mm for V-shaped threads, respectively. In this design, the most effective parameters on stress distribution were the depth and pitch of the micro-threads based on sensitivity analysis results. Based on the results of this study, the optimal implant design has micro-threads with 0.307 and 0.286 mm depth and pitch, respectively, in the upper area and V-shaped threads with 0.405 and 0.808 mm depth and pitch in the rest of the body. These results indicate that micro-thread parameters have a greater effect on stress and strain values.

  13. Thread-Mounted Thermocouple

    NASA Technical Reports Server (NTRS)

    Ward, Stanley W.

    1988-01-01

    Thread-mounted thermocouple developed to accurately measure temperature of surrounding material. Comprised of threaded rod or bolt drilled along length, dual-hole ceramic insulator rod, thermocouple wire, optional ceramic filler, and epoxy resin. In contact with and takes average temperature of, surrounding material. Fabricated easily in size and metal to suit particular application. Because of simplicity and ability to measure average temperature, widespread use of design foreseen in varity of applications.

  14. Genetic algorithms for protein threading.

    PubMed

    Yadgari, J; Amir, A; Unger, R

    1998-01-01

    Despite many years of efforts, a direct prediction of protein structure from sequence is still not possible. As a result, in the last few years researchers have started to address the "inverse folding problem": Identifying and aligning a sequence to the fold with which it is most compatible, a process known as "threading". In two meetings in which protein folding predictions were objectively evaluated, it became clear that threading as a concept promises a real breakthrough, but that much improvement is still needed in the technique itself. Threading is a NP-hard problem, and thus no general polynomial solution can be expected. Still a practical approach with demonstrated ability to find optimal solutions in many cases, and acceptable solutions in other cases, is needed. We applied the technique of Genetic Algorithms in order to significantly improve the ability of threading algorithms to find the optimal alignment of a sequence to a structure, i.e. the alignment with the minimum free energy. A major progress reported here is the design of a representation of the threading alignment as a string of fixed length. With this representation validation of alignments and genetic operators are effectively implemented. Appropriate data structure and parameters have been selected. It is shown that Genetic Algorithm threading is effective and is able to find the optimal alignment in a few test cases. Furthermore, the described algorithm is shown to perform well even without pre-definition of core elements. Existing threading methods are dependent on such constraints to make their calculations feasible. But the concept of core elements is inherently arbitrary and should be avoided if possible. While a rigorous proof is hard to submit yet an, we present indications that indeed Genetic Algorithm threading is capable of finding consistently good solutions of full alignments in search spaces of size up to 10(70).

  15. Method for molding threads in graphite panels

    DOEpatents

    Short, William W.; Spencer, Cecil

    1994-01-01

    A graphite panel (10) with a hole (11) having a damaged thread (12) is repaired by drilling the hole (11) to remove all of the thread and make a new hole (13) of larger diameter. A bolt (14) with a lubricated thread (17) is placed in the new hole (13) and the hole (13) is packed with graphite cement (16) to fill the hole and the thread on the bolt. The graphite cement (16) is cured, and the bolt is unscrewed therefrom to leave a thread (20) in the cement (16) which is at least as strong as that of the original thread (12).

  16. Conceptual Design Study on Bolts for Self-Loosing Preventable Threaded Fasteners

    NASA Astrophysics Data System (ADS)

    Noma, Atsushi; He, Jianmei

    2017-11-01

    Threaded fasteners using bolts is widely applied in industrial field as well as various fields. However, threaded fasteners using bolts have loosing problems and cause many accidents. In this study, the purpose is to obtain self-loosing preventable threaded fasteners by applying spring characteristic effects on bolt structures. Helical-cutting applied bolt structures is introduced through three dimensional (3D) CAD modeling tools. Analytical approaches for evaluations on the spring characteristic effects helical-cutting applied bolt structures and self-loosing preventable performance of threaded fasteners were performed using finite element method and results are reported. Comparing slackness test results with analytical results and more details on evaluating mechanical properties will be executed in future study.

  17. Project NANO (nanoscience and nanotechnology outreach): a STEM training program that brings SEM's and stereoscopes into high-school and middle-school classrooms

    NASA Astrophysics Data System (ADS)

    Cady, Sherry L.; Blok, Mikel; Grosse, Keith; Wells, Jennifer

    2014-09-01

    The program Project NANO (Nanoscience and Nanotechnology Outreach) enables middle and high school students to discover and research submicroscopic phenomena in a new and exciting way with the use of optical and scanning electron microscopes in the familiar surroundings of their middle or high school classrooms. Project NANO provides secondary level professional development workshops, support for classroom instruction and teacher curriculum development, and the means to deliver Project NANO toolkits (SEM, stereoscope, computer, supplies) to classrooms with Project NANO trained teachers. Evaluation surveys document the impact of the program on student's attitudes toward science and technology and on the learning outcomes for secondary level teachers. Project NANO workshops (offered for professional development credit) enable teachers to gain familiarity using and teaching with the SEM. Teachers also learn to integrate new content knowledge and skills into topic-driven, standards-based units of instruction specifically designed to support the development of students' higher order thinking skills that include problem solving and evidence-based thinking. The Project NANO management team includes a former university science faculty, two high school science teachers, and an educational researcher. To date, over 7500 students have experienced the impact of the Project NANO program, which provides an exciting and effective model for engaging students in the discovery of nanoscale phenomena and concepts in a fun and engaging way.

  18. A multi-threaded version of MCFM

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

    Campbell, John M.; Ellis, R. Keith; Giele, Walter T.

    We report on our findings modifying MCFM using OpenMP to implement multi-threading. By using OpenMP, the modified MCFM will execute on any processor, automatically adjusting to the number of available threads. We then modified the integration routine VEGAS to distribute the event evaluation over the threads, while combining all events at the end of every iteration to optimize the numerical integration. Furthermore, we took special care so that the results of the Monte Carlo integration were independent of the number of threads used, to facilitate the validation of the OpenMP version of MCFM.

  19. A Moiré Pattern-Based Thread Counter

    ERIC Educational Resources Information Center

    Reich, Gary

    2017-01-01

    Thread count is a term used in the textile industry as a measure of how closely woven a fabric is. It is usually defined as the sum of the number of warp threads per inch (or cm) and the number of weft threads per inch. (It is sometimes confusingly described as the number of threads per square inch.) In recent years it has also become a subject of…

  20. Experiments in Aligning Threaded Parts Using a Robot Hand

    NASA Technical Reports Server (NTRS)

    Diftler, M. A.; Walker, I. D.

    1999-01-01

    Techniques for determining and correcting threaded part alignment using force and angular position data are developed to augment currently limited techniques for align- ing threaded parts. These new techniques are based on backspinning a nut with respect to a bolt and measuring the force change that occurs when the bolt "falls" into the nut. Kinematic models that describe the relationship between threaded parts during backspinning are introduced and are used to show how angular alignment may be determined. The models indicate how to distinguish between the aligned and misaligned cases of a bolt and a nut connection by using axial force data only. In addition, by tracking the in-plane relative attitude of the bolt during spinning, data can be obtained on the direction of the angular misalignment which, in turn, is used to correct the misalignment. Results from experiments using a bolt held in a specialized fixture and a three fingers Stanford/JPL hand are presented.

  1. A Moiré Pattern-Based Thread Counter

    NASA Astrophysics Data System (ADS)

    Reich, Gary

    2017-10-01

    Thread count is a term used in the textile industry as a measure of how closely woven a fabric is. It is usually defined as the sum of the number of warp threads per inch (or cm) and the number of weft threads per inch. (It is sometimes confusingly described as the number of threads per square inch.) In recent years it has also become a subject of considerable interest and some controversy among consumers. Many consumers consider thread count to be a key measure of the quality or fineness of a fabric, especially bed sheets, and they seek out fabrics that advertise high counts. Manufacturers in turn have responded to this interest by offering fabrics with ever higher claimed thread counts (sold at ever higher prices), sometime achieving the higher counts by distorting the definition of the term with some "creative math." In 2005 the Federal Trade Commission noted the growing use of thread count in advertising at the retail level and warned of the potential for consumers to be misled by distortions of the definition.

  2. Thread Migration in the Presence of Pointers

    NASA Technical Reports Server (NTRS)

    Cronk, David; Haines, Matthew; Mehrotra, Piyush

    1996-01-01

    Dynamic migration of lightweight threads supports both data locality and load balancing. However, migrating threads that contain pointers referencing data in both the stack and heap remains an open problem. In this paper we describe a technique by which threads with pointers referencing both stack and non-shared heap data can be migrated such that the pointers remain valid after migration. As a result, threads containing pointers can now be migrated between processors in a homogeneous distributed memory environment.

  3. On Designing Lightweight Threads for Substrate Software

    NASA Technical Reports Server (NTRS)

    Haines, Matthew

    1997-01-01

    Existing user-level thread packages employ a 'black box' design approach, where the implementation of the threads is hidden from the user. While this approach is often sufficient for application-level programmers, it hides critical design decisions that system-level programmers must be able to change in order to provide efficient service for high-level systems. By applying the principles of Open Implementation Analysis and Design, we construct a new user-level threads package that supports common thread abstractions and a well-defined meta-interface for altering the behavior of these abstractions. As a result, system-level programmers will have the advantages of using high-level thread abstractions without having to sacrifice performance, flexibility or portability.

  4. Pausing and activating thread state upon pin assertion by external logic monitoring polling loop exit time condition

    DOEpatents

    Chen, Dong; Giampapa, Mark; Heidelberger, Philip; Ohmacht, Martin; Satterfield, David L; Steinmacher-Burow, Burkhard; Sugavanam, Krishnan

    2013-05-21

    A system and method for enhancing performance of a computer which includes a computer system including a data storage device. The computer system includes a program stored in the data storage device and steps of the program are executed by a processer. The processor processes instructions from the program. A wait state in the processor waits for receiving specified data. A thread in the processor has a pause state wherein the processor waits for specified data. A pin in the processor initiates a return to an active state from the pause state for the thread. A logic circuit is external to the processor, and the logic circuit is configured to detect a specified condition. The pin initiates a return to the active state of the thread when the specified condition is detected using the logic circuit.

  5. Exploration of microfluidic devices based on multi-filament threads and textiles: A review

    PubMed Central

    Nilghaz, A.; Ballerini, D. R.; Shen, W.

    2013-01-01

    In this paper, we review the recent progress in the development of low-cost microfluidic devices based on multifilament threads and textiles for semi-quantitative diagnostic and environmental assays. Hydrophilic multifilament threads are capable of transporting aqueous and non-aqueous fluids via capillary action and possess desirable properties for building fluid transport pathways in microfluidic devices. Thread can be sewn onto various support materials to form fluid transport channels without the need for the patterned hydrophobic barriers essential for paper-based microfluidic devices. Thread can also be used to manufacture fabrics which can be patterned to achieve suitable hydrophilic-hydrophobic contrast, creating hydrophilic channels which allow the control of fluids flow. Furthermore, well established textile patterning methods and combination of hydrophilic and hydrophobic threads can be applied to fabricate low-cost microfluidic devices that meet the low-cost and low-volume requirements. In this paper, we review the current limitations and shortcomings of multifilament thread and textile-based microfluidics, and the research efforts to date on the development of fluid flow control concepts and fabrication methods. We also present a summary of different methods for modelling the fluid capillary flow in microfluidic thread and textile-based systems. Finally, we summarized the published works of thread surface treatment methods and the potential of combining multifilament thread with other materials to construct devices with greater functionality. We believe these will be important research focuses of thread- and textile-based microfluidics in future. PMID:24086179

  6. Manufacture of threads with variable pitch by using noncircular gears

    NASA Astrophysics Data System (ADS)

    Slătineanu, L.; Dodun, O.; Coteață, M.; Coman, I.; Nagîț, G.; Beșliu, I.

    2016-08-01

    There are mechanical equipments in which shafts threaded with variable pitch are included. Such a shaft could be met in the case of worm specific to the double enveloping worm gearing. Over the years, the researchers investigated some possibilities to geometrically define and manufacture the shaft zones characterized by a variable pitch. One of the methods able to facilitate the manufacture of threads with variable pitch is based on the use of noncircular gears in the threading kinematic chain for threading by cutting. In order to design the noncircular gears, the mathematical law of pitch variation has to be known. An analysis of pitch variation based on geometrical considerations was developed in the case of a double enveloping globoid worm. Subsequently, on the bases of a proper situation, a numerical model was determined. In this way, an approximately law of pitch variation was determined and it could be taken into consideration when designing the noncircular gears included in the kinematic chain of the cutting machine tool.

  7. Using VoiceThread for Communication in Mathematics Writing

    ERIC Educational Resources Information Center

    McKane, Patricia

    2011-01-01

    'This action research study was conducted on a fourth grade rural classroom in Orange County, N.Y. for the purpose of determining if the use of the VoiceThread program will affect student performance in mathematics writing. A baseline of student performance on this measure was administered in the fall of 2010 using the NYS Holistic rubric of a 3…

  8. Ropes: Support for collective opertions among distributed threads

    NASA Technical Reports Server (NTRS)

    Haines, Matthew; Mehrotra, Piyush; Cronk, David

    1995-01-01

    Lightweight threads are becoming increasingly useful in supporting parallelism and asynchronous control structures in applications and language implementations. Recently, systems have been designed and implemented to support interprocessor communication between lightweight threads so that threads can be exploited in a distributed memory system. Their use, in this setting, has been largely restricted to supporting latency hiding techniques and functional parallelism within a single application. However, to execute data parallel codes independent of other threads in the system, collective operations and relative indexing among threads are required. This paper describes the design of ropes: a scoping mechanism for collective operations and relative indexing among threads. We present the design of ropes in the context of the Chant system, and provide performance results evaluating our initial design decisions.

  9. Crafting threads of diblock copolymer micelles via flow-enabled self-assembly.

    PubMed

    Li, Bo; Han, Wei; Jiang, Beibei; Lin, Zhiqun

    2014-03-25

    Hierarchically assembled amphiphilic diblock copolymer micelles were exquisitely crafted over large areas by capitalizing on two concurrent self-assembling processes at different length scales, namely, the periodic threads composed of a monolayer or a bilayer of diblock copolymer micelles precisely positioned by flow-enabled self-assembly (FESA) on the microscopic scale and the self-assembly of amphiphilic diblock copolymer micelles into ordered arrays within an individual thread on the nanometer scale. A minimum spacing between two adjacent threads λmin was observed. A model was proposed to rationalize the relationship between the thread width and λmin. Such FESA of diblock copolymer micelles is remarkably controllable and easy to implement. It opens up possibilities for lithography-free positioning and patterning of diblock copolymer micelles for various applications in template fabrication of periodic inorganic nanostructures, nanoelectronics, optoelectronics, magnetic devices, and biotechnology.

  10. Automatic Thread-Level Parallelization in the Chombo AMR Library

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

    Christen, Matthias; Keen, Noel; Ligocki, Terry

    2011-05-26

    The increasing on-chip parallelism has some substantial implications for HPC applications. Currently, hybrid programming models (typically MPI+OpenMP) are employed for mapping software to the hardware in order to leverage the hardware?s architectural features. In this paper, we present an approach that automatically introduces thread level parallelism into Chombo, a parallel adaptive mesh refinement framework for finite difference type PDE solvers. In Chombo, core algorithms are specified in the ChomboFortran, a macro language extension to F77 that is part of the Chombo framework. This domain-specific language forms an already used target language for an automatic migration of the large number ofmore » existing algorithms into a hybrid MPI+OpenMP implementation. It also provides access to the auto-tuning methodology that enables tuning certain aspects of an algorithm to hardware characteristics. Performance measurements are presented for a few of the most relevant kernels with respect to a specific application benchmark using this technique as well as benchmark results for the entire application. The kernel benchmarks show that, using auto-tuning, up to a factor of 11 in performance was gained with 4 threads with respect to the serial reference implementation.« less

  11. AN MHD AVALANCHE IN A MULTI-THREADED CORONAL LOOP

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

    Hood, A. W.; Cargill, P. J.; Tam, K. V.

    For the first time, we demonstrate how an MHD avalanche might occur in a multithreaded coronal loop. Considering 23 non-potential magnetic threads within a loop, we use 3D MHD simulations to show that only one thread needs to be unstable in order to start an avalanche even when the others are below marginal stability. This has significant implications for coronal heating in that it provides for energy dissipation with a trigger mechanism. The instability of the unstable thread follows the evolution determined in many earlier investigations. However, once one stable thread is disrupted, it coalesces with a neighboring thread andmore » this process disrupts other nearby threads. Coalescence with these disrupted threads then occurs leading to the disruption of yet more threads as the avalanche develops. Magnetic energy is released in discrete bursts as the surrounding stable threads are disrupted. The volume integrated heating, as a function of time, shows short spikes suggesting that the temporal form of the heating is more like that of nanoflares than of constant heating.« less

  12. Influence of thread shape and inclination on the biomechanical behaviour of plateau implant systems.

    PubMed

    Calì, Michele; Zanetti, Elisabetta Maria; Oliveri, Salvatore Massimo; Asero, Riccardo; Ciaramella, Stefano; Martorelli, Massimo; Bignardi, Cristina

    2018-03-01

    To assess the influence of implant thread shape and inclination on the mechanical behaviour of bone-implant systems. The study assesses which factors influence the initial and full osseointegration stages. Point clouds of the original implant were created using a non-contact reverse engineering technique. A 3D tessellated surface was created using Geomagic Studio ® software. From cross-section curves, generated by intersecting the tessellated model and cutting-planes, a 3D parametric CAD model was created using SolidWorks ® 2017. By the permutation of three thread shapes (rectangular, 30° trapezoidal, 45° trapezoidal) and three thread inclinations (0°, 3° or 6°), nine geometric configurations were obtained. Two different osseointegration stages were analysed: the initial osseointegration and a full osseointegration. In total, 18 different FE models were analysed and two load conditions were applied to each model. The mechanical behaviour of the models was analysed by Finite Element (FE) Analysis using ANSYS ® v. 17.0. Static linear analyses were also carried out. ANOVA was used to assess the influence of each factor. Models with a rectangular thread and 6° inclination provided the best results and reduced displacement in the initial osseointegration stages up to 4.58%. This configuration also reduced equivalent VM stress peaks up to 54%. The same effect was confirmed for the full osseointegration stage, where 6° inclination reduced stress peaks by up to 62%. The FE analysis confirmed the beneficial effect of thread inclination, reducing the displacement in immediate post-operative conditions and equivalent VM stress peaks. Thread shape does not significantly influence the mechanical behaviour of bone-implant systems but contributes to reducing stress peaks in the trabecular bone in both the initial and full osseointegration stages. Copyright © 2018 The Academy of Dental Materials. Published by Elsevier Ltd. All rights reserved.

  13. Airflow structures and nano-particle deposition in a human upper airway model

    NASA Astrophysics Data System (ADS)

    Zhang, Z.; Kleinstreuer, C.

    2004-07-01

    Considering a human upper airway model, or equivalently complex internal flow conduits, the transport and deposition of nano-particles in the 1-150 nm diameter range are simulated and analyzed for cyclic and steady flow conditions. Specifically, using a commercial finite-volume software with user-supplied programs as a solver, the Euler-Euler approach for the fluid-particle dynamics is employed with a low-Reynolds-number k- ω model for laminar-to-turbulent airflow and the mass transfer equation for dispersion of nano-particles or vapors. Presently, the upper respiratory system consists of two connected segments of a simplified human cast replica, i.e., the oral airways from the mouth to the trachea (Generation G0) and an upper tracheobronchial tree model of G0-G3. Experimentally validated computational fluid-particle dynamics results show the following: (i) transient effects in the oral airways appear most prominently during the decelerating phase of the inspiratory cycle; (ii) selecting matching flow rates, total deposition fractions of nano-size particles for cyclic inspiratory flow are not significantly different from those for steady flow; (iii) turbulent fluctuations which occur after the throat can persist downstream to at least Generation G3 at medium and high inspiratory flow rates (i.e., Qin⩾30 l/min) due to the enhancement of flow instabilities just upstream of the flow dividers; however, the effects of turbulent fluctuations on nano-particle deposition are quite minor in the human upper airways; (iv) deposition of nano-particles occurs to a relatively greater extent around the carinal ridges when compared to the straight tubular segments in the bronchial airways; (v) deposition distributions of nano-particles vary with airway segment, particle size, and inhalation flow rate, where the local deposition is more uniformly distributed for large-size particles (say, dp=100 nm) than for small-size particles (say, dp=1 nm); (vi) dilute 1 nm particle

  14. Model Checking with Multi-Threaded IC3 Portfolios

    DTIC Science & Technology

    2015-01-15

    different runs varies randomly depending on the thread interleaving. The use of a portfolio of solvers to maximize the likelihood of a quick solution is...empirically show (cf. Sec. 5.2) that the predictions based on this formula have high accuracy. Note that each solver in the portfolio potentially searches...speedup of over 300. We also show that widening the proof search of ic3 by randomizing its SAT solver is not as effective as paral- lelization

  15. SWAYING THREADS OF A SOLAR FILAMENT

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

    Lin, Y.; Engvold, O.; Langangen, Oe.

    From recent high-resolution observations obtained with the Swedish 1 m Solar Telescope in La Palma, we detect swaying motions of individual filament threads in the plane of the sky. The oscillatory characters of these motions are comparable with oscillatory Doppler signals obtained from corresponding filament threads. Simultaneous recordings of motions in the line of sight and in the plane of the sky give information about the orientation of the oscillatory plane. These oscillations are interpreted in the context of the magnetohydrodynamic (MHD) theory. Kink MHD waves supported by the thread body are proposed as an explanation of the observed threadmore » oscillations. On the basis of this interpretation and by means of seismological arguments, we give an estimation of the thread Alfven speed and magnetic field strength by means of seismological arguments.« less

  16. Red Thread Found on Bermuda Grass

    Treesearch

    T. H. Filer

    1966-01-01

    Red thread fungus (Corticium fuciforme (Berk.) Wakef.) was observed in 1965 and 1966 on Bermuda grass (Cynodon dactylon) on lawns in Leland, Mississippi. Red thread is a serious disease on fescues but has not previously been reported on Bermuda grass.

  17. Large Scale Document Inversion using a Multi-threaded Computing System.

    PubMed

    Jung, Sungbo; Chang, Dar-Jen; Park, Juw Won

    2017-06-01

    Current microprocessor architecture is moving towards multi-core/multi-threaded systems. This trend has led to a surge of interest in using multi-threaded computing devices, such as the Graphics Processing Unit (GPU), for general purpose computing. We can utilize the GPU in computation as a massive parallel coprocessor because the GPU consists of multiple cores. The GPU is also an affordable, attractive, and user-programmable commodity. Nowadays a lot of information has been flooded into the digital domain around the world. Huge volume of data, such as digital libraries, social networking services, e-commerce product data, and reviews, etc., is produced or collected every moment with dramatic growth in size. Although the inverted index is a useful data structure that can be used for full text searches or document retrieval, a large number of documents will require a tremendous amount of time to create the index. The performance of document inversion can be improved by multi-thread or multi-core GPU. Our approach is to implement a linear-time, hash-based, single program multiple data (SPMD), document inversion algorithm on the NVIDIA GPU/CUDA programming platform utilizing the huge computational power of the GPU, to develop high performance solutions for document indexing. Our proposed parallel document inversion system shows 2-3 times faster performance than a sequential system on two different test datasets from PubMed abstract and e-commerce product reviews. •Information systems➝Information retrieval • Computing methodologies➝Massively parallel and high-performance simulations.

  18. Equivalent-Continuum Modeling of Nano-Structured Materials

    NASA Technical Reports Server (NTRS)

    Odegard, Gregory M.; Gates, Thomas S.; Nicholson, Lee M.; Wise, Kristopher E.

    2001-01-01

    A method has been developed for modeling structure-property relationships of nano-structured materials. This method serves as a link between computational chemistry and solid mechanics by substituting discrete molecular structures with an equivalent-continuum model. It has been shown that this substitution may be accomplished by equating the vibrational potential energy of a nano-structured material with the strain energy of representative truss and continuum models. As an important example with direct application to the development and characterization of single-walled carbon nanotubes, the model has been applied to determine the effective continuum geometry of a graphene sheet. A representative volume element of the equivalent-continuum model has been developed with an effective thickness. This effective thickness has been shown to be similar to, but slightly smaller than, the interatomic spacing of graphite.

  19. Multi-scale Modeling and Analysis of Nano-RFID Systems on HPC Setup

    NASA Astrophysics Data System (ADS)

    Pathak, Rohit; Joshi, Satyadhar

    In this paper we have worked out on some the complex modeling aspects such as Multi Scale modeling, MATLAB Sugar based modeling and have shown the complexities involved in the analysis of Nano RFID (Radio Frequency Identification) systems. We have shown the modeling and simulation and demonstrated some novel ideas and library development for Nano RFID. Multi scale modeling plays a very important role in nanotech enabled devices properties of which cannot be explained sometimes by abstraction level theories. Reliability and packaging still remains one the major hindrances in practical implementation of Nano RFID based devices. And to work on them modeling and simulation will play a very important role. CNTs is the future low power material that will replace CMOS and its integration with CMOS, MEMS circuitry will play an important role in realizing the true power in Nano RFID systems. RFID based on innovations in nanotechnology has been shown. MEMS modeling of Antenna, sensors and its integration in the circuitry has been shown. Thus incorporating this we can design a Nano-RFID which can be used in areas like human implantation and complex banking applications. We have proposed modeling of RFID using the concept of multi scale modeling to accurately predict its properties. Also we give the modeling of MEMS devices that are proposed recently that can see possible application in RFID. We have also covered the applications and the advantages of Nano RFID in various areas. RF MEMS has been matured and its devices are being successfully commercialized but taking it to limits of nano domains and integration with singly chip RFID needs a novel approach which is being proposed. We have modeled MEMS based transponder and shown the distribution for multi scale modeling for Nano RFID.

  20. Energy-aware Thread and Data Management in Heterogeneous Multi-core, Multi-memory Systems

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

    Su, Chun-Yi

    By 2004, microprocessor design focused on multicore scaling—increasing the number of cores per die in each generation—as the primary strategy for improving performance. These multicore processors typically equip multiple memory subsystems to improve data throughput. In addition, these systems employ heterogeneous processors such as GPUs and heterogeneous memories like non-volatile memory to improve performance, capacity, and energy efficiency. With the increasing volume of hardware resources and system complexity caused by heterogeneity, future systems will require intelligent ways to manage hardware resources. Early research to improve performance and energy efficiency on heterogeneous, multi-core, multi-memory systems focused on tuning a single primitivemore » or at best a few primitives in the systems. The key limitation of past efforts is their lack of a holistic approach to resource management that balances the tradeoff between performance and energy consumption. In addition, the shift from simple, homogeneous systems to these heterogeneous, multicore, multi-memory systems requires in-depth understanding of efficient resource management for scalable execution, including new models that capture the interchange between performance and energy, smarter resource management strategies, and novel low-level performance/energy tuning primitives and runtime systems. Tuning an application to control available resources efficiently has become a daunting challenge; managing resources in automation is still a dark art since the tradeoffs among programming, energy, and performance remain insufficiently understood. In this dissertation, I have developed theories, models, and resource management techniques to enable energy-efficient execution of parallel applications through thread and data management in these heterogeneous multi-core, multi-memory systems. I study the effect of dynamic concurrent throttling on the performance and energy of multi-core, non-uniform memory

  1. Molecular modeling in structural nano-toxicology: interactions of nano-particles with nano-machinery of cells.

    PubMed

    Yanamala, Naveena; Kagan, Valerian E; Shvedova, Anna A

    2013-12-01

    Over the past two decades, nanotechnology has emerged as a key player in various disciplines of science and technology. Some of the most exciting applications are in the field of biomedicine - for theranostics (for combined diagnostic and therapeutic purposes) as well as for exploration of biological systems. A detailed understanding of the molecular interactions between nanoparticles and biological nano-machinery - macromolecules, membranes, and intracellular organelles - is crucial for obtaining adequate information on mechanisms of action of nanomaterials as well as a perspective on the long term effects of these materials and their possible toxicological outcomes. This review focuses on the use of structure-based computational molecular modeling as a tool to understand and to predict the interactions between nanomaterials and nano-biosystems. We review major approaches and provide examples of computational analysis of the structural principles behind such interactions. A rationale on how nanoparticles of different sizes, shape, structure and chemical properties can affect the organization and functions of nano-machinery of cells is also presented. Published by Elsevier B.V.

  2. Silicon carbide sewing thread

    NASA Technical Reports Server (NTRS)

    Sawko, Paul M. (Inventor)

    1995-01-01

    Composite flexible multilayer insulation systems (MLI) were evaluated for thermal performance and compared with currently used fibrous silica (baseline) insulation system. The systems described are multilayer insulations consisting of alternating layers of metal foil and scrim ceramic cloth or vacuum metallized polymeric films quilted together using ceramic thread. A silicon carbide thread for use in the quilting and the method of making it are also described. These systems provide lightweight thermal insulation for a variety of uses, particularly on the surface of aerospace vehicles subject to very high temperatures during flight.

  3. Current-induced SQUID behavior of superconducting Nb nano-rings

    NASA Astrophysics Data System (ADS)

    Sharon, Omri J.; Shaulov, Avner; Berger, Jorge; Sharoni, Amos; Yeshurun, Yosef

    2016-06-01

    The critical temperature in a superconducting ring changes periodically with the magnetic flux threading it, giving rise to the well-known Little-Parks magnetoresistance oscillations. Periodic changes of the critical current in a superconducting quantum interference device (SQUID), consisting of two Josephson junctions in a ring, lead to a different type of magnetoresistance oscillations utilized in detecting extremely small changes in magnetic fields. Here we demonstrate current-induced switching between Little-Parks and SQUID magnetoresistance oscillations in a superconducting nano-ring without Josephson junctions. Our measurements in Nb nano-rings show that as the bias current increases, the parabolic Little-Parks magnetoresistance oscillations become sinusoidal and eventually transform into oscillations typical of a SQUID. We associate this phenomenon with the flux-induced non-uniformity of the order parameter along a superconducting nano-ring, arising from the superconducting leads (‘arms’) attached to it. Current enhanced phase slip rates at the points with minimal order parameter create effective Josephson junctions in the ring, switching it into a SQUID.

  4. Threaded Cognition: An Integrated Theory of Concurrent Multitasking

    ERIC Educational Resources Information Center

    Salvucci, Dario D.; Taatgen, Niels A.

    2008-01-01

    The authors propose the idea of threaded cognition, an integrated theory of concurrent multitasking--that is, performing 2 or more tasks at once. Threaded cognition posits that streams of thought can be represented as threads of processing coordinated by a serial procedural resource and executed across other available resources (e.g., perceptual…

  5. Multi-threading: A new dimension to massively parallel scientific computation

    NASA Astrophysics Data System (ADS)

    Nielsen, Ida M. B.; Janssen, Curtis L.

    2000-06-01

    Multi-threading is becoming widely available for Unix-like operating systems, and the application of multi-threading opens new ways for performing parallel computations with greater efficiency. We here briefly discuss the principles of multi-threading and illustrate the application of multi-threading for a massively parallel direct four-index transformation of electron repulsion integrals. Finally, other potential applications of multi-threading in scientific computing are outlined.

  6. Screw-Thread Inserts As Temporary Flow Restrictors

    NASA Technical Reports Server (NTRS)

    Trimarchi, Paul

    1992-01-01

    Coil-spring screw-thread inserts found useful as temporary flow restrictors. Inserts placed in holes through which flow restricted, effectively reducing cross sections available for flow. Friction alone holds inserts against moderate upstream pressures. Use of coil-spring thread inserts as flow restrictors conceived as inexpensive solution to problem of adjusting flow of oxygen through orifices in faceplate into hydrogen/oxygen combustion chamber. Installation and removal of threaded inserts gentle enough not to deform orifice tubes.

  7. Influence of Micro Threads Alteration on Osseointegration and Primary Stability of Implants: An FEA and In Vivo Analysis in Rabbits.

    PubMed

    Chowdhary, Ramesh; Halldin, Anders; Jimbo, Ryo; Wennerberg, Ann

    2015-06-01

    To describe the early bone tissue response to implants with and without micro threads designed to the full length of an oxidized titanium implant. A pair of two-dimensional finite element models was designed using a computer aided three-dimensional interactive application files of an implant model with micro threads in between macro threads and one without micro threads. Oxidized titanium implants with (test implants n=20) and without (control implants n=20) micro thread were prepared. A total of 12 rabbits were used and each received four implants. Insertion torque while implant placement and removal torque analysis after 4 weeks was performed in nine rabbits, and histomorphometric analysis in three rabbits, respectively. Finite element analysis showed less stress accumulation in test implant models with 31Mpa when compared with 62.2 Mpa in control implant model. Insertion and removal torque analysis did not show any statistical significance between the two implant designs. At 4 weeks, there was a significant difference between the two groups in the percentage of new bone volume and bone-to-implant contact in the femur (p< .05); however, not in the tibia. The effect of micro threads was prominent in the femur suggesting that micro threads promote bone formation. The stress distribution supported by the micro threads was especially effective in the cancellous bone. © 2013 Wiley Periodicals, Inc.

  8. Multi-thread parallel algorithm for reconstructing 3D large-scale porous structures

    NASA Astrophysics Data System (ADS)

    Ju, Yang; Huang, Yaohui; Zheng, Jiangtao; Qian, Xu; Xie, Heping; Zhao, Xi

    2017-04-01

    Geomaterials inherently contain many discontinuous, multi-scale, geometrically irregular pores, forming a complex porous structure that governs their mechanical and transport properties. The development of an efficient reconstruction method for representing porous structures can significantly contribute toward providing a better understanding of the governing effects of porous structures on the properties of porous materials. In order to improve the efficiency of reconstructing large-scale porous structures, a multi-thread parallel scheme was incorporated into the simulated annealing reconstruction method. In the method, four correlation functions, which include the two-point probability function, the linear-path functions for the pore phase and the solid phase, and the fractal system function for the solid phase, were employed for better reproduction of the complex well-connected porous structures. In addition, a random sphere packing method and a self-developed pre-conditioning method were incorporated to cast the initial reconstructed model and select independent interchanging pairs for parallel multi-thread calculation, respectively. The accuracy of the proposed algorithm was evaluated by examining the similarity between the reconstructed structure and a prototype in terms of their geometrical, topological, and mechanical properties. Comparisons of the reconstruction efficiency of porous models with various scales indicated that the parallel multi-thread scheme significantly shortened the execution time for reconstruction of a large-scale well-connected porous model compared to a sequential single-thread procedure.

  9. High precision optomechanical assembly using threads as mechanical reference

    NASA Astrophysics Data System (ADS)

    Lamontagne, Frédéric; Desnoyers, Nichola; Bergeron, Guy; Cantin, Mario

    2016-09-01

    A convenient method to assemble optomechanical components is to use threaded interface. For example, lenses are often secured inside barrels using threaded rings. In other cases, multiple optical sub-assemblies such as lens barrels can be threaded to each other. Threads have the advantage to provide a simple assembly method, to be easy to manufacture, and to offer a compact mechanical design. On the other hand, threads are not considered to provide accurate centering between parts because of the assembly clearance between the inner and outer threads. For that reason, threads are often used in conjunction with precision cylindrical surfaces to limit the radial clearance between the parts to be centered. Therefore, tight manufacturing tolerances are needed on these pilot diameters, which affect the cost of the optical assembly. This paper presents a new optomechanical approach that uses threads as mechanical reference. This innovative method relies on geometric principles to auto-center parts to each other with a very low centering error that is usually less than 5 μm. The method allows to auto-center an optical group in a main barrel, to perform an axial adjustment of an optical group inside a main barrel, and to perform stacking of multiple barrels. In conjunction with the lens auto-centering method that also used threads as a mechanical reference, this novel solution opens new possibilities to realize a variety of different high precision optomechanical assemblies at lower cost.

  10. Long-term effect of the insoluble thread-lifting technique.

    PubMed

    Fukaya, Mototsugu

    2017-01-01

    Although the thread-lifting technique for sagging faces has become more common and popular, medical literature evaluating its effects is scarce. Studies on its long-term prognosis are particularly uncommon. One hundred individuals who had previously undergone insoluble thread-lifting were retrospectively investigated. Photos in frontal and oblique views from the first and last visits were evaluated by six female individuals by guessing the patients' ages. The mean guessed age was defined as the apparent age, and the difference between the real and apparent ages was defined as the youth value. The difference between the youth values before and after the thread-lift was defined as the rejuvenation effect and analyzed in relation to the time since the operation, the number of threads used and the number of thread-lift operations performed. The rejuvenation effect decreased over the first year after the operation, but showed an increasing trend thereafter. The rejuvenation effect increased with the number of threads used and the number of thread-lift operations performed. The insoluble thread-lifting technique appears to be associated with both early and late effects. The rejuvenation effect appeared to decrease during the first year, but increased thereafter. A multicenter trial is necessary to confirm these findings.

  11. Programming Models for Concurrency and Real-Time

    NASA Astrophysics Data System (ADS)

    Vitek, Jan

    Modern real-time applications are increasingly large, complex and concurrent systems which must meet stringent performance and predictability requirements. Programming those systems require fundamental advances in programming languages and runtime systems. This talk presents our work on Flexotasks, a programming model for concurrent, real-time systems inspired by stream-processing and concurrent active objects. Some of the key innovations in Flexotasks are that it support both real-time garbage collection and region-based memory with an ownership type system for static safety. Communication between tasks is performed by channels with a linear type discipline to avoid copying messages, and by a non-blocking transactional memory facility. We have evaluated our model empirically within two distinct implementations, one based on Purdue’s Ovm research virtual machine framework and the other on Websphere, IBM’s production real-time virtual machine. We have written a number of small programs, as well as a 30 KLOC avionics collision detector application. We show that Flexotasks are capable of executing periodic threads at 10 KHz with a standard deviation of 1.2us and have performance competitive with hand coded C programs.

  12. Large Scale Document Inversion using a Multi-threaded Computing System

    PubMed Central

    Jung, Sungbo; Chang, Dar-Jen; Park, Juw Won

    2018-01-01

    Current microprocessor architecture is moving towards multi-core/multi-threaded systems. This trend has led to a surge of interest in using multi-threaded computing devices, such as the Graphics Processing Unit (GPU), for general purpose computing. We can utilize the GPU in computation as a massive parallel coprocessor because the GPU consists of multiple cores. The GPU is also an affordable, attractive, and user-programmable commodity. Nowadays a lot of information has been flooded into the digital domain around the world. Huge volume of data, such as digital libraries, social networking services, e-commerce product data, and reviews, etc., is produced or collected every moment with dramatic growth in size. Although the inverted index is a useful data structure that can be used for full text searches or document retrieval, a large number of documents will require a tremendous amount of time to create the index. The performance of document inversion can be improved by multi-thread or multi-core GPU. Our approach is to implement a linear-time, hash-based, single program multiple data (SPMD), document inversion algorithm on the NVIDIA GPU/CUDA programming platform utilizing the huge computational power of the GPU, to develop high performance solutions for document indexing. Our proposed parallel document inversion system shows 2-3 times faster performance than a sequential system on two different test datasets from PubMed abstract and e-commerce product reviews. CCS Concepts •Information systems➝Information retrieval • Computing methodologies➝Massively parallel and high-performance simulations. PMID:29861701

  13. CNT coated thread micro-electro-mechanical system for finger proprioception sensing

    NASA Astrophysics Data System (ADS)

    Shafi, A. A.; Wicaksono, D. H. B.

    2017-04-01

    In this paper, we aim to fabricate cotton thread based sensor for proprioceptive application. Cotton threads are utilized as the structural component of flexible sensors. The thread is coated with multi-walled carbon nanotube (MWCNT) dispersion by using facile conventional dipping-drying method. The electrical characterization of the coated thread found that the resistance per meter of the coated thread decreased with increasing the number of dipping. The CNT coated thread sensor works based on piezoresistive theory in which the resistance of the coated thread changes when force is applied. This thread sensor is sewed on glove at the index finger between middle and proximal phalanx parts and the resistance change is measured upon grasping mechanism. The thread based microelectromechanical system (MEMS) enables the flexible sensor to easily fit perfectly on the finger joint and gives reliable response as proprioceptive sensing.

  14. Influence of fine threads and platform-switching on crestal bone stress around implant-a three-dimensional finite element analysis.

    PubMed

    Khurana, Pardeep; Sharma, Arun; Sodhi, Kiranmeet Kaur

    2013-12-01

    The aims of this study were to investigate the effect of implant fine threads on crestal bone stress compared to a standard smooth implant collar and to analyze how different abutment diameters influenced the crestal bone stress level. Three-dimensional finite element imaging was used to create a cross-sectional model in SolidWorks 2007 software of an implant (5-mm platform and 10 mm in length) placed in the premolar region of the mandible. The implant model was created to resemble a commercially available fine thread implant. Abutments of different diameters (5.0 mm: standard, 4.5 mm, 4.0 mm, and 3.5 mm) were loaded with a force of 100 N at 90° vertical and 40° oblique angles. Finite element analysis was done in COSMOSWorks software, which was used to analyze the stress patterns in bone, especially in the crestal region. Upon loading, the fine thread implant model had greater stress at the crestal bone adjacent to the implant than the smooth neck implant in both vertical and oblique loading. When the abutment diameter decreased progressively from 5.0 mm to 4.5 mm to 4 mm and to 3.5 mm the thread model showed a reduction of stress at the crestal bone level from 23.2 MPa to 15.02 MPa for fine thread and from 22.7 to 13.5 MPa for smooth collar implant group after vertical loading and from 43.7 MPa to 33.1 MPa in fine thread model and from 36.9 to 20.5 MPa in smooth collar implant model after oblique loading. Fine threads increase crestal stress upon loading. Reduced abutment diameter that is platform switching resulted in less stress translated to the crestal bone in the fine thread and smooth neck.

  15. Symbolic Analysis of Concurrent Programs with Polymorphism

    NASA Technical Reports Server (NTRS)

    Rungta, Neha Shyam

    2010-01-01

    The current trend of multi-core and multi-processor computing is causing a paradigm shift from inherently sequential to highly concurrent and parallel applications. Certain thread interleavings, data input values, or combinations of both often cause errors in the system. Systematic verification techniques such as explicit state model checking and symbolic execution are extensively used to detect errors in such systems [7, 9]. Explicit state model checking enumerates possible thread schedules and input data values of a program in order to check for errors [3, 9]. To partially mitigate the state space explosion from data input values, symbolic execution techniques substitute data input values with symbolic values [5, 7, 6]. Explicit state model checking and symbolic execution techniques used in conjunction with exhaustive search techniques such as depth-first search are unable to detect errors in medium to large-sized concurrent programs because the number of behaviors caused by data and thread non-determinism is extremely large. We present an overview of abstraction-guided symbolic execution for concurrent programs that detects errors manifested by a combination of thread schedules and data values [8]. The technique generates a set of key program locations relevant in testing the reachability of the target locations. The symbolic execution is then guided along these locations in an attempt to generate a feasible execution path to the error state. This allows the execution to focus in parts of the behavior space more likely to contain an error.

  16. THREADED ADAPTOR FOR LUGGED PIPE ENDS

    DOEpatents

    Robb, J.E.

    1962-06-01

    An adaptor is designed for enabling a threaded part to be connected to a member at a region having lugs normally receiving bayonet slots of another part for attachment of the latter. It has been found desirable to replace a closure cap connected in a bayonet joint to the end of a coolant tube containing nuclear- reactor fuel elements, with a threaded valve. An adaptor is used which has J- slots receiving lugs on the end of the reactor tube, a thread for connection with the valve, and gear-tooth section enabling a gear-type of tool to rotate the adaptor to seal the valve to the end of the reactor tube. (AEC)

  17. Screw-Thread Standards for Federal Services, 1957. Handbook H28 (1957), Part 3

    DTIC Science & Technology

    1957-09-01

    MOUNTING THREADS PHOTOGRAPHIC EQUIPMENT THREADS ISO METRIC THREADS; MISCELLANEOUS THREADS CLASS 5 INTERFERENCE-FIT THREADS, TRIAL STANDARD WRENCH...Bibliography on measurement of pitch diameter by means of wires 60 Appendix 14. Metric screw-thread standards 61 1. ISO thread profiles...61 2. Standard series for ISO metric threads 62 3. Designations for ISO metric threads 62 Tables Page Table XII. 1.—Basic

  18. Thread selection according to power characteristics during context switching on compute nodes

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

    Archer, Charles J.; Blocksome, Michael A.; Randles, Amanda E.

    Methods, apparatus, and products are disclosed for thread selection during context switching on a plurality of compute nodes that includes: executing, by a compute node, an application using a plurality of threads of execution, including executing one or more of the threads of execution; selecting, by the compute node from a plurality of available threads of execution for the application, a next thread of execution in dependence upon power characteristics for each of the available threads; determining, by the compute node, whether criteria for a thread context switch are satisfied; and performing, by the compute node, the thread context switchmore » if the criteria for a thread context switch are satisfied, including executing the next thread of execution.« less

  19. Debugging a high performance computing program

    DOEpatents

    Gooding, Thomas M.

    2013-08-20

    Methods, apparatus, and computer program products are disclosed for debugging a high performance computing program by gathering lists of addresses of calling instructions for a plurality of threads of execution of the program, assigning the threads to groups in dependence upon the addresses, and displaying the groups to identify defective threads.

  20. Debugging a high performance computing program

    DOEpatents

    Gooding, Thomas M.

    2014-08-19

    Methods, apparatus, and computer program products are disclosed for debugging a high performance computing program by gathering lists of addresses of calling instructions for a plurality of threads of execution of the program, assigning the threads to groups in dependence upon the addresses, and displaying the groups to identify defective threads.

  1. Topical perspective on massive threading and parallelism.

    PubMed

    Farber, Robert M

    2011-09-01

    Unquestionably computer architectures have undergone a recent and noteworthy paradigm shift that now delivers multi- and many-core systems with tens to many thousands of concurrent hardware processing elements per workstation or supercomputer node. GPGPU (General Purpose Graphics Processor Unit) technology in particular has attracted significant attention as new software development capabilities, namely CUDA (Compute Unified Device Architecture) and OpenCL™, have made it possible for students as well as small and large research organizations to achieve excellent speedup for many applications over more conventional computing architectures. The current scientific literature reflects this shift with numerous examples of GPGPU applications that have achieved one, two, and in some special cases, three-orders of magnitude increased computational performance through the use of massive threading to exploit parallelism. Multi-core architectures are also evolving quickly to exploit both massive-threading and massive-parallelism such as the 1.3 million threads Blue Waters supercomputer. The challenge confronting scientists in planning future experimental and theoretical research efforts--be they individual efforts with one computer or collaborative efforts proposing to use the largest supercomputers in the world is how to capitalize on these new massively threaded computational architectures--especially as not all computational problems will scale to massive parallelism. In particular, the costs associated with restructuring software (and potentially redesigning algorithms) to exploit the parallelism of these multi- and many-threaded machines must be considered along with application scalability and lifespan. This perspective is an overview of the current state of threading and parallelize with some insight into the future. Published by Elsevier Inc.

  2. Gold thread implantation promotes hair growth in human and mice

    PubMed Central

    Kim, Jong-Hwan; Cho, Eun-Young; Kwon, Euna; Kim, Woo-Ho; Park, Jin-Sung; Lee, Yong-Soon

    2017-01-01

    Thread-embedding therapy has been widely applied for cosmetic purposes such as wrinkle reduction and skin tightening. Particularly, gold thread was reported to support connective tissue regeneration, but, its role in hair biology remains largely unknown due to lack of investigation. When we implanted gold thread and Happy Lift™ in human patient for facial lifting, we unexpectedly found an increase of hair regrowth in spite of no use of hair growth medications. When embedded into the depilated dorsal skin of mice, gold thread or polyglycolic acid (PGA) thread, similarly to 5% minoxidil, significantly increased the number of hair follicles on day 14 after implantation. And, hair re-growth promotion in the gold threadimplanted mice were significantly higher than that in PGA thread group on day 11 after depilation. In particular, the skin tissue of gold thread-implanted mice showed stronger PCNA staining and higher collagen density compared with control mice. These results indicate that gold thread implantation can be an effective way to promote hair re-growth although further confirmatory study is needed for more information on therapeutic mechanisms and long-term safety. PMID:29399026

  3. Carbon Nanotube Thread Electrochemical Cell: Detection of Heavy Metals.

    PubMed

    Zhao, Daoli; Siebold, David; Alvarez, Noe T; Shanov, Vesselin N; Heineman, William R

    2017-09-19

    In this work, all three electrodes in an electrochemical cell were fabricated based on carbon nanotube (CNT) thread. CNT thread partially insulated with a thin polystyrene coating to define the microelectrode area was used as the working electrode; bare CNT thread was used as the auxiliary electrode; and a micro quasi-reference electrode was fabricated by electroplating CNT thread with Ag and then anodizing it in chloride solution to form a layer of AgCl. The Ag|AgCl coated CNT thread electrode provided a stable potential comparable to the conventional liquid-junction type Ag|AgCl reference electrode. The CNT thread auxiliary electrode provided a stable current, which is comparable to a Pt wire auxiliary electrode. This all-CNT thread three electrode cell has been evaluated as a microsensor for the simultaneous determination of trace levels of heavy metal ions by anodic stripping voltammetry (ASV). Hg 2+ , Cu 2+ , and Pb 2+ were used as a representative system for this study. The calculated detection limits (based on the 3σ method) with a 120 s deposition time are 1.05, 0.53, and 0.57 nM for Hg 2+ , Cu 2+ , and Pb 2+ , respectively. These electrodes significantly reduce the dimensions of the conventional three electrode electrochemical cell to the microscale.

  4. Modeling and analysis of sub-surface leakage current in nano-MOSFET under cutoff regime

    NASA Astrophysics Data System (ADS)

    Swami, Yashu; Rai, Sanjeev

    2017-02-01

    The high leakage current in nano-meter regimes is becoming a significant portion of power dissipation in nano-MOSFET circuits as threshold voltage, channel length, and gate oxide thickness are scaled down to nano-meter range. Precise leakage current valuation and meticulous modeling of the same at nano-meter technology scale is an increasingly a critical work in designing the low power nano-MOSFET circuits. We present a specific compact model for sub-threshold regime leakage current in bulk driven nano-MOSFETs. The proposed logical model is instigated and executed into the latest updated PTM bulk nano-MOSFET model and is found to be in decent accord with technology-CAD simulation data. This paper also reviews various transistor intrinsic leakage mechanisms for nano-MOSFET exclusively in weak inversion, like drain-induced barricade lowering (DIBL), gate-induced drain leakage (GIDL), gate oxide tunneling (GOT) leakage etc. The root cause of the sub-surface leakage current is mainly due to the nano-scale short channel length causing source-drain coupling even in sub-threshold domain. Consequences leading to carriers triumphing the barricade between the source and drain. The enhanced model effectively considers the following parameter dependence in the account for better-quality value-added results like drain-to-source bias (VDS), gate-to-source bias (VGS), channel length (LG), source/drain junction depth (Xj), bulk doping concentration (NBULK), and operating temperature (Top).

  5. Threaded Discussion Instructional Strategies and Student Performance

    ERIC Educational Resources Information Center

    Krull, Rodger Pratt

    2013-01-01

    Educators need insight into what instructional strategies are effective in the online environment, but few researchers have contrasted threaded discussion strategies and measures of student performance using a quantitative approach. Also, the effectiveness of threaded discussion strategies across all student generation groups or between genders is…

  6. Developing eThread pipeline using SAGA-pilot abstraction for large-scale structural bioinformatics.

    PubMed

    Ragothaman, Anjani; Boddu, Sairam Chowdary; Kim, Nayong; Feinstein, Wei; Brylinski, Michal; Jha, Shantenu; Kim, Joohyun

    2014-01-01

    While most of computational annotation approaches are sequence-based, threading methods are becoming increasingly attractive because of predicted structural information that could uncover the underlying function. However, threading tools are generally compute-intensive and the number of protein sequences from even small genomes such as prokaryotes is large typically containing many thousands, prohibiting their application as a genome-wide structural systems biology tool. To leverage its utility, we have developed a pipeline for eThread--a meta-threading protein structure modeling tool, that can use computational resources efficiently and effectively. We employ a pilot-based approach that supports seamless data and task-level parallelism and manages large variation in workload and computational requirements. Our scalable pipeline is deployed on Amazon EC2 and can efficiently select resources based upon task requirements. We present runtime analysis to characterize computational complexity of eThread and EC2 infrastructure. Based on results, we suggest a pathway to an optimized solution with respect to metrics such as time-to-solution or cost-to-solution. Our eThread pipeline can scale to support a large number of sequences and is expected to be a viable solution for genome-scale structural bioinformatics and structure-based annotation, particularly, amenable for small genomes such as prokaryotes. The developed pipeline is easily extensible to other types of distributed cyberinfrastructure.

  7. 46 CFR 164.023-7 - Performance; non-standard thread.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... 46 Shipping 6 2010-10-01 2010-10-01 false Performance; non-standard thread. 164.023-7 Section 164... Performance; non-standard thread. (a) Use Codes 1, 2, 3, 4BC, 4RB, 5 (any). Each non-standard thread which...) testing machine. (2) Single strand breaking strength (after weathering). After exposure in a sunshine...

  8. 46 CFR 164.023-7 - Performance; non-standard thread.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... 46 Shipping 6 2011-10-01 2011-10-01 false Performance; non-standard thread. 164.023-7 Section 164... Performance; non-standard thread. (a) Use Codes 1, 2, 3, 4BC, 4RB, 5 (any). Each non-standard thread which...) testing machine. (2) Single strand breaking strength (after weathering). After exposure in a sunshine...

  9. Unpicking the signal thread of the sector web spider Zygiella x-notata

    PubMed Central

    Mortimer, Beth; Holland, Chris; Windmill, James F. C.; Vollrath, Fritz

    2015-01-01

    Remote sensing allows an animal to extend its morphology with appropriate conductive materials and sensors providing environmental feedback from spatially removed locations. For example, the sector web spider Zygiella x-notata uses a specialized thread as both a structural bridge and signal transmitter to monitor web vibrations from its retreat at the web perimeter. To unravel this model multifunctional system, we investigated Zygiella's signal thread structure with a range of techniques, including tensile testing, laser vibrometry, electron microscopy and behavioural analysis. We found that signal threads varied significantly in the number of filaments; a result of the spider adding a lifeline each time it runs along the bridge. Our mechanical property analysis suggests that while the structure varies, its normalized load does not. We propose that the signal thread represents a complex and fully integrated multifunctional structure where filaments can be added, thus increasing absolute load-bearing capacity while maintaining signal fidelity. We conclude that such structures may serve as inspiration for remote sensing design strategies. PMID:26674191

  10. Self-cleaning threaded rod spinneret for high-efficiency needleless electrospinning

    NASA Astrophysics Data System (ADS)

    Zheng, Gaofeng; Jiang, Jiaxin; Wang, Xiang; Li, Wenwang; Zhong, Weizheng; Guo, Shumin

    2018-07-01

    High-efficiency production of nanofibers is the key to the application of electrospinning technology. This work focuses on multi-jet electrospinning, in which a threaded rod electrode is utilized as the needless spinneret to achieve high-efficiency production of nanofibers. A slipper block, which fits into and moves through the threaded rod, is designed to transfer polymer solution evenly to the surface of the rod spinneret. The relative motion between the slipper block and the threaded rod electrode promotes the instable fluctuation of the solution surface, thus the rotation of threaded rod electrode decreases the critical voltage for the initial multi-jet ejection and the diameter of nanofibers. The residual solution on the surface of threaded rod is cleaned up by the moving slipper block, showing a great self-cleaning ability, which ensures the stable multi-jet ejection and increases the productivity of nanofibers. Each thread of the threaded rod electrode serves as an independent spinneret, which enhances the electric field strength and constrains the position of the Taylor cone, resulting in high productivity of uniform nanofibers. The diameter of nanofibers decreases with the increase of threaded rod rotation speed, and the productivity increases with the solution flow rate. The rotation of electrode provides an excess force for the ejection of charged jets, which also contributes to the high-efficiency production of nanofibers. The maximum productivity of nanofibers from the threaded rod spinneret is 5-6 g/h, about 250-300 times as high as that from the single-needle spinneret. The self-cleaning threaded rod spinneret is an effective way to realize continuous multi-jet electrospinning, which promotes industrial applications of uniform nanofibrous membrane.

  11. Fabrication of drug-loaded electrospun aligned fibrous threads for suture applications.

    PubMed

    He, Chuang-Long; Huang, Zheng-Ming; Han, Xiao-Jian

    2009-04-01

    In this work, drug-loaded fibers and threads were successfully fabricated by combining electrospinning with aligned fibers collection. Two different electrospinning processes, that is, blend and coaxial electrospinning, to incorporate a model drug tetracycline hydrochloride (TCH) into poly(L-lactic acid) (PLLA) fibers have been used and compared with each other. The resulting composite ultrafine fibers and threads were characterized through scanning electron microscopy, transmission electron microscopy, Fourier transform infrared spectroscopy, X-ray diffraction, differential scanning calorimetry, and tensile testing. It has been shown that average diameters of the fibers made from the same polymer concentration depended on the processing method. The blend TCH/PLLA fibers showed the smallest fiber diameter, whereas neat PLLA fibers and core-shell TCH-PLLA fibers showed a larger proximal average diameter. Higher rotating speed of a wheel collector is helpful for obtaining better-aligned fibers. Both the polymer and the drug in the electrospun fibers have poor crystalline property. In vitro release study indicated that threads made from the core-shell fibers could suppress the initial burst release and provide a sustained drug release useful for the release of growth factor or other therapeutic drugs. On the other hand, the threads from the blend fibers produced a large initial burst release that may be used to prevent bacteria infection. A combination of these results suggests that electrospinning technique provides a novel way to fabricate medical agents-loaded fibrous threads for tissue suturing and tissue regeneration applications. Copyright 2008 Wiley Periodicals, Inc.

  12. Formation and Evolution of a Multi-Threaded Prominence

    NASA Technical Reports Server (NTRS)

    Luna, M.; Karpen, J. T.; DeVore, C. R.

    2012-01-01

    We investigate the process of formation and subsequent evolution of prominence plasma in a filament channel and its overlying arcade. We construct a three-dimensional time-dependent model of a filament-channel prominence suitable to be compared with observations. We combine this magnetic field structure with one-dimensional independent simulations of many flux tubes. The magnetic structure is a three-dimensional sheared double arcade, and the thermal non-equilibrium process governs the plasma evolution. We have found that the condensations in the corona can be divided into two populations: threads and blobs. Threads are massive condensations that linger in the field line dips. Blobs are ubiquitous small condensations that are produced throughout the filament and overlying arcade magnetic structure, and rapidly fall to the chromosphere. The total prominence mass is in agreement with observations. The threads are the principal contributors to the total mass, whereas the blob contribution is small. The motion of the threads is basically horizontal, while blobs move in all directions along the field. The peak velocities for both populations are comparable, but there is a weak tendency for the velocity to increase with the inclination, and the blobs with motion near vertical have the largest values of the velocity. We have generated synthetic images of the whole structure in an H proxy and in two EUV channels of the AIA instrument aboard SDO. These images show the plasma at cool, warm and hot temperatures. The theoretical differential emission measure of our system agrees very well with observations in the temperature range log T = 4.6-5.7. We conclude that the sheared-arcade magnetic structure and plasma dynamics fit well the abundant observational evidence.

  13. Thread selection according to predefined power characteristics during context switching on compute nodes

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

    None, None

    Methods, apparatus, and products are disclosed for thread selection during context switching on a plurality of compute nodes that includes: executing, by a compute node, an application using a plurality of threads of execution, including executing one or more of the threads of execution; selecting, by the compute node from a plurality of available threads of execution for the application, a next thread of execution in dependence upon power characteristics for each of the available threads; determining, by the compute node, whether criteria for a thread context switch are satisfied; and performing, by the compute node, the thread context switchmore » if the criteria for a thread context switch are satisfied, including executing the next thread of execution.« less

  14. An MPI-1 Compliant Thread-Based Implementation

    NASA Astrophysics Data System (ADS)

    Díaz Martín, J. C.; Rico Gallego, J. A.; Álvarez Llorente, J. M.; Perogil Duque, J. F.

    This work presents AzequiaMPI, the first full compliant implementation of the MPI-1 standard where the MPI node is a thread. Performance comparisons with MPICH2-Nemesis show that thread-based implementations exploit adequately the multicore architectures under oversubscription, what could make MPI competitive with OpenMP-like solutions.

  15. SEM and fractography analysis of screw thread loosening in dental implants.

    PubMed

    Scarano, A; Quaranta, M; Traini, T; Piattelli, M; Piattelli, A

    2007-01-01

    Biological and technical failures of implants have already been reported. Mechanical factors are certainly of importance in implant failures, even if their exact nature has not yet been established. The abutment screw fracture or loosening represents a rare, but quite unpleasant failure. The aim of the present research is an analysis and structural examination of screw thread or abutment loosening compared with screw threads or abutment without loosening. The loosening of screw threads was compared to screw thread without loosening of three different implant systems; Branemark (Nobel Biocare, Gothenburg, Sweden), T.B.R. implant systems (Benax, Ancona, Italy) and Restore (Lifecore Biomedical, Chaska, Minnesota, USA). In this study broken screws were excluded. A total of 16 screw thread loosenings were observed (Group I) (4 Branemark, 4 T.B.R and 5 Restore), 10 screw threads without loosening were removed (Group II), and 6 screw threads as received by the manufacturer (unused) (Group III) were used as control (2 Branemark, 2 T.B.R and 2 Restore). The loosened abutment screws were retrieved and analyzed under SEM. Many alterations and deformations were present in concavities and convexities of screw threads in group I. No macroscopic alterations or deformations were observed in groups II and III. A statistical difference of the presence of microcracks were observed between screw threads with an abutment loosening and screw threads without an abutment loosening.

  16. Developing an Effective Model for Shale Gas Flow in Nano-scale Pore Clusters based on FIB-SEM Images

    NASA Astrophysics Data System (ADS)

    Jiang, W. B.; Lin, M.; Yi, Z. X.; Li, H. S.

    2016-12-01

    Nano-scale pores existed in the form of clusters are the controlling void space in shale gas reservoir. Gas transport in nanopores which has a significant influence on shale gas' recoverability displays multiple transport regimes, including viscous, slippage flow and Knudsen diffusion. In addition, it is also influenced by pore space characteristics. For convenience and efficiency consideration, it is necessary to develop an upscaling model from nano pore to pore cluster scale. Existing models are more like framework functions that provide a format, because the parameters that represent pore space characteristics are underdetermined and may have multiple possibilities. Therefore, it is urgent to make them clear and obtained a model that is closer to reality. FIB-SEM imaging technology is able to acquire three dimensional images with nanometer resolution that nano pores can be visible. Based on the images of two shale samples, we used a high-precision pore network extraction algorithm to generate equivalent pore networks and simulate multiple regime (non-Darcy) flow in it. Several structural parameters can be obtained through pore network modelling. It is found that although the throat-radius distributions are very close, throat flux-radius distributions of different samples can be divided into two categories. The variation of tortuosity with pressure and the overall trend of throat-flux distribution changes with pressure are disclosed. A deeper understanding of shale gas flow in nano-scale pore clusters is obtained. After all, an upscaling model that connects absolute permeability, apparent permeability and other characteristic parameters is proposed, and the best parameter scheme considering throat number-radius distribution and flowing porosity for this model is selected out of three schemes based on pore scale results, and it can avoid multiple-solution problem and is useful in reservoir modelling and experiment result analysis, etc. This work is supported by

  17. Thread angle dependency on flame spread shape over kenaf/polyester combined fabric

    NASA Astrophysics Data System (ADS)

    Azahari Razali, Mohd; Sapit, Azwan; Nizam Mohammed, Akmal; Nor Anuar Mohamad, Md; Nordin, Normayati; Sadikin, Azmahani; Faisal Hushim, Mohd; Jaat, Norrizam; Khalid, Amir

    2017-09-01

    Understanding flame spread behavior is crucial to Fire Safety Engineering. It is noted that the natural fiber exhibits different flame spread behavior than the one of the synthetic fiber. This different may influences the flame spread behavior over combined fabric. There is a research has been done to examined the flame spread behavior over kenaf/polyester fabric. It is seen that the flame spread shape is dependent on the thread angle dependency. However, the explanation of this phenomenon is not described in detail in that research. In this study, explanation about this phenomenon is given in detail. Results show that the flame spread shape is dependent on the position of synthetic thread. For thread angle, θ = 0°, the polyester thread is breaking when the flame approach to the thread and the kenaf thread tends to move to the breaking direction. This behavior produces flame to be ‘V’ shape. However, for thread angle, θ = 90°, the polyester thread melts while the kenaf thread decomposed and burned. At this angle, the distance between kenaf threads remains constant as flame approaches.

  18. Modeling and control for micro and nano manipulation

    NASA Astrophysics Data System (ADS)

    Wejinya, Uchechukwu C.

    handling and deposition of micro and nano entities such as carbon nanotubes (CNT), DNA, and for droplet control. The novel microfluidic end effector system with force sensing can significantly improve the success rate for handling/depositing micro/nano entities in the case of carbon nanotubes between micro electrodes. The design, calibration, and experimental implementation of the novel microfluidic end effector is carried out in this research. The experimental results show the success rate for carbon nanotube(s) deposition between micro electrodes can reach close to 80%. Furthermore, carbon nanotubes are of particular interest because they are good candidates for many electronics and sensing applications. The interests in using carbon nanotubes to manufacture electronics and sensors have increased in recent years because of the increase need for making electronics smaller, and their excellent electrical and mechanical properties. These potentials can be achieved if CNTs with semiconducting and metallic band structure can be successfully deposited and separated. The use of dielectrophoresis (DEP) has been established as a course towards the efficient deposition and separation of metallic carbon nanotubes from semiconducting carbon nanotubes. For this reason, this research presents a new mathematical model for dielectrophoresis and electrorotation of carbon nanotubes. Simulation results are presented in this research to validate the developed model. The combination of both the micro robotic manipulation system and the atomic force microscopy (AFM) based nano-robotic system will provide a powerful tool for micro and nano manipulation. Additional applications of this research are endless considering the rapid development of micro and nano technologies.

  19. High Efficiency Carbon Nanotube Thread Antennas

    NASA Astrophysics Data System (ADS)

    Bengio, Elie; Senic, Damir; Taylor, Lauren; Tsentalovich, Dmitri; Chen, Peiyu; Holloway, Christopher; Novotny, David; Babakhani, Aydin; Long, Christopher; Booth, James; Orloff, Nathan; Pasquali, Matteo

    Although previous research has explored the underlying theory of high-frequency behavior of carbon nanotubes (CNTs) and CNT bundles for antennas, there is a gap in the literature for direct experimental measurements of radiation efficiency. Here we report a novel measurement technique to accurately characterize the radiation efficiency of quarter-wavelength monopole antennas made from CNT thread. At medical device (1 GHz) and Wi-Fi (2.4 GHz) frequencies, we measured the highest absolute values of radiation efficiency in the literature for CNT antennas, matching that of copper wire. We also report the first direct experimental observation that, contrary to metals, the radiation efficiency of the CNT thread improves significantly at higher frequencies. These results pave the way for practical applications of CNT thread antennas, particularly in the aerospace and wearable electronics industries where weight saving is a priority.

  20. Do dual-thread orthodontic mini-implants improve bone/tissue mechanical retention?

    PubMed

    Lin, Yang-Sung; Chang, Yau-Zen; Yu, Jian-Hong; Lin, Chun-Li

    2014-12-01

    The aim of this study was to understand whether the pitch relationship between micro and macro thread designs with a parametrical relationship in a dual-thread mini-implant can improve primary stability. Three types of mini-implants consisting of single-thread (ST) (0.75 mm pitch in whole length), dual-thread A (DTA) with double-start 0.375 mm pitch, and dual-thread B (DTB) with single-start 0.2 mm pitch in upper 2-mm micro thread region for performing insertion and pull-out testing. Histomorphometric analysis was performed in these specimens in evaluating peri-implant bone defects using a non-contact vision measuring system. The maximum inserted torque (Tmax) in type DTA was found to be the smallest significantly, but corresponding values found no significant difference between ST and DTB. The largest pull-out strength (Fmax) in the DTA mini-implant was found significantly greater than that for the ST mini-implant regardless of implant insertion orientation. Mini-implant engaged the cortical bone well as observed in ST and DTA types. Dual-thread mini-implant with correct micro thread pitch (parametrical relationship with macro thread pitch) in the cortical bone region can improve primary stability and enhanced mechanical retention.

  1. Development of Thread-compatible Open Source Stack

    NASA Astrophysics Data System (ADS)

    Zimmermann, Lukas; Mars, Nidhal; Schappacher, Manuel; Sikora, Axel

    2017-07-01

    The Thread protocol is a recent development based on 6LoWPAN (IPv6 over IEEE 802.15.4), but with extensions regarding a more media independent approach, which - additionally - also promises true interoperability. To evaluate and analyse the operation of a Thread network a given open source 6LoWPAN stack for embedded devices (emb::6) has been extended in order to comply with the Thread specification. The implementation covers Mesh Link Establishment (MLE) and network layer functionality as well as 6LoWPAN mesh under routing mechanism based on MAC short addresses. The development has been verified on a virtualization platform and allows dynamical establishment of network topologies based on Thread’s partitioning algorithm.

  2. The measure method of internal screw thread and the measure device design

    NASA Astrophysics Data System (ADS)

    Hu, Dachao; Chen, Jianguo

    2008-12-01

    In accordance with the principle of Three-Line, this paper analyzed the correlation of every main parameter of internal screw thread, and then designed a device to measure the main parameters of internal screw thread. Basis on the measured value and corresponding formula calculation, we can get the internal thread parameters, such as the pitch diameter, thread angle and screw-pitch of common screw thread, terraced screw thread, zigzag screw thread and some else. The practical application has proved that this operation of this device is convenience, and the measured dates have a high accuracy. Meanwhile, the application of this device's patent of invention is accepted by the Patent Office. (The filing number: 200710044081.5)

  3. Supporting Graduate Student Writers with VoiceThread

    ERIC Educational Resources Information Center

    Gonzalez, Michelle; Moore, Noreen S.

    2018-01-01

    This qualitative case study examined the influence of the use of VoiceThread technology on the feedback process for thesis writing in two online asynchronous graduate courses. The influence on instructor feedback process and graduate student writers' perceptions of the use of VoiceThread were the foci of the study. Master's-level students (n = 18)…

  4. Dynamics of threading dislocations in porous heteroepitaxial GaN films

    NASA Astrophysics Data System (ADS)

    Gutkin, M. Yu.; Rzhavtsev, E. A.

    2017-12-01

    Behavior of threading dislocations in porous heteroepitaxial gallium nitride (GaN) films has been studied using computer simulation by the two-dimensional discrete dislocation dynamics approach. A computational scheme, where pores are modeled as cross sections of cylindrical cavities, elastically interacting with unidirectional parallel edge dislocations, which imitate threading dislocations, is used. Time dependences of coordinates and velocities of each dislocation from dislocation ensembles under investigation are obtained. Visualization of current structure of dislocation ensemble is performed in the form of a location map of dislocations at any time. It has been shown that the density of appearing dislocation structures significantly depends on the ratio of area of a pore cross section to area of the simulation region. In particular, increasing the portion of pores surface on the layer surface up to 2% should lead to about a 1.5-times decrease of the final density of threading dislocations, and increase of this portion up to 15% should lead to approximately a 4.5-times decrease of it.

  5. To be nano or not to be nano?

    NASA Astrophysics Data System (ADS)

    Joachim, Christian

    2005-02-01

    Nanomaterials, nanostructures, nanostructured materials, nanoimprint, nanobiotechnology, nanophysics, nanochemistry, radical nanotechnology, nanosciences, nanooptics, nanoelectronics, nanorobotics, nanosoldiers, nanomedecine, nanoeconomy, nanobusiness, nanolawyer, nanoethics to name a few of the nanos. We need a clear definition of all these burgeoning fields for the sake of the grant attribution, for the sake of research program definition, and to avoid everyone being lost in so many nanos.

  6. Contributions to systemic analysis for worm screw production using thread whirling devices

    NASA Astrophysics Data System (ADS)

    Cretu, G.

    2017-08-01

    The paper aims to achieve a systemic analysis of worms processing using whirling threaded devices with highlighting all the factors involved in this system. It will also carry out an analysis of these factors depending on specific conditions such machining. Are also presented the stages of experimentation program and ways of processing for data obtained.

  7. Using Discrete Event Simulation for Programming Model Exploration at Extreme-Scale: Macroscale Components for the Structural Simulation Toolkit (SST).

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

    Wilke, Jeremiah J; Kenny, Joseph P.

    2015-02-01

    Discrete event simulation provides a powerful mechanism for designing and testing new extreme- scale programming models for high-performance computing. Rather than debug, run, and wait for results on an actual system, design can first iterate through a simulator. This is particularly useful when test beds cannot be used, i.e. to explore hardware or scales that do not yet exist or are inaccessible. Here we detail the macroscale components of the structural simulation toolkit (SST). Instead of depending on trace replay or state machines, the simulator is architected to execute real code on real software stacks. Our particular user-space threading frameworkmore » allows massive scales to be simulated even on small clusters. The link between the discrete event core and the threading framework allows interesting performance metrics like call graphs to be collected from a simulated run. Performance analysis via simulation can thus become an important phase in extreme-scale programming model and runtime system design via the SST macroscale components.« less

  8. Using the CMS threaded framework in a production environment

    DOE PAGES

    Jones, C. D.; Contreras, L.; Gartung, P.; ...

    2015-12-23

    During 2014, the CMS Offline and Computing Organization completed the necessary changes to use the CMS threaded framework in the full production environment. We will briefly discuss the design of the CMS Threaded Framework, in particular how the design affects scaling performance. We will then cover the effort involved in getting both the CMSSW application software and the workflow management system ready for using multiple threads for production. Finally, we will present metrics on the performance of the application and workflow system as well as the difficulties which were uncovered. As a result, we will end with CMS' plans formore » using the threaded framework to do production for LHC Run 2.« less

  9. Neuropil threads occur in dendrites of tangle-bearing nerve cells.

    PubMed

    Braak, H; Braak, E

    1988-01-01

    Transparent Golgi preparations counterstained for Alzheimer's neurofibrillary changes rendered possible the demonstration of neuropil threads in defined cellular processes. Only dendrites of tangle-bearing cortical nerve cells were found to contain neuropil threads. Processes of glial cells as well as axons present in the material were devoid of neuropil threads.

  10. A Primer on the Effective Use of Threaded Discussion Forums.

    ERIC Educational Resources Information Center

    Kirk, James J.; Orr, Robert L.

    Threaded discussion forums are asynchronous, World Wide Web-based discussions occurring under a number of different topics called threads. By allowing students to post, read, and respond to messages independently of time or place, threaded discussion forums give students an opportunity for deeper reflection and more thoughtful replies than chat…

  11. Fatigue acceptance test limit criterion for larger diameter rolled thread fasteners

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

    Kephart, A.R.

    1997-05-01

    This document describes a fatigue lifetime acceptance test criterion by which studs having rolled threads, larger than 1.0 inches in diameter, can be assured to meet minimum quality attributes associated with a controlled rolling process. This criterion is derived from a stress dependent, room temperature air fatigue database for test studs having a 0.625 inch diameter threads of Alloys X-750 HTH and direct aged 625. Anticipated fatigue lives of larger threads are based on thread root elastic stress concentration factors which increase with increasing thread diameters. Over the thread size range of interest, a 30% increase in notch stress ismore » equivalent to a factor of five (5X) reduction in fatigue life. The resulting diameter dependent fatigue acceptance criterion is normalized to the aerospace rolled thread acceptance standards for a 1.0 inch diameter, 0.125 inch pitch, Unified National thread with a controlled Root radius (UNR). Testing was conducted at a stress of 50% of the minimum specified material ultimate strength, 80 Ksi, and at a stress ratio (R) of 0.10. Limited test data for fastener diameters of 1.00 to 2.25 inches are compared to the acceptance criterion. Sensitivity of fatigue life of threads to test nut geometry variables was also shown to be dependent on notch stress conditions. Bearing surface concavity of the compression nuts and thread flank contact mismatch conditions can significantly affect the fastener fatigue life. Without improved controls these conditions could potentially provide misleading acceptance data. Alternate test nut geometry features are described and implemented in the rolled thread stud specification, MIL-DTL-24789(SH), to mitigate the potential effects on fatigue acceptance data.« less

  12. Meandering instability of a viscous thread

    NASA Astrophysics Data System (ADS)

    Morris, Stephen W.; Dawes, Jonathan H. P.; Ribe, Neil M.; Lister, John R.

    2008-06-01

    A viscous thread falling from a nozzle onto a surface exhibits the famous rope-coiling effect, in which the thread buckles to form loops. If the surface is replaced by a belt moving with speed U , the rotational symmetry of the buckling instability is broken and a wealth of interesting states are observed [see S. Chiu-Webster and J. R. Lister, J. Fluid Mech. 569, 89 (2006)]. We experimentally studied this “fluid-mechanical sewing machine” in a more precise apparatus. As U is reduced, the steady catenary thread bifurcates into a meandering state in which the thread displacements are only transverse to the motion of the belt. We measured the amplitude and frequency ω of the meandering close to the bifurcation. For smaller U , single-frequency meandering bifurcates to a two-frequency “figure-8” state, which contains a significant 2ω component and parallel as well as transverse displacements. This eventually reverts to single-frequency coiling at still smaller U . More complex, highly hysteretic states with additional frequencies are observed for larger nozzle heights. We propose to understand this zoology in terms of the generic amplitude equations appropriate for resonant interactions between two oscillatory modes with frequencies ω and 2ω . The form of the amplitude equations captures both the axisymmetry of the U=0 coiling state and the symmetry-breaking effects induced by the moving belt.

  13. Meandering instability of a viscous thread.

    PubMed

    Morris, Stephen W; Dawes, Jonathan H P; Ribe, Neil M; Lister, John R

    2008-06-01

    A viscous thread falling from a nozzle onto a surface exhibits the famous rope-coiling effect, in which the thread buckles to form loops. If the surface is replaced by a belt moving with speed U , the rotational symmetry of the buckling instability is broken and a wealth of interesting states are observed [see S. Chiu-Webster and J. R. Lister, J. Fluid Mech. 569, 89 (2006)]. We experimentally studied this "fluid-mechanical sewing machine" in a more precise apparatus. As U is reduced, the steady catenary thread bifurcates into a meandering state in which the thread displacements are only transverse to the motion of the belt. We measured the amplitude and frequency omega of the meandering close to the bifurcation. For smaller U , single-frequency meandering bifurcates to a two-frequency "figure-8" state, which contains a significant 2omega component and parallel as well as transverse displacements. This eventually reverts to single-frequency coiling at still smaller U . More complex, highly hysteretic states with additional frequencies are observed for larger nozzle heights. We propose to understand this zoology in terms of the generic amplitude equations appropriate for resonant interactions between two oscillatory modes with frequencies omega and 2omega . The form of the amplitude equations captures both the axisymmetry of the U=0 coiling state and the symmetry-breaking effects induced by the moving belt.

  14. Time Series Modeling of Nano-Gold Immunochromatographic Assay via Expectation Maximization Algorithm.

    PubMed

    Zeng, Nianyin; Wang, Zidong; Li, Yurong; Du, Min; Cao, Jie; Liu, Xiaohui

    2013-12-01

    In this paper, the expectation maximization (EM) algorithm is applied to the modeling of the nano-gold immunochromatographic assay (nano-GICA) via available time series of the measured signal intensities of the test and control lines. The model for the nano-GICA is developed as the stochastic dynamic model that consists of a first-order autoregressive stochastic dynamic process and a noisy measurement. By using the EM algorithm, the model parameters, the actual signal intensities of the test and control lines, as well as the noise intensity can be identified simultaneously. Three different time series data sets concerning the target concentrations are employed to demonstrate the effectiveness of the introduced algorithm. Several indices are also proposed to evaluate the inferred models. It is shown that the model fits the data very well.

  15. NanoJapan: international research experience for undergraduates program: fostering U.S.-Japan research collaborations in terahertz science and technology of nanostructures

    NASA Astrophysics Data System (ADS)

    Phillips, Sarah R.; Matherly, Cheryl A.; Kono, Junichiro

    2014-09-01

    The international nature of science and engineering research demands that students have the skillsets necessary to collaborate internationally. However, limited options exist for science and engineering undergraduates who want to pursue research abroad. The NanoJapan International Research Experience for Undergraduates Program is an innovative response to this need. Developed to foster research and international engagement among young undergraduate students, it is funded by a National Science Foundation Partnerships for International Research and Education (PIRE) grant. Each summer, NanoJapan sends 12 U.S. students to Japan to conduct research internships with world leaders in terahertz (THz) spectroscopy, nanophotonics, and ultrafast optics. The students participate in cutting-edge research projects managed within the framework of the U.S-Japan NSF-PIRE collaboration. One of our focus topics is THz science and technology of nanosystems (or `TeraNano'), which investigates the physics and applications of THz dynamics of carriers and phonons in nanostructures and nanomaterials. In this article, we will introduce the program model, with specific emphasis on designing high-quality international student research experiences. We will specifically address the program curriculum that introduces students to THz research, Japanese language, and intercultural communications, in preparation for work in their labs. Ultimately, the program aims to increase the number of U.S. students who choose to pursue graduate study in this field, while cultivating a generation of globally aware engineers and scientists who are prepared for international research collaboration.

  16. In-vivo assessment of barbed suturing thread with regard to tissue reaction and material absorption in a rat model.

    PubMed

    Petrut, Bogdan; Hogea, Maximiliam; Fetica, Bogdan; Kozan, Andrei; Feflea, Dragos; Sererman, Gabriel; Goezen, Ali Serdar; Rassweiler, Jens

    2013-01-01

    The laparoscopic approach in urological surgery demands a high degree of skill in intracorporeal suturing and knot tying. In an effort to reduce the amount of time required to perform a suture, new materials have been developed that through selfanchorage distribute tension more evenly across the suture and also eliminate the need of knot tying. The goal of this study was to assess the in vivo tissue response to a novel material (V-Loc tm; Covidien) in comparison to established materials (Vicryl, PDS II), in the case of bladder suturing, in a rat model. The study included 48 male Wistar rats. All underwent a median abdominal incision, with a 1cm cystotomy, followed by a running suture. The suture material used was either V-Loc absorbable self anchoring thread, Vicryl threaded absorbable suture or monofilament absorbable suture. The abdominal cavity and the bladder suture were macroscopically evaluated at the rats' scheduled death at 3 and 6 weeks. The bladder wall was microscopically assessed by a pathologist, with regard to tissue reaction and suture material degradation. All rats survived the procedure, with the abdominal scar fully healed at week 2. There were no signs of infection or lithiasis during the observation. Macroscopically, at 3 weeks, the suture material was recognizable and visible in all cases, with special mention that the V-Loc thread was considerably more rigid, retaining its shape almost entirely, and provoked more adhesion of the surrounding tissue. At 6 weeks, the suture was indistinguishable in the bladder wall in the case of monofilament absorbable material, barely visible in the case of Vicryl, while the aspect of the V-Loc suture resembled the one at 3 weeks, with the material still clearly visible in the bladder wall, shape almost entirely maintained, and surrounding tissue adherence. Microscopically, at 3 weeks and 6 weeks, all bladder walls examined had regained their structure. At 3 weeks, the monofilament absorbable suture showed

  17. In-vivo assessment of barbed suturing thread with regard to tissue reaction and material absorption in a rat model

    PubMed Central

    PETRUT, BOGDAN; HOGEA, MAXIMILIAM; FETICA, BOGDAN; KOZAN, ANDREI; FEFLEA, DRAGOS; SERERMAN, GABRIEL; GOEZEN, ALI SERDAR; RASSWEILER, JENS

    2013-01-01

    Aim The laparoscopic approach in urological surgery demands a high degree of skill in intracorporeal suturing and knot tying. In an effort to reduce the amount of time required to perform a suture, new materials have been developed that through selfanchorage distribute tension more evenly across the suture and also eliminate the need of knot tying. The goal of this study was to assess the in vivo tissue response to a novel material (V-Loc tm; Covidien) in comparison to established materials (Vicryl, PDS II), in the case of bladder suturing, in a rat model. Methods The study included 48 male Wistar rats. All underwent a median abdominal incision, with a 1cm cystotomy, followed by a running suture. The suture material used was either V-Loc absorbable self anchoring thread, Vicryl threaded absorbable suture or monofilament absorbable suture. The abdominal cavity and the bladder suture were macroscopically evaluated at the rats’ scheduled death at 3 and 6 weeks. The bladder wall was microscopically assessed by a pathologist, with regard to tissue reaction and suture material degradation. Results All rats survived the procedure, with the abdominal scar fully healed at week 2. There were no signs of infection or lithiasis during the observation. Macroscopically, at 3 weeks, the suture material was recognizable and visible in all cases, with special mention that the V-Loc thread was considerably more rigid, retaining its shape almost entirely, and provoked more adhesion of the surrounding tissue. At 6 weeks, the suture was indistinguishable in the bladder wall in the case of monofilament absorbable material, barely visible in the case of Vicryl, while the aspect of the V-Loc suture resembled the one at 3 weeks, with the material still clearly visible in the bladder wall, shape almost entirely maintained, and surrounding tissue adherence. Microscopically, at 3 weeks and 6 weeks, all bladder walls examined had regained their structure. At 3 weeks, the monofilament

  18. Protein Structure Prediction by Protein Threading

    NASA Astrophysics Data System (ADS)

    Xu, Ying; Liu, Zhijie; Cai, Liming; Xu, Dong

    The seminal work of Bowie, Lüthy, and Eisenberg (Bowie et al., 1991) on "the inverse protein folding problem" laid the foundation of protein structure prediction by protein threading. By using simple measures for fitness of different amino acid types to local structural environments defined in terms of solvent accessibility and protein secondary structure, the authors derived a simple and yet profoundly novel approach to assessing if a protein sequence fits well with a given protein structural fold. Their follow-up work (Elofsson et al., 1996; Fischer and Eisenberg, 1996; Fischer et al., 1996a,b) and the work by Jones, Taylor, and Thornton (Jones et al., 1992) on protein fold recognition led to the development of a new brand of powerful tools for protein structure prediction, which we now term "protein threading." These computational tools have played a key role in extending the utility of all the experimentally solved structures by X-ray crystallography and nuclear magnetic resonance (NMR), providing structural models and functional predictions for many of the proteins encoded in the hundreds of genomes that have been sequenced up to now.

  19. Effect of thread shape on screw stress concentration by photoelastic measurements

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

    Dragoni, E.

    1994-11-01

    The screw stress concentration for six nut-bolt connections embodying three different thread profiles and two nut shapes is measured photoelastically. Buttress (nearly zero flank angle), trapezoidal (15-deg flank angle), and triangular (30-deg flank angle) thread forms are examined in combination with standard and lip-type nuts. The effect of the thread profile on the screw stress concentration appears to be dependent upon the kind of nut considered. If the fastening incorporates a standard nut, the buttress thread is stronger than the triangular one, which, in turn, behaves better than the trapezoidal contour. The improvement is roughly a 20% reduction in themore » stress concentration factor from the trapezoidal to the buttress thread. In the case of lip nut, conversely, this tendency is somewhat reversed, with the trapezoidal thread performing slightly (but not decidedly) better than the other two shapes. Finally, averaged over all three thread forms, the lip nut exhibits a stress concentration factor which is about 50% lower than that of the standard nut.« less

  20. Shared prefetching to reduce execution skew in multi-threaded systems

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

    Eichenberger, Alexandre E; Gunnels, John A

    Mechanisms are provided for optimizing code to perform prefetching of data into a shared memory of a computing device that is shared by a plurality of threads that execute on the computing device. A memory stream of a portion of code that is shared by the plurality of threads is identified. A set of prefetch instructions is distributed across the plurality of threads. Prefetch instructions are inserted into the instruction sequences of the plurality of threads such that each instruction sequence has a separate sub-portion of the set of prefetch instructions, thereby generating optimized code. Executable code is generated basedmore » on the optimized code and stored in a storage device. The executable code, when executed, performs the prefetches associated with the distributed set of prefetch instructions in a shared manner across the plurality of threads.« less

  1. Thread safe astronomy

    NASA Astrophysics Data System (ADS)

    Seaman, R.

    2008-03-01

    Observational astronomy is the beneficiary of an ancient chain of apprenticeship. Kepler's laws required Tycho's data. As the pace of discoveries has increased over the centuries, so has the cadence of tutelage (literally, "watching over"). Naked eye astronomy is thousands of years old, the telescope hundreds, digital imaging a few decades, but today's undergraduates will use instrumentation yet unbuilt - and thus, unfamiliar to their professors - to complete their doctoral dissertations. Not only has the quickening cadence of astronomical data-taking overrun the apprehension of the science within, but the contingent pace of experimental design threatens our capacity to learn new techniques and apply them productively. Virtual technologies are necessary to accelerate our human processes of perception and comprehension to keep up with astronomical instrumentation and pipelined dataflows. Necessary, but not sufficient. Computers can confuse us as efficiently as they illuminate. Rather, as with neural pathways evolved to meet competitive ecological challenges, astronomical software and data must become organized into ever more coherent `threads' of execution. These are the same threaded constructs as understood by computer science. No datum is an island.

  2. Compliant threads maximize spider silk connection strength and toughness

    PubMed Central

    Meyer, Avery; Pugno, Nicola M.; Cranford, Steven W.

    2014-01-01

    Millions of years of evolution have adapted spider webs to achieve a range of functionalities, including the well-known capture of prey, with efficient use of material. One feature that has escaped extensive investigation is the silk-on-silk connection joints within spider webs, particularly from a structural mechanics perspective. We report a joint theoretical and computational analysis of an idealized silk-on-silk fibre junction. By modifying the theory of multiple peeling, we quantitatively compare the performance of the system while systematically increasing the rigidity of the anchor thread, by both scaling the stress–strain response and the introduction of an applied pre-strain. The results of our study indicate that compliance is a virtue—the more extensible the anchorage, the tougher and stronger the connection becomes. In consideration of the theoretical model, in comparison with rigid substrates, a compliant anchorage enormously increases the effective adhesion strength (work required to detach), independent of the adhered thread itself, attributed to a nonlinear alignment between thread and anchor (contact peeling angle). The results can direct novel engineering design principles to achieve possible load transfer from compliant fibre-to-fibre anchorages, be they silk-on-silk or another, as-yet undeveloped, system. PMID:25008083

  3. Developing eThread Pipeline Using SAGA-Pilot Abstraction for Large-Scale Structural Bioinformatics

    PubMed Central

    Ragothaman, Anjani; Feinstein, Wei; Jha, Shantenu; Kim, Joohyun

    2014-01-01

    While most of computational annotation approaches are sequence-based, threading methods are becoming increasingly attractive because of predicted structural information that could uncover the underlying function. However, threading tools are generally compute-intensive and the number of protein sequences from even small genomes such as prokaryotes is large typically containing many thousands, prohibiting their application as a genome-wide structural systems biology tool. To leverage its utility, we have developed a pipeline for eThread—a meta-threading protein structure modeling tool, that can use computational resources efficiently and effectively. We employ a pilot-based approach that supports seamless data and task-level parallelism and manages large variation in workload and computational requirements. Our scalable pipeline is deployed on Amazon EC2 and can efficiently select resources based upon task requirements. We present runtime analysis to characterize computational complexity of eThread and EC2 infrastructure. Based on results, we suggest a pathway to an optimized solution with respect to metrics such as time-to-solution or cost-to-solution. Our eThread pipeline can scale to support a large number of sequences and is expected to be a viable solution for genome-scale structural bioinformatics and structure-based annotation, particularly, amenable for small genomes such as prokaryotes. The developed pipeline is easily extensible to other types of distributed cyberinfrastructure. PMID:24995285

  4. Modification of Upper Thread Tensioner of Sewing Machine

    NASA Astrophysics Data System (ADS)

    Klouček, P.; Škop, P.

    Standard mechanical upper thread tensioner of sewing machines is more and more limited in use for industrial sewing machines due to increasing requests for quality and raising velocity of machines. If we omit mostly manual settings of force made only by sense, the most problematic things are influence of different friction coefficient of the different batch of threads and strong relation between thread tension and sewing machine velocity. The article describes the development focused to the elimination of the most significant disadvantages of a standard tensioner and mainly finding of new conception of the tensioner with electromagnetic brake, development and testing of its prototype.

  5. Using a source-to-source transformation to introduce multi-threading into the AliRoot framework for a parallel event reconstruction

    NASA Astrophysics Data System (ADS)

    Lohn, Stefan B.; Dong, Xin; Carminati, Federico

    2012-12-01

    Chip-Multiprocessors are going to support massive parallelism by many additional physical and logical cores. Improving performance can no longer be obtained by increasing clock-frequency because the technical limits are almost reached. Instead, parallel execution must be used to gain performance. Resources like main memory, the cache hierarchy, bandwidth of the memory bus or links between cores and sockets are not going to be improved as fast. Hence, parallelism can only result into performance gains if the memory usage is optimized and the communication between threads is minimized. Besides concurrent programming has become a domain for experts. Implementing multi-threading is error prone and labor-intensive. A full reimplementation of the whole AliRoot source-code is unaffordable. This paper describes the effort to evaluate the adaption of AliRoot to the needs of multi-threading and to provide the capability of parallel processing by using a semi-automatic source-to-source transformation to address the problems as described before and to provide a straight-forward way of parallelization with almost no interference between threads. This makes the approach simple and reduces the required manual changes in the code. In a first step, unconditional thread-safety will be introduced to bring the original sequential and thread unaware source-code into the position of utilizing multi-threading. Afterwards further investigations have to be performed to point out candidates of classes that are useful to share amongst threads. Then in a second step, the transformation has to change the code to share these classes and finally to verify if there are anymore invalid interferences between threads.

  6. Attenuation of the tip vortex flow using a flexible thread

    NASA Astrophysics Data System (ADS)

    Lee, Seung-Jae; Shin, Jin-Woo; Arndt, Roger E. A.; Suh, Jung-Chun

    2018-01-01

    Tip vortex cavitation (TVC) is important in a number of practical engineering applications. The onset of TVC is a critical concern for navy surface ships and submarines that aim to increase their capability to evade detection. A flexible thread attachment at blade tips was recently suggested as a new method to delay the onset of TVC. Although the occurrence of TVC can be reduced using a flexible thread, no scientific investigation focusing on its mechanisms has been undertaken. Thus, herein, we experimentally investigated the use of the flexible thread to suppress TVC from an elliptical wing. These investigations were performed in a cavitation tunnel and involved an observation of TVC using high-speed cameras, motion tracking of the thread using image-processing techniques, and near-field flow measurements performed using stereoscopic particle image velocimetry. The experimental data suggested that the flexible thread affects the axial velocity field more than the circumferential velocity field around the TVC axis. Furthermore, we observed no clear dependence of the vortex core size, circulation, and flow unsteadiness on TVC suppression. However, the presence of the thread at the wing tip led to a notable reduction in the streamwise velocity field, thereby alleviating TVC.

  7. Threading Dislocations in InGaAs/GaAs (001) Buffer Layers for Metamorphic High Electron Mobility Transistors

    NASA Astrophysics Data System (ADS)

    Song, Yifei; Kujofsa, Tedi; Ayers, John E.

    2018-07-01

    In order to evaluate various buffer layers for metamorphic devices, threading dislocation densities have been calculated for uniform composition In x Ga1- x As device layers deposited on GaAs (001) substrates with an intermediate graded buffer layer using the L MD model, where L MD is the average length of misfit dislocations. On this basis, we compare the relative effectiveness of buffer layers with linear, exponential, and S-graded compositional profiles. In the case of a 2 μm thick buffer layer linear grading results in higher threading dislocation densities in the device layer compared to either exponential or S-grading. When exponential grading is used, lower threading dislocation densities are obtained with a smaller length constant. In the S-graded case, lower threading dislocation densities result when a smaller standard deviation parameter is used. As the buffer layer thickness is decreased from 2 μm to 0.1 μm all of the above effects are diminished, and the absolute threading dislocation densities increase.

  8. Biomechanical investigation of thread designs and interface conditions of zirconia and titanium dental implants with bone: three-dimensional numeric analysis.

    PubMed

    Fuh, Lih-Jyh; Hsu, Jui-Ting; Huang, Heng-Li; Chen, Michael Y C; Shen, Yen-Wen

    2013-01-01

    Bone stress and interfacial sliding at the bone-implant interface (BII) were analyzed in zirconia and titanium implants with various thread designs and interface conditions (bonded BII and contact BIIs with different frictional coefficients) for both conventional and immediately loaded treatments. A total of 18 finite element models comprising two implant materials (zirconia and titanium), three thread designs (different shapes and pitches), and three interface conditions (bonded and contact BIIs) were analyzed to assess the effects on bone stresses and on sliding at the BII. The material properties of the bone model were anisotropic, and a lateral force of 130 N was applied as the loading condition. In the immediately loaded implant, the stress was highly concentrated at one site of the peri-implant bone. The peak bone stress was more than 20% lower in zirconia implants than in titanium implants for a bonded BII and 14% to 20% lower for a contact BII. The bone stresses did not differ significantly between implants with V-shaped threads and square threads. However, sliding at the BII was more than 25% lower with square-thread implants than with V-shaped-thread implants for titanium implants and 36% lower for zirconia implants. Reducing the thread size and pitch in cortical bone (via two V-shaped threads with different pitches) decreased the bone stress by 13%. Increasing the frictional coefficient reduced sliding at the BII in both zirconia and titanium implants. As an implant material, zirconia can reduce the bone stress in the crestal cortical region. Bone stress and sliding at the BII are heavily dependent on the thread design and the frictional coefficient at the BII of immediately loaded implants.

  9. Impact of high-κ dielectric and metal nanoparticles in simultaneous enhancement of programming speed and retention time of nano-flash memory

    NASA Astrophysics Data System (ADS)

    Pavel, Akeed A.; Khan, Mehjabeen A.; Kirawanich, Phumin; Islam, N. E.

    2008-10-01

    A methodology to simulate memory structures with metal nanocrystal islands embedded as floating gate in a high-κ dielectric material for simultaneous enhancement of programming speed and retention time is presented. The computational concept is based on a model for charge transport in nano-scaled structures presented earlier, where quantum mechanical tunneling is defined through the wave impedance that is analogous to the transmission line theory. The effects of substrate-tunnel dielectric conduction band offset and metal work function on the tunneling current that determines the programming speed and retention time is demonstrated. Simulation results confirm that a high-κ dielectric material can increase programming current due to its lower conduction band offset with the substrate and also can be effectively integrated with suitable embedded metal nanocrystals having high work function for efficient data retention. A nano-memory cell designed with silver (Ag) nanocrystals embedded in Al 2O 3 has been compared with similar structure consisting of Si nanocrystals in SiO 2 to validate the concept.

  10. 78 FR 76815 - Steel Threaded Rod From India: Preliminary Affirmative Countervailing Duty Determination and...

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-12-19

    ... DEPARTMENT OF COMMERCE International Trade Administration [C-533-856] Steel Threaded Rod From... exporters of steel threaded rod from India. The period of investigation (``POI'') is January 1, 2012... this investigation is steel threaded rod. Steel threaded rod is certain threaded rod, bar, or studs, of...

  11. A novel rat model of incisional surgical site infection model developed using absorbable multifilament thread inoculated with Escherichia coli.

    PubMed

    Fujimura, Naoki; Obara, Hideaki; Suda, Koichi; Takeuchi, Hiroya; Matsuda, Sachiko; Kurosawa, Tomoko; Katono, Yasuhiro; Murata, Mitsuru; Kishi, Kazuo; Kitagawa, Yuko

    2015-04-01

    The development of an effective rat model of incisional surgical site infection (SSI) has so far proven difficult. In this study, we created a novel incisional SSI model and validated it in terms of both macroscopic and microscopic aspects including its response to treatment using antimicrobial wound-dressing, Aquacel Ag(®). Wounds were created on the dorsum of rats. 3-0 Vicryl(®) threads inoculated with Escherichia coli were inserted in the wound beds in the infection group (n = 6). The wounds were closed for two days to induce infection and then opened and covered with polypropylene sheets during the study. Aquacel Ag was placed under the polypropylene sheet in the infected wounds of the Aquacel Ag group rats (n = 6). The wounds in the control group (n = 6) contained sterile Vicryl thread that had not been inoculated with E. coli. The macroscopic appearance, wound area, bacterial counts, and histology of each group were evaluated. The infection group demonstrated significantly lower wound healing (p < 0.001), greater bacterial counts (median [interquartile range] ratings, 2.15 × 10(7) [0.51 × 10(7)-53.40 × 10(7)] vs 2.07 × 10(4) [0.60 × 10(4)-4.45 × 10(4)] CFU/g, respectively; p < 0.01), and severer histological inflammation (p < 0.001) than the control group. The Aquacel Ag group was only able to show significantly better wound healing than the infection group (p < 0.001). The new incisional SSI model exhibited all clinical manifestations of incisional SSI. It could be utilized to assess the effectiveness of newly developed treatments for incisional SSI. Copyright © 2014 Japanese Society of Chemotherapy and The Japanese Association for Infectious Diseases. Published by Elsevier Ltd. All rights reserved.

  12. Rapid and reliable protein structure determination via chemical shift threading.

    PubMed

    Hafsa, Noor E; Berjanskii, Mark V; Arndt, David; Wishart, David S

    2018-01-01

    Protein structure determination using nuclear magnetic resonance (NMR) spectroscopy can be both time-consuming and labor intensive. Here we demonstrate how chemical shift threading can permit rapid, robust, and accurate protein structure determination using only chemical shift data. Threading is a relatively old bioinformatics technique that uses a combination of sequence information and predicted (or experimentally acquired) low-resolution structural data to generate high-resolution 3D protein structures. The key motivations behind using NMR chemical shifts for protein threading lie in the fact that they are easy to measure, they are available prior to 3D structure determination, and they contain vital structural information. The method we have developed uses not only sequence and chemical shift similarity but also chemical shift-derived secondary structure, shift-derived super-secondary structure, and shift-derived accessible surface area to generate a high quality protein structure regardless of the sequence similarity (or lack thereof) to a known structure already in the PDB. The method (called E-Thrifty) was found to be very fast (often < 10 min/structure) and to significantly outperform other shift-based or threading-based structure determination methods (in terms of top template model accuracy)-with an average TM-score performance of 0.68 (vs. 0.50-0.62 for other methods). Coupled with recent developments in chemical shift refinement, these results suggest that protein structure determination, using only NMR chemical shifts, is becoming increasingly practical and reliable. E-Thrifty is available as a web server at http://ethrifty.ca .

  13. High efficiency carbon nanotube thread antennas

    NASA Astrophysics Data System (ADS)

    Amram Bengio, E.; Senic, Damir; Taylor, Lauren W.; Tsentalovich, Dmitri E.; Chen, Peiyu; Holloway, Christopher L.; Babakhani, Aydin; Long, Christian J.; Novotny, David R.; Booth, James C.; Orloff, Nathan D.; Pasquali, Matteo

    2017-10-01

    Although previous research has explored the underlying theory of high-frequency behavior of carbon nanotubes (CNTs) and CNT bundles for antennas, there is a gap in the literature for direct experimental measurements of radiation efficiency. These measurements are crucial for any practical application of CNT materials in wireless communication. In this letter, we report a measurement technique to accurately characterize the radiation efficiency of λ/4 monopole antennas made from the CNT thread. We measure the highest absolute values of radiation efficiency for CNT antennas of any type, matching that of copper wire. To capture the weight savings, we propose a specific radiation efficiency metric and show that these CNT antennas exceed copper's performance by over an order of magnitude at 1 GHz and 2.4 GHz. We also report direct experimental observation that, contrary to metals, the radiation efficiency of the CNT thread improves significantly at higher frequencies. These results pave the way for practical applications of CNT thread antennas, particularly in the aerospace and wearable electronics industries where weight saving is a priority.

  14. Understanding thread properties for red blood cell antigen assays: weak ABO blood typing.

    PubMed

    Nilghaz, Azadeh; Zhang, Liyuan; Li, Miaosi; Ballerini, David R; Shen, Wei

    2014-12-24

    "Thread-based microfluidics" research has so far focused on utilizing and manipulating the wicking properties of threads to form controllable microfluidic channels. In this study we aim to understand the separation properties of threads, which are important to their microfluidic detection applications for blood analysis. Confocal microscopy was utilized to investigate the effect of the microscale surface morphologies of fibers on the thread's separation efficiency of red blood cells. We demonstrated the remarkably different separation properties of threads made using silk and cotton fibers. Thread separation properties dominate the clarity of blood typing assays of the ABO groups and some of their weak subgroups (Ax and A3). The microfluidic thread-based analytical devices (μTADs) designed in this work were used to accurately type different blood samples, including 89 normal ABO and 6 weak A subgroups. By selecting thread with the right surface morphology, we were able to build μTADs capable of providing rapid and accurate typing of the weak blood groups with high clarity.

  15. Does Simultaneous Liposuction Adversely Affect the Outcome of Thread Lifts? A Preliminary Result.

    PubMed

    Lee, Yong Woo; Park, Tae Hwan

    2018-04-11

    Along with advances in thread lift techniques and materials, ancillary procedures such as fat grafting, liposuction, or filler injections have been performed simultaneously. Some surgeons think that these ancillary procedures might affect the aesthetic outcomes of thread lifting possibly due to inadvertent injury to threads or loosening of soft tissue via passing the cannula in the surgical plane of the thread lifts. The purpose of the current study is to determine the effect of such ancillary procedures on the outcome of thread lifts in the human and cadaveric setting. We used human abdominal tissue after abdominoplasty and cadaveric faces. In the abdominal tissue, liposuction parallel to the parallel axis was performed in one area for 5 min. We counted 30 passes when liposuction was performed in one direction. This was repeated as we changed the direction of passages. The plane of thread lifts (dermal vs subcutaneous) and angle between liposuction and thread lifts (parallel vs perpendicular) were differentiated in this abdominal tissue study group. Then, we performed parallel or perpendicular thread lifts using a small slit incision. Using a tensiometer, the maximum holding strength was measured when pulling the thread out of the skin as much as possible. We also used faces of cadavers to prove whether the finding in human abdominal tissue is really valid with corresponding techniques. Our pilot study using abdominal tissue showed that liposuction after thread lifts adversely affects it regardless of the vector of thread lifts. In the cadaveric study, however, liposuction prior to thread lifting does not significantly affect the holding strength of thread lifts. Liposuction or fat grafting in the appropriate layer would not be a hurdle to safely performing simultaneous thread lifts if the target lift tissue is intra-SMAS or just above the SMAS layer. This journal requires that authors assign a level of evidence to each article. For a full description of these

  16. Design of internal screw thread measuring device based on the Three-Line method principle

    NASA Astrophysics Data System (ADS)

    Hu, Dachao; Chen, Jianguo

    2010-08-01

    In accordance with the principle of Three-Line, this paper analyze the correlation of every main parameter of internal screw thread, and then designed a device to measure the main parameters of internal screw thread. Internal thread parameters, such as the pitch diameter, thread angle and screw-pitch of common screw thread, terraced screw thread, zigzag screw thread were obtained through calculation and measurement. The practical applications have proved that this device is convenience to use, and the measurements have a high accuracy. Meanwhile, the application for the patent of invention has been accepted by the Patent Office (Filing number: 200710044081.5).

  17. The Digital Thread as the Key Enabler

    DTIC Science & Technology

    2016-11-01

    17 Defense AT&L: November-December 2016 The Digital Thread as the Key Enabler Col. Keith Bearden, USAF Bearden is the deputy director of...enabling you to do your job better, faster and cheaper. There is one initiative, the key enabler, to accomplish this goal—the digital thread . But let’s... process that would allow for rapid cross- domain analysis and technology transition prior to bending metal. • Re-establish a culture of “hands-on

  18. Metallic nut for use with ceramic threads

    DOEpatents

    Norton, Paul F.; Shaffer, James E.

    1996-01-01

    A nozzle guide vane assembly has ceramic components therein having a conventional thread thereon including a preestablished pitch and having a preestablished rate of thermal expansion. The nozzle guide vane assembly has a metallic components therein having a preestablished rate of thermal expansion being greater that the rate of thermal expansion of the ceramic components is positioned in a gas turbine engine. The metallic component, a nut, has a thread therein including a plurality of crests being spaced on a pitch equal to that of the ceramic component and has a pair of contacting surfaces extending from the plurality of crests. A notch spirally extends intermediate adjacent ones of the plurality of crests and has a preestablished depth which is at least twice the size of the conventional pitch. Furthermore, the pair of contacting surfaces are in contact with only a portion of the threaded surface of the ceramic components.

  19. ERUPTION OF A SOLAR FILAMENT CONSISTING OF TWO THREADS

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

    Bi Yi; Jiang Yunchun; Li Haidong

    The trigger and driving mechanism for the eruption of a filament consisting of two dark threads was studied with unprecedented high cadence and resolution of He II 304 A observations made by the Atmospheric Imagining Assembly (AIA) on board the Solar Dynamics Observatory (SDO) and the observations made by the Solar Magnetic Activity Research Telescope and the Extreme Ultraviolet Imager (EUVI) telescope on board the Solar Terrestrial Relations Observatory Ahead (STEREO-A). The filament was located at the periphery of the active region NOAA 11228 and erupted on 2011 June 6. At the onset of the eruption, a turbulent filament threadmore » was found to be heated and to elongate in stride over a second one. After it rose slowly, most interestingly, the elongating thread was driven to contact and interact with the second one, and it then erupted with its southern leg being wrapped by a newly formed thread produced by the magnetic reconnection between fields carried by the two threads. Combining the observations from STEREO-A/EUVI and SDO/AIA 304 A images, the three-dimensional shape of the axis of the filament was obtained and it was found that only the southern leg of the eruptive filament underwent rotation. We suggest that the eruption was triggered by the reconnection of the turbulent filament thread and the surrounding magnetic field, and that it was mainly driven by the kink instability of the southern leg of the eruptive filament that possessed a more twisted field introduced by the reconnection-produced thread.« less

  20. Environmental risk assessment of engineered nano-SiO2 , nano iron oxides, nano-CeO2 , nano-Al2 O3 , and quantum dots.

    PubMed

    Wang, Yan; Nowack, Bernd

    2018-05-01

    Many research studies have endeavored to investigate the ecotoxicological hazards of engineered nanomaterials (ENMs). However, little is known regarding the actual environmental risks of ENMs, combining both hazard and exposure data. The aim of the present study was to quantify the environmental risks for nano-Al 2 O 3 , nano-SiO 2 , nano iron oxides, nano-CeO 2 , and quantum dots by comparing the predicted environmental concentrations (PECs) with the predicted-no-effect concentrations (PNECs). The PEC values of these 5 ENMs in freshwaters in 2020 for northern Europe and southeastern Europe were taken from a published dynamic probabilistic material flow analysis model. The PNEC values were calculated using probabilistic species sensitivity distribution (SSD). The order of the PNEC values was quantum dots < nano-CeO 2  < nano iron oxides < nano-Al 2 O 3  < nano-SiO 2 . The risks posed by these 5 ENMs were demonstrated to be in the reverse order: nano-Al 2 O 3  > nano-SiO 2  > nano iron oxides > nano-CeO 2  > quantum dots. However, all risk characterization values are 4 to 8 orders of magnitude lower than 1, and no risk was therefore predicted for any of the investigated ENMs at the estimated release level in 2020. Compared to static models, the dynamic material flow model allowed us to use PEC values based on a more complex parameterization, considering a dynamic input over time and time-dependent release of ENMs. The probabilistic SSD approach makes it possible to include all available data to estimate hazards of ENMs by considering the whole range of variability between studies and material types. The risk-assessment approach is therefore able to handle the uncertainty and variability associated with the collected data. The results of the present study provide a scientific foundation for risk-based regulatory decisions of the investigated ENMs. Environ Toxicol Chem 2018;37:1387-1395. © 2018 SETAC. © 2018 SETAC.

  1. Integrating end-to-end threads of control into object-oriented analysis and design

    NASA Technical Reports Server (NTRS)

    Mccandlish, Janet E.; Macdonald, James R.; Graves, Sara J.

    1993-01-01

    Current object-oriented analysis and design methodologies fall short in their use of mechanisms for identifying threads of control for the system being developed. The scenarios which typically describe a system are more global than looking at the individual objects and representing their behavior. Unlike conventional methodologies that use data flow and process-dependency diagrams, object-oriented methodologies do not provide a model for representing these global threads end-to-end. Tracing through threads of control is key to ensuring that a system is complete and timing constraints are addressed. The existence of multiple threads of control in a system necessitates a partitioning of the system into processes. This paper describes the application and representation of end-to-end threads of control to the object-oriented analysis and design process using object-oriented constructs. The issue of representation is viewed as a grouping problem, that is, how to group classes/objects at a higher level of abstraction so that the system may be viewed as a whole with both classes/objects and their associated dynamic behavior. Existing object-oriented development methodology techniques are extended by adding design-level constructs termed logical composite classes and process composite classes. Logical composite classes are design-level classes which group classes/objects both logically and by thread of control information. Process composite classes further refine the logical composite class groupings by using process partitioning criteria to produce optimum concurrent execution results. The goal of these design-level constructs is to ultimately provide the basis for a mechanism that can support the creation of process composite classes in an automated way. Using an automated mechanism makes it easier to partition a system into concurrently executing elements that can be run in parallel on multiple processors.

  2. SPATIAL DAMPING OF PROPAGATING KINK WAVES IN PROMINENCE THREADS

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

    Soler, R.; Oliver, R.; Ballester, J. L., E-mail: roberto.soler@wis.kuleuven.be

    Transverse oscillations and propagating waves are frequently observed in threads of solar prominences/filaments and have been interpreted as kink magnetohydrodynamic (MHD) modes. We investigate the spatial damping of propagating kink MHD waves in transversely nonuniform and partially ionized prominence threads. Resonant absorption and ion-neutral collisions (Cowling's diffusion) are the damping mechanisms taken into account. The dispersion relation of resonant kink waves in a partially ionized magnetic flux tube is numerically solved by considering prominence conditions. Analytical expressions of the wavelength and damping length as functions of the kink mode frequency are obtained in the thin tube and thin boundary approximations.more » For typically reported periods of thread oscillations, resonant absorption is an efficient mechanism for the kink mode spatial damping, while ion-neutral collisions have a minor role. Cowling's diffusion dominates both the propagation and damping for periods much shorter than those observed. Resonant absorption may explain the observed spatial damping of kink waves in prominence threads. The transverse inhomogeneity length scale of the threads can be estimated by comparing the observed wavelengths and damping lengths with the theoretically predicted values. However, the ignorance of the form of the density profile in the transversely nonuniform layer introduces inaccuracies in the determination of the inhomogeneity length scale.« less

  3. Bit Threads and Holographic Entanglement

    NASA Astrophysics Data System (ADS)

    Freedman, Michael; Headrick, Matthew

    2017-05-01

    The Ryu-Takayanagi (RT) formula relates the entanglement entropy of a region in a holographic theory to the area of a corresponding bulk minimal surface. Using the max flow-min cut principle, a theorem from network theory, we rewrite the RT formula in a way that does not make reference to the minimal surface. Instead, we invoke the notion of a "flow", defined as a divergenceless norm-bounded vector field, or equivalently a set of Planck-thickness "bit threads". The entanglement entropy of a boundary region is given by the maximum flux out of it of any flow, or equivalently the maximum number of bit threads that can emanate from it. The threads thus represent entanglement between points on the boundary, and naturally implement the holographic principle. As we explain, this new picture clarifies several conceptual puzzles surrounding the RT formula. We give flow-based proofs of strong subadditivity and related properties; unlike the ones based on minimal surfaces, these proofs correspond in a transparent manner to the properties' information-theoretic meanings. We also briefly discuss certain technical advantages that the flows offer over minimal surfaces. In a mathematical appendix, we review the max flow-min cut theorem on networks and on Riemannian manifolds, and prove in the network case that the set of max flows varies Lipshitz continuously in the network parameters.

  4. VoiceThread as a Peer Review and Dissemination Tool for Undergraduate Research

    NASA Astrophysics Data System (ADS)

    Guertin, L. A.

    2012-12-01

    VoiceThread has been utilized in an undergraduate research methods course for peer review and final research project dissemination. VoiceThread (http://www.voicethread.com) can be considered a social media tool, as it is a web-based technology with the capacity to enable interactive dialogue. VoiceThread is an application that allows a user to place a media collection online containing images, audio, videos, documents, and/or presentations in an interface that facilitates asynchronous communication. Participants in a VoiceThread can be passive viewers of the online content or engaged commenters via text, audio, video, with slide annotations via a doodle tool. The VoiceThread, which runs across browsers and operating systems, can be public or private for viewing and commenting and can be embedded into any website. Although few university students are aware of the VoiceThread platform (only 10% of the students surveyed by Ng (2012)), the 2009 K-12 edition of The Horizon Report (Johnson et al., 2009) lists VoiceThread as a tool to watch because of the opportunities it provides as a collaborative learning environment. In Fall 2011, eleven students enrolled in an undergraduate research methods course at Penn State Brandywine each conducted their own small-scale research project. Upon conclusion of the projects, students were required to create a poster summarizing their work for peer review. To facilitate the peer review process outside of class, each student-created PowerPoint file was placed in a VoiceThread with private access to only the class members and instructor. Each student was assigned to peer review five different student posters (i.e., VoiceThread images) with the audio and doodle tools to comment on formatting, clarity of content, etc. After the peer reviews were complete, the students were allowed to edit their PowerPoint poster files for a new VoiceThread. In the new VoiceThread, students were required to video record themselves describing their research

  5. PHoToNs–A parallel heterogeneous and threads oriented code for cosmological N-body simulation

    NASA Astrophysics Data System (ADS)

    Wang, Qiao; Cao, Zong-Yan; Gao, Liang; Chi, Xue-Bin; Meng, Chen; Wang, Jie; Wang, Long

    2018-06-01

    We introduce a new code for cosmological simulations, PHoToNs, which incorporates features for performing massive cosmological simulations on heterogeneous high performance computer (HPC) systems and threads oriented programming. PHoToNs adopts a hybrid scheme to compute gravitational force, with the conventional Particle-Mesh (PM) algorithm to compute the long-range force, the Tree algorithm to compute the short range force and the direct summation Particle-Particle (PP) algorithm to compute gravity from very close particles. A self-similar space filling a Peano-Hilbert curve is used to decompose the computing domain. Threads programming is advantageously used to more flexibly manage the domain communication, PM calculation and synchronization, as well as Dual Tree Traversal on the CPU+MIC platform. PHoToNs scales well and efficiency of the PP kernel achieves 68.6% of peak performance on MIC and 74.4% on CPU platforms. We also test the accuracy of the code against the much used Gadget-2 in the community and found excellent agreement.

  6. Conversation Threads Hidden within Email Server Logs

    NASA Astrophysics Data System (ADS)

    Palus, Sebastian; Kazienko, Przemysław

    Email server logs contain records of all email Exchange through this server. Often we would like to analyze those emails not separately but in conversation thread, especially when we need to analyze social network extracted from those email logs. Unfortunately each mail is in different record and those record are not tided to each other in any obvious way. In this paper method for discussion threads extraction was proposed together with experiments on two different data sets - Enron and WrUT..

  7. Development of Fire Resistant/Heat Resistant Sewing Thread

    DTIC Science & Technology

    2016-03-01

    Final 3. DATES COVERED (From - To) October 2014 – June 2015 4. TITLE AND SUBTITLE DEVELOPMENT OF FIRE RESISTANT /HEAT RESISTANT SEWING THREAD 5a...core to sheath ratio of 70:30 will offer a high performance, low cost sewing thread with required fire resistant /heat resistant properties. 15...Properties ............................................................................... 18        1      DEVELOPMENT OF  FIRE   RESISTANT /HEAT

  8. Using VoiceThread to Promote Collaborative Learning in On-Line Clinical Nurse Leader Courses.

    PubMed

    Fox, Ola H

    The movement to advance the clinical nurse leader (CNL) as an innovative new role for meeting higher health care quality standards continues with CNL programs offered on-line at colleges and universities nationwide. Collaborative learning activities offer the opportunity for CNL students to gain experience in working together in small groups to negotiate and solve care process problems. The challenge for nurse educators is to provide collaborative learning activities in an asynchronous learning environment that can be considered isolating by default. This article reports on the experiences of 17 CNL students who used VoiceThread, a cloud-based tool that allowed them to communicate asynchronously with one another through voice comments for collaboration and sharing knowledge. Participants identified benefits and drawbacks to using VoiceThread for collaboration as compared to text-based discussion boards. Students reported that the ability to hear the voice of their peers and the instructor helped them feel like they were in a classroom communicating with "real" instructor and peers. Students indicated a preference for on-line classes that used VoiceThread discussions to on-line classes that used only text-based discussion boards. Copyright © 2016 Elsevier Inc. All rights reserved.

  9. A phenomenological continuum model for force-driven nano-channel liquid flows

    NASA Astrophysics Data System (ADS)

    Ghorbanian, Jafar; Celebi, Alper T.; Beskok, Ali

    2016-11-01

    A phenomenological continuum model is developed using systematic molecular dynamics (MD) simulations of force-driven liquid argon flows confined in gold nano-channels at a fixed thermodynamic state. Well known density layering near the walls leads to the definition of an effective channel height and a density deficit parameter. While the former defines the slip-plane, the latter parameter relates channel averaged density with the desired thermodynamic state value. Definitions of these new parameters require a single MD simulation performed for a specific liquid-solid pair at the desired thermodynamic state and used for calibration of model parameters. Combined with our observations of constant slip-length and kinematic viscosity, the model accurately predicts the velocity distribution and volumetric and mass flow rates for force-driven liquid flows in different height nano-channels. Model is verified for liquid argon flow at distinct thermodynamic states and using various argon-gold interaction strengths. Further verification is performed for water flow in silica and gold nano-channels, exhibiting slip lengths of 1.2 nm and 15.5 nm, respectively. Excellent agreements between the model and the MD simulations are reported for channel heights as small as 3 nm for various liquid-solid pairs.

  10. Using OpenMP vs. Threading Building Blocks for Medical Imaging on Multi-cores

    NASA Astrophysics Data System (ADS)

    Kegel, Philipp; Schellmann, Maraike; Gorlatch, Sergei

    We compare two parallel programming approaches for multi-core systems: the well-known OpenMP and the recently introduced Threading Building Blocks (TBB) library by Intel®. The comparison is made using the parallelization of a real-world numerical algorithm for medical imaging. We develop several parallel implementations, and compare them w.r.t. programming effort, programming style and abstraction, and runtime performance. We show that TBB requires a considerable program re-design, whereas with OpenMP simple compiler directives are sufficient. While TBB appears to be less appropriate for parallelizing existing implementations, it fosters a good programming style and higher abstraction level for newly developed parallel programs. Our experimental measurements on a dual quad-core system demonstrate that OpenMP slightly outperforms TBB in our implementation.

  11. In Search of Common Threads: Linking Multicultural, Feminist, and Social Justice Counseling Paradigms

    ERIC Educational Resources Information Center

    Crethar, Hugh C.; Rivera, Edil Torres; Nash, Sara

    2008-01-01

    Multicultural, feminist, and social justice counseling theories are often viewed as disparate helping models. This article examines the complementary nature of these models and discusses the need to promote a clearer understanding of the ways in which these common threads can be used in counseling practice.

  12. Mechanical Strength Improvements of Carbon Nanotube Threads through Epoxy Cross-Linking

    PubMed Central

    Yu, Qingyue; Alvarez, Noe T.; Miller, Peter; Malik, Rachit; Haase, Mark R.; Schulz, Mark; Shanov, Vesselin; Zhu, Xinbao

    2016-01-01

    Individual Carbon Nanotubes (CNTs) have a great mechanical strength that needs to be transferred into macroscopic fiber assemblies. One approach to improve the mechanical strength of the CNT assemblies is by creating covalent bonding among their individual CNT building blocks. Chemical cross-linking of multiwall CNTs (MWCNTs) within the fiber has significantly improved the strength of MWCNT thread. Results reported in this work show that the cross-linked thread had a tensile strength six times greater than the strength of its control counterpart, a pristine MWCNT thread (1192 MPa and 194 MPa, respectively). Additionally, electrical conductivity changes were observed, revealing 2123.40 S·cm−1 for cross-linked thread, and 3984.26 S·cm−1 for pristine CNT thread. Characterization suggests that the obtained high tensile strength is due to the cross-linking reaction of amine groups from ethylenediamine plasma-functionalized CNT with the epoxy groups of the cross-linking agent, 4,4-methylenebis(N,N-diglycidylaniline). PMID:28787868

  13. Effect of nano-silver hydrogel coating film on deep partial thickness scald model of rabbit.

    PubMed

    Xi, Peng; Li, Yan; Ge, Xiaojin; Liu, Dandan; Miao, Mingsan

    2018-05-01

    Observing the effect of nano-silver hydrogel coating film on deep partial thickness scald model of rabbit. We prepared boiling water scalded rabbits with deep II degree scald models and applied high, medium and low doses of nano-silver hydrogel coating film for different time and area. Then we compared the difference of burned paper weight before administration and after administration model burns, burn local skin irritation points infection, skin crusting and scabs from the time, and the impact of local skin tissue morphology. Rabbits deep II degree burn model successful modeling; on day 12, 18, high, medium and low doses of nano-silver hydrogel coating film significantly reduced skin irritation of rabbits infected with the integral value ( P  < 0.01, P  < 0.05); high, medium and low doses of nano-silver hydrogel coating film group significantly decreased skin irritation, infection integral value ( P  < 0.01, P  < 0.05); high, medium and low doses of nano-silver hydrogel coating film significantly reduced film rabbits' scalded skin crusting time ( P  < 0.01), significantly shortened the rabbit skin burns from the scab time ( P  < 0.01), and significantly improved the treatment of skin diseases in rabbits scald model change ( P  < 0.01, P  < 0.05). The nano-silver hydrogel coating film on the deep partial thickness burns has a significant therapeutic effect; external use has a significant role in wound healing.

  14. Drill pipe threaded nipple connection design development

    NASA Astrophysics Data System (ADS)

    Saruev, A. L.; Saruev, L. A.; Vasenin, S. S.

    2015-11-01

    The paper presents the analysis of the behavior of the drill pipe nipple connection under the additional load generated by power pulses. The strain wave propagation through the nipple thread connection of drill pipes to the bottomhole is studied in this paper. The improved design of the nipple thread connection is suggested using the obtained experimental and theoretical data. The suggested connection design allows not only the efficient transmission of strain wave energy to a drill bit but also the automation of making-up and breaking-out drill pipes.

  15. Threading on ADI Cast Iron, Developing Tools and Conditions

    NASA Astrophysics Data System (ADS)

    Elósegui, I.; de Lacalle, L. N. López

    2011-01-01

    The present work is focussed on the improvement of the design and performance of the taps used for making threaded holes in ADI (Austempered Ductile Iron). It is divided in two steps: a) The development of a method valid to compare the taps wear without reaching the end of their life, measuring the required torque to make one threaded hole, after having made previously a significant number of threaded holes. The tap wear causes some teeth geometrical changes, that supposes an increase in the required torque and axial force. b) The taps wear comparison method is open to apply on different PVD coated taps, AlTiN, AlCrSiN, AlTiSiN, , and to different geometries.

  16. Periodic Eclipse Variations in Asynchronous Polar V1432 Aql: Evidence of a Shifting Threading Region

    NASA Technical Reports Server (NTRS)

    Littlefield, Colin; Mukai, Koji; Mumme, Raymond; Cain, Ryan; Magno, Katrina C.; Corpuz, Taylor; Sandefur, Davis; Boyd, David; Cook, Michael; Ulowetz, Joseph; hide

    2015-01-01

    We report the results of a 28-month photometric campaign studying V1432 Aql, the only known eclipsing, asynchronous polar. Our data show that both the residual eclipse flux and eclipse O-C timings vary strongly as a function of the spin-orbit beat period. Relying upon a new model of the system, we show that cyclical changes in the location of the threading region along the ballistic trajectory of the accretion stream could produce both effects. This model predicts that the threading radius is variable, in contrast to previous studies which have assumed a constant threading radius. Additionally, we identify a very strong photometric maximum which is only visible for half of the beat cycle. The exact cause of this maximum is unclear, but we consider the possibility that it is the optical counterpart of the third accreting polecap proposed by Rana et al. Finally, the rate of change of the white dwarf's spin period is consistent with it being proportional to the difference between the spin and orbital periods, implying that the spin period is approaching the orbital period asymptotically.

  17. Modeling and simulation of electronic structure, material interface and random doping in nano electronic devices

    PubMed Central

    Chen, Duan; Wei, Guo-Wei

    2010-01-01

    The miniaturization of nano-scale electronic devices, such as metal oxide semiconductor field effect transistors (MOSFETs), has given rise to a pressing demand in the new theoretical understanding and practical tactic for dealing with quantum mechanical effects in integrated circuits. Modeling and simulation of this class of problems have emerged as an important topic in applied and computational mathematics. This work presents mathematical models and computational algorithms for the simulation of nano-scale MOSFETs. We introduce a unified two-scale energy functional to describe the electrons and the continuum electrostatic potential of the nano-electronic device. This framework enables us to put microscopic and macroscopic descriptions in an equal footing at nano scale. By optimization of the energy functional, we derive consistently-coupled Poisson-Kohn-Sham equations. Additionally, layered structures are crucial to the electrostatic and transport properties of nano transistors. A material interface model is proposed for more accurate description of the electrostatics governed by the Poisson equation. Finally, a new individual dopant model that utilizes the Dirac delta function is proposed to understand the random doping effect in nano electronic devices. Two mathematical algorithms, the matched interface and boundary (MIB) method and the Dirichlet-to-Neumann mapping (DNM) technique, are introduced to improve the computational efficiency of nano-device simulations. Electronic structures are computed via subband decomposition and the transport properties, such as the I-V curves and electron density, are evaluated via the non-equilibrium Green's functions (NEGF) formalism. Two distinct device configurations, a double-gate MOSFET and a four-gate MOSFET, are considered in our three-dimensional numerical simulations. For these devices, the current fluctuation and voltage threshold lowering effect induced by the discrete dopant model are explored. Numerical convergence

  18. The asymptotic structure of a slender coiling fluid thread

    NASA Astrophysics Data System (ADS)

    Blount, Maurice; Lister, John

    2010-11-01

    The buckling of a viscous fluid thread as it falls through air onto a stationary surface is a well-known breakfast-time phenomenon which exhibits a rich variety of dynamical regimes [1]. Since the bending resistance of a slender thread is small, bending motion is largely confined to a short region of coiling near the surface. If the height of fall is large enough, then the thread above the coiling region forms a `tail' that falls nearly vertically under gravity but is deflected slightly due to forces exerted on it by the coil. Although it is possible to use force balances in the coil to estimate scalings for the coiling frequency, we analyse the solution structure of the entire thread in the asymptotic limit of a very slender thread and thereby include the dynamic interaction between the coil and the tail. Quantitative predictions of the coiling frequency are obtained which demonstrate the existence of leading-order corrections to scalings previously derived. In particular, we show that in the regime where the deflection of the tail is governed by a balance between centrifugal acceleration, hoop stress and gravity, the tail behaves as a flexible circular pendulum that is forced by bending stress exerted by the coil. The amplitude of the response is calculated and the previously observed resonance when the coiling frequency coincides with one of the eigenfrequencies of a free flexible pendulum is thereby explained. [1] N.M. Ribe et al., J. Fluid Mech. 555, 275-297.

  19. The eNanoMapper database for nanomaterial safety information.

    PubMed

    Jeliazkova, Nina; Chomenidis, Charalampos; Doganis, Philip; Fadeel, Bengt; Grafström, Roland; Hardy, Barry; Hastings, Janna; Hegi, Markus; Jeliazkov, Vedrin; Kochev, Nikolay; Kohonen, Pekka; Munteanu, Cristian R; Sarimveis, Haralambos; Smeets, Bart; Sopasakis, Pantelis; Tsiliki, Georgia; Vorgrimmler, David; Willighagen, Egon

    2015-01-01

    The NanoSafety Cluster, a cluster of projects funded by the European Commision, identified the need for a computational infrastructure for toxicological data management of engineered nanomaterials (ENMs). Ontologies, open standards, and interoperable designs were envisioned to empower a harmonized approach to European research in nanotechnology. This setting provides a number of opportunities and challenges in the representation of nanomaterials data and the integration of ENM information originating from diverse systems. Within this cluster, eNanoMapper works towards supporting the collaborative safety assessment for ENMs by creating a modular and extensible infrastructure for data sharing, data analysis, and building computational toxicology models for ENMs. The eNanoMapper database solution builds on the previous experience of the consortium partners in supporting diverse data through flexible data storage, open source components and web services. We have recently described the design of the eNanoMapper prototype database along with a summary of challenges in the representation of ENM data and an extensive review of existing nano-related data models, databases, and nanomaterials-related entries in chemical and toxicogenomic databases. This paper continues with a focus on the database functionality exposed through its application programming interface (API), and its use in visualisation and modelling. Considering the preferred community practice of using spreadsheet templates, we developed a configurable spreadsheet parser facilitating user friendly data preparation and data upload. We further present a web application able to retrieve the experimental data via the API and analyze it with multiple data preprocessing and machine learning algorithms. We demonstrate how the eNanoMapper database is used to import and publish online ENM and assay data from several data sources, how the "representational state transfer" (REST) API enables building user friendly

  20. Optimized FPGA Implementation of Multi-Rate FIR Filters Through Thread Decomposition

    NASA Technical Reports Server (NTRS)

    Kobayashi, Kayla N.; He, Yutao; Zheng, Jason X.

    2011-01-01

    Multi-rate finite impulse response (MRFIR) filters are among the essential signal-processing components in spaceborne instruments where finite impulse response filters are often used to minimize nonlinear group delay and finite precision effects. Cascaded (multistage) designs of MRFIR filters are further used for large rate change ratio in order to lower the required throughput, while simultaneously achieving comparable or better performance than single-stage designs. Traditional representation and implementation of MRFIR employ polyphase decomposition of the original filter structure, whose main purpose is to compute only the needed output at the lowest possible sampling rate. In this innovation, an alternative representation and implementation technique called TD-MRFIR (Thread Decomposition MRFIR) is presented. The basic idea is to decompose MRFIR into output computational threads, in contrast to a structural decomposition of the original filter as done in the polyphase decomposition. A naive implementation of a decimation filter consisting of a full FIR followed by a downsampling stage is very inefficient, as most of the computations performed by the FIR state are discarded through downsampling. In fact, only 1/M of the total computations are useful (M being the decimation factor). Polyphase decomposition provides an alternative view of decimation filters, where the downsampling occurs before the FIR stage, and the outputs are viewed as the sum of M sub-filters with length of N/M taps. Although this approach leads to more efficient filter designs, in general the implementation is not straightforward if the numbers of multipliers need to be minimized. In TD-MRFIR, each thread represents an instance of the finite convolution required to produce a single output of the MRFIR. The filter is thus viewed as a finite collection of concurrent threads. Each of the threads completes when a convolution result (filter output value) is computed, and activated when the first

  1. Slowing down of ring polymer diffusion caused by inter-ring threading.

    PubMed

    Lee, Eunsang; Kim, Soree; Jung, YounJoon

    2015-06-01

    Diffusion of long ring polymers in a melt is much slower than the reorganization of their internal structures. While direct evidence for entanglements has not been observed in the long ring polymers unlike linear polymer melts, threading between the rings is suspected to be the main reason for slowing down of ring polymer diffusion. It is, however, difficult to define the threading configuration between two rings because the rings have no chain end. In this work, evidence for threading dynamics of ring polymers is presented by using molecular dynamics simulation and applying a novel analysis method. The simulation results are analyzed in terms of the statistics of persistence and exchange times that have proved useful in studying heterogeneous dynamics of glassy systems. It is found that the threading time of ring polymer melts increases more rapidly with the degree of polymerization than that of linear polymer melts. This indicates that threaded ring polymers cannot diffuse until an unthreading event occurs, which results in the slowing down of ring polymer diffusion. © 2015 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  2. A microfluidic glucose sensor incorporating a novel thread-based electrode system.

    PubMed

    Gaines, Michelle; Gonzalez-Guerrero, Maria Jose; Uchida, Kathryn; Gomez, Frank A

    2018-05-01

    An electrochemical sensor for the detection of glucose using thread-based electrodes and fabric is described. This device is relatively simple to fabricate and can be used for multiple readings after washing with ethanol. The fabrication of the chip consisted of two steps. First, three thread-based electrodes (reference, working, and counter) were fabricated by painting pieces of nylon thread with either layered silver ink and carbon ink or silver/silver chloride ink. The threads were then woven into a fabric chip with a beeswax barrier molded around the edges in order to prevent leaks from the tested solutions. A thread-based working electrode consisting of one layer of silver underneath two layers of carbon was selected to fabricate the final sensor system. Using the chip, a PBS solution containing glucose oxidase (GOx) (10 mg/mL), potassium ferricyanide (K 3 [Fe(CN) 6 ]) (10 mg/mL) as mediator, and different concentrations of glucose (0-25 mM), was measured by cyclic voltammetry (CV). It was found that the current output from the oxidation of glucose was proportional to the glucose concentrations. This thread-based electrode system is a viable sensor platform for detecting glucose in the physiological range. This article is protected by copyright. All rights reserved. This article is protected by copyright. All rights reserved.

  3. Improvement in crystal quality and optical properties of n-type GaN employing nano-scale SiO2 patterned n-type GaN substrate.

    PubMed

    Jo, Min Sung; Sadasivam, Karthikeyan Giri; Tawfik, Wael Z; Yang, Seung Bea; Lee, Jung Ju; Ha, Jun Seok; Moon, Young Boo; Ryu, Sang Wan; Lee, June Key

    2013-01-01

    n-type GaN epitaxial layers were regrown on the patterned n-type GaN substrate (PNS) with different size of silicon dioxide (SiO2) nano dots to improve the crystal quality and optical properties. PNS with SiO2 nano dots promotes epitaxial lateral overgrowth (ELOG) for defect reduction and also acts as a light scattering point. Transmission electron microscopy (TEM) analysis suggested that PNS with SiO2 nano dots have superior crystalline properties. Hall measurements indicated that incrementing values in electron mobility were clear indication of reduction in threading dislocation and it was confirmed by TEM analysis. Photoluminescence (PL) intensity was enhanced by 2.0 times and 3.1 times for 1-step and 2-step PNS, respectively.

  4. PICH and BLM limit histone association with anaphase centromeric DNA threads and promote their resolution

    PubMed Central

    Ke, Yuwen; Huh, Jae-Wan; Warrington, Ross; Li, Bing; Wu, Nan; Leng, Mei; Zhang, Junmei; Ball, Haydn L; Li, Bing; Yu, Hongtao

    2011-01-01

    Centromeres nucleate the formation of kinetochores and are vital for chromosome segregation during mitosis. The SNF2 family helicase PICH (Plk1-interacting checkpoint helicase) and the BLM (the Bloom's syndrome protein) helicase decorate ultrafine histone-negative DNA threads that link the segregating sister centromeres during anaphase. The functions of PICH and BLM at these threads are not understood, however. Here, we show that PICH binds to BLM and enables BLM localization to anaphase centromeric threads. PICH- or BLM-RNAi cells fail to resolve these threads in anaphase. The fragmented threads form centromeric-chromatin-containing micronuclei in daughter cells. Anaphase threads in PICH- and BLM-RNAi cells contain histones and centromere markers. Recombinant purified PICH has nucleosome remodelling activities in vitro. We propose that PICH and BLM unravel centromeric chromatin and keep anaphase DNA threads mostly free of nucleosomes, thus allowing these threads to span long distances between rapidly segregating centromeres without breakage and providing a spatiotemporal window for their resolution. PMID:21743438

  5. Comparison of in-vivo failure of single-thread and dual-thread temporary anchorage devices over 18 months: A split-mouth randomized controlled trial.

    PubMed

    Durrani, Owais Khalid; Shaheed, Sohrab; Khan, Arsalan; Bashir, Ulfat

    2017-10-01

    The purpose of this study was to compare the in-vivo failure rates of single-thread and dual-thread temporary anchorage device (TAD) designs over 18 months. Thirty patients with skeletal Class II Division 1 malocclusion requiring anchorage from TADs for retraction of maxillary incisors into the extracted premolar space were recruited in this parallel group, split-mouth, randomized controlled trial. A block randomization sequence was generated with Random Allocation Software (version 2.0; Isfahan, Iran) with the allocations concealed in sequentially numbered, opaque, sealed envelopes. A total of 60 TADs (diameter, 2 mm; length, 10 mm) were placed in the maxillary arches of these patients with random allocation of the 2 types to the left and the right sides in a 1:1 ratio. All TADs were placed between the roots of the second premolar and the first molar and were immediately loaded. Patients were followed for a minimum of 12 months and a maximum of 18 months for the failure of the TADs. Data were analyzed blindly on an intention-to-treat basis. Four TADs (13.3%) failed in the single-thread group, and 6 TADs (20%) failed in the dual-thread group. The McNemar test showed an insignificant difference (P = 0.72) between the 2 groups. An odds ratio of 1.6 (95% confidence interval, 0.39-6.97) showed no significant associations among the variables. Most TADs failed in the first month after insertion (50%). The failure rate of dual-thread TADs compared with single-thread TADs is statistically insignificant when placed in the maxilla for retraction of the anterior segment. Registration: The trial was not registered before commencement. The protocol was not published before the trial. Copyright © 2016 American Association of Orthodontists. Published by Elsevier Inc. All rights reserved.

  6. Perspectives on continuum flow models for force-driven nano-channel liquid flows

    NASA Astrophysics Data System (ADS)

    Beskok, Ali; Ghorbanian, Jafar; Celebi, Alper

    2017-11-01

    A phenomenological continuum model is developed using systematic molecular dynamics (MD) simulations of force-driven liquid argon flows confined in gold nano-channels at a fixed thermodynamic state. Well known density layering near the walls leads to the definition of an effective channel height and a density deficit parameter. While the former defines the slip-plane, the latter parameter relates channel averaged density with the desired thermodynamic state value. Definitions of these new parameters require a single MD simulation performed for a specific liquid-solid pair at the desired thermodynamic state and used for calibration of model parameters. Combined with our observations of constant slip-length and kinematic viscosity, the model accurately predicts the velocity distribution and volumetric and mass flow rates for force-driven liquid flows in different height nano-channels. Model is verified for liquid argon flow at distinct thermodynamic states and using various argon-gold interaction strengths. Further verification is performed for water flow in silica and gold nano-channels, exhibiting slip lengths of 1.2 nm and 15.5 nm, respectively. Excellent agreements between the model and the MD simulations are reported for channel heights as small as 3 nm for various liquid-solid pairs.

  7. Constructing Visually-Based Digital Conversations in EFL with VoiceThread

    ERIC Educational Resources Information Center

    Kent, David

    2017-01-01

    VoiceThread holds potential to provide students who rarely speak in class a means to create visually-based digital conversations. In light of this, pedagogical affordances of the tool are considered, along with efficacy behind VoiceThread development within English as a Foreign Language contexts. Instructional strategies, supported by examples,…

  8. 46 CFR 56.90-10 - Threaded piping (modifies 135.5).

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... 46 Shipping 2 2010-10-01 2010-10-01 false Threaded piping (modifies 135.5). 56.90-10 Section 56.90-10 Shipping COAST GUARD, DEPARTMENT OF HOMELAND SECURITY (CONTINUED) MARINE ENGINEERING PIPING SYSTEMS AND APPURTENANCES Assembly § 56.90-10 Threaded piping (modifies 135.5). (a) Any compound or...

  9. Final report on EURAMET.L-S21: `Supplementary comparison of parallel thread gauges'

    NASA Astrophysics Data System (ADS)

    Mudronja, Vedran; Šimunovic, Vedran; Acko, Bojan; Matus, Michael; Bánréti, Edit; István, Dicso; Thalmann, Rudolf; Lassila, Antti; Lillepea, Lauri; Bartolo Picotto, Gian; Bellotti, Roberto; Pometto, Marco; Ganioglu, Okhan; Meral, Ilker; Salgado, José Antonio; Georges, Vailleau

    2015-01-01

    The results of the comparison of parallel thread gauges between ten European countries are presented. Three thread plugs and three thread rings were calibrated in one loop. Croatian National Laboratory for Length (HMI/FSB-LPMD) acted as the coordinator and pilot laboratory of the comparison. Thread angle, thread pitch, simple pitch diameter and pitch diameter were measured. Pitch diameters were calibrated within 1a, 2a, 1b and 2b calibration categories in accordance with the EURAMET cg-10 calibration guide. A good agreement between the measurement results and differences due to different calibration categories are analysed in this paper. This comparison was a first EURAMET comparison of parallel thread gauges based on the EURAMET ctg-10 calibration guide, and has made a step towards the harmonization of future comparisons with the registration of CMC values for thread gauges. Main text. To reach the main text of this paper, click on Final Report. Note that this text is that which appears in Appendix B of the BIPM key comparison database kcdb.bipm.org/. The final report has been peer-reviewed and approved for publication by the CCL, according to the provisions of the CIPM Mutual Recognition Arrangement (CIPM MRA).

  10. Hyper-elastic modeling and mechanical behavior investigation of porous poly-D-L-lactide/nano-hydroxyapatite scaffold material.

    PubMed

    Han, Quan Feng; Wang, Ze Wu; Tang, Chak Yin; Chen, Ling; Tsui, Chi Pong; Law, Wing Cheung

    2017-07-01

    Poly-D-L-lactide/nano-hydroxyapatite (PDLLA/nano-HA) can be used as the biological scaffold material in bone tissue engineering as it can be readily made into a porous composite material with excellent performance. However, constitutive modeling for the mechanical response of porous PDLLA/nano-HA under various stress conditions has been very limited so far. In this work, four types of fundamental compressible hyper-elastic constitutive models were introduced for constitutive modeling and investigation of mechanical behaviors of porous PDLLA/nano-HA. Moreover, the unitary expressions of Cauchy stress tensor have been derived for the PDLLA/nano-HA under uniaxial compression (or stretch), biaxial compression (or stretch), pure shear and simple shear load by using the theory of continuum mechanics. The theoretical results determined from the approach based on the Ogden compressible hyper-elastic constitutive model were in good agreement with the experimental data from the uniaxial compression tests. Furthermore, this approach can also be used to predict the mechanical behaviors of the porous PDLLA/nano-HA material under the biaxial compression (or stretch), pure shear and simple shear. Copyright © 2017 Elsevier Ltd. All rights reserved.

  11. Field-Lines-Threaded Model for: (1) the Low Solar Corona; (2) Electrons in the Transition Region; and (3) Solar Energetic Particle Acceleration and Transport

    NASA Astrophysics Data System (ADS)

    Sokolov, I.; van der Holst, B.; Jin, M.; Gombosi, T. I.; Taktakishvili, A.; Khazanov, G. V.

    2013-12-01

    In numerical simulations of the solar corona, both for the ambient state and especially for dynamical processes the most computational resources are spent for maintaining the numerical solution in the Low Solar Corona and in the transition region, where the temperature gradients are very sharp and the magnetic field has a complicated topology. The degraded computational efficiency is caused by the need in a highest resolution as well as the use of the fully three-dimensional implicit solver for electron heat conduction. On the other hand, the physical nature of the processes involved is rather simple (which still does not facilitate the numerical methods) as long as the heat fluxes as well as slow plasma motional velocities are aligned with the magnetic field. The Alfven wave turbulence, which is often believed to be the main driver of the solar wind and the main source of the coronal heating, is characterized by the Poynting flux of the waves, which is also aligned with the magnetic field. Therefore, the plasma state in any point of the three-dimensional grid in the Low Solar Corona can be found by solving a set of one-dimensional equations for the magnetic field line ('thread'), which passes through this point and connects it to the chromosphere and to the global Solar Corona. In the present paper we describe an innovative computational technology based upon the use of the magnetic-field-line-threads to find the local solution. We present the development of the AWSoM code of the University of Michigan with the field-lines-threaded Low Solar Corona. In the transition region, where the essentially kinetic description of the electron energy fluxes is required, we solve the Fokker-Plank equation on the system of threads, to achieve the physically consistent description of chromosphere evaporation. The third application for the field-lines-treaded model is the Solar Energetic Particle (SEP) acceleration and transport. Being the natural extension of the Field

  12. Incremental Drag due to Grooves and Threads for KE (Kinetic Energy) Projectiles

    DTIC Science & Technology

    1989-03-01

    RFI • CTsB TF * - MF (3a) q L where TF1 is the Thread Factor defined as: TF 0.84 + 0.117 P - o (3b) where p is the groove pitch in inches, MF1 is...g2) MF RF CD (4) where TF11 and TF1 2 are the thread factors for the threads of pitch p, and P2, respectively. 5 One can notice the large

  13. Multiscale modeling and computation of nano-electronic transistors and transmembrane proton channels

    NASA Astrophysics Data System (ADS)

    Chen, Duan

    The miniaturization of nano-scale electronic transistors, such as metal oxide semiconductor field effect transistors (MOSFETs), has given rise to a pressing demand in the new theoretical understanding and practical tactic for dealing with quantum mechanical effects in integrated circuits. In biology, proton dynamics and transport across membrane proteins are of paramount importance to the normal function of living cells. Similar physical characteristics are behind the two subjects, and model simulations share common mathematical interests/challenges. In this thesis work, multiscale and multiphysical models are proposed to study the mechanisms of nanotransistors and proton transport in transmembrane at the atomic level. For nano-electronic transistors, we introduce a unified two-scale energy functional to describe the electrons and the continuum electrostatic potential. This framework enables us to put microscopic and macroscopic descriptions on an equal footing at nano-scale. Additionally, this model includes layered structures and random doping effect of nano-transistors. For transmembrane proton channels, we describe proton dynamics quantum mechanically via a density functional approach while implicitly treat numerous solvent molecules as a dielectric continuum. The densities of all other ions in the solvent are assumed to obey the Boltzmann distribution. The impact of protein molecular structure and its charge polarization on the proton transport is considered in atomic details. We formulate a total free energy functional to include kinetic and potential energies of protons, as well as electrostatic energy of all other ions on an equal footing. For both nano-transistors and proton channels systems, the variational principle is employed to derive nonlinear governing equations. The Poisson-Kohn-Sham equations are derived for nano-transistors while the generalized Poisson-Boltzmann equation and Kohn-Sham equation are obtained for proton channels. Related numerical

  14. A Fast and On-Machine Measuring System Using the Laser Displacement Sensor for the Contour Parameters of the Drill Pipe Thread.

    PubMed

    Dong, Zhixu; Sun, Xingwei; Chen, Changzheng; Sun, Mengnan

    2018-04-13

    The inconvenient loading and unloading of a long and heavy drill pipe gives rise to the difficulty in measuring the contour parameters of its threads at both ends. To solve this problem, in this paper we take the SCK230 drill pipe thread-repairing machine tool as a carrier to design and achieve a fast and on-machine measuring system based on a laser probe. This system drives a laser displacement sensor to acquire the contour data of a certain axial section of the thread by using the servo function of a CNC machine tool. To correct the sensor's measurement errors caused by the measuring point inclination angle, an inclination error model is built to compensate data in real time. To better suppress random error interference and ensure real contour information, a new wavelet threshold function is proposed to process data through the wavelet threshold denoising. Discrete data after denoising is segmented according to the geometrical characteristics of the drill pipe thread, and the regression model of the contour data in each section is fitted by using the method of weighted total least squares (WTLS). Then, the thread parameters are calculated in real time to judge the processing quality. Inclination error experiments show that the proposed compensation model is accurate and effective, and it can improve the data acquisition accuracy of a sensor. Simulation results indicate that the improved threshold function is of better continuity and self-adaptability, which makes sure that denoising effects are guaranteed, and, meanwhile, the complete elimination of real data distorted in random errors is avoided. Additionally, NC50 thread-testing experiments show that the proposed on-machine measuring system can complete the measurement of a 25 mm thread in 7.8 s, with a measurement accuracy of ±8 μm and repeatability limit ≤ 4 μm (high repeatability), and hence the accuracy and efficiency of measurement are both improved.

  15. A Fast and On-Machine Measuring System Using the Laser Displacement Sensor for the Contour Parameters of the Drill Pipe Thread

    PubMed Central

    Sun, Xingwei; Chen, Changzheng; Sun, Mengnan

    2018-01-01

    The inconvenient loading and unloading of a long and heavy drill pipe gives rise to the difficulty in measuring the contour parameters of its threads at both ends. To solve this problem, in this paper we take the SCK230 drill pipe thread-repairing machine tool as a carrier to design and achieve a fast and on-machine measuring system based on a laser probe. This system drives a laser displacement sensor to acquire the contour data of a certain axial section of the thread by using the servo function of a CNC machine tool. To correct the sensor’s measurement errors caused by the measuring point inclination angle, an inclination error model is built to compensate data in real time. To better suppress random error interference and ensure real contour information, a new wavelet threshold function is proposed to process data through the wavelet threshold denoising. Discrete data after denoising is segmented according to the geometrical characteristics of the drill pipe thread, and the regression model of the contour data in each section is fitted by using the method of weighted total least squares (WTLS). Then, the thread parameters are calculated in real time to judge the processing quality. Inclination error experiments show that the proposed compensation model is accurate and effective, and it can improve the data acquisition accuracy of a sensor. Simulation results indicate that the improved threshold function is of better continuity and self-adaptability, which makes sure that denoising effects are guaranteed, and, meanwhile, the complete elimination of real data distorted in random errors is avoided. Additionally, NC50 thread-testing experiments show that the proposed on-machine measuring system can complete the measurement of a 25 mm thread in 7.8 s, with a measurement accuracy of ±8 μm and repeatability limit ≤ 4 μm (high repeatability), and hence the accuracy and efficiency of measurement are both improved. PMID:29652836

  16. Modeling the Charge Transport in Graphene Nano Ribbon Interfaces for Nano Scale Electronic Devices

    NASA Astrophysics Data System (ADS)

    Kumar, Ravinder; Engles, Derick

    2015-05-01

    In this research work we have modeled, simulated and compared the electronic charge transport for Metal-Semiconductor-Metal interfaces of Graphene Nano Ribbons (GNR) with different geometries using First-Principle calculations and Non-Equilibrium Green's Function (NEGF) method. We modeled junctions of Armchair GNR strip sandwiched between two Zigzag strips with (Z-A-Z) and Zigzag GNR strip sandwiched between two Armchair strips with (A-Z-A) using semi-empirical Extended Huckle Theory (EHT) within the framework of Non-Equilibrium Green Function (NEGF). I-V characteristics of the interfaces were visualized for various transport parameters. The distinct changes in conductance and I-V curves reported as the Width across layers, Channel length (Central part) was varied at different bias voltages from -1V to 1 V with steps of 0.25 V. From the simulated results we observed that the conductance through A-Z-A graphene junction is in the range of 10-13 Siemens whereas the conductance through Z-A-Z graphene junction is in the range of 10-5 Siemens. These suggested conductance controlled mechanisms for the charge transport in the graphene interfaces with different geometries is important for the design of graphene based nano scale electronic devices like Graphene FETs, Sensors.

  17. Effects of thread interruptions on tool pins in friction stir welding of AA6061

    DOE PAGES

    Reza-E-Rabby, Md.; Tang, Wei; Reynolds, Anthony P.

    2017-06-21

    In this paper, effects of pin thread and thread interruptions (flats) on weld quality and process response parameters during friction stir welding (FSW) of 6061 aluminium alloy were quantified. Otherwise, identical smooth and threaded pins with zero to four flats were adopted for FSW. Weldability and process response variables were examined. Results showed that threads with flats significantly improved weld quality and reduced in-plane forces. A three-flat threaded pin led to production of defect-free welds under all examined welding conditions. Spectral analyses of in-plane forces and weld cross-sectional analysis were performed to establish correlation among pin flats, force dynamics andmore » defect formation. Finally, the lowest in-plane force spectra amplitudes were consistently observed for defect-free welds.« less

  18. Effects of thread interruptions on tool pins in friction stir welding of AA6061

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

    Reza-E-Rabby, Md.; Tang, Wei; Reynolds, Anthony P.

    In this paper, effects of pin thread and thread interruptions (flats) on weld quality and process response parameters during friction stir welding (FSW) of 6061 aluminium alloy were quantified. Otherwise, identical smooth and threaded pins with zero to four flats were adopted for FSW. Weldability and process response variables were examined. Results showed that threads with flats significantly improved weld quality and reduced in-plane forces. A three-flat threaded pin led to production of defect-free welds under all examined welding conditions. Spectral analyses of in-plane forces and weld cross-sectional analysis were performed to establish correlation among pin flats, force dynamics andmore » defect formation. Finally, the lowest in-plane force spectra amplitudes were consistently observed for defect-free welds.« less

  19. The eNanoMapper database for nanomaterial safety information

    PubMed Central

    Chomenidis, Charalampos; Doganis, Philip; Fadeel, Bengt; Grafström, Roland; Hardy, Barry; Hastings, Janna; Hegi, Markus; Jeliazkov, Vedrin; Kochev, Nikolay; Kohonen, Pekka; Munteanu, Cristian R; Sarimveis, Haralambos; Smeets, Bart; Sopasakis, Pantelis; Tsiliki, Georgia; Vorgrimmler, David; Willighagen, Egon

    2015-01-01

    Summary Background: The NanoSafety Cluster, a cluster of projects funded by the European Commision, identified the need for a computational infrastructure for toxicological data management of engineered nanomaterials (ENMs). Ontologies, open standards, and interoperable designs were envisioned to empower a harmonized approach to European research in nanotechnology. This setting provides a number of opportunities and challenges in the representation of nanomaterials data and the integration of ENM information originating from diverse systems. Within this cluster, eNanoMapper works towards supporting the collaborative safety assessment for ENMs by creating a modular and extensible infrastructure for data sharing, data analysis, and building computational toxicology models for ENMs. Results: The eNanoMapper database solution builds on the previous experience of the consortium partners in supporting diverse data through flexible data storage, open source components and web services. We have recently described the design of the eNanoMapper prototype database along with a summary of challenges in the representation of ENM data and an extensive review of existing nano-related data models, databases, and nanomaterials-related entries in chemical and toxicogenomic databases. This paper continues with a focus on the database functionality exposed through its application programming interface (API), and its use in visualisation and modelling. Considering the preferred community practice of using spreadsheet templates, we developed a configurable spreadsheet parser facilitating user friendly data preparation and data upload. We further present a web application able to retrieve the experimental data via the API and analyze it with multiple data preprocessing and machine learning algorithms. Conclusion: We demonstrate how the eNanoMapper database is used to import and publish online ENM and assay data from several data sources, how the “representational state transfer

  20. Reshaping the Energy Landscape Transforms the Mechanism and Binding Kinetics of DNA Threading Intercalation.

    PubMed

    Clark, Andrew G; Naufer, M Nabuan; Westerlund, Fredrik; Lincoln, Per; Rouzina, Ioulia; Paramanathan, Thayaparan; Williams, Mark C

    2018-02-06

    Molecules that bind DNA via threading intercalation show high binding affinity as well as slow dissociation kinetics, properties ideal for the development of anticancer drugs. To this end, it is critical to identify the specific molecular characteristics of threading intercalators that result in optimal DNA interactions. Using single-molecule techniques, we quantify the binding of a small metal-organic ruthenium threading intercalator (Δ,Δ-B) and compare its binding characteristics to a similar molecule with significantly larger threading moieties (Δ,Δ-P). The binding affinities of the two molecules are the same, while comparison of the binding kinetics reveals significantly faster kinetics for Δ,Δ-B. However, the kinetics is still much slower than that observed for conventional intercalators. Comparison of the two threading intercalators shows that the binding affinity is modulated independently by the intercalating section and the binding kinetics is modulated by the threading moiety. In order to thread DNA, Δ,Δ-P requires a "lock mechanism", in which a large length increase of the DNA duplex is required for both association and dissociation. In contrast, measurements of the force-dependent binding kinetics show that Δ,Δ-B requires a large DNA length increase for association but no length increase for dissociation from DNA. This contrasts strongly with conventional intercalators, for which almost no DNA length change is required for association but a large DNA length change must occur for dissociation. This result illustrates the fundamentally different mechanism of threading intercalation compared with conventional intercalation and will pave the way for the rational design of therapeutic drugs based on DNA threading intercalation.

  1. Implementation of a multi-threaded framework for large-scale scientific applications

    DOE PAGES

    Sexton-Kennedy, E.; Gartung, Patrick; Jones, C. D.; ...

    2015-05-22

    The CMS experiment has recently completed the development of a multi-threaded capable application framework. In this paper, we will discuss the design, implementation and application of this framework to production applications in CMS. For the 2015 LHC run, this functionality is particularly critical for both our online and offline production applications, which depend on faster turn-around times and a reduced memory footprint relative to before. These applications are complex codes, each including a large number of physics-driven algorithms. While the framework is capable of running a mix of thread-safe and 'legacy' modules, algorithms running in our production applications need tomore » be thread-safe for optimal use of this multi-threaded framework at a large scale. Towards this end, we discuss the types of changes, which were necessary for our algorithms to achieve good performance of our multithreaded applications in a full-scale application. Lastly performance numbers for what has been achieved for the 2015 run are presented.« less

  2. NanoRacks CubeSat

    NASA Image and Video Library

    2014-02-14

    ISS038-E-047232 (14 Feb. 2014) --- A set of NanoRacks CubeSats is photographed by an Expedition 38 crew member after the deployment by the NanoRacks Launcher attached to the end of the Japanese robotic arm. The CubeSats program contains a variety of experiments such as Earth observations and advanced electronics testing. International Space Station solar array panels provide the backdrop for the scene.

  3. NanoRacks CubeSat Deployment

    NASA Image and Video Library

    2014-02-13

    ISS038-E-046586 (13 Feb. 2014) --- A set of NanoRacks CubeSats is photographed by an Expedition 38 crew member after the deployment by the NanoRacks Launcher attached to the end of the Japanese robotic arm. The CubeSats program contains a variety of experiments such as Earth observations and advanced electronics testing.

  4. NanoRacks CubeSat Deployment

    NASA Image and Video Library

    2014-02-13

    ISS038-E-046579 (13 Feb. 2014) --- A set of NanoRacks CubeSats is photographed by an Expedition 38 crew member after the deployment by the NanoRacks Launcher attached to the end of the Japanese robotic arm. The CubeSats program contains a variety of experiments such as Earth observations and advanced electronics testing.

  5. Modelling mass and heat transfer in nano-based cancer hyperthermia.

    PubMed

    Nabil, M; Decuzzi, P; Zunino, P

    2015-10-01

    We derive a sophisticated mathematical model for coupled heat and mass transport in the tumour microenvironment and we apply it to study nanoparticle delivery and hyperthermic treatment of cancer. The model has the unique ability of combining the following features: (i) realistic vasculature; (ii) coupled capillary and interstitial flow; (iii) coupled capillary and interstitial mass transfer applied to nanoparticles; and (iv) coupled capillary and interstitial heat transfer, which are the fundamental mechanisms governing nano-based hyperthermic treatment. This is an improvement with respect to previous modelling approaches, where the effect of blood perfusion on heat transfer is modelled in a spatially averaged form. We analyse the time evolution and the spatial distribution of particles and temperature in a tumour mass treated with superparamagnetic nanoparticles excited by an alternating magnetic field. By means of numerical experiments, we synthesize scaling laws that illustrate how nano-based hyperthermia depends on tumour size and vascularity. In particular, we identify two distinct mechanisms that regulate the distribution of particle and temperature, which are characterized by perfusion and diffusion, respectively.

  6. Research of thread rolling on difficult-to-cut material workpieces

    NASA Astrophysics Data System (ADS)

    Popov, A. Yu; Bugay, I. A.; Nazarov, P. V.; Evdokimova, O. P.; Popov, P. E.; Vasilyev, E. V.

    2018-01-01

    In medicine production Ti-6Al-4V Grade 5 alloys are used. One of the most important tasks is to increase the strength of the products and decrease in value. The possibility to roll special thread on Ti-6Al-4V Grade 5 alloy workpiece on 2-roller thread rolling machine has been studied. This is wrought alloy, treatment of which in cold condition causes difficulties due to low plasticity. To obtain Ti-6Al-4V Grade 5 alloy product with thread by rolling is rather difficult. This is due to large axial workpiece displacements resulting from large alloy resistance to cold plastic deformation. The provision of adequate kinematics requires experimental researches and the selection of modes - speed of rolling and pressure on the movable roller. The purpose of the work is to determine the optimal modes for rolling thread on titanium alloy workpiece. It has been stated that, after rolling, the product strength has increased up to 30%. As a result of the work, the unit has been made and recommendations to choose the optimal rolling process modes have been offered.

  7. Application Of Laser Induced Breakdown Spectroscopy (LIBS) Technique In Investigation Of Historical Metal Threads

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

    Abdel-Kareem, O.; Khedr, A.; Abdelhamid, M.

    Analysis of the composition of an object is a necessary step in the documentation of the properties of this object for estimating its condition. Also this is an important task for establishing an appropriate conservation treatment of an object or to follow up the result of the application of the suggested treatments. There has been an important evolution in the methods used for analysis of metal threads since the second half of the twentieth century. Today, the main considerations of selecting a method are based on the diagnostic power, representative sampling, reproducibility, destructive nature/invasiveness of analysis and accessibility to themore » appropriate instrument. This study aims at evaluating the usefulness of the use of Laser Induced Breakdown Spectroscopy (LIBS) Technique for analysis of historical metal threads. In this study various historical metal threads collected from different museums were investigated using (LIBS) technique. For evaluating usefulness of the suggested analytical protocol of this technique, the same investigated metal thread samples were investigated with Scanning Electron Microscope (SEM) with energy-dispersive x-ray analyzer (EDX) which is reported in conservation field as the best method, to determine the chemical composition, and corrosion of investigated metal threads. The results show that all investigated metal threads in the present study are too dirty, strongly damaged and corroded with different types of corrosion products. Laser Induced Breakdown Spectroscopy (LIBS) Technique is considered very useful technique that can be used safely for investigating historical metal threads. It is, in fact, very useful tool as a noninvasive method for analysis of historical metal threads. The first few laser shots are very useful for the investigation of the corrosion and dirt layer, while the following shots are very useful and effective for investigating the coating layer. Higher number of laser shots are very useful for the

  8. Three-dimensional imaging of threading dislocations in GaN crystals using two-photon excitation photoluminescence

    NASA Astrophysics Data System (ADS)

    Tanikawa, Tomoyuki; Ohnishi, Kazuki; Kanoh, Masaya; Mukai, Takashi; Matsuoka, Takashi

    2018-03-01

    The three-dimensional imaging of threading dislocations in GaN films was demonstrated using two-photon excitation photoluminescence. The threading dislocations were shown as dark lines. The spatial resolutions near the surface were about 0.32 and 3.2 µm for the in-plane and depth directions, respectively. The threading dislocations with a density less than 108 cm-2 were resolved, although the aberration induced by the refractive index mismatch was observed. The decrease in threading dislocation density was clearly observed by increasing the GaN film thickness. This can be considered a novel method for characterizing threading dislocations in GaN films without any destructive preparations.

  9. TENOGENIC DIFFERENTIATION OF HUMAN MSCs INDUCED BY THE TOPOGRAPHY OF ELECTROCHEMICALLY ALIGNED COLLAGEN THREADS

    PubMed Central

    Kishore, Vipuil; Bullock, Whitney; Sun, Xuanhao; Van Dyke, William Scott; Akkus, Ozan

    2011-01-01

    Topographical cues from the extracellular microenvironment can influence cellular activity including proliferation and differentiation. Information on the effects of material topography on tenogenic differentiation of human mesenchymal stem cells (human MSCs) is limited. A methodology using the principles of isoelectric focusing has previously been developed in our laboratory to synthesize electrochemically aligned collagen (ELAC) threads that mimics the packing density, alignment and strength of collagen dense connective tissues. In the current study, human MSCs were cultured on ELAC and randomly-oriented collagen threads and the effect of collagen orientation on cell morphology, proliferation and tenogenic differentiation was investigated. The results indicate that higher rates of proliferation were observed on randomly oriented collagen threads compared to ELAC threads. On the other hand, tendon specific markers such as scleraxis, tenomodulin, tenascin-C and collagen-III were significantly increased on ELAC threads compared to randomly oriented collagen threads. Additionally, osteocalcin, a specific marker of bone differentiation was suppressed on ELAC threads. Previous studies have reported that BMP-12 is a key growth factor to induce tenogenic differentiation of human MSCs. To evaluate the synergistic effect of BMP-12 and collagen orientation, human MSCs were cultured on ELAC threads in culture medium supplemented with and without BMP-12. The results revealed that BMP-12 did not have an additional effect on the tenogenic differentiation of human MSCs on ELAC threads. Together, these results suggest that ELAC induces tenogenic differentiation of human MSCs by presenting an aligned and dense collagen substrate, akin to the tendon itself. In conclusion, ELAC has a significant potential to be used as a tendon replacement and in the development of an osteotendinous construct towards the regeneration of bone-tendon interfaces. PMID:22177622

  10. Improvement and speed optimization of numerical tsunami modelling program using OpenMP technology

    NASA Astrophysics Data System (ADS)

    Chernov, A.; Zaytsev, A.; Yalciner, A.; Kurkin, A.

    2009-04-01

    Currently, the basic problem of tsunami modeling is low speed of calculations which is unacceptable for services of the operative notification. Existing algorithms of numerical modeling of hydrodynamic processes of tsunami waves are developed without taking the opportunities of modern computer facilities. There is an opportunity to have considerable acceleration of process of calculations by using parallel algorithms. We discuss here new approach to parallelization tsunami modeling code using OpenMP Technology (for multiprocessing systems with the general memory). Nowadays, multiprocessing systems are easily accessible for everyone. The cost of the use of such systems becomes much lower comparing to the costs of clusters. This opportunity also benefits all programmers to apply multithreading algorithms on desktop computers of researchers. Other important advantage of the given approach is the mechanism of the general memory - there is no necessity to send data on slow networks (for example Ethernet). All memory is the common for all computing processes; it causes almost linear scalability of the program and processes. In the new version of NAMI DANCE using OpenMP technology and multi-threading algorithm provide 80% gain in speed in comparison with the one-thread version for dual-processor unit. The speed increased and 320% gain was attained for four core processor unit of PCs. Thus, it was possible to reduce considerably time of performance of calculations on the scientific workstations (desktops) without complete change of the program and user interfaces. The further modernization of algorithms of preparation of initial data and processing of results using OpenMP looks reasonable. The final version of NAMI DANCE with the increased computational speed can be used not only for research purposes but also in real time Tsunami Warning Systems.

  11. Bending at the base of a dragged-out viscous thread

    NASA Astrophysics Data System (ADS)

    Blount, Maurice; Lister, John

    2007-11-01

    We consider steady flow of a slender viscous thread falling from a nozzle onto a moving horizontal belt. We analyse the asymptotic limit of a very slender thread, and show that it has a boundary-layer structure in which bending stresses only become important near the belt, where they support a vertical stress and allow the velocity and rolling conditions to be satisfied. The outer solution is analogous to a viscous catenary, with velocity fixed at the belt and at the nozzle. There are three asymptotic regimes, with distinct structures, corresponding to the cases that the belt speed is larger than, smaller than, or close to the velocity of a freely falling thread. The implications for the onset and amplitude of meanders in the `fluid-mechanical sewing machine' are explored.

  12. Salvaging an angled implant abutment with damaged internal threads: a clinical report.

    PubMed

    Imam, Ahmad Y; Yilmaz, Burak; Özçelik, Tuncer Burak; McGlumphy, Edwin

    2013-05-01

    This clinical report describes a technique to fit an existing fixed detachable implant-supported prosthesis to a zygomatic implant abutment with stripped internal threads. The threads of the abutment were retapped and a wide diameter/wide head retaining screw was used to secure the existing prosthesis on the abutment. Care is needed in the retrieval of broken screws so as not to damage the internal threads of the implants, which might lead to irreversible complications. Copyright © 2013 The Editorial Council of the Journal of Prosthetic Dentistry. Published by Mosby, Inc. All rights reserved.

  13. Parallel Lattice Basis Reduction Using a Multi-threaded Schnorr-Euchner LLL Algorithm

    NASA Astrophysics Data System (ADS)

    Backes, Werner; Wetzel, Susanne

    In this paper, we introduce a new parallel variant of the LLL lattice basis reduction algorithm. Our new, multi-threaded algorithm is the first to provide an efficient, parallel implementation of the Schorr-Euchner algorithm for today’s multi-processor, multi-core computer architectures. Experiments with sparse and dense lattice bases show a speed-up factor of about 1.8 for the 2-thread and about factor 3.2 for the 4-thread version of our new parallel lattice basis reduction algorithm in comparison to the traditional non-parallel algorithm.

  14. 21 CFR 888.3040 - Smooth or threaded metallic bone fixation fastener.

    Code of Federal Regulations, 2014 CFR

    2014-04-01

    ... 21 Food and Drugs 8 2014-04-01 2014-04-01 false Smooth or threaded metallic bone fixation fastener... metallic bone fixation fastener. (a) Identification. A smooth or threaded metallic bone fixation fastener..., slotted head on the end. It may be used for fixation of bone fractures, for bone reconstructions, as a...

  15. 21 CFR 888.3040 - Smooth or threaded metallic bone fixation fastener.

    Code of Federal Regulations, 2011 CFR

    2011-04-01

    ... 21 Food and Drugs 8 2011-04-01 2011-04-01 false Smooth or threaded metallic bone fixation fastener... metallic bone fixation fastener. (a) Identification. A smooth or threaded metallic bone fixation fastener..., slotted head on the end. It may be used for fixation of bone fractures, for bone reconstructions, as a...

  16. 21 CFR 888.3040 - Smooth or threaded metallic bone fixation fastener.

    Code of Federal Regulations, 2012 CFR

    2012-04-01

    ... 21 Food and Drugs 8 2012-04-01 2012-04-01 false Smooth or threaded metallic bone fixation fastener... metallic bone fixation fastener. (a) Identification. A smooth or threaded metallic bone fixation fastener..., slotted head on the end. It may be used for fixation of bone fractures, for bone reconstructions, as a...

  17. 21 CFR 888.3040 - Smooth or threaded metallic bone fixation fastener.

    Code of Federal Regulations, 2013 CFR

    2013-04-01

    ... 21 Food and Drugs 8 2013-04-01 2013-04-01 false Smooth or threaded metallic bone fixation fastener... metallic bone fixation fastener. (a) Identification. A smooth or threaded metallic bone fixation fastener..., slotted head on the end. It may be used for fixation of bone fractures, for bone reconstructions, as a...

  18. 21 CFR 888.3040 - Smooth or threaded metallic bone fixation fastener.

    Code of Federal Regulations, 2010 CFR

    2010-04-01

    ... 21 Food and Drugs 8 2010-04-01 2010-04-01 false Smooth or threaded metallic bone fixation fastener... metallic bone fixation fastener. (a) Identification. A smooth or threaded metallic bone fixation fastener..., slotted head on the end. It may be used for fixation of bone fractures, for bone reconstructions, as a...

  19. Dynamic probabilistic material flow analysis of nano-SiO2, nano iron oxides, nano-CeO2, nano-Al2O3, and quantum dots in seven European regions.

    PubMed

    Wang, Yan; Nowack, Bernd

    2018-04-01

    Static environmental exposure assessment models based on material flow analysis (MFA) have previously been used to estimate flows of engineered nanomaterials (ENMs) to the environment. However, such models do not account for changes in the system behavior over time. Dynamic MFA used in this study includes the time-dependent development of the modelling system by considering accumulation of ENMs in stocks and the environment, and the dynamic release of ENMs from nano-products. In addition, this study also included regional variations in population, waste management systems, and environmental compartments, which subsequently influence the environmental release and concentrations of ENMs. We have estimated the flows and release concentrations of nano-SiO 2 , nano-iron oxides, nano-CeO 2 , nano-Al 2 O 3 , and quantum dots in the EU and six geographical sub-regions in Europe (Central Europe, Northern Europe, Southern Europe, Eastern Europe, South-eastern Europe, and Switzerland). The model predicts that a large amount of ENMs are accumulated in stocks (not considering further transformation). For example, in the EU 2040 Mt of nano-SiO 2 are stored in the in-use stock, 80,400 tonnes have been accumulated in sediments and 65,600 tonnes in natural and urban soil from 1990 to 2014. The magnitude of flows in waste management processes in different regions varies because of differences in waste handling. For example, concentrations in landfilled waste are lowest in South-eastern Europe due to dilution by the high amount of landfilled waste in the region. The flows predicted in this work can serve as improved input data for mechanistic environmental fate models and risk assessment studies compared to previous estimates using static models. Copyright © 2018 Elsevier Ltd. All rights reserved.

  20. Density of bunched threading dislocations in epitaxial GaN layers as determined using X-ray diffraction

    NASA Astrophysics Data System (ADS)

    Barchuk, M.; Holý, V.; Rafaja, D.

    2018-04-01

    X-ray diffraction is one of the most popular experimental methods employed for determination of dislocation densities, as it can recognize both the strain fields and the local lattice rotations produced by dislocations. The main challenge of the quantitative analysis of the dislocation density is the formulation of a suitable microstructure model, which describes the dislocation arrangement and the effect of the interactions between the strain fields from neighboring dislocations reliably in order to be able to determine the dislocation densities precisely. The aim of this study is to prove the capability of X-ray diffraction and two computational methods, which are frequently used for quantification of the threading dislocation densities from X-ray diffraction measurements, in the special case of partially bunched threading dislocations. The first method is based on the analysis of the dislocation-controlled crystal mosaicity, and the other one on the analysis of diffuse X-ray scattering from threading dislocations. The complementarity of both methods is discussed. Furthermore, it is shown how the complementarity of these methods can be used to improve the results of the quantitative analysis of bunched and thus inhomogeneously distributed threading dislocations and to get a better insight into the dislocation arrangement.

  1. Form and function of cnidarian spirocysts. III. Ultrastructure of the thread and the function of spirocysts

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

    Mariscal, R.N.; McLean, R.B.; Hand, C.

    1977-01-01

    Unlike most nematocysts, undischarged spirocyst threads bear hollow tubules rather than spines. The undischarged tubules are interconnected in hexagonal arrays and appear to be arranged in bundles along the length of the thread. Although the wall of the thread is folded in length and width, the tubules are not. Upon discharge and contact with sea water, the tubules solubilize and adhere to various substrates and prey. Traction between such objects and the everting thread causes the tubules to spin out into a web or meshwork of fine microfibrillae. Lack of contact of the everting thread with objects results in themore » tubules forming small droplets of partially solubilized material, some of which appear to be arranged in a helical pattern around the thread. The web or meshwork formed by the solubilized tubules in contact with various substrates probably serves to increase significantly the surface area and adhesive properties of the everted spirocyst thread.« less

  2. Optical and electrical properties of GaN-based light emitting diodes grown on micro- and nano-scale patterned Si substrate

    NASA Astrophysics Data System (ADS)

    Chiu, Ching-Hsueh; Lin, Chien-Chung; Deng, Dongmei; Kuo, Hao-Chung; Lau, Kei-May

    2011-10-01

    We investigate the optical and electrical characteristics of the GaN-based light emitting diodes (LEDs) grown on Micro and Nano-scale Patterned silicon substrate (MPLEDs and NPLEDs). The transmission electron microscopy (TEM) images reveal the suppression of threading dislocation density in InGaN/GaN structure on nano-pattern substrate due to nanoscale epitaxial lateral overgrowth (NELOG). The plan-view and cross-section cathodoluminescence (CL) mappings show less defective and more homogeneous active quantum well region growth on nano-porous substrates. From temperature dependent photoluminescence (PL) and low temperature time-resolved photoluminescence (TRPL) measurement, NPLEDs has better carrier confinement and higher radiative recombination rate than MPLEDs. In terms of device performance, NPLEDs exhibits smaller electroluminescence (EL) peak wavelength blue shift, lower reverse leakage current and decreases efficiency droop compared with the MPLEDs. These results suggest the feasibility of using NPSi for the growth of high quality and power LEDs on Si substrates.

  3. Simulation of LHC events on a millions threads

    NASA Astrophysics Data System (ADS)

    Childers, J. T.; Uram, T. D.; LeCompte, T. J.; Papka, M. E.; Benjamin, D. P.

    2015-12-01

    Demand for Grid resources is expected to double during LHC Run II as compared to Run I; the capacity of the Grid, however, will not double. The HEP community must consider how to bridge this computing gap by targeting larger compute resources and using the available compute resources as efficiently as possible. Argonne's Mira, the fifth fastest supercomputer in the world, can run roughly five times the number of parallel processes that the ATLAS experiment typically uses on the Grid. We ported Alpgen, a serial x86 code, to run as a parallel application under MPI on the Blue Gene/Q architecture. By analysis of the Alpgen code, we reduced the memory footprint to allow running 64 threads per node, utilizing the four hardware threads available per core on the PowerPC A2 processor. Event generation and unweighting, typically run as independent serial phases, are coupled together in a single job in this scenario, reducing intermediate writes to the filesystem. By these optimizations, we have successfully run LHC proton-proton physics event generation at the scale of a million threads, filling two-thirds of Mira.

  4. Combinatorial Nano-Bio Interfaces.

    PubMed

    Cai, Pingqiang; Zhang, Xiaoqian; Wang, Ming; Wu, Yun-Long; Chen, Xiaodong

    2018-06-08

    Nano-bio interfaces are emerging from the convergence of engineered nanomaterials and biological entities. Despite rapid growth, clinical translation of biomedical nanomaterials is heavily compromised by the lack of comprehensive understanding of biophysicochemical interactions at nano-bio interfaces. In the past decade, a few investigations have adopted a combinatorial approach toward decoding nano-bio interfaces. Combinatorial nano-bio interfaces comprise the design of nanocombinatorial libraries and high-throughput bioevaluation. In this Perspective, we address challenges in combinatorial nano-bio interfaces and call for multiparametric nanocombinatorics (composition, morphology, mechanics, surface chemistry), multiscale bioevaluation (biomolecules, organelles, cells, tissues/organs), and the recruitment of computational modeling and artificial intelligence. Leveraging combinatorial nano-bio interfaces will shed light on precision nanomedicine and its potential applications.

  5. Computational modeling of intrinsic dissipation in nano-structure

    NASA Astrophysics Data System (ADS)

    Kunal, Kumar

    In this work, using computational modeling, we study the different mechanisms of intrinsic dissipation in nano-electro mechanical systems (NEMS). We, first, use molecular dynamics (MD) simulation and gain an understanding of the underlying loss mechanisms. Using insights from the MD simulation, a multi-scale method to model intrinsic damping is developed. The high frequency vibration in NEMS have important applications. A few examples include the sensing of atomic mass, detection of biological molecules and observation of quantum effects in macroscopic objects. For all these potential applications, dissipation plays a limiting role. While a number of experimental and theoretical studies have been performed, the individual role of different mechanisms remains unclear. In this work, we attempt to isolate and understand the surface and size effect on some of the intrinsic mechanisms. We, first, consider the case of the Akhiezer damping. The Akhiezer dynamics is expected to play an important role in nano-resonators with frequencies in the GHz range. Using a judiciously devised MD set-up, we isolate Akhiezer dynamics. We show that the surfaces aid in reducing the dissipation rate through increasing the rate of thermalization of the phonons. We, next, study damping under the flexure mode of operation. A comparative analysis with the stretching mode shows that the flexure mode is less dissipative. A reduced order model is considered to understand this novel behavior. We, also, investigate the role of tension on the Q factor, a measure of the inverse of dissipation rate. From these studies, we conclude that Akhiezer dynamics plays a dominant role in nano-resonators. We, then, develop a quasi-harmonic based multi-scale method to model Akhiezer damping. A stress component, that characterizes the non-equilibrium phonon population, is derived. We obtain constitutive relation that governs the time evolution of the non-equilibrium stress. Different methods to parametrize the

  6. Performance of hybrid programming models for multiscale cardiac simulations: preparing for petascale computation.

    PubMed

    Pope, Bernard J; Fitch, Blake G; Pitman, Michael C; Rice, John J; Reumann, Matthias

    2011-10-01

    Future multiscale and multiphysics models that support research into human disease, translational medical science, and treatment can utilize the power of high-performance computing (HPC) systems. We anticipate that computationally efficient multiscale models will require the use of sophisticated hybrid programming models, mixing distributed message-passing processes [e.g., the message-passing interface (MPI)] with multithreading (e.g., OpenMP, Pthreads). The objective of this study is to compare the performance of such hybrid programming models when applied to the simulation of a realistic physiological multiscale model of the heart. Our results show that the hybrid models perform favorably when compared to an implementation using only the MPI and, furthermore, that OpenMP in combination with the MPI provides a satisfactory compromise between performance and code complexity. Having the ability to use threads within MPI processes enables the sophisticated use of all processor cores for both computation and communication phases. Considering that HPC systems in 2012 will have two orders of magnitude more cores than what was used in this study, we believe that faster than real-time multiscale cardiac simulations can be achieved on these systems.

  7. IOPA: I/O-aware parallelism adaption for parallel programs

    PubMed Central

    Liu, Tao; Liu, Yi; Qian, Chen; Qian, Depei

    2017-01-01

    With the development of multi-/many-core processors, applications need to be written as parallel programs to improve execution efficiency. For data-intensive applications that use multiple threads to read/write files simultaneously, an I/O sub-system can easily become a bottleneck when too many of these types of threads exist; on the contrary, too few threads will cause insufficient resource utilization and hurt performance. Therefore, programmers must pay much attention to parallelism control to find the appropriate number of I/O threads for an application. This paper proposes a parallelism control mechanism named IOPA that can adjust the parallelism of applications to adapt to the I/O capability of a system and balance computing resources and I/O bandwidth. The programming interface of IOPA is also provided to programmers to simplify parallel programming. IOPA is evaluated using multiple applications with both solid state and hard disk drives. The results show that the parallel applications using IOPA can achieve higher efficiency than those with a fixed number of threads. PMID:28278236

  8. IOPA: I/O-aware parallelism adaption for parallel programs.

    PubMed

    Liu, Tao; Liu, Yi; Qian, Chen; Qian, Depei

    2017-01-01

    With the development of multi-/many-core processors, applications need to be written as parallel programs to improve execution efficiency. For data-intensive applications that use multiple threads to read/write files simultaneously, an I/O sub-system can easily become a bottleneck when too many of these types of threads exist; on the contrary, too few threads will cause insufficient resource utilization and hurt performance. Therefore, programmers must pay much attention to parallelism control to find the appropriate number of I/O threads for an application. This paper proposes a parallelism control mechanism named IOPA that can adjust the parallelism of applications to adapt to the I/O capability of a system and balance computing resources and I/O bandwidth. The programming interface of IOPA is also provided to programmers to simplify parallel programming. IOPA is evaluated using multiple applications with both solid state and hard disk drives. The results show that the parallel applications using IOPA can achieve higher efficiency than those with a fixed number of threads.

  9. HELICAL MOTIONS OF FINE-STRUCTURE PROMINENCE THREADS OBSERVED BY HINODE AND IRIS

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

    Okamoto, Takenori J.; Liu, Wei; Tsuneta, Saku, E-mail: joten.okamoto@nao.ac.jp

    Fine-structure dynamics in solar prominences holds critical clues to understanding their physical nature of significant space-weather implications. We report evidence of rotational motions of horizontal helical threads in two active-region prominences observed by the Hinode and/or Interface Region Imaging Spectrograph satellites at high resolution. In the first event, we found transverse motions of brightening threads at speeds up to 55 km s{sup -1} seen in the plane of the sky. Such motions appeared as sinusoidal space–time trajectories with a typical period of ∼390 s, which is consistent with plane-of-sky projections of rotational motions. Phase delays at different locations suggest themore » propagation of twists along the threads at phase speeds of 90–270 km s{sup -1}. At least 15 episodes of such motions occurred in two days, none associated with an eruption. For these episodes, the plane-of-sky speed is linearly correlated with the vertical travel distance, suggestive of a constant angular speed. In the second event, we found Doppler velocities of 30–40 km s{sup -1} in opposite directions in the top and bottom portions of the prominence, comparable to the plane-of-sky speed. The moving threads have about twice broader line widths than stationary threads. These observations, when taken together, provide strong evidence for rotations of helical prominence threads, which were likely driven by unwinding twists triggered by magnetic reconnection between twisted prominence magnetic fields and ambient coronal fields.« less

  10. Thread-like supercapacitors based on one-step spun nanocomposite yarns.

    PubMed

    Meng, Qinghai; Wang, Kai; Guo, Wei; Fang, Jin; Wei, Zhixiang; She, Xilin

    2014-08-13

    Thread-like electronic devices have attracted great interest because of their potential applications in wearable electronics. To produce high-performance, thread-like supercapacitors, a mixture of stable dispersions of single-walled carbon nanotubes and conducting polyaniline nanowires are prepared. Then, the mixture is spun into flexible yarns with a polyvinyl alcohol outer sheath by a one-step spinning process. The composite yarns show excellent mechanical properties and high electrical conductivities after sufficient washing to remove surfactants. After applying a further coating layer of gel electrolyte, two flexible yarns are twisted together to form a thread-like supercapacitor. The supercapacitor based on these two yarns (SWCNTs and PAniNWs) possesses a much higher specific capacitance than that based only on pure SWCNTs yarns, making it an ideal energy-storage device for wearable electronics. © 2014 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  11. Bioglass incorporation improves mechanical properties and enhances cell-mediated mineralization on electrochemically aligned collagen threads.

    PubMed

    Nijsure, Madhura P; Pastakia, Meet; Spano, Joseph; Fenn, Michael B; Kishore, Vipuil

    2017-09-01

    Bone tissue engineering mandates the development of a functional scaffold that mimics the physicochemical properties of native bone. Bioglass 45S5 (BG) is a highly bioactive material known to augment bone formation and restoration. Hybrid scaffolds fabricated using collagen type I and BG resemble the organic and inorganic composition of the bone extracellular matrix and hence have been extensively investigated for bone tissue engineering applications. However, collagen-BG scaffolds developed thus far do not recapitulate the aligned structure of collagen found in native bone. In this study, an electrochemical fabrication method was employed to synthesize BG-incorporated electrochemically aligned collagen (BG-ELAC) threads that are compositionally similar to native bone. Further, aligned collagen fibrils within BG-ELAC threads mimic the anisotropic arrangement of collagen fibrils in native bone. The effect of BG incorporation on the mechanical properties and cell-mediated mineralization on ELAC threads was investigated. The results indicated that BG can be successfully incorporated within ELAC threads, without disturbing collagen fibril alignment. Further, BG incorporation significantly increased the ultimate tensile stress (UTS) and modulus of ELAC threads (p < 0.05). SBF conditioning showed extensive mineralization on BG-ELAC threads that increased over time demonstrating the bone bioactivity of BG-ELAC threads. Additionally, BG incorporation into ELAC threads resulted in increased cell proliferation (p < 0.05) and deposition of a highly dense and continuous mineralized matrix. In conclusion, incorporation of BG into ELAC threads is a viable strategy for the development of an osteoconductive material for bone tissue engineering applications. © 2017 Wiley Periodicals, Inc. J Biomed Mater Res Part A: 105A: 2429-2440, 2017. © 2017 Wiley Periodicals, Inc.

  12. Structural pathway of regulated substrate transfer and threading through an Hsp100 disaggregase.

    PubMed

    Deville, Célia; Carroni, Marta; Franke, Kamila B; Topf, Maya; Bukau, Bernd; Mogk, Axel; Saibil, Helen R

    2017-08-01

    Refolding aggregated proteins is essential in combating cellular proteotoxic stress. Together with Hsp70, Hsp100 chaperones, including Escherichia coli ClpB, form a powerful disaggregation machine that threads aggregated polypeptides through the central pore of tandem adenosine triphosphatase (ATPase) rings. To visualize protein disaggregation, we determined cryo-electron microscopy structures of inactive and substrate-bound ClpB in the presence of adenosine 5'- O -(3-thiotriphosphate), revealing closed AAA+ rings with a pronounced seam. In the substrate-free state, a marked gradient of resolution, likely corresponding to mobility, spans across the AAA+ rings with a dynamic hotspot at the seam. On the seam side, the coiled-coil regulatory domains are locked in a horizontal, inactive orientation. On the opposite side, the regulatory domains are accessible for Hsp70 binding, substrate targeting, and activation. In the presence of the model substrate casein, the polypeptide threads through the entire pore channel and increased nucleotide occupancy correlates with higher ATPase activity. Substrate-induced domain displacements indicate a pathway of regulated substrate transfer from Hsp70 to the ClpB pore, inside which a spiral of loops contacts the substrate. The seam pore loops undergo marked displacements, along with ordering of the regulatory domains. These asymmetric movements suggest a mechanism for ATPase activation and substrate threading during disaggregation.

  13. Probabilistic modeling of the flows and environmental risks of nano-silica.

    PubMed

    Wang, Yan; Kalinina, Anna; Sun, Tianyin; Nowack, Bernd

    2016-03-01

    Nano-silica, the engineered nanomaterial with one of the largest production volumes, has a wide range of applications in consumer products and industry. This study aimed to quantify the exposure of nano-silica to the environment and to assess its risk to surface waters. Concentrations were calculated for four environmental (air, soil, surface water, sediments) and two technical compartments (wastewater, solid waste) for the EU and Switzerland using probabilistic material flow modeling. The corresponding median concentration in surface water is predicted to be 0.12 μg/l in the EU (0.053-3.3 μg/l, 15/85% quantiles). The concentrations in sediments in the complete sedimentation scenario were found to be the largest among all environmental compartments, with a median annual increase of 0.43 mg/kg · y in the EU (0.19-12 mg/kg · y, 15/85% quantiles). Moreover, probabilistic species sensitivity distributions (PSSD) were computed and the risk of nano-silica in surface waters was quantified by comparing the predicted environmental concentration (PEC) with the predicted no-effect concentration (PNEC) distribution, which was derived from the cumulative PSSD. This assessment suggests that nano-silica currently poses no risk to aquatic organisms in surface waters. Further investigations are needed to assess the risk of nano-silica in other environmental compartments, which is currently not possible due to a lack of ecotoxicological data. Copyright © 2015 Elsevier B.V. All rights reserved.

  14. Inertia Compensation While Scanning Screw Threads on Coordinate Measuring Machines

    NASA Astrophysics Data System (ADS)

    Kosarevsky, Sergey; Latypov, Viktor

    2010-01-01

    Usage of scanning coordinate-measuring machines for inspection of screw threads has become a common practice nowadays. Compared to touch trigger probing, scanning capabilities allow to speed up the measuring process while still maintaining high accuracy. However, in some cases accuracy drastically depends on the scanning speed. In this paper a compensation method is proposed allowing to reduce the influence of inertia of the probing system while scanning screw threads on coordinate-measuring machines.

  15. Fragmentation mechanisms of confined co-flowing capillary threads revealed by active flow focusing

    NASA Astrophysics Data System (ADS)

    Robert de Saint Vincent, Matthieu; Delville, Jean-Pierre

    2016-08-01

    The control over stationary liquid thread fragmentation in confined co-flows is a key issue for the processing and transport of fluids in (micro-)ducts. Confinement indeed strongly enhances the stability of capillary threads, and also induces steric and hydrodynamic feedback effects on diphasic flows. We investigate the thread-to-droplet transition within the confined environment of a microchannel by using optocapillarity, i.e., interface stresses driven by light, as a wall-free constriction to locally flow focus stable threads in a tunable way, pinch them, and force their fragmentation. Above some flow-dependent onset in optical forcing, we observe a dynamic transition alternating between continuous (thread) and fragmented (droplets) states and show a surprisingly gradual thread-to-droplet transition when increasing the amplitude of the thread constriction. This transition is interpreted as an evolution from a convective to an absolute instability. Depending on the forcing amplitude, we then identify and characterize several stable fragmented regimes of single and multiple droplet periodicity (up to period-8). These droplet regimes build a robust flow-independent bifurcation diagram that eventually closes up, due to the flow confinement, to a monodisperse droplet size, independent of the forcing and close to the most unstable mode expected from the Rayleigh-Plateau instability. This fixed monodispersity can be circumvented by temporally modulating the optocapillary coupling, as we show that fragmentation can then occur either by triggering again the Rayleigh-Plateau instability when the largest excitable wavelength is larger than that of the most unstable mode, or as a pure consequence of a sufficiently strong optocapillary pinching. When properly adjusted, this modulation allows us to avoid the transient reforming and multidisperse regimes, and thereby to reversibly produce stable monodisperse droplet trains of controlled size. By actuating local flow focusing in

  16. Innovative Uses of Threaded Discussion Groups.

    ERIC Educational Resources Information Center

    Bailey, Yardley Selwyn; Wright, Vivian H.

    This paper explores how faculty from various disciplines at one southeastern university used the threaded discussion group feature of such integrated Web packages as FrontPage, Blackboard, and WebCT. Ten faculty members from the colleges of Arts and Sciences, Business, Education, Communication, Engineering, and Nursing were surveyed. Qualitative…

  17. Progress on Fault Mechanisms for Gear Transmissions in Coal Cutting Machines: From Macro to Nano Models.

    PubMed

    Jiang, Yu; Zhang, Xiaogang; Zhang, Chao; Li, Zhixiong; Sheng, Chenxing

    2017-04-01

    Numerical modeling has been recognized as the dispensable tools for mechanical fault mechanism analysis. Techniques, ranging from macro to nano levels, include the finite element modeling boundary element modeling, modular dynamic modeling, nano dynamic modeling and so forth. This work firstly reviewed the progress on the fault mechanism analysis for gear transmissions from the tribological and dynamic aspects. Literature review indicates that the tribological and dynamic properties were separately investigated to explore the fault mechanism in gear transmissions. However, very limited work has been done to address the links between the tribological and dynamic properties and scarce researches have been done for coal cutting machines. For this reason, the tribo-dynamic coupled model was introduced to bridge the gap between the tribological and dynamic models in fault mechanism analysis for gear transmissions in coal cutting machines. The modular dynamic modeling and nano dynamic modeling techniques are expected to establish the links between the tribological and dynamic models. Possible future research directions using the tribo dynamic coupled model were summarized to provide potential references for researchers in the field.

  18. Protein structure recognition: From eigenvector analysis to structural threading method

    NASA Astrophysics Data System (ADS)

    Cao, Haibo

    In this work, we try to understand the protein folding problem using pair-wise hydrophobic interaction as the dominant interaction for the protein folding process. We found a strong correlation between amino acid sequence and the corresponding native structure of the protein. Some applications of this correlation were discussed in this dissertation include the domain partition and a new structural threading method as well as the performance of this method in the CASP5 competition. In the first part, we give a brief introduction to the protein folding problem. Some essential knowledge and progress from other research groups was discussed. This part include discussions of interactions among amino acids residues, lattice HP model, and the designablity principle. In the second part, we try to establish the correlation between amino acid sequence and the corresponding native structure of the protein. This correlation was observed in our eigenvector study of protein contact matrix. We believe the correlation is universal, thus it can be used in automatic partition of protein structures into folding domains. In the third part, we discuss a threading method based on the correlation between amino acid sequence and ominant eigenvector of the structure contact-matrix. A mathematically straightforward iteration scheme provides a self-consistent optimum global sequence-structure alignment. The computational efficiency of this method makes it possible to search whole protein structure databases for structural homology without relying on sequence similarity. The sensitivity and specificity of this method is discussed, along with a case of blind test prediction. In the appendix, we list the overall performance of this threading method in CASP5 blind test in comparison with other existing approaches.

  19. AthenaMT: upgrading the ATLAS software framework for the many-core world with multi-threading

    NASA Astrophysics Data System (ADS)

    Leggett, Charles; Baines, John; Bold, Tomasz; Calafiura, Paolo; Farrell, Steven; van Gemmeren, Peter; Malon, David; Ritsch, Elmar; Stewart, Graeme; Snyder, Scott; Tsulaia, Vakhtang; Wynne, Benjamin; ATLAS Collaboration

    2017-10-01

    ATLAS’s current software framework, Gaudi/Athena, has been very successful for the experiment in LHC Runs 1 and 2. However, its single threaded design has been recognized for some time to be increasingly problematic as CPUs have increased core counts and decreased available memory per core. Even the multi-process version of Athena, AthenaMP, will not scale to the range of architectures we expect to use beyond Run2. After concluding a rigorous requirements phase, where many design components were examined in detail, ATLAS has begun the migration to a new data-flow driven, multi-threaded framework, which enables the simultaneous processing of singleton, thread unsafe legacy Algorithms, cloned Algorithms that execute concurrently in their own threads with different Event contexts, and fully re-entrant, thread safe Algorithms. In this paper we report on the process of modifying the framework to safely process multiple concurrent events in different threads, which entails significant changes in the underlying handling of features such as event and time dependent data, asynchronous callbacks, metadata, integration with the online High Level Trigger for partial processing in certain regions of interest, concurrent I/O, as well as ensuring thread safety of core services. We also report on upgrading the framework to handle Algorithms that are fully re-entrant.

  20. Threaded biliary inside stents are a safe and effective therapeutic option in cases of malignant hilar obstruction.

    PubMed

    Inatomi, Osamu; Bamba, Shigeki; Shioya, Makoto; Mochizuki, Yosuke; Ban, Hiromitsu; Tsujikawa, Tomoyuki; Saito, Yasuharu; Andoh, Akira; Fujiyama, Yoshihide

    2013-02-14

    Although endoscopic biliary stents have been accepted as part of palliative therapy for cases of malignant hilar obstruction, the optimal endoscopic management regime remains controversial. In this study, we evaluated the safety and efficacy of placing a threaded stent above the sphincter of Oddi (threaded inside plastic stents, threaded PS) and compared the results with those of other stent types. Patients with malignant hilar obstruction, including those requiring biliary drainage for stent occlusion, were selected. Patients received either one of the following endoscopic indwelling stents: threaded PS, conventional plastic stents (conventional PS), or metallic stents (MS). Duration of stent patency and the incident of complication were compared in these patients. Forty-two patients underwent placement of endoscopic indwelling stents (threaded PS = 12, conventional PS = 17, MS = 13). The median duration of threaded PS patency was significantly longer than that of conventional PS patency (142 vs. 32 days; P = 0.04, logrank test). The median duration of threaded PS and MS patency was not significantly different (142 vs. 150 days, P = 0.83). Stent migration did not occur in any group. Among patients who underwent threaded PS placement as a salvage therapy after MS obstruction due to tumor ingrowth, the median duration of MS patency was significantly shorter than that of threaded PS patency (123 vs. 240 days). Threaded PS are safe and effective in cases of malignant hilar obstruction; moreover, it is a suitable therapeutic option not only for initial drainage but also for salvage therapy.

  1. 78 FR 79670 - Steel Threaded Rod From Thailand: Preliminary Determination of Sales at Less Than Fair Value and...

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-12-31

    ... DEPARTMENT OF COMMERCE International Trade Administration [A-549-831] Steel Threaded Rod From... ``Department'') preliminarily determines that steel threaded rod from Thailand is being, or is likely to be... Investigation The merchandise covered by this investigation is steel threaded rod. Steel threaded rod is certain...

  2. Superior model for fault tolerance computation in designing nano-sized circuit systems

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

    Singh, N. S. S., E-mail: narinderjit@petronas.com.my; Muthuvalu, M. S., E-mail: msmuthuvalu@gmail.com; Asirvadam, V. S., E-mail: vijanth-sagayan@petronas.com.my

    2014-10-24

    As CMOS technology scales nano-metrically, reliability turns out to be a decisive subject in the design methodology of nano-sized circuit systems. As a result, several computational approaches have been developed to compute and evaluate reliability of desired nano-electronic circuits. The process of computing reliability becomes very troublesome and time consuming as the computational complexity build ups with the desired circuit size. Therefore, being able to measure reliability instantly and superiorly is fast becoming necessary in designing modern logic integrated circuits. For this purpose, the paper firstly looks into the development of an automated reliability evaluation tool based on the generalizationmore » of Probabilistic Gate Model (PGM) and Boolean Difference-based Error Calculator (BDEC) models. The Matlab-based tool allows users to significantly speed-up the task of reliability analysis for very large number of nano-electronic circuits. Secondly, by using the developed automated tool, the paper explores into a comparative study involving reliability computation and evaluation by PGM and, BDEC models for different implementations of same functionality circuits. Based on the reliability analysis, BDEC gives exact and transparent reliability measures, but as the complexity of the same functionality circuits with respect to gate error increases, reliability measure by BDEC tends to be lower than the reliability measure by PGM. The lesser reliability measure by BDEC is well explained in this paper using distribution of different signal input patterns overtime for same functionality circuits. Simulation results conclude that the reliability measure by BDEC depends not only on faulty gates but it also depends on circuit topology, probability of input signals being one or zero and also probability of error on signal lines.« less

  3. 78 FR 12718 - Certain Steel Threaded Rod From the People's Republic of China: Affirmative Final Determination...

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-02-25

    ... DEPARTMENT OF COMMERCE International Trade Administration [A-570-932] Certain Steel Threaded Rod... Preliminary Determination of the circumvention inquiry concerning the antidumping duty order on certain steel threaded rod (``steel threaded rod'') from the People's Republic of China (``PRC'').\\1\\ The period of...

  4. MACHINING ELIMINATION THROUGH APPLICATION OF THREAD FORMING FASTENERS IN NET SHAPED CAST HOLES

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

    Cleaver, Ryan J; Cleaver, Todd H; Talbott, Richard

    The ultimate objective of this work was to eliminate approximately 30% of the machining performed in typical automotive engine and transmission plants by using thread forming fasteners in as-cast holes of aluminum and magnesium cast components. The primary issues at the source of engineers reluctance to implementing thread forming fasteners in lightweight castings are: * Little proof of consistency of clamp load vs. input torque in either aluminum or magnesium castings. * No known data to understand the effect on consistency of clamp load as casting dies wear. The clamp load consistency concern is founded in the fact that amore » portion of the input torque used to create clamp load is also used to create threads. The torque used for thread forming may not be consistent due to variations in casting material, hole size and shape due to tooling wear and process variation (thermal and mechanical). There is little data available to understand the magnitude of this concern or to form the basis of potential solutions if the range of clamp load variation is very high (> +/- 30%). The range of variation that can be expected in as-cast hole size and shape over the full life cycle of a high pressure die casting die was established in previous work completed by Pacific Northwest National Laboratory, (PNNL). This established range of variation was captured in a set of 12 cast bosses by designing core pins at the size and draft angles identified in the sited previous work. The cast bosses were cut into nuts that could be used in the Ford Fastener Laboratory test-cell to measure clamp load when a thread forming fastener was driven into a cast nut. There were two sets of experiments run. First, a series of cast aluminum nuts were made reflecting the range of shape and size variations to be expected over the life cycle of a die casting die. Taptite thread forming fasteners, (a widely used thread forming fastener suitable for aluminum applications), were driven into the various

  5. EventThread: Visual Summarization and Stage Analysis of Event Sequence Data.

    PubMed

    Guo, Shunan; Xu, Ke; Zhao, Rongwen; Gotz, David; Zha, Hongyuan; Cao, Nan

    2018-01-01

    Event sequence data such as electronic health records, a person's academic records, or car service records, are ordered series of events which have occurred over a period of time. Analyzing collections of event sequences can reveal common or semantically important sequential patterns. For example, event sequence analysis might reveal frequently used care plans for treating a disease, typical publishing patterns of professors, and the patterns of service that result in a well-maintained car. It is challenging, however, to visually explore large numbers of event sequences, or sequences with large numbers of event types. Existing methods focus on extracting explicitly matching patterns of events using statistical analysis to create stages of event progression over time. However, these methods fail to capture latent clusters of similar but not identical evolutions of event sequences. In this paper, we introduce a novel visualization system named EventThread which clusters event sequences into threads based on tensor analysis and visualizes the latent stage categories and evolution patterns by interactively grouping the threads by similarity into time-specific clusters. We demonstrate the effectiveness of EventThread through usage scenarios in three different application domains and via interviews with an expert user.

  6. Deviation of the typical AAA substrate-threading pore prevents fatal protein degradation in yeast Cdc48.

    PubMed

    Esaki, Masatoshi; Islam, Md Tanvir; Tani, Naoki; Ogura, Teru

    2017-07-14

    Yeast Cdc48 is a well-conserved, essential chaperone of ATPases associated with diverse cellular activity (AAA) proteins, which recognizes substrate proteins and modulates their conformations to carry out many cellular processes. However, the fundamental mechanisms underlying the diverse pivotal roles of Cdc48 remain unknown. Almost all AAA proteins form a ring-shaped structure with a conserved aromatic amino acid residue that is essential for proper function. The threading mechanism hypothesis suggests that this residue guides the intrusion of substrate proteins into a narrow pore of the AAA ring, thereby becoming unfolded. By contrast, the aromatic residue in one of the two AAA rings of Cdc48 has been eliminated through evolution. Here, we show that artificial retrieval of this aromatic residue in Cdc48 is lethal, and essential features to support the threading mechanism are required to exhibit the lethal phenotype. In particular, genetic and biochemical analyses of the Cdc48 lethal mutant strongly suggested that when in complex with the 20S proteasome, essential proteins are abnormally forced to thread through the Cdc48 pore to become degraded, which was not detected in wild-type Cdc48. Thus, the widely applicable threading model is less effective for wild-type Cdc48; rather, Cdc48 might function predominantly through an as-yet-undetermined mechanism.

  7. During Threaded Discussions Are Non-Native English Speakers Always at a Disadvantage?

    ERIC Educational Resources Information Center

    Shafer Willner, Lynn

    2014-01-01

    When participating in threaded discussions, under what conditions might non¬native speakers of English (NNSE) be at a comparative disadvantage to their classmates who are native speakers of English (NSE)? This study compares the threaded discussion perspectives of closely-matched NNSE and NSE adult students having different levels of threaded…

  8. Thread amplitudes and frequencies in a fluid mechanical `sewing machine'

    NASA Astrophysics Data System (ADS)

    Morris, Stephen W.; Dawes, J. H. P.; Lister, John; Dalziel, Stuart

    2006-11-01

    A viscous thread falling on a surface exhibits the famous rope- coiling effect, in which the thread buckles to form loops. If the surface is replaced by a belt moving at speed U, the rotational symmetry of the buckling instability is broken and a wealth of interesting states are observed (1). We experimentally studied this fluid mechanical `sewing machine' in a new, more precise apparatus. As U is reduced, the stretched thread bifurcates into a meandering state in which the thread displacements are only transverse to the motion of the belt. We measured the amplitudes A and frequency φ of the meandering close to the bifurcation. For small U, single- frequency meandering bifurcates to a two-frequency `figure 8' state, which contains a significant 2φ component and parallel as well as transverse displacements. This eventually reverts to single-frequency coiling at smaller U. More complex, highly hysteretic states with additional harmonics are observed for larger nozzle heights. We propose to understand this zoology in terms of the generic amplitude equations appropriate for resonant interactions between three oscillatory modes with frequencies φ, 2φ and 3φ. The form of the amplitude equations captures both the axisymmetry of the U=0 coiling state and the symmetry-breaking effects induced by the moving belt.(1) Chiu-Webster and Lister, J. Fluid Mech., in press.

  9. Common Threads: Quilt-Making and Teaching.

    ERIC Educational Resources Information Center

    Levine, Phoebe M.

    A teacher educator and artist explores alternate ways to think of teaching as a creative endeavor. This paper brings together the voices of Appalachian craftswomen and the wisdom of educator and philosopher John Dewey to create a patchwork that celebrates the common threads of quiltmaking and teaching. Interviews with West Virginia craftswomen and…

  10. Threaded biliary inside stents are a safe and effective therapeutic option in cases of malignant hilar obstruction

    PubMed Central

    2013-01-01

    Background Although endoscopic biliary stents have been accepted as part of palliative therapy for cases of malignant hilar obstruction, the optimal endoscopic management regime remains controversial. In this study, we evaluated the safety and efficacy of placing a threaded stent above the sphincter of Oddi (threaded inside plastic stents, threaded PS) and compared the results with those of other stent types. Methods Patients with malignant hilar obstruction, including those requiring biliary drainage for stent occlusion, were selected. Patients received either one of the following endoscopic indwelling stents: threaded PS, conventional plastic stents (conventional PS), or metallic stents (MS). Duration of stent patency and the incident of complication were compared in these patients. Results Forty-two patients underwent placement of endoscopic indwelling stents (threaded PS = 12, conventional PS = 17, MS = 13). The median duration of threaded PS patency was significantly longer than that of conventional PS patency (142 vs. 32 days; P = 0.04, logrank test). The median duration of threaded PS and MS patency was not significantly different (142 vs. 150 days, P = 0.83). Stent migration did not occur in any group. Among patients who underwent threaded PS placement as a salvage therapy after MS obstruction due to tumor ingrowth, the median duration of MS patency was significantly shorter than that of threaded PS patency (123 vs. 240 days). Conclusions Threaded PS are safe and effective in cases of malignant hilar obstruction; moreover, it is a suitable therapeutic option not only for initial drainage but also for salvage therapy. PMID:23410217

  11. Parallel Implementation of 3-D Iterative Reconstruction With Intra-Thread Update for the jPET-D4

    NASA Astrophysics Data System (ADS)

    Lam, Chih Fung; Yamaya, Taiga; Obi, Takashi; Yoshida, Eiji; Inadama, Naoko; Shibuya, Kengo; Nishikido, Fumihiko; Murayama, Hideo

    2009-02-01

    One way to speed-up iterative image reconstruction is by parallel computing with a computer cluster. However, as the number of computing threads increases, parallel efficiency decreases due to network transfer delay. In this paper, we proposed a method to reduce data transfer between computing threads by introducing an intra-thread update. The update factor is collected from each slave thread and a global image is updated as usual in the first K sub-iteration. In the rest of the sub-iterations, the global image is only updated at an interval which is controlled by a parameter L. In between that interval, the intra-thread update is carried out whereby an image update is performed in each slave thread locally. We investigated combinations of K and L parameters based on parallel implementation of RAMLA for the jPET-D4 scanner. Our evaluation used four workstations with a total of 16 slave threads. Each slave thread calculated a different set of LORs which are divided according to ring difference numbers. We assessed image quality of the proposed method with a hotspot simulation phantom. The figure of merit was the full-width-half-maximum of hotspots and the background normalized standard deviation. At an optimum K and L setting, we did not find significant change in the output images. We also applied the proposed method to a Hoffman phantom experiment and found the difference due to intra-thread update was negligible. With the intra-thread update, computation time could be reduced by about 23%.

  12. Multi-threading performance of Geant4, MCNP6, and PHITS Monte Carlo codes for tetrahedral-mesh geometry.

    PubMed

    Han, Min Cheol; Yeom, Yeon Soo; Lee, Hyun Su; Shin, Bangho; Kim, Chan Hyeong; Furuta, Takuya

    2018-05-04

    In this study, the multi-threading performance of the Geant4, MCNP6, and PHITS codes was evaluated as a function of the number of threads (N) and the complexity of the tetrahedral-mesh phantom. For this, three tetrahedral-mesh phantoms of varying complexity (simple, moderately complex, and highly complex) were prepared and implemented in the three different Monte Carlo codes, in photon and neutron transport simulations. Subsequently, for each case, the initialization time, calculation time, and memory usage were measured as a function of the number of threads used in the simulation. It was found that for all codes, the initialization time significantly increased with the complexity of the phantom, but not with the number of threads. Geant4 exhibited much longer initialization time than the other codes, especially for the complex phantom (MRCP). The improvement of computation speed due to the use of a multi-threaded code was calculated as the speed-up factor, the ratio of the computation speed on a multi-threaded code to the computation speed on a single-threaded code. Geant4 showed the best multi-threading performance among the codes considered in this study, with the speed-up factor almost linearly increasing with the number of threads, reaching ~30 when N  =  40. PHITS and MCNP6 showed a much smaller increase of the speed-up factor with the number of threads. For PHITS, the speed-up factors were low when N  =  40. For MCNP6, the increase of the speed-up factors was better, but they were still less than ~10 when N  =  40. As for memory usage, Geant4 was found to use more memory than the other codes. In addition, compared to that of the other codes, the memory usage of Geant4 more rapidly increased with the number of threads, reaching as high as ~74 GB when N  =  40 for the complex phantom (MRCP). It is notable that compared to that of the other codes, the memory usage of PHITS was much lower, regardless of both the complexity of the

  13. Rate-programming of nano-particulate delivery systems for smart bioactive scaffolds in tissue engineering.

    PubMed

    Izadifar, Mohammad; Haddadi, Azita; Chen, Xiongbiao; Kelly, Michael E

    2015-01-09

    Development of smart bioactive scaffolds is of importance in tissue engineering, where cell proliferation, differentiation and migration within scaffolds can be regulated by the interactions between cells and scaffold through the use of growth factors (GFs) and extra cellular matrix peptides. One challenge in this area is to spatiotemporally control the dose, sequence and profile of release of GFs so as to regulate cellular fates during tissue regeneration. This challenge would be addressed by rate-programming of nano-particulate delivery systems, where the release of GFs via polymeric nanoparticles is controlled by means of the methods of, such as externally-controlled and physicochemically/architecturally-modulated so as to mimic the profile of physiological GFs. Identifying and understanding such factors as the desired release profiles, mechanisms of release, physicochemical characteristics of polymeric nanoparticles, and externally-triggering stimuli are essential for designing and optimizing such delivery systems. This review surveys the recent studies on the desired release profiles of GFs in various tissue engineering applications, elucidates the major release mechanisms and critical factors affecting release profiles, and overviews the role played by the mathematical models for optimizing nano-particulate delivery systems. Potentials of stimuli responsive nanoparticles for spatiotemporal control of GF release are also presented, along with the recent advances in strategies for spatiotemporal control of GF delivery within tissue engineered scaffolds. The recommendation for the future studies to overcome challenges for developing sophisticated particulate delivery systems in tissue engineering is discussed prior to the presentation of conclusions drawn from this paper.

  14. Linking consistency with object/thread semantics - An approach to robust computation

    NASA Technical Reports Server (NTRS)

    Chen, Raymond C.; Dasgupta, Partha

    1989-01-01

    This paper presents an object/thread based paradigm that links data consistency with object/thread semantics. The paradigm can be used to achieve a wide range of consistency semantics from strict atomic transactions to standard process semantics. The paradigm supports three types of data consistency. Object programmers indicate the type of consistency desired on a per-operation basis and the system performs automatic concurrency control and recovery management to ensure that those consistency requirements are met. This allows programmers to customize consistency and recovery on a per-application basis without having to supply complicated, custom recovery management schemes. The paradigm allows robust and nonrobust computation to operate concurrently on the same data in a well defined manner. The operating system needs to support only one vehicle of computation - the thread.

  15. Performance of concrete incorporating colloidal nano-silica

    NASA Astrophysics Data System (ADS)

    Zeidan, Mohamed Sabry

    Nanotechnology, as one of the most modern fields of science, has great market potential and economic impact. The need for research in the field of nanotechnology is continuously on the rise. During the last few decades, nanotechnology was developing rapidly into many fields of applied sciences, engineering and industrial applications, especially through studies of physics, chemistry, medicine and fundamental material science. These new developments may be attributed to the fact that material properties and performance can be significantly improved and controlled through nano-scale processes and nano-structures. This research program aims at 1) further understanding the behavior of cementitious materials when amended on the nano-scale level and 2) exploring the effect of this enhancement on the microstructure of cement matrix. This study may be considered as an important step towards better understanding the use of nano-silica in concrete. The main goal of the study is to investigate the effect of using colloidal nano-silica on properties of concrete, including mechanical properties, durability, transport properties, and microstructure. The experimental program that was conducted included a laboratory investigation of concrete mixtures in which nano-silica was added to cement or to a combination of cement and Class F fly ash. Various ratios of nano-silica were used in concrete mixtures to examine the extent and types of improvements that could be imparted to concrete. The conducted experimental program assessed these improvements in terms of reactivity, mechanical properties, and durability of the mixtures under investigation. Advanced testing techniques---including mercury intrusion porosimetry (MIP) and scanning electron microscopy (SEM)---were used to investigate the effect of nano-silica on the microstructure of the tested mixtures. In addition, the effect of nano-silica on the alkali-silica reaction (ASR) was examined using various techniques, including testing

  16. 78 FR 44532 - Steel Threaded Rod From India: Initiation of Countervailing Duty Investigation

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-07-24

    ... DEPARTMENT OF COMMERCE International Trade Administration [C-533-856] Steel Threaded Rod From... Commerce (``Department'') received a countervailing duty (``CVD'') petition concerning imports of steel...\\ Petitioners are domestic producers of steel threaded rod. On July 2, and July 3, 2013, the Department...

  17. The research and development of the non-contact detection of the tubing internal thread with a line structured light

    NASA Astrophysics Data System (ADS)

    Hu, Yuanyuan; Xu, Yingying; Hao, Qun; Hu, Yao

    2013-12-01

    The tubing internal thread plays an irreplaceable role in the petroleum equipment. The unqualified tubing can directly lead to leakage, slippage and bring huge losses for oil industry. For the purpose of improving efficiency and precision of tubing internal thread detection, we develop a new non-contact tubing internal thread measurement system based on the laser triangulation principle. Firstly, considering that the tubing thread had a small diameter and relatively smooth surface, we built a set of optical system with a line structured light to irradiate the internal thread surface and obtain an image which contains the internal thread profile information through photoelectric sensor. Secondly, image processing techniques were used to do the edge detection of the internal thread from the obtained image. One key method was the sub-pixel technique which greatly improved the detection accuracy under the same hardware conditions. Finally, we restored the real internal thread contour information on the basis of laser triangulation method and calculated tubing thread parameters such as the pitch, taper and tooth type angle. In this system, the profile of several thread teeth can be obtained at the same time. Compared with other existing scanning methods using point light and stepper motor, this system greatly improves the detection efficiency. Experiment results indicate that this system can achieve the high precision and non-contact measurement of the tubing internal thread.

  18. Towards an agent-oriented programming language based on Scala

    NASA Astrophysics Data System (ADS)

    Mitrović, Dejan; Ivanović, Mirjana; Budimac, Zoran

    2012-09-01

    Scala and its multi-threaded model based on actors represent an excellent framework for developing purely reactive agents. This paper presents an early research on extending Scala with declarative programming constructs, which would result in a new agent-oriented programming language suitable for developing more advanced, BDI agent architectures. The main advantage the new language over many other existing solutions for programming BDI agents is a natural and straightforward integration of imperative and declarative programming constructs, fitted under a single development framework.

  19. OpenGeoSys-GEMS: Hybrid parallelization of a reactive transport code with MPI and threads

    NASA Astrophysics Data System (ADS)

    Kosakowski, G.; Kulik, D. A.; Shao, H.

    2012-04-01

    OpenGeoSys-GEMS is a generic purpose reactive transport code based on the operator splitting approach. The code couples the Finite-Element groundwater flow and multi-species transport modules of the OpenGeoSys (OGS) project (http://www.ufz.de/index.php?en=18345) with the GEM-Selektor research package to model thermodynamic equilibrium of aquatic (geo)chemical systems utilizing the Gibbs Energy Minimization approach (http://gems.web.psi.ch/). The combination of OGS and the GEM-Selektor kernel (GEMS3K) is highly flexible due to the object-oriented modular code structures and the well defined (memory based) data exchange modules. Like other reactive transport codes, the practical applicability of OGS-GEMS is often hampered by the long calculation time and large memory requirements. • For realistic geochemical systems which might include dozens of mineral phases and several (non-ideal) solid solutions the time needed to solve the chemical system with GEMS3K may increase exceptionally. • The codes are coupled in a sequential non-iterative loop. In order to keep the accuracy, the time step size is restricted. In combination with a fine spatial discretization the time step size may become very small which increases calculation times drastically even for small 1D problems. • The current version of OGS is not optimized for memory use and the MPI version of OGS does not distribute data between nodes. Even for moderately small 2D problems the number of MPI processes that fit into memory of up-to-date workstations or HPC hardware is limited. One strategy to overcome the above mentioned restrictions of OGS-GEMS is to parallelize the coupled code. For OGS a parallelized version already exists. It is based on a domain decomposition method implemented with MPI and provides a parallel solver for fluid and mass transport processes. In the coupled code, after solving fluid flow and solute transport, geochemical calculations are done in form of a central loop over all finite

  20. Nano-technology and nano-toxicology.

    PubMed

    Maynard, Robert L

    2012-01-01

    Rapid developments in nano-technology are likely to confer significant benefits on mankind. But, as with perhaps all new technologies, these benefits are likely to be accompanied by risks, perhaps by new risks. Nano-toxicology is developing in parallel with nano-technology and seeks to define the hazards and risks associated with nano-materials: only when risks have been identified they can be controlled. This article discusses the reasons for concern about the potential effects on health of exposure to nano-materials and relates these to the evidence of the effects on health of the ambient aerosol. A number of hypotheses are proposed and the dangers of adopting unsubstantiated hypotheses are stressed. Nano-toxicology presents many challenges and will need substantial financial support if it is to develop at a rate sufficient to cope with developments in nano-technology.

  1. Nano-technology and nano-toxicology

    PubMed Central

    Maynard, Robert L.

    2012-01-01

    Rapid developments in nano-technology are likely to confer significant benefits on mankind. But, as with perhaps all new technologies, these benefits are likely to be accompanied by risks, perhaps by new risks. Nano-toxicology is developing in parallel with nano-technology and seeks to define the hazards and risks associated with nano-materials: only when risks have been identified they can be controlled. This article discusses the reasons for concern about the potential effects on health of exposure to nano-materials and relates these to the evidence of the effects on health of the ambient aerosol. A number of hypotheses are proposed and the dangers of adopting unsubstantiated hypotheses are stressed. Nano-toxicology presents many challenges and will need substantial financial support if it is to develop at a rate sufficient to cope with developments in nano-technology. PMID:22662021

  2. Cell-laden composite suture threads for repairing damaged tendons.

    PubMed

    Costa-Almeida, Raquel; Domingues, Rui M A; Fallahi, Afsoon; Avci, Huseyin; Yazdi, Iman K; Akbari, Mohsen; Reis, Rui L; Tamayol, Ali; Gomes, Manuela E; Khademhosseini, Ali

    2018-04-01

    Tendons have limited regenerative capacity due to their low cellularity and hypovascular nature, which results in poor clinical outcomes of presently used therapies. As tendon injuries are often observed in active adults, it poses an increasing socio-economic burden on healthcare systems. Currently, suture threads are used during surgical repair to anchor the tissue graft or to connect injured ends. Here, we created composite suture threads coated with a layer of cell-laden hydrogel that can be used for bridging the injured tissue aiming at tendon regeneration. In addition, the fibres can be used to engineer 3-dimensional constructs through textile processes mimicking the architecture and mechanical properties of soft tissues, including tendons and ligaments. Encapsulated human tendon-derived cells migrated within the hydrogel and aligned at the surface of the core thread. An up-regulation of tendon-related genes (scleraxis and tenascin C) and genes involved in matrix remodelling (matrix metalloproteinases 1, matrix metalloproteinases 2) was observed. Cells were able to produce a collagen-rich matrix, remodelling their micro-environment, which is structurally comparable to native tendon tissue. Copyright © 2017 John Wiley & Sons, Ltd.

  3. Monitoring of magnetic nano-particles in EOR by using the CSEM modeling and inversion.

    NASA Astrophysics Data System (ADS)

    Heo, J. Y.; KIM, S.; Jeong, G.; Hwang, J.; Min, D. J.

    2016-12-01

    EOR, which injects water, CO2, or other chemical components into reservoirs to increase the production rate of oil and gas, has widely been used. To promote efficiency of EOR, it is important to monitor distribution of injected materials in reservoirs. Using nano-particles in EOR has advantages that the size of particles is smaller than the pore and particles can be characterized by various physical properties. Specifically, if we use magnetic nano-particles, we can effectively monitor nano-particles by using the electromagnetic survey. CSEM, which can control the frequency range of source, is good to monitor magnetic nano-particles under various reservoir circumstances. In this study, we first perform numerical simulation of 3D CSEM for reservoir under production. In general, two wells are used for EOR: one is for injection, and the other is for extraction. We assume that sources are applied inside the injection well, and receivers are deployed inside the extraction well. To simulate the CSEM survey, we decompose the total fields into primary and secondary fields in Maxwell's equations. For the primary fields, we calculate the analytic solutions of the layered earth. With the calculated primary fields, we compute the secondary fields due to anomalies using the edge-based finite-element method. Finally, we perform electromagnetic inversion for both conductivity and permeability to trace the distribution of magnetic nano-particles. Since these two parameters react differently according to the frequency range of sources, we can effectively describe the distribution of magnetic nano-particles by considering two parameters at the same time. Acknowledgements This work was supported by the Korea Institute of Energy Technology Evaluation and Planning(KETEP) and the Ministry of Trade, Industry & Energy(MOTIE) of the Republic of Korea (No. 20168510030830), and by the International Cooperation (No. 2012-8510030010) of KETEP, and by the Dual Use Technology Program, granted

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

  5. Effect of Thread and Rotating Speed on Material Flow Behavior and Mechanical Properties of Friction Stir Lap Welding Joints

    NASA Astrophysics Data System (ADS)

    Ji, Shude; Li, Zhengwei; Zhou, Zhenlu; Wu, Baosheng

    2017-10-01

    This study focused on the effects of thread on hook and cold lap formation, lap shear property and impact toughness of alclad 2024-T4 friction stir lap welding (FSLW) joints. Except the traditional threaded pin tool (TR-tool), three new tools with different thread locations and orientations were designed. Results showed that thread significantly affected hook, cold lap morphologies and lap shear properties. The tool with tip-threaded pin (T-tool) fabricated joint with flat hook and cold lap, which resulted in shear fracture mode. The tools with bottom-threaded pin (B-tool) eliminated the hook. The tool with reverse-threaded pin (R-tool) widened the stir zone width. When using configuration A, the joints fabricated by the three new tools showed higher failure loads than the joint fabricated by the TR-tool. The joint using the T-tool owned the optimum impact toughness. This study demonstrated the significance of thread during FSLW and provided a reference to optimize tool geometry.

  6. Life Cycle Analysis of Dedicated Nano-Launch Technologies

    NASA Technical Reports Server (NTRS)

    Zapata, Edgar; McCleskey, Carey; Martin, John; Lepsch, Roger; Hernani, Tosoc

    2014-01-01

    Recent technology advancements have enabled the development of small cheap satellites that can perform useful functions in the space environment. Currently, the only low cost option for getting these payloads into orbit is through ride share programs. As a result, these launch opportunities await primary payload launches and a backlog exists. An alternative option would be dedicated nano-launch systems built and operated to provide more flexible launch services, higher availability, and affordable prices. The potential customer base that would drive requirements or support a business case includes commercial, academia, civil government and defense. Further, NASA technology investments could enable these alternative game changing options.With this context, in 2013 the Game Changing Development (GCD) program funded a NASA team to investigate the feasibility of dedicated nano-satellite launch systems with a recurring cost of less than $2 million per launch for a 5 kg payload to low Earth orbit. The team products would include potential concepts, technologies and factors for enabling the ambitious cost goal, exploring the nature of the goal itself, and informing the GCD program technology investment decision making process. This paper provides an overview of the life cycle analysis effort that was conducted in 2013 by an inter-center NASA team. This effort included the development of reference nano-launch system concepts, developing analysis processes and models, establishing a basis for cost estimates (development, manufacturing and launch) suitable to the scale of the systems, and especially, understanding the relationship of potential game changing technologies to life cycle costs, as well as other factors, such as flights per year.

  7. Why Is There a Glass Ceiling for Threading Based Protein Structure Prediction Methods?

    PubMed

    Skolnick, Jeffrey; Zhou, Hongyi

    2017-04-20

    Despite their different implementations, comparison of the best threading approaches to the prediction of evolutionary distant protein structures reveals that they tend to succeed or fail on the same protein targets. This is true despite the fact that the structural template library has good templates for all cases. Thus, a key question is why are certain protein structures threadable while others are not. Comparison with threading results on a set of artificial sequences selected for stability further argues that the failure of threading is due to the nature of the protein structures themselves. Using a new contact map based alignment algorithm, we demonstrate that certain folds are highly degenerate in that they can have very similar coarse grained fractions of native contacts aligned and yet differ significantly from the native structure. For threadable proteins, this is not the case. Thus, contemporary threading approaches appear to have reached a plateau, and new approaches to structure prediction are required.

  8. GISAXS modelling of helium-induced nano-bubble formation in tungsten and comparison with TEM

    NASA Astrophysics Data System (ADS)

    Thompson, Matt; Sakamoto, Ryuichi; Bernard, Elodie; Kirby, Nigel; Kluth, Patrick; Riley, Daniel; Corr, Cormac

    2016-05-01

    Grazing-incidence small angle x-ray scattering (GISAXS) is a powerful non-destructive technique for the measurement of nano-bubble formation in tungsten under helium plasma exposure. Here, we present a comparative study between transmission electron microscopy (TEM) and GISAXS measurements of nano-bubble formation in tungsten exposed to helium plasma in the Large Helical Device (LHD) fusion experiment. Both techniques are in excellent agreement, suggesting that nano-bubbles range from spheroidal to ellipsoidal, displaying exponential diameter distributions with mean diameters μ=0.68 ± 0.04 nm and μ=0.6 ± 0.1 nm measured by TEM and GISAXS respectively. Depth distributions were also computed, with calculated exponential depth distributions with mean depths of 8.4 ± 0.5 nm and 9.1 ± 0.4 nm for TEM and GISAXS. In GISAXS modelling, spheroidal particles were fitted with an aspect ratio ε=0.7 ± 0.1. The GISAXS model used is described in detail.

  9. A model of optical trapping cold atoms using a metallic nano wire with surface plasmon effect

    NASA Astrophysics Data System (ADS)

    Thi Phuong Lan, Nguyen; Thi Nga, Do; Viet, Nguyen Ai

    2016-06-01

    In this work, we construct a new model of optical trapping cold atoms with a metallic nano wire by using surface plasmon effect generated by strong field of laser beams. Using the skin effect, we send a strong oscillated electromagnetic filed through the surface of a metallic nano wire. The local field generated by evanescent effect creates an effective attractive potential near the surface of metallic nano wires. The consideration of some possible boundary and frequency conditions might lead to non-trivial bound state solution for a cold atom. We discus also the case of the laser reflection optical trap with shell-core design, and compare our model with another recent schemes of cold atom optical traps using optical fibers and carbon nanotubes.

  10. Properties of forced convection experimental with silicon carbide based nano-fluids

    NASA Astrophysics Data System (ADS)

    Soanker, Abhinay

    With the advent of nanotechnology, many fields of Engineering and Science took a leap to the next level of advancements. The broad scope of nanotechnology initiated many studies of heat transfer and thermal engineering. Nano-fluids are one such technology and can be thought of as engineered colloidal fluids with nano-sized colloidal particles. There are different types of nano-fluids based on the colloidal particle and base fluids. Nano-fluids can primarily be categorized into metallic, ceramics, oxide, magnetic and carbon based. The present work is a part of investigation of the thermal and rheological properties of ceramic based nano-fluids. alpha-Silicon Carbide based nano-fluid with Ethylene Glycol and water mixture 50-50% volume concentration was used as the base fluid here. This work is divided into three parts; Theoretical modelling of effective thermal conductivity (ETC) of colloidal fluids, study of Thermal and Rheological properties of alpha-SiC nano-fluids, and determining the Heat Transfer properties of alpha-SiC nano-fluids. In the first part of this work, a theoretical model for effective thermal conductivity (ETC) of static based colloidal fluids was formulated based on the particle size, shape (spherical), thermal conductivity of base fluid and that of the colloidal particle, along with the particle distribution pattern in the fluid. A MATLAB program is generated to calculate the details of this model. The model is specifically derived for least and maximum ETC enhancement possible and thereby the lower and upper bounds was determined. In addition, ETC is also calculated for uniform colloidal distribution pattern. Effect of volume concentration on ETC was studied. No effect of particle size was observed for particle sizes below a certain value. Results of this model were compared with Wiener bounds and Hashin- Shtrikman bounds. The second part of this work is a study of thermal and rheological properties of alpha-Silicon Carbide based nano

  11. Validation of the Transient Structural Response of a Threaded Assembly: Phase I

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

    Doebling, Scott W.; Hemez, Francois M.; Robertson, Amy N.

    2004-04-01

    This report explores the application of model validation techniques in structural dynamics. The problem of interest is the propagation of an explosive-driven mechanical shock through a complex threaded joint. The study serves the purpose of assessing whether validating a large-size computational model is feasible, which unit experiments are required, and where the main sources of uncertainty reside. The results documented here are preliminary, and the analyses are exploratory in nature. The results obtained to date reveal several deficiencies of the analysis, to be rectified in future work.

  12. Implications of Thermal Annealing on the Benzene Vapor Sensing Behavior of PEVA-Graphene Nanocomposite Threads.

    PubMed

    Patel, Sanjay V; Cemalovic, Sabina; Tolley, William K; Hobson, Stephen T; Anderson, Ryan; Fruhberger, Bernd

    2018-03-23

    The effect of thermal treatments, on the benzene vapor sensitivity of polyethylene (co-)vinylacetate (PEVA)/graphene nanocomposite threads, used as chemiresistive sensors, was investigated using DC resistance measurements, differential scanning calorimetry (DSC), and scanning electron microscopy (SEM). These flexible threads are being developed as low-cost, easy-to-measure chemical sensors that can be incorporated into smart clothing or disposable sensing patches. Chemiresistive threads were solution-cast or extruded from PEVA and <10% graphene nanoplatelets (by mass) in toluene. Threads were annealed at various temperatures and showed up to 2 orders of magnitude decrease in resistance with successive anneals. Threads heated to ≥80 °C showed improved limits of detection, resulting from improved signal-noise, when exposed to benzene vapor in dry air. In addition, annealing increased the speed of response and recovery upon exposure to and removal of benzene vapor. DSC results showed that the presence of graphene raises the freezing point, and may allow greater crystallinity, in the nanocomposite after annealing. SEM images confirm increased surface roughness/area, which may account for the increase response speed after annealing. Benzene vapor detection at 5 ppm is demonstrated with limits of detection estimated to be as low as 1.5 ppm, reflecting an order of magnitude improvement over unannealed threads.

  13. Generic accelerated sequence alignment in SeqAn using vectorization and multi-threading.

    PubMed

    Rahn, René; Budach, Stefan; Costanza, Pascal; Ehrhardt, Marcel; Hancox, Jonny; Reinert, Knut

    2018-05-03

    Pairwise sequence alignment is undoubtedly a central tool in many bioinformatics analyses. In this paper, we present a generically accelerated module for pairwise sequence alignments applicable for a broad range of applications. In our module, we unified the standard dynamic programming kernel used for pairwise sequence alignments and extended it with a generalized inter-sequence vectorization layout, such that many alignments can be computed simultaneously by exploiting SIMD (Single Instruction Multiple Data) instructions of modern processors. We then extended the module by adding two layers of thread-level parallelization, where we a) distribute many independent alignments on multiple threads and b) inherently parallelize a single alignment computation using a work stealing approach producing a dynamic wavefront progressing along the minor diagonal. We evaluated our alignment vectorization and parallelization on different processors, including the newest Intel® Xeon® (Skylake) and Intel® Xeon Phi™ (KNL) processors, and use cases. The instruction set AVX512-BW (Byte and Word), available on Skylake processors, can genuinely improve the performance of vectorized alignments. We could run single alignments 1600 times faster on the Xeon Phi™ and 1400 times faster on the Xeon® than executing them with our previous sequential alignment module. The module is programmed in C++ using the SeqAn (Reinert et al., 2017) library and distributed with version 2.4. under the BSD license. We support SSE4, AVX2, AVX512 instructions and included UME::SIMD, a SIMD-instruction wrapper library, to extend our module for further instruction sets. We thoroughly test all alignment components with all major C++ compilers on various platforms. rene.rahn@fu-berlin.de.

  14. Nano-extrusion: a promising tool for continuous manufacturing of solid nano-formulations.

    PubMed

    Baumgartner, Ramona; Eitzlmayr, Andreas; Matsko, Nadejda; Tetyczka, Carolin; Khinast, Johannes; Roblegg, Eva

    2014-12-30

    Since more than 40% of today's drugs have low stability, poor solubility and/or limited ability to cross certain biological barriers, new platform technologies are required to address these challenges. This paper describes a novel continuous process that converts a stabilized aqueous nano-suspension into a solid oral formulation in a single step (i.e., the NANEX process) in order to improve the solubility of a model drug (phenytoin). Phenytoin nano-suspensions were prepared via media milling using different stabilizers. A stable nano-suspension was obtained using Tween(®) 80 as a stabilizer. The matrix material (Soluplus(®)) was gravimetrically fed into the hot melt extruder. The suspension was introduced through a side feeding device and mixed with the molten polymer to immediately devolatilize the water in the nano-suspension. Phenytoin nano-crystals were dispersed and embedded in the molten polymer. Investigation of the nano-extrudates via transmission electron microscopy and atomic force microscopy showed that the nano-crystals were embedded de-aggregated in the extrudates. Furthermore, no changes in the crystallinity (due to the mechanical and thermal stress) occurred. The dissolution studies confirmed that the prepared nano-extrudates increased the solubility of nano-crystalline phenytoin, regardless of the polymer. Our work demonstrates that NANEX represents a promising new platform technology in the design of novel drug delivery systems to improve drug performance. Copyright © 2014 Elsevier B.V. All rights reserved.

  15. Nano-Electronics and Bio-Electronics

    NASA Technical Reports Server (NTRS)

    Srivastava, Deepak; Kwak, Dochan (Technical Monitor)

    2001-01-01

    Viewgraph presentation on Nano-Electronics and Bio-Electronics is discussed. Topics discussed include: NASA Ames nanotechnology program, Potential Carbon Nanotube (CNT) application, CNT synthesis,Computational Nanotechnology, and protein nanotubes.

  16. Evaluating the use of laser radiation in cleaning of copper embroidery threads on archaeological Egyptian textiles

    NASA Astrophysics Data System (ADS)

    Abdel-Kareem, Omar; Harith, M. A.

    2008-07-01

    Cleaning of copper embroidery threads on archaeological textiles is still a complicated conservation process, as most textile conservators believe that the advantages of using traditional cleaning techniques are less than their disadvantages. In this study, the uses of laser cleaning method and two modified recipes of wet cleaning methods were evaluated for cleaning of the corroded archaeological Egyptian copper embroidery threads on an archaeological Egyptian textile fabric. Some corroded copper thread samples were cleaned using modified recipes of wet cleaning method; other corroded copper thread samples were cleaned with Q-switched Nd:YAG laser radiation of wavelength 532 nm. All tested metal thread samples before and after cleaning were investigated using a light microscope and a scanning electron microscope with an energy dispersive X-ray analysis unit. Also the laser-induced breakdown spectroscopy (LIBS) technique was used for the elemental analysis of laser-cleaned samples to follow up the laser cleaning procedure. The results show that laser cleaning is the most effective method among all tested methods in the cleaning of corroded copper threads. It can be used safely in removing the corrosion products without any damage to both metal strips and fibrous core. The tested laser cleaning technique has solved the problems caused by other traditional cleaning techniques that are commonly used in the cleaning of metal threads on museum textiles.

  17. Press-fit versus threaded acetabular cups in total hip arthroplasty: Functional and radiological results after five years.

    PubMed

    Ellenrieder, Martin; Bader, Rainer; Bergschmidt, Philipp; Mittelmeier, Wolfram

    2016-03-01

    Prospectively the outcome after total hip replacement with a new threaded acetabular cup design was compared to an established press-fit cup. After 1, 2 and 5 years, the 36-item Short Form Health Survey, Western Ontario and McMaster University Osteoarthritis Index and Harris Hip Score revealed no significant differences between the two groups (each group: n=42 patients), except for a higher Harris Hip Score in the threaded cup group after five years (p=0.02). After five years, one threaded cup had a mild radiolucent line without further signs of loosening. All other cups of both groups (98.6%) showed a full osseous integration. The cup inclination angle ranged from 41-58° (threaded cups) to 39-77° (press-fit cups). The new threaded cup provides equivalent clinical outcomes and osseous integration but more precise implant positioning compared to the press-fit design. No complications typically ascribed to threaded cups (acetabular fractures, bone resorption, nerve impairment) occurred.

  18. Are engineered nano iron oxide particles safe? an environmental risk assessment by probabilistic exposure, effects and risk modeling.

    PubMed

    Wang, Yan; Deng, Lei; Caballero-Guzman, Alejandro; Nowack, Bernd

    2016-12-01

    Nano iron oxide particles are beneficial to our daily lives through their use in paints, construction materials, biomedical imaging and other industrial fields. However, little is known about the possible risks associated with the current exposure level of engineered nano iron oxides (nano-FeOX) to organisms in the environment. The goal of this study was to predict the release of nano-FeOX to the environment and assess their risks for surface waters in the EU and Switzerland. The material flows of nano-FeOX to technical compartments (waste incineration and waste water treatment plants) and to the environment were calculated with a probabilistic modeling approach. The mean value of the predicted environmental concentrations (PECs) of nano-FeOX in surface waters in the EU for a worst-case scenario (no particle sedimentation) was estimated to be 28 ng/l. Using a probabilistic species sensitivity distribution, the predicted no-effect concentration (PNEC) was determined from ecotoxicological data. The risk characterization ratio, calculated by dividing the PEC by PNEC values, was used to characterize the risks. The mean risk characterization ratio was predicted to be several orders of magnitude smaller than 1 (1.4 × 10 - 4 ). Therefore, this modeling effort indicates that only a very limited risk is posed by the current release level of nano-FeOX to organisms in surface waters. However, a better understanding of the hazards of nano-FeOX to the organisms in other ecosystems (such as sediment) needs to be assessed to determine the overall risk of these particles to the environment.

  19. Novel gold nanoparticle trimer reporter probe combined with dry-reagent cotton thread immunoassay device for rapid human ferritin test.

    PubMed

    Mao, Xun; Du, Ting-E; Meng, Lili; Song, Tingting

    2015-08-19

    We reported here for the first time on the use of cotton thread combined with novel gold nanoparticle trimer reporter probe for low-cost, sensitive and rapid detection of a lung cancer related biomarker, human ferritin. A model system comprising ferritin as an analyte and a pair of monoclonal antibodies was used to demonstrate the proof-of-concept on the dry-reagent natural cotton thread immunoassay device. Results indicated that the using of novel gold nanoparticle trimer reporter probe greatly improved the sensitivity comparing with traditional gold nanoparticle reporter probe on the cotton thread immunoassay device. The assay avoids multiple incubation and washing steps performed in most conventional protein analyses. Although qualitative tests are realized by observing the color change of the test zone, quantitative data are obtained by recording the optical responses of the test zone with a commercial scanner and corresponding analysis software. Under optimal conditions, the cotton thread immunoassay device was capable of measuring 10 ng/mL human ferritin under room temperature which is sensitive enough for clinical diagnosis. Moreover, the sample solution employed in the assays is just 8 μL, which is much less than traditional lateral flow strip based biosensors. Copyright © 2015 Elsevier B.V. All rights reserved.

  20. Alliance for NanoHealth Competitive Research Program

    DTIC Science & Technology

    2009-10-28

    25-35 Guided Microvasculature Formation and Cellular Infiltration for Tissue Regeneration Applications in Nano-Structured Silk ...V, Davis G, Gordon A, Altman A, Reece G, Gascoyne P, Mathur AB, Endothelial and Stem Cell Interactions on Dielectrophoretically Aligned Fibrous Silk ...Interactions on Dielectrophoretically Aligned Fibrous Silk Fibroin-­‐Chitosan Scaffolds, Journal of Biomedical Materials Research, Accepted October

  1. Study of Measurement Strategies of Geometric Deviation of the Position of the Threaded Holes

    NASA Astrophysics Data System (ADS)

    Drbul, Mário; Martikan, Pavol; Sajgalik, Michal; Czan, Andrej; Broncek, Jozef; Babik, Ondrej

    2017-12-01

    Verification of product and quality control is an integral part of current production process. In terms of functional requirements and product interoperability, it is necessary to analyze their dimensional and also geometric specifications. Threaded holes are verified elements too, which are a substantial part of detachable screw connections and have a broad presence in engineering products. This paper deals with on the analysing of measurement strategies of verification geometric deviation of the position of the threaded holes, which are the indirect method of measuring threaded pins when applying different measurement strategies which can affect the result of the verification of the product..

  2. 3D nano-structures for laser nano-manipulation

    PubMed Central

    Seniutinas, Gediminas; Gervinskas, Gediminas; Brasselet, Etienne; Juodkazis, Saulius

    2013-01-01

    Summary The resputtering of gold films from nano-holes defined in a sacrificial PMMA mask, which was made by electron beam lithography, was carried out with a dry plasma etching tool in order to form well-like structures with a high aspect ratio (height/width ≈ 3–4) at the rims of the nano-holes. The extraordinary transmission through the patterns of such nano-wells was investigated experimentally and numerically. By doing numerical simulations of 50-nm and 100-nm diameter polystyrene beads in water and air, we show the potential of such patterns for self-induced back-action (SIBA) trapping. The best trapping conditions were found to be a trapping force of 2 pN/W/μm2 (numerical result) exerted on a 50-nm diameter bead in water. The simulations were based on the analytical Lorentz force model. PMID:24062979

  3. Red blood cell transport mechanisms in polyester thread-based blood typing devices.

    PubMed

    Nilghaz, Azadeh; Ballerini, David R; Guan, Liyun; Li, Lizi; Shen, Wei

    2016-02-01

    A recently developed blood typing diagnostic based on a polyester thread substrate has shown great promise for use in medical emergencies and in impoverished regions. The device is easy to use and transport, while also being inexpensive, accurate, and rapid. This study used a fluorescent confocal microscope to delve deeper into how red blood cells were behaving within the polyester thread-based diagnostic at the cellular level, and how plasma separation could be made to visibly occur on the thread, making it possible to identify blood type in a single step. Red blood cells were stained and the plasma phase dyed with fluorescent compounds to enable them to be visualised under the confocal microscope at high magnification. The mechanisms uncovered were in surprising contrast with those found for a similar, paper-based method. Red blood cell aggregates did not flow over each other within the thread substrate as expected, but suffered from a restriction to their flow which resulted in the chromatographic separation of the RBCs from the liquid phase of the blood. It is hoped that these results will lead to the optimisation of the method to enable more accurate and sensitive detection, increasing the range of blood systems that can be detected.

  4. Quick-connect threaded attachment joint

    NASA Technical Reports Server (NTRS)

    Lucy, M. H.; Messick, W. R.; Vasquez, P.

    1979-01-01

    Joint is self-aligning and tightens with only sixty-five degrees of rotation for quick connects and disconnects. Made of injection-molded plastics or cast or machined aluminum, joint can carry wires, tubes, liquids, or gases. When two parts of joint are brought together, their shapes align them. Small projections on male section and slots on female section further aid alignment; slight rotation of male form engages projections in slots. At this point, threads engage and male section is rotated until joint is fully engaged.

  5. 46 CFR 56.30-20 - Threaded joints.

    Code of Federal Regulations, 2014 CFR

    2014-10-01

    ..., inches Maximum pressure, p.s.i.g. Above 2″ (Not permitted in Class I piping service.) Above 1″ up to 2... joints appear in the low temperature piping section. 2 Threaded joints in hydraulic systems are permitted above the pressures indicated for the nominal sizes shown when commercially available components such as...

  6. 46 CFR 56.30-20 - Threaded joints.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ..., inches Maximum pressure, p.s.i.g. Above 2″ (Not permitted in Class I piping service.) Above 1″ up to 2... joints appear in the low temperature piping section. 2 Threaded joints in hydraulic systems are permitted above the pressures indicated for the nominal sizes shown when commercially available components such as...

  7. 46 CFR 56.30-20 - Threaded joints.

    Code of Federal Regulations, 2013 CFR

    2013-10-01

    ..., inches Maximum pressure, p.s.i.g. Above 2″ (Not permitted in Class I piping service.) Above 1″ up to 2... joints appear in the low temperature piping section. 2 Threaded joints in hydraulic systems are permitted above the pressures indicated for the nominal sizes shown when commercially available components such as...

  8. 46 CFR 56.30-20 - Threaded joints.

    Code of Federal Regulations, 2012 CFR

    2012-10-01

    ..., inches Maximum pressure, p.s.i.g. Above 2″ (Not permitted in Class I piping service.) Above 1″ up to 2... joints appear in the low temperature piping section. 2 Threaded joints in hydraulic systems are permitted above the pressures indicated for the nominal sizes shown when commercially available components such as...

  9. 46 CFR 56.30-20 - Threaded joints.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ..., inches Maximum pressure, p.s.i.g. Above 2″ (Not permitted in Class I piping service.) Above 1″ up to 2... joints appear in the low temperature piping section. 2 Threaded joints in hydraulic systems are permitted above the pressures indicated for the nominal sizes shown when commercially available components such as...

  10. Bio-Fluid Transport Models Through Nano and Micro-Fluidic Components

    DTIC Science & Technology

    2005-08-01

    nm of the wall in steady electroosmotic flow with good accuracy. The nPIV data were in excellent agreement with the model predictions for monovalent...first experimental probe inside the electric double layer in electroosmotic flow of an aqueous electrolyte solution. 15. NUMBER OF PAGES 225 14...SUBJECT TERMS Micro And Nanofluidics, Electroosmotic Flow, Nano Particle Image Velocimetry 16. PRICE CODE 17. SECURITY CLASSIFICATION OF REPORT

  11. An ISA-TAB-Nano based data collection framework to support data-driven modelling of nanotoxicology.

    PubMed

    Marchese Robinson, Richard L; Cronin, Mark T D; Richarz, Andrea-Nicole; Rallo, Robert

    2015-01-01

    Analysis of trends in nanotoxicology data and the development of data driven models for nanotoxicity is facilitated by the reporting of data using a standardised electronic format. ISA-TAB-Nano has been proposed as such a format. However, in order to build useful datasets according to this format, a variety of issues has to be addressed. These issues include questions regarding exactly which (meta)data to report and how to report them. The current article discusses some of the challenges associated with the use of ISA-TAB-Nano and presents a set of resources designed to facilitate the manual creation of ISA-TAB-Nano datasets from the nanotoxicology literature. These resources were developed within the context of the NanoPUZZLES EU project and include data collection templates, corresponding business rules that extend the generic ISA-TAB-Nano specification as well as Python code to facilitate parsing and integration of these datasets within other nanoinformatics resources. The use of these resources is illustrated by a "Toy Dataset" presented in the Supporting Information. The strengths and weaknesses of the resources are discussed along with possible future developments.

  12. An ISA-TAB-Nano based data collection framework to support data-driven modelling of nanotoxicology

    PubMed Central

    Marchese Robinson, Richard L; Richarz, Andrea-Nicole; Rallo, Robert

    2015-01-01

    Summary Analysis of trends in nanotoxicology data and the development of data driven models for nanotoxicity is facilitated by the reporting of data using a standardised electronic format. ISA-TAB-Nano has been proposed as such a format. However, in order to build useful datasets according to this format, a variety of issues has to be addressed. These issues include questions regarding exactly which (meta)data to report and how to report them. The current article discusses some of the challenges associated with the use of ISA-TAB-Nano and presents a set of resources designed to facilitate the manual creation of ISA-TAB-Nano datasets from the nanotoxicology literature. These resources were developed within the context of the NanoPUZZLES EU project and include data collection templates, corresponding business rules that extend the generic ISA-TAB-Nano specification as well as Python code to facilitate parsing and integration of these datasets within other nanoinformatics resources. The use of these resources is illustrated by a “Toy Dataset” presented in the Supporting Information. The strengths and weaknesses of the resources are discussed along with possible future developments. PMID:26665069

  13. SISSY: An example of a multi-threaded, networked, object-oriented databased application

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

    Scipioni, B.; Liu, D.; Song, T.

    1993-05-01

    The Systems Integration Support SYstem (SISSY) is presented and its capabilities and techniques are discussed. It is fully automated data collection and analysis system supporting the SSCL`s systems analysis activities as they relate to the Physics Detector and Simulation Facility (PDSF). SISSY itself is a paradigm of effective computing on the PDSF. It uses home-grown code (C++), network programming (RPC, SNMP), relational (SYBASE) and object-oriented (ObjectStore) DBMSs, UNIX operating system services (IRIX threads, cron, system utilities, shells scripts, etc.), and third party software applications (NetCentral Station, Wingz, DataLink) all of which act together as a single application to monitor andmore » analyze the PDSF.« less

  14. Multiscale modeling and simulation for nano/micro materials

    NASA Astrophysics Data System (ADS)

    Wang, Xianqiao

    Continuum description and atomic description used to be two distinct methods in the community of modeling and simulations. Science and technology have become so advanced that our understanding of many physical phenomena involves the concepts of both. So our goal now is to build a bridge to make atoms and continua communicate with each other. Micromorphic theory (MMT) envisions a material body as a continuous collection of deformable particles; each possesses finite size and inner structure. It is considered as the most successful top-down formulation of a two-level continuum model to bridge the gap between the micro level and macro level. Therefore MMT can be expected to unveil many new classes of physical phenomena that fall beyond classical field theories. In this work, the constitutive equations for generalized Micromorphic thermoviscoelastic solid and generalized Micromorphic fluid have been formulated. To enlarge the domain of applicability of MMT, from nano, micro to macro, we take a bottom-up approach to re-derive the generalized atomistic field theory (AFT) comprehensively and completely and establish the relationship between AFT and MMT. Finite element (FE) method is then implemented to pursue the numerical solutions of the governing equations derived in AFT. When the finest mesh is used, i.e., the size of FE mesh is equal to the lattice constant of the material, the computational model becomes identical to molecular dynamics simulation. When a coarse mesh is used, the resulting model is a coarse-grained model, the majority of the degrees of freedom are eliminated and the computational cost is largely reduced. When the coarse mesh and finest mesh exist concurrently, i.e., the finest mesh is used in the critical regions and the coarser mesh is used in the far field, it leads naturally to a concurrent atomistic/continuum model. Atomic scale, coarse-grained scale and concurrent atomistic/continuum simulations have demonstrated the potential capability of AFT

  15. A knittable fiber-shaped supercapacitor based on natural cotton thread for wearable electronics

    NASA Astrophysics Data System (ADS)

    Zhou, Qianlong; Jia, Chunyang; Ye, Xingke; Tang, Zhonghua; Wan, Zhongquan

    2016-09-01

    At present, the topic of building high-performance, miniaturized and mechanically flexible energy storage modules which can be directly integrated into textile based wearable electronics is a hotspot in the wearable technology field. In this paper, we reported a highly flexible fiber-shaped electrode fabricated through a one-step convenient hydrothermal process. The prepared graphene hydrogels/multi-walled carbon nanotubes-cotton thread derived from natural cotton thread is electrochemically active and mechanically strong. Fiber-shaped supercapacitor based on the prepared fiber electrodes and polyvinyl alcohol-H3PO4 gel electrolyte exhibits good capacitive performance (97.73 μF cm-1 at scan rate of 2 mV s-1), long cycle life (95.51% capacitance retention after 8000 charge-discharge cycles) and considerable stability (90.75% capacitance retention after 500 continuous bending cycles). Due to its good mechanical and electrochemical properties, the graphene hydrogels/multi-walled carbon nanotubes-cotton thread based all-solid fiber-shaped supercapacitor can be directly knitted into fabrics and maintain its original capacitive performance. Such a low-cost textile thread based versatile energy storage device may hold great potential for future wearable electronics applications.

  16. Successive Two-sided Loop Jets Caused by Magnetic Reconnection between Two Adjacent Filamentary Threads

    NASA Astrophysics Data System (ADS)

    Tian, Zhanjun; Liu, Yu; Shen, Yuandeng; Elmhamdi, Abouazza; Su, Jiangtao; Liu, Ying D.; Kordi, Ayman. S.

    2017-08-01

    We present observational analysis of two successive two-sided loop jets observed by the ground-based New Vacuum Solar Telescope and the space-borne Solar Dynamics Observatory. The two successive two-sided loop jets manifested similar evolution processes and both were associated with the interaction of two small-scale adjacent filamentary threads, magnetic emerging, and cancellation processes at the jet’s source region. High temporal and high spatial resolution observations reveal that the two adjacent ends of the two filamentary threads are rooted in opposite magnetic polarities within the source region. The two threads approached each other, and then an obvious brightening patch is observed at the interaction position. Subsequently, a pair of hot plasma ejections are observed heading in opposite directions along the paths of the two filamentary threads at a typical speed for two-sided loop jets of the order 150 km s-1. Close to the end of the second jet, we report the formation of a bright hot loop structure at the source region, which suggests the formation of new loops during the interaction. Based on the observational results, we propose that the observed two-sided loop jets are caused by magnetic reconnection between the two adjacent filamentary threads, largely different from the previous scenario that a two-sided loop jet is generated by magnetic reconnection between an emerging bipole and the overlying horizontal magnetic fields.

  17. Comparative analysis of textile metal threads from liturgical vestments and folk costumes in Croatia

    NASA Astrophysics Data System (ADS)

    Šimić, Kristina; Zamboni, Ivana; Fazinić, Stjepko; Mudronja, Domagoj; Sović, Lea; Gouasmia, Sabrina; Soljačić, Ivo

    2018-02-01

    Textile is essential for everyday life in all societies. It is used in clothes for protection and warmth but also to indicate class and position, show wealth and social status. Threads from precious metals have also been used in combination with fibres for decoration in order to create luxury fabrics for secular and religious elites. We performed elemental analysis of 17th to 20th century metal threads from various textile articles of liturgical vestments and festive folk costumes collected in the museums of northern, southern and central Croatian regions. In order to determine elemental concentrations in threads we performed comparative X-ray Spectroscopy measurements using: (i) Scanning Electron Microscopy with Energy Dispersive X-ray Spectroscopy (SEM-EDX) at the Faculty of Textile Technology, (ii) X-ray Fluorescence Spectroscopy (XRF) at the Croatian Conservation Institute and (iii) Particle Induced X-ray Spectroscopy (PIXE) at the Ruđer Bošković Institute Tandem Accelerator Facility using ion micro beam. Rutherford Backscattering Spectroscopy (RBS) was performed as well on selected samples. SEM-EDX investigations of cross-sections along with the surfaces were also performed. In this work we report and discuss the results obtained by the three X-ray methods and RBS for major (gold, silver, copper) and minor elements on different threads like stripes, wires and "srma" (metal thread wrapped around textile yarn).

  18. Dissecting the Dynamic Pathways of Stereoselective DNA Threading Intercalation

    PubMed Central

    Almaqwashi, Ali A.; Andersson, Johanna; Lincoln, Per; Rouzina, Ioulia; Westerlund, Fredrik; Williams, Mark C.

    2016-01-01

    DNA intercalators that have high affinity and slow kinetics are developed for potential DNA-targeted therapeutics. Although many natural intercalators contain multiple chiral subunits, only intercalators with a single chiral unit have been quantitatively probed. Dumbbell-shaped DNA threading intercalators represent the next order of structural complexity relative to simple intercalators, and can provide significant insights into the stereoselectivity of DNA-ligand intercalation. We investigated DNA threading intercalation by binuclear ruthenium complex [μ-dppzip(phen)4Ru2]4+ (Piz). Four Piz stereoisomers are defined by the chirality of the intercalating subunit (Ru(phen)2dppz) and the distal subunit (Ru(phen)2ip), respectively, each of which can be either right-handed (Δ) or left-handed (Λ). We used optical tweezers to measure single DNA molecule elongation due to threading intercalation, revealing force-dependent DNA intercalation rates and equilibrium dissociation constants. The force spectroscopy analysis provided the zero-force DNA binding affinity, the equilibrium DNA-ligand elongation Δxeq, and the dynamic DNA structural deformations during ligand association xon and dissociation xoff. We found that Piz stereoisomers exhibit over 20-fold differences in DNA binding affinity, from a Kd of 27 ± 3 nM for (Δ,Λ)-Piz to a Kd of 622 ± 55 nM for (Λ,Δ)-Piz. The striking affinity decrease is correlated with increasing Δxeq from 0.30 ± 0.02 to 0.48 ± 0.02 nm and xon from 0.25 ± 0.01 to 0.46 ± 0.02 nm, but limited xoff changes. Notably, the affinity and threading kinetics is 10-fold enhanced for right-handed intercalating subunits, and 2- to 5-fold enhanced for left-handed distal subunits. These findings demonstrate sterically dispersed transition pathways and robust DNA structural recognition of chiral intercalators, which are critical for optimizing DNA binding affinity and kinetics. PMID:27028636

  19. On the breakup of viscous liquid threads

    NASA Technical Reports Server (NTRS)

    Papageorgiou, Demetrios T.

    1995-01-01

    A one-dimensional model evolution equation is used to describe the nonlinear dynamics that can lead to the breakup of a cylindrical thread of Newtonian fluid when capillary forces drive the motion. The model is derived from the Stokes equations by use of rational asymptotic expansions and under a slender jet approximation. The equations are solved numerically and the jet radius is found to vanish after a finite time yielding breakup. The slender jet approximation is valid throughout the evolution leading to pinching. The model admits self-similar pinching solutions which yield symmetric shapes at breakup. These solutions are shown to be the ones selected by the initial boundary value problem, for general initial conditions. Further more, the terminal state of the model equation is shown to be identical to that predicted by a theory which looks for singular pinching solutions directly from the Stokes equations without invoking the slender jet approximation throughout the evolution. It is shown quantitatively, therefore, that the one-dimensional model gives a consistent terminal state with the jet shape being locally symmetric at breakup. The asymptotic expansion scheme is also extended to include unsteady and inerticial forces in the momentum equations to derive an evolution system modelling the breakup of Navier-Stokes jets. The model is employed in extensive simulations to compute breakup times for different initial conditions; satellite drop formation is also supported by the model and the dependence of satellite drop volumes on initial conditions is studied.

  20. 78 FR 71565 - Steel Threaded Rod from India: Postponement of Preliminary Determination of Antidumping Duty...

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-11-29

    ... India: Postponement of Preliminary Determination of Antidumping Duty Investigation AGENCY: Enforcement... antidumping duty investigation of steel threaded rod from India.\\1\\ The notice of initiation stated that the... Steel Threaded Rod From India and Thailand: Initiation of Antidumping Duty Investigations, 78 FR 44526...

  1. Investigation of threading dislocation blocking in strained-layer InGaAs/GaAs heterostructures using scanning cathodoluminescence microscopy

    NASA Astrophysics Data System (ADS)

    Russell, J. J.; Zou, J.; Moon, A. R.; Cockayne, D. J. H.

    2000-08-01

    Threading dislocation glide relieves strain in strained-layer heterostructures by increasing the total length of interface misfit dislocations. The blocking theory proposed by Freund [J. Appl. Phys. 68, 2073 (1990)] predicts the thickness above which gliding threading dislocations are able to overcome the resistance force produced by existing orthogonal misfit dislocations. A set of wedge-shaped samples of InxGa1-xAs/GaAs (x=0.04) strained-layer heterostructures was grown using molecular-beam epitaxy in order to test the theory of dislocation blocking over a range of thicknesses within one sample. Scanning cathodoluminescence microscopy techniques were used to image the misfit dislocations. The cathodoluminescence results confirm the model proposed by Freund.

  2. Distinct spinning patterns gain differentiated loading tolerance of silk thread anchorages in spiders with different ecology.

    PubMed

    Wolff, Jonas O; van der Meijden, Arie; Herberstein, Marie E

    2017-07-26

    Building behaviour in animals extends biological functions beyond bodies. Many studies have emphasized the role of behavioural programmes, physiology and extrinsic factors for the structure and function of buildings. Structure attachments associated with animal constructions offer yet unrealized research opportunities. Spiders build a variety of one- to three-dimensional structures from silk fibres. The evolution of economic web shapes as a key for ecological success in spiders has been related to the emergence of high performance silks and thread coating glues. However, the role of thread anchorages has been widely neglected in those models. Here, we show that orb-web (Araneidae) and hunting spiders (Sparassidae) use different silk application patterns that determine the structure and robustness of the joint in silk thread anchorages. Silk anchorages of orb-web spiders show a greater robustness against different loading situations, whereas the silk anchorages of hunting spiders have their highest pull-off resistance when loaded parallel to the substrate along the direction of dragline spinning. This suggests that the behavioural 'printing' of silk into attachment discs along with spinneret morphology was a prerequisite for the evolution of extended silk use in a three-dimensional space. This highlights the ecological role of attachments in the evolution of animal architectures. © 2017 The Author(s).

  3. Nano-QSPR Modelling of Carbon-Based Nanomaterials Properties.

    PubMed

    Salahinejad, Maryam

    2015-01-01

    Evaluation of chemical and physical properties of nanomaterials is of critical importance in a broad variety of nanotechnology researches. There is an increasing interest in computational methods capable of predicting properties of new and modified nanomaterials in the absence of time-consuming and costly experimental studies. Quantitative Structure- Property Relationship (QSPR) approaches are progressive tools in modelling and prediction of many physicochemical properties of nanomaterials, which are also known as nano-QSPR. This review provides insight into the concepts, challenges and applications of QSPR modelling of carbon-based nanomaterials. First, we try to provide a general overview of QSPR implications, by focusing on the difficulties and limitations on each step of the QSPR modelling of nanomaterials. Then follows with the most significant achievements of QSPR methods in modelling of carbon-based nanomaterials properties and their recent applications to generate predictive models. This review specifically addresses the QSPR modelling of physicochemical properties of carbon-based nanomaterials including fullerenes, single-walled carbon nanotube (SWNT), multi-walled carbon nanotube (MWNT) and graphene.

  4. a Spatiotemporal Aggregation Query Method Using Multi-Thread Parallel Technique Based on Regional Division

    NASA Astrophysics Data System (ADS)

    Liao, S.; Chen, L.; Li, J.; Xiong, W.; Wu, Q.

    2015-07-01

    Existing spatiotemporal database supports spatiotemporal aggregation query over massive moving objects datasets. Due to the large amounts of data and single-thread processing method, the query speed cannot meet the application requirements. On the other hand, the query efficiency is more sensitive to spatial variation then temporal variation. In this paper, we proposed a spatiotemporal aggregation query method using multi-thread parallel technique based on regional divison and implemented it on the server. Concretely, we divided the spatiotemporal domain into several spatiotemporal cubes, computed spatiotemporal aggregation on all cubes using the technique of multi-thread parallel processing, and then integrated the query results. By testing and analyzing on the real datasets, this method has improved the query speed significantly.

  5. Inchworm movement of two rings switching onto a thread by biased Brownian diffusion represent a three-body problem.

    PubMed

    Benson, Christopher R; Maffeo, Christopher; Fatila, Elisabeth M; Liu, Yun; Sheetz, Edward G; Aksimentiev, Aleksei; Singharoy, Abhishek; Flood, Amar H

    2018-05-07

    The coordinated motion of many individual components underpins the operation of all machines. However, despite generations of experience in engineering, understanding the motion of three or more coupled components remains a challenge, known since the time of Newton as the "three-body problem." Here, we describe, quantify, and simulate a molecular three-body problem of threading two molecular rings onto a linear molecular thread. Specifically, we use voltage-triggered reduction of a tetrazine-based thread to capture two cyanostar macrocycles and form a [3]pseudorotaxane product. As a consequence of the noncovalent coupling between the cyanostar rings, we find the threading occurs by an unexpected and rare inchworm-like motion where one ring follows the other. The mechanism was derived from controls, analysis of cyclic voltammetry (CV) traces, and Brownian dynamics simulations. CVs from two noncovalently interacting rings match that of two covalently linked rings designed to thread via the inchworm pathway, and they deviate considerably from the CV of a macrocycle designed to thread via a stepwise pathway. Time-dependent electrochemistry provides estimates of rate constants for threading. Experimentally derived parameters (energy wells, barriers, diffusion coefficients) helped determine likely pathways of motion with rate-kinetics and Brownian dynamics simulations. Simulations verified intercomponent coupling could be separated into ring-thread interactions for kinetics, and ring-ring interactions for thermodynamics to reduce the three-body problem to a two-body one. Our findings provide a basis for high-throughput design of molecular machinery with multiple components undergoing coupled motion.

  6. Flash nano-precipitation of polymer blends: a role for fluid flow?

    NASA Astrophysics Data System (ADS)

    Grundy, Lorena; Mason, Lachlan; Chergui, Jalel; Juric, Damir; Craster, Richard V.; Lee, Victoria; Prudhomme, Robert; Priestley, Rodney; Matar, Omar K.

    2017-11-01

    Porous structures can be formed by the controlled precipitation of polymer blends; ranging from porous matrices, with applications in membrane filtration, to porous nano-particles, with applications in catalysis, targeted drug delivery and emulsion stabilisation. Under a diffusive exchange of solvent for non-solvent, prevailing conditions favour the decomposition of polymer blends into multiple phases. Interestingly, dynamic structures can be `trapped' via vitrification prior to thermodynamic equilibrium. A promising mechanism for large-scale polymer processing is flash nano-precipitation (FNP). FNP particle formation has recently been modelled using spinodal decomposition theory, however the influence of fluid flow on structure formation is yet to be clarified. In this study, we couple a Navier-Stokes equation to a Cahn-Hilliard model of spinodal decomposition. The framework is implemented using Code BLUE, a massively scalable fluid dynamics solver, and applied to flows within confined impinging jet mixers. The present method is valid for a wide range of mixing timescales spanning FNP and conventional immersion precipitation processes. Results aid in the fabrication of nano-scale polymer particles with tuneable internal porosities. EPSRC, UK, MEMPHIS program Grant (EP/K003976/1), RAEng Research Chair (OKM), PETRONAS.

  7. Qualitative and Semiquantitative Assessment of Exposure to Engineered Nanomaterials within the French EpiNano Program: Inter- and Intramethod Reliability Study.

    PubMed

    Guseva Canu, Irina; Jezewski-Serra, Delphine; Delabre, Laurène; Ducamp, Stéphane; Iwatsubo, Yuriko; Audignon-Durand, Sabine; Ducros, Cécile; Radauceanu, Anca; Durand, Catherine; Witschger, Olivier; Flahaut, Emmanuel

    2017-01-01

    The relatively recent development of industries working with nanomaterials has created challenges for exposure assessment. In this article, we propose a relatively simple approach to assessing nanomaterial exposures for the purposes of epidemiological studies of workers in these industries. This method consists of an onsite industrial hygiene visit of facilities carried out individually and a description of workstations where nano-objects and their agglomerates and aggregates (NOAA) are present using a standardized tool, the Onsite technical logbook. To assess its reliability, we implemented this approach for assessing exposure to NOAA in workplaces at seven workstations which synthesize and functionalize carbon nanotubes. The prediction of exposure to NOAA using this method exhibited substantial agreement with that of the reference method, the latter being based on an onsite group visit, an expert's report and exposure measurements (Cohen kappa = 0.70, sensitivity = 0.88, specificity = 0.92). Intramethod comparison of results for exposure prediction showed moderate agreement between the three evaluators (two program team evaluators and one external evaluator) (weighted Fleiss kappa = 0.60, P = 0.003). Interevaluator reliability of the semiquantitative exposure characterization results was excellent between the two evaluators from the program team (Spearman rho = 0.93, P = 0.03) and fair when these two evaluators' results were compared with the external evaluator's results. The project was undertaken within the framework of the French epidemiological surveillance program EpiNano. This study allowed a first reliability assessment of the EpiNano method. However, to further validate this method a comparison with robust quantitative exposure measurement data is necessary. © The Author 2017. Published by Oxford University Press on behalf of the British Occupational Hygiene Society.

  8. Programming Cells for Dynamic Assembly of Inorganic Nano-Objects with Spatiotemporal Control.

    PubMed

    Wang, Xinyu; Pu, Jiahua; An, Bolin; Li, Yingfeng; Shang, Yuequn; Ning, Zhijun; Liu, Yi; Ba, Fang; Zhang, Jiaming; Zhong, Chao

    2018-04-01

    Programming living cells to organize inorganic nano-objects (NOs) in a spatiotemporally precise fashion would advance new techniques for creating ordered ensembles of NOs and new bio-abiotic hybrid materials with emerging functionalities. Bacterial cells often grow in cellular communities called biofilms. Here, a strategy is reported for programming dynamic biofilm formation for the synchronized assembly of discrete NOs or hetero-nanostructures on diverse interfaces in a dynamic, scalable, and hierarchical fashion. By engineering Escherichia coli to sense blue light and respond by producing biofilm curli fibers, biofilm formation is spatially controlled and the patterned NOs' assembly is simultaneously achieved. Diverse and complex fluorescent quantum dot patterns with a minimum patterning resolution of 100 µm are demonstrated. By temporally controlling the sequential addition of NOs into the culture, multilayered heterostructured thin films are fabricated through autonomous layer-by-layer assembly. It is demonstrated that biologically dynamic self-assembly can be used to advance a new repertoire of nanotechnologies and materials with increasing complexity that would be otherwise challenging to produce. © 2018 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  9. Life Cycle Analysis of Dedicated Nano-Launch Technologies

    NASA Technical Reports Server (NTRS)

    Zapata, Edgar; McCleskey, Carey (Editor); Martin, John; Lepsch, Roger; Ternani, Tosoc

    2014-01-01

    Recent technology advancements have enabled the development of small cheap satellites that can perform useful functions in the space environment. Currently, the only low cost option for getting these payloads into orbit is through ride share programs - small satellites awaiting the launch of a larger satellite, and then riding along on the same launcher. As a result, these small satellite customers await primary payload launches and a backlog exists. An alternative option would be dedicated nano-launch systems built and operated to provide more flexible launch services, higher availability, and affordable prices. The potential customer base that would drive requirements or support a business case includes commercial, academia, civil government and defense. Further, NASA technology investments could enable these alternative game changing options. With this context, in 2013 the Game Changing Development (GCD) program funded a NASA team to investigate the feasibility of dedicated nano-satellite launch systems with a recurring cost of less than $2 million per launch for a 5 kg payload to low Earth orbit. The team products would include potential concepts, technologies and factors for enabling the ambitious cost goal, exploring the nature of the goal itself, and informing the GCD program technology investment decision making process. This paper provides an overview of the life cycle analysis effort that was conducted in 2013 by an inter-center NASA team. This effort included the development of reference nano-launch system concepts, developing analysis processes and models, establishing a basis for cost estimates (development, manufacturing and launch) suitable to the scale of the systems, and especially, understanding the relationship of potential game changing technologies to life cycle costs, as well as other factors, such as flights per year.

  10. PREFACE International Conference on Theoretical Physics Dubna-Nano 2010

    NASA Astrophysics Data System (ADS)

    Osipov, Vladimir; Nesterenko, Valentin; Shukrinov, Yury

    2010-11-01

    The International Conference on Theoretical Physics 'Dubna-Nano2010' was held on 5-10 July 2010, at the Bogoliubov Laboratory of Theoretical Physics, Joint Institute for Nuclear Research, Dubna, Moscow region, Russia. The previous conference of this series was at Dubna in 2008. The conference provided the opportunity for the presentation and discussion of theoretical and experimental advances in the rapidly growing area of nanophysics, with the accent on its theoretical aspects. The multidisciplinary character of the conference allowed an effective exchange of ideas between different areas of nanophysics. The following topics were covered: carbon nanosystems (graphene, nanotubes, fullerenes), quantum dots, quantum transport, spectroscopy and dynamics of atomic clusters, Josephson junctions, modelling, applications and perspectives. Approximately 120 scientists from 26 countries participated in the conference. The program included 63 oral talks and 70 posters. The 62 contributions are included in these proceedings. We would like to express our gratitude to all participants for their presentations and discussions, which made the conference indeed successful. We are deeply indebted to the members of the International Advisory Committee (Professors T Ando, J Fabian, F Guinea, P Hawrylak, K Kadowaki, T Koyama, Yu I Latushev, Yu E Lozovik, M Machida, B K Nikolic, N F Pedersen, P-G Reinhard, J M Rost, A Ya Vul') and the Local Organizing Committee for their fruitful work. The financial support of BLTP JINR, Russian Foundation for Basic Research, Heisenberg-Landau Program and Bogoliubov-Infeld Program was of a great importance. Additional information about 'Dubna-Nano2010' is available at the homepage http://theor.jinr.ru/~nano10. Vladimir Osipov, Valentin Nesterenko and Yury Shukrinov Editors

  11. Successive Two-sided Loop Jets Caused by Magnetic Reconnection between Two Adjacent Filamentary Threads

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

    Tian, Zhanjun; Liu, Yu; Shen, Yuandeng

    We present observational analysis of two successive two-sided loop jets observed by the ground-based New Vacuum Solar Telescope and the space-borne Solar Dynamics Observatory . The two successive two-sided loop jets manifested similar evolution processes and both were associated with the interaction of two small-scale adjacent filamentary threads, magnetic emerging, and cancellation processes at the jet’s source region. High temporal and high spatial resolution observations reveal that the two adjacent ends of the two filamentary threads are rooted in opposite magnetic polarities within the source region. The two threads approached each other, and then an obvious brightening patch is observedmore » at the interaction position. Subsequently, a pair of hot plasma ejections are observed heading in opposite directions along the paths of the two filamentary threads at a typical speed for two-sided loop jets of the order 150 km s{sup −1}. Close to the end of the second jet, we report the formation of a bright hot loop structure at the source region, which suggests the formation of new loops during the interaction. Based on the observational results, we propose that the observed two-sided loop jets are caused by magnetic reconnection between the two adjacent filamentary threads, largely different from the previous scenario that a two-sided loop jet is generated by magnetic reconnection between an emerging bipole and the overlying horizontal magnetic fields.« less

  12. Logging while fishing: An alternate method to cut and thread fishing

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

    Tollefsen, E.; Crary, S.; Flores, B.

    1996-12-31

    New technology has been introduced to allow completion of the wireline logging program after the tool string has become lodged in the wellbore. Charges associated with extracting a stuck tool are substantial. These charges result from the nonproductive time during the fishing trip, an associated wiper trip, and re-logging the well. The ability to continue the logging program while retrieving the logging string from the wellbore is needed. Logging While Fishing (LWF) is a hybrid of existing technologies combined with a new sub capable of severing a cable remotely. This new method is comprised of cut and thread fishing, drillpipemore » conveyed logging, and bridled tool techniques. Utilizing these techniques it is possible to complete wireline logging operations while removing a stuck tool from the wellbore. Completing logging operations using this hybrid method will save operating companies time and money. Other benefits, depending on the situation, include reduced fishing time and an increased level of safety. This application has been demonstrated on jobs in the Gulf of Mexico, North Sea, Venezuela, and Southeast Asia.« less

  13. Multi-threaded parallel simulation of non-local non-linear problems in ultrashort laser pulse propagation in the presence of plasma

    NASA Astrophysics Data System (ADS)

    Baregheh, Mandana; Mezentsev, Vladimir; Schmitz, Holger

    2011-06-01

    We describe a parallel multi-threaded approach for high performance modelling of wide class of phenomena in ultrafast nonlinear optics. Specific implementation has been performed using the highly parallel capabilities of a programmable graphics processor.

  14. The crystallization kinetic model of nano-CaCO3 in CO2-ammonia-phosphogypsum three-phase reaction system

    NASA Astrophysics Data System (ADS)

    Liu, Hao; Lan, Peiqiang; Lu, Shangqing; Wu, Sufang

    2018-06-01

    Phosphogypsum (PG) as a low-cost calcium resource was used to prepare nano-CaCO3 in a three-phase system by reactions. Based on the population balance equation, nano-CaCO3 crystal nucleation and growth model in the gas (CO2)-liquid (NH3·H2O)-solid (CaSO4) three-phase system was established. The crystallization kinetic model of nano-CaCO3 in CO2-NH3·H2O-CaSO4 reactions system was experimental developed over an optimized temperature range of 20-40 °C and CO2 flow rate range of 138-251 ml/min as rCaCO3 =kn 32 πM2γ3/3R3ρ2T3 (C -C∗)0.8/[ ln (C /C∗) ]3 + πρ/3M kg3 kn(C -C∗) 2t3 , where nano-CaCO3 nucleation rate constant was kn = 6.24 ×1019 exp(-15940/RT) and nano-CaCO3 growth rate constant was kg = 0.79 exp(-47650/RT) respectively. Research indicated that nucleation rates and growth rates both increased with the increasing of temperature and CO32- ion concentration. And crystal growth was dependent on temperature more than that of nucleation process because the activation energy of CaCO3 growth was bigger than that of CaCO3 nucleation. Decreasing the reaction temperature and CO2 flow rate was more beneficial for producing nano-size CaCO3 because of the lower CaCO3 growth rates. The deduced kinetic equation could briefly predict the average particle sizes of nano-CaCO3.

  15. Tangled Threads: Mentoring within a Community of Practice

    ERIC Educational Resources Information Center

    Tarr, Patricia

    2010-01-01

    Tangled Threads, a case study of a group of women art educators, examines the nature of mentoring relationships within the context of a professional association. Grounded in literature on "community of practice," relational and peer mentoring, and an ethic of care, the study uncovers the complex interconnections between women's professional and…

  16. Systematic and Scalable Testing of Concurrent Programs

    DTIC Science & Technology

    2013-12-16

    The evaluation of CHESS [107] checked eight different programs ranging from process management libraries to a distributed execution engine to a research...tool (§3.1) targets systematic testing of scheduling nondeterminism in multi- threaded components of the Omega cluster management system [129], while...tool for systematic testing of multithreaded com- ponents of the Omega cluster management system [129]. In particular, §3.1.1 defines a model for

  17. Multistate photo-induced relaxation and photoisomerization ability of fumaramide threads: a computational and experimental study.

    PubMed

    Altoè, Piero; Haraszkiewicz, Natalia; Gatti, Francesco G; Wiering, Piet G; Frochot, Céline; Brouwer, Albert M; Balkowski, Grzegorz; Shaw, Daniel; Woutersen, Sander; Buma, Wybren Jan; Zerbetto, Francesco; Orlandi, Giorgio; Leigh, David A; Garavelli, Marco

    2009-01-14

    Fumaric and maleic amides are the photoactive units of an important and widely investigated class of photocontrollable rotaxanes as they trigger ring shuttling via a cis-trans photoisomerization. Here, ultrafast decay and photoinduced isomerization in isolated fumaramide and solvated nitrogen-substituted fumaramides (that are employed as threads in those rotaxanes) have been investigated by means of CASPT2//CASSCF computational and time-resolved spectroscopic techniques, respectively. A complex multistate network of competitive deactivation channels, involving both internal conversion and intersystem crossing (ISC) processes, has been detected and characterized that accounts for the picosecond decay and photochemical/photophysical properties observed in the singlet as well as triplet (photosensitized) photochemistry of fumaramides threads. Interestingly, singlet photochemistry appears to follow a non-Kasha rule model, where nonequilibrium dynamical factors control the outcome of the photochemical process: accessible high energy portions of extended crossing seams turn out to drive the deactivation process and ground-state recovery. Concurrently, extended singlet/triplet degenerate regions of twisted molecular structures with significant spin-orbit-coupling values account for ultrafast (picosecond time scale) ISC processes that lead to higher photoisomerization efficiencies. This model discloses the principles behind the intrinsic photochemical reactivity of fumaramide and its control.

  18. Electronic and optical properties of GaN/AlN quantum dots with adjacent threading dislocations

    NASA Astrophysics Data System (ADS)

    Ye, Han; Lu, Peng-Fei; Yu, Zhong-Yuan; Yao, Wen-Jie; Chen, Zhi-Hui; Jia, Bo-Yong; Liu, Yu-Min

    2010-04-01

    We present a theory to simulate a coherent GaN QD with an adjacent pure edge threading dislocation by using a finite element method. The piezoelectric effects and the strain modified band edges are investigated in the framework of multi-band k · p theory to calculate the electron and the heavy hole energy levels. The linear optical absorption coefficients corresponding to the interband ground state transition are obtained via the density matrix approach and perturbation expansion method. The results indicate that the strain distribution of the threading dislocation affects the electronic structure. Moreover, the ground state transition behaviour is also influenced by the position of the adjacent threading dislocation.

  19. Language Issues in Mobile Program Security

    DTIC Science & Technology

    1998-01-01

    primitives for instance synchronous operations Nondeterminism and Privacy Now suppose we introduce nondeterminism via a simple concurrent language...code setting is that the only observable events are those that can be observed from within a mobile program using language primitives and any host...Possibilistic NI is given in It uses a main thread and two triggered threads each with a busy wait loop implementing a semaphore to copy every bit of

  20. Use of Nitrocarburizing for Strengthening Threaded Joints of Drill Pipes from Medium-Carbon Alloy Steels

    NASA Astrophysics Data System (ADS)

    Priymak, E. Yu.; Stepanchukova, A. V.; Yakovleva, I. L.; Tereshchenko, N. A.

    2015-05-01

    Nitrocarburizing is tested at the Drill Equipment Plant for reinforcing threaded joints of drill pipes for units with retrievable core receiver (RCR). The effect of the nitrocarburizing on the mechanical properties of steels of different alloying systems is considered. Steels for the production of threaded joints of drill pipes are recommended.

  1. Fabrication and modeling of electrochemical double-layer capacitors using carbon nano-onion electrode structures

    NASA Astrophysics Data System (ADS)

    Parigi, Fabio

    Electrochemical capacitors or ultracapacitors (UCs) that are commercially available today overcome battery limitations in terms of charging time (from tens of minutes to seconds) and limited lifetime (from a few thousand cycles up to more than one million) but still lack specific energy and energy density (2-5% of a lithium ion battery). The latest innovations in carbon nanomaterials, such as carbon nanotubes as an active electrode material for UCs, can provide up to five times as much energy and deliver up to seven times more power than today's activated carbon electrodes. Further improvements in UC power density have been achieved by using state-of-the-art carbon nano-onions (CNOs) for ultracapacitor electrodes. CNO UCs could exhibit up to five times the power density of single-wall CNT UCs and could substantially contribute to reducing the size of an energy storage system as well as the volume and weight, thus improving device performance. This dissertation describes the fabrication of CNO electrodes as part of an UC device, the measurement and analysis of the new electrode's performance as an energy storage component, and development of a new circuit model that accurately describes the CNO UC electrical behavior. The novel model is based on the impedance spectra of CNO UCs and cyclic voltammetry measurements. Further, the model was validated using experimental data and simulation. My original contributions are the fabrication process for reliable and repeatable electrode fabrication and the modeling of a carbon nano-onion ultracapacitor. The carbon nano-onion ultracapacitor model, composed of a resistor, an inductor, a capacitor (RLC), and a constant phase element (CPE), was developed along with a parameter extraction procedure for the benefit of other users. The new model developed, proved to be more accurate than previously reported UC models.

  2. Optimized FPGA Implementation of Multi-Rate FIR Filters Through Thread Decomposition

    NASA Technical Reports Server (NTRS)

    Zheng, Jason Xin; Nguyen, Kayla; He, Yutao

    2010-01-01

    Multirate (decimation/interpolation) filters are among the essential signal processing components in spaceborne instruments where Finite Impulse Response (FIR) filters are often used to minimize nonlinear group delay and finite-precision effects. Cascaded (multi-stage) designs of Multi-Rate FIR (MRFIR) filters are further used for large rate change ratio, in order to lower the required throughput while simultaneously achieving comparable or better performance than single-stage designs. Traditional representation and implementation of MRFIR employ polyphase decomposition of the original filter structure, whose main purpose is to compute only the needed output at the lowest possible sampling rate. In this paper, an alternative representation and implementation technique, called TD-MRFIR (Thread Decomposition MRFIR), is presented. The basic idea is to decompose MRFIR into output computational threads, in contrast to a structural decomposition of the original filter as done in the polyphase decomposition. Each thread represents an instance of the finite convolution required to produce a single output of the MRFIR. The filter is thus viewed as a finite collection of concurrent threads. The technical details of TD-MRFIR will be explained, first showing its applicability to the implementation of downsampling, upsampling, and resampling FIR filters, and then describing a general strategy to optimally allocate the number of filter taps. A particular FPGA design of multi-stage TD-MRFIR for the L-band radar of NASA's SMAP (Soil Moisture Active Passive) instrument is demonstrated; and its implementation results in several targeted FPGA devices are summarized in terms of the functional (bit width, fixed-point error) and performance (time closure, resource usage, and power estimation) parameters.

  3. Research on surface modification of nano-zirconia

    NASA Astrophysics Data System (ADS)

    Chen, Wen; Zhang, Cun-Lin; Yang, Xiao-Yi

    2005-02-01

    The mechanisms about the aggregation and dispersibility of nano-zirconia were analyzed in detail. And nano-zirconia powders which were surface-modified with silane coupling reagent WD70 were prepared in order to disperse homogeneously in ethanol in this investigation. The grain size and grain phase of nano-zirconia were obtained by XRD. Research and characterization on the structure and surface characteristic of surface-modified nano-zirconia were achieved by XPS, TG-DSC, TEM and FT-IR. The results given by FT-IR and XPS showed WD70 was jointed on the surface of nano-zirconia through both physical adsorption and chemical binding after the de-methanol reaction between the methoxyl groups of WD70 and the hydroxy groups on the surface of nano-zirconia. And the corresponding model of surface-modified nano-zirconia was given. The images provided by TEM presented intuitionistic effect of surface modification on the dispersibility of nano-zirconia in ethanol. And TG-DSC analysis ascertained the amount of WD70 that was jointed on the surface of nano-zirconia and the amount was about 6.21 percent.

  4. Present Situation of the Anti-Fatigue Processing of High-Strength Steel Internal Thread Based on Cold Extrusion Technology: A Review

    NASA Astrophysics Data System (ADS)

    Miao, Hong; Jiang, Cheng; Liu, Sixing; Zhang, Shanwen; Zhang, Yanjun

    2017-03-01

    The adoption of cold-extrusion forming for internal thread net forming becomes an important component of anti-fatigue processing with the development of internal thread processing towards high performance, low cost and low energy consumption. It has vast application foreground in the field of aviation, spaceflight, high speed train and etc. The internal thread processing and anti-fatigue manufacture technology are summarized. In terms of the perspective of processing quality and fatigue serving life, the advantages and disadvantages of the processing methods from are compared. The internal thread cold-extrusion processing technology is investigated for the purpose of improving the anti-fatigue serving life of internal thread. The superiorities of the plastic deformation law and surface integrity of the metal layer in the course of cold extrusion for improving its stability and economy are summed up. The proposed research forecasts the development tendency of the internal thread anti-fatigue manufacturing technology.

  5. Effect of thread size on the implant neck area: preliminary results at 1 year of function.

    PubMed

    Kang, Young-Il; Lee, Dong-Won; Park, Kwang-Ho; Moon, Ik-Sang

    2012-10-01

    To evaluate and compare the effect of the coronal thread size on the marginal bone loss around the fixtures, when both implants were provided with threads to the top of fixture. Two groups of implants, one with a macro-thread to the top of the fixture (A) and the other with a micro-thread to the top of the fixture (B), were placed adjacent to each other in the partially edentulous areas of 20 patients. Bone loss around each implant was analyzed after 1 year of functional loading. The bone losses after loading were compared using Wilcoxon's signed-rank test. The mean marginal bone losses (A, 0.154 ± 0.144 mm; B, 0.125 ± 0.136 mm) were not statistically significant between the two groups (P = 0.669). There was no significant difference between implant with macro- and micro-neck thread in terms of marginal bone loss after 1 year of loading. © 2011 John Wiley & Sons A/S.

  6. Multi-Threaded DNA Tag/Anti-Tag Library Generator for Multi-Core Platforms

    DTIC Science & Technology

    2009-05-01

    base pair)  Watson ‐ Crick  strand pairs that bind perfectly within pairs, but poorly across pairs. A variety  of  DNA  strand hybridization metrics...AFRL-RI-RS-TR-2009-131 Final Technical Report May 2009 MULTI-THREADED DNA TAG/ANTI-TAG LIBRARY GENERATOR FOR MULTI-CORE PLATFORMS...TYPE Final 3. DATES COVERED (From - To) Jun 08 – Feb 09 4. TITLE AND SUBTITLE MULTI-THREADED DNA TAG/ANTI-TAG LIBRARY GENERATOR FOR MULTI-CORE

  7. Enhanced fluoride adsorption by nano crystalline γ-alumina: adsorption kinetics, isotherm modeling and thermodynamic studies

    NASA Astrophysics Data System (ADS)

    Chinnakoti, Prathibha; Chunduri, Avinash L. A.; Vankayala, Ranganayakulu K.; Patnaik, Sandeep; Kamisetti, Venkataramaniah

    2017-09-01

    Nano materials in particular nano oxides with enhanced surface area and an excellent catalytic surface serve as potential adsorbents for defluoridation of water. In the present study nano γ-alumina was synthesized through a simple and low cost, surfactant assisted solution combustion method. As synthesized material was characterized by XRD and FESEM for its phase, size and morphological characteristics. Surface properties have been investigated by BET method. Nano γ-alumina was further used for a detailed adsorption study to remove fluoride from water. Batches of experiments were performed at various experimental conditions such as solution pH, adsorbent dose, initial fluoride concentration and contact time to test the defluoridation ability of γ-alumina. Fluoride Adsorption by nano sized γ-alumina was rapid and reached equilibrium within two hours. The adsorption worked well at pH 4.0, where ˜96 % of fluoride was found to be adsorbed on adsorbent. It was possible to reduce fluoride levels to as low as 0.3 mg/L (within the safe limit of WHO: ≤1.5 mg/L) from an initial fluoride levels of 10 mg/L. This could be achieved using a very small quantity, 1 g/L of γ-alumina at pH 4 within 1 h of contact time. Defluoridation capacity of nano γ-alumina was further investigated by fitting the equilibrium data to various isotherm as well as kinetic models. The present study revealed that γ-alumina could be an efficient adsorbent for treating fluoride contaminated water.

  8. Finite Element Model Characterization Of Nano-Composite Thermal And Environmental Barrier Coatings

    NASA Technical Reports Server (NTRS)

    Yamada, Yoshiki; Zhu, Dongming

    2011-01-01

    Thermal and environmental barrier coatings have been applied for protecting Si based ceramic matrix composite components from high temperature environment in advanced gas turbine engines. It has been found that the delamination and lifetime of T/EBC systems generally depend on the initiation and propagation of surface cracks induced by the axial mechanical load in addition to severe thermal loads. In order to prevent T/EBC systems from surface cracking and subsequent delamination due to mechanical and thermal stresses, T/EBC systems reinforced with nano-composite architectures have showed promise to improve mechanical properties and provide a potential crack shielding mechanism such as crack bridging. In this study, a finite element model (FEM) was established to understand the potential beneficial effects of nano-composites systems such as SiC nanotube-reinforced oxide T/EBC systems.

  9. A Multi-Threaded Cryptographic Pseudorandom Number Generator Test Suite

    DTIC Science & Technology

    2016-09-01

    bitcoin thieves, Google releases patch. (2013, Aug. 16). SiliconANGLE. [Online]. Available: http://siliconangle.com/blog/2013/ 08/16/android-crypto-prng...flaw-aided- bitcoin -thieves-google-releases-patch/ [5] M. Gondree. (2014, Sep. 28). NPS POSIX thread pool library. [Online]. Available: https

  10. 78 FR 40170 - Certain Steel Threaded Rod From India and Thailand; Institution of Antidumping and Countervailing...

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-07-03

    ... INTERNATIONAL TRADE COMMISSION [Investigation Nos. 701-TA-498 and 731-TA-1213-1214 (Preliminary)] Certain Steel Threaded Rod From India and Thailand; Institution of Antidumping and Countervailing Duty... Thailand of certain steel threaded rod, provided for primarily in subheading 7318.15.50 of the Harmonized...

  11. Molecular threading: mechanical extraction, stretching and placement of DNA molecules from a liquid-air interface.

    PubMed

    Payne, Andrew C; Andregg, Michael; Kemmish, Kent; Hamalainen, Mark; Bowell, Charlotte; Bleloch, Andrew; Klejwa, Nathan; Lehrach, Wolfgang; Schatz, Ken; Stark, Heather; Marblestone, Adam; Church, George; Own, Christopher S; Andregg, William

    2013-01-01

    We present "molecular threading", a surface independent tip-based method for stretching and depositing single and double-stranded DNA molecules. DNA is stretched into air at a liquid-air interface, and can be subsequently deposited onto a dry substrate isolated from solution. The design of an apparatus used for molecular threading is presented, and fluorescence and electron microscopies are used to characterize the angular distribution, straightness, and reproducibility of stretched DNA deposited in arrays onto elastomeric surfaces and thin membranes. Molecular threading demonstrates high straightness and uniformity over length scales from nanometers to micrometers, and represents an alternative to existing DNA deposition and linearization methods. These results point towards scalable and high-throughput precision manipulation of single-molecule polymers.

  12. Fate of nano- and microplastic in freshwater systems: A modeling study.

    PubMed

    Besseling, Ellen; Quik, Joris T K; Sun, Muzhi; Koelmans, Albert A

    2017-01-01

    Riverine transport to the marine environment is an important pathway for microplastic. However, information on fate and transport of nano- and microplastic in freshwater systems is lacking. Here we present scenario studies on the fate and transport of nano-to millimetre sized spherical particles like microbeads (100 nm-10 mm) with a state of the art spatiotemporally resolved hydrological model. The model accounts for advective transport, homo- and heteroaggregation, sedimentation-resuspension, polymer degradation, presence of biofilm and burial. Literature data were used to parameterize the model and additionally the attachment efficiency for heteroaggregation was determined experimentally. The attachment efficiency ranged from 0.004 to 0.2 for 70 nm and 1050 nm polystyrene particles aggregating with kaolin or bentonite clays in natural freshwater. Modeled effects of polymer density (1-1.5 kg/L) and biofilm formation were not large, due to the fact that variations in polymer density are largely overwhelmed by excess mass of suspended solids that form heteroaggregates with microplastic. Particle size had a dramatic effect on the modeled fate and retention of microplastic and on the positioning of the accumulation hot spots in the sediment along the river. Remarkably, retention was lowest (18-25%) for intermediate sized particles of about 5 μm, which implies that the smaller submicron particles as well as larger micro- and millimetre sized plastic are preferentially retained. Our results suggest that river hydrodynamics affect microplastic size distributions with profound implications for emissions to marine systems. Copyright © 2016 Elsevier Ltd. All rights reserved.

  13. Pearling Instabilities of a Viscoelastic Thread

    NASA Astrophysics Data System (ADS)

    Deblais, A.; Velikov, K. P.; Bonn, D.

    2018-05-01

    Pearling instabilities of slender viscoelastic threads have received much attention, but remain incompletely understood. We study the instabilities in polymer solutions subject to uniaxial elongational flow. Two distinctly different instabilites are observed: beads on a string and blistering. The beads-on-a-string structure arises from a capillary instability whereas the blistering instability has a different origin: it is due to a coupling between stress and polymer concentration. By varying the temperature to change the solution properties we elucidate the interplay between flow and phase separation.

  14. How Cognitive Requirement of Prompt and Time in Course Are Correlated with Intersubjectivity within Threaded Discussions

    ERIC Educational Resources Information Center

    Hall, Barbara M.

    2011-01-01

    Threaded discussions represent conversational turn-taking in asynchronous, online learning environments. Given the crucial role that discussions play in the construction of knowledge within an online course, the quality of the interaction that occurs within threaded discussions is important to achieving the learning objectives of the designed…

  15. Developing a scalable modeling architecture for studying survivability technologies

    NASA Astrophysics Data System (ADS)

    Mohammad, Syed; Bounker, Paul; Mason, James; Brister, Jason; Shady, Dan; Tucker, David

    2006-05-01

    To facilitate interoperability of models in a scalable environment, and provide a relevant virtual environment in which Survivability technologies can be evaluated, the US Army Research Development and Engineering Command (RDECOM) Modeling Architecture for Technology Research and Experimentation (MATREX) Science and Technology Objective (STO) program has initiated the Survivability Thread which will seek to address some of the many technical and programmatic challenges associated with the effort. In coordination with different Thread customers, such as the Survivability branches of various Army labs, a collaborative group has been formed to define the requirements for the simulation environment that would in turn provide them a value-added tool for assessing models and gauge system-level performance relevant to Future Combat Systems (FCS) and the Survivability requirements of other burgeoning programs. An initial set of customer requirements has been generated in coordination with the RDECOM Survivability IPT lead, through the Survivability Technology Area at RDECOM Tank-automotive Research Development and Engineering Center (TARDEC, Warren, MI). The results of this project are aimed at a culminating experiment and demonstration scheduled for September, 2006, which will include a multitude of components from within RDECOM and provide the framework for future experiments to support Survivability research. This paper details the components with which the MATREX Survivability Thread was created and executed, and provides insight into the capabilities currently demanded by the Survivability faculty within RDECOM.

  16. The effect of nano-silver packaging in increasing the shelf life of nuts: An in vitro model

    PubMed Central

    Tavakoli, Hamidreza; Rastegar, Hossein; Taherian, Mahdi; Samadi, Mohammad; Rostami, Hossein

    2017-01-01

    Nano packaging is currently one of the most important topics in food packaging technologies. The aim of the application of this technology in food packaging is increasing shelf life of foods by preventing internal and external corruption and microbial contaminations. Use of silver nanoparticles in food packaging has recently attracted much attention. The aim of this study was to investigate the effect of nano-silver packaging in increasing the shelf life packages of nuts in an In vitro model. In this experimental study, the effects of different nano-silver concentrations (0, 1, 2 and 3 percent) on biological and chemical properties of 432 samples of nuts including walnuts, hazelnuts, almonds and pistachios were evaluated during 0, 3, 6, 9, 12, 15, 18, 21 and 24 months. In most samples, different concentrations of nano-silver (1, 2 and 3 %) significantly reduced total microbial count, mold and coliform counts compared to control group and the 3% nano-silver concentration was more effective than other concentrations (P<0.05). Moreover, using this packaging yielded an antioxidant effect especially when 2% and 3% nano-silver concentrations were used. Nano-silver also prevented growth of mold and so prevented aflatoxin production in all treatment groups. Results of chemical and biological tests showed that the silver nanoparticles had a significant effect on increasing the shelf life of nuts. The highest shelf life belonged to pistachios, almonds, hazelnuts and walnuts with 20, 19, 18 and 18 months, respectively. The shelf life was associated with amount of silver nanoparticles. The highest antimicrobial activity was observed when 3% nano-silver concentration was used in pistachios. The shelf life of control groups in similar storage conditions were calculated for an average of 13 months. In conclusion, the results of this study demonstrate the efficacy of nano-silver packing in increasing shelf life of nuts. Hence, use of nano-silver packaging in food industry

  17. The effect of nano-silver packaging in increasing the shelf life of nuts: An in vitro model.

    PubMed

    Tavakoli, Hamidreza; Rastegar, Hossein; Taherian, Mahdi; Samadi, Mohammad; Rostami, Hossein

    2017-10-20

    Nano packaging is currently one of the most important topics in food packaging technologies. The aim of the application of this technology in food packaging is increasing shelf life of foods by preventing internal and external corruption and microbial contaminations. Use of silver nanoparticles in food packaging has recently attracted much attention. The aim of this study was to investigate the effect of nano-silver packaging in increasing the shelf life packages of nuts in an In vitro model. In this experimental study, the effects of different nano-silver concentrations (0, 1, 2 and 3 percent) on biological and chemical properties of 432 samples of nuts including walnuts, hazelnuts, almonds and pistachios were evaluated during 0, 3, 6, 9, 12, 15, 18, 21 and 24 months. In most samples, different concentrations of nano-silver (1, 2 and 3 %) significantly reduced total microbial count, mold and coliform counts compared to control group and the 3% nano-silver concentration was more effective than other concentrations (P<0.05). Moreover, using this packaging yielded an antioxidant effect especially when 2% and 3% nano-silver concentrations were used. Nano-silver also prevented growth of mold and so prevented aflatoxin production in all treatment groups. Results of chemical and biological tests showed that the silver nanoparticles had a significant effect on increasing the shelf life of nuts. The highest shelf life belonged to pistachios, almonds, hazelnuts and walnuts with 20, 19, 18 and 18 months, respectively. The shelf life was associated with amount of silver nanoparticles. The highest antimicrobial activity was observed when 3% nano-silver concentration was used in pistachios. The shelf life of control groups in similar storage conditions were calculated for an average of 13 months. In conclusion, the results of this study demonstrate the efficacy of nano-silver packing in increasing shelf life of nuts. Hence, use of nano-silver packaging in food industry

  18. Roofline model toolkit: A practical tool for architectural and program analysis

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

    Lo, Yu Jung; Williams, Samuel; Van Straalen, Brian

    We present preliminary results of the Roofline Toolkit for multicore, many core, and accelerated architectures. This paper focuses on the processor architecture characterization engine, a collection of portable instrumented micro benchmarks implemented with Message Passing Interface (MPI), and OpenMP used to express thread-level parallelism. These benchmarks are specialized to quantify the behavior of different architectural features. Compared to previous work on performance characterization, these microbenchmarks focus on capturing the performance of each level of the memory hierarchy, along with thread-level parallelism, instruction-level parallelism and explicit SIMD parallelism, measured in the context of the compilers and run-time environments. We also measuremore » sustained PCIe throughput with four GPU memory managed mechanisms. By combining results from the architecture characterization with the Roofline model based solely on architectural specifications, this work offers insights for performance prediction of current and future architectures and their software systems. To that end, we instrument three applications and plot their resultant performance on the corresponding Roofline model when run on a Blue Gene/Q architecture.« less

  19. Assessing the Effect of Dental Implants Thread Design on Distribution of Stress in Impact Loadings Using Three Dimensional Finite Element Method.

    PubMed

    I, Zarei; S, Khajehpour; A, Sabouri; Az, Haghnegahdar; K, Jafari

    2016-06-01

    Impacts and accidents are considered as the main fac- tors in losing the teeth, so the analysis and design of the implants that they can be more resistant against impacts is very important. One of the important nu- merical methods having widespread application in various fields of engineering sciences is the finite element method. Among its wide applications, the study of distribution of power in complex structures can be noted. The aim of this research was to assess the geometric effect and the type of implant thread on its performance; we also made an attempt to determine the created stress using finite element method. In this study, the three dimensional model of bone by using Cone Beam Computerized Tomography (CBCT) of the patient has been provided. The implants in this study are designed by Solid Works software. Loading is simulated in explicit dynamic, by struck of a rigid body with the speed of 1 mm/s to implant vertically and horizontally; and the maximum level of induced stress for the cortical and trabecular bone in the ANSYS Workbench software was calculated. By considering the results of this study, it was identified that, among the designed samples, the maximum imposed stress in the cortical bone layer occurred in the first group (straight threads) and the maximum stress value in the trabecular bone layer and implant occurred in the second group (tapered threads). Due to the limitations of this study, the implants with more depth thread, because of the increased contact surface of the implant with the bone, caused more stability; also, the implant with smaller thread and shorter pitch length caused more stress to the bone.

  20. Label it or ban it? Public perceptions of nano-food labels and propositions for banning nano-food applications

    NASA Astrophysics Data System (ADS)

    Chuah, Agnes S. F.; Leong, Alisius D.; Cummings, Christopher L.; Ho, Shirley S.

    2018-02-01

    The future of nano-food largely hinges on public perceptions and willingness to accept this novel technology. The present study utilizes the scientific literacy model and psychometric paradigm as the key theoretical frameworks to examine the factors influencing public support for labeling and banning of nano-food in Singapore. Using data collected from a nationally representative survey of 1001 respondents, the findings demonstrated that attitudes toward technology, preference for natural product, science knowledge, and risk perception were found to substantially affect public support for both labeling and banning of nano-food. Conversely, attention to food safety news on traditional media and attention to nano-news on new media were only associated with public support for labeling of nano-food. Similarly, benefit perception was only significantly associated with public support for banning of nano-food. Theoretically, these findings support the growing body of literature that argues for the significant role played by predispositions, media use, science knowledge, and risk and benefit perceptions on attitude formation toward nano-food. It serves as the pioneering piece to address the aspect of banning in the field of nano-food. Practically, insights drawn from this study could aid relevant stakeholders in enlisting effecting strategies to convey the benefits of nano-food while mitigating the risk perceptions among the public.

  1. Incorporation of a Decorin Biomimetic Enhances the Mechanical Properties of Electrochemically Aligned Collagen Threads

    PubMed Central

    Kishore, Vipuil; Paderi, John E.; Akkus, Anna; Smith, Katie M.; Balachandran, Dave; Beaudoin, Stephen; Panitch, Alyssa; Akkus, Ozan

    2011-01-01

    Orientational anisotropy of collagen molecules is integral for the mechanical strength of collagen-rich tissues. We have previously reported a novel methodology to synthesize highly oriented electrochemically aligned collagen (ELAC) threads with mechanical properties converging upon those of native tendon. Decorin, a small leucine rich proteoglycan (SLRP), binds to fibrillar collagen and has been suggested to enhance the mechanical properties of tendon. Based on the structure of natural decorin, we have previously designed and synthesized a peptidoglycan (DS-SILY) that mimics decorin both structurally and functionally. In this study, we investigated the effect of the incorporation of DS-SILY on the mechanical properties and structural organization of ELAC threads. The results indicated that the addition of DS-SILY at a molar ratio of 30:1 (Collagen:DS-SILY) significantly enhanced the ultimate stress and ultimate strain of the ELAC threads. Furthermore, differential scanning calorimetry revealed that the addition of DS-SILY at a molar ratio of 30:1 resulted in a more thermally stable collagen structure. However, addition of DS-SILY at a higher concentration (10:1 Collagen:DS-SILY) yielded weaker threads with mechanical properties comparable to collagen control threads. Transmission emission microscopy revealed that the addition of DS-SILY at a higher concentration (10:1) resulted in pronounced aggregation of collagen fibrils. More importantly, these aggregates were not aligned along the long axis of the ELAC thereby compromising on the overall tensile properties of the material. We conclude that incorporation of an optimal amount of DS-SILY is a promising approach to synthesize mechanically competent collagen based biomaterials for tendon tissue engineering applications. PMID:21356334

  2. NanoSail - D Orbital and Attitude Dynamics

    NASA Technical Reports Server (NTRS)

    Heaton, Andrew F.; Faller, Brent F.; Katan, Chelsea K.

    2013-01-01

    NanoSail-D unfurled January 20th, 2011 and successfully demonstrated the deployment and deorbit capability of a solar sail in low Earth orbit. The orbit was strongly perturbed by solar radiation pressure, aerodynamic drag, and oblate gravity which were modeled using STK HPOP. A comparison of the ballistic coefficient history to the orbit parameters exhibits a strong relationship between orbital lighting, the decay rate of the mean semi-major axis and mean eccentricity. A similar comparison of mean solar area using the STK HPOP solar radiation pressure model exhibits a strong correlation of solar radiation pressure to mean eccentricity and mean argument of perigee. NanoSail-D was not actively controlled and had no capability on-board for attitude or orbit determination. To estimate attitude dynamics we created a 3-DOF attitude dynamics simulation that incorporated highly realistic estimates of perturbing forces into NanoSail-D torque models. By comparing the results of this simulation to the orbital behavior and ground observations of NanoSail-D, we conclude that there is a coupling between the orbit and attitude dynamics as well as establish approximate limits on the location of the NanoSail-D solar center of pressure. Both of these observations contribute valuable data for future solar sail designs and missions.

  3. Adhesion enhancement of cribellate capture threads by epicuticular waxes of the insect prey sheds new light on spider web evolution

    PubMed Central

    Bott, Raya A.; Bräunig, Peter

    2017-01-01

    To survive, web-building spiders rely on their capture threads to restrain prey. Many species use special adhesives for this task, and again the majority of those species cover their threads with viscoelastic glue droplets. Cribellate spiders, by contrast, use a wool of nanofibres as adhesive. Previous studies hypothesized that prey is restrained by van der Waals' forces and entrapment in the nanofibres. A large discrepancy when comparing the adhesive force on artificial surfaces versus prey implied that the real mechanism was still elusive. We observed that insect prey's epicuticular waxes infiltrate the wool of nanofibres, probably induced by capillary forces. The fibre-reinforced composite thus formed led to an adhesion between prey and thread eight times stronger than that between thread and wax-free surfaces. Thus, cribellate spiders employ the originally protective coating of their insect prey as a fatal component of their adhesive and the insect promotes its own capture. We suggest an evolutionary arms race with prey changing the properties of their cuticular waxes to escape the cribellate capture threads that eventually favoured spider threads with viscous glue. PMID:28566485

  4. NanoRacks CubeSat Deployment

    NASA Image and Video Library

    2014-02-11

    ISS038-E-044916 (11 Feb. 2014) --- A set of NanoRacks CubeSats is photographed by an Expedition 38 crew member after the deployment by the Small Satellite Orbital Deployer (SSOD). The CubeSats program contains a variety of experiments such as Earth observations and advanced electronics testing.

  5. Role of Marangoni stress during breakup of surfactant-covered liquid threads: Reduced rates of thinning and microthread cascades

    NASA Astrophysics Data System (ADS)

    Kamat, Pritish M.; Wagoner, Brayden W.; Thete, Sumeet S.; Basaran, Osman A.

    2018-04-01

    Adsorption onto and lowering of surface tension σ of fluid interfaces by surfactants is exploited in drop formation (e.g., inkjet printing) where a thinning liquid thread (radius h ) connects an about-to-form drop to the liquid that remains hanging from the nozzle when the former falls from it. Surfactants can affect thread pinch-off in two ways: first, by lowering σ , they lower capillary pressure (σ /h ), and second, as surfactant concentration along the interface can be nonuniform, they cause the interface to be subjected to a surface tension gradient or Marangoni stress. Recent studies show that the location where the thread breaks is devoid of surfactant, and others assert that the influence of Marangoni stress on pinch-off is negligible. We demonstrate by simulations and experiments that surfactants play a major role in drop formation and that Marangoni stresses acting near but not at the pinch point give rise to reduced rates of thread thinning and formation of multiple microthreads that distinguish pinch-off of surfactant-covered threads from surfactant-free ones. Thinning at finite Reynolds and Peclet numbers, Re and Pe, is shown to exhibit intermediate scaling regimes that have heretofore only been observed during pinch-off of threads undergoing creeping flow (Re=0 ) while convection of surfactant is weak compared to its diffusion (Pe<1 ).

  6. Real-time SHVC software decoding with multi-threaded parallel processing

    NASA Astrophysics Data System (ADS)

    Gudumasu, Srinivas; He, Yuwen; Ye, Yan; He, Yong; Ryu, Eun-Seok; Dong, Jie; Xiu, Xiaoyu

    2014-09-01

    This paper proposes a parallel decoding framework for scalable HEVC (SHVC). Various optimization technologies are implemented on the basis of SHVC reference software SHM-2.0 to achieve real-time decoding speed for the two layer spatial scalability configuration. SHVC decoder complexity is analyzed with profiling information. The decoding process at each layer and the up-sampling process are designed in parallel and scheduled by a high level application task manager. Within each layer, multi-threaded decoding is applied to accelerate the layer decoding speed. Entropy decoding, reconstruction, and in-loop processing are pipeline designed with multiple threads based on groups of coding tree units (CTU). A group of CTUs is treated as a processing unit in each pipeline stage to achieve a better trade-off between parallelism and synchronization. Motion compensation, inverse quantization, and inverse transform modules are further optimized with SSE4 SIMD instructions. Simulations on a desktop with an Intel i7 processor 2600 running at 3.4 GHz show that the parallel SHVC software decoder is able to decode 1080p spatial 2x at up to 60 fps (frames per second) and 1080p spatial 1.5x at up to 50 fps for those bitstreams generated with SHVC common test conditions in the JCT-VC standardization group. The decoding performance at various bitrates with different optimization technologies and different numbers of threads are compared in terms of decoding speed and resource usage, including processor and memory.

  7. Every which way--nanos gene regulation in echinoderms.

    PubMed

    Oulhen, Nathalie; Wessel, Gary M

    2014-03-01

    Nanos is an essential factor of germ line success in all animals tested. This gene encodes a Zn-finger RNA-binding protein that in complex with its partner pumilio binds to and changes the fate of several known transcripts. We summarize here the documented functions of Nanos in several key organisms, and then emphasize echinoderms as a working model for how nanos expression is regulated. Nanos presence outside of the target cells is often detrimental to the animal, and in sea urchins, nanos expression appears to be regulated at every step of transcription, and post-transcriptional activity, making this gene product exciting, every which way. Copyright © 2013 Wiley Periodicals, Inc.

  8. Frequent Statement and Dereference Elimination for Imperative and Object-Oriented Distributed Programs

    PubMed Central

    El-Zawawy, Mohamed A.

    2014-01-01

    This paper introduces new approaches for the analysis of frequent statement and dereference elimination for imperative and object-oriented distributed programs running on parallel machines equipped with hierarchical memories. The paper uses languages whose address spaces are globally partitioned. Distributed programs allow defining data layout and threads writing to and reading from other thread memories. Three type systems (for imperative distributed programs) are the tools of the proposed techniques. The first type system defines for every program point a set of calculated (ready) statements and memory accesses. The second type system uses an enriched version of types of the first type system and determines which of the ready statements and memory accesses are used later in the program. The third type system uses the information gather so far to eliminate unnecessary statement computations and memory accesses (the analysis of frequent statement and dereference elimination). Extensions to these type systems are also presented to cover object-oriented distributed programs. Two advantages of our work over related work are the following. The hierarchical style of concurrent parallel computers is similar to the memory model used in this paper. In our approach, each analysis result is assigned a type derivation (serves as a correctness proof). PMID:24892098

  9. Looking north at the threading machine of the no. 1 ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    Looking north at the threading machine of the no. 1 seamless line in bay 11 of the main pipe mill building - U.S. Steel National Tube Works, Main Pipe Mill Building, Along Monongahela River, McKeesport, Allegheny County, PA

  10. Analysis of a thread used in the Kshara Sutra treatment in the Ayurvedic medicinal system.

    PubMed

    Gewali, M B; Pilapitiya, U; Hattori, M; Namba, T

    1990-05-01

    From a Kshara Sutra thread which is used in the therapy of fistula in the Ayurvedic medicinal system, euphol, 3,12-di-O-acetyl-8-O-benzoylingol, 3,12-di-O-acetyl-8-O-tigloylingol, curcumin, p-coumaroylferuloylmethane and di-p-courmaroylmethane were isolated and characterized. In addition, GLC and GC/MS confirmed the presence of euphol, antiquol B, cycloeucalenol and 24-methylene cycloartanol in the thread.

  11. Thread-Lift Sutures: Still in the Lift? A Systematic Review of the Literature.

    PubMed

    Gülbitti, Haydar Aslan; Colebunders, Britt; Pirayesh, Ali; Bertossi, Dario; van der Lei, Berend

    2018-03-01

    In 2006, Villa et al. published a review article concerning the use of thread-lift sutures and concluded that the technique was still in its infancy but had great potential to become a useful and effective procedure for nonsurgical lifting of sagged facial tissues. As 11 years have passed, the authors now performed again a systematic review to determine the real scientific current state of the art on the use of thread-lift sutures. A systematic review was performed according to Preferred Reporting Items for Systematic Reviews and Meta-Analyses guidelines using the PubMed database and using the Medical Subject Headings search term "Rhytidoplasty." "Rhytidoplasty" and the following entry terms were included by this Medical Subject Headings term: "facelift," "facelifts," "face Lift," "Face Lifts," "Lift," "Face," "Lifts," "Platysmotomy," "Platysmotomies," "Rhytidectomy," "Rhytidectomies," "Platysmaplasty," "and "Platysmaplasties." The Medical Subject Headings term "Rhytidoplasty" was combined with the following search terms: "Barbed suture," "Thread lift," "APTOS," "Suture suspension," "Percutaneous," and "Silhouette suture." RefWorks was used to filter duplicates. Three of the authors (H.A.G., B.C., and B.L.) performed the search independently. The initial search with all search terms resulted in 188 articles. After filtering the duplicates and the articles about open procedures, a total of 41 articles remained. Of these, the review articles, case reports, and letters to the editor were subsequently excluded, as were reports dealing with nonbarbed sutures, such as Vicryl and Prolene with Gore-Tex. This resulted in a total of 12 articles, seven additional articles since the five articles reviewed by Villa et al. The authors' review demonstrated that, within the past decade, little or no substantial evidence has been added to the peer-reviewed literature to support or sustain the promising statement about thread-lift sutures as made by Villa et al. in 2006 in terms of

  12. HMMerThread: detecting remote, functional conserved domains in entire genomes by combining relaxed sequence-database searches with fold recognition.

    PubMed

    Bradshaw, Charles Richard; Surendranath, Vineeth; Henschel, Robert; Mueller, Matthias Stefan; Habermann, Bianca Hermine

    2011-03-10

    Conserved domains in proteins are one of the major sources of functional information for experimental design and genome-level annotation. Though search tools for conserved domain databases such as Hidden Markov Models (HMMs) are sensitive in detecting conserved domains in proteins when they share sufficient sequence similarity, they tend to miss more divergent family members, as they lack a reliable statistical framework for the detection of low sequence similarity. We have developed a greatly improved HMMerThread algorithm that can detect remotely conserved domains in highly divergent sequences. HMMerThread combines relaxed conserved domain searches with fold recognition to eliminate false positive, sequence-based identifications. With an accuracy of 90%, our software is able to automatically predict highly divergent members of conserved domain families with an associated 3-dimensional structure. We give additional confidence to our predictions by validation across species. We have run HMMerThread searches on eight proteomes including human and present a rich resource of remotely conserved domains, which adds significantly to the functional annotation of entire proteomes. We find ∼4500 cross-species validated, remotely conserved domain predictions in the human proteome alone. As an example, we find a DNA-binding domain in the C-terminal part of the A-kinase anchor protein 10 (AKAP10), a PKA adaptor that has been implicated in cardiac arrhythmias and premature cardiac death, which upon stress likely translocates from mitochondria to the nucleus/nucleolus. Based on our prediction, we propose that with this HLH-domain, AKAP10 is involved in the transcriptional control of stress response. Further remotely conserved domains we discuss are examples from areas such as sporulation, chromosome segregation and signalling during immune response. The HMMerThread algorithm is able to automatically detect the presence of remotely conserved domains in proteins based on weak

  13. HMMerThread: Detecting Remote, Functional Conserved Domains in Entire Genomes by Combining Relaxed Sequence-Database Searches with Fold Recognition

    PubMed Central

    Bradshaw, Charles Richard; Surendranath, Vineeth; Henschel, Robert; Mueller, Matthias Stefan; Habermann, Bianca Hermine

    2011-01-01

    Conserved domains in proteins are one of the major sources of functional information for experimental design and genome-level annotation. Though search tools for conserved domain databases such as Hidden Markov Models (HMMs) are sensitive in detecting conserved domains in proteins when they share sufficient sequence similarity, they tend to miss more divergent family members, as they lack a reliable statistical framework for the detection of low sequence similarity. We have developed a greatly improved HMMerThread algorithm that can detect remotely conserved domains in highly divergent sequences. HMMerThread combines relaxed conserved domain searches with fold recognition to eliminate false positive, sequence-based identifications. With an accuracy of 90%, our software is able to automatically predict highly divergent members of conserved domain families with an associated 3-dimensional structure. We give additional confidence to our predictions by validation across species. We have run HMMerThread searches on eight proteomes including human and present a rich resource of remotely conserved domains, which adds significantly to the functional annotation of entire proteomes. We find ∼4500 cross-species validated, remotely conserved domain predictions in the human proteome alone. As an example, we find a DNA-binding domain in the C-terminal part of the A-kinase anchor protein 10 (AKAP10), a PKA adaptor that has been implicated in cardiac arrhythmias and premature cardiac death, which upon stress likely translocates from mitochondria to the nucleus/nucleolus. Based on our prediction, we propose that with this HLH-domain, AKAP10 is involved in the transcriptional control of stress response. Further remotely conserved domains we discuss are examples from areas such as sporulation, chromosome segregation and signalling during immune response. The HMMerThread algorithm is able to automatically detect the presence of remotely conserved domains in proteins based on weak

  14. Assessing the Effect of Dental Implants Thread Design on Distribution of Stress in Impact Loadings Using Three Dimensional Finite Element Method

    PubMed Central

    I, Zarei; S, Khajehpour; A, Sabouri; AZ, Haghnegahdar; K, Jafari

    2016-01-01

    Statement of Problem: Impacts and accidents are considered as the main fac- tors in losing the teeth, so the analysis and design of the implants that they can be more resistant against impacts is very important. One of the important nu- merical methods having widespread application in various fields of engineering sciences is the finite element method. Among its wide applications, the study of distribution of power in complex structures can be noted. Objectives: The aim of this research was to assess the geometric effect and the type of implant thread on its performance; we also made an attempt to determine the created stress using finite element method. Materials and Methods: In this study, the three dimensional model of bone by using Cone Beam Computerized Tomography (CBCT) of the patient has been provided. The implants in this study are designed by Solid Works software. Loading is simulated in explicit dynamic, by struck of a rigid body with the speed of 1 mm/s to implant vertically and horizontally; and the maximum level of induced stress for the cortical and trabecular bone in the ANSYS Workbench software was calculated. Results: By considering the results of this study, it was identified that, among the designed samples, the maximum imposed stress in the cortical bone layer occurred in the first group (straight threads) and the maximum stress value in the trabecular bone layer and implant occurred in the second group (tapered threads). Conclusions: Due to the limitations of this study, the implants with more depth thread, because of the increased contact surface of the implant with the bone, caused more stability; also, the implant with smaller thread and shorter pitch length caused more stress to the bone. PMID:28959748

  15. Effects of Pre-Structuring Discussion Threads on Group Interaction and Group Performance in Computer-Supported Collaborative Argumentation

    ERIC Educational Resources Information Center

    Brooks, C. Darren; Jeong, Allan

    2006-01-01

    This study examined the effects of pre-structuring discussion threads on group performance in computer-supported collaborative argumentation where students labeled their messages as arguments, challenges, supporting evidence, and explanations on a threaded discussion board. In the pre-structured group students were required to post supporting and…

  16. Representative volume element model of lithium-ion battery electrodes based on X-ray nano-tomography

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

    Kashkooli, Ali Ghorbani; Amirfazli, Amir; Farhad, Siamak

    For this, a new model that keeps all major advantages of the single-particle model of lithium-ion batteries (LIBs) and includes three-dimensional structure of the electrode was developed. Unlike the single spherical particle, this model considers a small volume element of an electrode, called the Representative Volume Element (RVE), which represent the real electrode structure. The advantages of using RVE as the model geometry was demonstrated for a typical LIB electrode consisting of nano-particle LiFePO 4 (LFP) active material. The three-dimensional morphology of the LFP electrode was reconstructed using a synchrotron X-ray nano-computed tomography at the Advanced Photon Source of themore » Argonne National. A 27 μm 3 cube from reconstructed structure was chosen as the RVE for the simulation purposes. The model was employed to predict the voltage curve in a half-cell during galvanostatic operations and validated with experimental data. The simulation results showed that the distribution of lithium inside the electrode microstructure is very different from the results obtained based on the single-particle model. The range of lithium concentration is found to be much greater, successfully illustrates the effect of microstructure heterogeneity.« less

  17. Representative volume element model of lithium-ion battery electrodes based on X-ray nano-tomography

    DOE PAGES

    Kashkooli, Ali Ghorbani; Amirfazli, Amir; Farhad, Siamak; ...

    2017-01-28

    For this, a new model that keeps all major advantages of the single-particle model of lithium-ion batteries (LIBs) and includes three-dimensional structure of the electrode was developed. Unlike the single spherical particle, this model considers a small volume element of an electrode, called the Representative Volume Element (RVE), which represent the real electrode structure. The advantages of using RVE as the model geometry was demonstrated for a typical LIB electrode consisting of nano-particle LiFePO 4 (LFP) active material. The three-dimensional morphology of the LFP electrode was reconstructed using a synchrotron X-ray nano-computed tomography at the Advanced Photon Source of themore » Argonne National. A 27 μm 3 cube from reconstructed structure was chosen as the RVE for the simulation purposes. The model was employed to predict the voltage curve in a half-cell during galvanostatic operations and validated with experimental data. The simulation results showed that the distribution of lithium inside the electrode microstructure is very different from the results obtained based on the single-particle model. The range of lithium concentration is found to be much greater, successfully illustrates the effect of microstructure heterogeneity.« less

  18. THREaD Mapper Studio: a novel, visual web server for the estimation of genetic linkage maps

    PubMed Central

    Cheema, Jitender; Ellis, T. H. Noel; Dicks, Jo

    2010-01-01

    The estimation of genetic linkage maps is a key component in plant and animal research, providing both an indication of the genetic structure of an organism and a mechanism for identifying candidate genes associated with traits of interest. Because of this importance, several computational solutions to genetic map estimation exist, mostly implemented as stand-alone software packages. However, the estimation process is often largely hidden from the user. Consequently, problems such as a program crashing may occur that leave a user baffled. THREaD Mapper Studio (http://cbr.jic.ac.uk/threadmapper) is a new web site that implements a novel, visual and interactive method for the estimation of genetic linkage maps from DNA markers. The rationale behind the web site is to make the estimation process as transparent and robust as possible, while also allowing users to use their expert knowledge during analysis. Indeed, the 3D visual nature of the tool allows users to spot features in a data set, such as outlying markers and potential structural rearrangements that could cause problems with the estimation procedure and to account for them in their analysis. Furthermore, THREaD Mapper Studio facilitates the visual comparison of genetic map solutions from third party software, aiding users in developing robust solutions for their data sets. PMID:20494977

  19. Survival of biofilm-forming Salmonella on stainless steel bolt threads under dry conditions.

    PubMed

    Morita, Yukio; Komoda, Emiko; Ono, Kazuaki; Kumagai, Susumu

    2011-01-01

    We examined the survival of two biofilm-forming strains and two biofilm-deficient strains of non typhoid Salmonella (NTS) on stainless steel bolt threads under dry conditions. Five µL of tryptone soya broth or egg yolke mulsion containing NTS strains at a concentration of 9 log cfu/mL was dropped onto the thread surfaces of hexagonal bolts. After inoculation, the bolts were screwed into the nuts, and then removed (Separate type) or not removed (Unit type). The two types of samples were kept in a dry environment (20.0-25.0°C, 2-15% humidity) and bacteria on the surfaces were periodically counted. Biofilm-forming strains were recovered from all samples after 336 days of incubation, but biofilm-deficient strains were isolated from only two of 8 samples after 336 days. This finding demonstrates that NTS can survive for approximately one year on bolt threads, providing direct evidence of the potential risk of constructions having crevices or uneven surfaces as possible contamination sources. The risk of cross-contamination may be higher for biofilm-forming strains than for biofilm-deficient strains.

  20. Anti-parallel EUV Flows Observed along Active Region Filament Threads with Hi-C

    NASA Astrophysics Data System (ADS)

    Alexander, Caroline E.; Walsh, Robert W.; Régnier, Stéphane; Cirtain, Jonathan; Winebarger, Amy R.; Golub, Leon; Kobayashi, Ken; Platt, Simon; Mitchell, Nick; Korreck, Kelly; DePontieu, Bart; DeForest, Craig; Weber, Mark; Title, Alan; Kuzin, Sergey

    2013-09-01

    Plasma flows within prominences/filaments have been observed for many years and hold valuable clues concerning the mass and energy balance within these structures. Previous observations of these flows primarily come from Hα and cool extreme-ultraviolet (EUV) lines (e.g., 304 Å) where estimates of the size of the prominence threads has been limited by the resolution of the available instrumentation. Evidence of "counter-steaming" flows has previously been inferred from these cool plasma observations, but now, for the first time, these flows have been directly imaged along fundamental filament threads within the million degree corona (at 193 Å). In this work, we present observations of an AR filament observed with the High-resolution Coronal Imager (Hi-C) that exhibits anti-parallel flows along adjacent filament threads. Complementary data from the Solar Dynamics Observatory (SDO)/Atmospheric Imaging Assembly (AIA) and Helioseismic and Magnetic Imager are presented. The ultra-high spatial and temporal resolution of Hi-C allow the anti-parallel flow velocities to be measured (70-80 km s-1) and gives an indication of the resolvable thickness of the individual strands (0.''8 ± 0.''1). The temperature of the plasma flows was estimated to be log T (K) = 5.45 ± 0.10 using Emission Measure loci analysis. We find that SDO/AIA cannot clearly observe these anti-parallel flows or measure their velocity or thread width due to its larger pixel size. We suggest that anti-parallel/counter-streaming flows are likely commonplace within all filaments and are currently not observed in EUV due to current instrument spatial resolution.

  1. Lag threads organize the brain’s intrinsic activity

    PubMed Central

    Mitra, Anish; Snyder, Abraham Z.; Blazey, Tyler; Raichle, Marcus E.

    2015-01-01

    It has been widely reported that intrinsic brain activity, in a variety of animals including humans, is spatiotemporally structured. Specifically, propagated slow activity has been repeatedly demonstrated in animals. In human resting-state fMRI, spontaneous activity has been understood predominantly in terms of zero-lag temporal synchrony within widely distributed functional systems (resting-state networks). Here, we use resting-state fMRI from 1,376 normal, young adults to demonstrate that multiple, highly reproducible, temporal sequences of propagated activity, which we term “lag threads,” are present in the brain. Moreover, this propagated activity is largely unidirectional within conventionally understood resting-state networks. Modeling experiments show that resting-state networks naturally emerge as a consequence of shared patterns of propagation. An implication of these results is that common physiologic mechanisms may underlie spontaneous activity as imaged with fMRI in humans and slowly propagated activity as studied in animals. PMID:25825720

  2. Human stem cell decorated nanocellulose threads for biomedical applications.

    PubMed

    Mertaniemi, Henrikki; Escobedo-Lucea, Carmen; Sanz-Garcia, Andres; Gandía, Carolina; Mäkitie, Antti; Partanen, Jouni; Ikkala, Olli; Yliperttula, Marjo

    2016-03-01

    Upon surgery, local inflammatory reactions and postoperative infections cause complications, morbidity, and mortality. Delivery of human adipose mesenchymal stem cells (hASC) into the wounds is an efficient and safe means to reduce inflammation and promote wound healing. However, administration of stem cells by injection often results in low cell retention, and the cells deposit in other organs, reducing the efficiency of the therapy. Thus, it is essential to improve cell delivery to the target area using carriers to which the cells have a high affinity. Moreover, the application of hASC in surgery has typically relied on animal-origin components, which may induce immune reactions or even transmit infections due to pathogens. To solve these issues, we first show that native cellulose nanofibers (nanofibrillated cellulose, NFC) extracted from plants allow preparation of glutaraldehyde cross-linked threads (NFC-X) with high mechanical strength even under the wet cell culture or surgery conditions, characteristically challenging for cellulosic materials. Secondly, using a xenogeneic free protocol for isolation and maintenance of hASC, we demonstrate that cells adhere, migrate and proliferate on the NFC-X, even without surface modifiers. Cross-linked threads were not found to induce toxicity on the cells and, importantly, hASC attached on NFC-X maintained their undifferentiated state and preserved their bioactivity. After intradermal suturing with the hASC decorated NFC-X threads in an ex vivo experiment, cells remained attached to the multifilament sutures without displaying morphological changes or reducing their metabolic activity. Finally, as NFC-X optionally allows facile surface tailoring if needed, we anticipate that stem-cell-decorated NFC-X opens a versatile generic platform as a surgical bionanomaterial for fighting postoperative inflammation and chronic wound healing problems. Copyright © 2015 Elsevier Ltd. All rights reserved.

  3. Clinical leadership as an integral curriculum thread in pre-registration nursing programmes.

    PubMed

    Brown, Angela; Dewing, Jan; Crookes, Patrick

    2016-03-01

    In recent years there has been a growth in leadership development frameworks in health for the existing workforce. There has also been a related abundance of leadership programmes developed specifically for qualified nurses. There is a groundswell of opinion that clinical leadership preparation needs to extend to preparatory programmes leading to registration as a nurse. To this end a doctoral research study has been completed that focused specifically on the identification and verification of the antecedents of clinical leadership (leadership and management) so they can shape the curriculum content and the best way to deliver the curriculum content as a curriculum thread. To conceptualise how the curriculum content, identified and verified empirically, can be structured within a curriculum thread and to contribute to the discussion on effective pedagogical approaches and educational strategies for learning and teaching of clinical leadership. A multi-method design was utilised in the research in Australia. Drawing on core principles in critical social theory, an integral curriculum thread is proposed for pre-registration nursing programmes that identifies the antecedents of clinical leadership; the core concepts, together with the continuum of enlightenment, empowerment, and emancipation. The curriculum content, the effective pedagogical approaches and the educational strategies are supported theoretically and we believe this offers a design template for action and a way of thinking about this important aspect of preparatory nursing education. Moreover, we hope to have created a process contributing to a heighten sense of awareness in the nursing student (and other key stakeholders) of the what, how and when of clinical leadership for a novice registered nurse. The next stage is to further test through research the proposed integral curriculum thread. Copyright © 2015 Elsevier Ltd. All rights reserved.

  4. Real and Non-Real Time Interaction: Unraveling Multiple Threads of Discourse.

    ERIC Educational Resources Information Center

    Black, Steven D.; And Others

    1983-01-01

    Compares discourse in several different media and finds that strict sequentiality is not a universal feature of discourse. Concludes that discourse in nonreal time media, such as electronic message systems, has multiple threads. (FL)

  5. Modeling of a piezoelectric/piezomagnetic nano energy harvester based on two dimensional theory

    NASA Astrophysics Data System (ADS)

    Yan, Zhi

    2018-01-01

    This work presents a two dimensional theory for a piezoelectric/piezomagnetic bilayer nanoplate in coupled extensional and flexural vibrations with both flexoelectric and surface effects. The magneto-electro-elastic (MEE) coupling equations are derived from three-dimensional equations and Kirchhoff plate theory. Based on the developed theory, a piezoelectric/piezomagnetic nano energy harvester is proposed, which can generate electricity under time-harmonic applied magnetic field. The approximate solutions for the mechanical responses and voltage of the energy harvester are obtained using the weighted residual method. Results show that the properties of the proposed energy harvester are size-dependent due to the flexoelectric and surface effects, and such effects are more pronounced when the bilayer thickness is reduced to dozens of nanometers. It is also found that the magnetoelectric coupling coefficient and power density of the energy harvester are sensitive to the load resistance, the thickness fraction of the piezoelectric or the piezomagnetic layer and damping ratios. Moreover, results indicate that the flexoelectric effect could be made use to build a dielectric/piezomagnetic nano energy harvester. This work provides modeling techniques and numerical methods for investigating the size-dependent properties of MEE nanoplate-based energy harvester and could be helpful for designing nano energy harvesters using the principle of flexoelectricity.

  6. PREFACE: International Conference on Theoretical Physics: Dubna-Nano 2012

    NASA Astrophysics Data System (ADS)

    Osipov, Vladimir; Nesterenko, Valentin; Shukrinov, Yury M.

    2012-11-01

    The International Conference 'Dubna-Nano2012' was held on 9-14 July 2012 at the Bogoliubov Laboratory of Theoretical Physics, Joint Institute for Nuclear Research, Dubna, Moscow region, Russia. The conference was the third one in the series started in 2008. 'Dubna-Nano2012' provided an opportunity for presentations and discussions about theoretical and experimental advances in the rapidly growing area of nanophysics. The multidisciplinary character of the conference allowed an effective exchange of ideas between different areas of nanophysics. The following topics were covered: graphene and other carbon nanostructures, topological insulators, quantum transport, quantum dots, atomic clusters, Josephson junctions and applications of nanosystems. About 100 scientists from 22 countries participated in the conference. The program included 38 oral talks and 39 posters. This volume contains 35 contributions. We would like to express our gratitude to all participants for their presentations and discussions. We are deeply indebted to the members of the International Advisory Committee Professors K S Novoselov, T Ando, T Chakraborty, J Fabian, V M Galitski, F Guinea, M Z Hasan, P Hawrylak, K Kadowaki, R Kleiner, T Koyama, Yu I Latyshev, Yu E Lozovik, M Machida, B K Nikolic, N F Pedersen, P-G. Reinhard, J M Rost and A Ya Vul. Financial support from BLTP JINR, Russian Foundation for Basic Research, Heisenberg-Landau Program and Bogoliubov-Infeld Program was of a great importance. Further information about 'Dubna-Nano2012' is available on the homepage http://theor.jinr.ru/~nano12. Vladimir Osipov, Valentin Nesterenko and Yury Shukrinov Editors

  7. Assessing the Risk of Engineered Nanomaterials in the Environment: Development and Application of the nanoFate Model.

    PubMed

    Garner, Kendra L; Suh, Sangwon; Keller, Arturo A

    2017-05-16

    We developed a dynamic multimedia fate and transport model (nanoFate) to predict the time-dependent accumulation of metallic engineered nanomaterials (ENMs) across environmental media. nanoFate considers a wider range of processes and environmental subcompartments than most previous models and considers ENM releases to compartments (e.g., urban, agriculture) in a manner that reflects their different patterns of use and disposal. As an example, we simulated ten years of release of nano CeO 2 , CuO, TiO 2 , and ZnO in the San Francisco Bay area. Results show that even soluble metal oxide ENMs may accumulate as nanoparticles in the environment in sufficient concentrations to exceed the minimum toxic threshold in freshwater and some soils, though this is more likely with high-production ENMs such as TiO 2 and ZnO. Fluctuations in weather and release scenario may lead to circumstances where predicted ENM concentrations approach acute toxic concentrations. The fate of these ENMs is to mostly remain either aggregated or dissolved in agricultural lands receiving biosolids and in freshwater or marine sediments. Comparison to previous studies indicates the importance of some key model aspects including climatic and temporal variations, how ENMs may be released into the environment, and the effect of compartment composition on predicted concentrations.

  8. Reverse micelle-loaded lipid nano-emulsions: new technology for nano-encapsulation of hydrophilic materials.

    PubMed

    Anton, Nicolas; Mojzisova, Halina; Porcher, Emilien; Benoit, Jean-Pierre; Saulnier, Patrick

    2010-10-15

    This study presents novel, recently patented technology for encapsulating hydrophilic species in lipid nano-emulsions. The method is based on the phase-inversion temperature method (the so-called PIT method), which follows a low-energy and solvent-free process. The nano-emulsions formed are stable for months, and exhibit droplet sizes ranging from 10 to 200 nm. Hydrophilic model molecules of fluorescein sodium salt are encapsulated in the oily core of these nano-emulsion droplets through their solubilisation in the reverse micellar system. As a result, original, multi-scaled nano-objects are generated with a 'hydrophilic molecule in a reverse-micelles-in-oil-in-water' structure. Once fluorescein has been encapsulated it remains stable, for thermodynamic reasons, and the encapsulation yields can reach 90%. The reason why such complex objects can be formed is due to the soft method used (PIT method) which allows the conservation of the structure of the reverse micelles throughout the formulation process, up to their entrapment in the nano-emulsion droplets. In this study, we focus the investigation on the process itself, revealing its potential and limits. Since the formulation of nanocarriers for the encapsulation of hydrophilic substances still remains a challenge, this study may constitute a significant advance in this field. Copyright 2010 Elsevier B.V. All rights reserved.

  9. From Primary to Secondary Science: Keeping the Threads Intact

    ERIC Educational Resources Information Center

    Mould, Kirsten

    2015-01-01

    There are many transition points in the school life of a child, but the move from primary to secondary school is a particularly significant one. How can both the social and academic threads remain intact? In this article, Kristen Mould discusses the main issues relating to transition from primary to secondary science. She cites the primary factors…

  10. Cache Locality Optimization for Recursive Programs

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

    Lifflander, Jonathan; Krishnamoorthy, Sriram

    We present an approach to optimize the cache locality for recursive programs by dynamically splicing--recursively interleaving--the execution of distinct function invocations. By utilizing data effect annotations, we identify concurrency and data reuse opportunities across function invocations and interleave them to reduce reuse distance. We present algorithms that efficiently track effects in recursive programs, detect interference and dependencies, and interleave execution of function invocations using user-level (non-kernel) lightweight threads. To enable multi-core execution, a program is parallelized using a nested fork/join programming model. Our cache optimization strategy is designed to work in the context of a random work stealing scheduler. Wemore » present an implementation using the MIT Cilk framework that demonstrates significant improvements in sequential and parallel performance, competitive with a state-of-the-art compile-time optimizer for loop programs and a domain- specific optimizer for stencil programs.« less

  11. Investigation of chaos and its control in a Duffing-type nano beam model

    NASA Astrophysics Data System (ADS)

    Jha, Abhishek Kumar; Dasgupta, Sovan Sundar

    2018-04-01

    The prediction of chaos of a nano beam with harmonic excitation is investigated. Using the Galerkin method the nonlinear lumped model of a clamped-clamped nano beam with nonlinear cubic stiffness is obtained. This is a Duffing system with hardening type of nonlinearity. Based on the energy function and the phase portrait of the system, the resonator dynamics is categorized into four situations in which Using Malnikov function, an analytical criterion for homoclinic intersection in the form of inequality is written in terms of the system parameters. A numerical study including largest lyapunov exponent, Poincare diagram and phase portrait confirm the analytical prediction of chaos and effect of forcing amplitude. Subsequently, a linear velocity feedback controller is introduced into the system to successfully control the chaotic motion of the system at a faster rate at larger value of gain parameter.

  12. Initial Kernel Timing Using a Simple PIM Performance Model

    NASA Technical Reports Server (NTRS)

    Katz, Daniel S.; Block, Gary L.; Springer, Paul L.; Sterling, Thomas; Brockman, Jay B.; Callahan, David

    2005-01-01

    This presentation will describe some initial results of paper-and-pencil studies of 4 or 5 application kernels applied to a processor-in-memory (PIM) system roughly similar to the Cascade Lightweight Processor (LWP). The application kernels are: * Linked list traversal * Sun of leaf nodes on a tree * Bitonic sort * Vector sum * Gaussian elimination The intent of this work is to guide and validate work on the Cascade project in the areas of compilers, simulators, and languages. We will first discuss the generic PIM structure. Then, we will explain the concepts needed to program a parallel PIM system (locality, threads, parcels). Next, we will present a simple PIM performance model that will be used in the remainder of the presentation. For each kernel, we will then present a set of codes, including codes for a single PIM node, and codes for multiple PIM nodes that move data to threads and move threads to data. These codes are written at a fairly low level, between assembly and C, but much closer to C than to assembly. For each code, we will present some hand-drafted timing forecasts, based on the simple PIM performance model. Finally, we will conclude by discussing what we have learned from this work, including what programming styles seem to work best, from the point-of-view of both expressiveness and performance.

  13. Experimental studies of Micro- and Nano-grained UO 2: Grain Growth Behavior, Sufrace Morphology, and Fracture Toughness

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

    Miao, Yinbin; Mo, Kun; Jamison, Laura M.

    This activity is supported by the US Nuclear Energy Advanced Modeling and Simulation (NEAMS) Fuels Product Line (FPL) and aims at providing experimental data for the validation of the mesoscale simulation code MARMOT. MARMOT is a mesoscale multiphysics code that predicts the coevolution of microstructure and properties within reactor fuel during its lifetime in the reactor. It is an important component of the Moose-Bison-Marmot (MBM) code suite that has been developed by Idaho National Laboratory (INL) to enable next generation fuel performance modeling capability as part of the NEAMS Program FPL. In order to ensure the accuracy of the microstructure-basedmore » materials models being developed within the MARMOT code, extensive validation efforts must be carried out. In this report, we summarize the experimental efforts in FY16 including the following important experiments: (1) in-situ grain growth measurement of nano-grained UO 2; (2) investigation of surface morphology in micrograined UO 2; (3) Nano-indentation experiments on nano- and micro-grained UO 2. The highlight of this year is: we have successfully demonstrated our capability to in-situ measure grain size development while maintaining the stoichiometry of nano-grained UO 2 materials; the experiment is, for the first time, using synchrotron X-ray diffraction to in-situ measure grain growth behavior of UO 2.« less

  14. Photo-nano immunotherapy for metastatic cancers (Conference Presentation)

    NASA Astrophysics Data System (ADS)

    Zhou, Feifan

    2016-03-01

    We constructed a multifunction nano system SWNT-GC and investigated the synergize photothermal and immunological effects. Here, we improve the SWNT-GC nano system and design a new synergistic nano-particle, both have the photothermal effects and immunological effects. We investigate the therapeutic effects and detect the immune response with metastatic mouse tumor models. We also study the therapeutic mechanism after treatment in vitro and in vivo. With the enhancement of nano-materials on photothermal effects, laser treatment could destroy primary tumor and protect normal tissue with low dose laser irradiation. With the immunological effects of nano-materials, the treatment could trigger specific antitumor immune response, to eliminate the metastasis tumor. It is providing a promising treatment modality for the metastatic cancers.

  15. The Diversity of Nanos Expression in Echinoderm Embryos Supports Different Mechanisms in Germ Cell Specification

    PubMed Central

    Fresques, Tara; Swartz, S. Zachary; Juliano, Celina; Morino, Yoshiaki; Kikuchi, Mani; Akasaka, Koji; Wada, Hiroshi; Yajima, Mamiko; Wessel, Gary M.

    2016-01-01

    Specification of the germ cell lineage is required for sexual reproduction in all animals. However, the timing and mechanisms of germ cell specification is remarkably diverse in animal development. Echinoderms, such as sea urchins and sea stars, are excellent model systems to study the molecular and cellular mechanisms that contribute to germ cell specification. In several echinoderm embryos tested, the germ cell factor Vasa accumulates broadly during early development and is restricted after gastrulation to cells that contribute to the germ cell lineage. In the sea urchin, however, the germ cell factor Vasa is restricted to a specific lineage by the 32-cell stage. We therefore hypothesized that the germ cell specification program in the sea urchin/Euechinoid lineage has evolved to an earlier developmental time point. To test this hypothesis we determined the expression pattern of a second germ cell factor, Nanos, in four out of five extant echinoderm clades. Here we find that Nanos mRNA does not accumulate until the blastula stage or later during the development of all other echinoderm embryos except those that belong to the Echinoid lineage. Instead, Nanos is expressed in a restricted domain at the 32–128 cell stage in Echinoid embryos. Our results support the model that the germ cell specification program underwent a heterochronic shift in the Echinoid lineage. A comparison of Echinoid and non-Echinoid germ cell specification mechanisms will contribute to our understanding of how these mechanisms have changed during animal evolution. PMID:27402572

  16. Succinoglycan Is Required for Initiation and Elongation of Infection Threads during Nodulation of Alfalfa by Rhizobium meliloti

    PubMed Central

    Cheng, Hai-Ping; Walker, Graham C.

    1998-01-01

    Rhizobium meliloti Rm1021 must be able to synthesize succinoglycan in order to invade successfully the nodules which it elicits on alfalfa and to establish an effective nitrogen-fixing symbiosis. Using R. meliloti cells that express green fluorescent protein (GFP), we have examined the nature of the symbiotic deficiency of exo mutants that are defective or altered in succinoglycan production. Our observations indicate that an exoY mutant, which does not produce succinoglycan, is symbiotically defective because it cannot initiate the formation of infection threads. An exoZ mutant, which produces succinoglycan without the acetyl modification, forms nitrogen-fixing nodules on plants, but it exhibits a reduced efficiency in the initiation and elongation of infection threads. An exoH mutant, which produces symbiotically nonfunctional high-molecular-weight succinoglycan that lacks the succinyl modification, cannot form extended infection threads. Infection threads initiate at a reduced rate and then abort before they reach the base of the root hairs. Overproduction of succinoglycan by the exoS96::Tn5 mutant does not reduce the efficiency of infection thread initiation and elongation, but it does significantly reduce the ability of this mutant to colonize the curled root hairs, which is the first step of the invasion process. The exoR95::Tn5 mutant, which overproduces succinoglycan to an even greater extent than the exoS96::Tn5 mutant, has completely lost its ability to colonize the curled root hairs. These new observations lead us to propose that succinoglycan is required for both the initiation and elongation of infection threads during nodule invasion and that excess production of succinoglycan interferes with the ability of the rhizobia to colonize curled root hairs. PMID:9748453

  17. Every which way – nanos gene regulation in echinoderms

    PubMed Central

    Oulhen, Nathalie; Wessel, Gary M.

    2014-01-01

    Nanos is an essential factor of germ line success in all animals tested. This gene encodes a Zn-finger RNA-binding protein that in complex with its partner pumilio, binds to and changes the fate of several known transcripts. We summarize here the documented functions of nanos in several key organisms, and then emphasize echinoderms as a working model for how nanos expression is regulated. Nanos presence outside of the target cells is often detrimental to the animal, and in sea urchins, nanos expression appears to be regulated at every step of transcription, and post-transcriptional activity, making this gene product exciting, every which way. PMID:24376110

  18. Theoretical prediction of pullout strengths for dental and orthopaedic screws with conical profile and buttress threads.

    PubMed

    Shih, Kao-Shang; Hou, Sheng-Mou; Lin, Shang-Chih

    2017-12-01

    The pullout strength of a screw is an indicator of how secure bone fragments are being held in place. Such bone-purchasing ability is sensitive to bone quality, thread design, and the pilot hole, and is often evaluated by experimental and numerical methods. Historically, there are some mathematical formulae to simulate the screw withdrawal from the synthetic bone. There are great variations in screw specifications. However, extensive investigation of the correlation between experimental and analytical results has not been reported in literature. Referring to the literature formulae, this study aims to evaluate the differences in the calculated pullout strengths. The pullout tests of the surgical screws are measured and the sawbone is used as the testing block. The absolute errors and correlation coefficients of the experimental and analytical results are calculated as the comparison baselines of the formulae. The absolute error of the dental, traumatic, and spinal groups are 21.7%, 95.5%, and 37.0%, respectively. For the screws with a conical profile and/or tiny threads, the calculated and measured results are not well correlated. The formulae are not accurate indicators of the pullout strengths of the screws where the design parameters are slightly varied. However, the experimental and numerical results are highly correlated for the cylindrical screws. The pullout strength of a conical screw is higher than that of its counterpart, but all formulae consistently predict the opposite results. In general, the bony purchase of the buttress threads is securer than that of the symmetric thread. An absolute error of up to 51.4% indicates the theoretical results cannot predict the actual value of the pullout strength. Only thread diameter, pitch, and depth are considered in the investigated formulae. The thread profile and shape should be formulated to modify the slippage mechanism at the bone-screw interfaces and simulate the strength change in the squeezed bones

  19. Nano-Electrochemistry and Nano-Electrografting with an Original Combined AFM-SECM

    PubMed Central

    Ghorbal, Achraf; Grisotto, Federico; Charlier, Julienne; Palacin, Serge; Goyer, Cédric; Demaille, Christophe; Ben Brahim, Ammar

    2013-01-01

    This study demonstrates the advantages of the combination between atomic force microscopy and scanning electrochemical microscopy. The combined technique can perform nano-electrochemical measurements onto agarose surface and nano-electrografting of non-conducting polymers onto conducting surfaces. This work was achieved by manufacturing an original Atomic Force Microscopy-Scanning ElectroChemical Microscopy (AFM-SECM) electrode. The capabilities of the AFM-SECM-electrode were tested with the nano-electrografting of vinylic monomers initiated by aryl diazonium salts. Nano-electrochemical and technical processes were thoroughly described, so as to allow experiments reproducing. A plausible explanation of chemical and electrochemical mechanisms, leading to the nano-grafting process, was reported. This combined technique represents the first step towards improved nano-processes for the nano-electrografting. PMID:28348337

  20. 76 FR 68400 - Certain Steel Threaded Rod From the People's Republic of China: Final Results and Final Partial...

    Federal Register 2010, 2011, 2012, 2013, 2014

    2011-11-04

    ... DEPARTMENT OF COMMERCE International Trade Administration [A-570-932] Certain Steel Threaded Rod... the first administrative review of the antidumping duty order on certain steel threaded rod (``steel... notice. The period of review (``POR'') is October 8, 2008, through March 31, 2010. \\1\\ See Certain Steel...

  1. Stability of a dragged viscous thread: Onset of ``stitching'' in a fluid-mechanical ``sewing machine''

    NASA Astrophysics Data System (ADS)

    Ribe, Neil M.; Lister, John R.; Chiu-Webster, Sunny

    2006-12-01

    A thin thread of viscous fluid that falls on a moving belt acts like a fluid-mechanical "sewing machine," exhibiting a rich variety of "stitch" patterns including meanders, translated coiling, slanted loops, braiding, figures-of-eight, W-patterns, side kicks, and period-doubled patterns. Using a numerical linear stability analysis, we determine the critical belt speed and oscillation frequency of the first bifurcation, at which a steady dragged viscous thread becomes unstable to transverse oscillations or "meandering." The predictions of the stability analysis agree closely with the experimental measurements of Chiu-Webster and Lister [J. Fluid Mech. 569, 89 (2006)]. Moreover, the critical belt speed and onset frequency for meandering are nearly identical to the contact-point migration speed and angular frequency, respectively, of steady coiling of a viscous thread on a stationary surface, implying a remarkable degree of dynamical similarity between the two phenomena.

  2. ANTI-PARALLEL EUV FLOWS OBSERVED ALONG ACTIVE REGION FILAMENT THREADS WITH HI-C

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

    Alexander, Caroline E.; Walsh, Robert W.; Régnier, Stéphane

    Plasma flows within prominences/filaments have been observed for many years and hold valuable clues concerning the mass and energy balance within these structures. Previous observations of these flows primarily come from Hα and cool extreme-ultraviolet (EUV) lines (e.g., 304 Å) where estimates of the size of the prominence threads has been limited by the resolution of the available instrumentation. Evidence of 'counter-steaming' flows has previously been inferred from these cool plasma observations, but now, for the first time, these flows have been directly imaged along fundamental filament threads within the million degree corona (at 193 Å). In this work, wemore » present observations of an AR filament observed with the High-resolution Coronal Imager (Hi-C) that exhibits anti-parallel flows along adjacent filament threads. Complementary data from the Solar Dynamics Observatory (SDO)/Atmospheric Imaging Assembly (AIA) and Helioseismic and Magnetic Imager are presented. The ultra-high spatial and temporal resolution of Hi-C allow the anti-parallel flow velocities to be measured (70-80 km s{sup –1}) and gives an indication of the resolvable thickness of the individual strands (0.''8 ± 0.''1). The temperature of the plasma flows was estimated to be log T (K) = 5.45 ± 0.10 using Emission Measure loci analysis. We find that SDO/AIA cannot clearly observe these anti-parallel flows or measure their velocity or thread width due to its larger pixel size. We suggest that anti-parallel/counter-streaming flows are likely commonplace within all filaments and are currently not observed in EUV due to current instrument spatial resolution.« less

  3. Electrical Current Leakage and Open-Core Threading Dislocations in AlGaN-Based Deep Ultraviolet Light-Emitting Diodes.

    DOE PAGES

    Moseley, Michael William; Allerman, Andrew A.; Crawford, Mary H.; ...

    2014-08-04

    Electrical current transport through leakage paths in AlGaN-based deep ultraviolet (DUV) lightemitting diodes (LEDs) and their effect on LED performance are investigated. Open-core threading dislocations, or nanopipes, are found to conduct current through nominally insulating Al0.7Ga0.3N layers and limit the performance of DUV-LEDs. A defect-sensitive phosphoric acid etch reveals these opencore threading dislocations in the form of large, micron-scale hexagonal etch pits visible with optical microscopy, while closed-core screw-, edge-, and mixed-type threading dislocations are represented by smaller and more numerous nanometer-scale pits visible by atomic-force microscopy. The electrical and optical performances of DUV-LEDs fabricated on similar Si-doped Al0.7Ga0.3N templatesmore » are found to have a strong correlation to the density of these nanopipes, despite their small fraction (<0.1% in this study) of the total density of threading dislocations.« less

  4. Electrospray neutralization process and apparatus for generation of nano-aerosol and nano-structured materials

    DOEpatents

    Bailey, Charles L.; Morozov, Victor; Vsevolodov, Nikolai N.

    2010-08-17

    The claimed invention describes methods and apparatuses for manufacturing nano-aerosols and nano-structured materials based on the neutralization of charged electrosprayed products with oppositely charged electrosprayed products. Electrosprayed products include molecular ions, nano-clusters and nano-fibers. Nano-aerosols can be generated when neutralization occurs in the gas phase. Neutralization of electrospan nano-fibers with molecular ions and charged nano-clusters may result in the formation of fibrous aerosols or free nano-mats. Nano-mats can also be produced on a suitable substrate, forming efficient nano-filters.

  5. Personality Types and Learners' Interaction in Web-Based Threaded Discussion

    ERIC Educational Resources Information Center

    Lee, JeongMin; Lee, Youngmin

    2006-01-01

    This study examined the effects of group composition based on the learners' personality types as measured by the Myers-Briggs type indicator as they interacted in threaded discussions. Three groups comprised introverts, extroverts, and mixed introvert-extrovert classifications. Ninety-six participants were divided into 24 groups of 4 participants…

  6. Nano(Q)SAR: Challenges, pitfalls and perspectives.

    PubMed

    Tantra, Ratna; Oksel, Ceyda; Puzyn, Tomasz; Wang, Jian; Robinson, Kenneth N; Wang, Xue Z; Ma, Cai Y; Wilkins, Terry

    2015-01-01

    Regulation for nanomaterials is urgently needed, and the drive to adopt an intelligent testing strategy is evident. Such a strategy will not only provide economic benefits but will also reduce moral and ethical concerns arising from animal testing. For regulatory purposes, such an approach is promoted by REACH, particularly the use of quantitative structure-activity relationships [(Q)SAR] as a tool for the categorisation of compounds according to their physicochemical and toxicological properties. In addition to compounds, (Q)SAR has also been applied to nanomaterials in the form of nano(Q)SAR. Although (Q)SAR in chemicals is well established, nano(Q)SAR is still in early stages of development and its successful uptake is far from reality. This article aims to identify some of the pitfalls and challenges associated with nano-(Q)SARs in relation to the categorisation of nanomaterials. Our findings show clear gaps in the research framework that must be addressed if we are to have reliable predictions from such models. Three major barriers were identified: the need to improve quality of experimental data in which the models are developed from, the need to have practical guidelines for the development of the nano(Q)SAR models and the need to standardise and harmonise activities for the purpose of regulation. Of these three, the first, i.e. the need to improve data quality requires immediate attention, as it underpins activities associated with the latter two. It should be noted that the usefulness of data in the context of nano-(Q)SAR modelling is not only about the quantity of data but also about the quality, consistency and accessibility of those data.

  7. Sub-toxic concentrations of nano-ZnO and nano-TiO2 suppress neurite outgrowth in differentiated PC12 cells.

    PubMed

    Irie, Tomohiko; Kawakami, Tsuyoshi; Sato, Kaoru; Usami, Makoto

    2017-01-01

    Nanomaterials have been extensively used in our daily life, and may also induce health effects and toxicity. Nanomaterials can translocate from the outside to internal organs, including the brain. For example, both nano-ZnO and nano-TiO 2 translocate into the brain via the olfactory pathway in rodents, possibly leading to toxic effects on the brain. Although the effects of nano-ZnO and nano-TiO 2 on neuronal viability or neuronal excitability have been studied, no work has focused on how these nanomaterials affect neuronal differentiation and development. In this study, we investigated the effects of nano-ZnO and nano-TiO 2 on neurite outgrowth of PC12 cells, a useful model system for neuronal differentiation. Surprisingly, the number, length, and branching of differentiated PC12 neurites were significantly suppressed by the 7-day exposure to nano-ZnO (in the range of 1.0 × 10 -4 to 1.0 × 10 -1 µg/mL), at which the cell viability was not affected. The number and length were also significantly inhibited by the 7-day exposure to nano-TiO 2 (1.0 × 10 -3 to 1.0 µg/mL), which did not have cytotoxic effects. These results demonstrate that the neurite outgrowth in differentiated PC12 cells was suppressed by sub-cytotoxic concentrations of nano-ZnO or nano-TiO 2 .

  8. Preload, Coefficient of Friction, and Thread Friction in an Implant-Abutment-Screw Complex.

    PubMed

    Wentaschek, Stefan; Tomalla, Sven; Schmidtmann, Irene; Lehmann, Karl Martin

    To examine the screw preload, coefficient of friction (COF), and tightening torque needed to overcome the thread friction of an implant-abutment-screw complex. In a customized load frame, 25 new implant-abutment-screw complexes including uncoated titanium alloy screws were torqued and untorqued 10 times each, applying 25 Ncm. Mean preload values decreased significantly from 209.8 N to 129.5 N according to the number of repetitions. The overall COF increased correspondingly. There was no comparable trend for the thread friction component. These results suggest that the application of a used implant-abutment-screw complex may be unfavorable for obtaining optimal screw preload.

  9. Threading Mathematics through Symbols, Sketches, Software, Silicon, and Wood: Teachers Produce and Maintain Cohesion to Support STEM Integration

    ERIC Educational Resources Information Center

    Nathan, Mitchell J.; Wolfgram, Matthew; Srisurichan, Rachaya; Walkington, Candace; Alibali, Martha W.

    2017-01-01

    This classroom-based investigation sought to document how, in real time, STEM teachers and students attempt to locate the invariant mathematical relations that are threaded through the range of activities and representations in these classes, and how highlighting this common thread influences student participation and learning. The authors…

  10. Fixed Full Arches Supported by Tapered Implants with Knife-Edge Thread Design and Nanostructured, Calcium-Incorporated Surface: A Short-Term Prospective Clinical Study

    PubMed Central

    Bechara, Soheil; Lukosiunas, Algirdas; Kubilius, Ricardas

    2017-01-01

    Purpose. To evaluate implant survival, peri-implant bone loss, and complications affecting fixed full-arch (FFA) restorations supported by implants with a knife-edge thread design and nanostructured, calcium-incorporated surface. Methods. Between January 2013 and December 2015, all patients referred for implant-supported FFA restorations were considered for enrollment in this study. All patients received implants with a knife-edge thread design and nanostructured calcium-incorporated surface (Anyridge®, Megagen, South Korea) were restored with FFA restorations and enrolled in a recall program. The final outcomes were implant survival, peri-implant bone loss, biologic/prosthetic complications, and “complication-free” survival of restorations. Results. Twenty-four patients were selected. Overall, 215 implants were inserted (130 maxilla, 85 mandible), 144 in extraction sockets and 71 in healed ridges. Thirty-six FFAs were delivered (21 maxilla, 15 mandible): 27 were immediately loaded and 9 were conventionally loaded. The follow-up ranged from 1 to 3 years. Two fixtures failed, yielding an implant survival rate of 95.9% (patient-based). A few complications were registered, for a “complication-free” survival of restorations of 88.9%. Conclusions. FFA restorations supported by implants with a knife-edge thread design and nanostructured, calcium-incorporated surface are successful in the short term, with high survival and low complication rates; long-term studies are needed to confirm these outcomes. PMID:28246595

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

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

  13. Notional Machines and Introductory Programming Education

    ERIC Educational Resources Information Center

    Sorva, Juha

    2013-01-01

    This article brings together, summarizes, and comments on several threads of research that have contributed to our understanding of the challenges that novice programmers face when learning about the runtime dynamics of programs and the role of the computer in program execution. More specifically, the review covers the literature on programming…

  14. Minimum ignition temperature of nano and micro Ti powder clouds in the presence of inert nano TiO2 powder.

    PubMed

    Yuan, Chunmiao; Amyotte, Paul R; Hossain, Md Nur; Li, Chang

    2014-06-30

    Minimum ignition temperature (MIT) of micro Ti powder increased gradually with increases in nano-sized TiO2 employed as an inertant. Solid TiO2 inertant significantly reduced ignition hazard of micro Ti powder in contact with hot surfaces. The MIT of nano Ti powder remained low (583 K), however, even with 90% TiO2. The MIT of micro Ti powder, when mixed with nano Ti powder at concentrations as low as 10%, decreased so dramatically that its application as a solid fuel may be possible. A simple MIT model was proposed for aggregate particle size estimation and better understanding of the inerting effect of nano TiO2 on MIT. Estimated particle size was 1.46-1.51 μm larger than that in the 20-L sphere due to poor dispersion in the BAM oven. Calculated MITs were lower than corresponding empirically determined values for micro Ti powder because nano-sized TiO2 coated the micro Ti powder, thereby decreasing its reaction kinetics. In the case of nano Ti powder, nano-sized TiO2 facilitated dispersion of nano Ti powder which resulted in a calculated MIT that was greater than the experimentally determined value. Copyright © 2014 Elsevier B.V. All rights reserved.

  15. Envisioning Nano Release Dynamics in a Changing World: Using Dynamic Probabilistic Modeling to Assess Future Environmental Emissions of Engineered Nanomaterials.

    PubMed

    Sun, Tian Yin; Mitrano, Denise M; Bornhöft, Nikolaus A; Scheringer, Martin; Hungerbühler, Konrad; Nowack, Bernd

    2017-03-07

    The need for an environmental risk assessment for engineered nanomaterials (ENM) necessitates the knowledge about their environmental emissions. Material flow models (MFA) have been used to provide predicted environmental emissions but most current nano-MFA models consider neither the rapid development of ENM production nor the fact that a large proportion of ENM are entering an in-use stock and are released from products over time (i.e., have a lag phase). Here we use dynamic probabilistic material flow modeling to predict scenarios of the future flows of four ENM (nano-TiO 2 , nano-ZnO, nano-Ag and CNT) to environmental compartments and to quantify their amounts in (temporary) sinks such as the in-use stock and ("final") environmental sinks such as soil and sediment. In these scenarios, we estimate likely future amounts if the use and distribution of ENM in products continues along current trends (i.e., a business-as-usual approach) and predict the effect of hypothetical trends in the market development of nanomaterials, such as the emergence of a new widely used product or the ban on certain substances, on the flows of nanomaterials to the environment in years to come. We show that depending on the scenario and the product type affected, significant changes of the flows occur over time, driven by the growth of stocks and delayed release dynamics.

  16. NanoRacks CubeSat Deployment

    NASA Image and Video Library

    2014-02-11

    ISS038-E-044887 (11 Feb. 2014) --- The Small Satellite Orbital Deployer (SSOD), in the grasp of the Kibo laboratory robotic arm, is photographed by an Expedition 38 crew member on the International Space Station as it deploys a set of NanoRacks CubeSats. The CubeSats program contains a variety of experiments such as Earth observations and advanced electronics testing.

  17. NanoRacks CubeSat Deployment

    NASA Image and Video Library

    2014-02-11

    ISS038-E-044889 (11 Feb. 2014) --- The Small Satellite Orbital Deployer (SSOD), in the grasp of the Kibo laboratory robotic arm, is photographed by an Expedition 38 crew member on the International Space Station as it deploys a set of NanoRacks CubeSats. The CubeSats program contains a variety of experiments such as Earth observations and advanced electronics testing.

  18. NanoRacks CubeSat Deployment

    NASA Image and Video Library

    2014-02-11

    ISS038-E-044890 (11 Feb. 2014) --- The Small Satellite Orbital Deployer (SSOD), in the grasp of the Kibo laboratory robotic arm, is photographed by an Expedition 38 crew member on the International Space Station as it deploys a set of NanoRacks CubeSats. The CubeSats program contains a variety of experiments such as Earth observations and advanced electronics testing.

  19. PLGA nano/micro particles encapsulated with pertussis toxoid (PTd) enhances Th1/Th17 immune response in a murine model.

    PubMed

    Li, Pan; Asokanathan, Catpagavalli; Liu, Fang; Khaing, Kyi Kyi; Kmiec, Dorota; Wei, Xiaoqing; Song, Bing; Xing, Dorothy; Kong, Deling

    2016-11-20

    Poly(lactic-co-glycolic acid) (PLGA) based nano/micro particles were investigated as a potential vaccine platform for pertussis antigen. Presentation of pertussis toxoid as nano/micro particles (NP/MP) gave similar antigen-specific IgG responses in mice compared to soluble antigen. Notably, in cell line based assays, it was found that PLGA based nano/micro particles enhanced the phagocytosis of fluorescent antigen-nano/micro particles by J774.2 murine monocyte/macrophage cells compared to soluble antigen. More importantly, when mice were immunised with the antigen-nano/micro particles they significantly increased antigen-specific Th1 cytokines INF-γ and IL-17 secretion in splenocytes after in vitro re-stimulation with heat killed Bordetalla pertussis, indicating the induction of a Th1/Th17 response. Also, presentation of pertussis antigen in a NP/MP formulation is able to provide protection against respiratory infection in a murine model. Thus, the NP/MP formulation may provide an alternative to conventional acellular vaccines to achieve a more balanced Th1/Th2 immune response. Copyright © 2016 Elsevier B.V. All rights reserved.

  20. High Affinity Macrocycle Threading by a Near-Infrared Croconaine Dye with Flanking Polymer Chains

    PubMed Central

    Liu, Wenqi; Peck, Evan M.; Smith, Bradley D.

    2016-01-01

    Croconaine dyes have narrow and intense absorption bands at ~800 nm, very weak fluorescence, and high photostabilities, which combine to make them very attractive chromophores for absorption-based imaging or laser heating technologies. The physical supramolecular properties of croconaine dyes have rarely been investigated, especially in water. This study focuses on a molecular threading process that encapsulates a croconaine dye inside a tetralactam macrocycle in organic or aqueous solvent. Macrocycle association and rate constant data are reported for a series of croconaine structures with different substituents attached to the ends of the dye. The association constants were highest in water (Ka ~109 M−1), and the threading rate constants (kon) increased in the solvent order H2O > MeOH > CHCl3. Systematic variation of croconaine substituents located just outside the croconaine/macrocycle complexation interface hardly changed Ka but had a strong influence on kon. A croconaine dye with N-propyl groups at each end of the structure exhibited a desirable mixture of macrocycle threading properties; that is, there was rapid and quantitative croconaine/macrocycle complexation at relatively high concentrations in water, and no dissociation of the pre-assembled complex when it was diluted into a solution of fetal bovine serum, even after laser induced photothermal heating of the solution. The combination of favorable near-infrared absorption properties and tunable mechanical stability makes threaded croconaine/macrocycle complexes very attractive as molecular probes or as supramolecular composites for various applications in absorption-based imaging or photothermal therapy. PMID:26807599

  1. The fall of a viscous thread onto a moving surface: a ‘fluid-mechanical sewing machine’

    NASA Astrophysics Data System (ADS)

    Chiu-Webster, S.; Lister, J. R.

    2006-12-01

    A viscous thread falling onto a steadily moving horizontal belt shows a surprisingly complex range of behaviour in experiments. Low belt speeds produce coiling, as might be expected from the behaviour of a thread falling onto a stationary surface. High belt speeds produce a steady thread, whose shape is predicted well by theory developed to describe a stretching viscous catenary with surface tension and inertia. Intermediate belt speeds show several novel modes of oscillation, which lay down a wide variety of patterns on the belt. The patterns include meanders, side kicks, slanted loops, braiding, figures-of-eight, Ws, and also period-doubled versions of figures-of-eight, meanders and coiling. The experimental boundary between steady and unsteady behaviour occurs at a slightly lower belt speed than the loss of the steady solution for a stretching catenary.

  2. Programmable Nano-Bio Interfaces for Functional Biointegrated Devices.

    PubMed

    Cai, Pingqiang; Leow, Wan Ru; Wang, Xiaoyuan; Wu, Yun-Long; Chen, Xiaodong

    2017-07-01

    A large amount of evidence has demonstrated the revolutionary role of nanosystems in the screening and shielding of biological systems. The explosive development of interfacing bioentities with programmable nanomaterials has conveyed the intriguing concept of nano-bio interfaces. Here, recent advances in functional biointegrated devices through the precise programming of nano-bio interactions are outlined, especially with regard to the rational assembly of constituent nanomaterials on multiple dimension scales (e.g., nanoparticles, nanowires, layered nanomaterials, and 3D-architectured nanomaterials), in order to leverage their respective intrinsic merits for different functions. Emerging nanotechnological strategies at nano-bio interfaces are also highlighted, such as multimodal diagnosis or "theragnostics", synergistic and sequential therapeutics delivery, and stretchable and flexible nanoelectronic devices, and their implementation into a broad range of biointegrated devices (e.g., implantable, minimally invasive, and wearable devices). When utilized as functional modules of biointegrated devices, these programmable nano-bio interfaces will open up a new chapter for precision nanomedicine. © 2017 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  3. The adsorption features between insecticidal crystal protein and nano-Mg(OH)2.

    PubMed

    Pan, Xiaohong; Xu, Zhangyan; Zheng, Yilin; Huang, Tengzhou; Li, Lan; Chen, Zhi; Rao, Wenhua; Chen, Saili; Hong, Xianxian; Guan, Xiong

    2017-12-01

    Nano-Mg(OH) 2 , with low biological toxicity, is an ideal nano-carrier for insecticidal protein to improve the bioactivity. In this work, the adsorption features of insecticidal protein by nano-Mg(OH) 2 have been studied. The adsorption capacity could reach as high as 136 mg g -1 , and the adsorption isotherm had been fitted with Langmuir and Freundlich models. Moreover, the adsorption kinetics followed a pseudo-first or -second order rate model, and the adsorption was spontaneous and an exothermic process. However, high temperatures are not suitable for adsorption, which implies that the temperature would be a critical factor during the adsorption process. In addition, FT-IR confirmed that the protein was adsorbed on the nano-Mg(OH) 2 , zeta potential analysis suggested that insecticidal protein was loaded onto the nano-Mg(OH) 2 not by electrostatic adsorption but maybe by intermolecular forces, and circular dichroism spectroscopy of Cry11Aa protein before and after loading with nano-Mg(OH) 2 was changed. The study applied the adsorption information between Cry11Aa and nano-Mg(OH) 2 , which would be useful in the practical application of nano-Mg(OH) 2 as a nano-carrier.

  4. Programs for Testing Processor-in-Memory Computing Systems

    NASA Technical Reports Server (NTRS)

    Katz, Daniel S.

    2006-01-01

    The Multithreaded Microbenchmarks for Processor-In-Memory (PIM) Compilers, Simulators, and Hardware are computer programs arranged in a series for use in testing the performances of PIM computing systems, including compilers, simulators, and hardware. The programs at the beginning of the series test basic functionality; the programs at subsequent positions in the series test increasingly complex functionality. The programs are intended to be used while designing a PIM system, and can be used to verify that compilers, simulators, and hardware work correctly. The programs can also be used to enable designers of these system components to examine tradeoffs in implementation. Finally, these programs can be run on non-PIM hardware (either single-threaded or multithreaded) using the POSIX pthreads standard to verify that the benchmarks themselves operate correctly. [POSIX (Portable Operating System Interface for UNIX) is a set of standards that define how programs and operating systems interact with each other. pthreads is a library of pre-emptive thread routines that comply with one of the POSIX standards.

  5. Thermal stability and dielectric properties of nano-SiO2-doped cellulose

    NASA Astrophysics Data System (ADS)

    Zhang, Song; Tang, Chao; Hao, Jian; Wang, Xiaobo

    2017-07-01

    We report the thermal stability and dielectric properties of nano-SiO2-doped cellulose. Molecular dynamics simulations were performed using an undoped cellulose model (C0), a nano-SiO2-doped cellulose model with untreated surface unsaturated bonds (C1), and a nano-SiO2-doped cellulose model for which surface unsaturated O atoms were treated with -H and surface unsaturated Si atoms were treated with -OH (C2). The simulation results showed that the mechanical properties of C1 and C2 were better than those of C0 and were optimal when the content of nano-SiO2 was 5%. The simulation results for C2 were more accurate than those for the other models, and thus, C2 provides theoretical support for the construction of a reasonable model of nano-SiO2 and cellulose in the future. The temperature at which the free volume fraction of C2 jumps was 50 K higher than that for C0, and the thermal stability of C2 was better than that of C0. Experimental results showed that the maximum tensile strength of the insulation paper was obtained when the content of nano-SiO2 was 5%. Moreover, at this content of nano-SiO2, the dielectric constant was lowest and closest to that of transformer insulation oil, which will improve the distribution of the electric field and thus the overall breakdown performance of oil-paper insulation systems.

  6. Correlation between the sub-structure parameters and the manufacturing technologies of metal threads in historical textiles using X-ray line profile analysis

    NASA Astrophysics Data System (ADS)

    Csiszár, Gábor; Ungár, Tamás; Járó, Márta

    2013-06-01

    Micro-structure can talk when documentation is missing. In ancient Roman or medieval periods, kings, queens, or just rich people decorated their clothes or even their horse covers richly with miniature jewels or metal threads. The origin or the fabrication techniques of these ancient threads is often unknown. Thirteen thread samples made of gold or gilt silver manufactured during the last sixteen hundred years are investigated for the micro-structure in terms of dislocation density, crystallite size, and planar defects. In a few cases, these features are compared with sub-structure of similar metallic threads prepared in modern, twentieth century workshops. The sub-structure is determined by X-ray line profile analysis, using high resolution diffractograms with negligible instrumental broadening. On the basis of the sub-structure parameters, we attempt to assess the metal-threads manufacturing procedures on samples stemming from the fourth century A.D. until now.

  7. Discriminating Intercalative Effects of Threading Intercalator Nogalamycin, from Classical Intercalator Daunomycin, Using Single Molecule Atomic Force Spectroscopy.

    PubMed

    Banerjee, T; Banerjee, S; Sett, S; Ghosh, S; Rakshit, T; Mukhopadhyay, R

    2016-01-01

    DNA threading intercalators are a unique class of intercalating agents, albeit little biophysical information is available on their intercalative actions. Herein, the intercalative effects of nogalamycin, which is a naturally-occurring DNA threading intercalator, have been investigated by high-resolution atomic force microscopy (AFM) and spectroscopy (AFS). The results have been compared with those of the well-known chemotherapeutic drug daunomycin, which is a non-threading classical intercalator bearing structural similarity to nogalamycin. A comparative AFM assessment revealed a greater increase in DNA contour length over the entire incubation period of 48 h for nogalamycin treatment, whereas the contour length increase manifested faster in case of daunomycin. The elastic response of single DNA molecules to an externally applied force was investigated by the single molecule AFS approach. Characteristic mechanical fingerprints in the overstretching behaviour clearly distinguished the nogalamycin/daunomycin-treated dsDNA from untreated dsDNA-the former appearing less elastic than the latter, and the nogalamycin-treated DNA distinguished from the daunomycin-treated DNA-the classically intercalated dsDNA appearing the least elastic. A single molecule AFS-based discrimination of threading intercalation from the classical type is being reported for the first time.

  8. Discriminating Intercalative Effects of Threading Intercalator Nogalamycin, from Classical Intercalator Daunomycin, Using Single Molecule Atomic Force Spectroscopy

    PubMed Central

    Sett, S.; Ghosh, S.; Rakshit, T.; Mukhopadhyay, R.

    2016-01-01

    DNA threading intercalators are a unique class of intercalating agents, albeit little biophysical information is available on their intercalative actions. Herein, the intercalative effects of nogalamycin, which is a naturally-occurring DNA threading intercalator, have been investigated by high-resolution atomic force microscopy (AFM) and spectroscopy (AFS). The results have been compared with those of the well-known chemotherapeutic drug daunomycin, which is a non-threading classical intercalator bearing structural similarity to nogalamycin. A comparative AFM assessment revealed a greater increase in DNA contour length over the entire incubation period of 48 h for nogalamycin treatment, whereas the contour length increase manifested faster in case of daunomycin. The elastic response of single DNA molecules to an externally applied force was investigated by the single molecule AFS approach. Characteristic mechanical fingerprints in the overstretching behaviour clearly distinguished the nogalamycin/daunomycin-treated dsDNA from untreated dsDNA—the former appearing less elastic than the latter, and the nogalamycin-treated DNA distinguished from the daunomycin-treated DNA—the classically intercalated dsDNA appearing the least elastic. A single molecule AFS-based discrimination of threading intercalation from the classical type is being reported for the first time. PMID:27183010

  9. Growth of nano-dots on the grazing incidence mirror surface under FEL irradiation: analytic approach to modeling

    NASA Astrophysics Data System (ADS)

    Kozhevnikov, I. V.; Buzmakov, A. V.; Siewert, F.; Tiedtke, K.; Störmer, M.; Samoylova, L.; Sinn, H.

    2017-05-01

    Simple analytic equation is deduced to explain new physical phenomenon detected experimentally: growth of nano-dots (40-55 nm diameter, 8-13 nm height, 9.4 dots/μm2 surface density) on the grazing incidence mirror surface under the three years irradiation by the free electron laser FLASH (5-45 nm wavelength, 3 degrees grazing incidence angle). The growth model is based on the assumption that the growth of nano-dots is caused by polymerization of incoming hydrocarbon molecules under the action of incident photons directly or photoelectrons knocked out from a mirror surface. The key feature of our approach consists in that we take into account the radiation intensity variation nearby a mirror surface in an explicit form, because the polymerization probability is proportional to it. We demonstrate that the simple analytic approach allows to explain all phenomena observed in experiment and to predict new effects. In particular, we show that the nano-dots growth depends crucially on the grazing angle of incoming beam and its intensity: growth of nano-dots is observed in the limited from above and below intervals of the grazing angle and the radiation intensity. Decrease in the grazing angle by 1 degree only (from 3 to 2 degree) may result in a strong suppression of nanodots growth and their total disappearing. Similarly, decrease in the radiation intensity by several times (replacement of free electron laser by synchrotron) results also in disappearing of nano-dots growth.

  10. Convection enhanced delivery of panobinostat (LBH589)-loaded pluronic nano-micelles prolongs survival in the F98 rat glioma model

    PubMed Central

    Singleton, WG; Collins, AM; Bienemann, AS; Killick-Cole, CL; Haynes, HR; Asby, DJ; Butts, CP; Wyatt, MJ; Barua, NU; Gill, SS

    2017-01-01

    Background The pan-histone deacetylase inhibitor panobinostat is a potential therapy for malignant glioma, but it is water insoluble and does not cross the blood–brain barrier when administered systemically. In this article, we describe the in vitro and in vivo efficacy of a novel water-soluble nano-micellar formulation of panobinostat designed for administration by convection enhanced delivery (CED). Materials and methods The in vitro efficacy of panobinostat-loaded nano-micelles against rat F98, human U87-MG and M059K glioma cells and against patient-derived glioma stem cells was measured using a cell viability assay. Nano-micelle distribution in rat brain was analyzed following acute CED using rhodamine-labeled nano-micelles, and toxicity was assayed using immunofluorescent microscopy and synaptophysin enzyme-linked immunosorbent assay. We compared the survival of the bioluminescent syngenic F98/Fischer344 rat glioblastoma model treated by acute CED of panobinostat-loaded nano-micelles with that of untreated and vehicle-only-treated controls. Results Nano-micellar panobinostat is cytotoxic to rat and human glioma cells in vitro in a dose-dependent manner following short-time exposure to drug. Fluorescent rhodamine-labelled nano-micelles distribute with a volume of infusion/volume of distribution (Vi/Vd) ratio of four and five respectively after administration by CED. Administration was not associated with any toxicity when compared to controls. CED of panobinostat-loaded nano-micelles was associated with significantly improved survival when compared to controls (n=8 per group; log-rank test, P<0.001). One hundred percent of treated animals survived the 60-day experimental period and had tumour response on post-mortem histological examination. Conclusion CED of nano-micellar panobinostat represents a potential novel therapeutic option for malignant glioma and warrants translation into the clinic. PMID:28260886

  11. Convection enhanced delivery of panobinostat (LBH589)-loaded pluronic nano-micelles prolongs survival in the F98 rat glioma model.

    PubMed

    Singleton, W G; Collins, A M; Bienemann, A S; Killick-Cole, C L; Haynes, H R; Asby, D J; Butts, C P; Wyatt, M J; Barua, N U; Gill, S S

    2017-01-01

    The pan-histone deacetylase inhibitor panobinostat is a potential therapy for malignant glioma, but it is water insoluble and does not cross the blood-brain barrier when administered systemically. In this article, we describe the in vitro and in vivo efficacy of a novel water-soluble nano-micellar formulation of panobinostat designed for administration by convection enhanced delivery (CED). The in vitro efficacy of panobinostat-loaded nano-micelles against rat F98, human U87-MG and M059K glioma cells and against patient-derived glioma stem cells was measured using a cell viability assay. Nano-micelle distribution in rat brain was analyzed following acute CED using rhodamine-labeled nano-micelles, and toxicity was assayed using immunofluorescent microscopy and synaptophysin enzyme-linked immunosorbent assay. We compared the survival of the bioluminescent syngenic F98/Fischer344 rat glioblastoma model treated by acute CED of panobinostat-loaded nano-micelles with that of untreated and vehicle-only-treated controls. Nano-micellar panobinostat is cytotoxic to rat and human glioma cells in vitro in a dose-dependent manner following short-time exposure to drug. Fluorescent rhodamine-labelled nano-micelles distribute with a volume of infusion/volume of distribution (Vi/Vd) ratio of four and five respectively after administration by CED. Administration was not associated with any toxicity when compared to controls. CED of panobinostat-loaded nano-micelles was associated with significantly improved survival when compared to controls (n=8 per group; log-rank test, P <0.001). One hundred percent of treated animals survived the 60-day experimental period and had tumour response on post-mortem histological examination. CED of nano-micellar panobinostat represents a potential novel therapeutic option for malignant glioma and warrants translation into the clinic.

  12. Nano-structured surface plasmon resonance sensor for sensitivity enhancement

    NASA Astrophysics Data System (ADS)

    Kim, Jae-Ho; Kim, Hyo-Sop; Kim, Jin-Ho; Choi, Sung-Wook; Cho, Yong-Jin

    2008-08-01

    A new nano-structured SPR sensor was devised to improve its sensitivity. Nano-scaled silica particles were used as the template to fabricate nano-structure. The surface of the silica particles was modified with thiol group and a single layer of the modified silica particles was attached on the gold or silver thin film using Langmuir-Blodgett (LB) method. Thereafter, gold or silver was coated on the template by an e-beam evaporator. Finally, the nano-structured surface with basin-like shape was obtained after removing the silica particles by sonication. Applying the new developed SPR sensor to a model food of alcoholic beverage, the sensitivities for the gold and silver nano-structured sensors, respectively, had 95% and 126% higher than the conventional one.

  13. 21. View of endlift slide on pedestal and threaded shaft ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    21. View of end-lift slide on pedestal and threaded shaft with level gears. Curved deck joint at underside of roadway deck is seen, as well as submarine electrical cables resting on the masonry pier. (Nov. 30, 1988) - University Heights Bridge, Spanning Harlem River at 207th Street & West Harlem Road, New York County, NY

  14. The diversity of nanos expression in echinoderm embryos supports different mechanisms in germ cell specification.

    PubMed

    Fresques, Tara; Swartz, Steven Zachary; Juliano, Celina; Morino, Yoshiaki; Kikuchi, Mani; Akasaka, Koji; Wada, Hiroshi; Yajima, Mamiko; Wessel, Gary M

    2016-07-01

    Specification of the germ cell lineage is required for sexual reproduction in all animals. However, the timing and mechanisms of germ cell specification is remarkably diverse in animal development. Echinoderms, such as sea urchins and sea stars, are excellent model systems to study the molecular and cellular mechanisms that contribute to germ cell specification. In several echinoderm embryos tested, the germ cell factor Vasa accumulates broadly during early development and is restricted after gastrulation to cells that contribute to the germ cell lineage. In the sea urchin, however, the germ cell factor Vasa is restricted to a specific lineage by the 32-cell stage. We therefore hypothesized that the germ cell specification program in the sea urchin/Euechinoid lineage has evolved to an earlier developmental time point. To test this hypothesis we determined the expression pattern of a second germ cell factor, Nanos, in four out of five extant echinoderm clades. Here we find that Nanos mRNA does not accumulate until the blastula stage or later during the development of all other echinoderm embryos except those that belong to the Echinoid lineage. Instead, Nanos is expressed in a restricted domain at the 32-128 cell stage in Echinoid embryos. Our results support the model that the germ cell specification program underwent a heterochronic shift in the Echinoid lineage. A comparison of Echinoid and non-Echinoid germ cell specification mechanisms will contribute to our understanding of how these mechanisms have changed during animal evolution. © 2016 Wiley Periodicals, Inc.

  15. NanoRacks CubeSat Deployment

    NASA Image and Video Library

    2014-02-11

    ISS038-E-044883 (11 Feb. 2014) --- The Small Satellite Orbital Deployer (SSOD), in the grasp of the Kibo laboratory robotic arm, is photographed by an Expedition 38 crew member on the International Space Station as it begins the deployment of a set of NanoRacks CubeSats. The CubeSats program contains a variety of experiments such as Earth observations and advanced electronics testing.

  16. NanoRacks CubeSat Deployment

    NASA Image and Video Library

    2014-02-11

    ISS038-E-044994 (11 Feb. 2014) --- The Small Satellite Orbital Deployer (SSOD), in the grasp of the Kibo laboratory robotic arm, is photographed by an Expedition 38 crew member on the International Space Station prior to the deployment of a set of NanoRacks CubeSats. The CubeSats program contains a variety of experiments such as Earth observations and advanced electronics testing.

  17. Efficient methods for implementation of multi-level nonrigid mass-preserving image registration on GPUs and multi-threaded CPUs.

    PubMed

    Ellingwood, Nathan D; Yin, Youbing; Smith, Matthew; Lin, Ching-Long

    2016-04-01

    Faster and more accurate methods for registration of images are important for research involved in conducting population-based studies that utilize medical imaging, as well as improvements for use in clinical applications. We present a novel computation- and memory-efficient multi-level method on graphics processing units (GPU) for performing registration of two computed tomography (CT) volumetric lung images. We developed a computation- and memory-efficient Diffeomorphic Multi-level B-Spline Transform Composite (DMTC) method to implement nonrigid mass-preserving registration of two CT lung images on GPU. The framework consists of a hierarchy of B-Spline control grids of increasing resolution. A similarity criterion known as the sum of squared tissue volume difference (SSTVD) was adopted to preserve lung tissue mass. The use of SSTVD consists of the calculation of the tissue volume, the Jacobian, and their derivatives, which makes its implementation on GPU challenging due to memory constraints. The use of the DMTC method enabled reduced computation and memory storage of variables with minimal communication between GPU and Central Processing Unit (CPU) due to ability to pre-compute values. The method was assessed on six healthy human subjects. Resultant GPU-generated displacement fields were compared against the previously validated CPU counterpart fields, showing good agreement with an average normalized root mean square error (nRMS) of 0.044±0.015. Runtime and performance speedup are compared between single-threaded CPU, multi-threaded CPU, and GPU algorithms. Best performance speedup occurs at the highest resolution in the GPU implementation for the SSTVD cost and cost gradient computations, with a speedup of 112 times that of the single-threaded CPU version and 11 times over the twelve-threaded version when considering average time per iteration using a Nvidia Tesla K20X GPU. The proposed GPU-based DMTC method outperforms its multi-threaded CPU version in terms

  18. Numerical Modelling and Simulation of Chemical Reactions in a Nano-Pulse Discharged Bubble for Water Treatment

    NASA Astrophysics Data System (ADS)

    He, Yuchen; Satoshi, Uehara; Hidemasa, Takana; Hideya, Nishiyama

    2016-09-01

    A zero-dimensional model to simulate a nano-pulse-discharged bubble in water was developed. The model consists of gas and liquid phases corresponding to the inside and outside of the bubble, respectively. The diffusions of chemical species from the gas to the liquid phase through the bubble interface was also investigated. The initial gas is Ar, but includes a little H2O and O2 in the bubble. The time evolution of the OH concentration in the liquid phase was mainly investigated as an important species for water treatment. It was shown that OH was generated in the bubble and then diffused into the liquid. With the application of a continuous nano-pulse discharge, more OH radicals were generated as the frequency increased at a low voltage for a given power consumption. supported partially by Japan Society for the Promotion of Science (JSPS) KAKENHI (No. 26249015)

  19. SiGe nano-heteroepitaxy on Si and SiGe nano-pillars.

    PubMed

    Mastari, M; Charles, M; Bogumilowicz, Y; Thai, Q M; Pimenta-Barros, P; Argoud, M; Papon, A M; Gergaud, P; Landru, D; Kim, Y; Hartmann, J M

    2018-07-06

    In this paper, SiGe nano-heteroepitaxy on Si and SiGe nano-pillars was investigated in a 300 mm industrial reduced pressure-chemical vapour deposition tool. An integration scheme based on diblock copolymer patterning was used to fabricate nanometre-sized templates for the epitaxy of Si and SiGe nano-pillars. Results showed highly selective and uniform processes for the epitaxial growth of Si and SiGe nano-pillars. 200 nm thick SiGe layers were grown on Si and SiGe nano-pillars and characterised by atomic force microscopy, x-ray diffraction and transmission electron microscopy. Smooth SiGe surfaces and full strain relaxation were obtained in the 650 °C-700 °C range for 2D SiGe layers grown either on Si or SiGe nano-pillars.

  20. A liposomal steroid nano-drug for treating systemic lupus erythematosus.

    PubMed

    Moallem, E; Koren, E; Ulmansky, R; Pizov, G; Barlev, M; Barenholz, Y; Naparstek, Y

    2016-10-01

    Glucocorticoids have been known for years to be the most effective therapy in systemic lupus erythematosus. Their use, however, is limited by the need for high doses due to their unfavorable pharmacokinetics and biodistribution. We have previously developed a novel liposome-based steroidal (methylprednisolone hemisuccinate (MPS)) nano-drug and demonstrated its specific accumulation in inflamed tissues, as well as its superior therapeutic efficacy over that of free glucocorticoids (non-liposomal) in the autoimmune diseases, including the adjuvant arthritis rat model and the experimental autoimmune encephalomyelitis mouse model. In the present work we have evaluated the therapeutic effect of the above liposome-based steroidal (MPS) nano-drug in the MRL-lpr/lpr murine model of SLE and compared it with similar doses of the free MPS. MRL-lpr/lpr mice were treated with daily injections of free MPS or weekly injections of 10% dextrose, empty nano-liposomes or the steroidal nano-drug and the course of their disease was followed up to the age of 24 weeks. Treatment with the steroidal nano-drug was found to be significantly superior to the free MPS in suppressing anti-dsDNA antibody levels, proliferation of lymphoid tissue and renal damage, and in prolonging survival of animals. This significant superiority of our liposome based steroidal nano-drug administered weekly compared with daily injections of free methylprednisolone hemisuccinate in suppressing murine lupus indicates this glucocorticoid nano-drug formulation may be a good candidate for the treatment of human SLE. © The Author(s) 2016.

  1. Effects of Thread Depth in the Neck Area on Peri-Implant Hard and Soft Tissues: An Animal Study.

    PubMed

    Sun, Shan-Pao; Lee, Dong-Won; Yun, Jeong-Ho; Park, Kwang-Ho; Park, Kwang-Bum; Moon, Ik-Sang

    2016-11-01

    Implants with deep thread depth have been developed for the purpose of increasing total implant surface area. However, effects of implant thread depth remain controversial. The aim of this study is to examine effects of thread depth on peri-implant tissues in terms of bone-implant contact (BIC), bone-implant volume (BIV), and hard and soft tissue dimensions using comprehensive analyses, including microcomputed tomography (micro-CT). Five beagle dogs received experimental intramandibular implants 3 months after removal of their premolars and first molars (P 2 , P 3 , P 4 , and M 1 ). Two different types of implants were installed in each animal: deep threaded (DT) and shallow threaded (ST). Resonance frequency testing was performed on the day of implantation as well as 4 and 8 weeks after implantation. Intraoral radiography, micro-CT, and histomorphometry were used to evaluate peri-implant tissues 4 and 8 weeks after implantation. There were no significant differences in resonance frequency test results between the two groups. Although radiographic analysis showed no group differences, micro-CT (P = 0.01) and histomorphometry (P = 0.003) revealed the DT group had significantly lower BIC values than the ST group at 4 weeks. However, by 8 weeks, BIC values of the two groups did not differ significantly. No significant differences in BIV or soft tissue height were observed between the two groups at either time point. DT implants showed no benefits over ST implants when inserted in dog mandibles.

  2. Investigation of nuclear nano-morphology marker as a biomarker for cancer risk assessment using a mouse model

    NASA Astrophysics Data System (ADS)

    Bista, Rajan K.; Uttam, Shikhar; Hartman, Douglas J.; Qiu, Wei; Yu, Jian; Zhang, Lin; Brand, Randall E.; Liu, Yang

    2012-06-01

    The development of accurate and clinically applicable tools to assess cancer risk is essential to define candidates to undergo screening for early-stage cancers at a curable stage or provide a novel method to monitor chemoprevention treatments. With the use of our recently developed optical technology--spatial-domain low-coherence quantitative phase microscopy (SL-QPM), we have derived a novel optical biomarker characterized by structure-derived optical path length (OPL) properties from the cell nucleus on the standard histology and cytology specimens, which quantifies the nano-structural alterations within the cell nucleus at the nanoscale sensitivity, referred to as nano-morphology marker. The aim of this study is to evaluate the feasibility of the nuclear nano-morphology marker from histologically normal cells, extracted directly from the standard histology specimens, to detect early-stage carcinogenesis, assess cancer risk, and monitor the effect of chemopreventive treatment. We used a well-established mouse model of spontaneous carcinogenesis--ApcMin mice, which develop multiple intestinal adenomas (Min) due to a germline mutation in the adenomatous polyposis coli (Apc) gene. We found that the nuclear nano-morphology marker quantified by OPL detects the development of carcinogenesis from histologically normal intestinal epithelial cells, even at an early pre-adenomatous stage (six weeks). It also exhibits a good temporal correlation with the small intestine that parallels the development of carcinogenesis and cancer risk. To further assess its ability to monitor the efficacy of chemopreventive agents, we used an established chemopreventive agent, sulindac. The nuclear nano-morphology marker is reversed toward normal after a prolonged treatment. Therefore, our proof-of-concept study establishes the feasibility of the SL-QPM derived nuclear nano-morphology marker OPL as a promising, simple and clinically applicable biomarker for cancer risk assessment and

  3. Understanding Single-Thread Meandering Rivers with High Sinuosity on Mars through Chemical Precipitation Experiments

    NASA Astrophysics Data System (ADS)

    Lim, Y.; Kim, W.

    2015-12-01

    Meandering rivers are extremely ubiquitous on Earth, yet it is only recently that single-thread experimental channels with low sinuosity have been created. In these recent experiments, as well as in natural rivers, vegetation plays a crucial role in maintaining a meandering pattern by adding cohesion to the bank and inhibiting erosion. The ancient, highly sinuous channels found on Mars are enigmatic because presumably vegetation did not exist on ancient Mars. Under the hypothesis that Martian meandering rivers formed by chemical precipitation on levees and flood plain deposits, we conducted carbonate flume experiments to investigate the formation and evolution of a single-thread meander pattern without vegetation. The flow recirculating in the flume is designed to accelerate chemical reactions - dissolution of limestone using CO2 gas to produce artificial spring water and precipitation of carbonates to increase cohesion- with precise control of water discharge, sediment discharge, and temperature. Preliminary experiments successfully created a single-thread meandering pattern through chemical processes. Carbonate deposits focused along the channel sides improved the bank stability and made them resistant to erosion, which led to a stream confined in a narrow path. The experimental channels showed lateral migration of the bend through cut bank and point bar deposits; intermittent floods created overbank flow and encouraged cut bank erosion, which enhanced lateral migration of the channel, while increase in sediment supply improved lateral point bar deposition, which balanced erosion and deposition rates. This mechanism may be applied to terrestrial single-thread and/or meandering rivers with little to no vegetation or before its introduction to Earth and also provide the link between meandering river records on Mars to changes in Martian surface conditions.

  4. Structural Chemistry of Functional Nano-Materials for Environmental Remediation

    NASA Astrophysics Data System (ADS)

    John, Jesse

    Nano minerals and materials have become a focal point of Geoscience research due to the unique physical, chemical, optical, magnetic, electronic, and reactive properties. Many of these desired properties in Nano technology have the potential to impact society by improving remediation, photovoltaics, medicine and the sustainability limits on Earth for an expanding population. Despite the progress made on the discovery, synthesis, and manufacturing of numerous nano-materials, the atomistic cause of their desired properties is poorly understood. To gain a better understanding of the atomic structure of nano materials and their bulk counterparts we combined several crystallographic techniques to solve the crystal structure and performed formative characterization to ascertain the atomistic source of the desired application. These strategies and tools can be used to expedite discovery, development and the goals of the National Nanotechnology Initiative (NNI). This thesis will cover the optimization of the reaction conditions and resolve the atomic structure to produce pure synthetic nano nolanite (SNN) Fe2V3O7OH. The complete structural model of nolanite was described from a bulk mineral to the nano-regime using a combination of single crystal X-ray diffraction (SC-XRD), pair distribution function analysis (PDF) and neutron powder diffraction from synthetic material. Nolanite is isostructural to ferrihydrite, a ubiquitous nano-mineral, both of these mineral structures have been the subject for debate for the last half of century. A comparative study of the isostructural minerals nolanite, akdalaite and ferrihydrite was utilized to address the discrepancies and consolidate the structural models. Lastly, we developed a structural model for nano-crystalline titanium-based material; mono sodium titanate (MST) using high energy total X-ray scattering and PDF coupled with scanning transmission electron microscope (STEM). In the USA we have accumulated over 76000 metric tons

  5. INTERIOR VIEW OF JAMES HARRIS CUTTING SCREW THREADS INTO THE ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    INTERIOR VIEW OF JAMES HARRIS CUTTING SCREW THREADS INTO THE INTERIOR OF FITTINGS ON ONE IN A BANK OF TAPPING MACHINES, EACH OPERATED BY THE SAME WORKER SIMULTANEOUSLY BUT TIMED TO REQUIRE WORKER ACTION AT INTERVALS THAT DO NOT INTERFERE WITH THE OTHER MACHINES. - Stockham Pipe & Fittings Company, Tapping Room, 4000 Tenth Avenue North, Birmingham, Jefferson County, AL

  6. Nano Mechanical Machining Using AFM Probe

    NASA Astrophysics Data System (ADS)

    Mostofa, Md. Golam

    and burr formations through intermittent cutting. Combining the AFM probe based machining with vibration-assisted machining enhanced nano mechanical machining processes by improving the accuracy, productivity and surface finishes. In this study, several scratching tests are performed with a single crystal diamond AFM probe to investigate the cutting characteristics and model the ploughing cutting forces. Calibration of the probe for lateral force measurements, which is essential, is also extended through the force balance method. Furthermore, vibration-assisted machining system is developed and applied to fabricate different materials to overcome some of the limitations of the AFM probe based single point nano mechanical machining. The novelty of this study includes the application of vibration-assisted AFM probe based nano scale machining to fabricate micro/nano scale features, calibration of an AFM by considering different factors, and the investigation of the nano scale material removal process from a different perspective.

  7. Threading structural model of the manganese-stabilizing protein PsbO reveals presence of two possible beta-sandwich domains.

    PubMed

    Pazos, F; Heredia, P; Valencia, A; de las Rivas, J

    2001-12-01

    The manganese-stabilizing protein (PsbO) is an essential component of photosystem II (PSII) and is present in all oxyphotosynthetic organisms. PsbO allows correct water splitting and oxygen evolution by stabilizing the reactions driven by the manganese cluster. Despite its important role, its structure and detailed functional mechanism are still unknown. In this article we propose a structural model based on fold recognition and molecular modeling. This model has additional support from a study of the distribution of characteristics of the PsbO sequence family, such as the distribution of conserved, apolar, tree-determinants, and correlated positions. Our threading results consistently showed PsbO as an all-beta (beta) protein, with two homologous beta domains of approximately 120 amino acids linked by a flexible Proline-Glycine-Glycine (PGG) motif. These features are compatible with a general elongated and flexible architecture, in which the two domains form a sandwich-type structure with Greek key topology. The first domain is predicted to include 8 to 9 beta-strands, the second domain 6 to 7 beta-strands. An Ig-like beta-sandwich structure was selected as a template to build the 3-D model. The second domain has, between the strands, long-loops rich in Pro and Gly that are difficult to model. One of these long loops includes a highly conserved region (between P148 and P174) and a short alpha-helix (between E181 and N188)). These regions are characteristic parts of PsbO and show that the second domain is not so similar to the template. Overall, the model was able to account for much of the experimental data reported by several authors, and it would allow the detection of key residues and regions that are proposed in this article as essential for the structure and function of PsbO. Copyright 2001 Wiley-Liss, Inc.

  8. Mapping monomeric threading to protein-protein structure prediction.

    PubMed

    Guerler, Aysam; Govindarajoo, Brandon; Zhang, Yang

    2013-03-25

    The key step of template-based protein-protein structure prediction is the recognition of complexes from experimental structure libraries that have similar quaternary fold. Maintaining two monomer and dimer structure libraries is however laborious, and inappropriate library construction can degrade template recognition coverage. We propose a novel strategy SPRING to identify complexes by mapping monomeric threading alignments to protein-protein interactions based on the original oligomer entries in the PDB, which does not rely on library construction and increases the efficiency and quality of complex template recognitions. SPRING is tested on 1838 nonhomologous protein complexes which can recognize correct quaternary template structures with a TM score >0.5 in 1115 cases after excluding homologous proteins. The average TM score of the first model is 60% and 17% higher than that by HHsearch and COTH, respectively, while the number of targets with an interface RMSD <2.5 Å by SPRING is 134% and 167% higher than these competing methods. SPRING is controlled with ZDOCK on 77 docking benchmark proteins. Although the relative performance of SPRING and ZDOCK depends on the level of homology filters, a combination of the two methods can result in a significantly higher model quality than ZDOCK at all homology thresholds. These data demonstrate a new efficient approach to quaternary structure recognition that is ready to use for genome-scale modeling of protein-protein interactions due to the high speed and accuracy.

  9. Metal and transuranic records in mussel shells, byssal threads and tissues

    NASA Astrophysics Data System (ADS)

    Koide, Minoru; Lee, Dong Soo; Goldberg, Edward D.

    1982-12-01

    Bivalve shells offer several advantages over tissues for the monitoring of heavy metal pollutants in the marine environment. They are easier to handle and to store. The problem of whether to depurate the animals before analyses is avoided. The shells appear to be more sensitive to environmental heavy metals levels over the long term than do the soft parts. Of the substances examined (Cd, Cu, Zn, Pb, Ag, Ni, 238Pu and 239 + 240Pu) only Pb and Pu displayed a strong covariance between soft tissue and shell concentrations. There were strong correlations between metals in the shell but not in the soft tissues in general. The byssal threads, because of their enrichment of transuranic elements and of their ease in handling, may be useful in monitoring these metals. A very weak discharge of 238Pu to marine waters adjacent to a nuclear reactor was detected in the byssal threads of mussels.

  10. Mass production of polymer nano-wires filled with metal nano-particles.

    PubMed

    Lomadze, Nino; Kopyshev, Alexey; Bargheer, Matias; Wollgarten, Markus; Santer, Svetlana

    2017-08-17

    Despite the ongoing progress in nanotechnology and its applications, the development of strategies for connecting nano-scale systems to micro- or macroscale elements is hampered by the lack of structural components that have both, nano- and macroscale dimensions. The production of nano-scale wires with macroscale length is one of the most interesting challenges here. There are a lot of strategies to fabricate long nanoscopic stripes made of metals, polymers or ceramics but none is suitable for mass production of ordered and dense arrangements of wires at large numbers. In this paper, we report on a technique for producing arrays of ordered, flexible and free-standing polymer nano-wires filled with different types of nano-particles. The process utilizes the strong response of photosensitive polymer brushes to irradiation with UV-interference patterns, resulting in a substantial mass redistribution of the polymer material along with local rupturing of polymer chains. The chains can wind up in wires of nano-scale thickness and a length of up to several centimeters. When dispersing nano-particles within the film, the final arrangement is similar to a core-shell geometry with mainly nano-particles found in the core region and the polymer forming a dielectric jacket.

  11. Adaptation of Laser Microdissection Technique for the Study of a Spontaneous Metastatic Mammary Carcinoma Mouse Model by NanoString Technologies

    PubMed Central

    Saylor, Karen L.; Anver, Miriam R.; Salomon, David S.; Golubeva, Yelena G.

    2016-01-01

    Laser capture microdissection (LCM) of tissue is an established tool in medical research for collection of distinguished cell populations under direct microscopic visualization for molecular analysis. LCM samples have been successfully analyzed in a number of genomic and proteomic downstream molecular applications. However, LCM sample collection and preparation procedure has to be adapted to each downstream analysis platform. In this present manuscript we describe in detail the adaptation of LCM methodology for the collection and preparation of fresh frozen samples for NanoString analysis based on a study of a model of mouse mammary gland carcinoma and its lung metastasis. Our adaptation of LCM sample preparation and workflow to the requirements of the NanoString platform allowed acquiring samples with high RNA quality. The NanoString analysis of such samples provided sensitive detection of genes of interest and their associated molecular pathways. NanoString is a reliable gene expression analysis platform that can be effectively coupled with LCM. PMID:27077656

  12. Biokinetics and effects of titania nano-material after inhalation and i.v. injection

    NASA Astrophysics Data System (ADS)

    Landsiedel, Robert; Fabian, Eric; Ma-Hock, Lan; Wiench, Karin; van Ravenzwaay, Bennard

    2009-05-01

    Within NanoSafe2 we developed a special inhalation model to investigate deposition of inhaled particles in the lung and the further distribution in the body after. Concurrently, the effects of the inhaled materials in the lung were examined. The results for nano-Titania were compared to results from inhalation studies with micron-sized (non-nano) Titania particles and to quartz particles (DQ12, known to be potent lung toxicants). To build a PBPK model for nano-Titania the tissue distribution of the material was also examined following intravenous (i.v.) administration.

  13. Plasmonic graded nano-disks as nano-optical conveyor belt.

    PubMed

    Kang, Zhiwen; Lu, Haifei; Chen, Jiajie; Chen, Kun; Xu, Fang; Ho, Ho-Pui

    2014-08-11

    We propose a plasmonic system consisting of nano-disks (NDs) with graded diameters for the realization of nano-optical conveyor belt. The system contains a couple of NDs with individual elements coded with different resonant wavelengths. By sequentially switching the wavelength and polarization of the excitation source, optically trapped target nano-particle can be transferred from one ND to another. The feasibility of such function is verified based on the three-dimensional finite-difference time-domain technique and the Maxwell stress tensor method. Our design may provide an alternative way to construct nano-optical conveyor belt with which target molecules can be delivered between trapping sites, thus enabling many on-chip optofluidic applications.

  14. Nano-colloid electrophoretic transport: Fully explicit modelling via dissipative particle dynamics

    NASA Astrophysics Data System (ADS)

    Hassanzadeh Afrouzi, Hamid; Farhadi, Mousa; Sedighi, Kurosh; Moshfegh, Abouzar

    2018-02-01

    In present study, a novel fully explicit approach using dissipative particle dynamics (DPD) method is introduced for modelling electrophoretic transport of nano-colloids in an electrolyte solution. Slater type charge smearing function included in 3D Ewald summation method is employed to treat electrostatic interaction. Moreover, capability of different thermostats are challenged to control the system temperature and study the dynamic response of colloidal electrophoretic mobility under practical ranges of external electric field in nano scale application (0.072 < E < 0.361 v / nm) covering non-linear response regime, and ionic salt concentration (0.049 < SC < 0.69 [M]) covering weak to strong Debye screening of the colloid. The effect of different colloidal repulsions are then studied on temperature, reduced mobility and zeta potential which is computed based on charge distribution within the spherical colloidal EDL. System temperature and electrophoretic mobility both show a direct and inverse relationship respectively with electric field and colloidal repulsion. Mobility declining with colloidal repulsion reaches a plateau which is a relatively constant value at each electrolyte salinity for Aii > 600 in DPD units regardless of electric field intensity. Nosé-Hoover-Lowe-Andersen and Lowe-Andersen thermostats are found to function more effectively under high electric fields (E > 0.145 [ v / nm ]) while thermal equilibrium is maintained. Reasonable agreements are achieved by benchmarking the radial distribution function with available electrolyte structure modellings, as well as comparing reduced mobility against conventional Smoluchowski and Hückel theories, and numerical solution of Poisson-Boltzmann equation.

  15. About Nano-JASMINE Satellite System and Project Status

    NASA Astrophysics Data System (ADS)

    Sako, Nobutada

    Intelligent Space Systems Laboratory, The University of Tokyo (ISSL) and National Astronomical Observatory of Japan (NAO) have been developing a small infrared astrometry satellite named “Nano-JASMINE”. The satellite size is about 50cm cubic and 20kg, which plays a pre-cursor role of JASMINE Project which is programmed by NAO and JAXA. In addition, since there has been only one astrometry satellite HIPPARCOS by ESA in the past, Nano-JASMINE is also expected to achieve certain scientific results in the field of astrometry. In this project, ISSL aims to develop new advanced small satellite bus system whose performance is comparable to that of 100-500kg sized satellites, including attitude stability of 1 arc-second and thermal stability of the mission subsystem of 1 mK. This paper overviews the Nano-JASMINE bus system with emphasis on attitude and thermal control systems.

  16. Benchmark and Framework for Encouraging Research on Multi-Threaded Testing Tools

    NASA Technical Reports Server (NTRS)

    Havelund, Klaus; Stoller, Scott D.; Ur, Shmuel

    2003-01-01

    A problem that has been getting prominence in testing is that of looking for intermittent bugs. Multi-threaded code is becoming very common, mostly on the server side. As there is no silver bullet solution, research focuses on a variety of partial solutions. In this paper (invited by PADTAD 2003) we outline a proposed project to facilitate research. The project goals are as follows. The first goal is to create a benchmark that can be used to evaluate different solutions. The benchmark, apart from containing programs with documented bugs, will include other artifacts, such as traces, that are useful for evaluating some of the technologies. The second goal is to create a set of tools with open API s that can be used to check ideas without building a large system. For example an instrumentor will be available, that could be used to test temporal noise making heuristics. The third goal is to create a focus for the research in this area around which a community of people who try to solve similar problems with different techniques, could congregate.

  17. The Private Voice Made Public Record: "Common Threads" and Filmic Strategy.

    ERIC Educational Resources Information Center

    Stoddart, Scott F.

    This paper analyzes Robert Epstein's Academy Award winning documentary "Common Threads: Stories from the Quilt," which consciously employs a binary rhetoric, a "common" method, by which to read the complex narrativity of the Names Project Quilt (the quilt memorial to AIDS victims). The paper addresses the inherently rhetorical…

  18. FODEM: A Multi-Threaded Research and Development Method for Educational Technology

    ERIC Educational Resources Information Center

    Suhonen, Jarkko; de Villiers, M. Ruth; Sutinen, Erkki

    2012-01-01

    Formative development method (FODEM) is a multithreaded design approach that was originated to support the design and development of various types of educational technology innovations, such as learning tools, and online study programmes. The threaded and agile structure of the approach provides flexibility to the design process. Intensive…

  19. The Effect of Nano Loading and Ultrasonic Compounding of EVA/LDPE/Nano-magnesium Hydroxide on Mechanical Properties and Distribution of Nano Particles

    NASA Astrophysics Data System (ADS)

    Azman, I. A.; Salleh, R. M.; Alauddin, S. M.; Shueb, M. I.

    2018-05-01

    Blends of Ethylene Vinyl Acetate (EVA) and Low-Density Polyethylene (LDPE) are promising composite which have good mechanical properties to environmental stress cracking. However, they lack fire resistant properties, which limits it usage in wire and cable industry. In order to improve flame retardancy ability, a range of nano-magnesium hydroxide (nano-MH) loading which is from 0 phr to maximum of 20 phr with ultrasonic extrusion 0-100 kHz frequencies have been introduced. Ultrasonic extrusion was used to improve the distribution of nano-MH. It was found that, 10 phr of nano loading with 100 kHz ultrasonic assisted has greater tensile strength compared to the nanocomposite without ultrasonication. Further increase of nano MH loading, will decrease the tensile properties. Better elongation at break was observed at10 phr nano-MH with the frequency of 50 kHz. The sample of 20 phr of nanoMH assisted with 50 kHz ultrasonic exhibits good flexural properties while 10 phr of nano-MH without the ultrasonic assisted demonstrates good in izod impact properties. From the evaluation of mechanical properties studied, it was found that 10 phr of nano-MH has shown the best performance among all the samples tested for EVA/LDPE/nano-MH composites. Transmission Electron Microscopy (TEM) has been conducted on 10 phr sample with different frequencies in order to observe the distribution of nano-MH particles. The sample with 100 kHz frequency shows more uniform dispersion of nano-MH in EVA/LDPE composites. This investigation indicates that the ultrasonic technology can enhance the mechanical properties studied as well as the dispersion of nano particles in the composite.

  20. Nano-sized Adsorbate Structure Formation in Anisotropic Multilayer System

    NASA Astrophysics Data System (ADS)

    Kharchenko, Vasyl O.; Kharchenko, Dmitrii O.; Yanovsky, Vladimir V.

    2017-05-01

    In this article, we study dynamics of adsorbate island formation in a model plasma-condensate system numerically. We derive the generalized reaction-diffusion model for adsorptive multilayer system by taking into account anisotropy in transfer of adatoms between neighbor layers induced by electric field. It will be found that with an increase in the electric field strength, a structural transformation from nano-holes inside adsorbate matrix toward separated nano-sized adsorbate islands on a substrate is realized. Dynamics of adsorbate island sizes and corresponding distributions are analyzed in detail. This study provides an insight into details of self-organization of adatoms into nano-sized adsorbate islands in anisotropic multilayer plasma-condensate systems.

  1. III/V nano ridge structures for optical applications on patterned 300 mm silicon substrate

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

    Kunert, B.; Guo, W.; Mols, Y.

    We report on an integration approach of III/V nano ridges on patterned silicon (Si) wafers by metal organic vapor phase epitaxy (MOVPE). Trenches of different widths (≤500 nm) were processed in a silicon oxide (SiO{sub 2}) layer on top of a 300 mm (001) Si substrate. The MOVPE growth conditions were chosen in a way to guarantee an efficient defect trapping within narrow trenches and to form a box shaped ridge with increased III/V volume when growing out of the trench. Compressively strained InGaAs/GaAs multi-quantum wells with 19% indium were deposited on top of the fully relaxed GaAs ridges as an activemore » material for optical applications. Transmission electron microcopy investigation shows that very flat quantum well (QW) interfaces were realized. A clear defect trapping inside the trenches is observed whereas the ridge material is free of threading dislocations with only a very low density of planar defects. Pronounced QW photoluminescence (PL) is detected from different ridge sizes at room temperature. The potential of these III/V nano ridges for laser integration on Si substrates is emphasized by the achieved ridge volume which could enable wave guidance and by the high crystal quality in line with the distinct PL.« less

  2. Rotation motion of designed nano-turbine.

    PubMed

    Li, Jingyuan; Wang, Xiaofeng; Zhao, Lina; Gao, Xingfa; Zhao, Yuliang; Zhou, Ruhong

    2014-07-28

    Construction of nano-devices that can generate controllable unidirectional rotation is an important part of nanotechnology. Here, we design a nano-turbine composed of carbon nanotube and graphene nanoblades, which can be driven by fluid flow. Rotation motion of nano-turbine is quantitatively studied by molecular dynamics simulations on this model system. A robust linear relationship is achieved with this nano-turbine between its rotation rate and the fluid flow velocity spanning two orders of magnitude, and this linear relationship remains intact at various temperatures. More interestingly, a striking difference from its macroscopic counterpart is identified: the rotation rate is much smaller (by a factor of ~15) than that of the macroscopic turbine with the same driving flow. This discrepancy is shown to be related to the disruption of water flow at nanoscale, together with the water slippage at graphene surface and the so-called "dragging effect". Moreover, counterintuitively, the ratio of "effective" driving flow velocity increases as the flow velocity increases, suggesting that the linear dependence on the flow velocity can be more complicated in nature. These findings may serve as a foundation for the further development of rotary nano-devices and should also be helpful for a better understanding of the biological molecular motors.

  3. Rotation Motion of Designed Nano-Turbine

    PubMed Central

    Li, Jingyuan; Wang, Xiaofeng; Zhao, Lina; Gao, Xingfa; Zhao, Yuliang; Zhou, Ruhong

    2014-01-01

    Construction of nano-devices that can generate controllable unidirectional rotation is an important part of nanotechnology. Here, we design a nano-turbine composed of carbon nanotube and graphene nanoblades, which can be driven by fluid flow. Rotation motion of nano-turbine is quantitatively studied by molecular dynamics simulations on this model system. A robust linear relationship is achieved with this nano-turbine between its rotation rate and the fluid flow velocity spanning two orders of magnitude, and this linear relationship remains intact at various temperatures. More interestingly, a striking difference from its macroscopic counterpart is identified: the rotation rate is much smaller (by a factor of ~15) than that of the macroscopic turbine with the same driving flow. This discrepancy is shown to be related to the disruption of water flow at nanoscale, together with the water slippage at graphene surface and the so-called “dragging effect”. Moreover, counterintuitively, the ratio of “effective” driving flow velocity increases as the flow velocity increases, suggesting that the linear dependence on the flow velocity can be more complicated in nature. These findings may serve as a foundation for the further development of rotary nano-devices and should also be helpful for a better understanding of the biological molecular motors. PMID:25068725

  4. Proximal half angle of the screw thread is a critical design variable affecting the pull-out strength of cancellous bone screws.

    PubMed

    Wang, Yingxu; Mori, Ryuji; Ozoe, Nobuaki; Nakai, Takahisa; Uchio, Yuji

    2009-11-01

    Screws with strong pull-out strength have been sought for the treatment of cancellous bone. We hypothesized that an obliquely angled screw thread has advantages over conventional vertical thread with a minimal proximal half angle. Metal and bone screws were made of stainless steel and porcine cortical bone. Their proximal half angle was set at 0 degrees , 30 degrees , or 60 degrees . The screws were inserted into porcine cancellous bone. At 0 degrees , the thread faced the recipient bone vertically. Pullout tests at a rate of 30 mm/min (n=40, each screw type) and microcomputed tomography (n=6) were conducted. The pull-out strength of the screws was maximal at 30 degrees ; 348.8 (SD, 44.1)N with metal and 326.6 (39.4)N with bone. It was intermediate at 0 degrees ; 301.9 (35.9)N with metal and 278.2 (30.6)N with bone. It was minimal at 60 degrees; 126.5 (39.0)N with metal and 174.8 (29.7)N with bone. Cancellous bone was damaged between the threads at 30 degrees , while intact cancellous bone was preserved between the threads at 0 degrees. A proximal half angle of around 30 degrees is appropriate because the pullout force is applied to the recipient bone evenly. Commercial cancellous screws can be improved by changing the thread shape to minimize the damage to recipient bone.

  5. The Combined Effects of Response Time and Message Content on Growth Patterns of Discussion Threads in Computer-Supported Collaborative Argumentation

    ERIC Educational Resources Information Center

    Jeong, Allan

    2004-01-01

    This study examined the effects of response time and message content on the growth patterns of discussion threads in computer-supported collaborative argumentation. Event sequence analysis was used to measure response times between threaded messages and responses containing arguments, evidence, critiques, evaluations, and other comments from…

  6. Conversation Thread Extraction and Topic Detection in Text-Based Chat

    DTIC Science & Technology

    2008-09-01

    conversation extraction task. Multiple conversations in a session are interleaved. The goal in extraction is to select only those posts that belong...others. Our first-phase experiments quite clearly show the value of using time-distance as a feature in conversation thread extraction . In this set of... EXTRACTION AND TOPIC DETECTION IN TEXT-BASED CHAT by Paige Holland Adams September 2008 Thesis Advisor

  7. Using Multi-threading for the Automatic Load Balancing of 2D Adaptive Finite Element Meshes

    NASA Technical Reports Server (NTRS)

    Heber, Gerd; Biswas, Rupak; Thulasiraman, Parimala; Gao, Guang R.; Saini, Subhash (Technical Monitor)

    1998-01-01

    In this paper, we present a multi-threaded approach for the automatic load balancing of adaptive finite element (FE) meshes The platform of our choice is the EARTH multi-threaded system which offers sufficient capabilities to tackle this problem. We implement the adaption phase of FE applications oil triangular meshes and exploit the EARTH token mechanism to automatically balance the resulting irregular and highly nonuniform workload. We discuss the results of our experiments oil EARTH-SP2, on implementation of EARTH on the IBM SP2 with different load balancing strategies that are built into the runtime system.

  8. High-rate nano-crystalline Li 4Ti 5O 12 attached on carbon nano-fibers for hybrid supercapacitors

    NASA Astrophysics Data System (ADS)

    Naoi, Katsuhiko; Ishimoto, Shuichi; Isobe, Yusaku; Aoyagi, Shintaro

    A lithium titanate (Li 4Ti 5O 12)-based electrode which can operate at unusually high current density (300 C) was developed as negative electrode for hybrid capacitors. The high-rate Li 4Ti 5O 12 electrode has a unique nano-structure consisting of unusually small nano-crystalline Li 4Ti 5O 12 (ca. 5-20 nm) grafted onto carbon nano-fiber anchors (nc-Li 4Ti 5O 12/CNF). This nano-structured nc-Li 4Ti 5O 12/CNF composite are prepared by simple sol-gel method under ultra-centrifugal force (65,000 N) followed by instantaneous annealing at 900 °C for 3 min. A model hybrid capacitor cell consisting of a negative nc-Li 4Ti 5O 12/CNF composite electrode and a positive activated carbon electrode showed high energy density of 40 Wh L -1 and high power density of 7.5 kW L -1 comparable to conventional EDLCs.

  9. Wafer-scale aluminum nano-plasmonics

    NASA Astrophysics Data System (ADS)

    George, Matthew C.; Nielson, Stew; Petrova, Rumyana; Frasier, James; Gardner, Eric

    2014-09-01

    The design, characterization, and optical modeling of aluminum nano-hole arrays are discussed for potential applications in surface plasmon resonance (SPR) sensing, surface-enhanced Raman scattering (SERS), and surface-enhanced fluorescence spectroscopy (SEFS). In addition, recently-commercialized work on narrow-band, cloaked wire grid polarizers composed of nano-stacked metal and dielectric layers patterned over 200 mm diameter wafers for projection display applications is reviewed. The stacked sub-wavelength nanowire grid results in a narrow-band reduction in reflectance by 1-2 orders of magnitude, which can be tuned throughout the visible spectrum for stray light control.

  10. Threading dynamics of a polymer through parallel pores: Potential applications to DNA size separation

    NASA Astrophysics Data System (ADS)

    Åkerman, Björn

    1997-04-01

    DNA orientation measurements by linear dichroism (LD) spectroscopy and single molecule imaging by fluorescence microscopy are used to investigate the effect of DNA size (71-740 kilo base pairs) and field strength E (1-5.9 V/cm) on the conformation dynamics during the field-driven threading of DNA molecules through a set of parallel pores in agarose gels, with average pore radii between 380 Å and 1400 Å. Locally relaxed but globally oriented DNA molecules are subjected to a perpendicular field, and the observed LD time profile is compared with a recent theory for the threading [D. Long and J.-L. Viovy, Phys. Rev. E 53, 803 (1996)] which assumes the same initial state. As predicted the DNA is driven by the ends into a U-form, leading to an overshoot in the LD. The overshoot-time scales as E-(1.2-1.4) as predicted, but grows more slowly with DNA size than the predicted linear dependence. For long molecules loops form initially in the threading process but are finally consumed by the ends, and the process of transfer of DNA segments, from the loops to the arms of the U, leads to a shoulder in the LD as predicted. The critical size below which loops do not form (as indicated by the LD shoulder being absent) is between 71 and 105 kbp (0.5% agarose, 5.9 V/cm), and considerably larger than predicted because in the initial state the DNA molecules are housed in gel cavities with effective pore sizes about four times larger than the average pore size. From the data, the separation of DNA by exploiting the threading dynamics in pulsed fields [D. Long et al., CR Acad. Sci. Paris, Ser. IIb 321, 239 (1995)] is shown to be feasible in principle in an agarose-based system.

  11. Mechanical Properties of Polymer Nano-composites

    NASA Astrophysics Data System (ADS)

    Srivastava, Iti

    predicted to out-perform nanotubes. In the last few years, work has been done by researchers to study bulk mechanical properties of graphene platelets in polymer matrix. This thesis reports the extensive improvements observed in fatigue resistance and fracture toughness of epoxy using graphene platelet as a filler in very small quantities. Though significant property improvements like 75% increase in fracture toughness and 25-fold increase in fatigue resistance were observed for graphene epoxy nano-composites, the toughening mechanisms could not be delineated without thermo-mechanical and micro-mechanical tests. In this work, the bulk mechanical properties of graphene platelet-polymer nano-composites are studied and presented and the toughness mechanisms are identified by fractography, differential scanning calorimetry, and Raman spectroscopy; and then compared to predictions by theoretical models. Strong adherence to the matrix was found to be the key mechanism responsible for the effective reinforcement provided by graphene to the polymer. The strong graphene platelet-matrix interface also leads to extensive crack deflection, which was observed to be the major toughening mechanism in the nano-composite. In this thesis, the bulk mechanical property results are complemented by in-depth characterization of filler-polymer interfacial interactions and interphase formation using a battery of techniques including Raman spectroscopy and atomic force microscopy. Theoretical and empirical models proposed by Faber & Evans and Pezzotti were critically studied and applied. Pezzotti's model was found to corroborate well with experimental results and provided insight into enhancement mechanisms and explains the mechanisms underpinning the toughness loss at high graphene platelet weight fraction. The thesis provides conclusive evidences for the superiority of graphene as a filler for reinforcing polymer matrices. In conclusion, the thesis presents a thorough investigation of one- and two

  12. Vaginal thread formation in the healthy offspring of untreated Long-Evans rats

    EPA Science Inventory

    Vaginal threads are characterized as cords of mesenchymal tissue that cross the vaginal opening. They are sometimes apparent in rats after weaning, and typically disappear within 1-2 days as the female reaches puberty. If persistent, they can increase uncertainty in assessing rep...

  13. Molecular threading and tunable molecular recognition on DNA origami nanostructures.

    PubMed

    Wu, Na; Czajkowsky, Daniel M; Zhang, Jinjin; Qu, Jianxun; Ye, Ming; Zeng, Dongdong; Zhou, Xingfei; Hu, Jun; Shao, Zhifeng; Li, Bin; Fan, Chunhai

    2013-08-21

    The DNA origami technology holds great promise for the assembly of nanoscopic technological devices and studies of biochemical reactions at the single-molecule level. For these, it is essential to establish well controlled attachment of functional materials to predefined sites on the DNA origami nanostructures for reliable measurements and versatile applications. However, the two-sided nature of the origami scaffold has shown limitations in this regard. We hypothesized that holes of the commonly used two-dimensional DNA origami designs are large enough for the passage of single-stranded (ss)-DNA. Sufficiently long ssDNA initially located on one side of the origami should thus be able to "thread" to the other side through the holes in the origami sheet. By using an origami sheet attached with patterned biotinylated ssDNA spacers and monitoring streptavidin binding with atomic force microscopic (AFM) imaging, we provide unambiguous evidence that the biotin ligands positioned on one side have indeed threaded through to the other side. Our finding reveals a previously overlooked critical design feature that should provide new interpretations to previous experiments and new opportunities for the construction of origami structures with new functional capabilities.

  14. University NanoSat Program: AggieSat3

    DTIC Science & Technology

    2009-06-01

    commercially available product for stereo machine vision developed by Point Grey Research. The current binocular BumbleBee2® system incorporates two...and Fellow of the American Society of Mechanical Engineers (ASME) in 1997. She was awarded the 2007 J. Leland "Lee" Atwood Award from the ASEE...AggieSat2 satellite programs. Additional experience gained in the area of drawing standards, machining capabilities, solid modeling, safety

  15. Optical method for measuring the surface area of a threaded fastener

    Treesearch

    Douglas Rammer; Samuel Zelinka

    2010-01-01

    This article highlights major aspects of a new optical technique to determine the surface area of a threaded fastener; the theoretical framework has been reported elsewhere. Specifically, this article describes general surface area expressions used in the analysis, details of image acquisition system, and major image processing steps contained within the measurement...

  16. Temperature mediates the effect of humidity on the viscoelasticity of glycoprotein glue within the droplets of an orb-weaving spider's prey capture threads.

    PubMed

    Stellwagen, Sarah D; Opell, Brent D; Short, Kelly G

    2014-05-01

    Sticky viscous prey capture threads retain insects that strike araneoid orb-webs. The threads' two axial fibers support a series of glue droplets, each featuring a core of adhesive viscoelastic glycoprotein covered by an aqueous solution. After sticking, the glue extends, summing the adhesion of multiple droplets, and dissipates some of the energy of a struggling prey. As a day progresses, threads experience a drop in humidity and an increase in temperature, environmental variables that have the potential to alter thread and web function. We hypothesize that thread droplets respond to these opposing environmental changes in a manner that stabilizes their performance, and test this by examining threads spun by Argiope aurantia, a species that occupies exposed, weedy habitats. We confirmed that decreased humidity increases glycoprotein viscosity and found that increased temperature had the opposite effect. To evaluate the combined effect of temperature and humidity on a droplet's ability to transfer adhesive force and dissipate energy, we extended a droplet and measured both the deflection of the axial line supporting the droplet and the duration of its tensive load. The cumulative product of these two indices, which reflects the energy required to extend a droplet, was greatest under afternoon (hot and dry) conditions, less under morning (cool and humid) conditions, and least under hot and humid afternoon conditions. Although the opposing effects of temperature and humidity tend to stabilize glycoprotein performance, A. aurantia thread droplets appear to function optimally during the afternoon, equipping this species to capture large orthopterans, which are most active at this time.

  17. Sediment Core Extrusion Method at Millimeter Resolution Using a Calibrated, Threaded-rod

    PubMed Central

    Schwing, Patrick T.; Romero, Isabel C.; Larson, Rebekka A.; O'Malley, Bryan J.; Fridrik, Erika E.; Goddard, Ethan A.; Brooks, Gregg R.; Hastings, David W.; Rosenheim, Brad E.; Hollander, David J.; Grant, Guy; Mulhollan, Jim

    2016-01-01

    Aquatic sediment core subsampling is commonly performed at cm or half-cm resolution. Depending on the sedimentation rate and depositional environment, this resolution provides records at the annual to decadal scale, at best. An extrusion method, using a calibrated, threaded-rod is presented here, which allows for millimeter-scale subsampling of aquatic sediment cores of varying diameters. Millimeter scale subsampling allows for sub-annual to monthly analysis of the sedimentary record, an order of magnitude higher than typical sampling schemes. The extruder consists of a 2 m aluminum frame and base, two core tube clamps, a threaded-rod, and a 1 m piston. The sediment core is placed above the piston and clamped to the frame. An acrylic sampling collar is affixed to the upper 5 cm of the core tube and provides a platform from which to extract sub-samples. The piston is rotated around the threaded-rod at calibrated intervals and gently pushes the sediment out the top of the core tube. The sediment is then isolated into the sampling collar and placed into an appropriate sampling vessel (e.g., jar or bag). This method also preserves the unconsolidated samples (i.e., high pore water content) at the surface, providing a consistent sampling volume. This mm scale extrusion method was applied to cores collected in the northern Gulf of Mexico following the Deepwater Horizon submarine oil release. Evidence suggests that it is necessary to sample at the mm scale to fully characterize events that occur on the monthly time-scale for continental slope sediments. PMID:27585268

  18. Sediment Core Extrusion Method at Millimeter Resolution Using a Calibrated, Threaded-rod.

    PubMed

    Schwing, Patrick T; Romero, Isabel C; Larson, Rebekka A; O'Malley, Bryan J; Fridrik, Erika E; Goddard, Ethan A; Brooks, Gregg R; Hastings, David W; Rosenheim, Brad E; Hollander, David J; Grant, Guy; Mulhollan, Jim

    2016-08-17

    Aquatic sediment core subsampling is commonly performed at cm or half-cm resolution. Depending on the sedimentation rate and depositional environment, this resolution provides records at the annual to decadal scale, at best. An extrusion method, using a calibrated, threaded-rod is presented here, which allows for millimeter-scale subsampling of aquatic sediment cores of varying diameters. Millimeter scale subsampling allows for sub-annual to monthly analysis of the sedimentary record, an order of magnitude higher than typical sampling schemes. The extruder consists of a 2 m aluminum frame and base, two core tube clamps, a threaded-rod, and a 1 m piston. The sediment core is placed above the piston and clamped to the frame. An acrylic sampling collar is affixed to the upper 5 cm of the core tube and provides a platform from which to extract sub-samples. The piston is rotated around the threaded-rod at calibrated intervals and gently pushes the sediment out the top of the core tube. The sediment is then isolated into the sampling collar and placed into an appropriate sampling vessel (e.g., jar or bag). This method also preserves the unconsolidated samples (i.e., high pore water content) at the surface, providing a consistent sampling volume. This mm scale extrusion method was applied to cores collected in the northern Gulf of Mexico following the Deepwater Horizon submarine oil release. Evidence suggests that it is necessary to sample at the mm scale to fully characterize events that occur on the monthly time-scale for continental slope sediments.

  19. Nano-Computed Tomography: Technique and Applications.

    PubMed

    Kampschulte, M; Langheinirch, A C; Sender, J; Litzlbauer, H D; Althöhn, U; Schwab, J D; Alejandre-Lafont, E; Martels, G; Krombach, G A

    2016-02-01

    Nano-computed tomography (nano-CT) is an emerging, high-resolution cross-sectional imaging technique and represents a technical advancement of the established micro-CT technology. Based on the application of a transmission target X-ray tube, the focal spot size can be decreased down to diameters less than 400 nanometers (nm). Together with specific detectors and examination protocols, a superior spatial resolution up to 400 nm (10 % MTF) can be achieved, thereby exceeding the resolution capacity of typical micro-CT systems. The technical concept of nano-CT imaging as well as the basics of specimen preparation are demonstrated exemplarily. Characteristics of atherosclerotic plaques (intraplaque hemorrhage and calcifications) in a murine model of atherosclerosis (ApoE (-/-)/LDLR(-/-) double knockout mouse) are demonstrated in the context of superior spatial resolution in comparison to micro-CT. Furthermore, this article presents the application of nano-CT for imaging cerebral microcirculation (murine), lung structures (porcine), and trabecular microstructure (ovine) in contrast to micro-CT imaging. This review shows the potential of nano-CT as a radiological method in biomedical basic research and discusses the application of experimental, high resolution CT techniques in consideration of other high resolution cross-sectional imaging techniques. Nano-computed tomography is a high resolution CT-technology for 3D imaging at sub-micrometer resolution. The technical concept bases on a further development of the established ex-vivo-micro-CT technology. By improvement of the spatial resolution, structures at a cellular level become visible (e.g. osteocyte lacunae). © Georg Thieme Verlag KG Stuttgart · New York.

  20. Simulation-based cutaneous surgical-skill training on a chicken-skin bench model in a medical undergraduate program.

    PubMed

    Denadai, Rafael; Saad-Hossne, Rogério; Martinhão Souto, Luís Ricardo

    2013-05-01

    Because of ethical and medico-legal aspects involved in the training of cutaneous surgical skills on living patients, human cadavers and living animals, it is necessary the search for alternative and effective forms of training simulation. To propose and describe an alternative methodology for teaching and learning the principles of cutaneous surgery in a medical undergraduate program by using a chicken-skin bench model. One instructor for every four students, teaching materials on cutaneous surgical skills, chicken trunks, wings, or thighs, a rigid platform support, needled threads, needle holders, surgical blades with scalpel handles, rat-tooth tweezers, scissors, and marking pens were necessary for training simulation. A proposal for simulation-based training on incision, suture, biopsy, and on reconstruction techniques using a chicken-skin bench model distributed in several sessions and with increasing levels of difficultywas structured. Both feedback and objective evaluations always directed to individual students were also outlined. The teaching of a methodology for the principles of cutaneous surgery using a chicken-skin bench model versatile, portable, easy to assemble, and inexpensive is an alternative and complementary option to the armamentarium of methods based on other bench models described.

  1. Theory, Self, and Rhetoric Or, What To Do With Ariadne's Thread.

    ERIC Educational Resources Information Center

    Marinara, Martha

    Using Ariadne's thread in the narrative of the labyrinth as a metaphor for the elusiveness of language, this paper explores the concept of "self" to prepare for the discussion of autobiography as a "tool" for teaching writing, and to create a connection between a politically enabled self, a private self, and critical theory.…

  2. Effects of nano-TiO2 on antibiotic resistance transfer mediated by RP4 plasmid.

    PubMed

    Qiu, Zhigang; Shen, Zhiqiang; Qian, Di; Jin, Min; Yang, Dong; Wang, Jingfeng; Zhang, Bin; Yang, Zhongwei; Chen, Zhaoli; Wang, Xinwei; Ding, Chengshi; Wang, Daning; Li, Jun-Wen

    2015-01-01

    The potential risks of nano-materials and the spread of antibiotic resistance genes (ARGs) have become two major global public concerns. Studies have confirmed that nano-alumina can promote the spread of ARGs mediated by plasmids. Nano-titanium dioxide (TiO(2)), an excellent photocatalytic nano-material, has been widely used and is often present in aqueous environments. At various nano-material concentrations, bacterial density, matting time, and matting temperature, nano-TiO(2) can significantly promote the conjugation of RP4 plasmid in Escherichia coli. We developed a mathematical model to quantitatively describe the conjugation process and used this model to evaluate the effects of nano-TiO(2) on the spread of ARGs. We obtained analytical solutions for total and resistant bacteria, which were enumerated by the abundance of genetic loci unique to the plasmid and the chromosome using qPCR. Our results showed that the mathematic model was able to fit the experimental data well and can be used to quantitatively evaluate the effects of nano-TiO(2). According to our model, the presence of nano-TiO(2) decreased the bacterial growth rate from 0.0360 to 0.0323 min(-1) and increased the conjugative transfer rate from 6.69 × 10(-12) to 3.93 × 10(-10 )mL cell(-1) min(-1). These results indicate that nano-TiO(2) inhibited bacterial growth and promoted conjugation simultaneously. The data for morphology and mRNA expression also demonstrated this phenomenon. Our results confirm that environmental nano-TiO(2) may cause the spread of ARGs and thus poses an environmental risk. In addition, we provide a potential method for monitoring changes in ARGs that result from conjugation and evaluating the effects of antimicrobial substances on ARG expression.

  3. Multi-threaded ATLAS simulation on Intel Knights Landing processors

    NASA Astrophysics Data System (ADS)

    Farrell, Steven; Calafiura, Paolo; Leggett, Charles; Tsulaia, Vakhtang; Dotti, Andrea; ATLAS Collaboration

    2017-10-01

    The Knights Landing (KNL) release of the Intel Many Integrated Core (MIC) Xeon Phi line of processors is a potential game changer for HEP computing. With 72 cores and deep vector registers, the KNL cards promise significant performance benefits for highly-parallel, compute-heavy applications. Cori, the newest supercomputer at the National Energy Research Scientific Computing Center (NERSC), was delivered to its users in two phases with the first phase online at the end of 2015 and the second phase now online at the end of 2016. Cori Phase 2 is based on the KNL architecture and contains over 9000 compute nodes with 96GB DDR4 memory. ATLAS simulation with the multithreaded Athena Framework (AthenaMT) is a good potential use-case for the KNL architecture and supercomputers like Cori. ATLAS simulation jobs have a high ratio of CPU computation to disk I/O and have been shown to scale well in multi-threading and across many nodes. In this paper we will give an overview of the ATLAS simulation application with details on its multi-threaded design. Then, we will present a performance analysis of the application on KNL devices and compare it to a traditional x86 platform to demonstrate the capabilities of the architecture and evaluate the benefits of utilizing KNL platforms like Cori for ATLAS production.

  4. Multimedia modeling of engineered nanoparticles with SimpleBox4nano: model definition and evaluation.

    PubMed

    Meesters, Johannes A J; Koelmans, Albert A; Quik, Joris T K; Hendriks, A Jan; van de Meent, Dik

    2014-05-20

    Screening level models for environmental assessment of engineered nanoparticles (ENP) are not generally available. Here, we present SimpleBox4Nano (SB4N) as the first model of this type, assess its validity, and evaluate it by comparisons with a known material flow model. SB4N expresses ENP transport and concentrations in and across air, rain, surface waters, soil, and sediment, accounting for nanospecific processes such as aggregation, attachment, and dissolution. The model solves simultaneous mass balance equations (MBE) using simple matrix algebra. The MBEs link all concentrations and transfer processes using first-order rate constants for all processes known to be relevant for ENPs. The first-order rate constants are obtained from the literature. The output of SB4N is mass concentrations of ENPs as free dispersive species, heteroaggregates with natural colloids, and larger natural particles in each compartment in time and at steady state. Known scenario studies for Switzerland were used to demonstrate the impact of the transport processes included in SB4N on the prediction of environmental concentrations. We argue that SB4N-predicted environmental concentrations are useful as background concentrations in environmental risk assessment.

  5. Design and Implementation of a Threaded Search Engine for Tour Recommendation Systems

    NASA Astrophysics Data System (ADS)

    Lee, Junghoon; Park, Gyung-Leen; Ko, Jin-Hee; Shin, In-Hye; Kang, Mikyung

    This paper implements a threaded scan engine for the O(n!) search space and measures its performance, aiming at providing a responsive tour recommendation and scheduling service. As a preliminary step of integrating POI ontology, mobile object database, and personalization profile for the development of new vehicular telematics services, this implementation can give a useful guideline to design a challenging and computation-intensive vehicular telematics service. The implemented engine allocates the subtree to the respective threads and makes them run concurrently exploiting the primitives provided by the operating system and the underlying multiprocessor architecture. It also makes it easy to add a variety of constraints, for example, the search tree is pruned if the cost of partial allocation already exceeds the current best. The performance measurement result shows that the service can run even in the low-power telematics device when the number of destinations does not exceed 15, with an appropriate constraint processing.

  6. Processing communications events in parallel active messaging interface by awakening thread from wait state

    DOEpatents

    Archer, Charles J; Blocksome, Michael A; Ratterman, Joseph D; Smith, Brian E

    2013-10-22

    Processing data communications events in a parallel active messaging interface (`PAMI`) of a parallel computer that includes compute nodes that execute a parallel application, with the PAMI including data communications endpoints, and the endpoints are coupled for data communications through the PAMI and through other data communications resources, including determining by an advance function that there are no actionable data communications events pending for its context, placing by the advance function its thread of execution into a wait state, waiting for a subsequent data communications event for the context; responsive to occurrence of a subsequent data communications event for the context, awakening by the thread from the wait state; and processing by the advance function the subsequent data communications event now pending for the context.

  7. Are nano-composites and nano-ionomers suitable for orthodontic bracket bonding?

    PubMed

    Uysal, Tancan; Yagci, Ahmet; Uysal, Banu; Akdogan, Gülsen

    2010-02-01

    The aim of this study was to test nano-composite (Filtek Supreme Plus Universal) and a newly introduced nano-ionomer (Ketac N100 Light Curing Nano-Ionomer) restorative to determine their shear bond strength (SBS) and failure site locations in comparison with a conventional light-cure orthodontic bonding adhesive (Transbond XT). Sixty freshly extracted human maxillary premolar teeth were arbitrarily divided into three equal groups. The brackets were bonded to the teeth in each group with different composites, according to the manufacturers' instructions. The SBS values of the brackets were recorded in Megapascals (MPa) using a universal testing machine. Adhesive remnant index scores were determined after failure of the brackets. The data were analysed using analysis of variance, Tukey honestly significant difference, and chi-square tests. The results demonstrated that group 1 (Transbond XT, mean: 12.60 +/- 4.48 MPa) had a higher SBS than that of group 2 (nano-composite, mean: 8.33 +/- 5.16 MPa; P < 0.05) and group 3 (nano-ionomer, mean: 6.14 +/- 2.12 MPa; P < 0.001). No significant differences in debond locations were found among the three groups. Nano-composites and nano-ionomers may be suitable for bonding since they fulfil the previously suggested SBS ranges for clinical acceptability, but they are inferior to a conventional orthodontic composite.

  8. NanoRacks CubeSat Deployment

    NASA Image and Video Library

    2014-02-11

    ISS038-E-045009 (11 Feb. 2014) --- The Small Satellite Orbital Deployer (SSOD), in the grasp of the Kibo laboratory robotic arm, is photographed by an Expedition 38 crew member on the International Space Station as it deploys a set of NanoRacks CubeSats. The CubeSats program contains a variety of experiments such as Earth observations and advanced electronics testing. Station solar array panels, Earth's horizon and the blackness of space provide the backdrop for the scene.

  9. Multi-threaded integration of HTC-Vive and MeVisLab

    NASA Astrophysics Data System (ADS)

    Gunacker, Simon; Gall, Markus; Schmalstieg, Dieter; Egger, Jan

    2018-03-01

    This work presents how Virtual Reality (VR) can easily be integrated into medical applications via a plugin for a medical image processing framework called MeVisLab. A multi-threaded plugin has been developed using OpenVR, a VR library that can be used for developing vendor and platform independent VR applications. The plugin is tested using the HTC Vive, a head-mounted display developed by HTC and Valve Corporation.

  10. Magnetic Nano-Materials: Truly Sustainable Green Chemistry Nano Catalysis

    EPA Science Inventory

    We envisioned a novel nano-catalyst system, which can bridge the homogenous and heterogeneous system, and simultaneously be cheaper, easily accessible (sustainable) and possibly does not require elaborate work-up. Because of its nano-size, i.e. high surface area, the contact betw...

  11. Effect of screw threading dislocations and inverse domain boundaries in GaN on the shape of reciprocal-space maps.

    PubMed

    Barchuk, Mykhailo; Motylenko, Mykhaylo; Lukin, Gleb; Pätzold, Olf; Rafaja, David

    2017-04-01

    The microstructure of polar GaN layers, grown by upgraded high-temperature vapour phase epitaxy on [001]-oriented sapphire substrates, was studied by means of high-resolution X-ray diffraction and transmission electron microscopy. Systematic differences between reciprocal-space maps measured by X-ray diffraction and those which were simulated for different densities of threading dislocations revealed that threading dislocations are not the only microstructure defect in these GaN layers. Conventional dark-field transmission electron microscopy and convergent-beam electron diffraction detected vertical inversion domains as an additional microstructure feature. On a series of polar GaN layers with different proportions of threading dislocations and inversion domain boundaries, this contribution illustrates the capability and limitations of coplanar reciprocal-space mapping by X-ray diffraction to distinguish between these microstructure features.

  12. Yet another cause for blocked sidestream capnogram--beware of the non-threaded cap mount in heat and moisture exchangers.

    PubMed

    Umesh, Goneppanavar; Jasvinder, Kaur; Shetty, Nanda

    2009-08-01

    Heat and moisture exchangers (HME) are commonly used during general anaesthesia and intensive care of patients on mechanical ventilators. Some of the HME manufacturers provide HMEs with a Luer lock fitting for connecting side stream CO(2) monitoring line, Luer lock cap, and a non-threaded cap mount. However, HMEs from different manufacturers and HMEs meant for use in children and for adults from the same manufacturer vary in the presence/absence of non-threaded cap mount. This can create confusion to the clinicians and can result in inadvertent connection of the CO(2) monitoring line to the non-threaded cap mount resulting in blocked CO(2) monitoring line and leak in the circuit. We caution all the anaesthesiologists and intensivists regarding this possibility while using HMEs from different manufacturers.

  13. Acoustic vibrations of metal nano-objects: Time-domain investigations

    NASA Astrophysics Data System (ADS)

    Crut, Aurélien; Maioli, Paolo; Del Fatti, Natalia; Vallée, Fabrice

    2015-01-01

    Theoretical and time-domain experimental investigations of the vibrational acoustic response of nano-objects are described focusing on metallic ones. Acoustic vibrations are modeled using a macroscopic-like approach based on continuum mechanics with the proper boundary conditions, a model which yields results in excellent agreement with the experimental ones and those of atomistic calculations, down to the nanometric scale. Vibrational mode excitation and detection mechanisms and the associated mode selection in ultrafast pump-probe spectroscopy are discussed, and the measured time-dependent signals in single and ensemble of nanoparticles modeled. The launched modes, their period and their damping rate are compared to experimental results obtained on ensembles of nano-objects with different composition, morphology and environment, and with size ranging from one to hundreds of nanometers. Recent extension of time-domain spectroscopy to individual nano-objects has shed new light on the vibrational responses of isolated nanoparticles, in particular on their damping, but also raises questions on the origin of its large particle to particle dispersion.

  14. Prediction Surface Morphology of Nanostructure Fabricated by Nano-Oxidation Technology.

    PubMed

    Huang, Jen-Ching; Chang, Ho; Kuo, Chin-Guo; Li, Jeen-Fong; You, Yong-Chin

    2015-12-04

    Atomic force microscopy (AFM) was used for visualization of a nano-oxidation technique performed on diamond-like carbon (DLC) thin film. Experiments of the nano-oxidation technique of the DLC thin film include those on nano-oxidation points and nano-oxidation lines. The feature sizes of the DLC thin film, including surface morphology, depth, and width, were explored after application of a nano-oxidation technique to the DLC thin film under different process parameters. A databank for process parameters and feature sizes of thin films was then established, and multiple regression analysis (MRA) and a back-propagation neural network (BPN) were used to carry out the algorithm. The algorithmic results are compared with the feature sizes acquired from experiments, thus obtaining a prediction model of the nano-oxidation technique of the DLC thin film. The comparative results show that the prediction accuracy of BPN is superior to that of MRA. When the BPN algorithm is used to predict nano-point machining, the mean absolute percentage errors (MAPE) of depth, left side, and right side are 8.02%, 9.68%, and 7.34%, respectively. When nano-line machining is being predicted, the MAPEs of depth, left side, and right side are 4.96%, 8.09%, and 6.77%, respectively. The obtained data can also be used to predict cross-sectional morphology in the DLC thin film treated with a nano-oxidation process.

  15. Data-dependence Profiling to Enable Safe Thread Level Speculation

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

    Bhattacharyya, Arnamoy; Amaral, José Nelson; Finkel, Hal

    Data-dependence profling is a technique that enables a com- piler to judiciously decide when the execution of a loop | which the compiler could not prove to be dependence free | should be speculated through the use of Thread Level Spec- ulation (TLS). The data collected by a data-dependence pro- fler can be used to predict if may dependencies reported by a compiler static analysis are likely to materialize at runtime. A cost analysis can then be used to decide that some loops with a lower probability of dependence should be specula- tively parallelized. This paper addresses the question asmore » to whether a loops' dependence behaviour changes when the in- put to the program changes | a study of 57 different bench- marks indicates that it usually does not change. Then the paper describes SpecEval, an automatic speculative paral- lelization framework that uses single-input data-dependence profles to find speculation candidates in the SPEC2006 and PolyBench/C benchmarks. This paper also presents a per- formance evaluation of TLS implementation in IBM's Blue- Gene/Q supercomputer and shows that the performance of TLS is affected by several factors, including the number of speculated loops, the execution-time coverage of speculated loops, the miss-speculation overhead, the L1 cache miss rate and the effect on dynamic instruction path length.« less

  16. Study on Locally Confined Deposition of Si Nanocrystals in High-Aspect-Ratio Si Nano-Pillar Arrays for Nano-Electronic and Nano-Photonic Applications II

    DTIC Science & Technology

    2010-12-03

    photoluminescence characteristics of equivalent-size controlled silicon quantum dots by employing a nano-porous aluminum oxide membrane as the template for growing...synthesis of Si quantum dots (Si-QDs) embedded in low-temperature (500oC) annealed Si-rich SiOx nano-rod deposited in nano-porous anodic aluminum oxide ...characteristics of the equivalent-size controlled Si-QDs by employing the nano-porous AAO membrane as the template for growing Si-rich SiOx nano-rods

  17. Experimental investigation, model development and sensitivity analysis of rheological behavior of ZnO/10W40 nano-lubricants for automotive applications

    NASA Astrophysics Data System (ADS)

    Hemmat Esfe, Mohammad; Saedodin, Seyfolah; Rejvani, Mousa; Shahram, Jalal

    2017-06-01

    In the present study, rheological behavior of ZnO/10W40 nano-lubricant is investigated by an experimental approach. Firstly, ZnO nanoparticles of 10-30 nm were dispersed in 10W40 engine oil with solid volume fractions of 0.25-2%, then the viscosity of the composed nano-lubricant was measured in temperature ranges of 5-55 °C and in various shear rates. From analyzing the results, it was revealed that both of the base oil and nano-lubricants are non-Newtonian fluids which exhibit shear thinning behavior. Sensitivity of viscosity to the solid volume fraction enhancement was calculated by a new correlation which was proposed in terms of solid volume fraction and temperature. In order to attain an accurate model by which experimental data are predicted, an artificial neural network (ANN) with a hidden layer and 5 neurons was designed. This model was considerably accurate in predicting experimental data of dynamic viscosity as R-squared and average absolute relative deviation (AARD %) were respectively 0.9999 and 0.0502.

  18. Nano-TiO2, ultrasound and sequential nano-TiO2/ultrasonic degradation of N-acetyl-para-aminophenol from aqueous solution.

    PubMed

    Ayanda, Olushola S; Nelana, Simphiwe M; Petrik, Leslie F; Naidoo, Eliazer B

    2017-10-01

    The application of nano-TiO 2 as adsorbent combined with ultrasound for the degradation of N-acetyl-para-aminophenol (AAP) from aqueous solution was investigated. The nano-TiO 2 was characterized by means of powder X-ray diffraction (XRD), scanning electron microscopy (SEM), transmission electron microscopy (TEM), energy dispersive spectroscopy (EDS), and attenuated total reflection-Fourier transform infrared spectroscopy (ATR-FTIR). Experimental results revealed that the adsorption of AAP by nano-TiO 2 fitted the pseudo-second-order kinetic model, the equilibrium could be explained by the Freundlich isotherm and the treatment process is exothermic. The optimum removal efficiency of AAP (128.89 mg/g (77.33%)) was achieved at pH 4 when 0.03 g of nano-TiO 2 was mixed with 50 mL of 100 mg/L AAP aqueous solution at ambient temperature, 60 min contact time, and a stirring speed of 120 rpm. Ultrasound at 20 kHz and pH 3 was favorable and it resulted in 52.61% and 57.43% removal efficiency with and without the addition of nano-TiO 2 , respectively. The degradation of AAP by ultrasound followed by nano-TiO 2 treatment resulted in approximately 99.50% removal efficiency. This study showed that a sequential ultrasound and nano-TiO 2 treatment process could be employed for the removal of AAP or other emerging water and wastewater contaminants.

  19. Developing Oral Proficiency with VoiceThread: Learners' Strategic Uses and Views

    ERIC Educational Resources Information Center

    Dugartsyrenova, Vera A.; Sardegna, Veronica G.

    2017-01-01

    This study explored Russian as a foreign language (RFL) learners' self-reported strategic uses of "VoiceThread" (VT)--a multimodal asynchronous computer-mediated communication tool--in order to gain insights into learner perceived effectiveness of VT for second language (L2) oral skills development and to determine the factors that…

  20. Multi scale modeling of ignition and combustion of micro and nano aluminum particles

    NASA Astrophysics Data System (ADS)

    Puri, Puneesh

    With renewed interest in nano scale energetic materials like aluminum, many fundamental issues concerning the ignition and combustion characteristics at nano scales, remain to be clarified. The overall aim of the current study is the establishment of a unified theory accommodating the various processes and mechanisms involved in the combustion and ignition of aluminum particles at micro and nano scales. A comprehensive review on the ignition and combustion of aluminum particles at multi scales was first performed identifying various processes and mechanisms involved. Research focus was also placed on the establishment of a Molecular Dynamics (MD) simulation tool to investigate the characteristics of nano-particulate aluminum through three major studies. The general computational framework involved parallelized preprocessing, post-processing and main code with capability to simulate different ensembles using appropriate algorithms. Size dependence of melting temperature of pure aluminum particles was investigated in the first study. Phenomena like dynamic coexistence of solid and liquid phase and effect of surface charges on melting were explored. The second study involved the study of effect of defects in the form of voids on melting of bulk and particulate phase aluminum. The third MD study was used to analyze the thermo-mechanical behavior of nano-sized aluminum particles with total diameter of 5-10 nm and oxide thickness of 1-2.5 nm. The ensuing solid-solid and solid-liquid phase changes in the core and shell, stresses developed within the shell, and the diffusion of aluminum cations in the oxide layer, were explored in depth for amorphous and crystalline oxide layers. In the limiting case, the condition for pyrophoricity/explosivity of nano-particulate aluminum was analyzed and modified. The size dependence of thermodynamic properties at nano scales were considered and incorporated into the existing theories developed for micro and larger scales. Finally, a