WorldWideScience

Sample records for characterizing openmp application

  1. How Good is OpenMP

    Directory of Open Access Journals (Sweden)

    Timothy G. Mattson

    2003-01-01

    Full Text Available The OpenMP standard defines an Application Programming Interface (API for shared memory computers. Since its introduction in 1997, it has grown to become one of the most commonly used API's for parallel programming. But success in the market doesn't necessarily imply successful computer science. Is OpenMP a "good" programming environment? What does it even mean to call a programming environment good? And finally, once we understand how good or bad OpenMP is; what can we do to make it even better? In this paper, we will address these questions.

  2. A Case for Including Transactions in OpenMP

    Energy Technology Data Exchange (ETDEWEB)

    Wong, M; Bihari, B L; de Supinski, B R; Wu, P; Michael, M; Liu, Y; Chen, W

    2010-01-25

    Transactional Memory (TM) has received significant attention recently as a mechanism to reduce the complexity of shared memory programming. We explore the potential of TM to improve OpenMP applications. We combine a software TM (STM) system to support transactions with an OpenMP implementation to start thread teams and provide task and loop-level parallelization. We apply this system to two application scenarios that reflect realistic TM use cases. Our results with this system demonstrate that even with the relatively high overheads of STM, transactions can outperform OpenMP critical sections by 10%. Overall, our study demonstrates that extending OpenMP to include transactions would ease programming effort while allowing improved performance.

  3. OpenMP for Accelerators

    Energy Technology Data Exchange (ETDEWEB)

    Beyer, J C; Stotzer, E J; Hart, A; de Supinski, B R

    2011-03-15

    OpenMP [13] is the dominant programming model for shared-memory parallelism in C, C++ and Fortran due to its easy-to-use directive-based style, portability and broad support by compiler vendors. Similar characteristics are needed for a programming model for devices such as GPUs and DSPs that are gaining popularity to accelerate compute-intensive application regions. This paper presents extensions to OpenMP that provide that programming model. Our results demonstrate that a high-level programming model can provide accelerated performance comparable to hand-coded implementations in CUDA.

  4. Development of Mixed Mode MPI / OpenMP Applications

    Directory of Open Access Journals (Sweden)

    Lorna Smith

    2001-01-01

    Full Text Available MPI / OpenMP mixed mode codes could potentially offer the most effective parallelisation strategy for an SMP cluster, as well as allowing the different characteristics of both paradigms to be exploited to give the best performance on a single SMP. This paper discusses the implementation, development and performance of mixed mode MPI / OpenMP applications. The results demonstrate that this style of programming will not always be the most effective mechanism on SMP systems and cannot be regarded as the ideal programming model for all codes. In some situations, however, significant benefit may be obtained from a mixed mode implementation. For example, benefit may be obtained if the parallel (MPI code suffers from: poor scaling with MPI processes due to load imbalance or too fine a grain problem size, memory limitations due to the use of a replicated data strategy, or a restriction on the number of MPI processes combinations. In addition, if the system has a poorly optimised or limited scaling MPI implementation then a mixed mode code may increase the code performance.

  5. A Multiprogramming Aware OpenMP Implementation

    Directory of Open Access Journals (Sweden)

    Vasileios K. Barekas

    2003-01-01

    Full Text Available In this work, we present an OpenMP implementation suitable for multiprogrammed environments on Intel-based SMP systems. This implementation consists of a runtime system and a resource manager, while we use the NanosCompiler to transform OpenMP-coded applications into code with calls to our runtime system. The resource manager acts as the operating system scheduler for the applications built with our runtime system. It executes a custom made scheduling policy to distribute the available physical processors to the active applications. The runtime system cooperates with the resource manager in order to adapt each application's generated parallelism to the number of processors allocated to it, according to the resource manager scheduling policy. We use the OpenMP version of the NAS Parallel Benchmark suite in order to evaluate the performance of our implementation. In our experiments we compare the performance of our implementation with that of a commercial OpenMP implementation. The comparison proves that our approach performs better both on a dedicated and on a heavily multiprogrammed environment.

  6. Early Experiences Writing Performance Portable OpenMP 4 Codes

    Energy Technology Data Exchange (ETDEWEB)

    Joubert, Wayne [ORNL; Hernandez, Oscar R [ORNL

    2016-01-01

    In this paper, we evaluate the recently available directives in OpenMP 4 to parallelize a computational kernel using both the traditional shared memory approach and the newer accelerator targeting capabilities. In addition, we explore various transformations that attempt to increase application performance portability, and examine the expressiveness and performance implications of using these approaches. For example, we want to understand if the target map directives in OpenMP 4 improve data locality when mapped to a shared memory system, as opposed to the traditional first touch policy approach in traditional OpenMP. To that end, we use recent Cray and Intel compilers to measure the performance variations of a simple application kernel when executed on the OLCF s Titan supercomputer with NVIDIA GPUs and the Beacon system with Intel Xeon Phi accelerators attached. To better understand these trade-offs, we compare our results from traditional OpenMP shared memory implementations to the newer accelerator programming model when it is used to target both the CPU and an attached heterogeneous device. We believe the results and lessons learned as presented in this paper will be useful to the larger user community by providing guidelines that can assist programmers in the development of performance portable code.

  7. OpenMP 4.5 Validation and Verification Suite

    Energy Technology Data Exchange (ETDEWEB)

    2017-12-15

    OpenMP, a directive-based programming API, introduce directives for accelerator devices that programmers are starting to use more frequently in production codes. To make sure OpenMP directives work correctly across architectures, it is critical to have a mechanism that tests for an implementation's conformance to the OpenMP standard. This testing process can uncover ambiguities in the OpenMP specification, which helps compiler developers and users make a better use of the standard. We fill this gap through our validation and verification test suite that focuses on the offload directives available in OpenMP 4.5.

  8. Center for Programming Models for Scalable Parallel Computing - Towards Enhancing OpenMP for Manycore and Heterogeneous Nodes

    Energy Technology Data Exchange (ETDEWEB)

    Barbara Chapman

    2012-02-01

    OpenMP was not well recognized at the beginning of the project, around year 2003, because of its limited use in DoE production applications and the inmature hardware support for an efficient implementation. Yet in the recent years, it has been graduately adopted both in HPC applications, mostly in the form of MPI+OpenMP hybrid code, and in mid-scale desktop applications for scientific and experimental studies. We have observed this trend and worked deligiently to improve our OpenMP compiler and runtimes, as well as to work with the OpenMP standard organization to make sure OpenMP are evolved in the direction close to DoE missions. In the Center for Programming Models for Scalable Parallel Computing project, the HPCTools team at the University of Houston (UH), directed by Dr. Barbara Chapman, has been working with project partners, external collaborators and hardware vendors to increase the scalability and applicability of OpenMP for multi-core (and future manycore) platforms and for distributed memory systems by exploring different programming models, language extensions, compiler optimizations, as well as runtime library support.

  9. Extending OpenMP for NUMA Machines

    Directory of Open Access Journals (Sweden)

    John Bircsak

    2000-01-01

    Full Text Available This paper describes extensions to OpenMP that implement data placement features needed for NUMA architectures. OpenMP is a collection of compiler directives and library routines used to write portable parallel programs for shared-memory architectures. Writing efficient parallel programs for NUMA architectures, which have characteristics of both shared-memory and distributed-memory architectures, requires that a programmer control the placement of data in memory and the placement of computations that operate on that data. Optimal performance is obtained when computations occur on processors that have fast access to the data needed by those computations. OpenMP -- designed for shared-memory architectures -- does not by itself address these issues. The extensions to OpenMP Fortran presented here have been mainly taken from High Performance Fortran. The paper describes some of the techniques that the Compaq Fortran compiler uses to generate efficient code based on these extensions. It also describes some additional compiler optimizations, and concludes with some preliminary results.

  10. Performance Tuning of x86 OpenMP Codes with MAQAO

    Science.gov (United States)

    Barthou, Denis; Charif Rubial, Andres; Jalby, William; Koliai, Souad; Valensi, Cédric

    Failing to find the best optimization sequence for a given application code can lead to compiler generated codes with poor performances or inappropriate code. It is necessary to analyze performances from the assembly generated code to improve over the compilation process. This paper presents a tool for the performance analysis of multithreaded codes (OpenMP programs support at the moment). MAQAO relies on static performance evaluation to identify compiler optimizations and assess performance of loops. It exploits static binary rewriting for reading and instrumenting object files or executables. Static binary instrumentation allows the insertion of probes at instruction level. Memory accesses can be captured to help tune the code, but such traces require to be compressed. MAQAO can analyze the results and provide hints for tuning the code. We show on some examples how this can help users improve their OpenMP applications.

  11. A Proposal for User-defined Reductions in OpenMP

    Energy Technology Data Exchange (ETDEWEB)

    Duran, A; Ferrer, R; Klemm, M; de Supinski, B R; Ayguade, E

    2010-03-22

    Reductions are commonly used in parallel programs to produce a global result from partial results computed in parallel. Currently, OpenMP only supports reductions for primitive data types and a limited set of base language operators. This is a significant limitation for those applications that employ user-defined data types (e. g., objects). Implementing manual reduction algorithms makes software development more complex and error-prone. Additionally, an OpenMP runtime system cannot optimize a manual reduction algorithm in ways typically applied to reductions on primitive types. In this paper, we propose new mechanisms to allow the use of most pre-existing binary functions on user-defined data types as User-Defined Reduction (UDR) operators. Our measurements show that our UDR prototype implementation provides consistently good performance across a range of thread counts without increasing general runtime overheads.

  12. Overlapping Communication and Computation with OpenMP and MPI

    Directory of Open Access Journals (Sweden)

    Timothy H. Kaiser

    2001-01-01

    Full Text Available Machines comprised of a distributed collection of shared memory or SMP nodes are becoming common for parallel computing. OpenMP can be combined with MPI on many such machines. Motivations for combing OpenMP and MPI are discussed. While OpenMP is typically used for exploiting loop-level parallelism it can also be used to enable coarse grain parallelism, potentially leading to less overhead. We show how coarse grain OpenMP parallelism can also be used to facilitate overlapping MPI communication and computation for stencil-based grid programs such as a program performing Gauss-Seidel iteration with red-black ordering. Spatial subdivision or domain decomposition is used to assign a portion of the grid to each thread. One thread is assigned a null calculation region so it was free to perform communication. Example calculations were run on an IBM SP using both the Kuck & Associates and IBM compilers.

  13. A Transparent Runtime Data Distribution Engine for OpenMP

    Directory of Open Access Journals (Sweden)

    Dimitrios S. Nikolopoulos

    2000-01-01

    Full Text Available This paper makes two important contributions. First, the paper investigates the performance implications of data placement in OpenMP programs running on modern NUMA multiprocessors. Data locality and minimization of the rate of remote memory accesses are critical for sustaining high performance on these systems. We show that due to the low remote-to-local memory access latency ratio of contemporary NUMA architectures, reasonably balanced page placement schemes, such as round-robin or random distribution, incur modest performance losses. Second, the paper presents a transparent, user-level page migration engine with an ability to gain back any performance loss that stems from suboptimal placement of pages in iterative OpenMP programs. The main body of the paper describes how our OpenMP runtime environment uses page migration for implementing implicit data distribution and redistribution schemes without programmer intervention. Our experimental results verify the effectiveness of the proposed framework and provide a proof of concept that it is not necessary to introduce data distribution directives in OpenMP and warrant the simplicity or the portability of the programming model.

  14. Comparing the OpenMP, MPI, and Hybrid Programming Paradigm on an SMP Cluster

    Science.gov (United States)

    Jost, Gabriele; Jin, Hao-Qiang; anMey, Dieter; Hatay, Ferhat F.

    2003-01-01

    Clusters of SMP (Symmetric Multi-Processors) nodes provide support for a wide range of parallel programming paradigms. The shared address space within each node is suitable for OpenMP parallelization. Message passing can be employed within and across the nodes of a cluster. Multiple levels of parallelism can be achieved by combining message passing and OpenMP parallelization. Which programming paradigm is the best will depend on the nature of the given problem, the hardware components of the cluster, the network, and the available software. In this study we compare the performance of different implementations of the same CFD benchmark application, using the same numerical algorithm but employing different programming paradigms.

  15. Performance monitoring and analysis of task-based OpenMP.

    Directory of Open Access Journals (Sweden)

    Yi Ding

    Full Text Available OpenMP, a typical shared memory programming paradigm, has been extensively applied in high performance computing community due to the popularity of multicore architectures in recent years. The most significant feature of the OpenMP 3.0 specification is the introduction of the task constructs to express parallelism at a much finer level of detail. This feature, however, has posed new challenges for performance monitoring and analysis. In particular, task creation is separated from its execution, causing the traditional monitoring methods to be ineffective. This paper presents a mechanism to monitor task-based OpenMP programs with interposition and proposes two demonstration graphs for performance analysis as well. The results of two experiments are discussed to evaluate the overhead of monitoring mechanism and to verify the effects of demonstration graphs using the BOTS benchmarks.

  16. Performance Comparison of OpenMP, MPI, and MapReduce in Practical Problems

    Directory of Open Access Journals (Sweden)

    Sol Ji Kang

    2015-01-01

    Full Text Available With problem size and complexity increasing, several parallel and distributed programming models and frameworks have been developed to efficiently handle such problems. This paper briefly reviews the parallel computing models and describes three widely recognized parallel programming frameworks: OpenMP, MPI, and MapReduce. OpenMP is the de facto standard for parallel programming on shared memory systems. MPI is the de facto industry standard for distributed memory systems. MapReduce framework has become the de facto standard for large scale data-intensive applications. Qualitative pros and cons of each framework are known, but quantitative performance indexes help get a good picture of which framework to use for the applications. As benchmark problems to compare those frameworks, two problems are chosen: all-pairs-shortest-path problem and data join problem. This paper presents the parallel programs for the problems implemented on the three frameworks, respectively. It shows the experiment results on a cluster of computers. It also discusses which is the right tool for the jobs by analyzing the characteristics and performance of the paradigms.

  17. Execution Model of Three Parallel Languages: OpenMP, UPC and CAF

    Directory of Open Access Journals (Sweden)

    Ami Marowka

    2005-01-01

    Full Text Available The aim of this paper is to present a qualitative evaluation of three state-of-the-art parallel languages: OpenMP, Unified Parallel C (UPC and Co-Array Fortran (CAF. OpenMP and UPC are explicit parallel programming languages based on the ANSI standard. CAF is an implicit programming language. On the one hand, OpenMP designs for shared-memory architectures and extends the base-language by using compiler directives that annotate the original source-code. On the other hand, UPC and CAF designs for distribute-shared memory architectures and extends the base-language by new parallel constructs. We deconstruct each language into its basic components, show examples, make a detailed analysis, compare them, and finally draw some conclusions.

  18. Benchmarking and Evaluating Unified Memory for OpenMP GPU Offloading

    Energy Technology Data Exchange (ETDEWEB)

    Mishra, Alok [Stony Brook Univ., Stony Brook, NY (United States); Li, Lingda [Brookhaven National Lab. (BNL), Upton, NY (United States); Kong, Martin [Brookhaven National Lab. (BNL), Upton, NY (United States); Finkel, Hal [Argonne National Lab. (ANL), Argonne, IL (United States); Chapman, Barbara [Stony Brook Univ., Stony Brook, NY (United States); Brookhaven National Lab. (BNL), Upton, NY (United States)

    2017-01-01

    Here, the latest OpenMP standard offers automatic device offloading capabilities which facilitate GPU programming. Despite this, there remain many challenges. One of these is the unified memory feature introduced in recent GPUs. GPUs in current and future HPC systems have enhanced support for unified memory space. In such systems, CPU and GPU can access each other's memory transparently, that is, the data movement is managed automatically by the underlying system software and hardware. Memory over subscription is also possible in these systems. However, there is a significant lack of knowledge about how this mechanism will perform, and how programmers should use it. We have modified several benchmarks codes, in the Rodinia benchmark suite, to study the behavior of OpenMP accelerator extensions and have used them to explore the impact of unified memory in an OpenMP context. We moreover modified the open source LLVM compiler to allow OpenMP programs to exploit unified memory. The results of our evaluation reveal that, while the performance of unified memory is comparable with that of normal GPU offloading for benchmarks with little data reuse, it suffers from significant overhead when GPU memory is over subcribed for benchmarks with large amount of data reuse. Based on these results, we provide several guidelines for programmers to achieve better performance with unified memory.

  19. Improving Security at Work with Software that Uses OpenMP

    Directory of Open Access Journals (Sweden)

    P. S. Polishuk

    2010-03-01

    Full Text Available A model of the offender and the list of major types of threats, the conditions for the realization of which are created by using the software that uses OpenMP is considered. A method for verification of software using OpenMP for the presence of vulnerabilities associated with multi-threaded execution is offered. We give basic algorithms and the system architecture that implements the proposed method. The results of testing the method on various programs, including those containing malicious code, as well as assessment of the possibilities of applying the method in different computing environments are given.

  20. Benchmarking MILC code with OpenMP and MPI

    International Nuclear Information System (INIS)

    Gottlieb, Steven; Tamhankar, Sonali

    2001-01-01

    A trend in high performance computers that is becoming increasingly popular is the use of symmetric multi-processing (SMP) rather than the older paradigm of MPP. MPI codes that ran and scaled well on MPP machines can often be run on an SMP machine using the vendor's version of MPI. However, this approach may not make optimal use of the (expensive) SMP hardware. More significantly, there are machines like Blue Horizon, an IBM SP with 8-way SMP nodes at the San Diego Supercomputer Center that can only support 4 MPI processes per node (with the current switch). On such a machine it is imperative to be able to use OpenMP parallelism on the node, and MPI between nodes. We describe the challenges of converting MILC MPI code to using a second level of OpenMP parallelism, and benchmarks on IBM and Sun computers

  1. Effective Vectorization with OpenMP 4.5

    Energy Technology Data Exchange (ETDEWEB)

    Huber, Joseph N. [Oak Ridge National Lab. (ORNL), Oak Ridge, TN (United States); Hernandez, Oscar R. [Oak Ridge National Lab. (ORNL), Oak Ridge, TN (United States); Lopez, Matthew Graham [Oak Ridge National Lab. (ORNL), Oak Ridge, TN (United States)

    2017-03-01

    This paper describes how the Single Instruction Multiple Data (SIMD) model and its extensions in OpenMP work, and how these are implemented in different compilers. Modern processors are highly parallel computational machines which often include multiple processors capable of executing several instructions in parallel. Understanding SIMD and executing instructions in parallel allows the processor to achieve higher performance without increasing the power required to run it. SIMD instructions can significantly reduce the runtime of code by executing a single operation on large groups of data. The SIMD model is so integral to the processor s potential performance that, if SIMD is not utilized, less than half of the processor is ever actually used. Unfortunately, using SIMD instructions is a challenge in higher level languages because most programming languages do not have a way to describe them. Most compilers are capable of vectorizing code by using the SIMD instructions, but there are many code features important for SIMD vectorization that the compiler cannot determine at compile time. OpenMP attempts to solve this by extending the C++/C and Fortran programming languages with compiler directives that express SIMD parallelism. OpenMP is used to pass hints to the compiler about the code to be executed in SIMD. This is a key resource for making optimized code, but it does not change whether or not the code can use SIMD operations. However, in many cases critical functions are limited by a poor understanding of how SIMD instructions are actually implemented, as SIMD can be implemented through vector instructions or simultaneous multi-threading (SMT). We have found that it is often the case that code cannot be vectorized, or is vectorized poorly, because the programmer does not have sufficient knowledge of how SIMD instructions work.

  2. Experiences with OpenMP in tmLQCD

    Energy Technology Data Exchange (ETDEWEB)

    Deuzeman, A. [Bern Univ. (Switzerland). Albert Einstein Center for Fundamental Physics; Jansen, K. [Deutsches Elektronen-Synchrotron (DESY), Zeuthen (Germany). John von Neumann-Inst. fuer Computing NIC; Kostrzewa, B. [Humboldt Univ. Berlin (Germany). Inst. fuer Physik; Deutsches Elektronen-Synchrotron (DESY), Zeuthen (Germany). John von Neumann-Inst. fuer Computing NIC; Urbach, C. [Bonn Univ. (Germany). HISKP (Theory); Collaboration: European Twisted Mass Collaboration

    2013-11-15

    An overview is given of the lessons learned from the introduction of multi-threading using OpenMP in tmLQCD. In particular, programming style, performance measurements, cache misses, scaling, thread distribution for hybrid codes, race conditions, the overlapping of communication and computation and the measurement and reduction of certain overheads are discussed. Performance measurements and sampling profiles are given for different implementations of the hopping matrix computational kernel.

  3. Experiences with OpenMP in tmLQCD

    International Nuclear Information System (INIS)

    Deuzeman, A.

    2013-11-01

    An overview is given of the lessons learned from the introduction of multi-threading using OpenMP in tmLQCD. In particular, programming style, performance measurements, cache misses, scaling, thread distribution for hybrid codes, race conditions, the overlapping of communication and computation and the measurement and reduction of certain overheads are discussed. Performance measurements and sampling profiles are given for different implementations of the hopping matrix computational kernel.

  4. Issues Identified During September 2016 IBM OpenMP 4.5 Hackathon

    Energy Technology Data Exchange (ETDEWEB)

    Richards, David F. [Lawrence Livermore National Lab. (LLNL), Livermore, CA (United States)

    2017-03-15

    In September, 2016 IBM hosted an OpenMP 4.5 Hackathon at the TJ Watson Research Center. Teams from LLNL, ORNL, SNL, LANL, and LBNL attended the event. As with the 2015 hackathon, IBM produced an extremely useful and successful event with unmatched support from compiler team, applications staff, and facilities. Approximately 24 IBM staff supported 4-day hackathon and spent significant time 4-6 weeks out to prepare environment and become familiar with apps. This hackathon was also the first event to feature LLVM & XL C/C++ and Fortran compilers. This report records many of the issues encountered by the LLNL teams during the hackathon.

  5. OpenMP performance for benchmark 2D shallow water equations using LBM

    Science.gov (United States)

    Sabri, Khairul; Rabbani, Hasbi; Gunawan, Putu Harry

    2018-03-01

    Shallow water equations or commonly referred as Saint-Venant equations are used to model fluid phenomena. These equations can be solved numerically using several methods, like Lattice Boltzmann method (LBM), SIMPLE-like Method, Finite Difference Method, Godunov-type Method, and Finite Volume Method. In this paper, the shallow water equation will be approximated using LBM or known as LABSWE and will be simulated in performance of parallel programming using OpenMP. To evaluate the performance between 2 and 4 threads parallel algorithm, ten various number of grids Lx and Ly are elaborated. The results show that using OpenMP platform, the computational time for solving LABSWE can be decreased. For instance using grid sizes 1000 × 500, the speedup of 2 and 4 threads is observed 93.54 s and 333.243 s respectively.

  6. OpenMP parallelization of a gridded SWAT (SWATG)

    Science.gov (United States)

    Zhang, Ying; Hou, Jinliang; Cao, Yongpan; Gu, Juan; Huang, Chunlin

    2017-12-01

    Large-scale, long-term and high spatial resolution simulation is a common issue in environmental modeling. A Gridded Hydrologic Response Unit (HRU)-based Soil and Water Assessment Tool (SWATG) that integrates grid modeling scheme with different spatial representations also presents such problems. The time-consuming problem affects applications of very high resolution large-scale watershed modeling. The OpenMP (Open Multi-Processing) parallel application interface is integrated with SWATG (called SWATGP) to accelerate grid modeling based on the HRU level. Such parallel implementation takes better advantage of the computational power of a shared memory computer system. We conducted two experiments at multiple temporal and spatial scales of hydrological modeling using SWATG and SWATGP on a high-end server. At 500-m resolution, SWATGP was found to be up to nine times faster than SWATG in modeling over a roughly 2000 km2 watershed with 1 CPU and a 15 thread configuration. The study results demonstrate that parallel models save considerable time relative to traditional sequential simulation runs. Parallel computations of environmental models are beneficial for model applications, especially at large spatial and temporal scales and at high resolutions. The proposed SWATGP model is thus a promising tool for large-scale and high-resolution water resources research and management in addition to offering data fusion and model coupling ability.

  7. Performance of a Code Migration for the Simulation of Supersonic Ejector Flow to SMP, MIC, and GPU Using OpenMP, OpenMP+LEO, and OpenACC Directives

    Directory of Open Access Journals (Sweden)

    C. Couder-Castañeda

    2015-01-01

    Full Text Available A serial source code for simulating a supersonic ejector flow is accelerated using parallelization based on OpenMP and OpenACC directives. The purpose is to reduce the development costs and to simplify the maintenance of the application due to the complexity of the FORTRAN source code. This research follows well-proven strategies in order to obtain the best performance in both OpenMP and OpenACC. OpenMP has become the programming standard for scientific multicore software and OpenACC is one true alternative for graphics accelerators without the need of programming low level kernels. The strategies using OpenMP are oriented towards reducing the creation of parallel regions, tasks creation to handle boundary conditions, and a nested control of the loop time for the programming in offload mode specifically for the Xeon Phi. In OpenACC, the strategy focuses on maintaining the data regions among the executions of the kernels. Experiments for performance and validation are conducted here on a 12-core Xeon CPU, Xeon Phi 5110p, and Tesla C2070, obtaining the best performance from the latter. The Tesla C2070 presented an acceleration factor of 9.86X, 1.6X, and 4.5X compared against the serial version on CPU, 12-core Xeon CPU, and Xeon Phi, respectively.

  8. OpenMP Issues Arising in the Development of Parallel BLAS and LAPACK Libraries

    Directory of Open Access Journals (Sweden)

    C. Addison

    2003-01-01

    Full Text Available Dense linear algebra libraries need to cope efficiently with a range of input problem sizes and shapes. Inherently this means that parallel implementations have to exploit parallelism wherever it is present. While OpenMP allows relatively fine grain parallelism to be exploited in a shared memory environment it currently lacks features to make it easy to partition computation over multiple array indices or to overlap sequential and parallel computations. The inherent flexible nature of shared memory paradigms such as OpenMP poses other difficulties when it becomes necessary to optimise performance across successive parallel library calls. Notions borrowed from distributed memory paradigms, such as explicit data distributions help address some of these problems, but the focus on data rather than work distribution appears misplaced in an SMP context.

  9. Position Paper: OpenMP scheduling on ARM big.LITTLE architecture

    OpenAIRE

    Butko , Anastasiia; Bessad , Louisa; Novo , David; Bruguier , Florent; Gamatié , Abdoulaye; Sassatelli , Gilles; Torres , Lionel; Robert , Michel

    2016-01-01

    International audience; Single-ISA heterogeneous multicore systems are emerging as a promising direction to achieve a more suitable balance between performance and energy consumption. However, a proper utilization of these architectures is essential to reach the energy benefits. In this paper, we demonstrate the ineffectiveness of popular OpenMP scheduling policies executing Rodinia benchmark on the Exynos 5 Octa (5422) SoC, which integrates the ARM big.LITTLE architecture.

  10. Innovative Language-Based & Object-Oriented Structured AMR Using Fortran 90 and OpenMP

    Science.gov (United States)

    Norton, C.; Balsara, D.

    1999-01-01

    Parallel adaptive mesh refinement (AMR) is an important numerical technique that leads to the efficient solution of many physical and engineering problems. In this paper, we describe how AMR programing can be performed in an object-oreinted way using the modern aspects of Fortran 90 combined with the parallelization features of OpenMP.

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

    Science.gov (United States)

    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.

  12. Efficient Programming for Multicore Processor Heterogeneity: OpenMP versus OmpSs

    OpenAIRE

    Butko , Anastasiia; Bruguier , Florent; Gamatié , Abdoulaye; Sassatelli , Gilles

    2017-01-01

    International audience; ARM single-ISA heterogeneous multicore processors combine high-performance big cores with power-efficient small cores. They aim at achieving a suitable balance between performance and energy. How- ever, a main challenge is to program such architectures so as to efficiently exploit their features. In this paper, we study the impact on performance and energy trade-offs of single-ISA architecture according to OpenMP 3.0 and the OmpSs programming models. We consider differ...

  13. Characterizing and Mitigating Work Time Inflation in Task Parallel Programs

    Directory of Open Access Journals (Sweden)

    Stephen L. Olivier

    2013-01-01

    Full Text Available Task parallelism raises the level of abstraction in shared memory parallel programming to simplify the development of complex applications. However, task parallel applications can exhibit poor performance due to thread idleness, scheduling overheads, and work time inflation – additional time spent by threads in a multithreaded computation beyond the time required to perform the same work in a sequential computation. We identify the contributions of each factor to lost efficiency in various task parallel OpenMP applications and diagnose the causes of work time inflation in those applications. Increased data access latency can cause significant work time inflation in NUMA systems. Our locality framework for task parallel OpenMP programs mitigates this cause of work time inflation. Our extensions to the Qthreads library demonstrate that locality-aware scheduling can improve performance up to 3X compared to the Intel OpenMP task scheduler.

  14. An OpenMP Parallelisation of Real-time Processing of CERN LHC Beam Position Monitor Data

    CERN Document Server

    Renshall, H

    2012-01-01

    SUSSIX is a FORTRAN program for the post processing of turn-by-turn Beam Position Monitor (BPM) data, which computes the frequency, amplitude, and phase of tunes and resonant lines to a high degree of precision. For analysis of LHC BPM data a specific version run through a C steering code has been implemented in the CERN Control Centre to run on a server under the Linux operating system but became a real time computational bottleneck preventing truly online study of the BPM data. Timing studies showed that the independent processing of each BPMs data was a candidate for parallelization and the Open Multiprocessing (OpenMP) package with its simple insertion of compiler directives was tried. It proved to be easy to learn and use, problem free and efficient in this case reaching a factor of ten reductions in real-time over twelve cores on a dedicated server. This paper reviews the problem, shows the critical code fragments with their OpenMP directives and the results obtained.

  15. Solution of finite element problems using hybrid parallelization with MPI and OpenMP Solution of finite element problems using hybrid parallelization with MPI and OpenMP

    Directory of Open Access Journals (Sweden)

    José Miguel Vargas-Félix

    2012-11-01

    Full Text Available The Finite Element Method (FEM is used to solve problems like solid deformation and heat diffusion in domains with complex geometries. This kind of geometries requires discretization with millions of elements; this is equivalent to solve systems of equations with sparse matrices and tens or hundreds of millions of variables. The aim is to use computer clusters to solve these systems. The solution method used is Schur substructuration. Using it is possible to divide a large system of equations into many small ones to solve them more efficiently. This method allows parallelization. MPI (Message Passing Interface is used to distribute the systems of equations to solve each one in a computer of a cluster. Each system of equations is solved using a solver implemented to use OpenMP as a local parallelization method.The Finite Element Method (FEM is used to solve problems like solid deformation and heat diffusion in domains with complex geometries. This kind of geometries requires discretization with millions of elements; this is equivalent to solve systems of equations with sparse matrices and tens or hundreds of millions of variables. The aim is to use computer clusters to solve these systems. The solution method used is Schur substructuration. Using it is possible to divide a large system of equations into many small ones to solve them more efficiently. This method allows parallelization. MPI (Message Passing Interface is used to distribute the systems of equations to solve each one in a computer of a cluster. Each system of equations is solved using a solver implemented to use OpenMP as a local parallelization method.

  16. A heterogeneous computing accelerated SCE-UA global optimization method using OpenMP, OpenCL, CUDA, and OpenACC.

    Science.gov (United States)

    Kan, Guangyuan; He, Xiaoyan; Ding, Liuqian; Li, Jiren; Liang, Ke; Hong, Yang

    2017-10-01

    The shuffled complex evolution optimization developed at the University of Arizona (SCE-UA) has been successfully applied in various kinds of scientific and engineering optimization applications, such as hydrological model parameter calibration, for many years. The algorithm possesses good global optimality, convergence stability and robustness. However, benchmark and real-world applications reveal the poor computational efficiency of the SCE-UA. This research aims at the parallelization and acceleration of the SCE-UA method based on powerful heterogeneous computing technology. The parallel SCE-UA is implemented on Intel Xeon multi-core CPU (by using OpenMP and OpenCL) and NVIDIA Tesla many-core GPU (by using OpenCL, CUDA, and OpenACC). The serial and parallel SCE-UA were tested based on the Griewank benchmark function. Comparison results indicate the parallel SCE-UA significantly improves computational efficiency compared to the original serial version. The OpenCL implementation obtains the best overall acceleration results however, with the most complex source code. The parallel SCE-UA has bright prospects to be applied in real-world applications.

  17. Algorithmic differentiation of pragma-defined parallel regions differentiating computer programs containing OpenMP

    CERN Document Server

    Förster, Michael

    2014-01-01

    Numerical programs often use parallel programming techniques such as OpenMP to compute the program's output values as efficient as possible. In addition, derivative values of these output values with respect to certain input values play a crucial role. To achieve code that computes not only the output values simultaneously but also the derivative values, this work introduces several source-to-source transformation rules. These rules are based on a technique called algorithmic differentiation. The main focus of this work lies on the important reverse mode of algorithmic differentiation. The inh

  18. Python for Development of OpenMP and CUDA Kernels for Multidimensional Data

    International Nuclear Information System (INIS)

    Bell, Zane W.; Davidson, Gregory G.; D'Azevedo, Ed F.; Evans, Thomas M.; Joubert, Wayne; Munro, John K. Jr.; Patlolla, Dilip Reddy; Vacaliuc, Bogdan

    2011-01-01

    Design of data structures for high performance computing (HPC) is one of the principal challenges facing researchers looking to utilize heterogeneous computing machinery. Heterogeneous systems derive cost, power, and speed efficiency by being composed of the appropriate hardware for the task. Yet, each type of processor requires a specific organization of the application state in order to achieve peak performance. Discovering this and refactoring the code can be a challenging and time-consuming task for the researcher, as the data structures and the computational model must be co-designed. We present a methodology that uses Python as the environment for which to explore tradeoffs in both the data structure design as well as the code executing on the computation accelerator. Our method enables multi-dimensional arrays to be used effectively in any target environment. We have chosen to focus on OpenMP and CUDA environments, thus exploring the development of optimized kernels for the two most common classes of computing hardware available today: multi-core CPU and GPU. Python s large palette of file and network access routines, its associative indexing syntax and support for common HPC environments makes it relevant for diverse hardware ranging from laptops through computing clusters to the highest performance supercomputers. Our work enables researchers to accelerate the development of their codes on the computing hardware of their choice.

  19. Performance modeling of hybrid MPI/OpenMP scientific applications on large-scale multicore supercomputers

    KAUST Repository

    Wu, Xingfu; Taylor, Valerie

    2013-01-01

    In this paper, we present a performance modeling framework based on memory bandwidth contention time and a parameterized communication model to predict the performance of OpenMP, MPI and hybrid applications with weak scaling on three large-scale multicore supercomputers: IBM POWER4, POWER5+ and BlueGene/P, and analyze the performance of these MPI, OpenMP and hybrid applications. We use STREAM memory benchmarks and Intel's MPI benchmarks to provide initial performance analysis and model validation of MPI and OpenMP applications on these multicore supercomputers because the measured sustained memory bandwidth can provide insight into the memory bandwidth that a system should sustain on scientific applications with the same amount of workload per core. In addition to using these benchmarks, we also use a weak-scaling hybrid MPI/OpenMP large-scale scientific application: Gyrokinetic Toroidal Code (GTC) in magnetic fusion to validate our performance model of the hybrid application on these multicore supercomputers. The validation results for our performance modeling method show less than 7.77% error rate in predicting the performance of hybrid MPI/OpenMP GTC on up to 512 cores on these multicore supercomputers. © 2013 Elsevier Inc.

  20. Performance modeling of hybrid MPI/OpenMP scientific applications on large-scale multicore supercomputers

    KAUST Repository

    Wu, Xingfu

    2013-12-01

    In this paper, we present a performance modeling framework based on memory bandwidth contention time and a parameterized communication model to predict the performance of OpenMP, MPI and hybrid applications with weak scaling on three large-scale multicore supercomputers: IBM POWER4, POWER5+ and BlueGene/P, and analyze the performance of these MPI, OpenMP and hybrid applications. We use STREAM memory benchmarks and Intel\\'s MPI benchmarks to provide initial performance analysis and model validation of MPI and OpenMP applications on these multicore supercomputers because the measured sustained memory bandwidth can provide insight into the memory bandwidth that a system should sustain on scientific applications with the same amount of workload per core. In addition to using these benchmarks, we also use a weak-scaling hybrid MPI/OpenMP large-scale scientific application: Gyrokinetic Toroidal Code (GTC) in magnetic fusion to validate our performance model of the hybrid application on these multicore supercomputers. The validation results for our performance modeling method show less than 7.77% error rate in predicting the performance of hybrid MPI/OpenMP GTC on up to 512 cores on these multicore supercomputers. © 2013 Elsevier Inc.

  1. Parallelization of maximum likelihood fits with OpenMP and CUDA

    CERN Document Server

    Jarp, S; Leduc, J; Nowak, A; Pantaleo, F

    2011-01-01

    Data analyses based on maximum likelihood fits are commonly used in the high energy physics community for fitting statistical models to data samples. This technique requires the numerical minimization of the negative log-likelihood function. MINUIT is the most common package used for this purpose in the high energy physics community. The main algorithm in this package, MIGRAD, searches the minimum by using the gradient information. The procedure requires several evaluations of the function, depending on the number of free parameters and their initial values. The whole procedure can be very CPU-time consuming in case of complex functions, with several free parameters, many independent variables and large data samples. Therefore, it becomes particularly important to speed-up the evaluation of the negative log-likelihood function. In this paper we present an algorithm and its implementation which benefits from data vectorization and parallelization (based on OpenMP) and which was also ported to Graphics Processi...

  2. Performance Modeling of Hybrid MPI/OpenMP Scientific Applications on Large-scale Multicore Cluster Systems

    KAUST Repository

    Wu, Xingfu; Taylor, Valerie

    2011-01-01

    In this paper, we present a performance modeling framework based on memory bandwidth contention time and a parameterized communication model to predict the performance of OpenMP, MPI and hybrid applications with weak scaling on three large-scale multicore clusters: IBM POWER4, POWER5+ and Blue Gene/P, and analyze the performance of these MPI, OpenMP and hybrid applications. We use STREAM memory benchmarks to provide initial performance analysis and model validation of MPI and OpenMP applications on these multicore clusters because the measured sustained memory bandwidth can provide insight into the memory bandwidth that a system should sustain on scientific applications with the same amount of workload per core. In addition to using these benchmarks, we also use a weak-scaling hybrid MPI/OpenMP large-scale scientific application: Gyro kinetic Toroidal Code in magnetic fusion to validate our performance model of the hybrid application on these multicore clusters. The validation results for our performance modeling method show less than 7.77% error rate in predicting the performance of hybrid MPI/OpenMP GTC on up to 512 cores on these multicore clusters. © 2011 IEEE.

  3. Performance Modeling of Hybrid MPI/OpenMP Scientific Applications on Large-scale Multicore Cluster Systems

    KAUST Repository

    Wu, Xingfu

    2011-08-01

    In this paper, we present a performance modeling framework based on memory bandwidth contention time and a parameterized communication model to predict the performance of OpenMP, MPI and hybrid applications with weak scaling on three large-scale multicore clusters: IBM POWER4, POWER5+ and Blue Gene/P, and analyze the performance of these MPI, OpenMP and hybrid applications. We use STREAM memory benchmarks to provide initial performance analysis and model validation of MPI and OpenMP applications on these multicore clusters because the measured sustained memory bandwidth can provide insight into the memory bandwidth that a system should sustain on scientific applications with the same amount of workload per core. In addition to using these benchmarks, we also use a weak-scaling hybrid MPI/OpenMP large-scale scientific application: Gyro kinetic Toroidal Code in magnetic fusion to validate our performance model of the hybrid application on these multicore clusters. The validation results for our performance modeling method show less than 7.77% error rate in predicting the performance of hybrid MPI/OpenMP GTC on up to 512 cores on these multicore clusters. © 2011 IEEE.

  4. TESLA GPUs versus MPI with OpenMP for the Forward Modeling of Gravity and Gravity Gradient of Large Prisms Ensemble

    Directory of Open Access Journals (Sweden)

    Carlos Couder-Castañeda

    2013-01-01

    Full Text Available An implementation with the CUDA technology in a single and in several graphics processing units (GPUs is presented for the calculation of the forward modeling of gravitational fields from a tridimensional volumetric ensemble composed by unitary prisms of constant density. We compared the performance results obtained with the GPUs against a previous version coded in OpenMP with MPI, and we analyzed the results on both platforms. Today, the use of GPUs represents a breakthrough in parallel computing, which has led to the development of several applications with various applications. Nevertheless, in some applications the decomposition of the tasks is not trivial, as can be appreciated in this paper. Unlike a trivial decomposition of the domain, we proposed to decompose the problem by sets of prisms and use different memory spaces per processing CUDA core, avoiding the performance decay as a result of the constant calls to kernels functions which would be needed in a parallelization by observations points. The design and implementation created are the main contributions of this work, because the parallelization scheme implemented is not trivial. The performance results obtained are comparable to those of a small processing cluster.

  5. Parallel processing implementation for the coupled transport of photons and electrons using OpenMP

    Science.gov (United States)

    Doerner, Edgardo

    2016-05-01

    In this work the use of OpenMP to implement the parallel processing of the Monte Carlo (MC) simulation of the coupled transport for photons and electrons is presented. This implementation was carried out using a modified EGSnrc platform which enables the use of the Microsoft Visual Studio 2013 (VS2013) environment, together with the developing tools available in the Intel Parallel Studio XE 2015 (XE2015). The performance study of this new implementation was carried out in a desktop PC with a multi-core CPU, taking as a reference the performance of the original platform. The results were satisfactory, both in terms of scalability as parallelization efficiency.

  6. Locality-Aware Task Scheduling and Data Distribution for OpenMP Programs on NUMA Systems and Manycore Processors

    Directory of Open Access Journals (Sweden)

    Ananya Muddukrishna

    2015-01-01

    Full Text Available Performance degradation due to nonuniform data access latencies has worsened on NUMA systems and can now be felt on-chip in manycore processors. Distributing data across NUMA nodes and manycore processor caches is necessary to reduce the impact of nonuniform latencies. However, techniques for distributing data are error-prone and fragile and require low-level architectural knowledge. Existing task scheduling policies favor quick load-balancing at the expense of locality and ignore NUMA node/manycore cache access latencies while scheduling. Locality-aware scheduling, in conjunction with or as a replacement for existing scheduling, is necessary to minimize NUMA effects and sustain performance. We present a data distribution and locality-aware scheduling technique for task-based OpenMP programs executing on NUMA systems and manycore processors. Our technique relieves the programmer from thinking of NUMA system/manycore processor architecture details by delegating data distribution to the runtime system and uses task data dependence information to guide the scheduling of OpenMP tasks to reduce data stall times. We demonstrate our technique on a four-socket AMD Opteron machine with eight NUMA nodes and on the TILEPro64 processor and identify that data distribution and locality-aware task scheduling improve performance up to 69% for scientific benchmarks compared to default policies and yet provide an architecture-oblivious approach for programmers.

  7. Getting More From Your Multicore: Exploiting OpenMP for Astronomy

    Science.gov (United States)

    Noble, M. S.

    2008-08-01

    Motivated by the emergence of multicore architectures, and the reality that parallelism is rarely used for analysis in observational astronomy, we demonstrate how general users may employ tightly-coupled multiprocessors in scriptable research calculations while requiring no special knowledge of parallel programming. Our method rests on the observation that much of the appeal of high-level vectorized languages like IDL or MatLab stems from relatively simple internal loops over regular array structures, and that these loops are highly amenable to automatic parallelization with OpenMP. We discuss how ISIS, an open-source astrophysical analysis system embedding the slang numerical language, was easily adapted to exploit this pattern. Drawing from a common astrophysical problem, model fitting, we present beneficial speedups for several machine and compiler configurations. These results complement our previous efforts with PVM, and together lead us to believe that ISIS is the only general purpose spectroscopy system in which such a range of parallelism - from single processors on multiple machines to multiple processors on single machines - has been demonstrated.

  8. Application of multi-thread computing and domain decomposition to the 3-D neutronics Fem code Cronos

    International Nuclear Information System (INIS)

    Ragusa, J.C.

    2003-01-01

    The purpose of this paper is to present the parallelization of the flux solver and the isotopic depletion module of the code, either using Message Passing Interface (MPI) or OpenMP. Thread parallelism using OpenMP was used to parallelize the mixed dual FEM (finite element method) flux solver MINOS. Investigations regarding the opportunity of mixing parallelism paradigms will be discussed. The isotopic depletion module was parallelized using domain decomposition and MPI. An attempt at using OpenMP was unsuccessful and will be explained. This paper is organized as follows: the first section recalls the different types of parallelism. The mixed dual flux solver and its parallelization are then presented. In the third section, we describe the isotopic depletion solver and its parallelization; and finally conclude with some future perspectives. Parallel applications are mandatory for fine mesh 3-dimensional transport and simplified transport multigroup calculations. The MINOS solver of the FEM neutronics code CRONOS2 was parallelized using the directive based standard OpenMP. An efficiency of 80% (resp. 60%) was achieved with 2 (resp. 4) threads. Parallelization of the isotopic depletion solver was obtained using domain decomposition principles and MPI. Efficiencies greater than 90% were reached. These parallel implementations were tested on a shared memory symmetric multiprocessor (SMP) cluster machine. The OpenMP implementation in the solver MINOS is only the first step towards fully using the SMPs cluster potential with a mixed mode parallelism. Mixed mode parallelism can be achieved by combining message passing interface between clusters with OpenMP implicit parallelism within a cluster

  9. Application of multi-thread computing and domain decomposition to the 3-D neutronics Fem code Cronos

    Energy Technology Data Exchange (ETDEWEB)

    Ragusa, J.C. [CEA Saclay, Direction de l' Energie Nucleaire, Service d' Etudes des Reacteurs et de Modelisations Avancees (DEN/SERMA), 91 - Gif sur Yvette (France)

    2003-07-01

    The purpose of this paper is to present the parallelization of the flux solver and the isotopic depletion module of the code, either using Message Passing Interface (MPI) or OpenMP. Thread parallelism using OpenMP was used to parallelize the mixed dual FEM (finite element method) flux solver MINOS. Investigations regarding the opportunity of mixing parallelism paradigms will be discussed. The isotopic depletion module was parallelized using domain decomposition and MPI. An attempt at using OpenMP was unsuccessful and will be explained. This paper is organized as follows: the first section recalls the different types of parallelism. The mixed dual flux solver and its parallelization are then presented. In the third section, we describe the isotopic depletion solver and its parallelization; and finally conclude with some future perspectives. Parallel applications are mandatory for fine mesh 3-dimensional transport and simplified transport multigroup calculations. The MINOS solver of the FEM neutronics code CRONOS2 was parallelized using the directive based standard OpenMP. An efficiency of 80% (resp. 60%) was achieved with 2 (resp. 4) threads. Parallelization of the isotopic depletion solver was obtained using domain decomposition principles and MPI. Efficiencies greater than 90% were reached. These parallel implementations were tested on a shared memory symmetric multiprocessor (SMP) cluster machine. The OpenMP implementation in the solver MINOS is only the first step towards fully using the SMPs cluster potential with a mixed mode parallelism. Mixed mode parallelism can be achieved by combining message passing interface between clusters with OpenMP implicit parallelism within a cluster.

  10. 基于OpenMP的电磁场FDTD多核并行程序设计%Design of electromagnetic field FDTD multi-core parallel program based on OpenMP

    Institute of Scientific and Technical Information of China (English)

    吕忠亭; 张玉强; 崔巍

    2013-01-01

    探讨了基于OpenMP的电磁场FDTD多核并行程序设计的方法,以期实现该方法在更复杂的算法中应用具有更理想的性能提升。针对一个一维电磁场FDTD算法问题,对其计算方法与过程做了简单描述。在Fortran语言环境中,采用OpenMP+细粒度并行的方式实现了并行化,即只对循环部分进行并行计算,并将该并行方法在一个三维瞬态场电偶极子辐射FDTD程序中进行了验证。该并行算法取得了较其他并行FDTD算法更快的加速比和更高的效率。结果表明基于OpenMP的电磁场FDTD并行算法具有非常好的加速比和效率。%The method of the electromagnetic field FDTD multi-core parallel programm design based on OpenMP is dis-cussed,in order to implement ideal performance improvement of this method in the application of more sophisticated algorithms. Aiming at a problem existing in one-dimensional electromagnetic FDTD algorithm , its calculation method and process are described briefly. In Fortran language environment,the parallelism is achieved with OpenMP technology and fine-grained parallel way,that is,the parallel computation is performed only for the cycle part. The parallel method was verified in a three-dimensional transient electromagnetic field FDTD program for dipole radiation. The parallel algorithm has achieved faster speedup and higher efficiency than other parallel FDTD algoritms. The results indicate that the electromagnetic field FDTD parallel algorithm based on OpenMP has a good speedup and efficiency.

  11. Analysis OpenMP performance of AMD and Intel architecture for breaking waves simulation using MPS

    Science.gov (United States)

    Alamsyah, M. N. A.; Utomo, A.; Gunawan, P. H.

    2018-03-01

    Simulation of breaking waves by using Navier-Stokes equation via moving particle semi-implicit method (MPS) over close domain is given. The results show the parallel computing on multicore architecture using OpenMP platform can reduce the computational time almost half of the serial time. Here, the comparison using two computer architectures (AMD and Intel) are performed. The results using Intel architecture is shown better than AMD architecture in CPU time. However, in efficiency, the computer with AMD architecture gives slightly higher than the Intel. For the simulation by 1512 number of particles, the CPU time using Intel and AMD are 12662.47 and 28282.30 respectively. Moreover, the efficiency using similar number of particles, AMD obtains 50.09 % and Intel up to 49.42 %.

  12. Predictive Performance Tuning of OpenACC Accelerated Applications

    KAUST Repository

    Siddiqui, Shahzeb; Feki, Saber

    2014-01-01

    , with the introduction of high level programming models such as OpenACC [1] and OpenMP 4.0 [2], these devices are becoming more accessible and practical to use by a larger scientific community. However, performance optimization of OpenACC accelerated applications usually

  13. O impacto da paralelização com OpenMP no desempenho e na qualidade das soluções de um Algoritmo Genético

    Directory of Open Access Journals (Sweden)

    Henrique de Oliveira Gressler

    2014-11-01

    Full Text Available O Problema do Roteamento de Veículos (PRV é um problema combinatório de difícil solução, aplicável tanto para logística de empresas de transporte quanto para melhor ocupação das vias públicas. Resolvê-lo testando todas as combinações possíveis (método de força bruta torna-se inviável à medida que o problema escala, pois demanda um tempo de computação muito grande. Os Algoritmos Genéticos (AG são meta-heurísticas capazes de encontrar soluções em um tempo computacional aceitável. Entretanto, mesmo os AG podem demandar um elevado tempo de processamento, dependendo das configurações utilizadas. Com a evolução das arquiteturas computacionais e a difusão das arquiteturas multicore, o uso da programação multithread torna-se uma alternativa para reduzir o tempo envolvido na solução de problemas combinatórios. Este artigo objetiva acelerar a resolução do PRV por meio da paralelização do AG com OpenMP, que é um padrão amplamente difundido para programação multithread. Nossos resultados atingiram um speedup acima de 2, utilizando 4 threads em um processador quadcore. Esse ganho está limitado à forma como o AG está implementado. Além do impacto no desempenho do AG também comprovou-se que o uso do OpenMP não afeta a qualidade das soluções. Adicionalmente, o uso do OpenMP permitiu que o AG encontrasse melhores soluções devido ao aumento do número de evoluções computadas num mesmo intervalo de tempo.

  14. The Automatic Parallelisation of Scientific Application Codes Using a Computer Aided Parallelisation Toolkit

    Science.gov (United States)

    Ierotheou, C.; Johnson, S.; Leggett, P.; Cross, M.; Evans, E.; Jin, Hao-Qiang; Frumkin, M.; Yan, J.; Biegel, Bryan (Technical Monitor)

    2001-01-01

    The shared-memory programming model is a very effective way to achieve parallelism on shared memory parallel computers. Historically, the lack of a programming standard for using directives and the rather limited performance due to scalability have affected the take-up of this programming model approach. Significant progress has been made in hardware and software technologies, as a result the performance of parallel programs with compiler directives has also made improvements. The introduction of an industrial standard for shared-memory programming with directives, OpenMP, has also addressed the issue of portability. In this study, we have extended the computer aided parallelization toolkit (developed at the University of Greenwich), to automatically generate OpenMP based parallel programs with nominal user assistance. We outline the way in which loop types are categorized and how efficient OpenMP directives can be defined and placed using the in-depth interprocedural analysis that is carried out by the toolkit. We also discuss the application of the toolkit on the NAS Parallel Benchmarks and a number of real-world application codes. This work not only demonstrates the great potential of using the toolkit to quickly parallelize serial programs but also the good performance achievable on up to 300 processors for hybrid message passing and directive-based parallelizations.

  15. Experiences in the parallelization of the discrete ordinates method using OpenMP and MPI

    Energy Technology Data Exchange (ETDEWEB)

    Pautz, A. [TUV Hannover/Sachsen-Anhalt e.V. (Germany); Langenbuch, S. [Gesellschaft fur Anlagen- und Reaktorsicherheit (GRS) mbH (Germany)

    2003-07-01

    The method of Discrete Ordinates is in principle parallelizable to a high degree, since the transport 'mesh sweeps' are mutually independent for all angular directions. However, in the well-known production code Dort such a type of angular domain decomposition has to be done on a spatial line-byline basis, causing the parallelism in the code to be very fine-grained. The construction of scalar fluxes and moments requires a large effort for inter-thread or inter-process communication. We have implemented two different parallelization approaches in Dort: firstly, we have used a shared-memory model suitable for SMP (Symmetric Multiprocessor) machines based on the standard OpenMP. The second approach uses the well-known Message Passing Interface (MPI) to establish communication between parallel processes running in a distributed-memory environment. We investigate the benefits and drawbacks of both models and show first results on performance and scaling behaviour of the parallel Dort code. (authors)

  16. Experiences in the parallelization of the discrete ordinates method using OpenMP and MPI

    International Nuclear Information System (INIS)

    Pautz, A.; Langenbuch, S.

    2003-01-01

    The method of Discrete Ordinates is in principle parallelizable to a high degree, since the transport 'mesh sweeps' are mutually independent for all angular directions. However, in the well-known production code Dort such a type of angular domain decomposition has to be done on a spatial line-byline basis, causing the parallelism in the code to be very fine-grained. The construction of scalar fluxes and moments requires a large effort for inter-thread or inter-process communication. We have implemented two different parallelization approaches in Dort: firstly, we have used a shared-memory model suitable for SMP (Symmetric Multiprocessor) machines based on the standard OpenMP. The second approach uses the well-known Message Passing Interface (MPI) to establish communication between parallel processes running in a distributed-memory environment. We investigate the benefits and drawbacks of both models and show first results on performance and scaling behaviour of the parallel Dort code. (authors)

  17. OpenMP GNU and Intel Fortran programs for solving the time-dependent Gross-Pitaevskii equation

    Science.gov (United States)

    Young-S., Luis E.; Muruganandam, Paulsamy; Adhikari, Sadhan K.; Lončar, Vladimir; Vudragović, Dušan; Balaž, Antun

    2017-11-01

    We present Open Multi-Processing (OpenMP) version of Fortran 90 programs for solving the Gross-Pitaevskii (GP) equation for a Bose-Einstein condensate in one, two, and three spatial dimensions, optimized for use with GNU and Intel compilers. We use the split-step Crank-Nicolson algorithm for imaginary- and real-time propagation, which enables efficient calculation of stationary and non-stationary solutions, respectively. The present OpenMP programs are designed for computers with multi-core processors and optimized for compiling with both commercially-licensed Intel Fortran and popular free open-source GNU Fortran compiler. The programs are easy to use and are elaborated with helpful comments for the users. All input parameters are listed at the beginning of each program. Different output files provide physical quantities such as energy, chemical potential, root-mean-square sizes, densities, etc. We also present speedup test results for new versions of the programs. Program files doi:http://dx.doi.org/10.17632/y8zk3jgn84.2 Licensing provisions: Apache License 2.0 Programming language: OpenMP GNU and Intel Fortran 90. Computer: Any multi-core personal computer or workstation with the appropriate OpenMP-capable Fortran compiler installed. Number of processors used: All available CPU cores on the executing computer. Journal reference of previous version: Comput. Phys. Commun. 180 (2009) 1888; ibid.204 (2016) 209. Does the new version supersede the previous version?: Not completely. It does supersede previous Fortran programs from both references above, but not OpenMP C programs from Comput. Phys. Commun. 204 (2016) 209. Nature of problem: The present Open Multi-Processing (OpenMP) Fortran programs, optimized for use with commercially-licensed Intel Fortran and free open-source GNU Fortran compilers, solve the time-dependent nonlinear partial differential (GP) equation for a trapped Bose-Einstein condensate in one (1d), two (2d), and three (3d) spatial dimensions for

  18. Experiences with High-Level Programming Directives for Porting Applications to GPUs

    International Nuclear Information System (INIS)

    Ding, Wei; Chapman, Barbara; Sankaran, Ramanan; Graham, Richard L.

    2012-01-01

    HPC systems now exploit GPUs within their compute nodes to accelerate program performance. As a result, high-end application development has become extremely complex at the node level. In addition to restructuring the node code to exploit the cores and specialized devices, the programmer may need to choose a programming model such as OpenMP or CPU threads in conjunction with an accelerator programming model to share and manage the difference node resources. This comes at a time when programmer productivity and the ability to produce portable code has been recognized as a major concern. In order to offset the high development cost of creating CUDA or OpenCL kernels, directives have been proposed for programming accelerator devices, but their implications are not well known. In this paper, we evaluate the state of the art accelerator directives to program several applications kernels, explore transformations to achieve good performance, and examine the expressiveness and performance penalty of using high-level directives versus CUDA. We also compare our results to OpenMP implementations to understand the benefits of running the kernels in the accelerator versus CPU cores.

  19. RA radiological characterization database application

    International Nuclear Information System (INIS)

    Steljic, M.M; Ljubenov, V.Lj. . E-mail address of corresponding author: milijanas@vin.bg.ac.yu; Steljic, M.M.)

    2005-01-01

    Radiological characterization of the RA research reactor is one of the main activities in the first two years of the reactor decommissioning project. The raw characterization data from direct measurements or laboratory analyses (defined within the existing sampling and measurement programme) have to be interpreted, organized and summarized in order to prepare the final characterization survey report. This report should be made so that the radiological condition of the entire site is completely and accurately shown with the radiological condition of the components clearly depicted. This paper presents an electronic database application, designed as a serviceable and efficient tool for characterization data storage, review and analysis, as well as for the reports generation. Relational database model was designed and the application is made by using Microsoft Access 2002 (SP1), a 32-bit RDBMS for the desktop and client/server database applications that run under Windows XP. (author)

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

    Energy Technology Data Exchange (ETDEWEB)

    Seo, Sangmin; Amer, Abdelhalim; Balaji, Pavan; Bordage, Cyril; Bosilca, George; Brooks, Alex; Carns, Philip; Castello, Adrian; Genet, Damien; Herault, Thomas; Iwasaki, Shintaro; Jindal, Prateek; Kale, Laxmikant V.; Krishnamoorthy, Sriram; Lifflander, Jonathan; Lu, Huiwei; Meneses, Esteban; Snir, Marc; Sun, Yanhua; Taura, Kenjiro; Beckman, Pete

    2018-03-01

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

  1. Composite materials processing, applications, characterizations

    CERN Document Server

    2017-01-01

    Composite materials are used as substitutions of metals/traditional materials in aerospace, automotive, civil, mechanical and other industries. The present book collects the current knowledge and recent developments in the characterization and application of composite materials. To this purpose the volume describes the outstanding properties of this class of advanced material which recommend it for various industrial applications.

  2. Piezoelectric paint: characterization for further applications

    International Nuclear Information System (INIS)

    Yang, C; Fritzen, C-P

    2012-01-01

    Piezoelectric paint is a very attractive piezoelectric composite in many fields, such as non-destructive testing, or structural health monitoring. However, there are still many obstacles which restrict the real application of it. One of the main problems is that piezoelectric paint lacks a standard fabrication procedure, thus characterization is needed before use. The work presented here explores the characterization of piezoelectric paint. It starts with fabrication of samples with certain piezoelectric powder weight percentages. The microstructures of the samples are investigated by a scanning electron microscope; the results indicate that the fabrication method can produce high quality samples. This is followed by measurements of Young’s modulus and sensitivity. The piezoelectric charge constant d 31 is then deduced from the experimental data; the results agree well with a published result, which validates the effectiveness of the fabrication and characterization method. The characterized piezoelectric paint can expand its applications into different fields and therefore becomes a more promising and competitive smart material. (paper)

  3. Polymer Brushes: Synthesis, Characterization, Applications

    Science.gov (United States)

    Advincula, Rigoberto C.; Brittain, William J.; Caster, Kenneth C.; Rühe, Jürgen

    2004-09-01

    Materials scientists, polymer chemists, surface physicists and materials engineers will find this book a complete and detailed treatise on the field of polymer brushes, their synthesis, characterization and manifold applications. In a first section, the various synthetic pathways and different surface materials are introduced and explained, followed by a second section covering important aspects of characterization and analysis in both flat surfaces and particles. These specific surface initiated polymerization (SIP) systems such as linear polymers, homopolymers, block copolymers, and hyperbranched polymers are unique compared to previously reported systems by chemisorption or physisorption. They have found their way in both large-scale and miniature applications of polymer brushes, which is covered in the last section. Such 'hairy' surfaces offer fascinating opportunities for addressing numerous problems of both academic and, in particular, industrial interest: high-quality, functional or protective coatings, composite materials, surface engineered particles, metal-organic interfaces, biological applications, micro-patterning, colloids, nanoparticles, functional devices, and many more. It is the desire of the authors that this book will be of benefit to readers who want to "brush-up on polymers".

  4. Photocatalytic semiconductors synthesis, characterization, and environmental applications

    CERN Document Server

    Hernández-Ramírez, Aracely

    2014-01-01

    This critical volume examines the different methods used for the synthesis of a great number of photocatalysts, including TiO2, ZnO and other modified semiconductors, as well as characterization techniques used for determining the optical, structural and morphological properties of the semiconducting materials. Additionally, the authors discuss photoelectrochemical methods for determining the light activity of the photocatalytic semiconductors by means of measurement of properties such as band gap energy, flat band potential and kinetics of hole and electron transfer. Photocatalytic Semiconductors: Synthesis, Characterization and Environmental Applications provide an overview of the semiconductor materials from first- to third-generation photocatalysts and their applications in wastewater treatment and water disinfection. The book further presents economic and toxicological aspects in the production and application of photocatalytic materials.

  5. Automated quantitative micro-mineralogical characterization for environmental applications

    Science.gov (United States)

    Smith, Kathleen S.; Hoal, K.O.; Walton-Day, Katherine; Stammer, J.G.; Pietersen, K.

    2013-01-01

    Characterization of ore and waste-rock material using automated quantitative micro-mineralogical techniques (e.g., QEMSCAN® and MLA) has the potential to complement traditional acid-base accounting and humidity cell techniques when predicting acid generation and metal release. These characterization techniques, which most commonly are used for metallurgical, mineral-processing, and geometallurgical applications, can be broadly applied throughout the mine-life cycle to include numerous environmental applications. Critical insights into mineral liberation, mineral associations, particle size, particle texture, and mineralogical residence phase(s) of environmentally important elements can be used to anticipate potential environmental challenges. Resources spent on initial characterization result in lower uncertainties of potential environmental impacts and possible cost savings associated with remediation and closure. Examples illustrate mineralogical and textural characterization of fluvial tailings material from the upper Arkansas River in Colorado.

  6. Optical Thermal Characterization Enables High-Performance Electronics Applications

    Energy Technology Data Exchange (ETDEWEB)

    2016-02-01

    NREL developed a modeling and experimental strategy to characterize thermal performance of materials. The technique provides critical data on thermal properties with relevance for electronics packaging applications. Thermal contact resistance and bulk thermal conductivity were characterized for new high-performance materials such as thermoplastics, boron-nitride nanosheets, copper nanowires, and atomically bonded layers. The technique is an important tool for developing designs and materials that enable power electronics packaging with small footprint, high power density, and low cost for numerous applications.

  7. Instruction-level performance modeling and characterization of multimedia applications

    Energy Technology Data Exchange (ETDEWEB)

    Luo, Y. [Los Alamos National Lab., NM (United States). Scientific Computing Group; Cameron, K.W. [Louisiana State Univ., Baton Rouge, LA (United States). Dept. of Computer Science

    1999-06-01

    One of the challenges for characterizing and modeling realistic multimedia applications is the lack of access to source codes. On-chip performance counters effectively resolve this problem by monitoring run-time behaviors at the instruction-level. This paper presents a novel technique of characterizing and modeling workloads at the instruction level for realistic multimedia applications using hardware performance counters. A variety of instruction counts are collected from some multimedia applications, such as RealPlayer, GSM Vocoder, MPEG encoder/decoder, and speech synthesizer. These instruction counts can be used to form a set of abstract characteristic parameters directly related to a processor`s architectural features. Based on microprocessor architectural constraints and these calculated abstract parameters, the architectural performance bottleneck for a specific application can be estimated. Meanwhile, the bottleneck estimation can provide suggestions about viable architectural/functional improvement for certain workloads. The biggest advantage of this new characterization technique is a better understanding of processor utilization efficiency and architectural bottleneck for each application. This technique also provides predictive insight of future architectural enhancements and their affect on current codes. In this paper the authors also attempt to model architectural effect on processor utilization without memory influence. They derive formulas for calculating CPI{sub 0}, CPI without memory effect, and they quantify utilization of architectural parameters. These equations are architecturally diagnostic and predictive in nature. Results provide promise in code characterization, and empirical/analytical modeling.

  8. Smart materials-based actuators at the micronano-scale characterization, control, and applications

    CERN Document Server

    2013-01-01

    Smart Materials-Based Actuators at the Micro/Nano-Scale: Characterization, Control, and Applications gives a state of the art of emerging techniques to the characterization and control of actuators based on smart materials working at the micro/nano scale. The book aims to characterize some commonly used structures based on piezoelectric and electroactive polymeric actuators and also focuses on various and emerging techniques employed to control them. This book also includes two of the most emerging topics and applications: nanorobotics and cells micro/nano-manipulation. This book: Provides both theoretical and experimental results Contains complete information from characterization, modeling, identification, control to final applications for researchers and engineers that would like to model, characterize, control and apply their own micro/nano-systems Discusses applications such as microrobotics and their control, design and fabrication of microsystems, microassembly and its automation, nanorobotics and thei...

  9. Workload Characterization of CFD Applications Using Partial Differential Equation Solvers

    Science.gov (United States)

    Waheed, Abdul; Yan, Jerry; Saini, Subhash (Technical Monitor)

    1998-01-01

    Workload characterization is used for modeling and evaluating of computing systems at different levels of detail. We present workload characterization for a class of Computational Fluid Dynamics (CFD) applications that solve Partial Differential Equations (PDEs). This workload characterization focuses on three high performance computing platforms: SGI Origin2000, EBM SP-2, a cluster of Intel Pentium Pro bases PCs. We execute extensive measurement-based experiments on these platforms to gather statistics of system resource usage, which results in workload characterization. Our workload characterization approach yields a coarse-grain resource utilization behavior that is being applied for performance modeling and evaluation of distributed high performance metacomputing systems. In addition, this study enhances our understanding of interactions between PDE solver workloads and high performance computing platforms and is useful for tuning these applications.

  10. Multilevel Parallelization of AutoDock 4.2

    Directory of Open Access Journals (Sweden)

    Norgan Andrew P

    2011-04-01

    Full Text Available Abstract Background Virtual (computational screening is an increasingly important tool for drug discovery. AutoDock is a popular open-source application for performing molecular docking, the prediction of ligand-receptor interactions. AutoDock is a serial application, though several previous efforts have parallelized various aspects of the program. In this paper, we report on a multi-level parallelization of AutoDock 4.2 (mpAD4. Results Using MPI and OpenMP, AutoDock 4.2 was parallelized for use on MPI-enabled systems and to multithread the execution of individual docking jobs. In addition, code was implemented to reduce input/output (I/O traffic by reusing grid maps at each node from docking to docking. Performance of mpAD4 was examined on two multiprocessor computers. Conclusions Using MPI with OpenMP multithreading, mpAD4 scales with near linearity on the multiprocessor systems tested. In situations where I/O is limiting, reuse of grid maps reduces both system I/O and overall screening time. Multithreading of AutoDock's Lamarkian Genetic Algorithm with OpenMP increases the speed of execution of individual docking jobs, and when combined with MPI parallelization can significantly reduce the execution time of virtual screens. This work is significant in that mpAD4 speeds the execution of certain molecular docking workloads and allows the user to optimize the degree of system-level (MPI and node-level (OpenMP parallelization to best fit both workloads and computational resources.

  11. Multilevel Parallelization of AutoDock 4.2.

    Science.gov (United States)

    Norgan, Andrew P; Coffman, Paul K; Kocher, Jean-Pierre A; Katzmann, David J; Sosa, Carlos P

    2011-04-28

    Virtual (computational) screening is an increasingly important tool for drug discovery. AutoDock is a popular open-source application for performing molecular docking, the prediction of ligand-receptor interactions. AutoDock is a serial application, though several previous efforts have parallelized various aspects of the program. In this paper, we report on a multi-level parallelization of AutoDock 4.2 (mpAD4). Using MPI and OpenMP, AutoDock 4.2 was parallelized for use on MPI-enabled systems and to multithread the execution of individual docking jobs. In addition, code was implemented to reduce input/output (I/O) traffic by reusing grid maps at each node from docking to docking. Performance of mpAD4 was examined on two multiprocessor computers. Using MPI with OpenMP multithreading, mpAD4 scales with near linearity on the multiprocessor systems tested. In situations where I/O is limiting, reuse of grid maps reduces both system I/O and overall screening time. Multithreading of AutoDock's Lamarkian Genetic Algorithm with OpenMP increases the speed of execution of individual docking jobs, and when combined with MPI parallelization can significantly reduce the execution time of virtual screens. This work is significant in that mpAD4 speeds the execution of certain molecular docking workloads and allows the user to optimize the degree of system-level (MPI) and node-level (OpenMP) parallelization to best fit both workloads and computational resources.

  12. Particle and particle systems characterization small-angle scattering (SAS) applications

    CERN Document Server

    Gille, Wilfried

    2016-01-01

    Small-angle scattering (SAS) is the premier technique for the characterization of disordered nanoscale particle ensembles. SAS is produced by the particle as a whole and does not depend in any way on the internal crystal structure of the particle. Since the first applications of X-ray scattering in the 1930s, SAS has developed into a standard method in the field of materials science. SAS is a non-destructive method and can be directly applied for solid and liquid samples. Particle and Particle Systems Characterization: Small-Angle Scattering (SAS) Applications is geared to any scientist who might want to apply SAS to study tightly packed particle ensembles using elements of stochastic geometry. After completing the book, the reader should be able to demonstrate detailed knowledge of the application of SAS for the characterization of physical and chemical materials.

  13. Colorimetric Characterization of Mobile Devices for Vision Applications.

    Science.gov (United States)

    de Fez, Dolores; Luque, Maria José; García-Domene, Maria Carmen; Camps, Vicente; Piñero, David

    2016-01-01

    Available applications for vision testing in mobile devices usually do not include detailed setup instructions, sacrificing rigor to obtain portability and ease of use. In particular, colorimetric characterization processes are generally obviated. We show that different mobile devices differ also in colorimetric profile and that those differences limit the range of applications for which they are most adequate. The color reproduction characteristics of four mobile devices, two smartphones (Samsung Galaxy S4, iPhone 4s) and two tablets (Samsung Galaxy Tab 3, iPad 4), have been evaluated using two procedures: 3D LUT (Look Up Table) and a linear model assuming primary constancy and independence of the channels. The color reproduction errors have been computed with the CIEDE2000 color difference formula. There is good constancy of primaries but large deviations of additivity. The 3D LUT characterization yields smaller reproduction errors and dispersions for the Tab 3 and iPhone 4 devices, but for the iPad 4 and S4, both models are equally good. The smallest reproduction errors occur with both Apple devices, although the iPad 4 has the highest number of outliers of all devices with both colorimetric characterizations. Even though there is good constancy of primaries, the large deviations of additivity exhibited by the devices and the larger reproduction errors make any characterization based on channel independence not recommendable. The smartphone screens show, in average, the best color reproduction performance, particularly the iPhone 4, and therefore, they are more adequate for applications requiring precise color reproduction.

  14. Predictive Performance Tuning of OpenACC Accelerated Applications

    KAUST Repository

    Siddiqui, Shahzeb

    2014-05-04

    Graphics Processing Units (GPUs) are gradually becoming mainstream in supercomputing as their capabilities to significantly accelerate a large spectrum of scientific applications have been clearly identified and proven. Moreover, with the introduction of high level programming models such as OpenACC [1] and OpenMP 4.0 [2], these devices are becoming more accessible and practical to use by a larger scientific community. However, performance optimization of OpenACC accelerated applications usually requires an in-depth knowledge of the hardware and software specifications. We suggest a prediction-based performance tuning mechanism [3] to quickly tune OpenACC parameters for a given application to dynamically adapt to the execution environment on a given system. This approach is applied to a finite difference kernel to tune the OpenACC gang and vector clauses for mapping the compute kernels into the underlying accelerator architecture. Our experiments show a significant performance improvement against the default compiler parameters and a faster tuning by an order of magnitude compared to the brute force search tuning.

  15. Characterization of the materials for functional application

    International Nuclear Information System (INIS)

    Duh, J.-G.

    1997-01-01

    The development of material products with extended performances has been equally pushed by the advancement of analysis techniques. Characterization of materials for functional application will be a challenge for further analytical methodology development. In this lecture, several characterization techniques will be outlined and emphasized with respect to special function applications as follows. 1. Phase analysis, crystallite size and microstrain of chemically synthesized ceramic powders in relation to phase transformation. 2. Microstructural evolution and reliability test in the solder joint of microelectronic package. The growth morphology of the intermetallic compound and its effects on the solder joint reliability will be highlighted and discussed. 3. Mechanical properties of thin films and metallized substrates, including adhesion strength, microhardness, scratch behavior, wear resistance. Special interest will be focused on the indentation-scratch deformation associated with the coating/substrate assembly. Employment of atomic force microscope in the evaluation of nano-tribology will also be probed. 4. Diffusion-related kinetics at interface by means of theoretical modelling and electron microanalysis. (author)

  16. Graphene optoelectronics synthesis, characterization, properties, and applications

    CERN Document Server

    bin M Yusoff, Abdul Rashid

    2014-01-01

    This first book on emerging applications for this innovative material gives an up-to-date account of the many opportunities graphene offers high-end optoelectronics.The text focuses on potential as well as already realized applications, discussing metallic and passive components, such as transparent conductors and smart windows, as well as high-frequency devices, spintronics, photonics, and terahertz devices. Also included are sections on the fundamental properties, synthesis, and characterization of graphene. With its unique coverage, this book will be welcomed by materials scientists, solid-

  17. Physico-chemical characterization of functionalized polypropylenic fibers for prosthetic applications

    Science.gov (United States)

    Nisticò, Roberto; Faga, Maria Giulia; Gautier, Giovanna; Magnacca, Giuliana; D'Angelo, Domenico; Ciancio, Emanuele; Piacenza, Giacomo; Lamberti, Roberta; Martorana, Selanna

    2012-08-01

    Polypropylene (PP) fibers can be manufactured to form nets which can find application as prosthesis in hernioplasty. One of the most important problem to deal with when nets are applied in vivo consists in the reproduction of bacteria within the net fibers intersections. This occurs right after the application of the prosthesis, and causes infections, thus it is fundamental to remove bacteria in the very early stage of the nets application. This paper deals with the physico-chemical characterization of such nets, pre-treated by atmospheric pressure plasma dielectric barrier discharge apparatus (APP-DBD) and functionalized with an antibiotic drug such as chitosan. The physico-chemical characterization of sterilized nets, before and after the functionalization with chitosan, was carried out by means of scanning electron microscopy (SEM) coupled with EDS spectroscopy, FTIR spectroscopy, drop shape analysis (DSA), X-ray diffraction and thermal analyses (TGA and DSC). The aim of the work is to individuate a good strategy to characterize this kind of materials, to understand the effects of polypropylene pre-treatment on functionalization efficiency, to follow the materials ageing in order to study the effects of the surface treatment for in vivo applications.

  18. Physico-chemical characterization of functionalized polypropylenic fibers for prosthetic applications

    International Nuclear Information System (INIS)

    Nisticò, Roberto; Faga, Maria Giulia; Gautier, Giovanna; Magnacca, Giuliana; D’Angelo, Domenico; Ciancio, Emanuele; Piacenza, Giacomo; Lamberti, Roberta; Martorana, Selanna

    2012-01-01

    Polypropylene (PP) fibers can be manufactured to form nets which can find application as prosthesis in hernioplasty. One of the most important problem to deal with when nets are applied in vivo consists in the reproduction of bacteria within the net fibers intersections. This occurs right after the application of the prosthesis, and causes infections, thus it is fundamental to remove bacteria in the very early stage of the nets application. This paper deals with the physico-chemical characterization of such nets, pre-treated by atmospheric pressure plasma dielectric barrier discharge apparatus (APP-DBD) and functionalized with an antibiotic drug such as chitosan. The physico-chemical characterization of sterilized nets, before and after the functionalization with chitosan, was carried out by means of scanning electron microscopy (SEM) coupled with EDS spectroscopy, FTIR spectroscopy, drop shape analysis (DSA), X-ray diffraction and thermal analyses (TGA and DSC). The aim of the work is to individuate a good strategy to characterize this kind of materials, to understand the effects of polypropylene pre-treatment on functionalization efficiency, to follow the materials ageing in order to study the effects of the surface treatment for in vivo applications.

  19. Synthesis, Characterization and Applications in Catalysis of Polyoxometalate/Zeolite Composites

    Directory of Open Access Journals (Sweden)

    Frédéric Lefebvre

    2016-05-01

    Full Text Available An overview of the synthesis, characterization and catalytic applications of polyoxometalates/zeolites composites is given. The solids obtained by direct synthesis of the polyoxometalate in the presence of the zeolite are first described with their applications in catalysis. Those obtained by a direct mixing of the two components are then reviewed. In all cases, special care is taken in the localization of the polyoxometalate, inside the zeolite crystal, in mesopores or at the external surface of the crystals, as deduced from the characterization methods.

  20. Analysis of Parallel Algorithms on SMP Node and Cluster of Workstations Using Parallel Programming Models with New Tile-based Method for Large Biological Datasets.

    Science.gov (United States)

    Shrimankar, D D; Sathe, S R

    2016-01-01

    Sequence alignment is an important tool for describing the relationships between DNA sequences. Many sequence alignment algorithms exist, differing in efficiency, in their models of the sequences, and in the relationship between sequences. The focus of this study is to obtain an optimal alignment between two sequences of biological data, particularly DNA sequences. The algorithm is discussed with particular emphasis on time, speedup, and efficiency optimizations. Parallel programming presents a number of critical challenges to application developers. Today's supercomputer often consists of clusters of SMP nodes. Programming paradigms such as OpenMP and MPI are used to write parallel codes for such architectures. However, the OpenMP programs cannot be scaled for more than a single SMP node. However, programs written in MPI can have more than single SMP nodes. But such a programming paradigm has an overhead of internode communication. In this work, we explore the tradeoffs between using OpenMP and MPI. We demonstrate that the communication overhead incurs significantly even in OpenMP loop execution and increases with the number of cores participating. We also demonstrate a communication model to approximate the overhead from communication in OpenMP loops. Our results are astonishing and interesting to a large variety of input data files. We have developed our own load balancing and cache optimization technique for message passing model. Our experimental results show that our own developed techniques give optimum performance of our parallel algorithm for various sizes of input parameter, such as sequence size and tile size, on a wide variety of multicore architectures.

  1. Analysis of Parallel Algorithms on SMP Node and Cluster of Workstations Using Parallel Programming Models with New Tile-based Method for Large Biological Datasets

    Science.gov (United States)

    Shrimankar, D. D.; Sathe, S. R.

    2016-01-01

    Sequence alignment is an important tool for describing the relationships between DNA sequences. Many sequence alignment algorithms exist, differing in efficiency, in their models of the sequences, and in the relationship between sequences. The focus of this study is to obtain an optimal alignment between two sequences of biological data, particularly DNA sequences. The algorithm is discussed with particular emphasis on time, speedup, and efficiency optimizations. Parallel programming presents a number of critical challenges to application developers. Today’s supercomputer often consists of clusters of SMP nodes. Programming paradigms such as OpenMP and MPI are used to write parallel codes for such architectures. However, the OpenMP programs cannot be scaled for more than a single SMP node. However, programs written in MPI can have more than single SMP nodes. But such a programming paradigm has an overhead of internode communication. In this work, we explore the tradeoffs between using OpenMP and MPI. We demonstrate that the communication overhead incurs significantly even in OpenMP loop execution and increases with the number of cores participating. We also demonstrate a communication model to approximate the overhead from communication in OpenMP loops. Our results are astonishing and interesting to a large variety of input data files. We have developed our own load balancing and cache optimization technique for message passing model. Our experimental results show that our own developed techniques give optimum performance of our parallel algorithm for various sizes of input parameter, such as sequence size and tile size, on a wide variety of multicore architectures. PMID:27932868

  2. Organic nanomaterials: synthesis, characterization, and device applications

    CERN Document Server

    Torres, Tomas

    2013-01-01

    Recent developments in nanoscience and nanotechnology have given rise to a new generation of functional organic nanomaterials with controlled morphology and well-defined properties, which enable a broad range of useful applications. This book explores some of the most important of these organic nanomaterials, describing how they are synthesized and characterized. Moreover, the book explains how researchers have incorporated organic nanomaterials into devices for real-world applications.Featuring contributions from an international team of leading nanoscientists, Organic Nanomaterials is divided into five parts:Part One introduces the fundamentals of nanomaterials and self-assembled nanostructuresPart Two examines carbon nanostructures—from fullerenes to carbon nanotubes to graphene—reporting on properties, theoretical studies, and applicationsPart Three investigates key aspects of some inorganic materials, self-assembled monolayers,...

  3. Enhancing Application Performance Using Mini-Apps: Comparison of Hybrid Parallel Programming Paradigms

    Science.gov (United States)

    Lawson, Gary; Sosonkina, Masha; Baurle, Robert; Hammond, Dana

    2017-01-01

    In many fields, real-world applications for High Performance Computing have already been developed. For these applications to stay up-to-date, new parallel strategies must be explored to yield the best performance; however, restructuring or modifying a real-world application may be daunting depending on the size of the code. In this case, a mini-app may be employed to quickly explore such options without modifying the entire code. In this work, several mini-apps have been created to enhance a real-world application performance, namely the VULCAN code for complex flow analysis developed at the NASA Langley Research Center. These mini-apps explore hybrid parallel programming paradigms with Message Passing Interface (MPI) for distributed memory access and either Shared MPI (SMPI) or OpenMP for shared memory accesses. Performance testing shows that MPI+SMPI yields the best execution performance, while requiring the largest number of code changes. A maximum speedup of 23 was measured for MPI+SMPI, but only 11 was measured for MPI+OpenMP.

  4. Characterization of novel nanostructured materials for applications

    International Nuclear Information System (INIS)

    Klauser, F.

    2009-01-01

    This thesis presents a characterization of bulk- and surface properties of various (nanoscale) materials with respect to their possible use in applications. The main part of this work is dedicated to nanocrystalline Diamond films (NCD). Other materials include silicon nanoparticle films, gallium-, tungsten-, niobium- and hafnium-oxides as well as commercially available piercing materials. Diamond films of different surface terminations and morphologies were prepared and characterized, in order to realize surfaces with optimized properties for biological and medical applications. It was shown that properly terminated NCD Materials can be used as defined substrates for cell culture and cell-adhesion studies. In view of the use of NCD as coating for medical implants also in-vivo studies on the tissue attachment to differently terminated NCD surfaces were performed. NCD from chemical vapour deposition is a composite material which - in addition to diamond - also contains carbon species in grain boundaries. Thus - besides characterization of bulk properties (as hydrogen- and sp2 content or diamond grain size) - investigation of grain-boundary properties is important for the NCD-based applications presented within this thesis, including an electrochemical sensor, a thin-film acoustic resonator and a surface-plasmon- resonance based sensor. Thin films of silicon nanoparticles were studied by means of XPS-sputter depth profiling with respect to their behaviour under various oxidation conditions, such as exposure to ambient air or to oxygen plasma as well as upon electron irradiation under high-vacuum conditions. The investigation of gallium and tungsten oxides aims at their potential use as model catalysts. Besides a structural characterization, their oxidation and reduction behaviour was studied. Furthermore, a dendritic mixed-oxide system with an enhanced interface area could be prepared. Niobium and hafnium oxides are often used as dielectrics. It was the aim of the

  5. Application of Network Analysis for Characterizing Service Modularity

    DEFF Research Database (Denmark)

    Frandsen, Thomas

    2012-01-01

    The purpose of this paper is to explore the potential of the application of network analytical techniques to identify and characterize modularity of service processes. Services can be conceptualized as systems of interrelated components which can be decomposed in order to achieve a modular design...

  6. Accelerating C++ applications in Medical Physics

    CERN Multimedia

    CERN. Geneva

    2016-01-01

    The recent developments in multithreading tools in C++, like OpenMP and TBB, taking advantage of the multicore architecture of the nowadays processors, allowed the creation and improvement of powerful softwares for scientific research. This talk will be focused on the development of such software for simulations, data acquisition and image reconstruction in Positron Emission Tomography, one of the most powerful tools for cancer detection.

  7. Understanding Application Behaviours for Android Security: A Systematic Characterization

    OpenAIRE

    Cai, Haipeng; Ryder, Barbara

    2016-01-01

    In contrast to most existing research on Android focusing on specific security issues, there is little broad understanding of Android application run-time characteristics and their security implications. To mitigate this gap, we present the first dynamic characterization study of Android applications that targets such a broad understanding for Android security. Through lightweight method-level profiling, we have collected 33GB traces of method calls and inter-component communication (ICC) fro...

  8. Nanoparticles for intravascular applications: physicochemical characterization and cytotoxicity testing

    NARCIS (Netherlands)

    Matuszak, J.; Baumgartner, J.; Zaloga, J.; Juenet, M.; Da Silva, A.E.; Franke, D.; Almer, G.; Texier, I.; Faivre, D.; Metselaar, Josbert Maarten; Navarro, F.P.; Chauvierre, C.; Prassl, R.; Dézsi, L.; Urbanics, R.; Alexiou, C.; Mangge, H.; Szebeni, J.; Letourneur, D.; Cicha, I.

    2016-01-01

    Aim: We report the physicochemical analysis of nanosystems intended for cardiovascular applications and their toxicological characterization in static and dynamic cell culture conditions. Methods: Size, polydispersity and ζ-potential were determined in 10 nanoparticle systems including liposomes,

  9. Frequency-shift vs phase-shift characterization of in-liquid quartz crystal microbalance applications

    International Nuclear Information System (INIS)

    Montagut, Y. J.; Garcia, J. V.; Jimenez, Y.; Arnau, A.; March, C.; Montoya, A.

    2011-01-01

    The improvement of sensitivity in quartz crystal microbalance (QCM) applications has been addressed in the last decades by increasing the sensor fundamental frequency, following the increment of the frequency/mass sensitivity with the square of frequency predicted by Sauerbrey. However, this sensitivity improvement has not been completely transferred in terms of resolution. The decrease of frequency stability due to the increase of the phase noise, particularly in oscillators, made impossible to reach the expected resolution. A new concept of sensor characterization at constant frequency has been recently proposed. The validation of the new concept is presented in this work. An immunosensor application for the detection of a low molecular weight contaminant, the insecticide carbaryl, has been chosen for the validation. An, in principle, improved version of a balanced-bridge oscillator is validated for its use in liquids, and applied for the frequency shift characterization of the QCM immunosensor application. The classical frequency shift characterization is compared with the new phase-shift characterization concept and system proposed.

  10. A comparative critical analysis of modern task-parallel runtimes.

    Energy Technology Data Exchange (ETDEWEB)

    Wheeler, Kyle Bruce; Stark, Dylan; Murphy, Richard C.

    2012-12-01

    The rise in node-level parallelism has increased interest in task-based parallel runtimes for a wide array of application areas. Applications have a wide variety of task spawning patterns which frequently change during the course of application execution, based on the algorithm or solver kernel in use. Task scheduling and load balance regimes, however, are often highly optimized for specific patterns. This paper uses four basic task spawning patterns to quantify the impact of specific scheduling policy decisions on execution time. We compare the behavior of six publicly available tasking runtimes: Intel Cilk, Intel Threading Building Blocks (TBB), Intel OpenMP, GCC OpenMP, Qthreads, and High Performance ParalleX (HPX). With the exception of Qthreads, the runtimes prove to have schedulers that are highly sensitive to application structure. No runtime is able to provide the best performance in all cases, and those that do provide the best performance in some cases, unfortunately, provide extremely poor performance when application structure does not match the schedulers assumptions.

  11. Characterization of Electrospun Nanofibrous Scaffolds for Nanobiomedical Applications

    Science.gov (United States)

    Emul, E.; Saglam, S.; Ates, H.; Korkusuz, F.; Saglam, N.

    2016-08-01

    The electrospinning method is employed in the production of porous fiber scaffolds, and the usage of electrospun scaffolds especially as drug carrier and bone reconstructive material such as implants is promising for future applications in tissue engineering. The number of publications has grown very rapidly in this field through the fabrication of complex scaffolds, novel approaches in nanotechnology, and improvements of imaging methods. Hence, characterization of these materials has also grown significantly important for getting satisfied and accurate results. This advantageous and versatile method is ideal for mimicking bone extracellular matrix, and many biodegradable and biocompatible polymers are preferred in the field of bone reconstruction. In this study, gelatin, gelatin/nanohydroxyapatite (nHAp) and gelatin/PLLA/nHAp scaffolds were fabricated by the electrospinning process. These composite fibers showed clear and continuous morphology according to observation through a scanning electron microscope and their component analyses were also determined by Fourier transform infrared spectrometer analyses. These characterization experiments revealed the great effects of the electrospinning method for biomedical applications and have an especially important role in bone reconstruction and production of implant coating material.

  12. Testing New Programming Paradigms with NAS Parallel Benchmarks

    Science.gov (United States)

    Jin, H.; Frumkin, M.; Schultz, M.; Yan, J.

    2000-01-01

    Over the past decade, high performance computing has evolved rapidly, not only in hardware architectures but also with increasing complexity of real applications. Technologies have been developing to aim at scaling up to thousands of processors on both distributed and shared memory systems. Development of parallel programs on these computers is always a challenging task. Today, writing parallel programs with message passing (e.g. MPI) is the most popular way of achieving scalability and high performance. However, writing message passing programs is difficult and error prone. Recent years new effort has been made in defining new parallel programming paradigms. The best examples are: HPF (based on data parallelism) and OpenMP (based on shared memory parallelism). Both provide simple and clear extensions to sequential programs, thus greatly simplify the tedious tasks encountered in writing message passing programs. HPF is independent of memory hierarchy, however, due to the immaturity of compiler technology its performance is still questionable. Although use of parallel compiler directives is not new, OpenMP offers a portable solution in the shared-memory domain. Another important development involves the tremendous progress in the internet and its associated technology. Although still in its infancy, Java promisses portability in a heterogeneous environment and offers possibility to "compile once and run anywhere." In light of testing these new technologies, we implemented new parallel versions of the NAS Parallel Benchmarks (NPBs) with HPF and OpenMP directives, and extended the work with Java and Java-threads. The purpose of this study is to examine the effectiveness of alternative programming paradigms. NPBs consist of five kernels and three simulated applications that mimic the computation and data movement of large scale computational fluid dynamics (CFD) applications. We started with the serial version included in NPB2.3. Optimization of memory and cache usage

  13. Deriving a site characterization program from applicable regulations

    International Nuclear Information System (INIS)

    Voegele, M.D.; Younker, J.L.; Alexander, D.H.

    1988-01-01

    The process of deriving a site characterization program from the applicable regulations was approached by the DOE through the use of two basic organizing principles. One organizing principle is a hierarchical structure of questions about regulatory criteria related to the acquisition of site data. This set of questions is called an issues hierarchy, and it provides a topical organizing framework for developing a site characterization program. The second basic organizing principle used by the DOE and its contractors to develop a site characterization program is called performance allocation. For each issue in the issues hierarchy, a resolution strategy is developed. These strategies involve the identification of elements of the disposal system that are relevant to isolation and containment of waste or to radiological safety. It is then possible to identify performance measures and information needed from the site characterization program. This information, coupled with information about confidence in existing data and the confidence required in the data to be obtained, allows the development of testing strategies for field programs

  14. Virtual environmental applications for buried waste characterization technology evaluation report

    International Nuclear Information System (INIS)

    1995-05-01

    The project, Virtual Environment Applications for Buried Waste Characterization, was initiated in the Buried Waste Integrated Demonstration Program in fiscal year 1994. This project is a research and development effort that supports the remediation of buried waste by identifying and examining the issues, needs, and feasibility of creating virtual environments using available characterization and other data. This document describes the progress and results from this project during the past year

  15. Virtual environmental applications for buried waste characterization technology evaluation report

    Energy Technology Data Exchange (ETDEWEB)

    NONE

    1995-05-01

    The project, Virtual Environment Applications for Buried Waste Characterization, was initiated in the Buried Waste Integrated Demonstration Program in fiscal year 1994. This project is a research and development effort that supports the remediation of buried waste by identifying and examining the issues, needs, and feasibility of creating virtual environments using available characterization and other data. This document describes the progress and results from this project during the past year.

  16. Exploring performance and energy tradeoffs for irregular applications: A case study on the Tilera many-core architecture

    Energy Technology Data Exchange (ETDEWEB)

    Panyala, Ajay; Chavarría-Miranda, Daniel; Manzano, Joseph B.; Tumeo, Antonino; Halappanavar, Mahantesh

    2017-06-01

    High performance, parallel applications with irregular data accesses are becoming a critical workload class for modern systems. In particular, the execution of such workloads on emerging many-core systems is expected to be a significant component of applications in data mining, machine learning, scientific computing and graph analytics. However, power and energy constraints limit the capabilities of individual cores, memory hierarchy and on-chip interconnect of such systems, thus leading to architectural and software trade-os that must be understood in the context of the intended application’s behavior. Irregular applications are notoriously hard to optimize given their data-dependent access patterns, lack of structured locality and complex data structures and code patterns. We have ported two irregular applications, graph community detection using the Louvain method (Grappolo) and high-performance conjugate gradient (HPCCG), to the Tilera many-core system and have conducted a detailed study of platform-independent and platform-specific optimizations that improve their performance as well as reduce their overall energy consumption. To conduct this study, we employ an auto-tuning based approach that explores the optimization design space along three dimensions - memory layout schemes, GCC compiler flag choices and OpenMP loop scheduling options. We leverage MIT’s OpenTuner auto-tuning framework to explore and recommend energy optimal choices for different combinations of parameters. We then conduct an in-depth architectural characterization to understand the memory behavior of the selected workloads. Finally, we perform a correlation study to demonstrate the interplay between the hardware behavior and application characteristics. Using auto-tuning, we demonstrate whole-node energy savings and performance improvements of up to 49:6% and 60% relative to a baseline instantiation, and up to 31% and 45:4% relative to manually optimized variants.

  17. Application of value of information of tank waste characterization: A new paradigm for defining tank waste characterization requirements

    International Nuclear Information System (INIS)

    Fassbender, L.L.; Brewster, M.E.; Brothers, A.J.

    1996-11-01

    This report presents the rationale for adopting a recommended characterization strategy that uses a risk-based decision-making framework for managing the Tank Waste Characterization program at Hanford. The risk-management/value-of-information (VOI) strategy that is illustrated explicitly links each information-gathering activity to its cost and provides a mechanism to ensure that characterization funds are spent where they can produce the largest reduction in risk. The approach was developed by tailoring well-known decision analysis techniques to specific tank waste characterization applications. This report illustrates how VOI calculations are performed and demonstrates that the VOI approach can definitely be used for real Tank Waste Remediation System (TWRS) characterization problems

  18. Application of value of information of tank waste characterization: A new paradigm for defining tank waste characterization requirements

    Energy Technology Data Exchange (ETDEWEB)

    Fassbender, L.L.; Brewster, M.E.; Brothers, A.J. [and others

    1996-11-01

    This report presents the rationale for adopting a recommended characterization strategy that uses a risk-based decision-making framework for managing the Tank Waste Characterization program at Hanford. The risk-management/value-of-information (VOI) strategy that is illustrated explicitly links each information-gathering activity to its cost and provides a mechanism to ensure that characterization funds are spent where they can produce the largest reduction in risk. The approach was developed by tailoring well-known decision analysis techniques to specific tank waste characterization applications. This report illustrates how VOI calculations are performed and demonstrates that the VOI approach can definitely be used for real Tank Waste Remediation System (TWRS) characterization problems.

  19. Characterization of karak clay from pakistan for pharmaceutical and cosmetic applications

    International Nuclear Information System (INIS)

    Shah, L.A.; Silva-Valenzuela, M.G.; Valenzuela-Diaz, F.R.; Sayeg, I.J.; Carvalho, F.M.S.

    2012-01-01

    Full text: Clay, the most important, plentiful, and low cost naturally occurring mineral, is widely used in variety of industrial application including Pharmaceutical and cosmetic. Clay is the fine grained aluminosilicate mineral which shows the property of plasticity at appropriate water content, and becomes hard upon drying. In Pakistan there are different types of clay but till now neither of them properly identified nor characterize for specific industrial application. The objective of this work is to characterize Karak clay for pharmaceutical and cosmetic applications collected from deposit located at Shagai region, District Karak, Pakistan. The clay was characterized through Xray diffractometry (XRD), X-ray Fluorescence (XRF), trace elemental Analysis, Microbiological analysis, Cation exchange capacity (CEC), pH and swelling assays according to European, United States of America and Brazilian Pharmacopeias. Bulk Chemical analysis shows that the Aluminum oxide and silica oxide are present in large quantity which was confirmed by XRD that this sample has montmorillonite as a major while illite and kaolinite as minor clay minerals. Quartz of small quantity was also found as a non-clay mineral. After analyzing the results for sample it was concluded that the clay is a strong candidate for cosmetic purposes. (author)

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

    International Nuclear Information System (INIS)

    Seo, Sangmin; Amer, Abdelhalim; Balaji, Pavan; Bordage, Cyril; Bosilca, George

    2017-01-01

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

  1. Solid electrolytes general principles, characterization, materials, applications

    CERN Document Server

    Hagenmuller, Paul

    1978-01-01

    Solid Electrolytes: General Principles, Characterization, Materials, Applications presents specific theories and experimental methods in the field of superionic conductors. It discusses that high ionic conductivity in solids requires specific structural and energetic conditions. It addresses the problems involved in the study and use of solid electrolytes. Some of the topics covered in the book are the introduction to the theory of solid electrolytes; macroscopic evidence for liquid nature; structural models; kinetic models; crystal structures and fast ionic conduction; interstitial motion in

  2. Nondestructive materials characterization with applications to aerospace materials

    CERN Document Server

    Nagy, Peter; Rokhlin, Stanislav

    2004-01-01

    With an emphasis on aircraft materials, this book describes techniques for the material characterization to detect and quantify degradation processes such as corrosion and fatigue. It introduces readers to these techniques based on x-ray, ultrasonic, optical and thermal principles and demonstrates the potential of the techniques for a wide variety of applications concerning aircraft materials, especially aluminum and titanium alloys. The advantages and disadvantages of various techniques are evaluated. An introductory chapter describes the typical degradation mechanisms that must be considered and the microstructure features that have to be detected by NDE methods. Finally, some approaches for making lifetime predictions are discussed. It is suitable as a textbook in special training courses in advanced NDE and aircraft materials characterization.

  3. Characterization of New-Generation Silicon Photomultipliers for Nuclear Security Applications

    Science.gov (United States)

    Wonders, Marc A.; Chichester, David L.; Flaska, Marek

    2018-01-01

    Silicon photomultipliers have received a great deal of interest recently for use in applications spanning a wide variety of fields, including nuclear safeguards and nonproliferation. For nuclear-related applications, the ability of silicon photomultipliers to discriminate neutrons from gamma rays using pulse shape discrimination when coupled with certain organic scintillators is a characteristic of utmost importance. This work reports on progress characterizing the performance of twenty different silicon photomultipliers from five manufacturers with an emphasis on pulse shape discrimination performance and timing. Results are presented on pulse shape discrimination performance as a function of overvoltage for 6-mm x 6-mm silicon photomultipliers, and the time response to stilbene is characterized for silicon photomultipliers of three different sizes. Finally, comparison with a photomultiplier tube shows that some new-generation silicon photomultipliers can perform as well as photomultiplier tubes in neutron-gamma ray discrimination.

  4. Characterization of population exposure to organochlorines: A cluster analysis application

    NARCIS (Netherlands)

    R.M. Guimarães (Raphael Mendonça); S. Asmus (Sven); A. Burdorf (Alex)

    2013-01-01

    textabstractThis study aimed to show the results from a cluster analysis application in the characterization of population exposure to organochlorines through variables related to time and exposure dose. Characteristics of 354 subjects in a population exposed to organochlorine pesticides residues

  5. Preparation and characterization of Sb2Se3 devices for memory applications

    Science.gov (United States)

    Shylashree, N.; Uma B., V.; Dhanush, S.; Abachi, Sagar; Nisarga, A.; Aashith, K.; Sangeetha B., G.

    2018-05-01

    In this paper, A phase change material of Sb2Se3 was proposed for non volatile memory application. The thin film device preparation and characterization were carried out. The deposition method used was vapor evaporation technique and a thickness of 180nm was deposited. The switching between the SET and RESET state is shown by the I-V characterization. The change of phase was studied using R-V characterization. Different fundamental modes were also identified using Raman spectroscopy.

  6. Characterization of New-Generation Silicon Photomultipliers for Nuclear Security Applications

    Directory of Open Access Journals (Sweden)

    Wonders Marc A.

    2018-01-01

    Full Text Available Silicon photomultipliers have received a great deal of interest recently for use in applications spanning a wide variety of fields, including nuclear safeguards and nonproliferation. For nuclear-related applications, the ability of silicon photomultipliers to discriminate neutrons from gamma rays using pulse shape discrimination when coupled with certain organic scintillators is a characteristic of utmost importance. This work reports on progress characterizing the performance of twenty different silicon photomultipliers from five manufacturers with an emphasis on pulse shape discrimination performance and timing. Results are presented on pulse shape discrimination performance as a function of overvoltage for 6-mm x 6-mm silicon photomultipliers, and the time response to stilbene is characterized for silicon photomultipliers of three different sizes. Finally, comparison with a photomultiplier tube shows that some new-generation silicon photomultipliers can perform as well as photomultiplier tubes in neutron-gamma ray discrimination.

  7. A hybrid version of swan for fast and efficient practical wave modelling

    NARCIS (Netherlands)

    M. Genseberger (Menno); J. Donners

    2016-01-01

    htmlabstractIn the Netherlands, for coastal and inland water applications, wave modelling with SWAN has become a main ingredient. However, computational times are relatively high. Therefore we investigated the parallel efficiency of the current MPI and OpenMP versions of SWAN. The MPI version is

  8. CLOMP v1.5

    Energy Technology Data Exchange (ETDEWEB)

    Gyllenhaal, J. [Lawrence Livermore National Lab. (LLNL), Livermore, CA (United States)

    2018-02-01

    CLOMP is the C version of the Livermore OpenMP benchmark developed to measure OpenMP overheads and other performance impacts due to threading. For simplicity, it does not use MPI by default but it is expected to be run on the resources a threaded MPI task would use (e.g., a portion of a shared memory compute node). Compiling with -DWITH_MPI allows packing one or more nodes with CLOMP tasks and having CLOMP report OpenMP performance for the slowest MPI task. On current systems, the strong scaling performance results for 4, 8, or 16 threads are of the most interest. Suggested weak scaling inputs are provided for evaluating future systems. Since MPI is often used to place at least one MPI task per coherence or NUMA domain, it is recommended to focus OpenMP runtime measurements on a subset of node hardware where it is most possible to have low OpenMP overheads (e.g., within one coherence domain or NUMA domain).

  9. Application of radiological imaging methods to radioactive waste characterization

    Energy Technology Data Exchange (ETDEWEB)

    Tessaro, Ana Paula Gimenes; Souza, Daiane Cristini B. de; Vicente, Roberto, E-mail: aptessaro@ipen.br [Instituto de Pesquisas Energeticas e Nucleares (IPEN/CNEN-SP), Sao Paulo, SP (Brazil)

    2013-07-01

    Radiological imaging technologies are most frequently used for medical diagnostic purposes but are also useful in materials characterization and other non-medical applications in research and industry. The characterization of radioactive waste packages or waste samples can also benefit from these techniques. In this paper, the application of some imaging methods is examined for the physical characterization of radioactive wastes constituted by spent ion-exchange resins and activated charcoal beds stored at the Radioactive Waste Management Department of IPEN. These wastes are generated when the filter media of the water polishing system of the IEA-R1 Nuclear Research Reactor is no longer able to maintain the required water quality and are replaced. The IEA-R1 is a 5MW pool-type reactor, moderated and cooled by light water, and fission and activation products released from the reactor core must be continuously removed to prevent activity buildup in the water. The replacement of the sorbents is carried out by pumping from the filter tanks into several 200 L drums, each drum getting a variable amount of water. Considering that the results of radioanalytical methods to determine the concentrations of radionuclides are usually expressed on dry basis,the amount of water must be known to calculate the total activity of each package. At first sight this is a trivial problem that demanded, however some effort to be solved. The findings on this subject are reported in this paper. (author)

  10. Tuned apatitic materials: Synthesis, characterization and potential antimicrobial applications

    Science.gov (United States)

    Fierascu, Irina; Fierascu, Radu Claudiu; Somoghi, Raluca; Ion, Rodica Mariana; Moanta, Adriana; Avramescu, Sorin Marius; Damian, Celina Maria; Ditu, Lia Mara

    2018-04-01

    Inorganic antimicrobial materials can be viable for multiple applications (related to its use for new buildings with special requirements related to microbiological loading, such as hospital buildings and for consolidation of cultural heritage constructions); also the use of substituted hydroxyapatites for protection of stone artefacts against environmental factors (acidic rain) and biodeterioration it's an option to no longer use of toxic substances. This paper presents methods of synthesis and characterization of the material from the point of view of the obtained structures and final applications. The materials were characterized in terms of composition and morphology (using X-ray Diffraction, X-ray Fluorescence, Inductively coupled plasma-atomic emission spectrometry, Fourier Transform Infrared Spectroscopy, X-ray Photoelectron Spectroscopy, Surface area and pore size determination). Antimicrobial activity was tested against filamentous fungi strains and pathogenic bacteria strains, using both spot on lawn qualitative method (on agar medium) and serial microdilution quantitative method (in broth medium). Further, it was evaluated the anti-biofilm activity of the tested samples toward the most important microbial strains implicated in biofilm development, using crystal violet stained biofilms microtiter assay, followed by spectrophotometric quantitative evaluation.

  11. Morphological Characterization of Nanofibers: Methods and Application in Practice

    Directory of Open Access Journals (Sweden)

    Jakub Širc

    2012-01-01

    Full Text Available Biomedical applications such as wound dressing for skin regeneration, stem cell transplantation, or drug delivery require special demands on the three-dimensional porous scaffolds. Besides the biocompatibility and mechanical properties, the morphology is the most important attribute of the scaffold. Specific surface area, volume, and size of the pores have considerable effect on cell adhesion, growth, and proliferation. In the case of incorporated biologically active substances, their release is also influenced by the internal structure of nanofibers. Although many scientific papers are focused on the preparation of nanofibers and evaluation of biological tests, the morphological characterization was described just briefly as service methods. The aim of this paper is to summarize the methods applicable for morphological characterization of nanofibers and supplement it by the results of our research. Needleless electrospinning technique was used to prepare nanofibers from polylactide, poly(ε-caprolactone, gelatin, and polyamide. Scanning electron microscopy was used to evaluate the fiber diameters and to reveal eventual artifacts in the nanofibrous structure. Nitrogen adsorption/desorption measurements were employed to measure the specific surface areas. Mercury porosimetry was used to determine total porosities and compare pore size distributions of the prepared samples.

  12. Review on production, characterization and applications of microbial levan.

    Science.gov (United States)

    Srikanth, Rapala; Reddy, Chinta H S S Sundhar; Siddartha, Gudimalla; Ramaiah, M Janaki; Uppuluri, Kiran Babu

    2015-04-20

    Levan is a homopolymer of fructose naturally obtained from both plants and microorganisms. Microbial levans are more advantageous, economical and industrially feasible with numerous applications. Bacterial levans are much larger than those produced by plants with multiple branches and molecular weights ranging from 2 to 100 million Da. However levans from plants generally have molecular weights ranging from about 2000 to 33,000 Da. Microbial levans have wide range of applications in food, medicine, pharmaceutical, cosmetic and commercial industrial sectors. With excellent polymeric medicinal properties and ease of production, microbial levan appear as a valuable and versatile biopolymer of the future. The present article summarizes and discusses the most essential properties of bioactive microbial levan and recent developments in its production, characterization and the emerging applications in health and industry. Copyright © 2014 Elsevier Ltd. All rights reserved.

  13. Characterization of the QWN-conservation operator and applications

    International Nuclear Information System (INIS)

    Rguigui, Hafedh

    2016-01-01

    Based on the finding that the quantum white noise (QWN) conservation operator is a Wick derivation operator acting on white noise operators, we characterize the aforementioned operator by using an extended techniques of rotation invariance operators in a first place. In a second place, we use a new idea of commutation relations with respect to the QWN-derivatives. Eventually, we use the action on the number operator. As applications, we invest these results to study three types of Wick differential equations.

  14. Application of vacuum technology during nuclear fuel fabrication, inspection and characterization

    International Nuclear Information System (INIS)

    Majumdar, S.

    2003-01-01

    Full text: Vacuum technology plays very important role during various stages of fabrication, inspection and characterization of U, Pu based nuclear fuels. Controlled vacuum is needed for melting and casting of U, Pu based alloys, picture framing of the fuel meat for plate type fuel fabrication, carbothermic reduction for synthesis of (U-Pu) mixed carbide powder, dewaxing of green ceramic fuel pellets, degassing of sintered pellets and encapsulation of fuel pellets inside clad tube. Application of vacuum technology is also important during inspection and characterization of fuel materials and fuel pins by way of XRF and XRD analysis, Mass spectrometer Helium leak detection etc. A novel method of low temperature sintering of UO 2 developed at BARC using controlled vacuum as sintering atmosphere has undergone successful irradiation testing in Cirus. The paper will describe various fuel fabrication flow sheets highlighting the stages where vacuum applications are needed

  15. The characterization of weighted local hardy spaces on domains and its application.

    Science.gov (United States)

    Wang, Heng-geng; Yang, Xiao-ming

    2004-09-01

    In this paper, we give the four equivalent characterizations for the weighted local hardy spaces on Lipschitz domains. Also, we give their application for the harmonic function defined in bounded Lipschitz domains.

  16. Single step synthesis, characterization and applications of curcumin functionalized iron oxide magnetic nanoparticles

    Energy Technology Data Exchange (ETDEWEB)

    Bhandari, Rohit; Gupta, Prachi; Dziubla, Thomas; Hilt, J. Zach, E-mail: zach.hilt@uky.edu

    2016-10-01

    Magnetic iron oxide nanoparticles have been well known for their applications in magnetic resonance imaging (MRI), hyperthermia, targeted drug delivery, etc. The surface modification of these magnetic nanoparticles has been explored extensively to achieve functionalized materials with potential application in biomedical, environmental and catalysis field. Herein, we report a novel and versatile single step methodology for developing curcumin functionalized magnetic Fe{sub 3}O{sub 4} nanoparticles without any additional linkers, using a simple coprecipitation technique. The magnetic nanoparticles (MNPs) were characterized using transmission electron microscopy, X-ray diffraction, fourier transform infrared spectroscopy and thermogravimetric analysis. The developed MNPs were employed in a cellular application for protection against an inflammatory agent, a polychlorinated biphenyl (PCB) molecule. - Graphical abstract: Novel single step curcumin coated magnetic Fe{sub 3}O{sub 4} nanoparticles without any additional linkers for medical, environmental, and other applications. Display Omitted - Highlights: • A novel and versatile single step methodology for developing curcumin functionalized magnetic Fe{sub 3}O{sub 4} nanoparticles is reported. • The magnetic nanoparticles (MNPs) were characterized using TEM, XRD, FTIR and TGA. • The developed MNPs were employed in a cellular application for protection against an inflammatory agent, a polychlorinated biphenyl (PCB).

  17. Characterization and emulsification properties of rhamnolipid and sophorolipid biosurfactants and their applications.

    Science.gov (United States)

    Nguyen, Thu T; Sabatini, David A

    2011-02-18

    Due to their non-toxic nature, biodegradability and production from renewable resources, research has shown an increasing interest in the use of biosurfactants in a wide variety of applications. This paper reviews the characterization of rhamnolipid and sophorolipid biosurfactants based on their hydrophilicity/hydrophobicity and their ability to form microemulsions with a range of oils without additives. The use of the biosurfactants in applications such as detergency and vegetable oil extraction for biodiesel application is also discussed. Rhamnolipid was found to be a hydrophilic surfactant while sophorolipid was found to be very hydrophobic. Therefore, rhamnolipid and sophorolipid biosurfactants in mixtures showed robust performance in these applications.

  18. Characterization and Emulsification Properties of Rhamnolipid and Sophorolipid Biosurfactants and Their Applications

    Directory of Open Access Journals (Sweden)

    Thu T. Nguyen

    2011-02-01

    Full Text Available Due to their non-toxic nature, biodegradability and production from renewable resources, research has shown an increasing interest in the use of biosurfactants in a wide variety of applications. This paper reviews the characterization of rhamnolipid and sophorolipid biosurfactants based on their hydrophilicity/hydrophobicity and their ability to form microemulsions with a range of oils without additives. The use of the biosurfactants in applications such as detergency and vegetable oil extraction for biodiesel application is also discussed. Rhamnolipid was found to be a hydrophilic surfactant while sophorolipid was found to be very hydrophobic. Therefore, rhamnolipid and sophorolipid biosurfactants in mixtures showed robust performance in these applications.

  19. Application of Micro-XRF for Nuclear Materials Characterization and Problem Solving

    International Nuclear Information System (INIS)

    Worley, Christopher G.; Tandon, Lav; Martinez, Patrick T.; Decker, Diana L.; Schwartz, Daniel S.

    2012-01-01

    Micro-X-ray fluorescence (MXRF) used for >> 20 years To date MXRF has been underutilized for nuclear materials (NM) spatially-resolved elemental characterization. Scanning electron microscopy (SEM) with EDX much more common for NM characterization at a micro scale. But MXRF fills gap for larger 10's microns to cm 2 scales. Will present four interesting NM applications using MXRF. Demonstrated unique value of MXRF for various plutonium applications. Although SEM has much higher resolution, MXRF clearly better for these larger scale samples (especially non-conducting samples). MXRF useful to quickly identify insoluble particles in Pu/Np oxide. MXRF vital to locating HEPA filter Pu particles over cm 2 areas which were then extracted for SEM morphology and particle size distribution analysis. MXRF perfect for surface swipes which are far too large for practical SEM imaging, and loose residue would contaminate SEM vacuum chamber. MXRF imaging of ER Plutonium metal warrants further studies to explore metal elemental heterogeneity.

  20. Materials Research Society Symposium Proceedings Volume 635. Anisotropic Nanoparticles - Synthesis, Characterization and Applications

    National Research Council Canada - National Science Library

    Lyon, L

    2000-01-01

    This volume contains a series of papers originally presented at Symposium C, "Anisotropic Nanoparticles Synthesis, Characterization and Applications," at the 2000 MRS Fall Meeting in Boston, Massachusetts...

  1. Roofline model toolkit: A practical tool for architectural and program analysis

    Energy Technology Data Exchange (ETDEWEB)

    Lo, Yu Jung [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Williams, Samuel [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Van Straalen, Brian [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Ligocki, Terry J. [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Cordery, Matthew J. [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Wright, Nicholas J. [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Hall, Mary W. [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Oliker, Leonid [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States)

    2015-04-18

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

  2. Сравнение эффективности технологий OpenMP, nVidia CUDA И StarPU на примере задачи умножения матриц

    OpenAIRE

    Ханкин, К. М.; Khankin, K. M.

    2013-01-01

    Приведено описание технологий OpenMP, nVidia CUDA и StarPU, варианты решения задачи умножения двух матриц с задействованием каждой из технологий и результаты сравнения реализаций по требовательности к ресурсам. In the article the description of OpenMP, nVidia CUDA and StarPU technologies, probable solutions of two matrix multiplication problem applying these technologies and the result of solution comparison by the criterion of resource consumption are considered. Ханкин Константи...

  3. Characterization of spray deposition and drift from a low drift nozzle for aerial application at different application altitudes

    Science.gov (United States)

    A complex interaction of controllable and uncontrollable factors is involved in aerial application of crop production and protection materials. Although it is difficult to completely characterize spray deposition and drift, these important factors can be estimated with appropriate sampling protocol ...

  4. Performance Characteristics of Hybrid MPI/OpenMP Scientific Applications on a Large-Scale Multithreaded BlueGene/Q Supercomputer

    KAUST Repository

    Wu, Xingfu; Taylor, Valerie

    2013-01-01

    In this paper, we investigate the performance characteristics of five hybrid MPI/OpenMP scientific applications (two NAS Parallel benchmarks Multi-Zone SP-MZ and BT-MZ, an earthquake simulation PEQdyna, an aerospace application PMLB and a 3D particle-in-cell application GTC) on a large-scale multithreaded Blue Gene/Q supercomputer at Argonne National laboratory, and quantify the performance gap resulting from using different number of threads per node. We use performance tools and MPI profile and trace libraries available on the supercomputer to analyze and compare the performance of these hybrid scientific applications with increasing the number OpenMP threads per node, and find that increasing the number of threads to some extent saturates or worsens performance of these hybrid applications. For the strong-scaling hybrid scientific applications such as SP-MZ, BT-MZ, PEQdyna and PLMB, using 32 threads per node results in much better application efficiency than using 64 threads per node, and as increasing the number of threads per node, the FPU (Floating Point Unit) percentage decreases, and the MPI percentage (except PMLB) and IPC (Instructions per cycle) per core (except BT-MZ) increase. For the weak-scaling hybrid scientific application such as GTC, the performance trend (relative speedup) is very similar with increasing number of threads per node no matter how many nodes (32, 128, 512) are used. © 2013 IEEE.

  5. Performance Characteristics of Hybrid MPI/OpenMP Scientific Applications on a Large-Scale Multithreaded BlueGene/Q Supercomputer

    KAUST Repository

    Wu, Xingfu

    2013-07-01

    In this paper, we investigate the performance characteristics of five hybrid MPI/OpenMP scientific applications (two NAS Parallel benchmarks Multi-Zone SP-MZ and BT-MZ, an earthquake simulation PEQdyna, an aerospace application PMLB and a 3D particle-in-cell application GTC) on a large-scale multithreaded Blue Gene/Q supercomputer at Argonne National laboratory, and quantify the performance gap resulting from using different number of threads per node. We use performance tools and MPI profile and trace libraries available on the supercomputer to analyze and compare the performance of these hybrid scientific applications with increasing the number OpenMP threads per node, and find that increasing the number of threads to some extent saturates or worsens performance of these hybrid applications. For the strong-scaling hybrid scientific applications such as SP-MZ, BT-MZ, PEQdyna and PLMB, using 32 threads per node results in much better application efficiency than using 64 threads per node, and as increasing the number of threads per node, the FPU (Floating Point Unit) percentage decreases, and the MPI percentage (except PMLB) and IPC (Instructions per cycle) per core (except BT-MZ) increase. For the weak-scaling hybrid scientific application such as GTC, the performance trend (relative speedup) is very similar with increasing number of threads per node no matter how many nodes (32, 128, 512) are used. © 2013 IEEE.

  6. Goal-oriented Site Characterization in Hydrogeological Applications: An Overview

    Science.gov (United States)

    Nowak, W.; de Barros, F.; Rubin, Y.

    2011-12-01

    In this study, we address the importance of goal-oriented site characterization. Given the multiple sources of uncertainty in hydrogeological applications, information needs of modeling, prediction and decision support should be satisfied with efficient and rational field campaigns. In this work, we provide an overview of an optimal sampling design framework based on Bayesian decision theory, statistical parameter inference and Bayesian model averaging. It optimizes the field sampling campaign around decisions on environmental performance metrics (e.g., risk, arrival times, etc.) while accounting for parametric and model uncertainty in the geostatistical characterization, in forcing terms, and measurement error. The appealing aspects of the framework lie on its goal-oriented character and that it is directly linked to the confidence in a specified decision. We illustrate how these concepts could be applied in a human health risk problem where uncertainty from both hydrogeological and health parameters are accounted.

  7. Comparison of 250 MHz R10K Origin 2000 and 400 MHz Origin 2000 Using NAS Parallel Benchmarks

    Science.gov (United States)

    Turney, Raymond D.; Thigpen, William W. (Technical Monitor)

    2001-01-01

    This report describes results of benchmark tests on Steger, a 250 MHz Origin 2000 system with R10K processors, currently installed at the NASA Ames National Advanced Supercomputing (NAS) facility. For comparison purposes, the tests were also run on Lomax, a 400 MHz Origin 2000 with R12K processors. The BT, LU, and SP application benchmarks in the NAS Parallel Benchmark Suite and the kernel benchmark FT were chosen to measure system performance. Having been written to measure performance on Computational Fluid Dynamics applications, these benchmarks are assumed appropriate to represent the NAS workload. Since the NAS runs both message passing (MPI) and shared-memory, compiler directive type codes, both MPI and OpenMP versions of the benchmarks were used. The MPI versions used were the latest official release of the NAS Parallel Benchmarks, version 2.3. The OpenMP versions used were PBN3b2, a beta version that is in the process of being released. NPB 2.3 and PBN3b2 are technically different benchmarks, and NPB results are not directly comparable to PBN results.

  8. Silver Nanoparticles: Synthesis, Characterization, Properties, Applications, and Therapeutic Approaches

    Science.gov (United States)

    Zhang, Xi-Feng; Liu, Zhi-Guo; Shen, Wei; Gurunathan, Sangiliyandi

    2016-01-01

    Recent advances in nanoscience and nanotechnology radically changed the way we diagnose, treat, and prevent various diseases in all aspects of human life. Silver nanoparticles (AgNPs) are one of the most vital and fascinating nanomaterials among several metallic nanoparticles that are involved in biomedical applications. AgNPs play an important role in nanoscience and nanotechnology, particularly in nanomedicine. Although several noble metals have been used for various purposes, AgNPs have been focused on potential applications in cancer diagnosis and therapy. In this review, we discuss the synthesis of AgNPs using physical, chemical, and biological methods. We also discuss the properties of AgNPs and methods for their characterization. More importantly, we extensively discuss the multifunctional bio-applications of AgNPs; for example, as antibacterial, antifungal, antiviral, anti-inflammatory, anti-angiogenic, and anti-cancer agents, and the mechanism of the anti-cancer activity of AgNPs. In addition, we discuss therapeutic approaches and challenges for cancer therapy using AgNPs. Finally, we conclude by discussing the future perspective of AgNPs. PMID:27649147

  9. Synthesis, characterization, applications, and challenges of iron oxide nanoparticles

    Science.gov (United States)

    Ali, Attarad; Zafar, Hira; Zia, Muhammad; ul Haq, Ihsan; Phull, Abdul Rehman; Ali, Joham Sarfraz; Hussain, Altaf

    2016-01-01

    Recently, iron oxide nanoparticles (NPs) have attracted much consideration due to their unique properties, such as superparamagnetism, surface-to-volume ratio, greater surface area, and easy separation methodology. Various physical, chemical, and biological methods have been adopted to synthesize magnetic NPs with suitable surface chemistry. This review summarizes the methods for the preparation of iron oxide NPs, size and morphology control, and magnetic properties with recent bioengineering, commercial, and industrial applications. Iron oxides exhibit great potential in the fields of life sciences such as biomedicine, agriculture, and environment. Nontoxic conduct and biocompatible applications of magnetic NPs can be enriched further by special surface coating with organic or inorganic molecules, including surfactants, drugs, proteins, starches, enzymes, antibodies, nucleotides, nonionic detergents, and polyelectrolytes. Magnetic NPs can also be directed to an organ, tissue, or tumor using an external magnetic field for hyperthermic treatment of patients. Keeping in mind the current interest in iron NPs, this review is designed to report recent information from synthesis to characterization, and applications of iron NPs. PMID:27578966

  10. Development and characterization of thermal responsivehydrogel films for biomedical sensor application

    Science.gov (United States)

    López-Barriguete, Jesús Eduardo; Isoshima, Takashi; Bucio, Emilio

    2018-04-01

    Two flexible stimuli-responsive hydrogel films were elaborated as biomedical sensor application. The hydrogel systems were contained in glass moulds and synthesized using gamma radiation at a dose rate of 10.1 kGy h‑1, and absorbed dose of 50 kGy. The poly(NIPAAm) with a low critical solution temperature (LCST) close to the human body temperature, was employed as the principal component for the responsive materials. The addition of dimethyl acrylamide (DMAAm) for hydrophilic effect, methyl methacrylate (MMA) for mechanical property, and ethoxyethyl methacrylate (EEM) for mechanical property, modified the thermo dynamic transition point, obtaining viable responsive films with LCST of 36 °C and 39 °C. The samples were characterized by DSC to analyse the LCST, FT-IR to characterize the functional groups of the resulting films, AFM to examine the surface morphology, and swelling measurement to support the flexibility. Responsive ‘intelligent’ films with thermo sensitivity, biocompatibility, resistance, and conformableness are important to the development of flexible polymers for the application of biological sensor, smart membranes, or flexible electronics.

  11. Phosphates based pigments for new anti-corrosion application: Synthesis and characterization

    Science.gov (United States)

    Tbib, B.; Eddya, M.; El-Hami, K.

    2018-02-01

    Our study focused on pyrophosphates SrZn1-xMxP2O7 using four series by substituting M with manganese (Mn), cobalt (Co), nickel (Ni), and copper (Cu). They were prepared by reaction in the solid state at 1000 °C for 24 hours and then characterized by X-ray diffraction, which showed that the obtained products are pure. The characterization by UV-visible spectroscopy was used to explain the color of the obtained materials and the optical properties showing the optical energy gap and disorder of these materials. Potential application could be done using the new anti-corrosion pigments based on phosphates.

  12. Synthesis and characterization of nanocomposites ZnO / polypyrrole for anti corrosive application

    International Nuclear Information System (INIS)

    Valenca, D.P.; Bouchonneau, N.; Vieira, M.R.S.; Alves, K.G.B.; Melo, C.P. de; Urtiga Filho, S.L.

    2014-01-01

    Nanoparticles of metal oxides and conductive polymers have been investigated as alternative additives in corrosion protection of oxidizable metals. In this hybrid nanocomposites work Polypyrrole-ZnO were synthesized and characterized as a potential application as industrial paint anti corrosive additive. The different steps of the synthesis and characterization of nanocomposites are described. The nanocomposites were obtained from the emulsion polymerization of aqueous solutions of pyrrole and sodium dodecyl sulfate containing ZnO nanoparticles dispersed in the mass. The nanoparticles were characterized by scanning electron microscopy and transmission, dynamic light scattering, diffraction of X-rays and techniques of infrared spectroscopy. From the characterization techniques, it was possible to determine the average size of nanoparticles of ZnO and ZnO-Polypyrrole. The peaks in the diffraction pattern of X-rays observed in the nanocomposite were the same as in ZnO, confirming the presence of ZnO in the composite. (author)

  13. Characterization of Novel Thin-Films and Structures for Integrated Circuit and Photovoltaic Applications

    Science.gov (United States)

    Zhao, Zhao

    Thin films have been widely used in various applications. This research focuses on the characterization of novel thin films in the integrated circuits and photovoltaic techniques. The ion implanted layer in silicon can be treated as ion implanted thin film, which plays an essential role in the integrated circuits fabrication. Novel rapid annealing methods, i.e. microwave annealing and laser annealing, are conducted to activate ion dopants and repair the damages, and then are compared with the conventional rapid thermal annealing (RTA). In terms of As+ and P+ implanted Si, the electrical and structural characterization confirms that the microwave and laser annealing can achieve more efficient dopant activation and recrystallization than conventional RTA. The efficient dopant activation in microwave annealing is attributed to ion hopping under microwave field, while the liquid phase growth in laser annealing provides its efficient dopant activation. The characterization of dopants diffusion shows no visible diffusion after microwave annealing, some extent of end range of diffusion after RTA, and significant dopant diffusion after laser annealing. For photovoltaic applications, an indium-free novel three-layer thin-film structure (transparent composited electrode (TCE)) is demonstrated as a promising transparent conductive electrode for solar cells. The characterization of TCE mainly focuses on its optical and electrical properties. Transfer matrix method for optical transmittance calculation is validated and proved to be a desirable method for predicting transmittance of TCE containing continuous metal layer, and can estimate the trend of transmittance as the layer thickness changes. TiO2/Ag/TiO2 (TAgT) electrode for organic solar cells (OSCs) is then designed using numerical simulation and shows much higher Haacke figure of merit than indium tin oxide (ITO). In addition, TAgT based OSC shows better performance than ITO based OSC when compatible hole transfer layer

  14. Synthesis, characterization, bioactivity and potential application of phenolic acid grafted chitosan: A review.

    Science.gov (United States)

    Liu, Jun; Pu, Huimin; Liu, Shuang; Kan, Juan; Jin, Changhai

    2017-10-15

    In recent years, increasing attention has been paid to the grafting of phenolic acid onto chitosan in order to enhance the bioactivity and widen the application of chitosan. Here, we present a comprehensive overview on the recent advances of phenolic acid grafted chitosan (phenolic acid-g-chitosan) in many aspects, including the synthetic method, structural characterization, biological activity, physicochemical property and potential application. In general, four kinds of techniques including carbodiimide based coupling, enzyme catalyzed grafting, free radical mediated grafting and electrochemical methods are frequently used for the synthesis of phenolic acid-g-chitosan. The structural characterization of phenolic acid-g-chitosan can be determined by several instrumental methods. The physicochemical properties of chitosan are greatly altered after grafting. As compared with chitosan, phenolic acid-g-chitosan exhibits enhanced antioxidant, antimicrobial, antitumor, anti-allergic, anti-inflammatory, anti-diabetic and acetylcholinesterase inhibitory activities. Notably, phenolic acid-g-chitosan shows potential applications in many fields as coating agent, packing material, encapsulation agent and bioadsorbent. Copyright © 2017 Elsevier Ltd. All rights reserved.

  15. Characterization of SPAD Array for Multifocal High-Content Screening Applications

    Directory of Open Access Journals (Sweden)

    Anthony Tsikouras

    2016-10-01

    Full Text Available Current instruments used to detect specific protein-protein interactions in live cells for applications in high-content screening (HCS are limited by the time required to measure the lifetime. Here, a 32 × 1 single-photon avalanche diode (SPAD array was explored as a detector for fluorescence lifetime imaging (FLIM in HCS. Device parameters and characterization results were interpreted in the context of the application to determine if the SPAD array could satisfy the requirements of HCS-FLIM. Fluorescence lifetime measurements were performed using a known fluorescence standard; and the recovered fluorescence lifetime matched literature reported values. The design of a theoretical 32 × 32 SPAD array was also considered as a detector for a multi-point confocal scanning microscope.

  16. Background Characterization Techniques For Pattern Recognition Applications

    Science.gov (United States)

    Noah, Meg A.; Noah, Paul V.; Schroeder, John W.; Kessler, Bernard V.; Chernick, Julian A.

    1989-08-01

    The Department of Defense has a requirement to investigate technologies for the detection of air and ground vehicles in a clutter environment. The use of autonomous systems using infrared, visible, and millimeter wave detectors has the potential to meet DOD's needs. In general, however, the hard-ware technology (large detector arrays with high sensitivity) has outpaced the development of processing techniques and software. In a complex background scene the "problem" is as much one of clutter rejection as it is target detection. The work described in this paper has investigated a new, and innovative, methodology for background clutter characterization, target detection and target identification. The approach uses multivariate statistical analysis to evaluate a set of image metrics applied to infrared cloud imagery and terrain clutter scenes. The techniques are applied to two distinct problems: the characterization of atmospheric water vapor cloud scenes for the Navy's Infrared Search and Track (IRST) applications to support the Infrared Modeling Measurement and Analysis Program (IRAMMP); and the detection of ground vehicles for the Army's Autonomous Homing Munitions (AHM) problems. This work was sponsored under two separate Small Business Innovative Research (SBIR) programs by the Naval Surface Warfare Center (NSWC), White Oak MD, and the Army Material Systems Analysis Activity at Aberdeen Proving Ground MD. The software described in this paper will be available from the respective contract technical representatives.

  17. Characterization of dielectric properties of nanocellulose from wood and algae for electrical insulator applications.

    Science.gov (United States)

    Le Bras, David; Strømme, Maria; Mihranyan, Albert

    2015-05-07

    Cellulose is one of the oldest electrically insulating materials used in oil-filled high-power transformers and cables. However, reports on the dielectric properties of nanocellulose for electrical insulator applications are scarce. The aim of this study was to characterize the dielectric properties of two nanocellulose types from wood, viz., nanofibrillated cellulose (NFC), and algae, viz., Cladophora cellulose, for electrical insulator applications. The cellulose materials were characterized with X-ray diffraction, nitrogen gas and moisture sorption isotherms, helium pycnometry, mechanical testing, and dielectric spectroscopy at various relative humidities. The algae nanocellulose sample was more crystalline and had a lower moisture sorption capacity at low and moderate relative humidities, compared to NFC. On the other hand, it was much more porous, which resulted in lower strength and higher dielectric loss than for NFC. It is concluded that the solid-state properties of nanocellulose may have a substantial impact on the dielectric properties of electrical insulator applications.

  18. Recent Advances in Two-Dimensional Materials with Charge Density Waves: Synthesis, Characterization and Applications

    Directory of Open Access Journals (Sweden)

    Mongur Hossain

    2017-10-01

    Full Text Available Recently, two-dimensional (2D charge density wave (CDW materials have attracted extensive interest due to potential applications as high performance functional nanomaterials. As other 2D materials, 2D CDW materials are layered materials with strong in-plane bonding and weak out-of-plane interactions enabling exfoliation into layers of single unit cell thickness. Although bulk CDW materials have been studied for decades, recent developments in nanoscale characterization and device fabrication have opened up new opportunities allowing applications such as oscillators, electrodes in supercapacitors, energy storage and conversion, sensors and spinelectronic devices. In this review, we first outline the synthesis techniques of 2D CDW materials including mechanical exfoliation, liquid exfoliation, chemical vapor transport (CVT, chemical vapor deposition (CVD, molecular beam epitaxy (MBE and electrochemical exfoliation. Then, the characterization procedure of the 2D CDW materials such as temperature-dependent Raman spectroscopy, temperature-dependent resistivity, magnetic susceptibility and scanning tunneling microscopy (STM are reviewed. Finally, applications of 2D CDW materials are reviewed.

  19. Application of thermometric methods for detection and characterization of leakages in embankment dams

    Energy Technology Data Exchange (ETDEWEB)

    Beck, Y.L.; Cunat, P.; Fry, J.J. [EDF, Grenoble (France); Faure, Y.H. [LTHE, Saint Martin d' Heres (France)

    2010-07-01

    The earliest possible detection of leakages in dikes is essential. Distributed temperature measurements using fibre optics allow the monitoring of large sections of the dike with a high spatial and temperature resolution. This paper presented the application of thermometric methods for detection and characterization of leakage in embankment dams. After a brief description of the system used, its application on a controlled experimental site and an EDF industrial site instrumented with fibre optics was presented. The instrumentation is complemented by installation of local temperature and pressure sensors in the piezometers for complete characterization of the detected leakages. The analysis of the results data clearly allowed detecting the leakages. The vertical location, intensity and location of the detected leakages were also identified. It was found that thermometry is potentially very powerful for detecting leaks and as a diagnostic tool.

  20. Characterization of DBD plasma source for biomedical applications

    Energy Technology Data Exchange (ETDEWEB)

    Kuchenbecker, M; Vioel, W [University of Applied Sciences and Arts, Faculty of Natural Sciences and Technology, Von-Ossietzky-Str. 99, 37085 Goettingen (Germany); Bibinov, N; Awakowicz, P [Institute for Electrical Engineering and Plasma Technology, Ruhr-Universitaet Bochum, Universitaetstr. 150, 44780 Bochum (Germany); Kaemlimg, A; Wandke, D, E-mail: m.kuchenbecker@web.d, E-mail: Nikita.Bibinov@rub.d, E-mail: awakowicz@aept-ruhr-uni-bochum.d, E-mail: vioel@hawk-hhg.d [CINOGY GmbH, Max-Naeder-Str. 15, 37114 Duderstadt (Germany)

    2009-02-21

    The dielectric barrier discharge (DBD) plasma source for biomedical application is characterized using optical emission spectroscopy, plasma-chemical simulation and voltage-current measurements. This plasma source possesses only one electrode covered by ceramic. Human body or some other object with enough high electric capacitance or connected to ground can serve as the opposite electrode. DBD consists of a number of microdischarge channels distributed in the gas gap between the electrodes and on the surface of the dielectric. To characterize the plasma conditions in the DBD source, an aluminium plate is used as an opposite electrode. Electric parameters, the diameter of microdischarge channel and plasma parameters (electron distribution function and electron density) are determined. The gas temperature is measured in the microdischarge channel and calculated in afterglow phase. The heating of the opposite electrode is studied using probe measurement. The gas and plasma parameters in the microdischarge channel are studied at varied distances between electrodes. According to an energy balance study, the input microdischarge electric energy dissipates mainly in heating of electrodes (about 90%) and partially (about 10%) in the production of chemical active species (atoms and metastable molecules).

  1. Synthesis, Characterization and Application of Multiscale Porous Materials

    Energy Technology Data Exchange (ETDEWEB)

    Hussami, Linda

    2010-07-01

    This thesis work brings fresh insights and improved understanding of nano scale materials through introducing new hybrid composites, 2D hexagonal in MCM-41 and 3D random interconnected structures of different materials, and application relevance for developing fields of science, such as fuel cells and solar cells. New types of porous materials and organometallic crystals have been prepared and characterized in detail. The porous materials have been used in several studies: as hosts to encapsulate metal-organic complexes; as catalyst supports and electrode materials in devices for alternative energy production. The utility of the new porous materials arises from their unique structural and surface chemical characteristics as demonstrated here using various experimental and theoretical approaches. New single crystal structures and arene-ligand exchange properties of f-block elements coordinated to ligand arene and halogallates are described in Paper I. These compounds have been incorporated into ordered 2D-hexagonal MCM-41 and polyhedral silica nano foam (PNF-SiO{sub 2}) matrices without significant change to the original porous architectures as described in Paper II and III. The resulting inorganic/organic hybrids exhibited enhanced luminescence activity relative to the pure crystalline complexes. A series of novel polyhedral carbon nano foams (PNF-C's) and inverse foams were prepared by nano casting from PNF-SiO{sub 2}'s. These are discussed in Paper IV. The synthesis conditions of PNF-C's were systematically varied as a function of the filling ratio of carbon precursor and their structures compared using various characterization methods. The carbonaceous porous materials were further tested in Paper V and VI as possible catalysts and catalyst supports in counter- and working electrodes for solar- and fuel cell applications

  2. Application of TZERO calibrated modulated temperature differential scanning calorimetry to characterize model protein formulations.

    Science.gov (United States)

    Badkar, Aniket; Yohannes, Paulos; Banga, Ajay

    2006-02-17

    The objective of this study was to evaluate the feasibility of using T(ZERO) modulated temperature differential scanning calorimetry (MDSC) as a novel technique to characterize protein solutions using lysozyme as a model protein and IgG as a model monoclonal antibody. MDSC involves the application of modulated heating program, along with the standard heating program that enables the separation of overlapping thermal transitions. Although characterization of unfolding transitions for protein solutions requires the application of high sensitive DSC, separation of overlapping transitions like aggregation and other exothermic events may be possible only by use of MDSC. A newer T(ZERO) calibrated MDSC model from TA instruments that has improved sensitivity than previous models was used. MDSC analysis showed total, reversing and non-reversing heat flow signals. Total heat flow signals showed a combination of melting endotherms and overlapping exothermic events. Under the operating conditions used, the melting endotherms were seen in reversing heat flow signal while the exothermic events were seen in non-reversing heat flow signal. This enabled the separation of overlapping thermal transitions, improved data analysis and decreased baseline noise. MDSC was used here for characterization of lysozyme solutions, but its feasibility for characterizing therapeutic protein solutions needs further assessment.

  3. Second International Workshop on Software Engineering and Code Design in Parallel Meteorological and Oceanographic Applications

    Science.gov (United States)

    OKeefe, Matthew (Editor); Kerr, Christopher L. (Editor)

    1998-01-01

    This report contains the abstracts and technical papers from the Second International Workshop on Software Engineering and Code Design in Parallel Meteorological and Oceanographic Applications, held June 15-18, 1998, in Scottsdale, Arizona. The purpose of the workshop is to bring together software developers in meteorology and oceanography to discuss software engineering and code design issues for parallel architectures, including Massively Parallel Processors (MPP's), Parallel Vector Processors (PVP's), Symmetric Multi-Processors (SMP's), Distributed Shared Memory (DSM) multi-processors, and clusters. Issues to be discussed include: (1) code architectures for current parallel models, including basic data structures, storage allocation, variable naming conventions, coding rules and styles, i/o and pre/post-processing of data; (2) designing modular code; (3) load balancing and domain decomposition; (4) techniques that exploit parallelism efficiently yet hide the machine-related details from the programmer; (5) tools for making the programmer more productive; and (6) the proliferation of programming models (F--, OpenMP, MPI, and HPF).

  4. Nanocomposite Coatings: Preparation, Characterization, Properties, and Applications

    Directory of Open Access Journals (Sweden)

    Phuong Nguyen-Tri

    2018-01-01

    Full Text Available Incorporation of nanofillers into the organic coatings might enhance their barrier performance, by decreasing the porosity and zigzagging the diffusion path for deleterious species. Thus, the coatings containing nanofillers are expected to have significant barrier properties for corrosion protection and reduce the trend for the coating to blister or delaminate. On the other hand, high hardness could be obtained for metallic coatings by producing the hard nanocrystalline phases within a metallic matrix. This article presents a review on recent development of nanocomposite coatings, providing an overview of nanocomposite coatings in various aspects dealing with the classification, preparative method, the nanocomposite coating properties, and characterization methods. It covers potential applications in areas such as the anticorrosion, antiwear, superhydrophobic area, self-cleaning, antifouling/antibacterial area, and electronics. Finally, conclusion and future trends will be also reported.

  5. Application of the MOLE in post-nuclear accident characterization

    International Nuclear Information System (INIS)

    Johnson, S.J.; Alvarez, J.L.

    1981-01-01

    Following a nuclear accident there is a need to determine the chemical composition of materials in liquid, solid and gaseous form, the crystalline structure of solids, the size and chemical composition of particles, and the chemical characterization of contaminants on surfaces. This analytical information is required to reconstruct the accident scenario, to select decontamination methods, and to determine future safety requirements. The MOLE (Molecular Optical Laser Examiner) is a Raman microprobe system which has proven to be a valuable analytical tool in providing this type of chemical information. It can determine the chemical species of polyatomic molecules and ions having characteristic Raman spectra. As little as 1 picogram of a component or a 1 μm particle can be analyzed. The imaging system can also provide mapping of selected components on a surface. A system description, sample handling techniques, and applications are presented. Specific applications to the Three Mile Island-Unit 2 accident are also addressed

  6. Synthesis, Properties Characterization and Applications of Various Organobismuth Compounds

    Directory of Open Access Journals (Sweden)

    Jingfei Luan

    2011-05-01

    Full Text Available Organobismuth chemistry was emphasized in this review article due to the low price, low toxicity and low radioactivity characteristics of bismuth. As an environmentally-friendly class of organometallic compounds, different types of organobismuth compounds have been used in organic synthesis, catalysis, materials, etc. The synthesis and property characterization of many organobismuth compounds had been summarized. This review article also presented a survey of various applications of organobismuth compounds in organic transformations, as reagents or catalysts. The reactivity, reaction pathways and mechanisms of reactions with organobismuths were discussed. Less common and limiting aspects of organobismuth compounds were also briefly mentioned.

  7. Characterization and environmental evaluation of Atikokan coal fly ash for environmental applications

    Energy Technology Data Exchange (ETDEWEB)

    Yeheyis, M.B.; Shang, J.Q.; Yanful, E.K. [Western Ontario Univ., London, ON (Canada). Dept. of Civil and Environmental Engineering

    2008-09-15

    Coal fly ash from thermal power generating stations has become a valuable byproduct in various commercial and environmental applications due to its cementitious, alkaline, and pozzolanic properties. It is used as a raw material in cement production, and also as a replacement for cement in concrete production. This study provided physical, chemical, and mineralogical characterizations of fresh and landfilled coal fly ash from a thermal generation station in Ontario. Fly ash behaviour under various environmental conditions was examined. Tests were conducted to characterize fly ash acid neutralization capacity and heavy metal sorption capacity. The study showed that fresh and landfilled fly ash samples showed significant variations in morphology, mineralogy, and chemical composition. X-ray diffraction studies demonstrated that weathering of the fly ash caused the formation of secondary minerals. The study also showed that the heavy metals from both fresh and landfilled fly ash samples were below leachate criteria set by the provincial government. It was concluded that both fresh and landfilled fly ash are suitable for various environmental and engineering applications. 55 refs., 5 tabs., 11 figs.

  8. On the importance of identifying, characterizing, and predicting fundamental phenomena towards microbial electrochemistry applications.

    Science.gov (United States)

    Torres, César Iván

    2014-06-01

    The development of microbial electrochemistry research toward technological applications has increased significantly in the past years, leading to many process configurations. This short review focuses on the need to identify and characterize the fundamental phenomena that control the performance of microbial electrochemical cells (MXCs). Specifically, it discusses the importance of recent efforts to discover and characterize novel microorganisms for MXC applications, as well as recent developments to understand transport limitations in MXCs. As we increase our understanding of how MXCs operate, it is imperative to continue modeling efforts in order to effectively predict their performance, design efficient MXC technologies, and implement them commercially. Thus, the success of MXC technologies largely depends on the path of identifying, understanding, and predicting fundamental phenomena that determine MXC performance. Copyright © 2013 Elsevier Ltd. All rights reserved.

  9. Stochastic Characterization of Communication Network Latency for Wide Area Grid Control Applications.

    Energy Technology Data Exchange (ETDEWEB)

    Ameme, Dan Selorm Kwami [Sandia National Lab. (SNL-NM), Albuquerque, NM (United States); Guttromson, Ross [Sandia National Lab. (SNL-NM), Albuquerque, NM (United States)

    2017-10-01

    This report characterizes communications network latency under various network topologies and qualities of service (QoS). The characterizations are probabilistic in nature, allowing deeper analysis of stability for Internet Protocol (IP) based feedback control systems used in grid applications. The work involves the use of Raspberry Pi computers as a proxy for a controlled resource, and an ns-3 network simulator on a Linux server to create an experimental platform (testbed) that can be used to model wide-area grid control network communications in smart grid. Modbus protocol is used for information transport, and Routing Information Protocol is used for dynamic route selection within the simulated network.

  10. Design, Microfabrication and Characterization of a Power Delivery System for new Biomedical Applications

    Directory of Open Access Journals (Sweden)

    CARUSO Massimo

    2017-05-01

    Full Text Available This paper presents the design, microfabrication and characterization of a wireless power delivery system capable of driving a surface acoustic wave sensor (SAW for biomedical applications. The system consists of two planar, spiral-square microcoils, which have been geometrically optimized in order to maximize the quality factor Q. The integration of the SAW - microcoil system into artificial implant sites will allow a real-time biofilm growth monitoring and treatment, providing countless advantages to the related medical applications.

  11. Potential application of machine vision technology to saffron (Crocus sativus L.) quality characterization.

    Science.gov (United States)

    Kiani, Sajad; Minaei, Saeid

    2016-12-01

    Saffron quality characterization is an important issue in the food industry and of interest to the consumers. This paper proposes an expert system based on the application of machine vision technology for characterization of saffron and shows how it can be employed in practical usage. There is a correlation between saffron color and its geographic location of production and some chemical attributes which could be properly used for characterization of saffron quality and freshness. This may be accomplished by employing image processing techniques coupled with multivariate data analysis for quantification of saffron properties. Expert algorithms can be made available for prediction of saffron characteristics such as color as well as for product classification. Copyright © 2016. Published by Elsevier Ltd.

  12. Ferroelectric crystals for photonic applications including nanoscale fabrication and characterization techniques

    CERN Document Server

    Grilli, Simonetta

    2008-01-01

    This book deals with the latest achievements in the field of ferroelectric domain engineering and characterization at micron- and nano-scale dimensions and periods. The book collects the results obtained in the last years by world scientific leaders in the field, thus providing a valid and unique overview of the state of the art and also a view to future applications of those engineered materials in the field of photonics.

  13. Status report on dosimetry benchmark neutron field development, characterization, and application

    International Nuclear Information System (INIS)

    Fabry, A.; Grundl, J.A.; McElroy, W.N.; Lippincott, E.P.; Farrar, H. IV.

    1977-01-01

    The report attempts to present a brief, but comprehensive review of the status and future directions of benchmark neutron field development, characterization and application in perspective with two major objectives of reactor dosimetry: (1) fuel fission rate and burn-up passive monitoring, and (2) correlation of materials irradiation damage effects and projection to commercial power plants. The report focuses on the Light Water Reactor and Fast Breeder Reactor program needs

  14. Characterization of a Compton suppression system and the applicability of Poisson statistics

    International Nuclear Information System (INIS)

    Nicholson, G.; Landsberger, S.; Welch, L.

    2008-01-01

    The Compton suppression system (CSS) has been thoroughly characterized at the University of Texas' Nuclear Engineering Teaching Laboratory (NETL). Effects of dead-time, sample displacement from primary detector, and primary energy detector position relative to the active shield detector have been measured and analyzed. Also, the applicability of Poisson counting statistics to Compton suppression spectroscopy has been evaluated. (author)

  15. Characterization Study of Accelerator for Application in Biotechnology

    International Nuclear Information System (INIS)

    Yazid-M; Muryono, H.

    2000-01-01

    The characterization of accelerator for application in biotechnology was studied. Accelerator is a machine to produce ion beam particles. Accelerator can be used for biotechnology experiments. Ion beam particles irradiation on the biological material will produced variabilities of genetics and induced mutations. In general, new varieties were found by hybridization method or mutation breeding method by gamma rays irradiation. Ion beam particles can be used for biological material irradiation to find variabilities of genetics and induced mutations. The high percentage of mutation rate and LET value by ion beam particles irradiation was found higher than by gamma rays irradiation. Ion beam particle irradiation can also be controlled and foewed to target in biological material. The characterization of accelerator needed for biotechnology experiments are types of accelerator (Tandem Van de Graff, AVF Cyclotron, Synchrotron, Rilac), types of ion particles (C, He, electron, Ar, Ne, Ni, Al, Xe and Au), range of energy (5 - 2.090 MeV), range of dose irradiation (10 - 250 Gy), range of ion current (0.02 - 20 nA), range of ion beam particles diameter (10 - 100 μm), range of LET value (300 - 1.800 keV/μm ) and irradiation time (5 - 30 seconds/samples). (author)

  16. Getting To Exascale: Applying Novel Parallel Programming Models To Lab Applications For The Next Generation Of Supercomputers

    Energy Technology Data Exchange (ETDEWEB)

    Dube, Evi [Lawrence Livermore National Lab. (LLNL), Livermore, CA (United States); Shereda, Charles [Lawrence Livermore National Lab. (LLNL), Livermore, CA (United States); Nau, Lee [Lawrence Livermore National Lab. (LLNL), Livermore, CA (United States); Harris, Lance [Lawrence Livermore National Lab. (LLNL), Livermore, CA (United States)

    2010-09-27

    As supercomputing moves toward exascale, node architectures will change significantly. CPU core counts on nodes will increase by an order of magnitude or more. Heterogeneous architectures will become more commonplace, with GPUs or FPGAs providing additional computational power. Novel programming models may make better use of on-node parallelism in these new architectures than do current models. In this paper we examine several of these novel models – UPC, CUDA, and OpenCL –to determine their suitability to LLNL scientific application codes. Our study consisted of several phases: We conducted interviews with code teams and selected two codes to port; We learned how to program in the new models and ported the codes; We debugged and tuned the ported applications; We measured results, and documented our findings. We conclude that UPC is a challenge for porting code, Berkeley UPC is not very robust, and UPC is not suitable as a general alternative to OpenMP for a number of reasons. CUDA is well supported and robust but is a proprietary NVIDIA standard, while OpenCL is an open standard. Both are well suited to a specific set of application problems that can be run on GPUs, but some problems are not suited to GPUs. Further study of the landscape of novel models is recommended.

  17. Production and characterization of ceramics for armor application

    International Nuclear Information System (INIS)

    Alves, J.T.; Lopes, C.M.A.; Assis, J.M.K.; Melo, F.C.L.

    2010-01-01

    The fabrication of devices for ballistic protection as bullet proof vests and helmets and armored vehicles has been evolving over the past years along with the materials and models used for this specific application. The requirements for high efficient light-weight ballistic protection systems which not interfere in the user comfort and mobility has driven the research in this area. In this work we will present the results of characterization of two ceramics based on alumina and silicon carbide. The ceramics were produced in lab scale and the specific mass, scanning electron microscopy (SEM) microstructure, Vickers hardness, flexural resistance at room temperature and X-ray diffraction were evaluated. Ballistic tests performed in the selected materials showed that the ceramics present armor efficiency. (author)

  18. Synthesis and characterization of Fe{sub 3}O{sub 4} nanoparticles with perspectives in biomedical applications

    Energy Technology Data Exchange (ETDEWEB)

    Mamani, Javier Bustamante, E-mail: javierbm@einstein.br [Hospital Israelita Alberto Einstein (HIAE), Sao Paulo, SP (Brazil); Gamarra, Lionel Fernel [Universidade Federal de Sao Paulo (UNIFESP), Sao Paulo, SP (Brazil). Dept. de Neurologia e Neurocirurgia; Brito, Giancarlo Esposito de Souza [Universidade de Sao Paulo (USP), Sao Paulo, SP (Brazil). Inst. de Fisica. Dept. de Fisica Aplicada

    2014-05-15

    Nowadays the use of magnetic nanoparticles (MNP) in medical applications has exceeded expectations. In molecular imaging, MNP based on iron oxide coated with appropriated materials have several applications in vitro and in vivo studies. For applications in nanobiotechnology these MNP must present some characteristics such as size smaller than 100 nanometers, high magnetization values, among others. Therefore the MNP have physical and chemical properties that are specific to certain studies which must be characterized for quality control of the nanostructured material. This study presents the synthesis and characterization of MNP of magnetite (Fe{sub 3}O{sub 4}) dispersible in water with perspectives in a wide range of biomedical applications. The characterization of the colloidal suspension based on MNP stated that the average diameter is (12.6±0.2) nm determined by Transmission Electron Microscopy where the MNP have the crystalline phase of magnetite (Fe{sub 3}O{sub 4}) that was identified by Diffraction X-ray and confirmed by Moessbauer Spectroscopy. The blocking temperature of (89±1) K, Fe{sub 3}O{sub 4} MNP property, was determined from magnetic measurements based on the Zero Field Cooled and Field Cooled methods. The hysteresis loops were measured at different temperatures below and above blocking temperature. The magnetometry determined that the MNP showed superparamagnetic behavior confirmed by ferromagnetic resonance. (author)

  19. Assessment of analytical techniques for characterization of crystalline clopidogrel forms in patent applications

    Directory of Open Access Journals (Sweden)

    Luiz Marcelo Lira

    2014-04-01

    Full Text Available The aim of this study was to evaluate two important aspects of patent applications of crystalline forms of drugs: (i the physicochemical characterization of the crystalline forms; and (ii the procedure for preparing crystals of the blockbuster drug clopidogrel. To this end, searches were conducted using online patent databases. The results showed that: (i the majority of patent applications for clopidogrel crystalline forms failed to comply with proposed Brazilian Patent Office guidelines. This was primarily due to insufficient number of analytical techniques evaluating the crystalline phase. In addition, some patent applications lacked assessment of chemical/crystallography purity; (ii use of more than two analytical techniques is important; and (iii the crystallization procedure for clopidogrel bisulfate form II were irreproducible based on the procedure given in the patent application.

  20. NATO Advanced Study Institute on Scanning Probe Microscopy : Characterization, Nanofabrication and Device Application of Functional Materials

    CERN Document Server

    Vilarinho, Paula Maria; Kingon, Angus; Scanning Probe Microscopy : Characterization, Nanofabrication and Device Application of Functional Materials

    2005-01-01

    As the characteristic dimensions of electronic devices continue to shrink, the ability to characterize their electronic properties at the nanometer scale has come to be of outstanding importance. In this sense, Scanning Probe Microscopy (SPM) is becoming an indispensable tool, playing a key role in nanoscience and nanotechnology. SPM is opening new opportunities to measure semiconductor electronic properties with unprecedented spatial resolution. SPM is being successfully applied for nanoscale characterization of ferroelectric thin films. In the area of functional molecular materials it is being used as a probe to contact molecular structures in order to characterize their electrical properties, as a manipulator to assemble nanoparticles and nanotubes into simple devices, and as a tool to pattern molecular nanostructures. This book provides in-depth information on new and emerging applications of SPM to the field of materials science, namely in the areas of characterisation, device application and nanofabrica...

  1. Computer modeling characterization, and applications of Gallium Arsenide Gunn diodes in radiation environments

    Energy Technology Data Exchange (ETDEWEB)

    El- Basit, Wafaa Abd; El-Ghanam, Safaa Mohamed; Kamh, Sanaa Abd El-Tawab [Electronics Research Laboratory, Physics Department, Faculty of Women for Arts, Science and Education, Ain-Shams University, Cairo (Egypt); Abdel-Maksood, Ashraf Mosleh; Soliman, Fouad Abd El-Moniem Saad [Nuclear Materials Authority, Cairo (Egypt)

    2016-10-15

    The present paper reports on a trial to shed further light on the characterization, applications, and operation of radar speed guns or Gunn diodes on different radiation environments of neutron or γ fields. To this end, theoretical and experimental investigations of microwave oscillating system for outer-space applications were carried out. Radiation effects on the transient parameters and electrical properties of the proposed devices have been studied in detail with the application of computer programming. Also, the oscillation parameters, power characteristics, and bias current were plotted under the influence of different γ and neutron irradiation levels. Finally, shelf or oven annealing processes were shown to be satisfactory techniques to recover the initial characteristics of the irradiated devices.

  2. Synthesis and Characterization of Stimuli Responsive Block Copolymers, Self-Assembly Behavior and Applications

    Energy Technology Data Exchange (ETDEWEB)

    Determan, Michael Duane [Iowa State Univ., Ames, IA (United States)

    2005-12-17

    The central theme of this thesis work is to develop new block copolymer materials for biomedical applications. While there are many reports of stimuli-responsive amphiphilic [19-21] and crosslinked hydrogel materials [22], the development of an in situ gel forming, pH responsive pentablock copolymer is a novel contribution to the field, Figure 1.1 is a sketch of an ABCBA pentablock copolymer. The A blocks are cationic tertiary amine methacrylates blocked to a central Pluronic F127 triblock copolymer. In addition to the prerequisite synthetic and macromolecular characterization of these new materials, the self-assembled supramolecular structures formed by the pentablock were experimentally evaluated. This synthesis and characterization process serves to elucidate the important structure property relationships of these novel materials, The pH and temperature responsive behavior of the pentablock copolymer were explored especially with consideration towards injectable drug delivery applications. Future synthesis work will focus on enhancing and tuning the cell specific targeting of DNA/pentablock copolymer polyplexes. The specific goals of this research are: (1) Develop a synthetic route for gel forming pentablock block copolymers with pH and temperature sensitive properties. Synthesis of these novel copolymers is accomplished with ATRP, yielding low polydispersity and control of the block copolymer architecture. Well defined macromolecular characteristics are required to tailor the phase behavior of these materials. (2) Characterize relationship between the size and shape of pentablock copolymer micelles and gel structure and the pH and temperature of the copolymer solutions with SAXS, SANS and CryoTEM. (3) Evaluate the temperature and pH induced phase separation and macroscopic self-assembly phenomenon of the pentablock copolymer. (4) Utilize the knowledge gained from first three goals to design and formulate drug delivery formulations based on the multi

  3. Performance evaluation of canny edge detection on a tiled multicore architecture

    Science.gov (United States)

    Brethorst, Andrew Z.; Desai, Nehal; Enright, Douglas P.; Scrofano, Ronald

    2011-01-01

    In the last few years, a variety of multicore architectures have been used to parallelize image processing applications. In this paper, we focus on assessing the parallel speed-ups of different Canny edge detection parallelization strategies on the Tile64, a tiled multicore architecture developed by the Tilera Corporation. Included in these strategies are different ways Canny edge detection can be parallelized, as well as differences in data management. The two parallelization strategies examined were loop-level parallelism and domain decomposition. Loop-level parallelism is achieved through the use of OpenMP,1 and it is capable of parallelization across the range of values over which a loop iterates. Domain decomposition is the process of breaking down an image into subimages, where each subimage is processed independently, in parallel. The results of the two strategies show that for the same number of threads, programmer implemented, domain decomposition exhibits higher speed-ups than the compiler managed, loop-level parallelism implemented with OpenMP.

  4. Performance characterization of active fiber-composite actuators for helicopter rotor blade applications

    Science.gov (United States)

    Wickramasinghe, Viresh K.; Hagood, Nesbitt W.

    2002-07-01

    The primary objective of this work was to characterize the performance of the Active Fiber Composite (AFC) actuator material system for the Boeing Active Material Rotor (AMR) blade application. The AFCs were a new structural actuator system consisting of piezoceramic fibers embedded in an epoxy matrix and sandwiched between interdigitated electrodes to orient the driving electric field in the fiber direction to use the primary piezoelectric effect. These actuators were integrated directly into the blade spar laminate as active plies within the composite structure to perform structural actuation for vibration control in helicopters. Therefore, it was necessary to conduct extensive electromechanical material characterization to evaluate AFCs both as actuators and as structural components of the rotor blade. The characterization tests designed to extract important electromechanical properties under simulated blade operating conditions included stress-strain tests, free strain tests and actuation under tensile load tests. This paper presents the test results as well as the comprehensive testing process developed to evaluate the relevant AFC material properties. The results from this comprehensive performance characterization of the AFC material system supported the design and operation of the Boeing AMR blade scheduled for hover and forward flight wind tunnel tests.

  5. Characterization of Brazilian wheat cultivars for specific technological applications

    Directory of Open Access Journals (Sweden)

    Patrícia Matos Scheuer

    2011-09-01

    Full Text Available Functional and technological properties of wheat depend on its chemical composition, which together with structural and microscopic characteristics, define flour quality. The aim of the present study was to characterize four Brazilian wheat cultivars (BRS Louro, BRS Timbauva, BRS Guamirim and BRS Pardela and their respective flours in order to indicate specific technological applications. Kernels were analyzed for test weight, thousand kernel weight, hardness, moisture, and water activity. Flours were analyzed for water activity, color, centesimal composition, total dietary fiber, amylose content and identification of high molecular weight glutenins. The rheological properties of the flours were estimated by farinography, extensography, falling number, rapid visco amylography, and glutomatic and glutork equipment. Baking tests and scanning electron microscopy were also performed. The data were subjected to analysis of variance and principal component analysis. BRS Timbauva and BRS Guamirim presented results that did not allow for specific technological application. On the other hand, BRS Louro presented suitable characteristics for the elaboration of products with low dough strength such as cakes, pies and biscuits, while BRS Pardela seemed suitable for bread and pasta products.

  6. Synthesis and Characterization of Calcium Phosphate Powders for Biomedical Applications by Plasma Spray Coating

    OpenAIRE

    Sasidharan Pillai, Rahul

    2015-01-01

    This PhD work mainly focus on the synthesis and characterization of calcium phosphate powders for plasma spray coating. The preparation of high temperature phase stabilized βTCP and HA/βTCP powders for plasma spray coating applications has been the topic of investigation. Nowadays plasma sprayed coatings are widely used for biomedical applications especially in the dental and orthopaedic implantation field. Previously Ti based alloys were widely used for the orthopaedic and dental implant ap...

  7. Electrostatic force microscopy as a broadly applicable method for characterizing pyroelectric materials

    International Nuclear Information System (INIS)

    Martin-Olmos, Cristina; Gimzewski, James K; Stieg, Adam Z

    2012-01-01

    A general method based on the combination of electrostatic force microscopy with thermal cycling of the substrate holder is presented for direct, nanoscale characterization of the pyroelectric effect in a range of materials and sample configurations using commercial atomic force microscope systems. To provide an example of its broad applicability, the technique was applied to the examination of natural tourmaline gemstones. The method was validated using thermal cycles similar to those experienced in ambient conditions, where the induced pyroelectric response produced localized electrostatic surface charges whose magnitude demonstrated a correlation with the iron content and heat dissipation of each gemstone variety. In addition, the surface charge was shown to persist even at thermal equilibrium. This behavior is attributed to constant, stochastic cooling of the gemstone surface through turbulent contact with the surrounding air and indicates a potential utility for energy harvesting in applications including environmental sensors and personal electronics. In contrast to previously reported methods, ours has a capacity to carry out such precise nanoscale measurements with little or no restriction on the sample of interest, and represents a powerful new tool for the characterization of pyroelectric materials and devices. (paper)

  8. Prony's method application for BWR instabilities characterization

    Energy Technology Data Exchange (ETDEWEB)

    Castillo, Rogelio, E-mail: rogelio.castillo@inin.gob.mx [Instituto Nacional de Investigaciones Nucleares, Carretera México-Toluca s/n, La Marquesa, Ocoyoacac, Estado de México 52750 (Mexico); Ramírez, J. Ramón, E-mail: ramon.ramirez@inin.gob.mx [Instituto Nacional de Investigaciones Nucleares, Carretera México-Toluca s/n, La Marquesa, Ocoyoacac, Estado de México 52750 (Mexico); Alonso, Gustavo, E-mail: gustavo.alonso@inin.gob.mx [Instituto Nacional de Investigaciones Nucleares, Carretera México-Toluca s/n, La Marquesa, Ocoyoacac, Estado de México 52750 (Mexico); Instituto Politecnico Nacional, Unidad Profesional Adolfo Lopez Mateos, Ed. 9, Lindavista, D.F. 07300 (Mexico); Ortiz-Villafuerte, Javier, E-mail: javier.ortiz@inin.gob.mx [Instituto Nacional de Investigaciones Nucleares, Carretera México-Toluca s/n, La Marquesa, Ocoyoacac, Estado de México 52750 (Mexico)

    2015-04-01

    Highlights: • Prony's method application for BWR instability events. • Several BWR instability benchmark are assessed using this method. • DR and frequency are obtained and a new parameter is proposed to eliminate false signals. • Adequate characterization of in-phase and out-of-phase events is obtained. • The Prony's method application is validated. - Abstract: Several methods have been developed for the analysis of reactor power signals during BWR power oscillations. Among them is the Prony's method, its application provides the DR and the frequency of oscillations. In this paper another characteristic of the method is proposed to determine the type of oscillations that can occur, in-phase or out-of-phase. Prony's method decomposes a given signal in all the frequencies that it contains, therefore the DR of the fundamental mode and the first harmonic are obtained. To determine the more dominant pole of the system a normalized amplitude W of the system is calculated, which depends on the amplitude and the damping coefficient. With this term, it can be analyzed which type of oscillations is present, if W of the fundamental mode frequency is the greater, the type of oscillations is in-phase, if W of the first harmonic frequency is the greater, the type of oscillations is out-of-phase. The method is applied to several stability benchmarks to assess its validity. Results show the applicability of the method as an alternative analysis method to determine the type of oscillations occurred.

  9. Prony's method application for BWR instabilities characterization

    International Nuclear Information System (INIS)

    Castillo, Rogelio; Ramírez, J. Ramón; Alonso, Gustavo; Ortiz-Villafuerte, Javier

    2015-01-01

    Highlights: • Prony's method application for BWR instability events. • Several BWR instability benchmark are assessed using this method. • DR and frequency are obtained and a new parameter is proposed to eliminate false signals. • Adequate characterization of in-phase and out-of-phase events is obtained. • The Prony's method application is validated. - Abstract: Several methods have been developed for the analysis of reactor power signals during BWR power oscillations. Among them is the Prony's method, its application provides the DR and the frequency of oscillations. In this paper another characteristic of the method is proposed to determine the type of oscillations that can occur, in-phase or out-of-phase. Prony's method decomposes a given signal in all the frequencies that it contains, therefore the DR of the fundamental mode and the first harmonic are obtained. To determine the more dominant pole of the system a normalized amplitude W of the system is calculated, which depends on the amplitude and the damping coefficient. With this term, it can be analyzed which type of oscillations is present, if W of the fundamental mode frequency is the greater, the type of oscillations is in-phase, if W of the first harmonic frequency is the greater, the type of oscillations is out-of-phase. The method is applied to several stability benchmarks to assess its validity. Results show the applicability of the method as an alternative analysis method to determine the type of oscillations occurred

  10. Advancements in Particle Analysis Procedures and their Application to the Characterization of Reference Materials for Safeguards

    International Nuclear Information System (INIS)

    Admon, U.; Chinea-Cano, E.; Dzigal, N.; Vogt, K.S.; Halevy, I.; Boblil, E.; Elkayam, T.; Weiss, A.

    2015-01-01

    Two approaches may be employed in the preparation of Reference Materials (RMs) for use in micro analytical techniques: placement of characterized micro artefacts in bulk materials and characterization of certain classes of individual particles in existing materials. In November 2013, a collaborative project was launched with the aim of adding information about such individual particles in existing RMs. The motivation behind this project was to investigate and characterize micro-artefacts present in certain commercially available RM, making them available and fit for use in safeguards and several other nuclear applications. The implementation and development of new techniques for particle characterization in bulk materials are also part of this project. The strategy for that approach includes the following steps: 1. Sample preparation: Dispersion of particles on stubs and planchets by an in-house shock-wave device. 2. Particle-of-Interest identification and characterization: (a) Fission Track (FT) route: Mosaic imaging of detectors containing FT stars; Applying automatic pattern recognition and localization of FT stars in detectors; Using Laser Micro-Dissection (LMD) for retrieval of individual particles; Preparation of sampled particles for SEM observation and other analytical techniques. (b) Alpha Track (αT) route: Direct particle identification and localization using position sensitive detectors (instrumental auto-radiography). (c) The advanced SEM route: Integration of analytical SEM techniques for characterization of individual particles of interest: EDS, mass spectrometry, FIB, micro-Raman. Preliminary results of the ongoing efforts will be reported. Utilization of these hyphenated techniques and instruments represents an innovative approach to particle characterization for Safeguards applications. (author)

  11. Characterization of orange oil microcapsules for application in textiles

    Science.gov (United States)

    Rossi, W.; Bonet-Aracil, M.; Bou-Belda, E.; Gisbert-Payá, J.; Wilson, K.; Roldo, L.

    2017-10-01

    The use of orange oil presents as an ecological alternative to chemicals, attracting the attention of the scientific community to the development of eco-friendly antimicrobials. The microencapsulation technology has been used for the application of orange oil to textiles, being an economically viable, fast and efficient method by combining core and shell materials, desirable perceptual and functional characteristics, responsible for properties related to the nature of the product and provides that the wall materials release the functional substances in a controlled manner, in addition to effectively protecting and isolating the core material from the external environment to prevent its volatilization and deterioration, increasing the stability of the oil, such as non-toxicity. Thus, to better exploit the properties of the orange essential oil applied to textile products this study presents a characterization of microcapsules of Melamine formaldehyde obtained by the interfacial polymerization method with variations of proportions of orange oil (volatile) with fixed oil Medium-Chain Triglycerides (MCT) (non-volatile) to assist in the stability of the orange essential oil. Scanning electron microscope (SEM) was used as visualizing tool to characterize microparticles and surface morphology and thermal characteristics of microcapsules were premeditated by mean Differential scanning calorimetry (DSC).

  12. Preparation and characterization of thin-film Pd–Ag supported membranes for high-temperature applications

    NARCIS (Netherlands)

    Fernandez Gesalaga, Ekain; Coenen, Kai; Helmi Siasi Farimani, Arash; Melendez, J.; Zuniga, Jon; Pacheco Tanaka, David Alfredo; van Sint Annaland, Martin; Gallucci, Fausto

    2015-01-01

    This paper reports the preparation, characterization and stability tests of thin-film Pd–Ag supported membranes for high-temperature fluidized bed membrane reactor applications. Various thin-film supported membranes have been prepared by simultaneous Pd–Ag electroless plating and have been initially

  13. Preparation and Characterization of Water-Based Nano-fluids for Nuclear Applications

    International Nuclear Information System (INIS)

    Williams, W.C.; Forrest, E.; Hu, L.W.; Buongiorno, J.

    2006-01-01

    As part of an effort to evaluate water-based nano-fluids for nuclear applications, preparation and characterization has been performed for nano-fluids being considered for MIT's nano-fluid heat transfer experiments. Three methods of generating these nano-fluids are available: creating them from chemical precipitation, purchasing the nano-particles in powder form and mixing them with the base fluid, and direct purchase of prepared nano-fluids. Characterization of nano-fluids includes colloidal stability, size distribution, concentration, and elemental composition. Quality control of the nano-fluids to be used for heat transfer testing is crucial; an exact knowledge of the fluid constituents is essential to uncovering mechanisms responsible for heat transport enhancement. Testing indicates that nano-fluids created by mixing a liquid with nano-particles in powder form are often not stable, although some degree of stabilization is obtainable with pH control and/or surfactant addition. Some commercially available prepared nano-fluids have been found to contain unacceptable levels of impurities and/or include a different weight percent of nano-particles compared to vendor specifications. Tools utilized to characterize and qualify nano-fluids for this study include neutron activation analysis (NAA), inductively-coupled plasma spectroscopy (ICP), transmission electron microscopy (TEM) imaging, thermogravimetric analysis (TGA) and dynamic light scattering (DLS). Preparation procedures and characterization results for selected nano-fluids will be discussed in detail. (authors)

  14. Green Synthesis, Characterization and Application of Proanthocyanidins-Functionalized Gold Nanoparticles

    Directory of Open Access Journals (Sweden)

    Linhai Biao

    2018-01-01

    Full Text Available Green synthesis of gold nanoparticles using plant extracts is one of the more promising approaches for obtaining environmentally friendly nanomaterials for biological applications and environmental remediation. In this study, proanthocyanidins-functionalized gold nanoparticles were synthesized via a hydrothermal method. The obtained gold nanoparticles were characterized by ultraviolet and visible spectrophotometry (UV-Vis, Fourier transform infrared spectroscopy (FTIR, transmission electron microscopy (TEM and X-ray diffraction (XRD measurements. UV-Vis and FTIR results indicated that the obtained products were mainly spherical in shape, and that the phenolic hydroxyl of proanthocyanidins had strong interactions with the gold surface. TEM and XRD determination revealed that the synthesized gold nanoparticles had a highly crystalline structure and good monodispersity. The application of proanthocyanidins-functionalized gold nanoparticles for the removal of dyes and heavy metal ions Ni2+, Cu2+, Cd2+ and Pb2+ in an aqueous solution was investigated. The primary results indicate that proanthocyanidins-functionalized gold nanoparticles had high removal rates for the heavy metal ions and dye, which implies that they have potential applications as a new kind of adsorbent for the removal of contaminants in aqueous solution.

  15. Mechanical characterization of bucky gel morphing nanocomposite for actuating/sensing applications

    International Nuclear Information System (INIS)

    Ghamsari, Ali Kadkhoda; Woldesenbet, Eyassu; Jin, Yoonyoung

    2012-01-01

    Since the demonstration of the bucky gel actuator (BGA) in 2005, a great deal of effort has been exerted to develop novel applications for this electro-active morphing nanocomposite. This three-layered bimorph nanocomposite can be easily fabricated, operated in air and driven with a few volts. The BGA with improved mechanical strength is an excellent candidate for application in macro- to micro-scale smart structures with actuating and sensing capabilities. However, developing new applications requires identifying and understanding the effective design parameters and mechanical properties, respectively. There has been limited published studies on the mechanical properties of BGA. In this study, the effect of three parameters—layer thickness, carbon nanotube type and weight fraction of components—on the mechanical properties was investigated. Samples were characterized via nano-indentation and DMA. The BGA composed of 22 wt% single-walled carbon nanotubes and 45 wt% ionic liquid exhibited the highest hardness, adhesion, viscosity, and elastic and storage moduli. This study revealed the important role of the carbon nanotube type on BGA adhesion. Samples made with multi-walled carbon nanotubes had the lowest adhesion, which is a required factor in applications such as microfluidics. (paper)

  16. APPLICATION OF INTEGRATED RESERVOIR MANAGEMENT AND RESERVOIR CHARACTERIZATION

    Energy Technology Data Exchange (ETDEWEB)

    Jack Bergeron; Tom Blasingame; Louis Doublet; Mohan Kelkar; George Freeman; Jeff Callard; David Moore; David Davies; Richard Vessell; Brian Pregger; Bill Dixon; Bryce Bezant

    2000-03-01

    Reservoir performance and characterization are vital parameters during the development phase of a project. Infill drilling of wells on a uniform spacing, without regard to characterization does not optimize development because it fails to account for the complex nature of reservoir heterogeneities present in many low permeability reservoirs, especially carbonate reservoirs. These reservoirs are typically characterized by: (1) large, discontinuous pay intervals; (2) vertical and lateral changes in reservoir properties; (3) low reservoir energy; (4) high residual oil saturation; and (5) low recovery efficiency. The operational problems they encounter in these types of reservoirs include: (1) poor or inadequate completions and stimulations; (2) early water breakthrough; (3) poor reservoir sweep efficiency in contacting oil throughout the reservoir as well as in the nearby well regions; (4) channeling of injected fluids due to preferential fracturing caused by excessive injection rates; and (5) limited data availability and poor data quality. Infill drilling operations only need target areas of the reservoir which will be economically successful. If the most productive areas of a reservoir can be accurately identified by combining the results of geological, petrophysical, reservoir performance, and pressure transient analyses, then this ''integrated'' approach can be used to optimize reservoir performance during secondary and tertiary recovery operations without resorting to ''blanket'' infill drilling methods. New and emerging technologies such as geostatistical modeling, rock typing, and rigorous decline type curve analysis can be used to quantify reservoir quality and the degree of interwell communication. These results can then be used to develop a 3-D simulation model for prediction of infill locations. The application of reservoir surveillance techniques to identify additional reservoir ''pay'' zones

  17. Synthesis and characterization of alumina application in support of zeolite membrane

    International Nuclear Information System (INIS)

    Barbosa, A.S.; Rodrigues, M.G.F.

    2012-01-01

    Much interest has been aroused in process applications using zeolite membrane. The physicochemical properties of the support have a strong effect on the quality of zeolite membrane. This work is to synthesize and characterize alumina for use as a support for zeolite membrane. In this work was synthesized α-alumina: 40% alumina, 0.2% for PABA, 0.5% oleic acid and 59.3% ethyl alcohol. The mixture was ground in ball mill and placed in an oven for 24 hours at 60 °C, allowed to stand for 24h. The pressing was performed with 4 tons. The pressed material was subjected to sintering at 1400 °C/hour. The samples were characterized by EDX, XRD and SEM. The results for the media by XRD showed that they are crystalline and pure. By EDX was observed that the supports consist essentially of alumina. (author)

  18. Compiled MPI: Cost-Effective Exascale Applications Development

    Energy Technology Data Exchange (ETDEWEB)

    Bronevetsky, G; Quinlan, D; Lumsdaine, A; Hoefler, T

    2012-04-10

    The complexity of petascale and exascale machines makes it increasingly difficult to develop applications that can take advantage of them. Future systems are expected to feature billion-way parallelism, complex heterogeneous compute nodes and poor availability of memory (Peter Kogge, 2008). This new challenge for application development is motivating a significant amount of research and development on new programming models and runtime systems designed to simplify large-scale application development. Unfortunately, DoE has significant multi-decadal investment in a large family of mission-critical scientific applications. Scaling these applications to exascale machines will require a significant investment that will dwarf the costs of hardware procurement. A key reason for the difficulty in transitioning today's applications to exascale hardware is their reliance on explicit programming techniques, such as the Message Passing Interface (MPI) programming model to enable parallelism. MPI provides a portable and high performance message-passing system that enables scalable performance on a wide variety of platforms. However, it also forces developers to lock the details of parallelization together with application logic, making it very difficult to adapt the application to significant changes in the underlying system. Further, MPI's explicit interface makes it difficult to separate the application's synchronization and communication structure, reducing the amount of support that can be provided by compiler and run-time tools. This is in contrast to the recent research on more implicit parallel programming models such as Chapel, OpenMP and OpenCL, which promise to provide significantly more flexibility at the cost of reimplementing significant portions of the application. We are developing CoMPI, a novel compiler-driven approach to enable existing MPI applications to scale to exascale systems with minimal modifications that can be made incrementally over

  19. Towards Accurate Application Characterization for Exascale (APEX)

    Energy Technology Data Exchange (ETDEWEB)

    Hammond, Simon David [Sandia National Laboratories (SNL-NM), Albuquerque, NM (United States)

    2015-09-01

    Sandia National Laboratories has been engaged in hardware and software codesign activities for a number of years, indeed, it might be argued that prototyping of clusters as far back as the CPLANT machines and many large capability resources including ASCI Red and RedStorm were examples of codesigned solutions. As the research supporting our codesign activities has moved closer to investigating on-node runtime behavior a nature hunger has grown for detailed analysis of both hardware and algorithm performance from the perspective of low-level operations. The Application Characterization for Exascale (APEX) LDRD was a project concieved of addressing some of these concerns. Primarily the research was to intended to focus on generating accurate and reproducible low-level performance metrics using tools that could scale to production-class code bases. Along side this research was an advocacy and analysis role associated with evaluating tools for production use, working with leading industry vendors to develop and refine solutions required by our code teams and to directly engage with production code developers to form a context for the application analysis and a bridge to the research community within Sandia. On each of these accounts significant progress has been made, particularly, as this report will cover, in the low-level analysis of operations for important classes of algorithms. This report summarizes the development of a collection of tools under the APEX research program and leaves to other SAND and L2 milestone reports the description of codesign progress with Sandia’s production users/developers.

  20. Synthesis and characterization of titanium oxide/bismuth sulfide nanorods for solar cells applications

    International Nuclear Information System (INIS)

    Solis, M.; Rincon, M. E.

    2008-01-01

    In the present work is showed the synthesis and characterization of titanium oxide/bismuth sulfide nanowires hetero-junctions for solar cells applications. Conductive glass substrates (Corning 25 x 75 mm) were coated with a thin layer of sol-gel TiO2 and used as substrates for the subsequent deposition of bismuth sulfide nanorods (BN). TiO2 films (∼400 nm) were deposited with a semiautomatic immersion system with controlled immersion/withdraw velocity, using titanium isopropoxide as the titania precursor [1]. For BN synthesis and deposition, the solvo-thermal method was used, introducing air annealed TiO2-substrates in the autoclave. The typical bilayer TiO2/BN hetero-junction was 600 nm thick. The synthesized materials (powders and films) were characterized by X-Ray Diffraction, Scanning Electron Microscopy, and UV-Visible Spectroscopy. Anatase was the crystalline phase of TiO2, while bismuth sulfide nanotubes show a diffraction pattern characteristic of bismuthinite distorted by the preferential growth of some planes [2-4]. The optoelectronic characterization of TiO2/NB hetero-junctions was compared with hetero-junctions obtained by sensitizing TiO2 with chemically deposited bismuth sulfide films. Bismuth sulfide nanowires are 2µm long and 70nm wide (aspect ratio L/D = 43), while chemically deposited bismuth sulfide have L/D = 1, therefore the effect of particle size evaluation and geometry in the photosensitization phenomena will be discussed in the context of new materials for solar-cells applications. (Full text)

  1. Application of empirical mode decomposition method for characterization of random vibration signals

    Directory of Open Access Journals (Sweden)

    Setyamartana Parman

    2016-07-01

    Full Text Available Characterization of finite measured signals is a great of importance in dynamical modeling and system identification. This paper addresses an approach for characterization of measured random vibration signals where the approach rests on a method called empirical mode decomposition (EMD. The applicability of proposed approach is tested in one numerical and experimental data from a structural system, namely spar platform. The results are three main signal components, comprising: noise embedded in the measured signal as the first component, first intrinsic mode function (IMF called as the wave frequency response (WFR as the second component and second IMF called as the low frequency response (LFR as the third component while the residue is the trend. Band-pass filter (BPF method is taken as benchmark for the results obtained from EMD method.

  2. Broadband diffuse optical characterization of elastin for biomedical applications.

    Science.gov (United States)

    Konugolu Venkata Sekar, Sanathana; Beh, Joo Sin; Farina, Andrea; Dalla Mora, Alberto; Pifferi, Antonio; Taroni, Paola

    2017-10-01

    Elastin is a key structural protein of dynamic connective tissues widely found in the extracellular matrix of skin, arteries, lungs and ligaments. It is responsible for a range of diseases related to aging of biological tissues. The optical characterization of elastin can open new opportunities for its investigation in biomedical studies. In this work, we present the absorption spectra of elastin using a broadband (550-1350nm) diffuse optical spectrometer. Distortions caused by fluorescence and finite bandwidth of the laser source on estimated absorption were effectively accounted for in measurements and data analysis and compensated. A comprehensive summary and comparison between collagen and elastin is presented, highlighting distinct features for its accurate quantification in biological applications. Copyright © 2017 Elsevier B.V. All rights reserved.

  3. Fabrication and surface characterization of photopatterned encapsulated micromagnets for microrobotics and microfluidics applications

    Science.gov (United States)

    Li, Hui; Leachman, William; Kershaw, Joe

    2016-11-01

    In this paper, encapsulated micromagnets with magnetic core surrounded by pure SU-8 were fabricated utilizing multilayer photolithography with a middle NdFeB magnetic composite layer. Various geometries of micromagnets were fabricated with high density magnetic core and high resolution features, showing magnetically response while still being biocompatible and chemically resistant and making them suitable for a wide range of microrobotics and microfluidics applications. Especially, crescent and C-channel micromagnets showed potential of microtransportation devices because of their interior reservoirs. Surface characterization of the micromagnets was conducted using closed-form solutions derived from the general biplanar surface characterization method. The fabrication method was evaluated and the process errors were found less than 1%.

  4. Self-emulsifying drug delivery systems (SEDDS): formulation development, characterization, and applications.

    Science.gov (United States)

    Singh, Bhupinder; Bandopadhyay, Shantanu; Kapil, Rishi; Singh, Ramandeep; Katare, O

    2009-01-01

    Self-emulsifying drug delivery systems (SEDDS) possess unparalleled potential in improving oral bioavailability of poorly water-soluble drugs. Following their oral administration, these systems rapidly disperse in gastrointestinal fluids, yielding micro- or nanoemulsions containing the solubilized drug. Owing to its miniscule globule size, the micro/nanoemulsifed drug can easily be absorbed through lymphatic pathways, bypassing the hepatic first-pass effect. We present an exhaustive and updated account of numerous literature reports and patents on diverse types of self-emulsifying drug formulations, with emphasis on their formulation, characterization, and systematic optimization strategies. Recent advancements in various methodologies employed to characterize their globule size and shape, ability to encapsulate the drug, gastrointestinal and thermodynamic stability, rheological characteristics, and so forth, are discussed comprehensively to guide the formula-tor in preparing an effective and robust SEDDS formulation. Also, this exhaustive review offers an explicit discussion on vital applications of the SEDDS in bioavailability enhancement of various drugs, outlining an overview on myriad in vitro, in situ, and ex vivo techniques to assess the absorption and/ or permeation potential of drugs incorporated in the SEDDS in animal and cell line models, and the subsequent absorption pathways followed by them. In short, the current article furnishes an updated compilation of wide-ranging information on all the requisite vistas of the self-emulsifying formulations, thus paving the way for accelerated progress into the SEDDS application in pharmaceutical research.

  5. Preparation, Modification, Characterization, and Biosensing Application of Nanoporous Gold Using Electrochemical Techniques.

    Science.gov (United States)

    Bhattarai, Jay K; Neupane, Dharmendra; Nepal, Bishal; Mikhaylov, Vasilii; Demchenko, Alexei V; Stine, Keith J

    2018-03-16

    Nanoporous gold (np-Au), because of its high surface area-to-volume ratio, excellent conductivity, chemical inertness, physical stability, biocompatibility, easily tunable pores, and plasmonic properties, has attracted much interested in the field of nanotechnology. It has promising applications in the fields of catalysis, bio/chemical sensing, drug delivery, biomolecules separation and purification, fuel cell development, surface-chemistry-driven actuation, and supercapacitor design. Many chemical and electrochemical procedures are known for the preparation of np-Au. Recently, researchers are focusing on easier and controlled ways to tune the pores and ligaments size of np-Au for its use in different applications. Electrochemical methods have good control over fine-tuning pore and ligament sizes. The np-Au electrodes that are prepared using electrochemical techniques are robust and are easier to handle for their use in electrochemical biosensing. Here, we review different electrochemical strategies for the preparation, post-modification, and characterization of np-Au along with the synergistic use of both electrochemistry and np-Au for applications in biosensing.

  6. Carbazole Containing Copolymers: Synthesis, Characterization, and Applications in Reversible Holographic Recording

    Directory of Open Access Journals (Sweden)

    Bénédicte Mailhot-Jensen

    2010-01-01

    Full Text Available Carbazolic copolymers have been developed to be used in reversible holographic recording. This paper describes a complete analysis, from synthesis of the material to its applications, together with the corresponding characterizations. The investigated materials were photosensitive copolymers obtained from carbazolylalkylmethacrylates (CEM and octylmethacrylate (OMA. A detailed investigation was undertaken involving infrared spectroscopy and NMR techniques, 1H, 13C, COSY, and HSQC, in order to establish the chemical structure and the composition of the copolymers. Holographic recording characteristics were investigated with one- and two-layer photothermoplastic carriers. The two-layer carrier contains separate photosensitive and thermoplastic layers and gives the best holographic response. The surface of microstructured samples has been characterized by atomic force microscopy analysis. It is shown that via a photothermoplastic recording process, it is possible to record and read holograms practically in real time (~3 s with a diffraction efficiency of 10% and a spatial resolution higher than 1000 mm−1.

  7. Synthesis and characterization of magnesium doped cerium oxide for the fuel cell application

    International Nuclear Information System (INIS)

    Kumar, Amit; Kumari, Monika; Kumar, Mintu; Kumar, Sacheen; Kumar, Dinesh

    2016-01-01

    Cerium oxide has attained much attentions in global nanotechnology market due to valuable application for catalytic, fuel additive, and widely as electrolyte in solid oxide fuel cell. Doped cerium oxide has large oxygen vacancies that allow for greater reactivity and faster ion transport. These properties make cerium oxide suitable material for SOFCs application. Cerium oxide electrolyte requires lower operation temperature which shows improvement in processing and the fabrication technique. In our work, we synthesized magnesium doped cerium oxide by the co-precipitation method. With the magnesium doping catalytic reactivity of CeO_2 was increased. Synthesized nanoparticle were characterized by the XRD and UV absorption techniques.

  8. Applicability of slug interference testing of hydraulic characterization of contaminated aquifer sites

    International Nuclear Information System (INIS)

    Spane, F.A.; Swanson, L.C.

    1993-10-01

    Aquifer test methods available for characterizing hazardous waste sites are sometimes restricted because of problems with disposal of contaminated groundwater. These problems, in part, have made slug tests a more desirable method of determining hydraulic properties at such sites. However, in higher permeability formations (i.e., transmissivities ≥ 1 x 10 -3 m 2 /s), slug test results often cannot be analyzed and give, at best, only a lower limit for transmissivity. A need clearly exists to develop test methods that can be used to characterize higher permeability aquifers without removing large amounts of contaminated groundwater. One hydrologic test method that appears to hold promise for characterizing such sites is the slug interference test. To assess the applicability of this test method for use in shallow alluvial aquifer systems, slug interference tests have been conducted, along with more traditional aquifer testing methods, at several Hanford multiple-well sites. Transmissivity values estimated from the slug interference tests were comparable (within a factor of 2 to 3) to values calculated using traditional testing methods, and made it possible to calculate the storativity or specific yield for the intervening test formation. The corroboration of test results indicates that slug interference testing is a viable hydraulic characterization method in transmissive alluvial aquifers, and may represent one of the few test methods that can be used in sensitive areas where groundwater is contaminated

  9. Synthesis, Characterization and Applications of One-Dimensional Metal Oxide Nanostructures

    Science.gov (United States)

    Santulli, Alexander

    Nanomaterials have been of keen research interest, owing to their exciting and unique properties (e.g. optical, magnetic, electronic, and mechanical). These properties allow nanomaterials to have many applications in areas of medicine, alternative energy, catalysis, and information storage. In particular, one-dimensional (1D) nanomaterials are highly advantageous, owing to the inherent anisotropic nature, which allows for effective transport and study of properties on the nanoscale. More specifically, 1D metal oxide nanomaterials are of particular interest, owing to their high thermal and chemical stability, as well as their intriguing optical, electronic, and magnetic properties. Herein, we will investigate the synthesis and characterization of vanadium oxide, lithium niobate and chromium oxide. We will explore the methodologies utilized for the synthesis of these materials, as well as the overall properties of these unique nanomaterials. Furthermore, we will explore the application of titanium dioxide nanomaterials as the electron transport layer in dye sensitized solar cells (DSSCs), with an emphasis on the effect of the nanoscale morphology on the overall device efficiency.

  10. OpenMP Parallelization and Optimization of Graph-based Machine Learning Algorithms

    Science.gov (United States)

    2016-05-01

    Understanding Application Data Movement Characteristics using Intel VTune Amplifier and Software Development Emulator tools, Intel Xeon Phi User Group...sured by a summation of the weights along the graph cut) for this problem. This is equivalent to assigning a scalar or vector value ui to each i th data...graph Laplacian [9]. By projecting all vectors onto this sub-eigenspace, the iteration step reduces to a simple coefficient update. 2.2 Semi-supervised

  11. Characterization of PDMS samples with variation of its synthesis parameters for tunable optics applications

    Science.gov (United States)

    Marquez-Garcia, Josimar; Cruz-Félix, Angel S.; Santiago-Alvarado, Agustin; González-García, Jorge

    2017-09-01

    Nowadays the elastomer known as polydimethylsiloxane (PDMS, Sylgard 184), due to its physical properties, low cost and easy handle, have become a frequently used material for the elaboration of optical components such as: variable focal length liquid lenses, optical waveguides, solid elastic lenses, etc. In recent years, we have been working in the characterization of this material for applications in visual sciences; in this work, we describe the elaboration of PDMSmade samples, also, we present physical and optical properties of the samples by varying its synthesis parameters such as base: curing agent ratio, and both, curing time and temperature. In the case of mechanical properties, tensile and compression tests were carried out through a universal testing machine to obtain the respective stress-strain curves, and to obtain information regarding its optical properties, UV-vis spectroscopy is applied to the samples to obtain transmittance and absorbance curves. Index of refraction variation was obtained through an Abbe refractometer. Results from the characterization will determine the proper synthesis parameters for the elaboration of tunable refractive surfaces for potential applications in robotics.

  12. Characterization of high performance silicon-based VMJ PV cells for laser power transmission applications

    Science.gov (United States)

    Perales, Mico; Yang, Mei-huan; Wu, Cheng-liang; Hsu, Chin-wei; Chao, Wei-sheng; Chen, Kun-hsien; Zahuranec, Terry

    2016-03-01

    Continuing improvements in the cost and power of laser diodes have been critical in launching the emerging fields of power over fiber (PoF), and laser power beaming. Laser power is transmitted either over fiber (for PoF), or through free space (power beaming), and is converted to electricity by photovoltaic cells designed to efficiently convert the laser light. MH GoPower's vertical multi-junction (VMJ) PV cell, designed for high intensity photovoltaic applications, is fueling the emergence of this market, by enabling unparalleled photovoltaic receiver flexibility in voltage, cell size, and power output. Our research examined the use of the VMJ PV cell for laser power transmission applications. We fully characterized the performance of the VMJ PV cell under various laser conditions, including multiple near IR wavelengths and light intensities up to tens of watts per cm2. Results indicated VMJ PV cell efficiency over 40% for 9xx nm wavelengths, at laser power densities near 30 W/cm2. We also investigated the impact of the physical dimensions (length, width, and height) of the VMJ PV cell on its performance, showing similarly high performance across a wide range of cell dimensions. We then evaluated the VMJ PV cell performance within the power over fiber application, examining the cell's effectiveness in receiver packages that deliver target voltage, intensity, and power levels. By designing and characterizing multiple receivers, we illustrated techniques for packaging the VMJ PV cell for achieving high performance (> 30%), high power (> 185 W), and target voltages for power over fiber applications.

  13. Thread-Level Parallelization and Optimization of NWChem for the Intel MIC Architecture

    Energy Technology Data Exchange (ETDEWEB)

    Shan, Hongzhang; Williams, Samuel; Jong, Wibe de; Oliker, Leonid

    2014-10-10

    In the multicore era it was possible to exploit the increase in on-chip parallelism by simply running multiple MPI processes per chip. Unfortunately, manycore processors' greatly increased thread- and data-level parallelism coupled with a reduced memory capacity demand an altogether different approach. In this paper we explore augmenting two NWChem modules, triples correction of the CCSD(T) and Fock matrix construction, with OpenMP in order that they might run efficiently on future manycore architectures. As the next NERSC machine will be a self-hosted Intel MIC (Xeon Phi) based supercomputer, we leverage an existing MIC testbed at NERSC to evaluate our experiments. In order to proxy the fact that future MIC machines will not have a host processor, we run all of our experiments in tt native mode. We found that while straightforward application of OpenMP to the deep loop nests associated with the tensor contractions of CCSD(T) was sufficient in attaining high performance, significant effort was required to safely and efficiently thread the TEXAS integral package when constructing the Fock matrix. Ultimately, our new MPI OpenMP hybrid implementations attain up to 65x better performance for the triples part of the CCSD(T) due in large part to the fact that the limited on-card memory limits the existing MPI implementation to a single process per card. Additionally, we obtain up to 1.6x better performance on Fock matrix constructions when compared with the best MPI implementations running multiple processes per card.

  14. Preparation, characterization and application of novel proton conducting ceramics

    Science.gov (United States)

    Wang, Siwei

    Due to the immediate energy shortage and the requirement of environment protection nowadays, the efficient, effective and environmental friendly use of current energy sources is urgent. Energy conversion and storage is thus an important focus both for industry and academia. As one of the hydrogen energy related materials, proton conducting ceramics can be applied in solid oxide fuel cells and steam electrolysers, as well as high temperature hydrogen separation membranes and hydrogen sensors. For most of the practical applications, both high proton conductivity and chemical stability are desirable. However, the state-of-the-art proton conducting ceramics are facing great challenges in simultaneously fulfilling conductivity and stability requirements for practical applications. Consequently, understanding the properties for the proton conducting ceramics and developing novel materials that possess both high proton conductivity and enhanced chemical stability have both scientific and practical significances. The objective of this study is to develop novel proton conducting ceramics, either by evaluating the doping effects on the state-of-the-art simple perovskite structured barium cerates, or by investigating novel complex perovskite structured Ba3Ca1.18Nb1.82O 9-delta based proton conductors as potential proton conducting ceramics with improved proton conductivity and enhanced chemical stability. Different preparation methods were compared, and their influence on the structure, including the bulk and grain boundary environment has been investigated. In addition, the effects of microstructure on the electrical properties of the proton conducting ceramics have also been characterized. The solid oxide fuel cell application for the proton conducting ceramics performed as electrolyte membranes has been demonstrated.

  15. Quantum dot nanoparticle conjugation, characterization, and applications in neuroscience

    Science.gov (United States)

    Pathak, Smita

    Quantum dot are semiconducting nanoparticles that have been used for decades in a variety of applications such as solar cells, LEDs and medical imaging. Their use in the last area, however, has been extremely limited despite their potential as revolutionary new biological labeling tools. Quantum dots are much brighter and more stable than conventional fluorophores, making them optimal for high resolution imaging and long term studies. Prior work in this area involves synthesizing and chemically conjugating quantum dots to molecules of interest in-house. However this method is both time consuming and prone to human error. Additionally, non-specific binding and nanoparticle aggregation currently prevent researchers from utilizing this system to its fullest capacity. Another critical issue that has not been addressed is determining the number of ligands bound to nanoparticles, which is crucial for proper interpretation of results. In this work, methods to label fixed cells using two types of chemically modified quantum dots are studied. Reproducible non-specific artifact labeling is consistently demonstrated if antibody-quantum dot conditions are less than optimal. In order to explain this, antibodies bound to quantum dots were characterized and quantified. While other groups have qualitatively characterized antibody functionalized quantum dots using TEM, AFM, UV spectroscopy and gel electrophoresis, and in some cases have reported calculated estimates of the putative number of total antibodies bound to quantum dots, no quantitative experimental results had been reported prior to this work. The chemical functionalization and characterization of quantum dot nanocrystals achieved in this work elucidates binding mechanisms of ligands to nanoparticles and allows researchers to not only translate our tools to studies in their own areas of interest but also derive quantitative results from these studies. This research brings ease of use and increased reliability to

  16. Characterizations of biodegradable epoxy-coated cellulose nanofibrils (CNF) thin film for flexible microwave applications

    Science.gov (United States)

    Hongyi Mi; Chien-Hao Liu; Tzu-Husan Chang; Jung-Hun Seo; Huilong Zhang; Sang June Cho; Nader Behdad; Zhenqiang Ma; Chunhua Yao; Zhiyong Cai; Shaoqin Gong

    2016-01-01

    Wood pulp cellulose nanofibrils (CNF) thin film is a novel recyclable and biodegradable material. We investigated the microwave dielectric properties of the epoxy coated-CNF thin film for potential broad applications in flexible high speed electronics. The characterizations of dielectric properties were carried out in a frequency range of 1–10 GHz. The dielectric...

  17. Application of the dynamic characterization of metals in automotive industry

    Science.gov (United States)

    D'Aiuto, Fabio; De Caro, Daniele; Federici, Claudio; Tedesco, Michele M.; Ziggiotti, Alessandro; Cadoni, Ezio

    2015-09-01

    This paper presents the experimental methodology used by R&D EMEA - Global Materials Labs Department to test metals at high strain rate of 500 s-1. The implementation of dynamic results in commercial FEM Software LS - DYNA for crash simulation are presented. The effects of the strain rate on the tensile properties of metals, used in automotive field, are evaluated using results obtained from a direct tension split Hopkinson bar, built in collaboration with the University of Applied Sciences of Southern Switzerland DynaMat Lab. Finally the complete mechanical characterization of the Magnesium alloy AZ31B is presented, from static up to dynamic tests, showing its applications in FCA (Fiat Chrysler Automobiles), problems and future developments.

  18. Synthesis and characterization of polymeric hydrogel containing caffeine for cosmeceutical applications

    International Nuclear Information System (INIS)

    Santos, Tiago C.; Oliveira, Maria José A.; Lugão, Ademar B.

    2017-01-01

    Caffeine, a substance with belongs to the group of methylxanthines, is alkaloids that penetrate in the human epidermis but is not easily absorbed into the bloodstream. With a dermatological active substance, it exerts action on the subcutaneous adipose tissue causing adipocyte lipolysis through the inhibition of phosphodiesterase. Based on these considerations, the objective of this study was to investigate the behavior of caffeine in a polymeric hydrogel matrix, for possible cosmeceutical applications. The hydrogels were cross-linked and sterilized by Cobalt-60 source gamma irradiation. In the characterization, were used thermogravimetry (TGA), scanning electron microscopy (SEM), differential scanning calorimetry (DSC). It was possible to observe by SEM the presence of crystals in the hydrogel sample. The DSC experiment confirmed a crystallinity of the sample and that caffeine is not degraded by gamma irradiation at 25 kGy. The results were satisfactory, allowing a new investigations that certify the benefits of its application. (author)

  19. Synthesis and characterization of polymeric hydrogel containing caffeine for cosmeceutical applications

    Energy Technology Data Exchange (ETDEWEB)

    Santos, Tiago C.; Oliveira, Maria José A.; Lugão, Ademar B., E-mail: tiagocesar-13@hotmail.com [Instituto de Pesquisas Energeticas e Nucleares (IPEN/CNE-SP), Sao Paulo, SP (Brazil)

    2017-07-01

    Caffeine, a substance with belongs to the group of methylxanthines, is alkaloids that penetrate in the human epidermis but is not easily absorbed into the bloodstream. With a dermatological active substance, it exerts action on the subcutaneous adipose tissue causing adipocyte lipolysis through the inhibition of phosphodiesterase. Based on these considerations, the objective of this study was to investigate the behavior of caffeine in a polymeric hydrogel matrix, for possible cosmeceutical applications. The hydrogels were cross-linked and sterilized by Cobalt-60 source gamma irradiation. In the characterization, were used thermogravimetry (TGA), scanning electron microscopy (SEM), differential scanning calorimetry (DSC). It was possible to observe by SEM the presence of crystals in the hydrogel sample. The DSC experiment confirmed a crystallinity of the sample and that caffeine is not degraded by gamma irradiation at 25 kGy. The results were satisfactory, allowing a new investigations that certify the benefits of its application. (author)

  20. Synthesis and characterization of electro-explosive magnetic nanoparticles for biomedical applications

    Science.gov (United States)

    Bakina, O. V.; Glazkova, E. A.; Svarovskaya, N. V.; Lerner, M. I.; Korovin, M. S.; Fomenko, A. N.

    2017-09-01

    Nowadays there are new magnetic nanostructures based on bioactive metals with low toxicity and high efficiency for a wide range of biomedical applications including drugs delivery, antimicrobial drugs design, cells' separation and contrasting. For such applications it is necessary to develop highly magnetic particles with less than 100 nm in size. In the present study magnetic nanoparticles Fe, Fe3O4 and bimetallic Cu/Fe with the average size of 60-90 nm have been synthesized by electrical explosion of wire in an oxygen or argon atmosphere. The produced nanoparticles have been characterized with transmission electron microscopy, X-ray phase analysis, and nitrogen thermal desorption. The synthesized particles have shown antibacterial activity to gram-positive (S. aureus, MRSA) and gramnegative (E. coli, P. aeruginosa) bacteria. According to the cytological data Fe, Fe3O4 and Cu/Fe nanoparticles have effectively inhibited viability of cancer cell lines Neuro-2a and J774. The obtained nanoparticles are promising for new antimicrobial drugs and antitumor agents' development.

  1. Communication Characterization and Optimization of Applications Using Topology-Aware Task Mapping on Large Supercomputers

    Energy Technology Data Exchange (ETDEWEB)

    Sreepathi, Sarat [ORNL; D' Azevedo, Eduardo [ORNL; Philip, Bobby [ORNL; Worley, Patrick H [ORNL

    2016-01-01

    On large supercomputers, the job scheduling systems may assign a non-contiguous node allocation for user applications depending on available resources. With parallel applications using MPI (Message Passing Interface), the default process ordering does not take into account the actual physical node layout available to the application. This contributes to non-locality in terms of physical network topology and impacts communication performance of the application. In order to mitigate such performance penalties, this work describes techniques to identify suitable task mapping that takes the layout of the allocated nodes as well as the application's communication behavior into account. During the first phase of this research, we instrumented and collected performance data to characterize communication behavior of critical US DOE (United States - Department of Energy) applications using an augmented version of the mpiP tool. Subsequently, we developed several reordering methods (spectral bisection, neighbor join tree etc.) to combine node layout and application communication data for optimized task placement. We developed a tool called mpiAproxy to facilitate detailed evaluation of the various reordering algorithms without requiring full application executions. This work presents a comprehensive performance evaluation (14,000 experiments) of the various task mapping techniques in lowering communication costs on Titan, the leadership class supercomputer at Oak Ridge National Laboratory.

  2. Preparation, Modification, Characterization, and Biosensing Application of Nanoporous Gold Using Electrochemical Techniques

    Directory of Open Access Journals (Sweden)

    Jay K. Bhattarai

    2018-03-01

    Full Text Available Nanoporous gold (np-Au, because of its high surface area-to-volume ratio, excellent conductivity, chemical inertness, physical stability, biocompatibility, easily tunable pores, and plasmonic properties, has attracted much interested in the field of nanotechnology. It has promising applications in the fields of catalysis, bio/chemical sensing, drug delivery, biomolecules separation and purification, fuel cell development, surface-chemistry-driven actuation, and supercapacitor design. Many chemical and electrochemical procedures are known for the preparation of np-Au. Recently, researchers are focusing on easier and controlled ways to tune the pores and ligaments size of np-Au for its use in different applications. Electrochemical methods have good control over fine-tuning pore and ligament sizes. The np-Au electrodes that are prepared using electrochemical techniques are robust and are easier to handle for their use in electrochemical biosensing. Here, we review different electrochemical strategies for the preparation, post-modification, and characterization of np-Au along with the synergistic use of both electrochemistry and np-Au for applications in biosensing.

  3. Implementing the PM Programming Language using MPI and OpenMP - a New Tool for Programming Geophysical Models on Parallel Systems

    Science.gov (United States)

    Bellerby, Tim

    2015-04-01

    PM (Parallel Models) is a new parallel programming language specifically designed for writing environmental and geophysical models. The language is intended to enable implementers to concentrate on the science behind the model rather than the details of running on parallel hardware. At the same time PM leaves the programmer in control - all parallelisation is explicit and the parallel structure of any given program may be deduced directly from the code. This paper describes a PM implementation based on the Message Passing Interface (MPI) and Open Multi-Processing (OpenMP) standards, looking at issues involved with translating the PM parallelisation model to MPI/OpenMP protocols and considering performance in terms of the competing factors of finer-grained parallelisation and increased communication overhead. In order to maximise portability, the implementation stays within the MPI 1.3 standard as much as possible, with MPI-2 MPI-IO file handling the only significant exception. Moreover, it does not assume a thread-safe implementation of MPI. PM adopts a two-tier abstract representation of parallel hardware. A PM processor is a conceptual unit capable of efficiently executing a set of language tasks, with a complete parallel system consisting of an abstract N-dimensional array of such processors. PM processors may map to single cores executing tasks using cooperative multi-tasking, to multiple cores or even to separate processing nodes, efficiently sharing tasks using algorithms such as work stealing. While tasks may move between hardware elements within a PM processor, they may not move between processors without specific programmer intervention. Tasks are assigned to processors using a nested parallelism approach, building on ideas from Reyes et al. (2009). The main program owns all available processors. When the program enters a parallel statement then either processors are divided out among the newly generated tasks (number of new tasks number of processors

  4. Self-discharge analysis and characterization of supercapacitors for environmentally powered wireless sensor network applications

    Science.gov (United States)

    Yang, Hengzhao; Zhang, Ying

    2011-10-01

    A new approach is presented to characterize the variable leakage resistance, a parameter in the variable leakage resistance model we developed to model supercapacitors used in environmentally powered wireless sensor network applications. Based on an analysis of the supercapacitor terminal behavior during the self-discharge, the variable leakage resistance is modeled as a function of the supercapacitor terminal voltage instead of the self-discharge time, which is more practical for an environmentally powered wireless sensor node. The new characterization approach is implemented and validated using MATLAB Simulink with a 10 F supercapacitor as an example. In addition, effects of initial voltages and temperatures on the supercapacitor self-discharge rate and the variable leakage resistance value are explored.

  5. Chitosan magnetic microspheres for technological applications: Preparation and characterization

    International Nuclear Information System (INIS)

    Podzus, P.E.; Daraio, M.E.; Jacobo, S.E.

    2009-01-01

    One of the major applications of chitosan and its many derivatives are based on its ability to bind strongly heavy and toxic metal ions. In this study chitosan magnetic microspheres have been synthesized. Acetic acid (1%w/v) solution was used as solvent for the chitosan polymer solution (2%w/v) where magnetite nanoparticles were suspended in order to obtain a stable ferrofluid. Glutaraldehyde was used as cross-linker. The magnetic characteristic of these materials allows an easy removal after use if is necessary. The morphological characterization of the microspheres shows that they can be produced in the size range 800-1100 μm. The adsorption of Cu(II) onto chitosan-magnetite nanoparticles was studied in batch system. A second-order kinetic model was used to fit the kinetic data, leading to an equilibrium adsorption capacity of 19 mg Cu/g chitosan.

  6. Characterization of lithium batteries for application to photovoltaic systems

    International Nuclear Information System (INIS)

    Guzman Ortiz, S.

    2015-01-01

    This master's thesis addresses the characterization of four different types of Battery technologies; the li-ion, the LiFePO4, the lead crystal and the lead acid. Because these devices are used in electric applications, calculations were made to assess the capacities and energies of the batteries while at different discharges ratios in runs from 5 to 50 hours, which are the most common on the photovoltaic sector. Also, we observed the behavior of the batteries when put through a rise of temperature to measure the fluctuations in the voltage, capacity and energy. Tests were performed at constant power to observe the behavior of the discharge intensity. When making the comparisons of the capacity and the energy, the LiFePO4 battery proved to be the best and better behavior in the tests at constant discharge rates. (Author)

  7. Characterization of an aluminum-filled polyamide powder for applications in selective laser sintering

    International Nuclear Information System (INIS)

    Mazzoli, Alida; Moriconi, Giacomo; Pauri, Marco Giuseppe

    2007-01-01

    Solid free-form fabrication (SFF) techniques use layer-based manufacturing to create physical objects directly from computer-generated models. Using an additive approach to manufacture shapes, SFF systems join liquid, powder or sheet materials. Selective laser sintering (SLS) is a SFF technique by which parts are built layer-by-layer offering the key advantage of the direct manufacturing of functional parts. In SLS, a laser beam is traced over the surface of a tightly compacted powder made of thermoplastic material. In this paper is characterized a new aluminum-filled polyamide powder developed for applications in SLS. This material is promising for many applications that require a metallic look of the part, good finishing properties, high stiffness and higher part quality

  8. Materials characterization techniques

    National Research Council Canada - National Science Library

    Zhang, Sam; Li, L; Kumar, Ashok

    2009-01-01

    "With an emphasis on practical applications and real-world case studies, Materials Characterization Techniques presents the principles of widely used advanced surface and structural characterization...

  9. Polymer nanocomposite nanomechanical cantilever sensors: material characterization, device development and application in explosive vapour detection

    International Nuclear Information System (INIS)

    Seena, V; Fernandes, Avil; Ramgopal Rao, V; Pant, Prita; Mukherji, Soumyo

    2011-01-01

    This paper reports an optimized and highly sensitive piezoresistive SU-8 nanocomposite microcantilever sensor and its application for detection of explosives in vapour phase. The optimization has been in improving its electrical, mechanical and transduction characteristics. We have achieved a better dispersion of carbon black (CB) in the SU-8/CB nanocomposite piezoresistor and arrived at an optimal range of 8-9 vol% CB concentration by performing a systematic mechanical and electrical characterization of polymer nanocomposites. Mechanical characterization of SU-8/CB nanocomposite thin films was performed using the nanoindentation technique with an appropriate substrate effect analysis. Piezoresistive microcantilevers having an optimum carbon black concentration were fabricated using a design aimed at surface stress measurements with reduced fabrication process complexity. The optimal range of 8-9 vol% CB concentration has resulted in an improved sensitivity, low device variability and low noise level. The resonant frequency and spring constant of the microcantilever were found to be 22 kHz and 0.4 N m -1 respectively. The devices exhibited a surface stress sensitivity of 7.6 ppm (mN m -1 ) -1 and the noise characterization results support their suitability for biochemical sensing applications. This paper also reports the ability of the sensor in detecting TNT vapour concentration down to less than six parts per billion with a sensitivity of 1 mV/ppb.

  10. Polymer nanocomposite nanomechanical cantilever sensors: material characterization, device development and application in explosive vapour detection

    Energy Technology Data Exchange (ETDEWEB)

    Seena, V; Fernandes, Avil; Ramgopal Rao, V [Centre for Excellence in Nanoelectronics, Department of Electrical Engineering, Indian Institute of Technology Bombay, Mumbai, Maharashtra (India); Pant, Prita [Department of Metallurgical Engineering and Materials Science, Indian Institute of Technology Bombay, Mumbai, Maharashtra (India); Mukherji, Soumyo, E-mail: seenapradeep@iitb.ac.in, E-mail: rrao@ee.iitb.ac.in [Department of Biosciences and Bio-engineering, Indian Institute of Technology Bombay, Mumbai, Maharashtra (India)

    2011-07-22

    This paper reports an optimized and highly sensitive piezoresistive SU-8 nanocomposite microcantilever sensor and its application for detection of explosives in vapour phase. The optimization has been in improving its electrical, mechanical and transduction characteristics. We have achieved a better dispersion of carbon black (CB) in the SU-8/CB nanocomposite piezoresistor and arrived at an optimal range of 8-9 vol% CB concentration by performing a systematic mechanical and electrical characterization of polymer nanocomposites. Mechanical characterization of SU-8/CB nanocomposite thin films was performed using the nanoindentation technique with an appropriate substrate effect analysis. Piezoresistive microcantilevers having an optimum carbon black concentration were fabricated using a design aimed at surface stress measurements with reduced fabrication process complexity. The optimal range of 8-9 vol% CB concentration has resulted in an improved sensitivity, low device variability and low noise level. The resonant frequency and spring constant of the microcantilever were found to be 22 kHz and 0.4 N m{sup -1} respectively. The devices exhibited a surface stress sensitivity of 7.6 ppm (mN m{sup -1}){sup -1} and the noise characterization results support their suitability for biochemical sensing applications. This paper also reports the ability of the sensor in detecting TNT vapour concentration down to less than six parts per billion with a sensitivity of 1 mV/ppb.

  11. Polymer nanocomposite nanomechanical cantilever sensors: material characterization, device development and application in explosive vapour detection.

    Science.gov (United States)

    Seena, V; Fernandes, Avil; Pant, Prita; Mukherji, Soumyo; Rao, V Ramgopal

    2011-07-22

    This paper reports an optimized and highly sensitive piezoresistive SU-8 nanocomposite microcantilever sensor and its application for detection of explosives in vapour phase. The optimization has been in improving its electrical, mechanical and transduction characteristics. We have achieved a better dispersion of carbon black (CB) in the SU-8/CB nanocomposite piezoresistor and arrived at an optimal range of 8-9 vol% CB concentration by performing a systematic mechanical and electrical characterization of polymer nanocomposites. Mechanical characterization of SU-8/CB nanocomposite thin films was performed using the nanoindentation technique with an appropriate substrate effect analysis. Piezoresistive microcantilevers having an optimum carbon black concentration were fabricated using a design aimed at surface stress measurements with reduced fabrication process complexity. The optimal range of 8-9 vol% CB concentration has resulted in an improved sensitivity, low device variability and low noise level. The resonant frequency and spring constant of the microcantilever were found to be 22 kHz and 0.4 N m(-1) respectively. The devices exhibited a surface stress sensitivity of 7.6 ppm (mN m(-1))(-1) and the noise characterization results support their suitability for biochemical sensing applications. This paper also reports the ability of the sensor in detecting TNT vapour concentration down to less than six parts per billion with a sensitivity of 1 mV/ppb.

  12. A complete characterization of the (m,n-cubes and combinatorial applications in imaging, vision and discrete geometry

    Directory of Open Access Journals (Sweden)

    Daniel Khoshnoudirad

    2015-11-01

    Full Text Available The aim of this work is to provide a complete characterization of a (m,n-cube. The latter are the pieces of discrete planes appearing in Theoretical Computer Science, Discrete Geometry and Combinatorics. This characterization in three dimensions is the exact equivalent of the preimage for a discrete segment as it has been introduced by McIlroy. Further this characterization, which avoids the redundancies, reduces the combinatorial problem of determining the cardinality of the (m,n-cubes to a new combinatorial problem consisting of determining the volumic regions formed by the crossing of planes. This work can find applications in Imaging, Vision, and pattern recognition for instance.

  13. Application of microtremor horizontal-to-vertical spectral ratio (MHVSR) analysis for site characterization: State of the art

    Science.gov (United States)

    Molnar, S.; Cassidy, J. F.; Castellaro, S.; Cornou, C.; Crow, H.; Hunter, J. A.; Matsushima, S.; Sanchez-Sesma, F. J.; Yong, Alan

    2018-01-01

    Nakamura (Q Rep Railway Tech Res Inst 30:25–33, 1989) popularized the application of the horizontal-to-vertical spectral ratio (HVSR) analysis of microtremor (seismic noise or ambient vibration) recordings to estimate the predominant frequency and amplification factor of earthquake shaking. During the following quarter century, popularity in the microtremor HVSR (MHVSR) method grew; studies have verified the stability of a site’s MHVSR response over time and validated the MHVSR response with that of earthquake HVSR response. Today, MHVSR analysis is a popular reconnaissance tool used worldwide for seismic microzonation and earthquake site characterization in numerous regions, specifically, in the mapping of site period or fundamental frequency and inverted for shear-wave velocity depth profiles, respectively. However, the ubiquity of MHVSR analysis is predominantly a consequence of its ease in application rather than our full understanding of its theory. We present the state of the art in MHVSR analyses in terms of the development of its theoretical basis, current state of practice, and we comment on its future for applications in earthquake site characterization.

  14. Application of Microtremor Horizontal-to-Vertical Spectral Ratio (MHVSR) Analysis for Site Characterization: State of the Art

    Science.gov (United States)

    Molnar, S.; Cassidy, J. F.; Castellaro, S.; Cornou, C.; Crow, H.; Hunter, J. A.; Matsushima, S.; Sánchez-Sesma, F. J.; Yong, A.

    2018-03-01

    Nakamura (Q Rep Railway Tech Res Inst 30:25-33, 1989) popularized the application of the horizontal-to-vertical spectral ratio (HVSR) analysis of microtremor (seismic noise or ambient vibration) recordings to estimate the predominant frequency and amplification factor of earthquake shaking. During the following quarter century, popularity in the microtremor HVSR (MHVSR) method grew; studies have verified the stability of a site's MHVSR response over time and validated the MHVSR response with that of earthquake HVSR response. Today, MHVSR analysis is a popular reconnaissance tool used worldwide for seismic microzonation and earthquake site characterization in numerous regions, specifically, in the mapping of site period or fundamental frequency and inverted for shear-wave velocity depth profiles, respectively. However, the ubiquity of MHVSR analysis is predominantly a consequence of its ease in application rather than our full understanding of its theory. We present the state of the art in MHVSR analyses in terms of the development of its theoretical basis, current state of practice, and we comment on its future for applications in earthquake site characterization.

  15. Atomic Force Microscopy in Characterizing Cell Mechanics for Biomedical Applications: A Review.

    Science.gov (United States)

    Li, Mi; Dang, Dan; Liu, Lianqing; Xi, Ning; Wang, Yuechao

    2017-09-01

    Cell mechanics is a novel label-free biomarker for indicating cell states and pathological changes. The advent of atomic force microscopy (AFM) provides a powerful tool for quantifying the mechanical properties of single living cells in aqueous conditions. The wide use of AFM in characterizing cell mechanics in the past two decades has yielded remarkable novel insights in understanding the development and progression of certain diseases, such as cancer, showing the huge potential of cell mechanics for practical applications in the field of biomedicine. In this paper, we reviewed the utilization of AFM to characterize cell mechanics. First, the principle and method of AFM single-cell mechanical analysis was presented, along with the mechanical responses of cells to representative external stimuli measured by AFM. Next, the unique changes of cell mechanics in two types of physiological processes (stem cell differentiation, cancer metastasis) revealed by AFM were summarized. After that, the molecular mechanisms guiding cell mechanics were analyzed. Finally the challenges and future directions were discussed.

  16. Performance evaluation of throughput computing workloads using multi-core processors and graphics processors

    Science.gov (United States)

    Dave, Gaurav P.; Sureshkumar, N.; Blessy Trencia Lincy, S. S.

    2017-11-01

    Current trend in processor manufacturing focuses on multi-core architectures rather than increasing the clock speed for performance improvement. Graphic processors have become as commodity hardware for providing fast co-processing in computer systems. Developments in IoT, social networking web applications, big data created huge demand for data processing activities and such kind of throughput intensive applications inherently contains data level parallelism which is more suited for SIMD architecture based GPU. This paper reviews the architectural aspects of multi/many core processors and graphics processors. Different case studies are taken to compare performance of throughput computing applications using shared memory programming in OpenMP and CUDA API based programming.

  17. Artificial neural network application in isotopic characterization of radioactive waste drums

    International Nuclear Information System (INIS)

    Potiens Junior, Ademar Jose

    2005-01-01

    One of the most important aspects to the development of the nuclear technology is the safe management of the radioactive waste arising from several stages of the nuclear fuel cycles, as well as from production and use of radioisotope in the medicine, industry and research centers. The accurate characterization of this waste is not a simple task, given to its diversity in isotopic composition and non homogeneity in the space distribution and mass density. In this work it was developed a methodology for quantification and localization of radionuclides not non homogeneously distributed in a 200 liters drum based in the Monte Carlo Method and Artificial Neural Network (RNA), for application in the isotopic characterization of the stored radioactive waste at IPEN. Theoretical arrangements had been constructed involving the division of the radioactive waste drum in some units or cells and some possible configurations of source intensities. Beyond the determination of the detection positions, the respective detection efficiencies for each position in function of each cell of the drum had been obtained. After the construction and the training of the RNA's for each developed theoretical arrangement, the validation of the method were carried out for the two arrangements that had presented the best performance. The results obtained show that the methodology developed in this study could be an effective tool for isotopic characterization of radioactive wastes contained in many kind of packages. (author)

  18. Design, Fabrication, and Characterization of Carbon Nanotube Field Emission Devices for Advanced Applications

    Science.gov (United States)

    Radauscher, Erich Justin

    Carbon nanotubes (CNTs) have recently emerged as promising candidates for electron field emission (FE) cathodes in integrated FE devices. These nanostructured carbon materials possess exceptional properties and their synthesis can be thoroughly controlled. Their integration into advanced electronic devices, including not only FE cathodes, but sensors, energy storage devices, and circuit components, has seen rapid growth in recent years. The results of the studies presented here demonstrate that the CNT field emitter is an excellent candidate for next generation vacuum microelectronics and related electron emission devices in several advanced applications. The work presented in this study addresses determining factors that currently confine the performance and application of CNT-FE devices. Characterization studies and improvements to the FE properties of CNTs, along with Micro-Electro-Mechanical Systems (MEMS) design and fabrication, were utilized in achieving these goals. Important performance limiting parameters, including emitter lifetime and failure from poor substrate adhesion, are examined. The compatibility and integration of CNT emitters with the governing MEMS substrate (i.e., polycrystalline silicon), and its impact on these performance limiting parameters, are reported. CNT growth mechanisms and kinetics were investigated and compared to silicon (100) to improve the design of CNT emitter integrated MEMS based electronic devices, specifically in vacuum microelectronic device (VMD) applications. Improved growth allowed for design and development of novel cold-cathode FE devices utilizing CNT field emitters. A chemical ionization (CI) source based on a CNT-FE electron source was developed and evaluated in a commercial desktop mass spectrometer for explosives trace detection. This work demonstrated the first reported use of a CNT-based ion source capable of collecting CI mass spectra. The CNT-FE source demonstrated low power requirements, pulsing

  19. Characterizations of Anti-Alpha-Fetoprotein-Conjugated Magnetic Nanoparticles Associated with Alpha-Fetoprotein for Biomedical Applications.

    Science.gov (United States)

    Liao, Shu-Hsien; Huang, Han-Sheng; Chieh, Jen-Jie; Su, Yu-Kai; Tong, Yuan-Fu; Huang, Kai-Wen

    2017-09-03

    In this work, we report characterizations of biofunctionalized magnetic nanoparticles (BMNPs) associated with alpha-fetoprotein (AFP) for biomedical applications. The example BMNP in this study is anti-alpha-fetoprotein (anti-AFP) conjugated onto dextran-coated Fe₃O₄ labeled as Fe₃O₄-anti-AFP, and the target is AFP. We characterize magnetic properties, such as increments of magnetization ΔM H and effective relaxation time Δτ eff in the reaction process. It is found that both ΔM H and Δτ eff are enhanced when the concentration of AFP, Ф AFP , increases. The enhancements are due to magnetic interactions among BMNPs in magnetic clusters, which contribute extra M H after the association with M H and in turn enhance τ eff . The screening of patients carrying hepatocellular carcinoma (HCC) is verified via ΔM H /M H . The proposed method can be applied to detect a wide variety of analytes. The scaling characteristics of ΔM H /M H show the potential to develop a vibrating sample magnetometer system with low field strength for clinic applications.

  20. Wind-Tunnel Balance Characterization for Hypersonic Research Applications

    Science.gov (United States)

    Lynn, Keith C.; Commo, Sean A.; Parker, Peter A.

    2012-01-01

    Wind-tunnel research was recently conducted at the NASA Langley Research Center s 31-Inch Mach 10 Hypersonic Facility in support of the Mars Science Laboratory s aerodynamic program. Researchers were interested in understanding the interaction between the freestream flow and the reaction control system onboard the entry vehicle. A five-component balance, designed for hypersonic testing with pressurized flow-through capability, was used. In addition to the aerodynamic forces, the balance was exposed to both thermal gradients and varying internal cavity pressures. Historically, the effect of these environmental conditions on the response of the balance have not been fully characterized due to the limitations in the calibration facilities. Through statistical design of experiments, thermal and pressure effects were strategically and efficiently integrated into the calibration of the balance. As a result of this new approach, researchers were able to use the balance continuously throughout the wide range of temperatures and pressures and obtain real-time results. Although this work focused on a specific application, the methodology shown can be applied more generally to any force measurement system calibration.

  1. Fast acceleration of 2D wave propagation simulations using modern computational accelerators.

    Directory of Open Access Journals (Sweden)

    Wei Wang

    Full Text Available Recent developments in modern computational accelerators like Graphics Processing Units (GPUs and coprocessors provide great opportunities for making scientific applications run faster than ever before. However, efficient parallelization of scientific code using new programming tools like CUDA requires a high level of expertise that is not available to many scientists. This, plus the fact that parallelized code is usually not portable to different architectures, creates major challenges for exploiting the full capabilities of modern computational accelerators. In this work, we sought to overcome these challenges by studying how to achieve both automated parallelization using OpenACC and enhanced portability using OpenCL. We applied our parallelization schemes using GPUs as well as Intel Many Integrated Core (MIC coprocessor to reduce the run time of wave propagation simulations. We used a well-established 2D cardiac action potential model as a specific case-study. To the best of our knowledge, we are the first to study auto-parallelization of 2D cardiac wave propagation simulations using OpenACC. Our results identify several approaches that provide substantial speedups. The OpenACC-generated GPU code achieved more than 150x speedup above the sequential implementation and required the addition of only a few OpenACC pragmas to the code. An OpenCL implementation provided speedups on GPUs of at least 200x faster than the sequential implementation and 30x faster than a parallelized OpenMP implementation. An implementation of OpenMP on Intel MIC coprocessor provided speedups of 120x with only a few code changes to the sequential implementation. We highlight that OpenACC provides an automatic, efficient, and portable approach to achieve parallelization of 2D cardiac wave simulations on GPUs. Our approach of using OpenACC, OpenCL, and OpenMP to parallelize this particular model on modern computational accelerators should be applicable to other

  2. Complex layered materials and periodic electromagnetic band-gap structures: Concepts, characterizations, and applications

    Science.gov (United States)

    Mosallaei, Hossein

    The main objective of this dissertation is to characterize and create insight into the electromagnetic performances of two classes of composite structures, namely, complex multi-layered media and periodic Electromagnetic Band-Gap (EBG) structures. The advanced and diversified computational techniques are applied to obtain their unique propagation characteristics and integrate the results into some novel applications. In the first part of this dissertation, the vector wave solution of Maxwell's equations is integrated with the Genetic Algorithm (GA) optimization method to provide a powerful technique for characterizing multi-layered materials, and obtaining their optimal designs. The developed method is successfully applied to determine the optimal composite coatings for Radar Cross Section (RCS) reduction of canonical structures. Both monostatic and bistatic scatterings are explored. A GA with hybrid planar/curved surface implementation is also introduced to efficiently obtain the optimal absorbing materials for curved structures. Furthermore, design optimization of the non-uniform Luneburg and 2-shell spherical lens antennas utilizing modal solution/GA-adaptive-cost function is presented. The lens antennas are effectively optimized for both high gain and suppressed grating lobes. The second part demonstrates the development of an advanced computational engine, which accurately computes the broadband characteristics of challenging periodic electromagnetic band-gap structures. This method utilizes the Finite Difference Time Domain (FDTD) technique with Periodic Boundary Condition/Perfectly Matched Layer (PBC/PML), which is efficiently integrated with the Prony scheme. The computational technique is successfully applied to characterize and present the unique propagation performances of different classes of periodic structures such as Frequency Selective Surfaces (FSS), Photonic Band-Gap (PBG) materials, and Left-Handed (LH) composite media. The results are

  3. Polymeric-silica-based sols for membrane modification applications: sol-gel synthesis and characterization with SAXS

    NARCIS (Netherlands)

    de Lange, Rob; de Lange, R.S.A.; Hekkink, J.H.A.; Hekkink, J.H.A.; Keizer, Klaas; Burggraaf, Anthonie; Burggraaf, A.J.

    1995-01-01

    Polymeric SiO2 and binary SiO2/TiO2, SiO2/ZrO2 and SiO2/Al2O3 sols, for ceramic membrane modification applications, have been prepared by acid-catalyzed hydrolysis and condensation of alkoxides in alcohol. The sols were characterized with small angle X-ray scattering, using synchrotron radiation.

  4. Synthesis and characterization of magneto-rheological (MR fluids for MR brake application

    Directory of Open Access Journals (Sweden)

    Bhau K. Kumbhar

    2015-09-01

    Full Text Available Magneto rheological (MR fluid technology has been proven for many industrial applications like shock absorbers, actuators, etc. MR fluid is a smart material whose rheological characteristics change rapidly and can be controlled easily in presence of an applied magnetic field. MR brake is a device to transmit torque by the shear stress of MR fluid. However, MR fluids exhibit yield stress of 50–90 kPa. In this research, an effort has been made to synthesize MR fluid sample/s which will typically meet the requirements of MR brake applications. In this study, various electrolytic and carbonyl iron powder based MR fluids have been synthesized by mixing grease as a stabilizer, oleic acid as an antifriction additive and gaur gum powder as a surface coating to reduce agglomeration of the MR fluid. MR fluid samples based on sunflower oil, which is bio-degradable, environmentally friendly and abundantly available have also been synthesized. These MR fluid samples are characterized for determination of magnetic, morphological and rheological properties. This study helps identify most suitable localized MR fluid meant for MR brake application.

  5. Construction and characterization of a pure protein hydrogel for drug delivery application.

    Science.gov (United States)

    Xu, Xu; Xu, ZhaoKang; Yang, XiaoFeng; He, YanHao; Lin, Rong

    2017-02-01

    Injectable hydrogels have a variety of applications, including regenerative medicine, tissue engineering and controlled drug delivery. In this paper, we reported on a pure protein hydrogel based on tetrameric recombinant proteins for the potential drug delivery application. This protein hydrogel was formed instantly by simply mixing two recombinant proteins (ULD-TIP1 and ULD-GGGWRESAI) through the specific protein-peptide interaction. The protein hydrogel was characterized by rheology and scanning electron microscopy (SEM). In vitro cytotoxicity test indicated that the developed protein hydrogel had no apparent cytotoxicity against L-929 cells and HCEC cells after 48h incubation. The formed protein hydrogels was gradually degraded after incubation in phosphate buffered solution (PBS, pH=7.4) for a period of 144h study, as indicated by in vitro degradation test. Encapsulation of model drug (sodium diclofenac; DIC) were achieved by simple mixing of drugs with hydrogelator and the entrapped drugs was almost completely released from hydrogels within 24h via a diffusion manner. As a conclusion, the simple and mild preparation procedure and good biocompatibility of protein hydrogel would render its good promising candidate for drug delivery applications. Copyright © 2016 Elsevier B.V. All rights reserved.

  6. K.I.S.S. Parallel Coding (lecture 2)

    CERN Multimedia

    CERN. Geneva

    2018-01-01

    K.I.S.S.ing parallel computing means, finally, loving it. Parallel computing will be approached in a theoretical and experimental way, using the most advanced and used C API: OpenMP. OpenMP is an open source project constantly developed and updated to hide the awful complexity of parallel coding in an awesome interface. The result is a tool which leaves plenty of space for clever solutions and terrific results in terms of efficiency and performance maximisation.

  7. Characterization of Plasma Synthesized Vertical Carbon Nanofibers for Nanoelectronics Applications

    Science.gov (United States)

    Lee, Jaesung; Feng, Philip X.-L.; Kaul, Anupama B.

    2013-01-01

    We report on the material characterization of carbon nanofibers (CNFs) which are assembled into a three-dimensional (3D) configuration for making new nanoelectromechanical systems (NEMS). High-resolution scanning electron microscopy (SEM) and x-ray electron dispersive spectroscopy (XEDS) are employed to decipher the morphology and chemical compositions of the CNFs at various locations along individual CNFs grown on silicon (Si) and refractory nitride (NbTiN) substrates, respectively. The measured characteristics suggest interesting properties of the CNF bodies and their capping catalyst nanoparticles, and growth mechanisms on the two substrates. Laser irradiation on the CNFs seems to cause thermal oxidation and melting of catalyst nanoparticles. The structural morphology and chemical compositions of the CNFs revealed in this study should aid in the applications of the CNFs to nanoelectronics and NEMS.

  8. Characterization of quartzite waste and their application on red ceramic

    International Nuclear Information System (INIS)

    Babisk, M.P.; Vidal, F.W.H.; Vieira, C.M.F.; Ribeiro, W.S.

    2012-01-01

    The incorporation of industrial waste into red ceramic have been used currently in the search for alternative raw materials, and also seeking for an environmentally friendly waste disposal that pollute. During the process of beneficiation of dimension stone, there are significant losses of material and waste generation, which have been placed inappropriately in nature, with no provision for use or reuse. The quartzite is geologically classified as a metamorphic rock composed almost entirely of quartz grains. The aim of this study is to characterize and evaluate the applicability of quartzite waste in the red ceramic. Incorporations were studied up to 40% by weight of waste in the ceramics body and the results indicated that the residue of quartz is a material with great potential to be used as a component in a red ceramic. (author)

  9. In-focal-plane characterization of excitation distribution for quantitative fluorescence microscopy applications

    Science.gov (United States)

    Dietrich, Klaus; Brülisauer, Martina; ćaǧin, Emine; Bertsch, Dietmar; Lüthi, Stefan; Heeb, Peter; Stärker, Ulrich; Bernard, André

    2017-06-01

    The applications of fluorescence microscopy span medical diagnostics, bioengineering and biomaterial analytics. Full exploitation of fluorescent microscopy is hampered by imperfections in illumination, detection and filtering. Mainly, errors stem from deviations induced by real-world components inducing spatial or angular variations of propagation properties along the optical path, and they can be addressed through consistent and accurate calibration. For many applications, uniform signal to noise ratio (SNR) over the imaging area is required. Homogeneous SNR can be achieved by quantifying and compensating for the signal bias. We present a method to quantitatively characterize novel reference materials as a calibration reference for biomaterials analytics. The reference materials under investigation comprise thin layers of fluorophores embedded in polymer matrices. These layers are highly homogeneous in their fluorescence response, where cumulative variations do not exceed 1% over the field of view (1.5 x 1.1 mm). An automated and reproducible measurement methodology, enabling sufficient correction for measurement artefacts, is reported. The measurement setup is equipped with an autofocus system, ensuring that the measured film quality is not artificially increased by out-of-focus reduction of the system modulation transfer function. The quantitative characterization method is suitable for analysis of modified bio-materials, especially through patterned protein decoration. The imaging method presented here can be used to statistically analyze protein patterns, thereby increasing both precision and throughput. Further, the method can be developed to include a reference emitter and detector pair on the image surface of the reference object, in order to provide traceable measurements.

  10. Practical materials characterization

    CERN Document Server

    2014-01-01

    Presents cross-comparison between materials characterization techniquesIncludes clear specifications of strengths and limitations of each technique for specific materials characterization problemFocuses on applications and clear data interpretation without extensive mathematics

  11. Tile Low Rank Cholesky Factorization for Climate/Weather Modeling Applications on Manycore Architectures

    KAUST Repository

    Akbudak, Kadir; Ltaief, Hatem; Mikhalev, Aleksandr; Keyes, David E.

    2017-01-01

    Covariance matrices are ubiquitous in computational science and engineering. In particular, large covariance matrices arise from multivariate spatial data sets, for instance, in climate/weather modeling applications to improve prediction using statistical methods and spatial data. One of the most time-consuming computational steps consists in calculating the Cholesky factorization of the symmetric, positive-definite covariance matrix problem. The structure of such covariance matrices is also often data-sparse, in other words, effectively of low rank, though formally dense. While not typically globally of low rank, covariance matrices in which correlation decays with distance are nearly always hierarchically of low rank. While symmetry and positive definiteness should be, and nearly always are, exploited for performance purposes, exploiting low rank character in this context is very recent, and will be a key to solving these challenging problems at large-scale dimensions. The authors design a new and flexible tile row rank Cholesky factorization and propose a high performance implementation using OpenMP task-based programming model on various leading-edge manycore architectures. Performance comparisons and memory footprint saving on up to 200K×200K covariance matrix size show a gain of more than an order of magnitude for both metrics, against state-of-the-art open-source and vendor optimized numerical libraries, while preserving the numerical accuracy fidelity of the original model. This research represents an important milestone in enabling large-scale simulations for covariance-based scientific applications.

  12. Tile Low Rank Cholesky Factorization for Climate/Weather Modeling Applications on Manycore Architectures

    KAUST Repository

    Akbudak, Kadir

    2017-05-11

    Covariance matrices are ubiquitous in computational science and engineering. In particular, large covariance matrices arise from multivariate spatial data sets, for instance, in climate/weather modeling applications to improve prediction using statistical methods and spatial data. One of the most time-consuming computational steps consists in calculating the Cholesky factorization of the symmetric, positive-definite covariance matrix problem. The structure of such covariance matrices is also often data-sparse, in other words, effectively of low rank, though formally dense. While not typically globally of low rank, covariance matrices in which correlation decays with distance are nearly always hierarchically of low rank. While symmetry and positive definiteness should be, and nearly always are, exploited for performance purposes, exploiting low rank character in this context is very recent, and will be a key to solving these challenging problems at large-scale dimensions. The authors design a new and flexible tile row rank Cholesky factorization and propose a high performance implementation using OpenMP task-based programming model on various leading-edge manycore architectures. Performance comparisons and memory footprint saving on up to 200K×200K covariance matrix size show a gain of more than an order of magnitude for both metrics, against state-of-the-art open-source and vendor optimized numerical libraries, while preserving the numerical accuracy fidelity of the original model. This research represents an important milestone in enabling large-scale simulations for covariance-based scientific applications.

  13. The application of GIS and remote sensing technologies for site characterization and environmental assessment

    International Nuclear Information System (INIS)

    Durfee, R.C.; McCord, R.A.; Dobson, J.E.

    1993-01-01

    Environmental cleanup and restoration of hazardous waste sites are major activities at federal facilities around the US. Geographic information systems (GIS) and remote sensing technologies are very useful computer tools to aid in site characterization, monitoring, assessment, and remediation efforts. Results from applying three technologies are presented to demonstrate examples of site characterization and environmental assessment for a federal facility. The first technology involves the development and use of GIS within the comprehensive Oak Ridge Environmental Information System (OREIS) to integrate facility data, terrain models, aerial and satellite imagery, demographics, waste area information, and geographic data bases. The second technology presents 3-D subsurface analyses and displays of groundwater and contaminant measurements within waste areas. In the third application, aerial survey information is being used to characterize land cover and vegetative patterns, detect change, and study areas of previous waste activities and possible transport pathways. These computer technologies are required to manage, analyze, and display the large amounts of environmental and geographic data that must be handled in carrying out effective environmental restoration

  14. Purification, Characterization and Application of Polygalacturonase from Aspergillus niger CSTRF

    Directory of Open Access Journals (Sweden)

    Arotupin Daniel Juwon

    2012-09-01

    Full Text Available Aims: The research was carried out to study the purification, characterization and application of polygalacturonase fromAspergillus niger CSTRF.Methodology and Results: The polygalacturonase (PG from the fungus was purified by ammonium sulphate precipitation and dialysed. The resulting fraction of the enzyme was further separated by molecular exclusion and ion exchange chromatography. The enzyme was purified 28.19 fold with a yield of approximately 69 % following purificationwith SP C-50. It has a relative molecular weight of 79,430 daltons and markedly influenced by temperature, pH and substrate concentrations of reactions with optimum activity at 35 °C, pH 4.0 and 8 mg/mL respectively. The PG was heat stable over a broad range of temperatures. Line weaver-Burk plot for the apparent hydrolysis of pectin showed approximately Km value of 2.7 mg/mL. The activity of the enzyme was enhanced by Na+, Ca2+, Mg2+ and Zn2+, while EDTA, PbCl2, HgCl2 and IAA were inhibitory. The ability of the purified enzyme to clarify fruit juice was also investigated.Conclusion, significance and impact of the study: This study revealed that polygalacturonase possesses properties for clarification of fruit juice and by extension bioprocessing applications.

  15. Preliminary characterization of a single photon counting detection system for CT application

    International Nuclear Information System (INIS)

    Belcari, N.; Bisogni, M.G.; Carpentieri, C.; Del Guerra, A.; Delogu, P.; Panetta, D.; Quattrocchi, M.; Rosso, V.; Stefanini, A.

    2007-01-01

    The aim of this work is to evaluate the capability of a single photon counting acquisition system based on the Medipix2 read-out chip for Computed Tomography (CT) applications in Small Animal Imaging. We used a micro-focus X-ray source with a W anode. The detection system is based on the Medipix2 read-out chip, bump-bonded to a 1 mm thick silicon pixel detector. The read-out chip geometry is a matrix of 256x256 cells, 55 μmx55 μm each. This system in planar radiography shows a good detection efficiency (about 70%) at the anode voltage of 30 kV and a good spatial resolution (MTF=10% at 16.8 lp/mm). Starting from these planar performances we have characterized the system for the tomography applications with phantoms. We will present the results obtained as a function of magnification with two different background medium compositions. The effect of the reconstruction algorithm on image quality will be also discussed

  16. Photo-physical characterization of fluorophore Ru(bpy32+ for optical biosensing applications

    Directory of Open Access Journals (Sweden)

    E.L. Sciuto

    2015-12-01

    Full Text Available We studied absorption, emission and lifetime of the coordination compound tris(2,2′-bipyridylruthenium(II fluorophore (Ru(bpy32+ both dissolved in water solutions and dried. Lifetime measurements were carried out using a new detector, the Silicon Photomultiplier (SiPM, which is more sensitive and physically much smaller than conventional optical detectors, such as imager and scanner. Through these analyses and a morphological characterization with transmission electron microscopy, revealed its usability for sensor applications, in particular, as dye in optical DNA-chip technology, a viable alternative to the conventional CY5 fluorophore. The use of Ru(bpy32+ would solve some of the typical disadvantages related to Cy5’s application, such as self-absorption of fluorescence and photobleaching. In addition, the Ru(bpy32+ longer lifetime may play a key role in the definition of new optical DNA-chip. Keywords: Tris(2,2′-bipyridylruthenium(II, Fluorophore, Spectroscopy, Lifetime measurements, SiPM, TEM

  17. Growth and Characterization of III-V Semiconductors for Device Applications

    Science.gov (United States)

    Williams, Michael D.

    2000-01-01

    The research goal was to achieve a fundamental understanding of the physical processes occurring at the surfaces and interfaces of epitaxially grown InGaAs/GaAs (100) heterostructures. This will facilitate the development of quantum well devices for infrared optical applications and provide quantitative descriptions of key phenomena which impact their performance. Devices impacted include high-speed laser diodes and modulators for fiber optic communications at 1.55 micron wavelengths and intersub-band lasers for longer infrared wavelengths. The phenomenon of interest studied was the migration of indium in InGaAs structures. This work centered on the molecular beam epitaxy reactor and characterization apparatus donated to CAU by AT&T Bell Laboratories. The material characterization tool employed was secondary ion mass spectrometry. The training of graduate and undergraduate students was an integral part of this program. The graduate students received a thorough exposure to state-of-the-art techniques and equipment for semiconductor materials analysis as part of the Master''s degree requirement in physics. The undergraduates were exposed to a minority scientist who has an excellent track record in this area. They also had the opportunity to explore surface physics as a career option. The results of the scientific work was published in a refereed journal and several talks were presented professional conferences and academic seminars.

  18. A Video Game-Based Framework for Analyzing Human-Robot Interaction: Characterizing Interface Design in Real-Time Interactive Multimedia Applications

    National Research Council Canada - National Science Library

    Richer, Justin; Drury, Jill L

    2006-01-01

    .... This paper segments video game interaction into domain-independent components which together form a framework that can be used to characterize real-time interactive multimedia applications in general...

  19. Applications of in situ cosmogenic nuclides in the geologic site characterization of Yucca Mountain, Nevada

    International Nuclear Information System (INIS)

    Gosse, J.C.; Harrington, C.D.

    1995-01-01

    The gradual buildup of rare isotopes from interactions between cosmic rays and atoms in an exposed rock provides a new method of directly determining the exposure age of rock surfaces. The cosmogenic nuclide method can also provide constraints on erosion rates and the length of time surface exposure was interrupted by burial. Numerous successful applications of the technique have been imperative to the complete surface geologic characterization of Yucca Mountain, Nevada, a potential high level nuclear waste repository. In this short paper, we summarize the cosmogenic nuclide method and describe with examples some the utility of the technique in geologic site characterization. We report preliminary results from our ongoing work at Yucca Mountain

  20. Synthesis and characterization of nanostructured titanium carbide for fuel cell applications

    Energy Technology Data Exchange (ETDEWEB)

    Singh, Paviter; Singh, Harwinder; Singh, Bikramjeet; Kaur, Manpreet; Kaur, Gurpreet; Kumar, Akshay, E-mail: akshaykumar.tiet@gmail.com [Advanced Functional Material Laboratory, Department of Nanotechnology,, Sri Guru Granth Sahib World University, Fatehgarh Sahib-140 406 Punjab (India); Kumar, Manjeet [Department of Materials Engineering, Defense Institute of Advanced Technology (DU), Pune-411 025 (India); Bala, Rajni [Department of Mathematics Punjabi University Patiala-147 002 Punjab (India)

    2016-04-13

    Titanium carbide (TiC) nanoparticles have been successfully synthesized by carbo-thermic reaction of titanium and acetone at 800 °C. This method is relatively low temperature synthesis route. It can be used for large scale production of TiC. The synthesized nanoparticles have been characterized by X-ray diffraction (XRD), scanning electron microscopy (SEM) and differential thermal analyzer (DTA) techniques. XRD analysis confirmed the formation of single phase TiC. XRD analysis confirmed that the particles are spherical in shape with an average particle size of 13 nm. DTA analysis shows that the phase is stable upto 900 °C and the material can be used for high temperature applications.

  1. Applicability of petroleum horizontal drilling technology to hazardous waste site characterization and remediation

    International Nuclear Information System (INIS)

    Goranson, C.

    1992-09-01

    Horizontal wells have the potential to become an important tool for use in characterization, remediation and monitoring operations at hazardous waste disposal, chemical manufacturing, refining and other sites where subsurface pollution may develop from operations or spills. Subsurface pollution of groundwater aquifers can occur at these sites by leakage of surface disposal ponds, surface storage tanks, underground storage tanks (UST), subsurface pipelines or leakage from surface operations. Characterization and remediation of aquifers at or near these sites requires drilling operations that are typically shallow, less than 500-feet in depth. Due to the shallow nature of polluted aquifers, waste site subsurface geologic formations frequently consist of unconsolidated materials. Fractured, jointed and/or layered high compressive strength formations or compacted caliche type formations can also be encountered. Some formations are unsaturated and have pore spaces that are only partially filled with water. Completely saturated underpressured aquifers may be encountered in areas where the static ground water levels are well below the ground surface. Each of these subsurface conditions can complicate the drilling and completion of wells needed for monitoring, characterization and remediation activities. This report describes some of the equipment that is available from petroleum drilling operations that has direct application to groundwater characterization and remediation activities. A brief discussion of petroleum directional and horizontal well drilling methodologies is given to allow the reader to gain an understanding of the equipment needed to drill and complete horizontal wells. Equipment used in river crossing drilling technology is also discussed. The final portion of this report is a description of the drilling equipment available and how it can be applied to groundwater characterization and remediation activities

  2. Open Source Platform Application to Groundwater Characterization and Monitoring

    Science.gov (United States)

    Ntarlagiannis, D.; Day-Lewis, F. D.; Falzone, S.; Lane, J. W., Jr.; Slater, L. D.; Robinson, J.; Hammett, S.

    2017-12-01

    Groundwater characterization and monitoring commonly rely on the use of multiple point sensors and human labor. Due to the number of sensors, labor, and other resources needed, establishing and maintaining an adequate groundwater monitoring network can be both labor intensive and expensive. To improve and optimize the monitoring network design, open source software and hardware components could potentially provide the platform to control robust and efficient sensors thereby reducing costs and labor. This work presents early attempts to create a groundwater monitoring system incorporating open-source software and hardware that will control the remote operation of multiple sensors along with data management and file transfer functions. The system is built around a Raspberry PI 3, that controls multiple sensors in order to perform on-demand, continuous or `smart decision' measurements while providing flexibility to incorporate additional sensors to meet the demands of different projects. The current objective of our technology is to monitor exchange of ionic tracers between mobile and immobile porosity using a combination of fluid and bulk electrical-conductivity measurements. To meet this objective, our configuration uses four sensors (pH, specific conductance, pressure, temperature) that can monitor the fluid electrical properties of interest and guide the bulk electrical measurement. This system highlights the potential of using open source software and hardware components for earth sciences applications. The versatility of the system makes it ideal for use in a large number of applications, and the low cost allows for high resolution (spatially and temporally) monitoring.

  3. Synthesis and characterization of polyglycerols dendrimers for applications in tissue engineering biological

    International Nuclear Information System (INIS)

    Passos, E.D.; Queiroz, A.A.A. de

    2014-01-01

    Full text: Introduction: Over the last twenty years is the growing development in the manufacture of synthetic scaffold in tissue engineering applications. These new materials are based on polyglycerol dendrimers (PGLD's). PGLD's are highly functional polymers with hydroxymethyl side groups, fulfill all structural prerequisites to replace poly(ethylene glycol)s in medical applications. Furthermore, since these materials are based on naturally occurring compounds that degrades over time in the body and can be safely excreted. The objective of this work was the synthesis, physicochemical, biological characterization of HPGL's with potential use as scaffolds in tissue engineering. HPGL's with oligomeric cores, of diglycerol triglycerol and tetraglycerol was used. Theoretical and Experimental Simulation Details: The synthesis of PGLD procedures involves the etherification of glycerol through anionic polymerization of glycidol. The PGLD's were characterized by chromatographic techniques (SEC and HPLC), spectroscopic (FTIR, 1H-NMR and 13C - NMR) electrochemical (zeta potential) and thermal analysis (DSC and TGA) techniques. The structure- activity relationships (SAR's) of compound prototype and its analogs were studied to determine the generation number (G) of the molecule responsible for the biological activity on the adhesion and cell proliferation process. A detailed study of the structure of PGLD's of G=0-4 was performed using the Hyperchem 7. 5 and Gromacs 4 software packages. The biocompatibility studies were studied by scanning electron microscopy (SEM) and fluorescence microscopy (EPF) technique after PGLD (G=0-4) blood contact. The overall electro-negativity/total charge density, dipole moment, frontier orbital's (HOMO - LUMO) and electrostatic potential maps (EPM) were calculated. The most stable form of the resulting compounds was determined by estimating the hydration energy and energy conformation. Results and Discussion: The techniques SEM and EPF

  4. Preparation and Characterization of Biomass-Derived Advanced Carbon Materials for Lithium-Ion Battery Applications

    Science.gov (United States)

    Hardiansyah, Andri; Chaldun, Elsy Rahimi; Nuryadin, Bebeh Wahid; Fikriyyah, Anti Khoerul; Subhan, Achmad; Ghozali, Muhammad; Purwasasmita, Bambang Sunendar

    2018-07-01

    In this study, carbon-based advanced materials for lithium-ion battery applications were prepared by using soybean waste-based biomass material, through a straightforward process of heat treatment followed by chemical modification processes. Various types of carbon-based advanced materials were developed. Physicochemical characteristics and electrochemical performance of the resultant materials were characterized systematically. Scanning electron microscopy observation revealed that the activated carbon and graphene exhibits wrinkles structures and porous morphology. Electrochemical impedance spectroscopy (EIS) revealed that both activated carbon and graphene-based material exhibited a good conductivity. For instance, the graphene-based material exhibited equivalent series resistance value of 25.9 Ω as measured by EIS. The graphene-based material also exhibited good reversibility and cyclic performance. Eventually, it would be anticipated that the utilization of soybean waste-based biomass material, which is conforming to the principles of green materials, could revolutionize the development of advanced material for high-performance energy storage applications, especially for lithium-ion batteries application.

  5. Energy materials. Advances in characterization, modelling and application

    International Nuclear Information System (INIS)

    Andersen, N.H.; Eldrup, M.; Hansen, N.; Juul Jensen, D.; Nielsen, E.M.; Nielsen, S.F.; Soerensen, B.F.; Pedersen, A.S.; Vegge, T.; West, S.S.

    2008-01-01

    Energy-related topics in the modern world and energy research programmes cover the range from basic research to applications and structural length scales from micro to macro. Materials research and development is a central part of the energy area as break-throughs in many technologies depend on a successful development and validation of new or advanced materials. The Symposium is organized by the Materials Research Department at Risoe DTU - National Laboratory for Sustainable Energy. The Department concentrates on energy problems combining basic and applied materials research with special focus on the key topics: wind, fusion, superconductors and hydrogen. The symposium is based on these key topics and focus on characterization of materials for energy applying neutron, X-ray and electron diffraction. Of special interest is research carried out at large facilities such as reactors and synchrotrons, supplemented by other experimental techniques and modelling on different length scales that underpins experiments. The Proceedings contain 15 key note presentations and 30 contributed presentations, covering the abovementioned key topics relevant for the energy materials. The contributions clearly show the importance of materials research when developing sustainable energy technologies and also that many challenges remain to be approached. (BA)

  6. Inorganic/organic hybrid nanocomposite coating applications: Formulation, characterization, and evaluation

    Science.gov (United States)

    Eyassu, Tsehaye

    Nanotechnology applications in coatings have shown significant growth in recent years. Systematic incorporation of nano-sized inorganic materials into polymer coating enhances optical, electrical, thermal and mechanical properties significantly. The present dissertation will focus on formulation, characterization and evaluation of inorganic/organic hybrid nanocomposite coatings for heat dissipation, corrosion inhibition and ultraviolet (UV) and near infrared (NIR) cut applications. In addition, the dissertation will cover synthesis, characterization and dispersion of functional inorganic fillers. In the first project, we investigated factors that can affect the "Molecular Fan" cooling performance and efficiency. The investigated factors and conditions include types of nanomaterials, size, loading amount, coating thickness, heat sink substrate, substrate surface modification, and power input. Using the optimal factors, MF coating was formulated and applied on commercial HDUs, and cooling efficiencies up to 22% and 23% were achieved using multi-walled carbon nanotube and graphene fillers. The result suggests that molecular fan action can reduce the size and mass of heat-sink module and thus offer a low cost of LED light unit. In the second project, we report the use of thin organic/inorganic hybrid coating as a protection for corrosion and as a thermal management to dissipate heat from galvanized steel. Here, we employed the in-situ phosphatization method for corrosion inhibition and "Molecular fan" technique to dissipate heat from galvanized steel panels and sheets. Salt fog tests reveal successful completion of 72 hours corrosion protection time frame for samples coated with as low as ~0.7microm thickness. Heat dissipation measurement shows 9% and 13% temperature cooling for GI and GL panels with the same coating thickness of ~0.7microm respectively. The effect of different factors, in-situ phosphatization reagent (ISPR), cross-linkers and nanomaterial on corrosion

  7. Energy Efficiency Experiments on Samsung Exynos 5 Heterogeneous Multicore using OmpSs Task Based Programming

    OpenAIRE

    Holmgren, Rune

    2015-01-01

    This thesis explore the energy efficiency of task based programming with OpenMP SuperScalar (OmpSs) on the heterogeneous Samsung Exynos 5422 system on a chip. The system features small energy efficient cores, large high performance cores and a GPGPU, and OmpSs tasks were run on all three different processors. Experiments running a genetic algorithm and a Cholesky decomposition were used to gather results. The option of running applications on the energy efficient cores, on the high perfo...

  8. Fabrication, Characterization, Properties, and Applications of Low-Dimensional BiFeO3 Nanostructures

    Directory of Open Access Journals (Sweden)

    Heng Wu

    2014-01-01

    Full Text Available Low-dimensional BiFeO3 nanostructures (e.g., nanocrystals, nanowires, nanotubes, and nanoislands have received considerable attention due to their novel size-dependent properties and outstanding multiferroic properties at room temperature. In recent years, much progress has been made both in fabrications and (microstructural, electrical, and magnetic in characterizations of BiFeO3 low-dimensional nanostructures. An overview of the state of art in BiFeO3 low-dimensional nanostructures is presented. First, we review the fabrications of high-quality BiFeO3 low-dimensional nanostructures via a variety of techniques, and then the structural characterizations and physical properties of the BiFeO3 low-dimensional nanostructures are summarized. Their potential applications in the next-generation magnetoelectric random access memories and photovoltaic devices are also discussed. Finally, we conclude this review by providing our perspectives to the future researches of BiFeO3 low-dimensional nanostructures and some key problems are also outlined.

  9. Parallelization of the model-based iterative reconstruction algorithm DIRA

    International Nuclear Information System (INIS)

    Oertenberg, A.; Sandborg, M.; Alm Carlsson, G.; Malusek, A.; Magnusson, M.

    2016-01-01

    New paradigms for parallel programming have been devised to simplify software development on multi-core processors and many-core graphical processing units (GPU). Despite their obvious benefits, the parallelization of existing computer programs is not an easy task. In this work, the use of the Open Multiprocessing (OpenMP) and Open Computing Language (OpenCL) frameworks is considered for the parallelization of the model-based iterative reconstruction algorithm DIRA with the aim to significantly shorten the code's execution time. Selected routines were parallelized using OpenMP and OpenCL libraries; some routines were converted from MATLAB to C and optimised. Parallelization of the code with the OpenMP was easy and resulted in an overall speedup of 15 on a 16-core computer. Parallelization with OpenCL was more difficult owing to differences between the central processing unit and GPU architectures. The resulting speedup was substantially lower than the theoretical peak performance of the GPU; the cause was explained. (authors)

  10. Carbon nanotube/platinum nanoparticle nanocomposites: preparation, characterization and application in electro oxidation of alcohols

    International Nuclear Information System (INIS)

    Kalinke, Adir H.; Zarbin, Aldo J. G.

    2014-01-01

    The synthesis and characterization of different platinum nanoparticle/ carbon nanotube nanocomposite samples are described along with the application of these nanocomposites as electrocatalysts for alcohol oxidation. Samples were prepared by a biphasic system in which platinum nanoparticles (Pt-NPs) are synthesized in situ in contact with a carbon nanotube (CNT) dispersion. Variables including platinum precursor/CNT ratio, previous chemical treatment of carbon nanotubes, and presence or absence of a capping agent were evaluated and correlated with the characteristic of the synthesized materials. Samples were characterized by Raman spectroscopy, X-ray diffraction, thermogravimetric analysis and transmission electron microscopy. Glassy carbon electrodes were modified by the nanocomposite samples and evaluated as electrocatalysts for alcohol oxidation. Current densities of 56.1 and 79.8/104.7 mA cm -2 were determined for the oxidation of methanol and ethanol, respectively. (author)

  11. Electrochemical and AFM Characterization of G-Quadruplex Electrochemical Biosensors and Applications

    Science.gov (United States)

    2018-01-01

    Guanine-rich DNA sequences are able to form G-quadruplexes, being involved in important biological processes and representing smart self-assembling nanomaterials that are increasingly used in DNA nanotechnology and biosensor technology. G-quadruplex electrochemical biosensors have received particular attention, since the electrochemical response is particularly sensitive to the DNA structural changes from single-stranded, double-stranded, or hairpin into a G-quadruplex configuration. Furthermore, the development of an increased number of G-quadruplex aptamers that combine the G-quadruplex stiffness and self-assembling versatility with the aptamer high specificity of binding to a variety of molecular targets allowed the construction of biosensors with increased selectivity and sensitivity. This review discusses the recent advances on the electrochemical characterization, design, and applications of G-quadruplex electrochemical biosensors in the evaluation of metal ions, G-quadruplex ligands, and other small organic molecules, proteins, and cells. The electrochemical and atomic force microscopy characterization of G-quadruplexes is presented. The incubation time and cations concentration dependence in controlling the G-quadruplex folding, stability, and nanostructures formation at carbon electrodes are discussed. Different G-quadruplex electrochemical biosensors design strategies, based on the DNA folding into a G-quadruplex, the use of G-quadruplex aptamers, or the use of hemin/G-quadruplex DNAzymes, are revisited. PMID:29666699

  12. IAEA Activities on Application of Nuclear Techniques in Development and Characterization of Materials for Hydrogen Economy

    International Nuclear Information System (INIS)

    Salame, P.; Zeman, A.; Mulhauser, F.

    2011-01-01

    Hydrogen and fuel cells can greatly contribute to a more sustainable less carbon-dependent global energy system. An effective and safe method for storage of hydrogen in solid materials is one of the greatest technologically challenging barriers of widespread introduction of hydrogen in global energy systems. However, aspects related to the development of effective materials for hydrogen storage and fuel cells are facing considerable technological challenges. To reach these goals, research efforts using a combination of advanced modeling, synthesis methods and characterization tools are required. Nuclear methods can play an effective role in the development and characterization of materials for hydrogen storage. Therefore, the IAEA initiated a coordinated research project to promote the application of nuclear techniques for investigation and characterization of new/improved materials relevant to hydrogen and fuel cell technologies. This paper gives an overview of the IAEA activities in this subject. (author)

  13. Implementation of Optical Characterization for Flexible Organic Electronics Applications

    Science.gov (United States)

    Laskarakis, A.; Logothetidis, S.

    One of the most rapidly evolving sectors of the modern science and technology is the flexible organic electronic devices (FEDs) that are expected to significantly improve and revolutionize our everyday life. The FED application includes the generation of electricity by renewable sources (by organic photovoltaic cells - OPVs), power storage (thin film batteries), the visualization of information (by organic displays), the working and living environment (ambient lighting, sensors), safety, market (smart labels, radio frequency identification tags - RFID), textiles (smart fabrics with embedded display and sensor capabilities), as well as healthcare (smart sensors for vital sign monitoring), etc. Although there has been important progresses in inorganic-based Si devices, there are numerous advances in the organic (semiconducting, conducting), inorganic, and hybrid (organic-inorganic) materials that exhibit desirable properties and stability, and in the synthesis and preparation methods. The understanding of the organic material properties can lead to the fast progress of the functionality and performance of FEDs. The investigation of the optical properties of these materials can promote the understanding of the optical, electrical, structural properties of organic semiconductors and electrodes and can contribute to the optimization of the synthesis process and the tuning of their structure and morphology. In this chapter, we will describe briefly some of the advances toward the implementation of optical characterization methods, such as Spectroscopic Ellipsometry (SE) from the infrared to the visible and ultraviolet spectral region for the study of materials (flexible polymer substrates, barrier layers, transparent electrodes) to be used for application in the fabrication of FEDs.

  14. Synthesis and characterization of hafnium oxide for luminescent applications

    International Nuclear Information System (INIS)

    Guzman Mendoza, J.; Aguilar Frutis, M.A.; Flores, G. Alarcon; Garcia Hipolito, M.; Azorin Nieto, J.; Rivera Montalvo, T.; Falcony, C.

    2008-01-01

    Full text: Hafnium oxide (HfO 2 ) is a material with a wide range of possible technological applications because it's chemical and physical properties such as high melting point, high chemical stability, high refraction index, high dielectric constant and hardness near to diamond in the tetragonal phase. The large energy gap and low phonon frequencies of the HfO 2 makes it appropriate as a host matrix for been doped with rare earth activators. Efficient luminescent materials find wide application in electroluminescent flat panel displays; color plasma displays panels, scintillators, cathode ray tubes, fluorescent lamps, lasers, etc. In recent years the study of luminescent materials based on HfO 2 has been intensified. Some groups have studied the optical properties of doped and undoped HfO 2 . In this contribution, Hafnium Oxide (HfO 2 ) films were prepared using the spray pyrolysis deposition technique. The material was synthesized using chlorides as raw materials in deionised water as solvent and deposited on Corning glass substrates at temperatures from 300 deg C to 600 deg C. For substrate temperatures lower than 400 deg C, the deposited films are amorphous, while for substrate temperatures higher than 450 deg C, the monoclinic phase of HfO 2 appears. Scanning electron microscopy with microprobe analysis was use to observe the microstructure and obtain the chemical composition of the films; rough surfaces with spherical particles were appreciated. UV and low energy X Ray radiations were used in order to achieve the thermoluminescent characterization of the films as a function of the deposition temperature

  15. Nonlinear Wave Simulation on the Xeon Phi Knights Landing Processor

    Science.gov (United States)

    Hristov, Ivan; Goranov, Goran; Hristova, Radoslava

    2018-02-01

    We consider an interesting from computational point of view standing wave simulation by solving coupled 2D perturbed Sine-Gordon equations. We make an OpenMP realization which explores both thread and SIMD levels of parallelism. We test the OpenMP program on two different energy equivalent Intel architectures: 2× Xeon E5-2695 v2 processors, (code-named "Ivy Bridge-EP") in the Hybrilit cluster, and Xeon Phi 7250 processor (code-named "Knights Landing" (KNL). The results show 2 times better performance on KNL processor.

  16. Nonlinear Wave Simulation on the Xeon Phi Knights Landing Processor

    OpenAIRE

    Hristov Ivan; Goranov Goran; Hristova Radoslava

    2018-01-01

    We consider an interesting from computational point of view standing wave simulation by solving coupled 2D perturbed Sine-Gordon equations. We make an OpenMP realization which explores both thread and SIMD levels of parallelism. We test the OpenMP program on two different energy equivalent Intel architectures: 2× Xeon E5-2695 v2 processors, (code-named “Ivy Bridge-EP”) in the Hybrilit cluster, and Xeon Phi 7250 processor (code-named “Knights Landing” (KNL). The results show 2 times better per...

  17. Synthesis and characterization of polyglycerols dendrimers for applications in tissue engineering biological

    Energy Technology Data Exchange (ETDEWEB)

    Passos, E.D.; Queiroz, A.A.A. de [Universidade Federal de Itajuba (UNIFEI), MG (Brazil)

    2014-07-01

    Full text: Introduction: Over the last twenty years is the growing development in the manufacture of synthetic scaffold in tissue engineering applications. These new materials are based on polyglycerol dendrimers (PGLD's). PGLD's are highly functional polymers with hydroxymethyl side groups, fulfill all structural prerequisites to replace poly(ethylene glycol)s in medical applications. Furthermore, since these materials are based on naturally occurring compounds that degrades over time in the body and can be safely excreted. The objective of this work was the synthesis, physicochemical, biological characterization of HPGL's with potential use as scaffolds in tissue engineering. HPGL's with oligomeric cores, of diglycerol triglycerol and tetraglycerol was used. Theoretical and Experimental Simulation Details: The synthesis of PGLD procedures involves the etherification of glycerol through anionic polymerization of glycidol. The PGLD's were characterized by chromatographic techniques (SEC and HPLC), spectroscopic (FTIR, 1H-NMR and 13C - NMR) electrochemical (zeta potential) and thermal analysis (DSC and TGA) techniques. The structure- activity relationships (SAR's) of compound prototype and its analogs were studied to determine the generation number (G) of the molecule responsible for the biological activity on the adhesion and cell proliferation process. A detailed study of the structure of PGLD's of G=0-4 was performed using the Hyperchem 7. 5 and Gromacs 4 software packages. The biocompatibility studies were studied by scanning electron microscopy (SEM) and fluorescence microscopy (EPF) technique after PGLD (G=0-4) blood contact. The overall electro-negativity/total charge density, dipole moment, frontier orbital's (HOMO - LUMO) and electrostatic potential maps (EPM) were calculated. The most stable form of the resulting compounds was determined by estimating the hydration energy and energy conformation. Results and

  18. Application of geophysical methods for fracture characterization

    International Nuclear Information System (INIS)

    Lee, K.H.; Majer, E.L.; McEvilly, T.V.; California Univ., Berkeley, CA; Morrison, H.F.; California Univ., Berkeley, CA

    1990-01-01

    One of the most crucial needs in the design and implementation of an underground waste isolation facility is a reliable method for the detection and characterization of fractures in zones away from boreholes or subsurface workings. Geophysical methods may represent a solution to this problem. If fractures represent anomalies in the elastic properties or conductive properties of the rocks, then the seismic and electrical techniques may be useful in detecting and characterizing fracture properties. 7 refs., 3 figs

  19. Computational methods for 2D materials: discovery, property characterization, and application design.

    Science.gov (United States)

    Paul, J T; Singh, A K; Dong, Z; Zhuang, H; Revard, B C; Rijal, B; Ashton, M; Linscheid, A; Blonsky, M; Gluhovic, D; Guo, J; Hennig, R G

    2017-11-29

    The discovery of two-dimensional (2D) materials comes at a time when computational methods are mature and can predict novel 2D materials, characterize their properties, and guide the design of 2D materials for applications. This article reviews the recent progress in computational approaches for 2D materials research. We discuss the computational techniques and provide an overview of the ongoing research in the field. We begin with an overview of known 2D materials, common computational methods, and available cyber infrastructures. We then move onto the discovery of novel 2D materials, discussing the stability criteria for 2D materials, computational methods for structure prediction, and interactions of monolayers with electrochemical and gaseous environments. Next, we describe the computational characterization of the 2D materials' electronic, optical, magnetic, and superconducting properties and the response of the properties under applied mechanical strain and electrical fields. From there, we move on to discuss the structure and properties of defects in 2D materials, and describe methods for 2D materials device simulations. We conclude by providing an outlook on the needs and challenges for future developments in the field of computational research for 2D materials.

  20. Characterization of physical properties of Al2O3 and ZrO2 nanofluids for heat transfer applications

    International Nuclear Information System (INIS)

    Rocha, Marcelo S.; Cabral, Eduardo L.L.; Sabundjian, Gaiane; Yoriyaz, Helio; Lima, Ana Cecilia S.; Belchior Junior, Antonio; Prado, Adelk C.; Filho, Tufic M.; Andrade, Delvonei A.; Shorto, Julian M.B.; Mesquita, Roberto N.; Otubo, Larissa; Baptista Filho, Benedito D.; Pinho, Priscila G.M.; Ribatsky, Gherhardt; Moraes, Anderson Antonio Ubices

    2015-01-01

    Studies demonstrate that nanofluids based on metal oxide nanoparticles have physical properties that characterize them as promising fluids, mainly, in industrial systems in which high heat flux takes place. Water based nanofluids of Al 2 O 3 and ZrO 2 were characterized regarding its promising use in heat transfer applications. Three different concentrations of dispersed solutions of cited nanofluids were prepared (0.01% vol., 0.05% vol., and 0.1% vol.) from commercial nanofluids. Experimental measurements were carried out at different temperatures. Thermal conductivity, viscosity and density of the prepared nanofluids were measured. (author)

  1. News and views from the attosecond generation, characterization and applications frontier

    International Nuclear Information System (INIS)

    Tzallas, P.; Kalpouzos, C.; Kruse, J.; Skatzakis, E.; Charalambidis, D.

    2010-01-01

    Complete text of publication follows. We report on recent results in the generation, characterization and applications of energetic attosecond pulse trains and ultra-broad coherent XUV continua: 1) Generation: 1a) We report experimental results confirming contribution of both long and short trajectories in on-axis harmonic generation before, at and after an atomic gas jet, i.e. under three different phase matching conditions. The contribution of both trajectories is manifested through their interference leading to a modulated harmonic (and side band) yield as a function of the driving intensity. 1b) We report the generation of sub-fs pulse trains at the 40 μJ pulse energy level from laser surface plasma, measured through 2 nd order intensity volume autocorrelation (2 nd order IVAC). 2) Characterization: We present comparative studies between RABITT and 2 nd order IVAC in on axis harmonic generation before, at and after an atomic gas jet. We find that the two techniques give fairly different results that are compatible with the differently weighted but unavoidable presence of the long and short trajectory in the generation process in all three phase matching conditions. We show that the relative contributions of the two trajectories can be estimated through RABITT measurements, while spatiotemporal mean pulse durations can be extracted from 2 nd order IVAC traces. 3) Applications: 3a) We present time resolved VUV spectroscopy of ultrafast dynamics in molecular ethylene. 3b) We present time resolved XUV spectroscopy at the 1 fs temporal scale and ultra-broad band XUV Fourier Transform Spectroscopy in a manifold of doubly excited autoionizing and inner-shell Auger decaying states excited simultaneously through a coherent broadband XUV continuum. Acknowledgments. This work is supported in part by the European Community's Human Potential Program under contract MTKD-CT-2004-517145 (X-HOMES), the Ultraviolet Laser Facility (ULF) operating at FORTH-IESL (contract PHRI

  2. Next Generation Suspension Dynamics Algorithms

    Energy Technology Data Exchange (ETDEWEB)

    Schunk, Peter Randall [Sandia National Lab. (SNL-NM), Albuquerque, NM (United States); Higdon, Jonathon [Sandia National Lab. (SNL-NM), Albuquerque, NM (United States); Chen, Steven [Sandia National Lab. (SNL-NM), Albuquerque, NM (United States)

    2014-12-01

    This research project has the objective to extend the range of application, improve the efficiency and conduct simulations with the Fast Lubrication Dynamics (FLD) algorithm for concentrated particle suspensions in a Newtonian fluid solvent. The research involves a combination of mathematical development, new computational algorithms, and application to processing flows of relevance in materials processing. The mathematical developments clarify the underlying theory, facilitate verification against classic monographs in the field and provide the framework for a novel parallel implementation optimized for an OpenMP shared memory environment. The project considered application to consolidation flows of major interest in high throughput materials processing and identified hitherto unforeseen challenges in the use of FLD in these applications. Extensions to the algorithm have been developed to improve its accuracy in these applications.

  3. Preparation and Characterization of Microencapsulated Phase Change Materials for Use in Building Applications

    Directory of Open Access Journals (Sweden)

    Jessica Giro-Paloma

    2015-12-01

    Full Text Available A method for preparing and characterizing microencapsulated phase change materials (MPCM was developed. A comparison with a commercial MPCM is also presented. Both MPCM contained paraffin wax as PCM with acrylic shell. The melting temperature of the PCM was around 21 °C, suitable for building applications. The M-2 (our laboratory made sample and Micronal® DS 5008 X (BASF samples were characterized using SEM, DSC, nano-indentation technique, and Gas Chromatography/Mass spectrometry (GC-MS. Both samples presented a 6 μm average size and a spherical shape. Thermal energy storage (TES capacities were 111.73 J·g−1 and 99.3 J·g−1 for M-2 and Micronal® DS 5008 X, respectively. Mechanical characterization of the samples was performed by nano-indentation technique in order to determine the elastic modulus (E, load at maximum displacement (Pm, and displacement at maximum load (hm, concluding that M-2 presented slightly better mechanical properties. Finally, an important parameter for considering use in buildings is the release of volatile organic compounds (VOC’s. This characteristic was studied at 65 °C by CG-MS. Both samples showed VOC’s emission after 10 min of heating, however peaks intensity of VOC’s generated from M-2 microcapsules showed a lower concentration than Micronal® DS 5008 X.

  4. Preparation and Characterization of Microencapsulated Phase Change Materials for Use in Building Applications.

    Science.gov (United States)

    Giro-Paloma, Jessica; Al-Shannaq, Refat; Fernández, Ana Inés; Farid, Mohammed M

    2015-12-26

    A method for preparing and characterizing microencapsulated phase change materials (MPCM) was developed. A comparison with a commercial MPCM is also presented. Both MPCM contained paraffin wax as PCM with acrylic shell. The melting temperature of the PCM was around 21 °C, suitable for building applications. The M-2 (our laboratory made sample) and Micronal ® DS 5008 X (BASF) samples were characterized using SEM, DSC, nano-indentation technique, and Gas Chromatography/Mass spectrometry (GC-MS). Both samples presented a 6 μm average size and a spherical shape. Thermal energy storage (TES) capacities were 111.73 J·g -1 and 99.3 J·g -1 for M-2 and Micronal ® DS 5008 X, respectively. Mechanical characterization of the samples was performed by nano-indentation technique in order to determine the elastic modulus ( E ), load at maximum displacement ( P m ), and displacement at maximum load ( h m ), concluding that M-2 presented slightly better mechanical properties. Finally, an important parameter for considering use in buildings is the release of volatile organic compounds (VOC's). This characteristic was studied at 65 °C by CG-MS. Both samples showed VOC's emission after 10 min of heating, however peaks intensity of VOC's generated from M-2 microcapsules showed a lower concentration than Micronal ® DS 5008 X.

  5. Characterization, Modeling and Application of Aerobic Granular Sludge for Wastewater Treatment

    Science.gov (United States)

    Liu, Xian-Wei; Yu, Han-Qing; Ni, Bing-Jie; Sheng, Guo-Ping

    Recently extensive studies have been carried out to cultivate aerobic granular sludge worldwide, including in China. Aerobic granules, compared with conventional activated sludge flocs, are well known for their regular, dense, and strong microbial structure, good settling ability, high biomass retention, and great ability to withstand shock loadings. Studies have shown that the aerobic granules could be applied for the treatment of low- or high-strength wastewaters, simultaneous removal of organic carbon, nitrogen and phosphorus, and decomposition of toxic wastewaters. Thus, this new form of activate sludge, like anaerobic granular sludge, could be employed for the treatment of municipal and industrial wastewaters in near future. This chapter attempts to provide an up-to-date review on the definition, cultivation, characterization, modeling and application of aerobic granular sludge for biological wastewater treatment. This review outlines some important discoveries with regard to the factors affecting the formation of aerobic granular sludge, their physicochemical characteristics, as well as their microbial structure and diversity. It also summarizes the modeling of aerobic granule formation. Finally, this chapter highlights the applications of aerobic granulation technology in the biological wastewater treatment. It is concluded that the knowledge regarding aerobic granular sludge is far from complete. Although previous studies in this field have undoubtedly improved our understanding on aerobic granular sludge, it is clear that much remains to be learned about the process and that many unanswered questions still remain. One of the challenges appears to be the integration of the existing and growing scientific knowledge base with the observations and applications in practice, which this paper hopes to partially achieve.

  6. Techniques for Automated Performance Analysis

    Energy Technology Data Exchange (ETDEWEB)

    Marcus, Ryan C. [Los Alamos National Lab. (LANL), Los Alamos, NM (United States)

    2014-09-02

    The performance of a particular HPC code depends on a multitude of variables, including compiler selection, optimization flags, OpenMP pool size, file system load, memory usage, MPI configuration, etc. As a result of this complexity, current predictive models have limited applicability, especially at scale. We present a formulation of scientific codes, nodes, and clusters that reduces complex performance analysis to well-known mathematical techniques. Building accurate predictive models and enhancing our understanding of scientific codes at scale is an important step towards exascale computing.

  7. Nonlinear Wave Simulation on the Xeon Phi Knights Landing Processor

    Directory of Open Access Journals (Sweden)

    Hristov Ivan

    2018-01-01

    Full Text Available We consider an interesting from computational point of view standing wave simulation by solving coupled 2D perturbed Sine-Gordon equations. We make an OpenMP realization which explores both thread and SIMD levels of parallelism. We test the OpenMP program on two different energy equivalent Intel architectures: 2× Xeon E5-2695 v2 processors, (code-named “Ivy Bridge-EP” in the Hybrilit cluster, and Xeon Phi 7250 processor (code-named “Knights Landing” (KNL. The results show 2 times better performance on KNL processor.

  8. The Research of the Parallel Computing Development from the Angle of Cloud Computing

    Science.gov (United States)

    Peng, Zhensheng; Gong, Qingge; Duan, Yanyu; Wang, Yun

    2017-10-01

    Cloud computing is the development of parallel computing, distributed computing and grid computing. The development of cloud computing makes parallel computing come into people’s lives. Firstly, this paper expounds the concept of cloud computing and introduces two several traditional parallel programming model. Secondly, it analyzes and studies the principles, advantages and disadvantages of OpenMP, MPI and Map Reduce respectively. Finally, it takes MPI, OpenMP models compared to Map Reduce from the angle of cloud computing. The results of this paper are intended to provide a reference for the development of parallel computing.

  9. Synthesis and characterization of superparamagnetic nanoparticles obtained by precipitation in inverse microemulsion for biomedical applications

    International Nuclear Information System (INIS)

    Puca Pacheco, Mercedes; Guerrero Aquino, Marco; Tacuri Calanchi, Enrique; Lopez Campos, Raul G.

    2013-01-01

    In this work the preparation of nanoparticles of magnetite by methods of precipitation in inverse microemulsions and the conventional method 'Chemical Co-precipitation' is reported. Magnetite nanoparticles were characterized by X-ray diffraction, Moessbauer spectroscopy and vibrating sample magnetometer (VSM). The results showed that the nanoparticles obtained by the method of precipitation in inverse microemulsion showed a superparamagnetic behavior and had a particle average diameter of 9 nm, while by the conventional method 'Chemical Co-precipitation' were 17 nm. In addition, other benefits observed in the application of the method of precipitation in inverse microemulsion with regard to the conventional method is that it allowed obtaining spheroidal magnetite nanoparticles, monodisperse and with magnetic and chemical properties which might have better results in medical applications. (author)

  10. Characterization of thermally sprayed coatings for high-temperature wear-protection applications

    International Nuclear Information System (INIS)

    Li, C.C.

    1980-03-01

    Under normal high-temperature gas-cooled reactor (HTGR) operating conditions, faying surfaces of metallic components under high contact pressure are prone to friction, wear, and self-welding damage. Component design calls for coatings for the protection of the mating surfaces. Anticipated operating temperatures up to 850 to 950 0 C (1562 to 1742 0 F) and a 40-y design life require coatings with excellent thermal stability and adequate wear and spallation resistance, and they must be compatible with the HTGR coolant helium environment. Plasma and detonation-gun (D-gun) deposited chromium carbide-base and stabilized zirconia coatings are under consideration for wear protection of reactor components such as the thermal barrier, heat exchangers, control rods, and turbomachinery. Programs are under way to address the structural integrity, helium compatibility, and tribological behavior of relevant sprayed coatings. In this paper, the need for protection of critical metallic components and the criteria for selection of coatings are discussed. The technical background to coating development and the experience with the steam cycle HTGR (HTGR-SC) are commented upon. Coating characterization techniques employed at General Atomic Company (GA) are presented, and the progress of the experimental programs is briefly reviewed. In characterizing the coatings for HTGR applications, it is concluded that a systems approach to establish correlation between coating process parameters and coating microstructural and tribological properties for design consideration is required

  11. Synthesis, Characterization, and Gas Sensing Applications of WO3 Nanobricks

    Science.gov (United States)

    Xiao, Jingkun; Song, Chengwen; Dong, Wei; Li, Chen; Yin, Yanyan; Zhang, Xiaoni; Song, Mingyan

    2015-08-01

    WO3 nanobricks are fabricated by a simple hydrothermal method. Morphology and structure of the WO3 nanobricks are characterized by scanning electron microscopy and x-ray diffraction. Gas sensing properties of the as-prepared WO3 sensor are systematically investigated by a static gas sensing system. The results show that the WO3 nanobricks with defect corners demonstrate good crystallinity, and the mean edge length and wall thickness are 1-1.5 and 400 nm, respectively. The WO3 sensor achieves its maximum sensitivity to 100 ppm ethanol at the optimal operating temperature of 300 °C. Ultra-fast response time (2-3 s) and fast recovery time (4-11 s) of the WO3 sensor toward 100 ppm ethanol are also observed at this optimal operating temperature. Moreover, the WO3 sensor exhibits high selectivity to other gases such as methanol, benzene, hexane, and dichloromethane, indicating its excellent potential application as a gas sensor for ethanol detection.

  12. Magneto-optical characterization of colloidal dispersions. Application to nickel nanoparticles.

    Science.gov (United States)

    Pascu, Oana; Caicedo, José Manuel; Fontcuberta, Josep; Herranz, Gervasi; Roig, Anna

    2010-08-03

    We report here on a fast magneto-optical characterization method for colloidal liquid dispersions of magnetic nanoparticles. We have applied our methodology to Ni nanoparticles with size equal or below 15 nm synthesized by a ligand stabilized solution-phase synthesis. We have measured the magnetic circular dichroism (MCD) of colloidal dispersions and found that we can probe the intrinsic magnetic properties within a wide concentration range, from 10(-5) up to 10(-2) M, with sensitivity to concentrations below 1 microg/mL of magnetic Ni particles. We found that the measured MCD signal scales up with the concentration thus providing a means of determining the concentration values of highly diluted dispersions. The methodology presented here exhibits large flexibility and versatility and might be suitable to study either fundamental problems related to properties of nanosize particles including surface related effects which are highly relevant for magnetic colloids in biomedical applications or to be applied to in situ testing and integration in production lines.

  13. Applications of Ground-based Mobile Atmospheric Monitoring: Real-time Characterization of Source Emissions and Ambient Concentrations

    Science.gov (United States)

    Goetz, J. Douglas

    Gas and particle phase atmospheric pollution are known to impact human and environmental health as well as contribute to climate forcing. While many atmospheric pollutants are regulated or controlled in the developed world uncertainty still remains regarding the impacts from under characterized emission sources, the interaction of anthropogenic and naturally occurring pollution, and the chemical and physical evolution of emissions in the atmosphere, among many other uncertainties. Because of the complexity of atmospheric pollution many types of monitoring have been implemented in the past, but none are capable of perfectly characterizing the atmosphere and each monitoring type has known benefits and disadvantages. Ground-based mobile monitoring with fast-response in-situ instrumentation has been used in the past for a number of applications that fill data gaps not possible with other types of atmospheric monitoring. In this work, ground-based mobile monitoring was implemented to quantify emissions from under characterized emission sources using both moving and portable applications, and used in a novel way for the characterization of ambient concentrations. In the Marcellus Shale region of Pennsylvania two mobile platforms were used to estimate emission rates from infrastructure associated with the production and transmission of natural gas using two unique methods. One campaign investigated emissions of aerosols, volatile organic compounds (VOCs), methane, carbon monoxide (CO), nitrogen dioxide (NO2), and carbon dioxide (CO 2) from natural gas wells, well development practices, and compressor stations using tracer release ratio methods and a developed fenceline tracer release correction factor. Another campaign investigated emissions of methane from Marcellus Shale gas wells and infrastructure associated with two large national transmission pipelines using the "Point Source Gaussian" method described in the EPA OTM-33a. During both campaigns ambient concentrations

  14. Boron-doped diamond electrode: synthesis, characterization, functionalization and analytical applications.

    Science.gov (United States)

    Luong, John H T; Male, Keith B; Glennon, Jeremy D

    2009-10-01

    In recent years, conductive diamond electrodes for electrochemical applications have been a major focus of research and development. The impetus behind such endeavors could be attributed to their wide potential window, low background current, chemical inertness, and mechanical durability. Several analytes can be oxidized by conducting diamond compared to other carbon-based materials before the breakdown of water in aqueous electrolytes. This is important for detecting and/or identifying species in solution since oxygen and hydrogen evolution do not interfere with the analysis. Thus, conductive diamond electrodes take electrochemical detection into new areas and extend their usefulness to analytes which are not feasible with conventional electrode materials. Different types of diamond electrodes, polycrystalline, microcrystalline, nanocrystalline and ultrananocrystalline, have been synthesized and characterized. Of particular interest is the synthesis of boron-doped diamond (BDD) films by chemical vapor deposition on various substrates. In the tetrahedral diamond lattice, each carbon atom is covalently bonded to its neighbors forming an extremely robust crystalline structure. Some carbon atoms in the lattice are substituted with boron to provide electrical conductivity. Modification strategies of doped diamond electrodes with metallic nanoparticles and/or electropolymerized films are of importance to impart novel characteristics or to improve the performance of diamond electrodes. Biofunctionalization of diamond films is also feasible to foster several useful bioanalytical applications. A plethora of opportunities for nanoscale analytical devices based on conducting diamond is anticipated in the very near future.

  15. An application of an optimal statistic for characterizing relative orientations

    Science.gov (United States)

    Jow, Dylan L.; Hill, Ryley; Scott, Douglas; Soler, J. D.; Martin, P. G.; Devlin, M. J.; Fissel, L. M.; Poidevin, F.

    2018-02-01

    We present the projected Rayleigh statistic (PRS), a modification of the classic Rayleigh statistic, as a test for non-uniform relative orientation between two pseudo-vector fields. In the application here, this gives an effective way of investigating whether polarization pseudo-vectors (spin-2 quantities) are preferentially parallel or perpendicular to filaments in the interstellar medium. For example, there are other potential applications in astrophysics, e.g. when comparing small-scale orientations with larger scale shear patterns. We compare the efficiency of the PRS against histogram binning methods that have previously been used for characterizing the relative orientations of gas column density structures with the magnetic field projected on the plane of the sky. We examine data for the Vela C molecular cloud, where the column density is inferred from Herschel submillimetre observations, and the magnetic field from observations by the Balloon-borne Large-Aperture Submillimetre Telescope in the 250-, 350- and 500-μm wavelength bands. We find that the PRS has greater statistical power than approaches that bin the relative orientation angles, as it makes more efficient use of the information contained in the data. In particular, the use of the PRS to test for preferential alignment results in a higher statistical significance, in each of the four Vela C regions, with the greatest increase being by a factor 1.3 in the South-Nest region in the 250 - μ m band.

  16. Application of an eddy current technique to steam generator U-bend characterization. Final report

    International Nuclear Information System (INIS)

    Cramer, W.E.; de la Pintiere, L.; Narita, S.; Bergander, M.J.

    1982-04-01

    Eddy current nondestructive testing techniques are used widely throughout the utility industry for the early detection of tube damage in critical power plant components such as steam generators. In this project, the application of an eddy current technique for the characterization of U-bend transitions in the first row tubing in Westinghouse 51 Series Steam Generators has been investigated. A method has been developed for detection of the opposite transition in the U-bend and for defining its severity. Investigation included two different types of U-bend transitions. Using the developed eddy current method for U-bend characterization, on-site inspection was performed on all tubes in the first row in four 51 Series steam generators in Power Plant Unit No. 2 and in one 51 Series steam generator in Power Plant Unit No. 1. The advantages and limitations of the developed method as well as the recommendations for further investigations are included

  17. Growth, characterization and electrochemical properties of hierarchical CuO nanostructures for supercapacitor applications

    Energy Technology Data Exchange (ETDEWEB)

    Krishnamoorthy, Karthikeyan [Nanomaterials and System Laboratory, Department of Mechanical Engineering, Jeju National University, Jeju 690 756 (Korea, Republic of); Kim, Sang-Jae, E-mail: kimsangj@jejunu.ac.kr [Nanomaterials and System Laboratory, Department of Mechanical Engineering, Jeju National University, Jeju 690 756 (Korea, Republic of); Department of Mechatronics Engineering, Jeju National University, Jeju 690 756 (Korea, Republic of)

    2013-09-01

    Graphical abstract: - Highlights: • Hierarchical CuO nanostructures were grown on Cu foil. • Monoclinic phase of CuO was grown. • XPS analysis revealed the presence of Cu(2p{sub 3/2}) and Cu(2p{sub 1/2}) on the surfaces. • Specific capacitance of 94 F/g was achieved for the CuO using cyclic voltammetry. • Impedance spectra show their pseudo capacitor applications. - Abstract: In this paper, we have investigated the electrochemical properties of hierarchical CuO nanostructures for pseudo-supercapacitor device applications. Moreover, the CuO nanostructures were formed on Cu substrate by in situ crystallization process. The as-grown CuO nanostructures were characterized using X-ray diffraction (XRD), Fourier transform-infra red spectroscopy (FT-IR), X-ray photoelectron spectroscopy and field emission-scanning electron microscope (FE-SEM) analysis. The XRD and FT-IR analysis confirm the formation of monoclinic CuO nanostructures. FE-SEM analysis shows the formation of leave like hierarchical structures of CuO with high uniformity and controlled density. The electrochemical analysis such as cyclic voltammetry and electrochemical impedance spectroscopy studies confirms the pseudo-capacitive behavior of the CuO nanostructures. Our experimental results suggest that CuO nanostructures will create promising applications of CuO toward pseudo-supercapacitors.

  18. Growth, characterization and electrochemical properties of hierarchical CuO nanostructures for supercapacitor applications

    International Nuclear Information System (INIS)

    Krishnamoorthy, Karthikeyan; Kim, Sang-Jae

    2013-01-01

    Graphical abstract: - Highlights: • Hierarchical CuO nanostructures were grown on Cu foil. • Monoclinic phase of CuO was grown. • XPS analysis revealed the presence of Cu(2p 3/2 ) and Cu(2p 1/2 ) on the surfaces. • Specific capacitance of 94 F/g was achieved for the CuO using cyclic voltammetry. • Impedance spectra show their pseudo capacitor applications. - Abstract: In this paper, we have investigated the electrochemical properties of hierarchical CuO nanostructures for pseudo-supercapacitor device applications. Moreover, the CuO nanostructures were formed on Cu substrate by in situ crystallization process. The as-grown CuO nanostructures were characterized using X-ray diffraction (XRD), Fourier transform-infra red spectroscopy (FT-IR), X-ray photoelectron spectroscopy and field emission-scanning electron microscope (FE-SEM) analysis. The XRD and FT-IR analysis confirm the formation of monoclinic CuO nanostructures. FE-SEM analysis shows the formation of leave like hierarchical structures of CuO with high uniformity and controlled density. The electrochemical analysis such as cyclic voltammetry and electrochemical impedance spectroscopy studies confirms the pseudo-capacitive behavior of the CuO nanostructures. Our experimental results suggest that CuO nanostructures will create promising applications of CuO toward pseudo-supercapacitors

  19. Isolation, Characterization, and Environmental Application of Bio-Based Materials as Auxiliaries in Photocatalytic Processes

    Directory of Open Access Journals (Sweden)

    Davide Palma

    2018-05-01

    Full Text Available Sustainable alternative substrates for advanced applications represent an increasing field of research that attracts the attention of worldwide experts (in accordance with green chemistry principles. In this context, bio-based substances (BBS isolated from urban composted biowaste were purified and characterized. Additionally, these materials were tested as auxiliaries in advanced oxidizing photocatalytic processes for the abatement of organic contaminants in aqueous medium. Results highlighted the capability of these substances to enhance efficiency in water remediation treatments under mild conditions, favoring the entire light-driven photocatalytic process.

  20. Surface chemical and biological characterization of flax fabrics modified with silver nanoparticles for biomedical applications

    International Nuclear Information System (INIS)

    Paladini, F.; Picca, R.A.; Sportelli, M.C.; Cioffi, N.; Sannino, A.; Pollini, M.

    2015-01-01

    Silver nanophases are increasingly used as effective antibacterial agent for biomedical applications and wound healing. This work aims to investigate the surface chemical composition and biological properties of silver nanoparticle-modified flax substrates. Silver coatings were deposited on textiles through the in situ photo-reduction of a silver solution, by means of a large-scale apparatus. The silver-coated materials were characterized through X-ray Photoelectron Spectroscopy (XPS), to assess the surface elemental composition of the coatings, and the chemical speciation of both the substrate and the antibacterial nanophases. A detailed investigation of XPS high resolution regions outlined that silver is mainly present on nanophases' surface as Ag 2 O. Scanning electron microscopy and energy dispersive X-ray spectroscopy were also carried out, in order to visualize the distribution of silver particles on the fibers. The materials were also characterized from a biological point of view in terms of antibacterial capability and cytotoxicity. Agar diffusion tests and bacterial enumeration tests were performed on Gram positive and Gram negative bacteria, namely Staphylococcus aureus and Escherichia coli. In vitro cytotoxicity tests were performed through the extract method on murine fibroblasts in order to verify if the presence of the silver coating affected the cellular viability and proliferation. Durability of the coating was also assessed, thus confirming the successful scaling up of the process, which will be therefore available for large-scale production. - Highlights: • Silver nanophases are increasingly used as effective antibacterial agent for biomedical applications. • Silver coatings were deposited on textiles through the in situ photo-reduction of a silver solution. • Flax fabrics were characterized from a biological and surface chemical point of view. • Scaling up of the process was confirmed

  1. Characterization of hydrothermally synthesized SnS nanoparticles for solar cell application

    Science.gov (United States)

    Rajwar, Birendra Kumar; Sharma, Shailendra Kumar

    2018-05-01

    In the present study, SnS nanoparticles were synthesized by simple hydrothermal method using stannous chloride and thiourea as tin (Sn) and sulfur (S) precursor respectively. Synthesized nanoparticles were characterized by X-ray diffraction (XRD), Field Emission Scanning Electron Microscopy and UV-Vis Spectroscopy techniques. XRD pattern reveals that as-prepared nanoparticles exhibit orthorhombic structure. Average particles size was calculated using Scherrer's formula and found to be 23 nm. FESEM image shows that the as-prepared nanoparticles are in plate like structure. Direct optical band gap (Eg) of as-synthesized nanoparticles was calculated through UV-Vis Spectroscopy measurement and found to be 1.34 eV, which is near to optimum need for photovoltaic solar energy conversion (1.5 eV). Thus this SnS, narrowband gap semiconductor material can be applied as an alternative absorber material for solar cell application.

  2. Information collection and analysis of geological characterization and evaluation technology and application to geological characterization study

    International Nuclear Information System (INIS)

    Kawamura, Hideki; Noda, Masaru; Nishikawa, Naohito; Sato, Shoko; Tanaka, Tatsuya

    2003-03-01

    Tono Geoscience Center (TGC) of Japan Nuclear Cycle Development Institute has been conducting the Regional Groundwater Investigation and Mizunami Underground Laboratory (MIU) Project in order to develop investigation technologies and evaluation methods of geological environment. At present, towards the next progress reporting on research and development for geological disposal of HLW in Japan, based on the existing research and development results, the projects which are conducted by TGC are required for promoting smoothly and efficiently with regard to the current Japanese HLW program. According to such situation, for planning of the geological environment investigation and research at TGC and the next progress reporting, this study has investigated and summarizes overseas environmental impact assessments for final disposal, overseas site characterization and site selection, and overseas research plan of underground research laboratories. Based on the results of investigation, some technologies which have possibility to be applied to the MIU Project have been studied. Also overseas quality assurance programs have been investigated, and examples of the application of their concepts to MIU project have been considered. (author)

  3. Topology optimization of flow problems

    DEFF Research Database (Denmark)

    Gersborg, Allan Roulund

    2007-01-01

    This thesis investigates how to apply topology optimization using the material distribution technique to steady-state viscous incompressible flow problems. The target design applications are fluid devices that are optimized with respect to minimizing the energy loss, characteristic properties...... transport in 2D Stokes flow. Using Stokes flow limits the range of applications; nonetheless, the thesis gives a proof-of-concept for the application of the method within fluid dynamic problems and it remains of interest for the design of microfluidic devices. Furthermore, the thesis contributes...... at the Technical University of Denmark. Large topology optimization problems with 2D and 3D Stokes flow modeling are solved with direct and iterative strategies employing the parallelized Sun Performance Library and the OpenMP parallelization technique, respectively....

  4. OBTAINING HYSTERESIS LOOPS AT LOW FREQUENCY FOR CHARACTERIZATION OF MATERIALS TO BE USED IN BIOMEDICAL APPLICATIONS

    Directory of Open Access Journals (Sweden)

    Atika Arshad

    2015-05-01

    Full Text Available The promising development of magnetic sensors in biomedical field demands an appropriate level of understanding of the magnetic properties of the materials used in their fabrication. To date only few of the types of magnetic materials are encountered where their magnetic properties, characterization techniques and magnetization behavior are yet to be explored more suitably in the light of their applications. This research work studies the characterization of materials by using a cost effective and simple circuit consisting of inductive transducer and an OP-AMP as a voltage integrator. In this approach the circuit was simulated using PSPICE and experiments have been conducted to achieve the desired results. The simulation and experimental results are obtained for three test materials namely iron, steel and plastic. The novelty lies in applying the simple circuit for material testing and characterization via obtaining simulation results and validating these results through experiment. The magnetic properties in low external magnetic field are studied with materials under test. The magnetization effect of a magneto-inductive sensor is detected in low frequency range for different magnetic core materials. The results have shown magnetization behaviour of magnetic materials due to the variation of permeability and magnetism. The resulted hysteresis loops appeared to have different shapes for different materials. The magnetic hysteresis loop found for iron core demonstrated a bigger coercive force and larger reversals of magnetism than these of steel core, thus obtaining its magnetic saturation at a larger magnetic field strength. The shape of the hysteresis loop itself is found to be varying upon the nature of the material in use. The resulted magnetization behaviors of the materials proved their possible applicability for use in sensing devices. The key concern of this work is found upon selecting the appropriate magnetic materials at the desired

  5. Characterization and application of microearthquake clusters to problems of scaling, fault zone dynamics, and seismic monitoring at Parkfield, California

    Energy Technology Data Exchange (ETDEWEB)

    Nadeau, Robert Michael [Univ. of California, Berkeley, CA (United States)

    1995-10-01

    This document contains information about the characterization and application of microearthquake clusters and fault zone dynamics. Topics discussed include: Seismological studies; fault-zone dynamics; periodic recurrence; scaling of microearthquakes to large earthquakes; implications of fault mechanics and seismic hazards; and wave propagation and temporal changes.

  6. Advanced imaging as a novel approach to the characterization of membranes for microfiltration applications

    Science.gov (United States)

    Marroquin, Milagro

    The primary objectives of my dissertation were to design, develop and implement novel confocal microscopy imaging protocols for the characterization of membranes and highlight opportunities to obtain reliable and cutting-edge information of microfiltration membrane morphology and fouling processes. After a comprehensive introduction and review of confocal microscopy in membrane applications (Chapter 1), the first part of this dissertation (Chapter 2) details my work on membrane morphology characterization by confocal laser scanning microscopy (CLSM) and the implementation of my newly developed CLSM cross-sectional imaging protocol. Depth-of-penetration limits were identified to be approximately 24 microns and 7-8 microns for mixed cellulose ester and polyethersulfone membranes, respectively, making it impossible to image about 70% of the membrane bulk. The development and implementation of my cross-sectional CLSM method enabled the imaging of the entire membrane cross-section. Porosities of symmetric and asymmetric membranes with nominal pore sizes in the range 0.65-8.0 microns were quantified at different depths and yielded porosity values in the 50-60% range. It is my hope and expectation that the characterization strategy developed in this part of the work will enable future studies of different membrane materials and applications by confocal microscopy. After demonstrating how cross-sectional CLSM could be used to fully characterize membrane morphologies and porosities, I applied it to the characterization of fouling occurring in polyethersulfone microfiltration membranes during the processing of solutions containing proteins and polysaccharides (Chapter 3). Through CLSM imaging, it was determined where proteins and polysaccharides deposit throughout polymeric microfiltration membranes when a fluid containing these materials is filtered. CLSM enabled evaluation of the location and extent of fouling by individual components (protein: casein and polysaccharide

  7. Application of secondary ion mass spectrometry for the characterization of commercial high performance materials

    International Nuclear Information System (INIS)

    Gritsch, M.

    2000-09-01

    The industry today offers an uncounted number of high performance materials, that have to meet highest standards. Commercial high performance materials, though often sold in large quantities, still require ongoing research and development to keep up to date with increasing needs and decreasing tolerances. Furthermore, a variety of materials is on the market that are not fully understood in their microstructure, in the way they react under application conditions, and in which mechanisms are responsible for their degradation. Secondary Ion Mass Spectrometry (SIMS) is an analytical method that is now in commercial use for over 30 years. Its main advantages are the very high detection sensitivity (down to ppb), the ability to measure all elements with isotopic sensitivity, the ability of gaining laterally resolved images, and the inherent capability of depth-profiling. These features make it an ideal tool for a wide field of applications within advanced material science. The present work gives an introduction into the principles of SIMS and shows the successful application for the characterization of commercially used high performance materials. Finally, a selected collection of my publications in reviewed journals will illustrate the state of the art in applied materials research and development with dynamic SIMS. All publications focus on the application of dynamic SIMS to analytical questions that stem from questions arising during the production and improvement of high-performance materials. (author)

  8. Synthesis and characterization of antimicrobial nanosilver/diatomite nanocomposites and its water treatment application

    Science.gov (United States)

    Xia, Yijie; Jiang, Xiaoyu; Zhang, Jing; Lin, Ming; Tang, Xiaosheng; Zhang, Jie; Liu, Hongjun

    2017-02-01

    Nanotechnology for water disinfection application gains increasing attention. Diatomite is one kind of safe natural material, which has been widely used as absorbent, filtration agents, mineral fillers, especially in water treatment industry. Nanosilver/diatomite nanocomposites were developed in this publication with a facile, effective in-situ reduction method. The as-prepared nanosilver/diatomite nanocomposites demonstrated amazing antibacterial properties to gram-positive and gram-negative bacteria. The corresponding property has been characterized by UV-vis absorbance, Transmission Electron Microscopy (TEM), Energy Dispersive X-ray (EDX) and X-ray Photoelectron Spectroscopy (XPS). Moreover, the detailed bacteria killing experiments further displayed that 0.5 g of the nanosilver diatomite could kill >99.999% of E. Coli within half an hour time. And the silver leaching test demonstrated that the concentrations of silver in the filtered water under varies pH environment were below the limit for silver level of WHO standard. Considering the low price of natural diatomite, it is believed that the nanosilver/diatomite nanocomposites have potential application in water purification industry due to its excellent antimicrobial property.

  9. Study and characterization of semi-conductor materials III-V for their applications to the ionizing radiation detection

    International Nuclear Information System (INIS)

    Moulin, H.

    1989-01-01

    This work is the study of photoconduction in volume of gallium arsenide and of indium phosphide doped with iron for their applications to X-ray detection which is carried out directly in the material. After having recalled the physical characterization of materials and the principle of photoconduction, we describe two informatic simulations. The first supposes the spatial uniformity of the electric field on the semiconductor, the second takes the spatial and temporal variations of the field into consideration. Then we show the advantage of a first irradiation to neutrons of the photoconductors. With the gallium arsenide there is swiftness improvement of the detectors to the detriment of the sensitivity. The second part studies first the characterizations in the obscurity of the photoconductors according to the electric polarization field and to the neutron dose they received before and then their characterizations under X radiation. 77 refs., 221 figs., 33 tabs., 6 photos., 3 annexes

  10. Synthesis and characterization of functionalized methacrylates for coatings and biomedical applications

    Science.gov (United States)

    Shemper, Bianca Sadicoff

    The research presented in this dissertation involves the design of polymers for biomaterials and for coatings applications. The development of non-wettable, hard UV-curing, or reactive coatings is discussed. The biomaterials section involves the syntheses of linear and star-like polymers of the functionalized monomer poly(propylene glycol) monomethacrylate (PPGM) via atom transfer radical polymerization (ATRP) (Chapter II). Its copolymerization with a perfluoroalkyl ethyl methacrylate monomer (1H,1H,2H,2H-heptadecafluorodecyl methacrylate) and the syntheses of linear and star-like amphiphilic copolymers containing the fluorinated monomer and poly(ethyleneglycol) methyl ether methacrylate (MPEGMA) are discussed in Chapter III. The four-arm amphiphilic block copolymer obtained showed unique associative properties leading to micellization in selective solvents. Chapter IV includes research involving the design of films with low surface energy by incorporating fluorine into the polymer. The synthesis, characterization and polymerization of a perfluoroalkylether-substituted methacrylic acid (C8F7) are discussed, and the properties of coatings obtained after its photopolymerization on different substrates are evaluated to confirm formation of low-surface energy polymeric coatings. Subsequently, hard coatings based on methyl (alpha-hydroxymethyl)acrylate (MHMA) were prepared via photopolymerization using UV-light. Firstly, mechanistic investigations into the photopolymerization behavior of (alpha-hydroxymethyl)acrylates (RHMA's) are reported (Chapter V). RHMA derivatives were photopolymerized with various multifunctional acrylates and methacrylates and the effect of crosslinker type and degree of functionality on photopolymerization rates and conversions was investigated. Then, in Chapter VI the synthesis of a series of new crosslinkers is described and their photopolymerization kinetics was investigated in bulk. The effect of these novel crosslinkers on the

  11. Nanostructured enzymatic biosensor based on fullerene and gold nanoparticles: preparation, characterization and analytical applications.

    Science.gov (United States)

    Lanzellotto, C; Favero, G; Antonelli, M L; Tortolini, C; Cannistraro, S; Coppari, E; Mazzei, F

    2014-05-15

    In this work a novel electrochemical biosensing platform based on the coupling of two different nanostructured materials (gold nanoparticles and fullerenols) displaying interesting electrochemical features, has been developed and characterized. Gold nanoparticles (AuNPs) exhibit attractive electrocatalytic behavior stimulating in the last years, several sensing applications; on the other hand, fullerene and its derivatives are a very promising family of electroactive compounds although they have not yet been fully employed in biosensing. The methodology proposed in this work was finalized to the setup of a laccase biosensor based on a multilayer material consisting in AuNPs, fullerenols and Trametes versicolor Laccase (TvL) assembled layer by layer onto a gold (Au) electrode surface. The influence of different modification step procedures on the electroanalytical performance of biosensors has been evaluated. Cyclic voltammetry, chronoamperometry, surface plasmon resonance (SPR) and scanning tunneling microscopy (STM) were used to characterize the modification of surface and to investigate the bioelectrocatalytic biosensor response. This biosensor showed fast amperometric response to gallic acid, which is usually considered a standard for polyphenols analysis of wines, with a linear range 0.03-0.30 mmol L(-1) (r(2)=0.9998), with a LOD of 0.006 mmol L(-1) or expressed as polyphenol index 5.0-50 mg L(-1) and LOD 1.1 mg L(-1). A tentative application of the developed nanostructured enzyme-based biosensor was performed evaluating the detection of polyphenols either in buffer solution or in real wine samples. Copyright © 2013 Elsevier B.V. All rights reserved.

  12. A Video Game-Based Framework for Analyzing Human-Robot Interaction: Characterizing Interface Design in Real-Time Interactive Multimedia Applications

    Science.gov (United States)

    2006-01-01

    segments video game interaction into domain-independent components which together form a framework that can be used to characterize real-time interactive...multimedia applications in general and HRI in particular. We provide examples of using the components in both the video game and the Unmanned Aerial

  13. X-ray micro computed tomography characterization of cellular SiC foams for their applications in chemical engineering

    Energy Technology Data Exchange (ETDEWEB)

    Ou, Xiaoxia [School of Chemical Engineering and Analytical Science, The University of Manchester, M13 9PL (United Kingdom); Zhang, Xun; Lowe, Tristan [Henry Moseley X-ray Imaging Facility, Materials Science Centre, School of Materials, The University of Manchester, M13 9PL (United Kingdom); Blanc, Remi [FEI, 3 Impasse Rudolf Diesel, BP 50227, 33708 Mérignac (France); Rad, Mansoureh Norouzi [School of Chemical Engineering and Analytical Science, The University of Manchester, M13 9PL (United Kingdom); Wang, Ying [Henry Moseley X-ray Imaging Facility, Materials Science Centre, School of Materials, The University of Manchester, M13 9PL (United Kingdom); Batail, Nelly; Pham, Charlotte [SICAT SARL, 20 Place des Halles, 67000 Strasbourg (France); Shokri, Nima; Garforth, Arthur A. [School of Chemical Engineering and Analytical Science, The University of Manchester, M13 9PL (United Kingdom); Withers, Philip J. [Henry Moseley X-ray Imaging Facility, Materials Science Centre, School of Materials, The University of Manchester, M13 9PL (United Kingdom); Fan, Xiaolei, E-mail: xiaolei.fan@manchester.ac.uk [School of Chemical Engineering and Analytical Science, The University of Manchester, M13 9PL (United Kingdom)

    2017-01-15

    Open-cell SiC foams clearly are promising materials for continuous-flow chemical applications such as heterogeneous catalysis and distillation. X-ray micro computed tomography characterization of cellular β-SiC foams at a spatial voxel size of 13.6{sup 3} μm{sup 3} and the interpretation of morphological properties of SiC open-cell foams with implications to their transport properties are presented. Static liquid hold-up in SiC foams was investigated through in-situ draining experiments for the first time using the μ-CT technique providing thorough 3D information about the amount and distribution of liquid hold-up inside the foam. This will enable better modeling and design of structured reactors based on SiC foams in the future. In order to see more practical uses, μ-CT data of cellular foams must be exploited to optimize the design of the morphology of foams for a specific application. - Highlights: •Characterization of SiC foams using novel X-ray micro computed tomography. •Interpretation of structural properties of SiC foams regarding to their transport properties. •Static liquid hold-up analysis of SiC foams through in-situ draining experiments.

  14. Isolation and Characterization of Biosurfactant Producing Bacteria for the Application in Enhanced Oil Recovery

    Science.gov (United States)

    Prasad, Niraj; Dasgupta, Sumita; Chakraborty, Mousumi; Gupta, Smita

    2017-07-01

    In the present study, a biosurfactant producing bacterial strain was isolated, screened and identified. Further, various fermentation conditions (such as pH (5-10), incubation period (24-96h) and incubation temperature (20-60 °C) were optimized for maximum production of biosurfactant. The produced biosurfactant was characterized by measuring emulsification index, foaming characteristics, rhamnolipid detection, interfacial tension between water and oil and stability against pH and temperature for its potential application in oil recovery process. The additional oil recovery for two different sand, sand1 and sand2, was found to be 49% and 38%, respectively.

  15. Application and assessment of multiscale bending energy for morphometric characterization of neural cells

    Science.gov (United States)

    Cesar, Roberto Marcondes; Costa, Luciano da Fontoura

    1997-05-01

    The estimation of the curvature of experimentally obtained curves is an important issue in many applications of image analysis including biophysics, biology, particle physics, and high energy physics. However, the accurate calculation of the curvature of digital contours has proven to be a difficult endeavor, mainly because of the noise and distortions that are always present in sampled signals. Errors ranging from 1% to 1000% have been reported with respect to the application of standard techniques in the estimation of the curvature of circular contours [M. Worring and A. W. M. Smeulders, CVGIP: Im. Understanding, 58, 366 (1993)]. This article explains how diagrams of multiscale bending energy can be easily obtained from curvegrams and used as a robust general feature for morphometric characterization of neural cells. The bending energy is an interesting global feature for shape characterization that expresses the amount of energy needed to transform the specific shape under analysis into its lowest energy state (i.e., a circle). The curvegram, which can be accurately obtained by using digital signal processing techniques (more specifically through the Fourier transform and its inverse, as described in this work), provides multiscale representation of the curvature of digital contours. The estimation of the bending energy from the curvegram is introduced and exemplified with respect to a series of neural cells. The masked high curvature effect is reported and its implications to shape analysis are discussed. It is also discussed and illustrated that, by normalizing the multiscale bending energy with respect to a standard circle of unitary perimeter, this feature becomes an effective means for expressing shape complexity in a way that is invariant to rotation, translation, and scaling, and that is robust to noise and other artifacts implied by image acquisition.

  16. Characterization of nanodiamonds for metamaterial applications

    OpenAIRE

    Shalaginov, Mikhail; Naik, Gururaj; Ishii, Satoshi; Slipchenko, Mikhail; Boltasseva, Alexandra; Cheng, Ji-Xin; Smolyaninov, A N; Kochman, E; Shalaev, Vladimir

    2011-01-01

    Several different types of nanodiamonds were characterized in order to find the best sample to be used in further experiments with metamaterials. In this work we present the results of optical analysis of aqueous suspensions containing nanodiamonds, SEM analysis of diamond particles dispersed on silicon substrates and measurements of photoluminescence from defects in nanodiamonds.

  17. Fabrication, characterization and applications of flexible vertical InGaN micro-light emitting diode arrays.

    Science.gov (United States)

    Tian, Pengfei; McKendry, Jonathan J D; Gu, Erdan; Chen, Zhizhong; Sun, Yongjian; Zhang, Guoyi; Dawson, Martin D; Liu, Ran

    2016-01-11

    Flexible vertical InGaN micro-light emitting diode (micro-LED) arrays have been fabricated and characterized for potential applications in flexible micro-displays and visible light communication. The LED epitaxial layers were transferred from initial sapphire substrates to flexible AuSn substrates by metal bonding and laser lift off techniques. The current versus voltage characteristics of flexible micro-LEDs degraded after bending the devices, but the electroluminescence spectra show little shift even under a very small bending radius 3 mm. The high thermal conductivity of flexible metal substrates enables high thermal saturation current density and high light output power of the flexible micro-LEDs, benefiting the potential applications in flexible high-brightness micro-displays and high-speed visible light communication. We have achieved ~40 MHz modulation bandwidth and 120 Mbit/s data transmission speed for a typical flexible micro-LED.

  18. Characterization of piezoelectric materials for simultaneous strain and temperature sensing for ultra-low frequency applications

    International Nuclear Information System (INIS)

    Islam, Mohammad Nouroz; Seethaler, Rudolf; Alam, M Shahria

    2015-01-01

    Piezoelectric materials are used extensively in a number of sensing applications ranging from aerospace industries to medical diagnostics. Piezoelectric materials generate charge when they are subjected to strain. However, since measuring charge is difficult at low frequencies, traditional piezoelectric sensors are limited to dynamic applications. In this research an alternative technique is proposed to determine static strain that relies upon the measurement of piezoelectric capacitance and resistance using piezoelectric sensors. To demonstrate the validity of this approach, the capacitance and resistance of a piezoelectric patch sensor was characterized for a wide range of strain and temperature. The study shows that the piezoelectric capacitance is sensitive to both strain and temperature while the resistance is mostly dependent on the temperature variation. The findings can be implemented to obtain thermally compensated static strain from piezoelectric sensors, which does not require an additional temperature sensor. (paper)

  19. Food powders flowability characterization: theory, methods, and applications.

    Science.gov (United States)

    Juliano, Pablo; Barbosa-Cánovas, Gustavo V

    2010-01-01

    Characterization of food powders flowability is required for predicting powder flow from hoppers in small-scale systems such as vending machines or at the industrial scale from storage silos or bins dispensing into powder mixing systems or packaging machines. This review covers conventional and new methods used to measure flowability in food powders. The method developed by Jenike (1964) for determining hopper outlet diameter and hopper angle has become a standard for the design of bins and is regarded as a standard method to characterize flowability. Moreover, there are a number of shear cells that can be used to determine failure properties defined by Jenike's theory. Other classic methods (compression, angle of repose) and nonconventional methods (Hall flowmeter, Johanson Indicizer, Hosokawa powder tester, tensile strength tester, powder rheometer), used mainly for the characterization of food powder cohesiveness, are described. The effect of some factors preventing flow, such as water content, temperature, time consolidation, particle composition and size distribution, is summarized for the characterization of specific food powders with conventional and other methods. Whereas time-consuming standard methods established for hopper design provide flow properties, there is yet little comparative evidence demonstrating that other rapid methods may provide similar flow prediction.

  20. Strategies to Characterize Fungal Lipases for Applications in Medicine and Dairy Industry

    Science.gov (United States)

    Gopinath, Subash C. B.; Anbu, Periasamy; Lakshmipriya, Thangavel; Hilda, Azariah

    2013-01-01

    Lipases are water-soluble enzymes that act on insoluble substrates and catalyze the hydrolysis of long-chain triglycerides. Lipases play a vital role in the food, detergent, chemical, and pharmaceutical industries. In the past, fungal lipases gained significant attention in the industries due to their substrate specificity and stability under varied chemical and physical conditions. Fungal enzymes are extracellular in nature, and they can be extracted easily, which significantly reduces the cost and makes this source preferable over bacteria. Soil contaminated with spillage from the products of oil and dairy harbors fungal species, which have the potential to secrete lipases to degrade fats and oils. Herein, the strategies involved in the characterization of fungal lipases, capable of degrading fatty substances, are narrated with a focus on further applications. PMID:23865040

  1. Synthesis and Characterization of Functional Composite Carbon-Geopolymers for Precast Panel Application

    Directory of Open Access Journals (Sweden)

    Noor Afifah Kharisma

    2017-01-01

    Full Text Available The purpose of this study is to examine the influence of carbon (C particles as filler (aggregate in the production of geopolymers functional composite for possible precast panel application. Geopolymers was synthesized through alkali activation of metakaolin added with carbon particles relative to the mass of metakaolin. The mixture was cured at 70°C for 2 hours and the resulting composites were stored in open air for 28 days. The bulk density and the apparent porosity of the composites were measured by using Archimedes method. The thermal properties of the samples was examined by using thermal conductivity measurement and differential scanning calorimetry (DSC. The microstructure characterization of the samples were performed by using x-ray diffraction (XRD and Scanning Electron Microscopy-Energy Dispersive Spectroscopy (SEM-EDS.

  2. Development of new materials from waste electrical and electronic equipment: Characterization and catalytic application.

    Science.gov (United States)

    Souza, J P; Freitas, P E; Almeida, L D; Rosmaninho, M G

    2017-07-01

    Wastes of electrical and electronic equipment (WEEE) represent an important environmental problem, since its composition includes heavy metals and organic compounds used as flame-retardants. Thermal treatments have been considered efficient processes on removal of these compounds, producing carbonaceous structures, which, together with the ceramic components of the WEEE (i.e. silica and alumina), works as support material for the metals. This mixture, associated with the metals present in WEEE, represents promising systems with potential for catalytic application. In this work, WEEE was thermally modified to generate materials that were extensively characterized. Raman spectrum for WEEE after thermal treatment showed two carbon associated bands. SEM images showed a metal nanoparticles distribution over a polymeric and ceramic support. After characterization, WEEE materials were applied in ethanol steam reforming reaction. The system obtained at higher temperature (800°C) exhibited the best activity, since it leads to high conversions (85%), hydrogen yield (30%) and H 2 /CO ratio (3,6) at 750°C. Copyright © 2017 Elsevier Ltd. All rights reserved.

  3. Synthesis and characterization of chitosan-PVP-nanocellulose composites for in-vitro wound dressing application.

    Science.gov (United States)

    Poonguzhali, R; Basha, S Khaleel; Kumari, V Sugantha

    2017-12-01

    Biocompatible Chitosan/Poly (vinyl pyrrolidone)/Nanocellulose (CPN) composites were successfully prepared by solution casting method. The prepared bionanocomposites were characterized by Transmission electron microscopy (TEM), Thermo gravimetric analysis (TGA), X-ray diffraction (XRD) and Attenuated total reflectance-Fourier transform infrared spectroscopy (ATR-FTIR) spectra. TEM images revealed the average particle size of the nanocellulose is 6.1nm. Thermogravimetric analysis indicated that the thermal stability of the composites was decreased with increasing concentration of nanocellulose. The CPN composites were characterized for physical properties like Thickness, Barrier properties and mechanical testing. Water vapor and oxygen permeability evaluations indicated that CPN composite could maintain a moist environment over wound bed. The nanocomposite showed enhanced swelling, blood compatibility and antibacterial activity. Cytotoxicity of the composite has been analyzed in normal mouse embryonic fibroblast cells. The results have shown the CPN3% composite shows a high level of antibacterial property when compared to the other composites. The biological study suggests that CPN3% composite may be a potential candidate as a wound healing material for biomedical application. Copyright © 2017 Elsevier B.V. All rights reserved.

  4. Tamoxifen-loaded lecithin organogel (LO) for topical application: Development, optimization and characterization.

    Science.gov (United States)

    Bhatia, Amit; Singh, Bhupinder; Raza, Kaisar; Wadhwa, Sheetu; Katare, Om Prakash

    2013-02-28

    Lecithin organogels (LOs) are semi-solid systems with immobilized organic liquid phase in 3-D network of self-assembled gelators. This paper attempts to study the various attributes of LOs, starting from selection of materials, optimization of influential components to LO specific characterization. After screening of various components (type of gelators, organic and aqueous phase) and construction of phase diagrams, a D-optimal mixture design was employed for the systematic optimization of the LO composition. The response surface plots were constructed for various response variables, viz. viscosity, gel strength, spreadability and consistency index. The optimized LO composition was searched employing overlay plots. Subsequent validation of the optimization study employing check-point formulations, located using grid search, indicated high degree of prognostic ability of the experimental design. The optimized formulation was characterized for morphology, drug content, rheology, spreadability, pH, phase transition temperatures, and physical and chemical stability. The outcomes of the study were interesting showing high dependence of LO attributes on the type and amount of phospholipid, Poloxamer™, auxillary gelators and organic solvent. The optimized LO was found to be quite stable, easily applicable and biocompatible. The findings of the study can be utilized for the development of LO systems of other drugs for the safer and effective topical delivery. Crown Copyright © 2013. Published by Elsevier B.V. All rights reserved.

  5. Parallel Programming Application to Matrix Algebra in the Spectral Method for Control Systems Analysis, Synthesis and Identification

    Directory of Open Access Journals (Sweden)

    V. Yu. Kleshnin

    2016-01-01

    Full Text Available The article describes the matrix algebra libraries based on the modern technologies of parallel programming for the Spectrum software, which can use a spectral method (in the spectral form of mathematical description to analyse, synthesise and identify deterministic and stochastic dynamical systems. The developed matrix algebra libraries use the following technologies for the GPUs: OmniThreadLibrary, OpenMP, Intel Threading Building Blocks, Intel Cilk Plus for CPUs nVidia CUDA, OpenCL, and Microsoft Accelerated Massive Parallelism.The developed libraries support matrices with real elements (single and double precision. The matrix dimensions are limited by 32-bit or 64-bit memory model and computer configuration. These libraries are general-purpose and can be used not only for the Spectrum software. They can also find application in the other projects where there is a need to perform operations with large matrices.The article provides a comparative analysis of the libraries developed for various matrix operations (addition, subtraction, scalar multiplication, multiplication, powers of matrices, tensor multiplication, transpose, inverse matrix, finding a solution of the system of linear equations through the numerical experiments using different CPU and GPU. The article contains sample programs and performance test results for matrix multiplication, which requires most of all computational resources in regard to the other operations.

  6. Synthesis and Characterization of Metal Phosphates for Photocatalytic Applications

    KAUST Repository

    Al-Sabban, Bedour

    2012-07-01

    Solar energy is the most abundant efficient and important source of renewable energy. The objective of this study is to develop highly efficient visible light responsive photocatalysts for overall water splitting. This is done by using silver or copper containing materials. Phosphate compounds have caught much attention due to their rigid structure, thermal stability and resistance to chemical attacks. Solid phosphates can be prepared by direct solid-state reaction between metal cations and phosphate anions at high temperatures. Double metal phosphates of the Nasion-type structure had shown further technological importance. It has been reported that well-crystallized double metal phosphate particles have excellent ordering and cationic conduction channels in the Nasicon framework. In this study, several Nasion-type structured materials have been synthesized by solid-state method (e.g. CuTi2(PO4)3 and AgTi2(PO4)3) heated up under different temperatures (400–1100C) in N2 or air atmosphere. These materials were characterized by XRD, SEM, DR-UV-Vis spectroscopy and tested for photocatalytic applications. A new method for direct synthesis of photoelectrode on Ti Plate had been demonstrated. Further investigations on controlling the size and morphology for better performance of single and double metal phosphates will be done.

  7. Novel Application of Micro-Computerized Tomography for Morphologic Characterization of the Murine Penis.

    Science.gov (United States)

    O'Neill, Marisol; Huang, Gene O; Lamb, Dolores J

    2017-12-01

    The murine penis model has enriched our understanding of anomalous penile development. The morphologic characterization of the murine penis using conventional serial sectioning methods is labor intensive and prone to errors. To develop a novel application of micro-computerized tomography (micro-CT) with iodine staining for rapid, non-destructive morphologic study of murine penis structure. Penises were dissected from 10 adult wild-type mice and imaged using micro-CT with iodine staining. Images were acquired at 5-μm spatial resolution on a Bruker SkyScan 1272 micro-CT system. After images were acquired, the specimens were washed of any remaining iodine and embedded in paraffin for conventional histologic examination. Histologic and micro-CT measurements for all specimens were made by 2 independent observers. Measurements of penile structures were made on virtual micro-CT sections and histologic slides. The Lin concordance correlation coefficient demonstrated almost perfect strength of agreement for interobserver variability for histologic section (0.9995, 95% CI = 0.9990-0.9997) and micro-CT section (0.9982, 95% CI = 0.9963-0.9991) measurements. Bland-Altman analysis for agreement between the 2 modalities of measurement demonstrated mean differences of -0.029, 0.022, and -0.068 mm for male urogenital mating protuberance, baculum, and penile glans length, respectively. There did not appear to be a bias for overestimation or underestimation of measured lengths and limits of agreement were narrow. The enhanced ability offered by micro-CT to phenotype the murine penis has the potential to improve translational studies examining the molecular pathways contributing to anomalous penile development. The present study describes the first reported use of micro-CT with iodine staining for imaging the murine penis. Producing repeated histologic sections of identical orientation was limited by inherent imperfections in mounting and tissue sectioning, but this was

  8. Characterizing Ductile Damage and Failure: Application of the Direct Current Potential Drop Method to Uncracked Tensile Specimens

    OpenAIRE

    Brinnel, V.; Döbereiner, B.; Münstermann, Sebastian

    2014-01-01

    Modern high-strength steels exhibit excellent ductility properties but their application is hindered by traditional design rules. A characterization of necessary safety margins for the ductile failure of these steels is therefore required. Direct observation of ductile damage within tests is currently not possible, only limited measurements can be made with synchrotron or X-ray radiation facilities. The direct current potential drop (DCPD) method can determine ductile crack propagation with l...

  9. Extraction and characterization of highly purified collagen from bovine pericardium for potential bioengineering applications

    International Nuclear Information System (INIS)

    Santos, Maria Helena; Silva, Rafael M.; Dumont, Vitor C.; Neves, Juliana S.; Mansur, Herman S.; Heneine, Luiz Guilherme D.

    2013-01-01

    Bovine pericardium is widely used as a raw material in bioengineering as a source of collagen, a fundamental structural molecule. The physical, chemical, and biocompatibility characteristics of these natural fibers enable their broad use in several areas of the health sciences. For these applications, it is important to obtain collagen of the highest possible purity. The lack of a method to produce these pure biocompatible materials using simple and economically feasible techniques presents a major challenge to their production on an industrial scale. This study aimed to extract, purify, and characterize the type I collagen protein originating from bovine pericardium, considered to be an abundant tissue resource. The pericardium tissue was collected from male animals at slaughter age. Pieces of bovine pericardium were enzymatically digested, followed by a novel protocol developed for protein purification using ion-exchange chromatography. The material was extensively characterized by electrophoresis, scanning electron microscopy, energy dispersive X-ray spectroscopy, and infrared spectroscopy. The results showed a purified material with morphological properties and chemical functionalities compatible with type I collagen and similar to a highly purified commercial collagen. Thus, an innovative and relatively simple processing method was developed to extract and purify type I collagen from bovine tissue with potential applications as a biomaterial for regenerative tissue engineering. - Highlights: ► Type I collagen was obtained from bovine pericardium, an abundant tissue resource. ► A simple and feasible processing technique was developed to purify bovine collagen. ► The appropriate process may be performed on industrial scale. ► The pure collagen presented appropriate morphological and molecular characteristics. ► The purify collagen has shown potential use as a biomaterial in tissue engineering.

  10. Polydimethylsiloxane films doped with NdFeB powder: magnetic characterization and potential applications in biomedical engineering and microrobotics.

    Science.gov (United States)

    Iacovacci, V; Lucarini, G; Innocenti, C; Comisso, N; Dario, P; Ricotti, L; Menciassi, A

    2015-12-01

    This work reports the fabrication, magnetic characterization and controlled navigation of film-shaped microrobots consisting of a polydimethylsiloxane-NdFeB powder composite material. The fabrication process relies on spin-coating deposition, powder orientation and permanent magnetization. Films with different powder concentrations (10 %, 30 %, 50 % and 70 % w/w) were fabricated and characterized in terms of magnetic properties and magnetic navigation performances (by exploiting an electromagnet-based platform). Standardized data are provided, thus enabling the exploitation of these composite materials in a wide range of applications, from MEMS/microrobot development to biomedical systems. Finally, the possibility to microfabricate free-standing polymeric structures and the biocompatibility of the proposed composite materials is demonstrated.

  11. Composites Characterization Laboratory

    Data.gov (United States)

    Federal Laboratory Consortium — The purpose of the Composites Characterization Laboratory is to investigate new and/or modified matrix materials and fibers for advanced composite applications both...

  12. Applications of UV/Vis Spectroscopy in Characterization and Catalytic Activity of Noble Metal Nanoparticles Fabricated in Responsive Polymer Microgels: A Review.

    Science.gov (United States)

    Begum, Robina; Farooqi, Zahoor H; Naseem, Khalida; Ali, Faisal; Batool, Madeeha; Xiao, Jianliang; Irfan, Ahmad

    2018-11-02

    Noble metal nanoparticles loaded smart polymer microgels have gained much attention due to fascinating combination of their properties in a single system. These hybrid systems have been extensively used in biomedicines, photonics, and catalysis. Hybrid microgels are characterized by using various techniques but UV/Vis spectroscopy is an easily available technique for characterization of noble metal nanoparticles loaded microgels. This technique is widely used for determination of size and shape of metal nanoparticles. The tuning of optical properties of noble metal nanoparticles under various stimuli can be studied using UV/Vis spectroscopic method. Time course UV/Vis spectroscopy can also be used to monitor the kinetics of swelling and deswelling of microgels and hybrid microgels. Growth of metal nanoparticles in polymeric network or growth of polymeric network around metal nanoparticle core can be studied by using UV/Vis spectroscopy. This technique can also be used for investigation of various applications of hybrid materials in catalysis, photonics, and sensing. This tutorial review describes the uses of UV/Vis spectroscopy in characterization and catalytic applications of responsive hybrid microgels with respect to recent research progress in this area.

  13. Application of whole genome shotgun sequencing for detection and characterization of genetically modified organisms and derived products.

    Science.gov (United States)

    Holst-Jensen, Arne; Spilsberg, Bjørn; Arulandhu, Alfred J; Kok, Esther; Shi, Jianxin; Zel, Jana

    2016-07-01

    The emergence of high-throughput, massive or next-generation sequencing technologies has created a completely new foundation for molecular analyses. Various selective enrichment processes are commonly applied to facilitate detection of predefined (known) targets. Such approaches, however, inevitably introduce a bias and are prone to miss unknown targets. Here we review the application of high-throughput sequencing technologies and the preparation of fit-for-purpose whole genome shotgun sequencing libraries for the detection and characterization of genetically modified and derived products. The potential impact of these new sequencing technologies for the characterization, breeding selection, risk assessment, and traceability of genetically modified organisms and genetically modified products is yet to be fully acknowledged. The published literature is reviewed, and the prospects for future developments and use of the new sequencing technologies for these purposes are discussed.

  14. Fabrication, Characterization and Cytotoxicity of Spherical-Shaped Conjugated Gold-Cockle Shell Derived Calcium Carbonate Nanoparticles for Biomedical Applications

    Science.gov (United States)

    Kiranda, Hanan Karimah; Mahmud, Rozi; Abubakar, Danmaigoro; Zakaria, Zuki Abubakar

    2018-01-01

    The evolution of nanomaterial in science has brought about a growing increase in nanotechnology, biomedicine, and engineering fields. This study was aimed at fabrication and characterization of conjugated gold-cockle shell-derived calcium carbonate nanoparticles (Au-CSCaCO3NPs) for biomedical application. The synthetic technique employed used gold nanoparticle citrate reduction method and a simple precipitation method coupled with mechanical use of a Programmable roller-ball mill. The synthesized conjugated nanomaterial was characterized for its physicochemical properties using transmission electron microscope (TEM), field emission scanning electron microscope (FESEM) equipped with energy dispersive X-ray (EDX) and Fourier transform infrared spectroscopy (FTIR). However, the intricacy of cellular mechanisms can prove challenging for nanomaterial like Au-CSCaCO3NPs and thus, the need for cytotoxicity assessment. The obtained spherical-shaped nanoparticles (light-green purplish) have an average diameter size of 35 ± 16 nm, high carbon and oxygen composition. The conjugated nanomaterial, also possesses a unique spectra for aragonite polymorph and carboxylic bond significantly supporting interactions between conjugated nanoparticles. The negative surface charge and spectra absorbance highlighted their stability. The resultant spherical shaped conjugated Au-CSCaCO3NPs could be a great nanomaterial for biomedical applications.

  15. Development and characterization of electron sources for diffraction applications

    International Nuclear Information System (INIS)

    Casandruc, Albert

    2015-12-01

    The dream to control chemical reactions that are essential to life is now closer than ever to gratify. Recent scientific progress has made it possible to investigate phenomena and processes which deploy at the angstroms scale and at rates on the order femtoseconds. Techniques such as Ultrafast Electron Diffraction (UED) are currently able to reveal the spatial atomic configuration of systems with unit cell sizes on the order of a few nanometers with about 100 femtosecond temporal resolution. Still, major advances are needed for structural interrogation of biological systems like protein crystals, which have unit cell sizes of 10 nanometers or larger, and sample sizes of less than one micrometer. For such samples, the performance of these electron-based techniques is now limited by the quality, in particular the brightness, of the electron source. The current Ph.D. work represents a contribution towards the development and the characterization of electron sources which are essential to static and time-resolved electron diffraction techniques. The focus was on electron source fabrication and electron beam characterization measurements, using the solenoid and the aperture scan techniques, but also on the development and maintenance of the relevant experimental setups. As a result, new experimental facilities are now available in the group and, at the same time, novel concepts for generating electron beams for electron diffraction applications have been developed. In terms of existing electron sources, the capability to trigger and detect field emission from single double-gated field emitter Mo tips was successfully proven. These sharp emitter tips promise high brightness electron beams, but for investigating individual such structures, new engineering was needed. Secondly, the influence of the surface electric field on electron beam properties has been systematically performed for flat Mo photocathodes. This study is very valuable especially for state

  16. Development and characterization of electron sources for diffraction applications

    Energy Technology Data Exchange (ETDEWEB)

    Casandruc, Albert

    2015-12-15

    The dream to control chemical reactions that are essential to life is now closer than ever to gratify. Recent scientific progress has made it possible to investigate phenomena and processes which deploy at the angstroms scale and at rates on the order femtoseconds. Techniques such as Ultrafast Electron Diffraction (UED) are currently able to reveal the spatial atomic configuration of systems with unit cell sizes on the order of a few nanometers with about 100 femtosecond temporal resolution. Still, major advances are needed for structural interrogation of biological systems like protein crystals, which have unit cell sizes of 10 nanometers or larger, and sample sizes of less than one micrometer. For such samples, the performance of these electron-based techniques is now limited by the quality, in particular the brightness, of the electron source. The current Ph.D. work represents a contribution towards the development and the characterization of electron sources which are essential to static and time-resolved electron diffraction techniques. The focus was on electron source fabrication and electron beam characterization measurements, using the solenoid and the aperture scan techniques, but also on the development and maintenance of the relevant experimental setups. As a result, new experimental facilities are now available in the group and, at the same time, novel concepts for generating electron beams for electron diffraction applications have been developed. In terms of existing electron sources, the capability to trigger and detect field emission from single double-gated field emitter Mo tips was successfully proven. These sharp emitter tips promise high brightness electron beams, but for investigating individual such structures, new engineering was needed. Secondly, the influence of the surface electric field on electron beam properties has been systematically performed for flat Mo photocathodes. This study is very valuable especially for state

  17. Highly active engineered-enzyme oriented monolayers: formation, characterization and sensing applications

    Directory of Open Access Journals (Sweden)

    Patolsky Fernando

    2011-06-01

    Full Text Available Abstract Background The interest in introducing ecologically-clean, and efficient enzymes into modern industry has been growing steadily. However, difficulties associated with controlling their orientation, and maintaining their selectivity and reactivity is still a significant obstacle. We have developed precise immobilization of biomolecules, while retaining their native functionality, and report a new, fast, easy, and reliable procedure of protein immobilization, with the use of Adenylate kinase as a model system. Methods Self-assembled monolayers of hexane-1,6-dithiol were formed on gold surfaces. The monolayers were characterized by contact-angle measurements, Elman-reagent reaction, QCM, and XPS. A specifically designed, mutated Adenylate kinase, where cysteine was inserted at the 75 residue, and the cysteine at residue 77 was replaced by serine, was used for attachment to the SAM surface via spontaneously formed disulfide (S-S bonds. QCM, and XPS were used for characterization of the immobilized protein layer. Curve fitting in XPS measurements used a Gaussian-Lorentzian function. Results and Discussion Water contact angle (65-70°, as well as all characterization techniques used, confirmed the formation of self-assembled monolayer with surface SH groups. X-ray photoelectron spectroscopy showed clearly the two types of sulfur atom, one attached to the gold (triolate and the other (SH/S-S at the ω-position for the hexane-1,6-dithiol SAMs. The formation of a protein monolayer was confirmed using XPS, and QCM, where the QCM-determined amount of protein on the surface was in agreement with a model that considered the surface area of a single protein molecule. Enzymatic activity tests of the immobilized protein confirmed that there is no change in enzymatic functionality, and reveal activity ~100 times that expected for the same amount of protein in solution. Conclusions To the best of our knowledge, immobilization of a protein by the method

  18. Applicability of reflection seismic measurements in detailed characterization of crystalline bedrock

    International Nuclear Information System (INIS)

    Sireni, S.

    2011-03-01

    Posiva carried out a seismic survey in the access tunnel of the underground research facility ONKALO in 2009. The survey contributes the detailed characterization of the bedrock in the final disposal of spent nuclear fuel. The aim of this work was to examine the geophysical and geological properties of the chosen tunnel intersections to clarify the important characteristics for reflection generation, and evaluate applicability of this survey for characterization of crystalline bedrock. The seismic result consists of 24 projected amplitude images in 12 different angles. The size of an image is 260*300 m. The amount of digitized reflectors is over 100 and all of them could not be included in this work. The study was limited to 14 intersections that were considered important: brittle fault intersections, tunnel-crosscutting fractures, or lithological contacts. Presence of a brittle fault zone or a tunnel-crosscutting fracture limits the suitable bedrock volume for depositing the nuclear fuel canisters, and wide lithological contacts are a common source of reflection. The seismic data was compared to the existing geological, hydrogeological and geophysical data got from the pilot holes and the tunnel. The most important characteristics were fractures: orientation, fillings, and thickness of the fillings, alteration and water leakage. Geophysically interesting was density, seismic velocities and their products: acoustic impedance and synthetic seismograms. Calculated acoustic impedances showed some differences between cases, but they did not indicate the presence of a reflector. The most common cause of reflector was undulating slickensided, highly altered, tunnel-crosscutting fracture that had thick fracture-fillings and water present. Water was included five times in interpreted reflectors. Also few reflectors were connected to varying mineralogy. Few problematic cases occurred, where a geological feature and a reflection did not correlate, and three of the cases with

  19. Synthesis and characterization of curcumin loaded PLA-Hyperbranched polyglycerol electrospun blend for wound dressing applications.

    Science.gov (United States)

    Perumal, Govindaraj; Pappuru, Sreenath; Chakraborty, Debashis; Maya Nandkumar, A; Chand, Dillip Kumar; Doble, Mukesh

    2017-07-01

    This study is aimed to develop curcumin (Cur) incorporated electrospun nanofibers of a blend of poly (lactic acid) (PLA) and hyperbranched polyglycerol (HPG) for wound healing applications. Both the polymers are synthesized and fabricated by electrospinning technique. The produced nanofibers were characterized by Scanning Electron Microscopy (SEM), X-Ray Diffraction (XRD), Fourier Transform Infrared Spectroscopy (FT-IR), Differential Scanning Colorimetry (DSC) and Thermogravimetric Analysis (TGA). Electrospun scaffolds (PLA/HPG/Cur) exhibits very high hydrophilicity, high swelling and drug uptake and promotes better cell viability, adhesion and proliferation when compared to PLA/Cur electrospun nanofibers. Biodegradation study revealed that the morphology of the nanofibers were unaffected even after 14days immersion in Phosphate Buffered Saline. In vitro scratch assay indicates that migration of the cells in the scratch treated with PLA/HPG/Cur is complete within 36h. These results suggest that PLA/HPG/Cur nanofibers can be a potential wound patch dressing for acute and chronic wound applications. Copyright © 2017 Elsevier B.V. All rights reserved.

  20. Preparation and comparative characterization of keratin–chitosan and keratin–gelatin composite scaffolds for tissue engineering applications

    International Nuclear Information System (INIS)

    Balaji, S.; Kumar, Ramadhar; Sripriya, R.; Kakkar, Prachi; Ramesh, D. Vijaya; Reddy, P. Neela Kanta; Sehgal, P.K.

    2012-01-01

    We report fabrication of three dimensional scaffolds with well interconnected matrix of high porosity using keratin, chitosan and gelatin for tissue engineering and other biomedical applications. Scaffolds were fabricated using porous Keratin–Gelatin (KG), Keratin–Chitosan (KC) composites. The morphology of both KG and KC was investigated using SEM. The scaffolds showed high porosity with interconnected pores in the range of 20–100 μm. They were further tested by FTIR, DSC, CD, tensile strength measurement, water uptake and swelling behavior. In vitro cell adhesion and cell proliferation tests were carried out to study the biocompatibility behavior and their application as an artificial skin substitute. Both KG and KC composite scaffolds showed similar properties and patterns for cell proliferation. Due to rapid degradation of gelatin in KG, we found that it has limited application as compared to KC scaffold. We conclude that KC scaffold owing to its slow degradation and antibacterial properties would be a better substrate for tissue engineering and other biomedical application. Highlights: ► Extraction of reduced keratin from horn meal. ► Preparation of keratin–gelatin and keratin–chitosan composite scaffolds. ► Characterizations of the composite scaffolds. ► Comparative cytotoxicity analysis on NIH3T3 fibroblasts.

  1. Fabrication and characterization of joined silicon carbide cylindrical components for nuclear applications

    Science.gov (United States)

    Khalifa, H. E.; Deck, C. P.; Gutierrez, O.; Jacobsen, G. M.; Back, C. A.

    2015-02-01

    The use of silicon carbide (SiC) composites as structural materials in nuclear applications necessitates the development of a viable joining method. One critical application for nuclear-grade joining is the sealing of fuel within a cylindrical cladding. This paper demonstrates cylindrical joint feasibility using a low activation nuclear-grade joint material comprised entirely of β-SiC. While many papers have considered joining material, this paper takes into consideration the joint geometry and component form factor, as well as the material performance. Work focused specifically on characterizing the strength and permeability performance of joints between cylindrical SiC-SiC composites and monolithic SiC endplugs. The effects of environment and neutron irradiation were not evaluated in this study. Joint test specimens of different geometries were evaluated in their as-fabricated state, as well as after being subjected to thermal cycling and partial mechanical loading. A butted scarf geometry supplied the best combination of high strength and low permeability. A leak rate performance of 2 × 10-9 mbar l s-1 was maintained after thermal cycling and partial mechanical loading and sustained applied force of 3.4 kN, or an apparent strength of 77 MPa. This work shows that a cylindrical SiC-SiC composite tube sealed with a butted scarf endplug provides out-of-pile strength and permeability performance that meets light water reactor design requirements.

  2. Prediction and theoretical characterization of p-type organic semiconductor crystals for field-effect transistor applications.

    Science.gov (United States)

    Atahan-Evrenk, Sule; Aspuru-Guzik, Alán

    2014-01-01

    The theoretical prediction and characterization of the solid-state structure of organic semiconductors has tremendous potential for the discovery of new high performance materials. To date, the theoretical analysis mostly relied on the availability of crystal structures obtained through X-ray diffraction. However, the theoretical prediction of the crystal structures of organic semiconductor molecules remains a challenge. This review highlights some of the recent advances in the determination of structure-property relationships of the known organic semiconductor single-crystals and summarizes a few available studies on the prediction of the crystal structures of p-type organic semiconductors for transistor applications.

  3. Synthesis and characterization of ZnO nanoparticles for photocatalysis application

    Energy Technology Data Exchange (ETDEWEB)

    Mazzo, Tatiana Martelli; Minervino, Gabriela Bosco; Medalha Filho, Carlos Alberto, E-mail: tatimazzo@gmail.com [Universidade Federal de Sao Paulo (UNIFESP), Baixada Santista, SP (Brazil); Oliveira, Regiane Cristina; Longo, Elson [Universidade Federal de Sao Carlos (UFSCar), SP (Brazil)

    2016-07-01

    Full text: The search for more effective ways to prevent and remedy environmental problems has a strong academic and technological appeal. Based on the study of a variety of compounds, zinc oxide (ZnO) is an excellent candidate for the synthesis of multifunctional nanoparticles due to their potential technological application in various fields [1]. In this work, we were synthesized flowers-like ZnO by coprecipitation and hydrothermal microwave methods. All materials were characterized by X-Ray Diffraction, Micro-Raman spectroscopy and scanning electron microscopy. All XRD patterns correspond to hexagonal structure, which is in agreement with the respective JCPDS card no. 36-1451 for pure ZnO phase with group space group (P63mc) and two molecular formula units per unit cell (Z = 2). Analysis of Micro-Raman spectroscopy showed the presence of vibrational modes in all samples and confirmed the hexagonal ZnO structure. The microscopy images clearly show a change of the morphology of the sample obtained by the co- precipitation method in comparison with those obtained by hydrothermal microwave method. In accordance with the photodegradation the results revealed that the ZnO processed at 140 deg C for 32 minutes have higher photocatalytic efficiency degradation. The Rodamine B dye was completely decolorized at 30 minutes. The pseudo-first order model indicate an increasing in the (k) values with the increase microwave processing time and that improve the ZnO photocatalytic performance. In this work we reported a low-temperature way to prepare the ZnO photocatalytic semiconductor and the results showed a great potential of this material for that application. References: [1] Pearton, S. J; Norton, D. P; et al, Journal of Science and Technology. 22 (2004) 932-948 [2] Kansal, S. K.; Kaur, N. Nanoscale Research Letters 4 (2009) 709-716. (author)

  4. Synthesis, Characterization and Applications of Ethyl Cellulose-Based Polymeric Calcium(II) Hydrogen Phosphate Composite

    Science.gov (United States)

    Mohammad, Faruq; Arfin, Tanvir; Al-Lohedan, Hamad A.

    2018-03-01

    The present report deals with the synthesis, characterization and testing of an ethyl cellulose-calcium(II) hydrogen phosphate (EC-CaHPO4) composite, where a sol-gel synthesis method was applied for the preparation of the composite so as to test its efficacy towards the electrochemical, biological, and adsorption related applications. The physical properties of the composite were characterized by using scanning electron microscopy (SEM), ultraviolet- visible (UV-Vis) spectroscopy, and fourier transform-infrared (FTIR) spectroscopy. On testing, the mechanical properties indicated that the composite is highly stable due to the cross-linked rigid framework and the enhanced interactions offered by the EC polymer supported for its binding very effectively. In addition, the conductivity of EC-CaHPO4 is completely governed by the transport mechanism where the electrolyte concentration has preference towards the adsorption of ions and the variations in the conductivity significantly affected the material's performance. We observed an increasing order of KCl > NaCl for the conductivity when 1:1 electrolytes were applied. Further, the material was tested for its usefulness towards the purification of industrial waste waters by removing harmful metal ions from the samples collected near the Aligarh city, India where the data indicates that the material has highest affinity towards Pb2+, Cu2+, Ni2+ and Fe3+ metal ions. Finally, the biological efficiency of the material was confirmed by means of testing the antibacterial activity against two gram positive (staphylococcus aureus and Bacillus thuringiensis) and two gram negative bacteriums (Pseudomonas aeruginosa and Patoea dispersa). Thus, from the cumulative study of outcomes, it indicates that the EC-CaHPO4 composite found to serve as a potential smart biomaterial due to its efficiency in many different applications that includes the electrical conductivity, adsorption capability, and antimicrobial activity.

  5. Extraction and characterization of highly purified collagen from bovine pericardium for potential bioengineering applications

    Energy Technology Data Exchange (ETDEWEB)

    Santos, Maria Helena, E-mail: mariahelena.santos@gmail.com [Department of Dentistry, Federal University of Vales do Jequitinhonha e Mucuri-UFVJM, Diamantina/MG 39100-000 (Brazil); Center for Assessment and Development of Biomaterials-BioMat, Federal University of Vales do Jequitinhonha e Mucuri-UFVJM, Diamantina/MG 39100-000 (Brazil); Silva, Rafael M.; Dumont, Vitor C. [Department of Dentistry, Federal University of Vales do Jequitinhonha e Mucuri-UFVJM, Diamantina/MG 39100-000 (Brazil); Center for Assessment and Development of Biomaterials-BioMat, Federal University of Vales do Jequitinhonha e Mucuri-UFVJM, Diamantina/MG 39100-000 (Brazil); Neves, Juliana S. [Center for Assessment and Development of Biomaterials-BioMat, Federal University of Vales do Jequitinhonha e Mucuri-UFVJM, Diamantina/MG 39100-000 (Brazil); Mansur, Herman S. [Department of Metallurgical and Materials Engineering, Federal University of Minas Gerais-UFMG, Belo Horizonte/MG 31270-901 (Brazil); Heneine, Luiz Guilherme D. [Department of Health Science, Ezequiel Dias Foundation-FUNED, Belo Horizonte/MG 30510-010 (Brazil)

    2013-03-01

    Bovine pericardium is widely used as a raw material in bioengineering as a source of collagen, a fundamental structural molecule. The physical, chemical, and biocompatibility characteristics of these natural fibers enable their broad use in several areas of the health sciences. For these applications, it is important to obtain collagen of the highest possible purity. The lack of a method to produce these pure biocompatible materials using simple and economically feasible techniques presents a major challenge to their production on an industrial scale. This study aimed to extract, purify, and characterize the type I collagen protein originating from bovine pericardium, considered to be an abundant tissue resource. The pericardium tissue was collected from male animals at slaughter age. Pieces of bovine pericardium were enzymatically digested, followed by a novel protocol developed for protein purification using ion-exchange chromatography. The material was extensively characterized by electrophoresis, scanning electron microscopy, energy dispersive X-ray spectroscopy, and infrared spectroscopy. The results showed a purified material with morphological properties and chemical functionalities compatible with type I collagen and similar to a highly purified commercial collagen. Thus, an innovative and relatively simple processing method was developed to extract and purify type I collagen from bovine tissue with potential applications as a biomaterial for regenerative tissue engineering. - Highlights: Black-Right-Pointing-Pointer Type I collagen was obtained from bovine pericardium, an abundant tissue resource. Black-Right-Pointing-Pointer A simple and feasible processing technique was developed to purify bovine collagen. Black-Right-Pointing-Pointer The appropriate process may be performed on industrial scale. Black-Right-Pointing-Pointer The pure collagen presented appropriate morphological and molecular characteristics. Black-Right-Pointing-Pointer The purify

  6. Cryogenic characterization of LEDs for space application

    Science.gov (United States)

    Carron, Jérôme; Philippon, Anne; How, Lip Sun; Delbergue, Audrey; Hassanzadeh, Sahar; Cillierre, David; Danto, Pascale; Boutillier, Mathieu

    2017-09-01

    In the frame of EUCLID project, the Calibration Unit of the VIS (VISible Imager) instrument must provide an accurate and well characterized light source for in-flight instrument calibration without noise when it is switched off. The Calibration Unit consists of a set of LEDs emitting at various wavelengths in the visible towards an integrating sphere. The sphere's output provides a uniform illumination over the entire focal plane. Nine references of LEDs from different manufacturers were selected, screened and qualified under cryogenic conditions. Testing this large quantity of samples led to the implementation of automated testing equipment with complete in-situ monitoring of optoelectronic parameters as well as temperature and vacuum values. All the electrical and optical parameters of the LED have been monitored and recorded at ambient and cryogenic temperatures. These results have been compiled in order to show the total deviation of the LED electrical and electro-optical properties in the whole mission and to select the best suitable LED references for the mission. This qualification has demonstrated the robustness of COTS LEDs to operate at low cryogenic temperatures and in the space environment. Then 6 wavelengths were selected and submitted to an EMC sensitivity test at room and cold temperature by counting the number of photons when LEDs drivers are OFF. Characterizations were conducted in the full frequency spectrum in order to implement solutions at system level to suppress the emission of photons when the LED drivers are OFF. LEDs impedance was also characterized at room temperature and cold temperature.

  7. Parallelization characteristics of the DeCART code

    International Nuclear Information System (INIS)

    Cho, J. Y.; Joo, H. G.; Kim, H. Y.; Lee, C. C.; Chang, M. H.; Zee, S. Q.

    2003-12-01

    This report is to describe the parallelization characteristics of the DeCART code and also examine its parallel performance. Parallel computing algorithms are implemented to DeCART to reduce the tremendous computational burden and memory requirement involved in the three-dimensional whole core transport calculation. In the parallelization of the DeCART code, the axial domain decomposition is first realized by using MPI (Message Passing Interface), and then the azimuthal angle domain decomposition by using either MPI or OpenMP. When using the MPI for both the axial and the angle domain decomposition, the concept of MPI grouping is employed for convenient communication in each communication world. For the parallel computation, most of all the computing modules except for the thermal hydraulic module are parallelized. These parallelized computing modules include the MOC ray tracing, CMFD, NEM, region-wise cross section preparation and cell homogenization modules. For the distributed allocation, most of all the MOC and CMFD/NEM variables are allocated only for the assigned planes, which reduces the required memory by a ratio of the number of the assigned planes to the number of all planes. The parallel performance of the DeCART code is evaluated by solving two problems, a rodded variation of the C5G7 MOX three-dimensional benchmark problem and a simplified three-dimensional SMART PWR core problem. In the aspect of parallel performance, the DeCART code shows a good speedup of about 40.1 and 22.4 in the ray tracing module and about 37.3 and 20.2 in the total computing time when using 48 CPUs on the IBM Regatta and 24 CPUs on the LINUX cluster, respectively. In the comparison between the MPI and OpenMP, OpenMP shows a somewhat better performance than MPI. Therefore, it is concluded that the first priority in the parallel computation of the DeCART code is in the axial domain decomposition by using MPI, and then in the angular domain using OpenMP, and finally the angular

  8. Optical Characterization and Applications of Single Walled Carbon Nanotubes

    Science.gov (United States)

    Strano, Michael S.

    2005-03-01

    Recent advances in the dispersion and separation of single walled carbon nanotubes have led to new methods of optical characterization and some novel applications. We find that Raman spectroscopy can be used to probe the aggregation state of single-walled carbon nanotubes in solution or as solids with a range of varying morphologies. Carbon nanotubes experience an orthogonal electronic dispersion when in electrical contact that broadens (from 40 meV to roughly 80 meV) and shifts the interband transition to lower energy (by 60 meV). We show that the magnitude of this shift is dependent on the extent of bundle organization and the inter-nanotube contact area. In the Raman spectrum, aggregation shifts the effective excitation profile and causes peaks to increase or decrease, depending on where the transition lies, relative to the excitation wavelength. The findings are particularly relevant for evaluating nanotube separation processes, where relative peak changes in the Raman spectrum can be confused for selective enrichment. We have also used gel electrophoresis and column chromatography conducted on individually dispersed, ultrasonicated single-walled carbon nanotubes to yield simultaneous separation by tube length and diameter. Electroelution after electrophoresis is shown to produce highly resolved fractions of nanotubes with average lengths between 92 and 435 nm. Separation by diameter is concomitant with length fractionation, and nanotubes that have been cut shortest also possess the greatest relative enrichments of large-diameter species. The relative quantum yield decreases nonlinearly as the nanotube length becomes shorter. These findings enable new applications of nanotubes as sensors and biomarkers. Particularly, molecular detection using near infrared (n-IR) light between 0.9 and 1.3 eV has important biomedical applications because of greater tissue penetration and reduced auto-fluorescent background in thick tissue or whole blood media. Carbon nanotubes

  9. Characterization of minerals, metals and materials

    CERN Document Server

    Hwang, Jiann-Yang; Bai, Chengguang; Carpenter, John; Cai, Mingdong; Firrao, Donato; Kim, Byoung-Gon

    2012-01-01

    This state-of-the-art reference contains chapters on all aspects of the characterization of minerals, metals, and materials. The title presents papers from one of the largest yearly gatherings of materials scientists in the world and thoroughly discusses the characterization of minerals, metals, and materials The scope includes current industrial applications and research and developments in the following areas:  Characterization of Ferrous Metals Characterization of Non-Ferrous Materials Characterization of Minerals and Ceramics Character

  10. Development of a large-scale general purpose two-phase flow analysis code

    International Nuclear Information System (INIS)

    Terasaka, Haruo; Shimizu, Sensuke

    2001-01-01

    A general purpose three-dimensional two-phase flow analysis code has been developed for solving large-scale problems in industrial fields. The code uses a two-fluid model to describe the conservation equations for two-phase flow in order to be applicable to various phenomena. Complicated geometrical conditions are modeled by FAVOR method in structured grid systems, and the discretization equations are solved by a modified SIMPLEST scheme. To reduce computing time a matrix solver for the pressure correction equation is parallelized with OpenMP. Results of numerical examples show that the accurate solutions can be obtained efficiently and stably. (author)

  11. Characterizing Energy per Job in Cloud Applications

    Directory of Open Access Journals (Sweden)

    Thi Thao Nguyen Ho

    2016-12-01

    Full Text Available Energy efficiency is a major research focus in sustainable development and is becoming even more critical in information technology (IT with the introduction of new technologies, such as cloud computing and big data, that attract more business users and generate more data to be processed. While many proposals have been presented to optimize power consumption at a system level, the increasing heterogeneity of current workloads requires a finer analysis in the application level to enable adaptive behaviors and in order to reduce the global energy usage. In this work, we focus on batch applications running on virtual machines in the context of data centers. We analyze the application characteristics, model their energy consumption and quantify the energy per job. The analysis focuses on evaluating the efficiency of applications in terms of performance and energy consumed per job, in particular when shared resources are used and the hosts on which the virtual machines are running are heterogeneous in terms of energy profiles, with the aim of identifying the best combinations in the use of resources.

  12. Feedstock characterization and recommended procedures

    International Nuclear Information System (INIS)

    Chum, H.L.; Milne, T.A.; Johnson, D.K.; Agblevor, F.A.

    1993-01-01

    Using biomass for non-conventional applications such as feedstocks for fuels, chemicals, new materials, and electric power production requires knowledge of biomass characteristics important to these processes, and characterization techniques that are more appropriate than those employed today for conventional applications of food, feed, and fiber. This paper reviews feedstock characterization and standardization methodologies, and identifies research and development needs. It reviews the international cooperation involved in determining biomass characteristics and standards that has culminated in preparing four biomass samples currently available from the National Institute of Standards and Technology (NIST)

  13. Characterization of thermophysical properties of phase change materials for non-membrane based indirect solar desalination application

    International Nuclear Information System (INIS)

    Sarwar, J.; Mansoor, B.

    2016-01-01

    Highlights: • Thermal cycling of paraffin waxes phase change materials. • Differential Scanning Calorimetry and thermogravimetric study of the materials. • Characterization of the phase change materials via Temperature History Method. • Investigation of suitability of materials for indirect solar desalination system. • Paraffin waxes are suitable for non-membrane indirect solar desalination system. - Abstract: Phase change material as a thermal energy storage medium has been widely incorporated in various technologies like solar air/water heating, buildings, and desalination for efficient use and management of fluctuating solar energy. Temperature and thermal energy requirements dictate the selection of an appropriate phase change material for its application in various engineering systems. In this work, two phase change materials belonging to organic paraffin wax class have been characterized to obtain their thermophysical properties. The melting/solidification temperatures, latent heat of fusion and heat capacities of the phase change materials have been investigated using Differential Scanning Calorimetry, Thermogravimetric analysis and Temperature History Method. Thermal cycles up to 300 are performed to investigate melting and solidification reversibility as well as degradation over time. It is shown that the selected paraffin waxes have reversible phase change with no degradation of thermophysical properties over time. It is also shown that melting/solidification temperature and thermal energy storage capabilities make them suitable for their application as a thermal energy storage medium, in high temperature vapour compression, multi-stage flash and multi-effect distillation processes of non-membrane based indirect desalination systems.

  14. Characterization of diffraction gratings scattering in uv and ir for space applications

    Science.gov (United States)

    Achour, Sakina; Kuperman-Le Bihan, Quentin; Etcheto, Pierre

    2017-09-01

    The use of Bidirectional Scatter Distribution Function (BSDF) in space industry and especially when designing telescopes is a key feature. Indeed when speaking about space industry, one can immediately think about stray light issues. Those important phenomena are directly linked to light scattering. Standard BSDF measurement goniophotometers often have a resolution of about 0.1° and are mainly working in or close to the visible spectrum. This resolution is far too loose to characterize ultra-polished surfaces. Besides, wavelength range of BSDF measurements for space projects needs to be done far from visible range. How can we measure BSDF of ultra-polished surfaces and diffraction gratings in the UV and IR range with high resolution? We worked on developing a new goniophometer bench in order to be able to characterize scattering of ultra-polished surfaces and diffraction gratings used in everyday space applications. This ten meters long bench was developed using a collimated beam approach as opposed to goniophotometer using focused beam. Sources used for IR characterization were CO2 (10.6?m) and Helium Neon (3.39?m) lasers. Regarding UV sources, a collimated and spatially filtered UV LED was used. The detection was ensure by a photomultiplier coupled with synchronous detection as well as a MCT InSb detector. The so-built BSDF measurement instrument allowed us to measure BSDF of ultra-polished surfaces as well as diffraction gratings with an angular resolution of 0.02° and a dynamic of 1013 in the visible range. In IR as well as in UV we manage to get 109 with same angular resolution of 0.02°. The 1m arm and translation stages allows us to measure samples up to 200mm. Thanks to such a device allowing ultra-polished materials as well as diffraction gratings scattering characterization, it is possible to implement those BSDF measurements into simulation software and predict stray light issues. This is a big help for space industry engineers to apprehend stray light

  15. Study of the application of non-plastic clays from Pocos de Caldas - part 1: chemical-mineralogic characterization

    International Nuclear Information System (INIS)

    Roveri, C.D.; Mariano, N.A.; Faustino, L.M.; Aielo, G.F.; Pinto, L.P.A.; Maestrelli, S.C.

    2011-01-01

    Pocos de Caldas is an important 'hidrotermomineral' center of Brazil, where can be found non-plastic clays deposits with no significant records about its characterization; this fact difficult the studies of industrial application. These nonplastic clays, not used, have been stored in sheds or open, which creates a high cost to the industry, and become an environmental liability. In the present work, the chemical-mineralogical study of six samples of non-plastic clays was realized, to expand the horizons of researches about such materials. This preliminary study showed that, overall, the samples are composed of refractory minerals such as kaolinite and gibbsite, with less significant amounts of other phases such as quartz, illite and vermiculite. The chemical analysis permitted the grouping of raw materials into two groups according to their refractories proprieties, guiding to the subsequent characterization. (author)

  16. Thermomechanical characterization of joints for blanket and divertor application processed by electrochemical plating

    Energy Technology Data Exchange (ETDEWEB)

    Krauss, Wolfgang; Lorenz, Julia; Konys, Jürgen; Basuki, Widodo; Aktaa, Jarir

    2016-11-01

    Highlights: • Electroplating is a relevant technology for brazing of blanket and divertor parts. • Tungsten, Eurofer and steel joints successfully fabricated. • Reactive interlayers improve adherence and reduce failure risks. • Qualification of joints performed by thermo-mechanical testing and aging. • Shear strength of joints comparable with conventionally brazing of steels. - Abstract: Fusion technology requires in the fields of first wall and divertor development reliable and adjusted joining processes of plasma facing tungsten to heat sinks or blanket structures. The components to be bonded will be fabricated from tungsten, steel or other alloys like copper. The parts have to be joined under functional and structural aspects considering the metallurgical interactions of alloys to be assembled and the filler materials. Application of conventional brazing showed lacks ranging from bad wetting of tungsten up to embrittlement of fillers and brazing zones. Thus, the deposition of reactive interlayers and filler components, e.g. Ni, Pd or Cu was initiated to overcome these metallurgical restrictions and to fabricate joints with aligned mechanical behavior. This paper presents results concerning the joining of tungsten, Eurofer and stainless steel for blanket and divertor application by applying electroplating technology. Metallurgical and mechanical characterization by shear testing were performed to analyze the joints quality and application limits in dependence on testing temperature between room temperature and 873 K and after thermal aging of up to 2000 h. The tested interlayers Ni and Pd enhanced wetting and enabled the processing of reliable joints with a shear strength of more than 200 MPa at RT.

  17. Production and characterization of monodisperse uranium particles for nuclear safeguards applications

    International Nuclear Information System (INIS)

    Knott, Alexander

    2016-01-01

    Environmental sampling is a very effective measure to detect undeclared nuclear activities. Generally, samples are taken as swipe samples on cotton. These swipes contain minute quantities of particulates which have an inherent signature of their production and release scenario. These inspection samples are assessed for their morphology, elemental composition and their isotopic vectors. Mass spectrometry plays a crucial role in determining the isotopic ratios of uranium. Method validation and instrument calibration with well-characterized quality control (QC)-materials, reference materials (RMs) and certified reference materials (CRMs) ensures reliable data output. Currently, the availability of suitable well defined microparticles containing uranium and plutonium reference materials is very limited. Primarily, metals, oxides and various uranium and plutonium containing solutions are commercially available. Therefore, the IAEA's Safeguards Analytical Services (SGAS) cooperates with the Institute of Nuclear Waste Management and Reactor Safety (IEK-6) at the Forschungszentrum Juelich GmbH in a joint task entitled ''Production of Particle Reference Materials''. The work presented in this thesis has been partially funded by the IAEA, Forschungszentrum Juelich GmbH and the Federal Ministry of Economic Affairs and Energy (BMWi) through the ''Joint Program on the Technical Development and Further Improvement of IAEA Safeguards between the Government of the Federal Republic of Germany and the IAEA''. The first step towards monodisperse microparticles was the development of pure uranium oxide particles made from certified reference materials. The focus of the dissertation is (1) the implementation of a working setup to produce monodisperse uranium oxide particles and (2) the characterization of these particles towards the application as QC-material. Monodisperse uranium oxide particles were produced by spray pyrolysis. It was demonstrated that the particle size can be

  18. Production and characterization of monodisperse uranium particles for nuclear safeguards applications

    Energy Technology Data Exchange (ETDEWEB)

    Knott, Alexander

    2016-07-01

    Environmental sampling is a very effective measure to detect undeclared nuclear activities. Generally, samples are taken as swipe samples on cotton. These swipes contain minute quantities of particulates which have an inherent signature of their production and release scenario. These inspection samples are assessed for their morphology, elemental composition and their isotopic vectors. Mass spectrometry plays a crucial role in determining the isotopic ratios of uranium. Method validation and instrument calibration with well-characterized quality control (QC)-materials, reference materials (RMs) and certified reference materials (CRMs) ensures reliable data output. Currently, the availability of suitable well defined microparticles containing uranium and plutonium reference materials is very limited. Primarily, metals, oxides and various uranium and plutonium containing solutions are commercially available. Therefore, the IAEA's Safeguards Analytical Services (SGAS) cooperates with the Institute of Nuclear Waste Management and Reactor Safety (IEK-6) at the Forschungszentrum Juelich GmbH in a joint task entitled ''Production of Particle Reference Materials''. The work presented in this thesis has been partially funded by the IAEA, Forschungszentrum Juelich GmbH and the Federal Ministry of Economic Affairs and Energy (BMWi) through the ''Joint Program on the Technical Development and Further Improvement of IAEA Safeguards between the Government of the Federal Republic of Germany and the IAEA''. The first step towards monodisperse microparticles was the development of pure uranium oxide particles made from certified reference materials. The focus of the dissertation is (1) the implementation of a working setup to produce monodisperse uranium oxide particles and (2) the characterization of these particles towards the application as QC-material. Monodisperse uranium oxide particles were produced by spray pyrolysis. It was

  19. Applications of Moessbauer spectroscopy to the structural characterization of minerals and products of the country 's mining - metallurgical industry

    International Nuclear Information System (INIS)

    Herrera Palma, Victoria; Cruz Inclan, Carlos Manuel

    2016-01-01

    Since the seventies of the past century Moessbauer Spectroscopy (MS) has been systematically and successfully applied at CEADEN in the study and characterization of lateritic and other iron-rich ores, and different products of their industrial processing as well. Due to their high iron and chrome content these materials seemed to be attractive as raw material for the production of several enriched fractions in metallurgical applications. Such studies showed that the systematic application of MS combined with X- Ray Diffraction and other techniques like neutron Diffraction, Thermal and Calorimetric analysis and Optical and Electron Microscopies, has allowed a higher level of accuracy in the crystallographic characterization, and the phase composition and other specific properties assessment. As examples in this direction, in the present paper results of the study on two different iron-bearing materials are reported: a) magnetite of Mina Grande (in Santiago de Cuba), and b) Monitoring of a proposed process using concentration tables for chrome enrichment from tailings of the nickel plant 'Hector Ramos Latour' at Holguin, both areas located in the east of Cuba. It is evidenced that a right combination of 57 Fe Moessbauer Spectroscopy with other mentioned methods is nowadays the wisest and most efficient way for a thorough identification and characterization of iron-bearing mineral ores and products in mining and metallurgical industry. (Author)

  20. Dosimetric characterization of a bi-directional micromultileaf collimator for stereotactic applications.

    Science.gov (United States)

    Bucciolini, M; Russo, S; Banci Buonamici, F; Pini, S; Silli, P

    2002-07-01

    A 6 MV photon beam from Linac SL75-5 has been collimated with a new micromultileaf device that is able to shape the field in the two orthogonal directions with four banks of leaves. This is the first clinical installation of the collimator and in this paper the dosimetric characterization of the system is reported. The dosimetric parameters required by the treatment planning system used for the dose calculation in the patient are: tissue maximum ratios, output factors, transmission and leakage of the leaves, penumbra values. Ionization chambers, silicon diode, radiographic films, and LiF thermoluminescent dosimeters have been employed for measurements of absolute dose and beam dosimetric data. Measurements with different dosimeters supply results in reasonable agreement among them and consistent with data available in literature for other models of micromultileaf collimator; that permits the use of the measured parameters for clinical applications. The discrepancies between results obtained with the different detectors (around 2%) for the analyzed parameters can be considered an indication of the accuracy that can be reached by current stereotactic dosimetry.

  1. Fabrication and mechanical characterization of a polyvinyl alcohol sponge for tissue engineering applications.

    Science.gov (United States)

    Karimi, A; Navidbakhsh, M; Faghihi, S

    2014-05-01

    Polyvinyl alcohol (PVA) sponges are widely used for clinical applications, including ophthalmic surgical treatments, wound healing and tissue engineering. There is, however, a lack of sufficient data on the mechanical properties of PVA sponges. In this study, a biomechanical method is used to characterize the elastic modulus, maximum stress and strain as well as the swelling ratio of a fabricated PVA sponge (P-sponge) and it is compared with two commercially available PVA sponges (CENEFOM and EYETEC). The results indicate that the elastic modulus of the P-sponge is 5.32% and 13.45% lower than that of the CENEFOM and EYETEC sponges, while it bears 4.11% more and 10.37% less stress compared to the CENEFOM and EYETEC sponges, respectively. The P-sponge shows a maximum strain of 32% more than the EYETEC sponge as well as a 26.78% higher swelling ratio, which is a significantly higher absorbency compared to the CENEFOM. It is believed that the results of this study would help for a better understanding of the extension, rupture and swelling mechanism of PVA sponges, which could lead to crucial improvement in the design and application of PVA-based materials in ophthalmic and plastic surgeries as well as wound healing and tissue engineering.

  2. Synthesis and characterization of Pt-Sn-Ni alloys to application as catalysts for direct ethanol fuel cells

    International Nuclear Information System (INIS)

    Silva, E.L. da; Correa, P.S.; Oliveira, E.L. de; Takimi, A.S.; Malfatti, C.F.; Radtke, C.

    2010-01-01

    Direct ethanol fuel cells (DEFCs) have been the focus of recent research due its application in mobile energy sources. In order to obtain the maximum efficiency from these systems, it is necessary the total ethanol oxidation, which implies in C-C bond break. Different catalysts described in literature are employed with this intent. This work consists in studying PtSnNi catalysts supported on carbon Vulcan XC72R, to application in DEFCs. Thus, it was used the impregnation/reduction method, varying the atomic proportion among Pt, Sn and Ni. The alloys were characterized by X-Ray Diffraction, Cyclic Voltammetry and Transmission Microscopy. Preliminary results show that predominant structure on the catalysts is the face centered cubic platinum and the densities currents are dependent on the platinum amount. (author)

  3. The energetic characterization of pineapple crown leaves.

    Science.gov (United States)

    Braga, R M; Queiroga, T S; Calixto, G Q; Almeida, H N; Melo, D M A; Melo, M A F; Freitas, J C O; Curbelo, F D S

    2015-12-01

    Energetic characterization of biomass allows for assessing its energy potential for application in different conversion processes into energy. The objective of this study is to physicochemically characterize pineapple crown leaves (PC) for their application in energy conversion processes. PC was characterized according to ASTM E871-82, E1755-01, and E873-82 for determination of moisture, ash, and volatile matter, respectively; the fixed carbon was calculated by difference. Higher heating value was determined by ASTM E711-87 and ash chemical composition was determined by XRF. The thermogravimetric and FTIR analyses were performed to evaluate the thermal decomposition and identify the main functional groups of biomass. PC has potential for application in thermochemical processes, showing high volatile matter (89.5%), bulk density (420.8 kg/m(3)), and higher heating value (18.9 MJ/kg). The results show its energy potential justifying application of this agricultural waste into energy conversion processes, implementing sustainability in the production, and reducing the environmental liabilities caused by its disposal.

  4. FISH: A THREE-DIMENSIONAL PARALLEL MAGNETOHYDRODYNAMICS CODE FOR ASTROPHYSICAL APPLICATIONS

    International Nuclear Information System (INIS)

    Kaeppeli, R.; Whitehouse, S. C.; Scheidegger, S.; Liebendoerfer, M.; Pen, U.-L.

    2011-01-01

    FISH is a fast and simple ideal magnetohydrodynamics code that scales to ∼10,000 processes for a Cartesian computational domain of ∼1000 3 cells. The simplicity of FISH has been achieved by the rigorous application of the operator splitting technique, while second-order accuracy is maintained by the symmetric ordering of the operators. Between directional sweeps, the three-dimensional data are rotated in memory so that the sweep is always performed in a cache-efficient way along the direction of contiguous memory. Hence, the code only requires a one-dimensional description of the conservation equations to be solved. This approach also enables an elegant novel parallelization of the code that is based on persistent communications with MPI for cubic domain decomposition on machines with distributed memory. This scheme is then combined with an additional OpenMP parallelization of different sweeps that can take advantage of clusters of shared memory. We document the detailed implementation of a second-order total variation diminishing advection scheme based on flux reconstruction. The magnetic fields are evolved by a constrained transport scheme. We show that the subtraction of a simple estimate of the hydrostatic gradient from the total gradients can significantly reduce the dissipation of the advection scheme in simulations of gravitationally bound hydrostatic objects. Through its simplicity and efficiency, FISH is as well suited for hydrodynamics classes as for large-scale astrophysical simulations on high-performance computer clusters. In preparation for the release of a public version, we demonstrate the performance of FISH in a suite of astrophysically orientated test cases.

  5. Application of artificial intelligence to characterize naturally fractured zones in Hassi Messaoud Oil Field, Algeria

    Energy Technology Data Exchange (ETDEWEB)

    El Ouahed, Abdelkader Kouider; Mazouzi, Amine [Sonatrach, Rue Djenane Malik, Hydra, Algiers (Algeria); Tiab, Djebbar [Mewbourne School of Petroleum and Geological Engineering, The University of Oklahoma, 100 East Boyd Street, SEC T310, Norman, OK, 73019 (United States)

    2005-12-15

    In highly heterogeneous reservoirs classical characterization methods often fail to detect the location and orientation of the fractures. Recent applications of Artificial Intelligence to the area of reservoir characterization have made this challenge a possible practice. Such a practice consists of seeking the complex relationship between the fracture index and some geological and geomechanical drivers (facies, porosity, permeability, bed thickness, proximity to faults, slopes and curvatures of the structure) in order to obtain a fracture intensity map using Fuzzy Logic and Neural Network. This paper shows the successful application of Artificial Intelligence tools such as Artificial Neural Network and Fuzzy Logic to characterize naturally fractured reservoirs. A 2D fracture intensity map and fracture network map in a large block of Hassi Messaoud field have been developed using Artificial Neural Network and Fuzzy Logic. This was achieved by first building the geological model of the permeability, porosity and shale volume using stochastic conditional simulation. Then by applying some geomechanical concepts first and second structure directional derivatives, distance to the nearest fault, and bed thickness were calculated throughout the entire area of interest. Two methods were then used to select the appropriate fracture intensity index. In the first method well performance was used as a fracture index. In the second method a Fuzzy Inference System (FIS) was built. Using this FIS, static and dynamic data were coupled to reduce the uncertainty, which resulted in a more reliable Fracture Index. The different geological and geomechanical drivers were ranked with the corresponding fracture index for both methods using a Fuzzy Ranking algorithm. Only important and measurable data were selected to be mapped with the appropriate fracture index using a feed forward Back Propagation Neural Network (BPNN). The neural network was then used to obtain a fracture intensity

  6. Defect occurrence, detection, location and characterization; essential variables of the LBB concept application to primary piping

    Energy Technology Data Exchange (ETDEWEB)

    Crutzen, S.; Koble, T.D.; Lemaitre, P. [and others

    1997-04-01

    Applications of the Leak Before Break (LBB) concept involve the knowledge of flaw presence and characteristics. In Service Inspection is given the responsibility of detecting flaws of a determined importance to locate them precisely and to classify them in broad families. Often LBB concepts application imply the knowledge of flaw characteristics such as through wall depth; length at the inner diameter (ID) or outer diameter (OD) surface; orientation or tilt and skew angles; branching; surface roughness; opening or width; crack tip aspect. Besides detection and characterization, LBB evaluations consider important the fact that a crack could be in the weld material or in the base material or in the heat affected zone. Cracks in tee junctions, in homogenous simple welds and in elbows are not considered in the same way. Essential variables of a flaw or defect are illustrated, and examples of flaws found in primary piping as reported by plant operators or service vendors are given. If such flaw variables are important in the applications of LBB concepts, essential is then the knowledge of the performance achievable by NDE techniques, during an ISI, in detecting such flaws, in locating them and in correctly evaluating their characteristics.

  7. Synthesis and characterization of new oxalate ester-polymer composites for practical applications

    Energy Technology Data Exchange (ETDEWEB)

    Petre, Razvan [Scientific Research Centre for CBRN Defense and Ecology, 225 Sos. Oltenitei, Bucharest 041309 (Romania); University POLITEHNICA of Bucharest, 149 Calea Victoriei, Bucharest 010072 (Romania); Zecheru, Teodora, E-mail: teodora.zecheru@yahoo.com [Scientific Research Centre for CBRN Defense and Ecology, 225 Sos. Oltenitei, Bucharest 041309 (Romania)

    2013-03-15

    The present study focused on the synthesis of high purity oxalate esters: bis(2,4,6-trichlorophenyl) oxalate (TCPO) and bis(2,4,5-trichloro-6-carbobutoxyphenyl) oxalate (TCCBPO), and further on their incorporation into potentially applicative polymer composites. The organic compounds were characterized through NMR and the composites obtained were evaluated for light capacity availability at room temperature and low temperatures. The concentrations of the peroxide, fluorescer, catalyst, and polymer additives were optimized. The chemiluminescent composites' performances were evaluated after 360 days and returned satisfactory results. - Highlights: Black-Right-Pointing-Pointer bis(2,4,6-Trichlorophenyl)-oxalate (TCPO) was synthesized. Black-Right-Pointing-Pointer bis(2,4,5-Trichloro-6-carbobutoxiphenyl)-oxalate (TCCBPO) was synthesized. Black-Right-Pointing-Pointer TCPO and TCCBPO-based composites were obtained. Black-Right-Pointing-Pointer The composites light emission was evaluated versus scotopic visual sensitivity. Black-Right-Pointing-Pointer The new compositions present superior performances within extensive emission time.

  8. X-ray Characterization of Materials

    Science.gov (United States)

    Lifshin, Eric

    1999-09-01

    Linking of materials properties with microstructures is a fundamental theme in materials science, for which a detailed knowledge of the modern characterization techniques is essential. Since modern materials such as high-temperature alloys, engineering thermoplastics and multilayer semiconductor films have many elemental constituents distributed in more than one phase, characterization is essential to the systematic development of such new materials and understanding how they behave in practical applications. X-ray techniques play a major role in providing information on the elemental composition and crystal and grain structures of all types of materials. The challenge to the materials characterization expert is to understand how specific instruments and analytical techniques can provide detailed information about what makes each material unique. The challenge to the materials scientist, chemist, or engineer is to know what information is needed to fully characterize each material and how to use this information to explain its behavior, develop new and improved properties, reduce costs, or ensure compliance with regulatory requirements. This comprehensive handbook presents all the necessary background to understand the applications of X-ray analysis to materials characterization with particular attention to the modern approach to these methods.

  9. Сравнение эффективности технологий OpenMP, nVidia cuda и StarPU на примере задачи умножения матриц

    OpenAIRE

    Ханкин, Константин

    2013-01-01

    Приведено описание технологий OpenMP, nVidia CUDA и StarPU, варианты решения задачи умножения двух матриц с задействованием каждой из технологий и результаты сравнения реализаций по требовательности к ресурсам.

  10. [Micro-droplet characterization and its application for amino acid detection in droplet microfluidic system].

    Science.gov (United States)

    Yuan, Huiling; Dong, Libing; Tu, Ran; Du, Wenbin; Ji, Shiru; Wang, Qinhong

    2014-01-01

    Recently, the droplet microfluidic system attracts interests due to its high throughput and low cost to detect and screen. The picoliter micro-droplets from droplet microfluidics are uniform with respect to the size and shape, and could be used as monodispensed micro-reactors for encapsulation and detection of single cell or its metabolites. Therefore, it is indispensable to characterize micro-droplet and its application from droplet microfluidic system. We first constructed the custom-designed droplet microfluidic system for generating micro-droplets, and then used the micro-droplets to encapsulate important amino acids such as glutamic acid, phenylalanine, tryptophan or tyrosine to test the droplets' properties, including the stability, diffusivity and bio-compatibility for investigating its application for amino acid detection and sorting. The custom-designed droplet microfluidic system could generate the uniformed micro-droplets with a controllable size between 20 to 50 microm. The micro-droplets could be stable for more than 20 h without cross-contamination or fusion each other. The throughput of detection and sorting of the system is about 600 micro-droplets per minute. This study provides a high-throughput platform for the analysis and screening of amino acid-producing microorganisms.

  11. Application of high-throughput mini-bioreactor system for systematic scale-down modeling, process characterization, and control strategy development.

    Science.gov (United States)

    Janakiraman, Vijay; Kwiatkowski, Chris; Kshirsagar, Rashmi; Ryll, Thomas; Huang, Yao-Ming

    2015-01-01

    High-throughput systems and processes have typically been targeted for process development and optimization in the bioprocessing industry. For process characterization, bench scale bioreactors have been the system of choice. Due to the need for performing different process conditions for multiple process parameters, the process characterization studies typically span several months and are considered time and resource intensive. In this study, we have shown the application of a high-throughput mini-bioreactor system viz. the Advanced Microscale Bioreactor (ambr15(TM) ), to perform process characterization in less than a month and develop an input control strategy. As a pre-requisite to process characterization, a scale-down model was first developed in the ambr system (15 mL) using statistical multivariate analysis techniques that showed comparability with both manufacturing scale (15,000 L) and bench scale (5 L). Volumetric sparge rates were matched between ambr and manufacturing scale, and the ambr process matched the pCO2 profiles as well as several other process and product quality parameters. The scale-down model was used to perform the process characterization DoE study and product quality results were generated. Upon comparison with DoE data from the bench scale bioreactors, similar effects of process parameters on process yield and product quality were identified between the two systems. We used the ambr data for setting action limits for the critical controlled parameters (CCPs), which were comparable to those from bench scale bioreactor data. In other words, the current work shows that the ambr15(TM) system is capable of replacing the bench scale bioreactor system for routine process development and process characterization. © 2015 American Institute of Chemical Engineers.

  12. Synthesis and characterization of lanthanide based nanomaterials for radiation detection and biomedical applications

    Science.gov (United States)

    Yao, Mingzhen

    2011-12-01

    Lanthanide based nanomaterials have shown a great potential in various areas such as luminescence imaging, luminescent labels, and detection of cellular functions. Due to the f-f transitions of the metal ion, luminescence of lanthanide ions is characterized by sharp and narrow emissions. In this dissertation lanthanide based nanoparticles such as Ce3+, Eu3+ and other lanthanide ions doped LaF3 were synthesized, their characterization, encapsulation and embedding into hybrid matrix were investigated and some of their biomedical and radiological applications were studied. DMSO is a common solvent which has been used widely for biological applications. LaF3:Ce nanoparticles were synthesized in DMSO and it was found that their fluorescent emission originates from the metal-to-ligand charge-transfer excited states. After conjugation with PpIX and then encapsulation within PLGA, the particles show efficient uptake by cancer cells and great cytotoxicity, which is promising for applications in cancer treatments. However, the emission of Eu3+ in DMSO is totally different from LaF3:Ce, very strong characteristic luminescence is observed but no emissions from metal-to-ligand charge-transfer excited states as observed in LaF3:Ce in DMSO. Besides, it is very interesting to see that the coupling of Eu 3+ with O-H oscillations after water was introduced has an opposite effect on emission peaks at 617 nm and its shoulder peak at 613 nm. As a result, the intensity ratio of these two emissions has a nearly perfect linear dependence on increasing water concentration in Eu-DMSO, which provides a very convenient and valuable method for water determination in DMSO. Ce3+ has been well known as an emitter for radiation detection due to its very short decay lifetime. However, its emission range limited the environment in which the detection system works. Whereas, Quantum dots have high luminescence quantum efficiency but their low stopping power results in very weak scintillation

  13. Smart magnetic nanovesicles for theranostic application: Preparation and characterization

    International Nuclear Information System (INIS)

    Marianecci, C.; Rinaldi, F.; Carafa, M.; Ingallina, C.; Passeri, D.; Sorbo, A.

    2013-01-01

    Nano medicines are submicrometer-sized carrier materials designed to improve the biodistribution of systemically administered (chemo)therapeutic agents. By delivering pharmacologically active agents more effectively and more selectively to the pathological site nano medicines aim to improve the balance between the efficacy and the toxicity of systemic (chemo)therapeutic administrations. Nano medicine formulations have also been used for imaging applications and, in recent years, for theranostic approaches, that is, for systems and strategies in which disease diagnosis and therapy are combined. On the one hand, 'classical' drug delivery systems are being co-loaded with both drugs and contrast agents. Actually, nanomaterials with an intrinsic ability to be used for imaging purposes, such as iron-oxide–based magnetic nanoparticles (MNP s ), are increasingly being loaded with drugs or alone for combining disease diagnosis and therapy. In this study, non-ionic surfactant vesicles loaded with lipophilic and hydrophilic MNP s have been prepared. Vesicles have been characterized in terms of dimensions, ζ-potential, time stability, bilayer characteristics and overall iron content. The encouraging obtained results confirm that Tween 20 and Span 20 vesicles could be promising carriers for the delivery of hydrophilic and lipophilic MNPs, respectively, thereby prompting various opportunities for the development of suitable theranostic strategies. The analyzed formulations confirm the importance of surfactant chemical-physical characteristics in entrapping the MNPs of different polarity, highlighting the high versatility of niosomal bilayer and structure; property that make them so appealing among drug delivery nanocarriers.

  14. Synthesis and characterization of nanocomposite powders of calcium phosphate/titanium oxide for biomedical applications

    Energy Technology Data Exchange (ETDEWEB)

    Delima, S.A.; Camargo, N.H.A.; Souza, J.C.P.; Gemelli, E., E-mail: sarahamindelima@hotmail.com, E-mail: dem2nhac@joinville.udesc.br, E-mail: souzajulio@joinville.udesc.br, E-mail: gemelli@joinville.udesc.br [Universidade do Estado de Santa Catarina (UDESC), Joinville, SC (Brazil). Centro de Ciencias Tecnologicas

    2009-07-01

    The nanostructured bioceramics of calcium phosphate are current themes of research and they are becoming important as bone matrix in regeneration of tissues in orthopedic and dental applications. Nanocomposite powders of calcium phosphate, reinforced with nanometric particles of titanium oxide, silica oxide and alumina oxid ealpha, are being widely studied because they offer new microstructures, nanostructures and interconnected microporosity with high superficial area of micropores that contribute to osteointegration and osteoinduction processes. This study is about the synthesis of nanocomposites powders of calcium phosphate reinforced with 1%, 2%, 3% and 5% in volume of titanium oxide and its characterization through the techniques of X-Ray Diffraction (XRD), Scanning Electron Microscopy (SEM), Differential Thermal Analysis (DTA), Thermogravimetry (TG) and Dilatometry. (author)

  15. Synthesis and characterization of nanocomposite powders of calcium phosphate/titanium oxide for biomedical applications

    International Nuclear Information System (INIS)

    Delima, S.A.; Camargo, N.H.A.; Souza, J.C.P.; Gemelli, E.

    2009-01-01

    The nanostructured bioceramics of calcium phosphate are current themes of research and they are becoming important as bone matrix in regeneration of tissues in orthopedic and dental applications. Nanocomposite powders of calcium phosphate, reinforced with nanometric particles of titanium oxide, silica oxide and alumina oxid ealpha, are being widely studied because they offer new microstructures, nanostructures and interconnected microporosity with high superficial area of micropores that contribute to osteointegration and osteoinduction processes. This study is about the synthesis of nanocomposites powders of calcium phosphate reinforced with 1%, 2%, 3% and 5% in volume of titanium oxide and its characterization through the techniques of X-Ray Diffraction (XRD), Scanning Electron Microscopy (SEM), Differential Thermal Analysis (DTA), Thermogravimetry (TG) and Dilatometry. (author)

  16. Optimization and Characterization of High Velocity Oxy-fuel Sprayed Coatings: Techniques, Materials, and Applications

    Directory of Open Access Journals (Sweden)

    Maria Oksa

    2011-09-01

    Full Text Available In this work High Velocity Oxy-fuel (HVOF thermal spray techniques, spraying process optimization, and characterization of coatings are reviewed. Different variants of the technology are described and the main differences in spray conditions in terms of particle kinetics and thermal energy are rationalized. Methods and tools for controlling the spray process are presented as well as their use in optimizing the coating process. It will be shown how the differences from the starting powder to the final coating formation affect the coating microstructure and performance. Typical properties of HVOF sprayed coatings and coating performance is described. Also development of testing methods used for the evaluation of coating properties and current status of standardization is presented. Short discussion of typical applications is done.

  17. Laboratory Scale X-ray Fluorescence Tomography: Instrument Characterization and Application in Earth and Environmental Science.

    Science.gov (United States)

    Laforce, Brecht; Vermeulen, Bram; Garrevoet, Jan; Vekemans, Bart; Van Hoorebeke, Luc; Janssen, Colin; Vincze, Laszlo

    2016-03-15

    A new laboratory scale X-ray fluorescence (XRF) imaging instrument, based on an X-ray microfocus tube equipped with a monocapillary optic, has been developed to perform XRF computed tomography experiments with both higher spatial resolution (20 μm) and a better energy resolution (130 eV @Mn-K(α)) than has been achieved up-to-now. This instrument opens a new range of possible applications for XRF-CT. Next to the analytical characterization of the setup by using well-defined model/reference samples, demonstrating its capabilities for tomographic imaging, the XRF-CT microprobe has been used to image the interior of an ecotoxicological model organism, Americamysis bahia. This had been exposed to elevated metal (Cu and Ni) concentrations. The technique allowed the visualization of the accumulation sites of copper, clearly indicating the affected organs, i.e. either the gastric system or the hepatopancreas. As another illustrative application, the scanner has been employed to investigate goethite spherules from the Cretaceous-Paleogene boundary, revealing the internal elemental distribution of these valuable distal ejecta layer particles.

  18. Synthesis, characterization and applications of graphene architectures

    Science.gov (United States)

    Thomas, Abhay Varghese

    Graphene, a two--dimensional sheet of sp2 hybridized carbon atoms arranged in a honeycomb lattice structure, has garnered tremendous interest from the scientific community for its unique combination of properties. It has interesting electrical, thermal, optical and mechanical properties that scientists and engineers are trying to understand and harness to improve current products as well as focus on disruptive technologies that can be made possible by this next generation material. In this thesis the synthesis, characterization and applications of various graphene architectures were explored from the context of a bottom--up and top--down synthesis approach. The work is divided into three main chapters and each one deals with a unique architecture of graphene as well as its properties and an application to a real world problem. In Chapter 2, we focus on bottom--up synthesis of graphene sheets by chemical vapor deposition. We then studied the wetting properties of graphene coated surfaces. More specifically the wetting properties of single and multilayer graphene films on flat and nanoscale rough surfaces are explored and the insights gained are used in improving heat transfer performance of copper surfaces. Single layer graphene, on certain flat surfaces, was shown to exhibit `wetting transparency' as a result of its sheer thinness and this property is of interest in various wetting related applications. Surface protection from corrosion and/or oxidation without change in wetting properties is tremendously useful in multiple fields and we looked to apply this property to dehumidification of copper surfaces. The short time scales results demonstrated that graphene indeed served to prevent oxidation of the surface which in turn promoted increased heat transfer co--efficients with respect to the oxidized copper surfaces. Closer inspection of the surface over long time scales however revealed that the oxide layer changed the wetting properties and this was detrimental

  19. Mechanical characterization of Ti-12Mo-13Nb alloy for biomedical application hot swaged and aged

    Energy Technology Data Exchange (ETDEWEB)

    Gabriel, Sinara Borborema; Rezende, Monica Castro; Almeida, Luiz Henrique de, E-mail: sinara@metalmat.ufrj.br [Universidade Federal do Rio de Janeiro (UFRJ), Rio de Janeiro, RJ (Brazil). Departamento de Engenharia Metalurgica e de Materiais; Dille, Jean [Universite Libre de Bruxelles, Brussels (Belgium); Mei, Paulo [Universidade Estadual de Campinas (UNICAMP), Campinas, SP (Brazil). Departamento de Engenharia Mecanica; Baldan, Renato; Nunes, Carlos Angelo [Universidade de Sao Paulo (USP), Lorena, SP (Brazil). Departamento de Engenharia de Materiais

    2015-07-01

    Beta titanium alloys were developed for biomedical applications due to the combination of its mechanical properties including low elasticity modulus, high strength, fatigue resistance, good ductility and with excellent corrosion resistance. With this perspective a metastable beta titanium alloy Ti-12Mo-13Nb was developed with the replacement of both vanadium and aluminum from the traditional alloy Ti-6Al-4V. This paper presents the microstructure, mechanical properties of the Ti-12Mo-13Nb hot swaged and aged at 500 deg C for 24 h under high vacuum and then water quenched. The alloy structure was characterized by X-ray diffraction and transmission electron microscopy. Tensile tests were carried out at room temperature. The results show a microstructure consisting of a fine dispersed α phase in a β matrix and good mechanical properties including low elastic modulus. The results indicate that Ti-12Mo-13Nb alloy can be a promising alternative for biomedical application. (author)

  20. Computer-Aided Parallelizer and Optimizer

    Science.gov (United States)

    Jin, Haoqiang

    2011-01-01

    The Computer-Aided Parallelizer and Optimizer (CAPO) automates the insertion of compiler directives (see figure) to facilitate parallel processing on Shared Memory Parallel (SMP) machines. While CAPO currently is integrated seamlessly into CAPTools (developed at the University of Greenwich, now marketed as ParaWise), CAPO was independently developed at Ames Research Center as one of the components for the Legacy Code Modernization (LCM) project. The current version takes serial FORTRAN programs, performs interprocedural data dependence analysis, and generates OpenMP directives. Due to the widely supported OpenMP standard, the generated OpenMP codes have the potential to run on a wide range of SMP machines. CAPO relies on accurate interprocedural data dependence information currently provided by CAPTools. Compiler directives are generated through identification of parallel loops in the outermost level, construction of parallel regions around parallel loops and optimization of parallel regions, and insertion of directives with automatic identification of private, reduction, induction, and shared variables. Attempts also have been made to identify potential pipeline parallelism (implemented with point-to-point synchronization). Although directives are generated automatically, user interaction with the tool is still important for producing good parallel codes. A comprehensive graphical user interface is included for users to interact with the parallelization process.

  1. Characterization of bacterial functional groups and microbial activity in microcosms with glyphosate application

    Science.gov (United States)

    Moyano, Sofia; Bonetto, Mariana; Baigorria, Tomas; Pegoraro, Vanesa; Ortiz, Jimena; Faggioli, Valeria; Conde, Belen; Cazorla, Cristian; Boccolini, Monica

    2017-04-01

    Glyphosate is a worldwide used herbicide as c. 90% of transgenic crops are tolerant to it. Microbial degradation of glyphosate molecule in soil is considered the most important process that determines its persistence in the environment. However, the impact of this herbicide on target groups of soil biota remains poorly understood. Our objective was to characterize the abundance of bacterial groups and global microbial activity, under controlled conditions with application of increasing doses of glyphosate. A bioassay was carried out in microcosms using an agricultural soil (Typic Argiudoll) with registered history of glyphosate application from National Institute of Agricultural Technology (INTA, EEA Marcos Juarez, Argentina). Glyphosate of commercial formulation (74.7%) was used and the following treatments were evaluated: Soil without glyphosate (control), and Soil with doses equivalent to 1.12 and 11.2 kg ai ha-1. Microbiological parameters were estimated at 3, 7, 14 and 21 days after herbicide application by counting heterotrophic, cellulolytic, nitrogen fixing (N), and nitrifying bacteria; and fluorescein diacetate hydrolysis (FDA), microbial respiration (MR) and microbial biomass (C-BM). The N cycle related bacteria showed greater sensitivity to glyphosate with significant increases in abundance. On the other hand the C cycle parameters were strongly conditioned by the time elapsed since the application of the herbicide, as did the MR. The FDA declined with the highest dose, while the C-BM was not affected. Therefore, we conclude that in the studied experimental conditions glyphosate stimulated bacterial growth (i.e. target abundances) representing a source of N, C and nutrients. On the other hand, enzymatic activity (FDA) decreased when glyphosate was applied in the highest dose, whereas, it had no effect on the MR nor C-BM, which could be attributable to the organic matter content of the soil. However, future research in field conditions is necessary, for

  2. Guidance on the application of quality assurance for characterizing a low-level radioactive waste disposal site

    International Nuclear Information System (INIS)

    Pittiglio, C.L. Jr.; Starmer, R.J.; Hedges, D.

    1990-10-01

    This document provides the Nuclear Regulatory Commission's staff guidance to an applicant on meeting the quality control (QC) requirements of Title 10 of the Code of Federal Regulations, Part 61, Section 61.12 (10 CFR 61.12), for a low-level waste disposal facility. The QC requirements combined with the requirements for managerial controls and audits are the basis for developing a quality assurance (QA) program and for the guidance provided herein. QA guidance is specified for site characterization activities necessary to meet the performance objectives of 10 CFR Part 61 and to limit exposure to or the release of radioactivity. 1 tab

  3. Synthesis, Characterization and Application of the novel, regular mesoporous materials MCM-41 and MCM-48

    Energy Technology Data Exchange (ETDEWEB)

    Schmidt, R

    1995-07-01

    In the application of zeolites to catalytic cracking of heavy oil fractions the need of regular solids with large pore sizes has become very obvious. The scope of this thesis was to synthesize and characterize the novel mesoporous materials MCM-41 and MCM-48 with the major emphasis laid on MCM-41. MCM-41 materials with bulk Si/Al ratios of 4, 9, 18 and {infinity} were synthesized and characterized by XRD and HREM. The catalytic cracking behaviour of Al-containing MCM-41 materials was investigated by pulse reactor studies using decalin as model feed and by Micro Activity Tests using atmospheric residue or n-hexadecane as feed. Aluminium containing MCM-41 was found to be active for the cracking of heavy oil fractions. Purely siliceous MCM-41 materials with pore sizes ranging from 18 Aa to 40 Aa were synthesized and their properties studied by means of NMR spectroscopy. The MCM-48, which is a cubic member of the M41S family with a three dimensional pore system, was studied by means of a combination of X-ray powder diffraction and HREM technique. 210 refs., 76 figs., 9 tabs.

  4. Electrochemical characterization of FeMnO3 microspheres as potential material for energy storage applications

    Science.gov (United States)

    Saravanakumar, B.; Ramachandran, S. P.; Ravi, G.; Ganesh, V.; Guduru, Ramesh K.; Yuvakkumar, R.

    2018-01-01

    In this study, uniform iron manganese trioxide (FeMnO3) microspheres were characterized as electrode for supercapacitor applications. The microspheres were synthesized by hydrothermal method in the presence of different molar ratios of sucrose. X-ray diffraction pattern confirmed that the obtained microsphere has body-centered lattice structure of space group 1213(199). The Raman peak observed at 640 cm-1 might be attributed to the stretching mode of vibration of Mn-O bonds perpendicular to the direction of MnO6 octahedral double chains. The photoluminescence peak at the 536 nm corresponded to Fe2+ ions in FeMnO3 lattice point of body-centered cubic structure. The characteristic strong infrared (IR) bands observed at 669 cm-1 corresponded to Fe-O stretching. The electrochemical characterization of the obtained FeMnO3 products could be understood by carrying out cyclic voltammeter, electroimpedance spectra, and galvanostatic charging and discharge studies in a three-cell setup that demonstrates the exceptional specific capacitance of 773.5 F g-1 at a scan rate of 10 mV s-1 and 763.4 F g-1 at a current density of 1 A g-1.

  5. Synthesis, characterization and in vitro biocompatibility assessment of a novel tripeptide hydrogelator, as a promising scaffold for tissue engineering applications.

    Science.gov (United States)

    Pospišil, Tihomir; Ferhatović Hamzić, Lejla; Brkić Ahmed, Lada; Lovrić, Marija; Gajović, Srećko; Frkanec, Leo

    2016-10-20

    We have synthesized and characterized a self-assembling tripeptide hydrogelator Ac-l-Phe-l-Phe-l-Ala-NH2. A series of experiments showed that the hydrogel material could serve as a stabile and biocompatible physical support as it improves the survival of HEK293T cells in vitro, thus being a promising biomaterial for use in tissue engineering applications.

  6. Synthesis, Characterization, and Catalytic Applications of Transition Metal Oxide/Carbonate Nanomaterials

    Science.gov (United States)

    Jin, Lei

    2011-12-01

    This thesis contains two parts: 1) Studies of novel synthesis methods and characterization of advanced functional manganese oxide octahedral molecular sieves (OMS) and their applications in Li/Air batteries, solvent free toluene oxidations, and ethane oxydehydrogenation (ODH) in the presence of CO2, recycling the green house gas. 2) Development of unique Ln2O2CO3 (Ln = rare earth) layered materials and ZnO/La2O2CO3 composites as clean energy biofuel catalysts. These parts are separated into five different focused topics included in this thesis. The first topic presents studies of catalytic activities of a single step synthesized gamma-MnO2 octahedral molecular sieve nano fiber in solvent free atmospheric oxidation of toluene with molecular oxygen. Solvent free atmospheric oxidation of toluene is a notoriously difficult liquid phase oxidation process due to the challenge of oxidizing sp³ hybridized carbon in inactive hydrocarbons. The synthesized gamma-MnO2 showed excellent catalytic activity and good selectivity under the mild atmospheric reflux system. Under optimized conditions, a 47.8% conversion of toluene, along with 57% selectivity of benzoic acid and 15% of benzaldehyde were obtained. The effects of reaction time, amount of catalyst and initiator, and the reusability of the catalyst were investigated. The second topic involves developing titanium containing gamma-MnO 2 (TM) hollow spheres as electrocatalysts in Li/Air Batteries. Li/air batteries have recently attracted interest because they have the largest theoretical specific energy (11,972 Wh.kg-1) among all practical electrochemical couples. In this study, unique hollow aspheric materials were prepared for the first time using a one-step synthesis method and fully characterized by various techniques. These prepared materials were found to have excellent electrocatalytic activation as cathode materials in lithium-air batteries with a very high specific capacity (up to 2.3 A.h/g of carbon). The third

  7. Optimized Characterization of Thermoelectric Generators for Automotive Application

    Science.gov (United States)

    Tatarinov, Dimitri; Wallig, Daniel; Bastian, Georg

    2012-06-01

    New developments in the field of thermoelectric materials bring the prospect of consumer devices for recovery of some of the waste heat from internal combustion engines closer to reality. Efficiency improvements are expected due to the development of high-temperature thermoelectric generators (TEG). In contrast to already established radioisotope thermoelectric generators, the temperature difference in automotive systems is not constant, and this imposes a set of specific requirements on the TEG system components. In particular, the behavior of the TEGs and interface materials used to link the heat flow from the heat source through the TEG to the heat sink must be examined. Due to the usage patterns of automobiles, the TEG will be subject to cyclic thermal loads, which leads to module degradation. Additionally, the automotive TEG will be exposed to an inhomogeneous temperature distribution, leading to inhomogeneous mechanical loads and reduced system efficiency. Therefore, a characterization rig is required to allow determination of the electrical, thermal, and mechanical properties of such high-temperature TEG systems. This paper describes a measurement setup using controlled adjustment of cold-side and warm-side temperatures as well as controlled feed-in of electrical power for evaluation of TEGs for application in vehicles with combustion engines. The temperature profile in the setup can be varied to simulate any vehicle usage pattern, such as the European standard driving cycle, allowing the power yield of the TEGs to be evaluated for the chosen cycle. The spatially resolved temperature distribution of a TEG system can be examined by thermal imaging. Hotspots or cracks on thermocouples of the TEGs and the thermal resistance of thermal interface materials can also be examined using this technology. The construction of the setup is briefly explained, followed by detailed discussion of the experimental results.

  8. Characterizing U.S. Heat Demand for Potential Application of Geothermal Direct Use: Preprint

    Energy Technology Data Exchange (ETDEWEB)

    McCabe, Kevin; Gleason, Michael; Reber, Tim; Young, Katherine R.

    2016-10-01

    In this paper, we assess the U.S. demand for low-temperature thermal energy at the county resolution for four major end-use sectors: residential buildings, commercial buildings, manufacturing facilities, and agricultural facilities. Existing, publicly available data on the U.S. thermal demand market are characterized by coarse spatial resolution, with assessments typically at the state-level or larger. For many uses, these data are sufficient; however, our research was motivated by an interest in assessing the potential demand for direct use (DU) of low-temperature (30 degrees to 150 degrees C) geothermal heat. The availability and quality of geothermal resources for DU applications are highly spatially heterogeneous; therefore, to assess the potential market for these resources, it is necessary to understand the spatial variation in demand for low-temperature resources at a local resolution. This paper presents the datasets and methods we used to develop county-level estimates of the thermal demand for the residential, commercial, manufacturing, and agricultural sectors. Although this analysis was motivated by an interest in geothermal energy deployment, the results are likely to have broader applications throughout the energy industry. The county-resolution thermal demand data developed in this study for four major U.S. sectors may have far-reaching implications for building technologies, industrial processes, and various distributed renewable energy thermal resources (e.g. biomass, solar).

  9. Magnetic characterization of the nickel layer protecting the copper wires in harsh applications

    Directory of Open Access Journals (Sweden)

    Roger Daniel

    2017-06-01

    Full Text Available High Temperature (HT° motor coils open new perspectives for extending the applications of electrical motors or generators to very harsh environments or for designing very high power density machines working with high internal temperature gradients. Over a temperature of 300°C, the classic enameled wire cannot work permanently, the turn-to-turn insulation must be inorganic and made with high temperature textiles or vitro-ceramic compounds. For both cases, a diffusion barrier must protect the copper wire against oxidation. The usual solution consists of adding a nickel layer that yields an excellent chemical protection. Unfortunately, the nickel has ferromagnetic properties that change a lot the skin effect in the HT wire at high frequencies. For many applications such as aeronautics, electrical machines are always associated with PWM inverters for their control. The windings must resist to high voltage short spikes caused by the fast fronted pulses imposed by the feeding inverter. The nickel protection layer of the HT° inorganic wire has a large influence on the high frequency behavior of coils and, consequently, on the magnitude of the voltage spikes. A good knowledge of the non-linear magnetic characteristics of this nickel layer is helpful for designing reliable HT inorganic coils. The paper presents a method able to characterize non-linear electromagnetic properties of this nickel layer up to 500°C.

  10. Characterizing U.S. Heat Demand Market for Potential Application of Geothermal Direct Use

    Energy Technology Data Exchange (ETDEWEB)

    McCabe, Kevin; Gleason, Michael; Reber, Tim; Young, Katherine R.

    2017-05-01

    In this paper, we assess the U.S. demand for low-temperature thermal energy at the county resolution for four major end-use sectors: residential buildings, commercial buildings, manufacturing facilities, and agricultural facilities. Existing, publicly available data on the U.S. thermal demand market are characterized by coarse spatial resolution, with assessments typically at the state-level or larger. For many uses, these data are sufficient; however, our research was motivated by an interest in assessing the potential demand for direct use (DU) of low-temperature (30 degrees to 150 degrees C) geothermal heat. The availability and quality of geothermal resources for DU applications are highly spatially heterogeneous; therefore, to assess the potential market for these resources, it is necessary to understand the spatial variation in demand for low-temperature resources at a local resolution. This paper presents the datasets and methods we used to develop county-level estimates of the thermal demand for the residential, commercial, manufacturing, and agricultural sectors. Although this analysis was motivated by an interest in geothermal energy deployment, the results are likely to have broader applications throughout the energy industry. The county-resolution thermal demand data developed in this study for four major U.S. sectors may have far-reaching implications for building technologies, industrial processes, and various distributed renewable energy thermal resources (e.g. biomass, solar).

  11. Characterization of nanomaterials

    International Nuclear Information System (INIS)

    Montone, Amelia; Aurora, Annalisa; Di Girolamo, Giovanni

    2015-01-01

    This paper provides an overview of the main techniques used for the characterization of nanomaterials. The knowledge of some basic characteristics, inherent morphology, microstructure, the distribution phase and chemical composition, it is essential to evaluate the functional properties of nanomaterials and make predictions about their behavior in operation. For the characterization of nanomaterials can be used in both imaging techniques both analytic techniques. Among the first found wide application optical microscopy, scanning electron microscopy (SEM) and transmission electron microscopy (TEM). Among the latter some types of spectroscopy and X-ray diffraction (XRD). For each type of material to characterize the choice of the most appropriate technique it is based on the type of details that you want to obtain, and on their scale. In this paper are discussed in detail some examples and the main methods used for the characterization of nanomaterials. [it

  12. Polypyrrole-coated samarium oxide nanobelts: fabrication, characterization, and application in supercapacitors

    Science.gov (United States)

    Liu, Peng; Wang, Yunjiao; Wang, Xue; Yang, Chao; Yi, Yanfeng

    2012-11-01

    Polypyrrole-coated samarium oxide nanobelts were synthesized by the in situ chemical oxidative surface polymerization technique based on the self-assembly of pyrrole on the surface of the amine-functionalized Sm2O3 nanobelts. The morphologies of the polypyrrole/samarium oxide (PPy/Sm2O3) nanocomposites were characterized using transmission electron microscope. The UV-vis absorbance of these samples was also investigated, and the remarkable enhancement was clearly observed. The electrochemical behaviors of the PPy/Sm2O3 composites were investigated by cyclic voltammetry, electrochemical impedance spectroscopy, and galvanostatic charge-discharge. The results indicated that the PPy/Sm2O3 composite electrode was fully reversible and achieved a very fast Faradaic reaction. After being corrected into the weight percentage of the PPy/Sm2O3 composite at a current density of 20 mA cm-2 in a 1.0 M NaNO3 electrolyte solution, a maximum discharge capacity of 771 F g-1 was achieved in a half-cell setup configuration for the PPy/Sm2O3 composites electrode with the potential application to electrode materials for electrochemical capacitors.

  13. Dynamic focusing of phased arrays for nondestructive testing: characterization and application

    International Nuclear Information System (INIS)

    Lamarre, A.; Mainguy, F.

    1999-01-01

    Recent developments in Phased Array hardware developed by R/D TECH for nondestructive testing now allow dynamic focusing on reception. This new option, borrowed from medical technology, enables a programmable, real-time array response on reception by modifying the delay line, the gain, and the activation of each element as a function of time. This technology is presented as a new powerful tool, which can extend the depth-of-field, reduce the beam spread and increase the overall signal-to-noise ratio. Implementation of dynamic focusing in Phased Array systems will present many advantages such as an increase of the Pulse Rate Frequency (PRF). The technology implies a lot of significant possibilities, but also an extensive beam characterization. Some results are presented to quantify the advantages and drawbacks of the technique in comparison with standard phased array zone focusing and conventional UT. Results are clearly demonstrating the effect of dynamic focusing on the depth-of-field, the beam spread, the signal-to-noise ratio, and the acquisition rate, both with linear and annular arrays. Therefore this technique is suitable for applications where long soundpaths and small beam divergence are required as boresonic, billet, and blade root inspections. (author)

  14. OpenMP Performance on the Columbia Supercomputer

    Science.gov (United States)

    Haoqiang, Jin; Hood, Robert

    2005-01-01

    This presentation discusses Columbia World Class Supercomputer which is one of the world's fastest supercomputers providing 61 TFLOPs (10/20/04). Conceived, designed, built, and deployed in just 120 days. A 20-node supercomputer built on proven 512-processor nodes. The largest SGI system in the world with over 10,000 Intel Itanium 2 processors and provides the largest node size incorporating commodity parts (512) and the largest shared-memory environment (2048) with 88% efficiency tops the scalar systems on the Top500 list.

  15. Biobased functional polyesters for coating applications: Synthesis, characterization and application

    NARCIS (Netherlands)

    Noordover, B.A.J.; Duchateau, R.; Koning, C.E.; Benthem, van R.A.T.M.; Ming, W.; Haveren, van J.; Es, van D.S.

    2007-01-01

    Thermosetting coating systems contain polyesters as binders. A crucial property of these polymers is their functionality. During coating application, the polyesters are cross-linked in situ, which means that each polymer chain needs a sufficient no. of reactive end-groups. Renewable monomers are

  16. Innovative application of AC-voltammetry in the characterization of oxides nanolayers formed on metals, under the effect of AC-perturbations

    Energy Technology Data Exchange (ETDEWEB)

    Bueno, V.; Lazzari, L.; Ormellesse, M. [Politecnico di Milano, Milan (Italy). Dept. of Chemistry, Materials and Chemical Engineering; Spinelli, P. [Politecnico di Torino, Torino (Italy). Dept. of Materials Science and Chemical Engineering

    2008-07-01

    Stray AC-currents have been reported to cause many cases of unwanted corrosion on metallic structures. This study characterized the formation and stability of the surface oxide film formed on mild steel under the effect of AC voltage in a very basic environment. The response of the system to DC signals was examined, along with its reversibility to AC perturbations. SEM analysis was used to complement AC-Voltammetry. Reaction mechanisms responsible for the AC-corrosion were formulated. AC-Voltammetry involves the application of a controlled sinusoidal voltage onto a solid working electrode while it is being swept in a DC-voltage range, with the faradaic or capacitative components of the resulting AC-current being recorded. The innovative aspect is the application of AC-V to characterize its nano-surface while it is being affected by AC-signals. It was concluded that the AC-V can be useful for the study of redox processes occurring at the surface of a reactive electrode and for the application of a considerable AC perturbation to the electrode in a potentiostatically controlled way. According to the electrochemistry of the double layer, there are 3 main reactions in the NaOH 1M media that are not reversible to DC nor to AC perturbations in the range of cathodic protection of mild steel. When designing metallic systems susceptible to stray currents, the AC-V could quantify the final faradaic, resistive and capacitative responses. 6 refs., 1 fig.

  17. Biopolymeric receptor for peptide recognition by molecular imprinting approach—Synthesis, characterization and application

    International Nuclear Information System (INIS)

    Singh, Lav Kumar; Singh, Monika; Singh, Meenakshi

    2014-01-01

    The present work is focused on the development of a biocompatible zwitterionic hydrogel for various applications in analytical chemistry. Biopolymer chitosan was derivatized to obtain a series of zwitterionic hydrogel samples. Free amino groups hanging on the biopolymeric chain were reacted with γ-butyrolactone to quaternize the N-centers of polymeric chain. N,N-methylene-bis-acrylamide acts as a crosslinker via Michael-type addition in the subsequent step and facilitated gelation of betainized chitosan. These biopolymeric hydrogel samples were fully characterized by FTIR, 1 H NMR, 13 C NMR spectra, SEM and XRD. Hydrogels were further characterized for their swelling behavior at varying parameters. The extent of swelling was perceived to be dictated by solvent composition such as pH, ionic strength and temperature. This valuable polymeric format is herein chosen to design an artificial receptor for dipeptide ‘carnosine’, which has adequate societal significance to be analytically determined, by molecular imprinting. Electrostatic interactions along with complementary H-bonding and other hydrophobic interactions inducing additional synergetic effect between the template (carnosine) and the imprinted polymer led to the formation of imprinted sites. The MIP was able to selectively and specifically take up carnosine from aqueous solution quantitatively. Thus prepared MIPs were characterized by FTIR spectroscopy, SEM providing evidence for the quality and quantity of imprinted gels. The binding studies showed that the MIP illustrated good recognition for carnosine as compared to non-imprinted polymers (NIPs). Detection limit was estimated as 3.3 μg mL −1 . Meanwhile, selectivity experiments demonstrated that imprinted gel had a high affinity to carnosine in the presence of close structural analogues (interferrants). - Highlights: • Development of a biocompatible zwitterionic hydrogel • A series of chitosan-derived zwitterionic hydrogel samples • Polymeric

  18. Characterization of a dielectric phantom for high-field magnetic resonance imaging applications

    Energy Technology Data Exchange (ETDEWEB)

    Duan, Qi, E-mail: Qi.Duan@nih.gov; Duyn, Jeff H.; Gudino, Natalia; Zwart, Jacco A. de; Gelderen, Peter van [Advanced MRI Section, Laboratory of Functional and Molecular Imaging, National Institute of Neurological Disorders and Stroke, National Institutes of Health, Bethesda, Maryland 20892 (United States); Sodickson, Daniel K.; Brown, Ryan [The Bernard and Irene Schwartz Center for Biomedical Imaging, Department of Radiology, New York University School of Medicine, New York, New York 10016 (United States)

    2014-10-15

    Purpose: In this work, a generic recipe for an inexpensive and nontoxic phantom was developed within a range of biologically relevant dielectric properties from 150 MHz to 4.5 GHz. Methods: The recipe includes deionized water as the solvent, NaCl to primarily control conductivity, sucrose to primarily control permittivity, agar–agar to gel the solution and reduce heat diffusivity, and benzoic acid to preserve the gel. Two hundred and seventeen samples were prepared to cover the feasible range of NaCl and sucrose concentrations. Their dielectric properties were measured using a commercial dielectric probe and were fitted to a 3D polynomial to generate a recipe describing the properties as a function of NaCl concentration, sucrose concentration, and frequency. Results: Results indicated that the intuitive linear and independent relationships between NaCl and conductivity and between sucrose and permittivity are not valid. A generic polynomial recipe was developed to characterize the complex relationship between the solutes and the resulting dielectric values and has been made publicly available as a web application. In representative mixtures developed to mimic brain and muscle tissue, less than 2% difference was observed between the predicted and measured conductivity and permittivity values. Conclusions: It is expected that the recipe will be useful for generating dielectric phantoms for general magnetic resonance imaging (MRI) coil development at high magnetic field strength, including coil safety evaluation as well as pulse sequence evaluation (including B{sub 1}{sup +} mapping, B{sub 1}{sup +} shimming, and selective excitation pulse design), and other non-MRI applications which require biologically equivalent dielectric properties.

  19. SU-F-BRA-09: New Efficient Method for Xoft Axxent Electronic Brachytherapy Source Calibration by Pre-Characterizing Surface Applicators

    Energy Technology Data Exchange (ETDEWEB)

    Pai, S [iCAD Inc., Los Gatos, CA (United States)

    2015-06-15

    Purpose: The objective is to improve the efficiency and efficacy of Xoft™ Axxent™ electronic brachytherapy (EBT) calibration of the source & surface applicator using AAPM TG-61 formalism. Methods: Current method of Xoft EBT source calibration involves determination of absolute dose rate of the source in each of the four conical surface applicators using in-air chamber measurements & TG61 formalism. We propose a simplified TG-61 calibration methodology involving initial characterization of surface cone applicators. This is accomplished by calibrating dose rates for all 4 surface applicator sets (for 10 sources) which establishes the “applicator output ratios” with respect to the selected reference applicator (20 mm applicator). After the initial time, Xoft™ Axxent™ source TG61 Calibration is carried out only in the reference applicator. Using the established applicator output ratios, dose rates for other applicators will be calculated. Results: 200 sources & 8 surface applicator sets were calibrated cumulatively using a Standard Imaging A20 ion-chamber in accordance with manufacturer-recommended protocols. Dose rates of 10, 20, 35 & 50mm applicators were normalized to the reference (20mm) applicator. The data in Figure 1 indicates that the normalized dose rate variation for each applicator for all 200 sources is better than ±3%. The average output ratios are 1.11, 1.02 and 0.49 for the 10 mm,35 mm and 50 mm applicators, respectively, which are in good agreement with the manufacturer’s published output ratios of 1.13, 1.02 and 0.49. Conclusion: Our measurements successfully demonstrate the accuracy of a new calibration method using a single surface applicator for Xoft EBT sources and deriving the dose rates of other applicators. The accuracy of the calibration is improved as this method minimizes the source position variation inside the applicator during individual source calibrations. The new method significantly reduces the calibration time to less

  20. Materials and corrosion characterization using the confocal resonator

    Energy Technology Data Exchange (ETDEWEB)

    Tigges, C.P.; Sorensen, N.R.; Hietala, V.M.; Plut, T.A. [and others

    1997-05-01

    Improved characterization and process control is important to many Sandia and DOE programs related to manufacturing. Many processes/structures are currently under-characterized including thin film growth, corrosion and semiconductor structures, such as implant profiles. A sensitive tool is required that is able to provide lateral and vertical imaging of the electromagnetic properties of a sample. The confocal resonator is able to characterize the surface and near-surface impedance of materials. This device may be applied to a broad range of applications including in situ evaluation of thin film processes, physical defect detection/characterization, the characterization of semiconductor devices and corrosion studies. In all of these cases, the technology should work as a real-time process diagnostic or as a feedback mechanism regarding the quality of a manufacturing process. This report summarizes the development and exploration of several diagnostic applications.

  1. Hexadimethrine-montmorillonite nanocomposite: Characterization and application as a pesticide adsorbent

    International Nuclear Information System (INIS)

    Gámiz, B.; Hermosín, M.C.; Cornejo, J.; Celis, R.

    2015-01-01

    Graphical abstract: - Highlights: • Characterization of hexadimethrine-montmorillonite nanocomposite was appraised. • Comparative studies with traditional HDTMA-montmorillonite were performed. • We investigated the pesticide adsorption mechanisms displayed by the nanocomposites. • Hexadimethrine-nanocomposite showed selective affinity for anionic pesticides. - Abstract: The goal of this work was to prepare and characterize a novel functional material by the modification of SAz-1 montmorillonite with the cationic polymer hexadimethrine (SA-HEXAD), and to explore the potential use of this nanocomposite as a pesticide adsorbent. Comparative preparation and characterization with the well-known hexadecyltrimethylammonium-modified SAz-1 montmorillonite (SA-HDTMA) was also assessed. The characterization was performed by elemental analysis, X-ray diffraction (XRD), Fourier-transform infrared spectroscopy (FTIR), physisorption of N 2 , scanning electron microscopy (SEM) and Z potential measurements. The characterization and adsorption experiments showed that the extent of pesticide adsorption was markedly subjected to the structure and features of the surface of each organo-clay and also to the nature of the considered pesticide. SA-HEXAD displayed a high affinity for anionic pesticides which, presumably, were adsorbed by electrostatic attraction on positively-charged ammonium groups of the polymer not directly interacting with the clay. In contrast, SA-HDTMA displayed great adsorption of both uncharged and anionic pesticides with predominance of hydrophobic interactions. This work provided information about the surface properties of a new organic–inorganic nanohybrid material, SA-HEXAD, and its potential as an adsorbent for the removal of anionic organic pollutants from aqueous solutions

  2. Pectin methylesterase of Datura species, purification, and characterization from Datura stramonium and its application.

    Science.gov (United States)

    Dixit, Sameer; Upadhyay, Santosh Kumar; Singh, Harpal; Pandey, Bindu; Chandrashekar, Krishnappa; Verma, Praveen Chandra

    2013-10-01

    Pectin methylesterases (PME; EC 3.1.1.11) involved in de-esterification of pectin and have applicability in food, textiles, wines, pulp, and paper industries. In the present study, we compared PME activity of different parts of 3 Datura species and found that fruit coat showed maximum PME activity followed by leaf and seed. PME from leaves of D. stramonium (DsPME) was purified and characterized. DsPME showed optimum activity at 60 °C and pH 9 in the presence of 0.3 M NaCl. DsPME was stable at 70 °C and retained more than 40% activity after 60 min of incubation. However, enzyme activity completely abolished at 80 after 5 min of incubation. It follows Michaelis-Menten enzyme kinetics. Km and Vmax with citrus pectin were 0.008 mg/ml and 16.96 µmol/min, respectively. DsPME in combination with polygalactourenase (PGA) increased the clarity of orange, apple, pomegranate and pineapple juices by 2.9, 2.6, 2.3, and 3.6 fold, respectively in comparison to PGA alone. Due to very high de-esterification activity, easy denaturation and significant efficacy in incrementing clarification of fruit juice makes DsPME useful for industrial application.

  3. Shape and size controlled synthesis of Au nanorods: H2S gas-sensing characterizations and antibacterial application

    International Nuclear Information System (INIS)

    Lanh, Le Thi; Hoa, Tran Thai; Cuong, Nguyen Duc; Khieu, Dinh Quang; Quang, Duong Tuan; Van Duy, Nguyen; Hoa, Nguyen Duc; Van Hieu, Nguyen

    2015-01-01

    Highlights: • We have demonstrated a facile method to prepare colloid Au nanorods. • The size and shape of Au nanorods can be controlled via seed-mediated growth method. • The H 2 S gas-sensing properties have been investigated. • The antibacterial application has been conducted. - Abstract: Controlling their size and shape is one of the important issues in the fundamental study and application of colloidal metal nanoparticles. In the current study, different sizes and shapes of Au nanorods were fabricated using a seed-mediated growth method. Material characterization by X-ray diffraction and transmission electron microscopy revealed that the obtained products were made of single-crystal Au nanorods with an average diameter and length of 10 nm and 40 nm, respectively. The Au nanorod-based sensor exhibited significantly high sensitivity and fast response/recovery time to low concentrations (2.5–10 ppm) of H 2 S at temperatures ranging from 300 °C to 400 °C. Additionally, they exhibited antibacterial effect at low concentration. These results suggested that the fabricated Au nanorods have excellent potential for practical application in air pollution monitoring and biomedicine

  4. Spin and Optical Characterization of Defects in Group IV Semiconductors for Quantum Memory Applications

    Science.gov (United States)

    Rose, Brendon Charles

    This thesis is focused on the characterization of highly coherent defects in both silicon and diamond, particularly in the context of quantum memory applications. The results are organized into three parts based on the spin system: phosphorus donor electron spins in silicon, negatively charged nitrogen vacancy color centers in diamond (NV-), and neutrally charged silicon vacancy color centers in diamond (SiV0). The first part on phosphorus donor electron spins presents the first realization of strong coupling with spins in silicon. To achieve this, the silicon crystal was made highly pure and highly isotopically enriched so that the ensemble dephasing time, T2*, was long (10 micros). Additionally, the use of a 3D resonator aided in realizing uniform coupling, allowing for high fidelity spin ensemble manipulation. These two properties have eluded past implementations of strongly coupled spin ensembles and have been the limiting factor in storing and retrieving quantum information. Second, we characterize the spin properties of the NV- color center in diamond in a large magnetic field. We observe that the electron spin echo envelope modulation originating from the central 14N nuclear spin is much stronger at large fields and that the optically induced spin polarization exhibits a strong orientation dependence that cannot be explained by the existing model for the NV- optical cycle, we develop a modification of the existing model that reproduces the data in a large magnetic field. In the third part we perform characterization and stabilization of a new color center in diamond, SiV0, and find that it has attractive, highly sought-after properties for use as a quantum memory in a quantum repeater scheme. We demonstrate a new approach to the rational design of new color centers by engineering the Fermi level of the host material. The spin properties were characterized in electron spin resonance, revealing long spin relaxation and spin coherence times at cryogenic

  5. The fusion code XGC: Enabling kinetic study of multi-scale edge turbulent transport in ITER

    Energy Technology Data Exchange (ETDEWEB)

    D' Azevedo, Eduardo [Oak Ridge National Lab. (ORNL), Oak Ridge, TN (United States); Abbott, Stephen [Oak Ridge National Lab. (ORNL), Oak Ridge, TN (United States); Koskela, Tuomas [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Worley, Patrick [Oak Ridge National Lab. (ORNL), Oak Ridge, TN (United States); Ku, Seung-Hoe [Princeton Plasma Physics Lab. (PPPL), Princeton, NJ (United States); Ethier, Stephane [Princeton Plasma Physics Lab. (PPPL), Princeton, NJ (United States); Yoon, Eisung [Rensselaer Polytechnic Inst., Troy, NY (United States); Shephard, Mark [Rensselaer Polytechnic Inst., Troy, NY (United States); Hager, Robert [Princeton Plasma Physics Lab. (PPPL), Princeton, NJ (United States); Lang, Jianying [Princeton Plasma Physics Lab. (PPPL), Princeton, NJ (United States); Intel Corporation, Santa Clara, CA (United States); Choi, Jong [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Podhorszki, Norbert [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Klasky, Scott [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Parashar, Manish [Rutgers Univ., Piscataway, NJ (United States); Chang, Choong-Seock [Princeton Plasma Physics Lab. (PPPL), Princeton, NJ (United States)

    2017-01-01

    The XGC fusion gyrokinetic code combines state-of-the-art, portable computational and algorithmic technologies to enable complicated multiscale simulations of turbulence and transport dynamics in ITER edge plasma on the largest US open-science computer, the CRAY XK7 Titan, at its maximal heterogeneous capability, which have not been possible before due to a factor of over 10 shortage in the time-to-solution for less than 5 days of wall-clock time for one physics case. Frontier techniques such as nested OpenMP parallelism, adaptive parallel I/O, staging I/O and data reduction using dynamic and asynchronous applications interactions, dynamic repartitioning.

  6. Performance Portability Strategies for Grid C++ Expression Templates

    Directory of Open Access Journals (Sweden)

    Boyle Peter A.

    2018-01-01

    Full Text Available One of the key requirements for the Lattice QCD Application Development as part of the US Exascale Computing Project is performance portability across multiple architectures. Using the Grid C++ expression template as a starting point, we report on the progress made with regards to the Grid GPU offloading strategies. We present both the successes and issues encountered in using CUDA, OpenACC and Just-In-Time compilation. Experimentation and performance on GPUs with a SU(3×SU(3 streaming test will be reported. We will also report on the challenges of using current OpenMP 4.x for GPU offloading in the same code.

  7. Performance Portability Strategies for Grid C++ Expression Templates

    Science.gov (United States)

    Boyle, Peter A.; Clark, M. A.; DeTar, Carleton; Lin, Meifeng; Rana, Verinder; Vaquero Avilés-Casco, Alejandro

    2018-03-01

    One of the key requirements for the Lattice QCD Application Development as part of the US Exascale Computing Project is performance portability across multiple architectures. Using the Grid C++ expression template as a starting point, we report on the progress made with regards to the Grid GPU offloading strategies. We present both the successes and issues encountered in using CUDA, OpenACC and Just-In-Time compilation. Experimentation and performance on GPUs with a SU(3)×SU(3) streaming test will be reported. We will also report on the challenges of using current OpenMP 4.x for GPU offloading in the same code.

  8. Multicore and Accelerator Development for a Leadership-Class Stellar Astrophysics Code

    Energy Technology Data Exchange (ETDEWEB)

    Messer, Bronson [ORNL; Harris, James A [ORNL; Parete-Koon, Suzanne T [ORNL; Chertkow, Merek A [ORNL

    2013-01-01

    We describe recent development work on the core-collapse supernova code CHIMERA. CHIMERA has consumed more than 100 million cpu-hours on Oak Ridge Leadership Computing Facility (OLCF) platforms in the past 3 years, ranking it among the most important applications at the OLCF. Most of the work described has been focused on exploiting the multicore nature of the current platform (Jaguar) via, e.g., multithreading using OpenMP. In addition, we have begun a major effort to marshal the computational power of GPUs with CHIMERA. The impending upgrade of Jaguar to Titan a 20+ PF machine with an NVIDIA GPU on many nodes makes this work essential.

  9. Characterizing canopy biochemistry from imaging spectroscopy and its application to ecosystem studies

    Science.gov (United States)

    Kokaly, R.F.; Asner, Gregory P.; Ollinger, S.V.; Martin, M.E.; Wessman, C.A.

    2009-01-01

    For two decades, remotely sensed data from imaging spectrometers have been used to estimate non-pigment biochemical constituents of vegetation, including water, nitrogen, cellulose, and lignin. This interest has been motivated by the important role that these substances play in physiological processes such as photosynthesis, their relationships with ecosystem processes such as litter decomposition and nutrient cycling, and their use in identifying key plant species and functional groups. This paper reviews three areas of research to improve the application of imaging spectrometers to quantify non-pigment biochemical constituents of plants. First, we examine recent empirical and modeling studies that have advanced our understanding of leaf and canopy reflectance spectra in relation to plant biochemistry. Next, we present recent examples of how spectroscopic remote sensing methods are applied to characterize vegetation canopies, communities and ecosystems. Third, we highlight the latest developments in using imaging spectrometer data to quantify net primary production (NPP) over large geographic areas. Finally, we discuss the major challenges in quantifying non-pigment biochemical constituents of plant canopies from remotely sensed spectra.

  10. a Modeling Method of Fluttering Leaves Based on Point Cloud

    Science.gov (United States)

    Tang, J.; Wang, Y.; Zhao, Y.; Hao, W.; Ning, X.; Lv, K.; Shi, Z.; Zhao, M.

    2017-09-01

    Leaves falling gently or fluttering are common phenomenon in nature scenes. The authenticity of leaves falling plays an important part in the dynamic modeling of natural scenes. The leaves falling model has a widely applications in the field of animation and virtual reality. We propose a novel modeling method of fluttering leaves based on point cloud in this paper. According to the shape, the weight of leaves and the wind speed, three basic trajectories of leaves falling are defined, which are the rotation falling, the roll falling and the screw roll falling. At the same time, a parallel algorithm based on OpenMP is implemented to satisfy the needs of real-time in practical applications. Experimental results demonstrate that the proposed method is amenable to the incorporation of a variety of desirable effects.

  11. Characterization of complex networks : Application to robustness analysis

    NARCIS (Netherlands)

    Jamakovic, A.

    2008-01-01

    This thesis focuses on the topological characterization of complex networks. It specifically focuses on those elementary graph measures that are of interest when quantifying topology-related aspects of the robustness of complex networks. This thesis makes the following contributions to the field of

  12. Resistance to abrasion of extrinsic porcelain esthetic characterization techniques.

    Science.gov (United States)

    Chi, Woo J; Browning, William; Looney, Stephen; Mackert, J Rodway; Windhorn, Richard J; Rueggeberg, Frederick

    2017-01-01

    A novel esthetic porcelain characterization technique involves mixing an appropriate amount of ceramic colorants with clear, low-fusing porcelain (LFP), applying the mixture on the external surfaces, and firing the combined components onto the surface of restorations in a porcelain oven. This method may provide better esthetic qualities and toothbrush abrasion resistance compared to the conventional techniques of applying color-corrective porcelain colorants alone, or applying a clear glaze layer over the colorants. However, there is no scientific literature to support this claim. This research evaluated toothbrush abrasion resistance of a novel porcelain esthetic characterization technique by subjecting specimens to various durations of simulated toothbrush abrasion. The results were compared to those obtained using the conventional characterization techniques of colorant application only or colorant followed by placement of a clear over-glaze. Four experimental groups, all of which were a leucite reinforced ceramic of E TC1 (Vita A1) shade, were prepared and fired in a porcelain oven according to the manufacturer's instructions. Group S (stain only) was characterized by application of surface colorants to provide a definitive shade of Vita A3.5. Group GS (glaze over stain) was characterized by application of a layer of glaze over the existing colorant layer as used for Group S. Group SL (stain+LFP) was characterized by application of a mixture of colorants and clear low-fusing add-on porcelain to provide a definitive shade of Vita A3.5. Group C (Control) was used as a control without any surface characterization. The 4 groups were subjected to mechanical toothbrushing using a 1:1 water-to-toothpaste solution for a simulated duration of 32 years of clinical use. The amount of wear was measured at time intervals simulating every 4 years of toothbrushing. These parameters were evaluated longitudinally for all groups as well as compared at similar time points among

  13. Synthesis and characterization of novel dual-responsive nanogels and their application as drug delivery systems

    Science.gov (United States)

    Peng, Jinrong; Qi, Tingting; Liao, Jinfeng; Fan, Min; Luo, Feng; Li, He; Qian, Zhiyong

    2012-03-01

    In this study, a temperature/pH dual-response nanogel based on NIPAm, MAA, and PEGMA was synthesized via emulsion polymerization and characterized by 1H-NMR, FT-IR, TEM and DLS. By introducing a novel initiator, through which PEG-AIBN-PEG was synthesized, it was revealed that the PEG segments from PEG-AIBN-PEG with a dosage of initiator had a significant influence over the macro-state and stability of the nanogels. In order to optimize the feeding prescription for better application as a drug delivery system, the effect of the co-monomer contents on the response to stimuli (temperature and pH value) and cytotoxicity of the nanogels has been studied in detail. The results demonstrated that the responsiveness, reversibility and volume phase transition critical value of the nanogels could be controlled by adjusting the feeding ratio of the co-monomers in the synthesis process. MTT assay results revealed that nanogels with appropriate compositions showed good biocompatibility and relatively low toxicity. Most importantly, by studying the drug loading behavior, it was found that the dimensions of the drug molecules had a considerable influence on the drug loading efficiency and loading capacity of the nanogels, and that the mechanism by which drug molecule sizes influence the drug loading behavior of nanogels needs further investigation. The results indicated that such PNMP nanogels might have potential applications in drug delivery and other medical applications, but that the drug loading mechanism must be further developed.

  14. Characterization of 3D joint space morphology using an electrostatic model (with application to osteoarthritis)

    Science.gov (United States)

    Cao, Qian; Thawait, Gaurav; Gang, Grace J.; Zbijewski, Wojciech; Reigel, Thomas; Brown, Tyler; Corner, Brian; Demehri, Shadpour; Siewerdsen, Jeffrey H.

    2015-02-01

    Joint space morphology can be indicative of the risk, presence, progression, and/or treatment response of disease or trauma. We describe a novel methodology of characterizing joint space morphology in high-resolution 3D images (e.g. cone-beam CT (CBCT)) using a model based on elementary electrostatics that overcomes a variety of basic limitations of existing 2D and 3D methods. The method models each surface of a joint as a conductor at fixed electrostatic potential and characterizes the intra-articular space in terms of the electric field lines resulting from the solution of Gauss’ Law and the Laplace equation. As a test case, the method was applied to discrimination of healthy and osteoarthritic subjects (N = 39) in 3D images of the knee acquired on an extremity CBCT system. The method demonstrated improved diagnostic performance (area under the receiver operating characteristic curve, AUC > 0.98) compared to simpler methods of quantitative measurement and qualitative image-based assessment by three expert musculoskeletal radiologists (AUC = 0.87, p-value = 0.007). The method is applicable to simple (e.g. the knee or elbow) or multi-axial joints (e.g. the wrist or ankle) and may provide a useful means of quantitatively assessing a variety of joint pathologies.

  15. Characterization of 3D joint space morphology using an electrostatic model (with application to osteoarthritis)

    International Nuclear Information System (INIS)

    Cao, Qian; Gang, Grace J; Zbijewski, Wojciech; Reigel, Thomas; Siewerdsen, Jeffrey H; Thawait, Gaurav; Demehri, Shadpour; Brown, Tyler; Corner, Brian

    2015-01-01

    Joint space morphology can be indicative of the risk, presence, progression, and/or treatment response of disease or trauma. We describe a novel methodology of characterizing joint space morphology in high-resolution 3D images (e.g. cone-beam CT (CBCT)) using a model based on elementary electrostatics that overcomes a variety of basic limitations of existing 2D and 3D methods. The method models each surface of a joint as a conductor at fixed electrostatic potential and characterizes the intra-articular space in terms of the electric field lines resulting from the solution of Gauss’ Law and the Laplace equation. As a test case, the method was applied to discrimination of healthy and osteoarthritic subjects (N = 39) in 3D images of the knee acquired on an extremity CBCT system. The method demonstrated improved diagnostic performance (area under the receiver operating characteristic curve, AUC > 0.98) compared to simpler methods of quantitative measurement and qualitative image-based assessment by three expert musculoskeletal radiologists (AUC = 0.87, p-value = 0.007). The method is applicable to simple (e.g. the knee or elbow) or multi-axial joints (e.g. the wrist or ankle) and may provide a useful means of quantitatively assessing a variety of joint pathologies. (paper)

  16. Characterizing Orthostatic Tremor Using a Smartphone Application.

    Science.gov (United States)

    Balachandar, Arjun; Fasano, Alfonso

    2017-01-01

    Orthostatic tremor is one of the few tremor conditions requiring an electromyogram for definitive diagnosis since leg tremor might not be visible to the naked eye. An iOS application (iSeismometer, ObjectGraph LLC, New York) using an Apple iPhone 5 (Cupertino, CA, USA) inserted into the patient's sock detected a tremor with a frequency of 16.4 Hz on both legs. The rapid and straightforward accelerometer-based recordings accomplished in this patient demonstrate the ease with which quantitative analysis of orthostatic tremor can be conducted and, importantly, demonstrates the potential application of this approach in the assessment of any lower limb tremor.

  17. Synthesis and characterization of antimicrobial nanosilver/diatomite nanocomposites and its water treatment application

    Energy Technology Data Exchange (ETDEWEB)

    Xia, Yijie [Institute of Materials Research and Engineering (IMRE), Agency of Science, Technology, and Research - A*STAR, 3 Research Link, 117602 (Singapore); School of Mechanical Engineering, University of Shanghai for Science and Technology, Shanghai 200093 (China); Jiang, Xiaoyu; Zhang, Jing [AGplus Technologies Pte Ltd, 10 Jalan Besar #10-06 Sim Lim Tower, 208787 (Singapore); Lin, Ming [Institute of Materials Research and Engineering (IMRE), Agency of Science, Technology, and Research - A*STAR, 3 Research Link, 117602 (Singapore); Tang, Xiaosheng [AGplus Technologies Pte Ltd, 10 Jalan Besar #10-06 Sim Lim Tower, 208787 (Singapore); Zhang, Jie, E-mail: zhangj@imre.a-star.edu.sg [Institute of Materials Research and Engineering (IMRE), Agency of Science, Technology, and Research - A*STAR, 3 Research Link, 117602 (Singapore); Liu, Hongjun, E-mail: hjliu@henu.edu.cn [Key Laboratory of Natural Medicine and Immuno-Engineering of Henan Province, Henan University, Kaifeng, Henan 475004 (China); AGplus Technologies Pte Ltd, 10 Jalan Besar #10-06 Sim Lim Tower, 208787 (Singapore)

    2017-02-28

    Highlights: • Nanosilver diatomite has been developed with a facile, easy and effective in–situ reduction method. • The nanosilver diatomite demonstrated great antibacterial properties to gram positive and gram–negative bacterial. • A small amount of the nanosilver diatomite could kill >99.999% of E. Coli within half an hour time. • Low cost nano–composite antimicrobial material for water purification industry. - Abstract: Nanotechnology for water disinfection application gains increasing attention. Diatomite is one kind of safe natural material, which has been widely used as absorbent, filtration agents, mineral fillers, especially in water treatment industry. Nanosilver/diatomite nanocomposites were developed in this publication with a facile, effective in-situ reduction method. The as-prepared nanosilver/diatomite nanocomposites demonstrated amazing antibacterial properties to gram-positive and gram-negative bacteria. The corresponding property has been characterized by UV–vis absorbance, Transmission Electron Microscopy (TEM), Energy Dispersive X-ray (EDX) and X-ray Photoelectron Spectroscopy (XPS). Moreover, the detailed bacteria killing experiments further displayed that 0.5 g of the nanosilver diatomite could kill >99.999% of E. Coli within half an hour time. And the silver leaching test demonstrated that the concentrations of silver in the filtered water under varies pH environment were below the limit for silver level of WHO standard. Considering the low price of natural diatomite, it is believed that the nanosilver/diatomite nanocomposites have potential application in water purification industry due to its excellent antimicrobial property.

  18. Synthesis and characterization of antimicrobial nanosilver/diatomite nanocomposites and its water treatment application

    International Nuclear Information System (INIS)

    Xia, Yijie; Jiang, Xiaoyu; Zhang, Jing; Lin, Ming; Tang, Xiaosheng; Zhang, Jie; Liu, Hongjun

    2017-01-01

    Highlights: • Nanosilver diatomite has been developed with a facile, easy and effective in–situ reduction method. • The nanosilver diatomite demonstrated great antibacterial properties to gram positive and gram–negative bacterial. • A small amount of the nanosilver diatomite could kill >99.999% of E. Coli within half an hour time. • Low cost nano–composite antimicrobial material for water purification industry. - Abstract: Nanotechnology for water disinfection application gains increasing attention. Diatomite is one kind of safe natural material, which has been widely used as absorbent, filtration agents, mineral fillers, especially in water treatment industry. Nanosilver/diatomite nanocomposites were developed in this publication with a facile, effective in-situ reduction method. The as-prepared nanosilver/diatomite nanocomposites demonstrated amazing antibacterial properties to gram-positive and gram-negative bacteria. The corresponding property has been characterized by UV–vis absorbance, Transmission Electron Microscopy (TEM), Energy Dispersive X-ray (EDX) and X-ray Photoelectron Spectroscopy (XPS). Moreover, the detailed bacteria killing experiments further displayed that 0.5 g of the nanosilver diatomite could kill >99.999% of E. Coli within half an hour time. And the silver leaching test demonstrated that the concentrations of silver in the filtered water under varies pH environment were below the limit for silver level of WHO standard. Considering the low price of natural diatomite, it is believed that the nanosilver/diatomite nanocomposites have potential application in water purification industry due to its excellent antimicrobial property.

  19. Application of new technologies for characterization of Hanford Site high-level waste

    International Nuclear Information System (INIS)

    Winters, W.I.

    1998-01-01

    To support remediation of Hanford Site high-level radioactive waste tanks, new chemical and physical measurement technologies must be developed and deployed. This is a major task of the Chemistry Analysis Technology Support (CATS) group of the Hanford Corporation. New measurement methods are required for efficient and economical resolution of tank waste safety, waste retrieval, and disposal issues. These development and deployment activities are performed in cooperation with Waste Management Federal Services of Hanford, Inc. This paper provides an overview of current analytical technologies in progress. The high-level waste at the Hanford Site is chemically complex because of the numerous processes used in past nuclear fuel reprocessing there, and a variety of technologies is required for effective characterization. Programmatic and laboratory operational needs drive the selection of new technologies for characterizing Hanford Site high-level waste, and these technologies are developed for deployment in laboratories, hot cells or in the field. New physical methods, such as the propagating reactive systems screening tool (PRSST) to measure the potential for self-propagating reactions in stored wastes, are being implemented. Technology for sampling and measuring gases trapped within the waste matrix is being used to evaluate flammability hazards associated with gas releases from stored wastes. Application of new inductively coupled plasma and laser ablation mass spectrometry systems at the Hanford Site's 222-S Laboratory will be described. A Raman spectroscopy probe mounted in a cone penetrometer to measure oxyanions in wastes or soils will be described. The Hanford Site has used large volumes of organic complexants and acids in processing waste, and capillary zone electrophoresis (CZE) methods have been developed for determining several of the major organic components in complex waste tank matrices. The principles involved, system installation, and results from

  20. Construction characterization and application of Flavivirus infectious clones

    NARCIS (Netherlands)

    Jiang, Xiaohong

    2013-01-01

    The topics in this thesis revolve around a group of plus-strand RNA viruses that belong to the Flavivirus genus, a general introduction of which is presented in Chapter 1. The experimental chapters in this thesis mainly focus on the construction and characterization of flavivirus infectious clones

  1. Characterization and device applications of ZnO films deposited by high power impulse magnetron sputtering (HiPIMS)

    Science.gov (United States)

    Partridge, J. G.; Mayes, E. L. H.; McDougall, N. L.; Bilek, M. M. M.; McCulloch, D. G.

    2013-04-01

    ZnO films have been reactively deposited on sapphire substrates at 300 °C using a high impulse power magnetron sputtering deposition system and characterized structurally, optically and electronically. The unintentionally doped n-type ZnO films exhibit high transparency, moderate carrier concentration (˜5 × 1018 cm-3) and a Hall mobility of 8.0 cm2 V-1 s-1, making them suitable for electronic device applications. Pt/ZnO Schottky diodes formed on the HiPIMS deposited ZnO exhibited rectification ratios up to 104 at ±2 V and sensitivity to UV light.

  2. The Development and Application of Spatiotemporal Metrics for the Characterization of Point Source FFCO2 Emissions and Dispersion

    Science.gov (United States)

    Roten, D.; Hogue, S.; Spell, P.; Marland, E.; Marland, G.

    2017-12-01

    There is an increasing role for high resolution, CO2 emissions inventories across multiple arenas. The breadth of the applicability of high-resolution data is apparent from their use in atmospheric CO2 modeling, their potential for validation of space-based atmospheric CO2 remote-sensing, and the development of climate change policy. This work focuses on increasing our understanding of the uncertainty in these inventories and the implications on their downstream use. The industrial point sources of emissions (power generating stations, cement manufacturing plants, paper mills, etc.) used in the creation of these inventories often have robust emissions characteristics, beyond just their geographic location. Physical parameters of the emission sources such as number of exhaust stacks, stack heights, stack diameters, exhaust temperatures, and exhaust velocities, as well as temporal variability and climatic influences can be important in characterizing emissions. Emissions from large point sources can behave much differently than emissions from areal sources such as automobiles. For many applications geographic location is not an adequate characterization of emissions. This work demonstrates the sensitivities of atmospheric models to the physical parameters of large point sources and provides a methodology for quantifying parameter impacts at multiple locations across the United States. The sensitivities highlight the importance of location and timing and help to highlight potential aspects that can guide efforts to reduce uncertainty in emissions inventories and increase the utility of the models.

  3. The development, characterization, and application of biomimetic nanoscale enzyme immobilization

    Science.gov (United States)

    Haase, Nicholas R.

    The utilization of enzymes is of interest for applications such as biosensors and biofuel cells. Immobilizing enzymes provides a means to develop these applications. Previous immobilization efforts have been accomplished by exposing surfaces on which silica-forming molecules are present to solutions containing an enzyme and a silica precursor. This approach leads to the enzyme being entrapped in a matrix three orders of magnitude larger than the enzyme itself, resulting in low retention of enzyme activity. The research herein introduces a method for the immobilization of enzymes during the layer-by-layer buildup of Si-O and Ti-O coatings which are nanoscale in thickness. This approach is an application of a peptide-induced mineral deposition method developed in the Sandhage and Kroger groups, and it involves the alternating exposure of a surface to solutions containing the peptide protamine and then an aqueous precursor solution of silicon- or titanium-oxide at near-neutral pH. A method has been developed that enables in situ immobilization of enzymes in the protamine/mineral oxide coatings. Depending on the layer and mineral (silica or titania) within which the enzyme is incorporated, the resulting multilayer biocatalytic hybrid materials retain 20 -- 100% of the enzyme activity. Analyses of kinetic properties of the immobilized enzyme, coupled with characterization of physical properties of the mineral-bearing layers (thickness, porosity, pore size distribution), indicates that the catalytic activities of the enzymes immobilized in the different layers are largely determined by substrate diffusion. The enzyme was also found to be substantially stabilized against heat-induced denaturation and largely protected from proteolytic attack. These functional coatings are then developed for use as antimicrobial materials. Glucose oxidase, which catalyzes production of the cytotoxic agent hydrogen peroxide, was immobilized with silver nanoparticles, can release

  4. Materials engineering, characterization, and applications of the organicbased magnet, V[TCNE

    Science.gov (United States)

    Harberts, Megan

    Organic materials have advantageous properties such as low cost and mechanical flexibility that have made them attractive to complement traditional materials used in electronics and have led to commercial success, especially in organic light emitting diodes (OLEDs). Many rapidly advancing technologies incorporate magnetic materials, leading to the potential for creating analogous organic-based magnetic applications. The semiconducting ferrimagnet, vanadium tetracyanoethylene, V[TCNE]x˜2, exhibits room temperature magnetic ordering which makes it an attractive candidate. My research is focused on development of thin films of V[TCNE]x˜2 through advancement in growth, materials engineering, and applications. My thesis is broken up into two sections, the first which provides background and details of V[TCNE]x˜2 growth and characterization. The second section focuses on advances beyond V[TCNE]x˜2 film growth. The ordering of the chapters is for the ease of the reader, but encompasses work that I led and robust collaborations that I have participated in. V[TCNE]x˜2 films are deposited through a chemical vapor deposition process (CVD). My advancements to the growth process have led to higher quality films which have higher magnetic ordering temperatures, more magnetically homogenous samples, and extremely narrow ferromagnetic resonance (FMR) linewidths. Beyond improvements in film growth, materials engineering has created new materials and structures with properties to compliment thin film V[TCNE]x˜2. Though a robust collaboration with chemistry colleagues, modification of the molecule TCNE has led to the creation of new magnetic materials vanadium methyl tricyanoethylene carboxylate, V[MeTCEC]x and vanadium ethyl tricyanoethylene carboxylate, V[ETCEC]x. Additionally, I have lead a project to deposit V[TCNE]x˜2 on periodically patterned substrates leading to the formation of a 1-D array of V[TCNE]x˜2 nanowires. These arrays exhibit in-plane magnetic anisotropy

  5. Characterizing Orthostatic Tremor Using a Smartphone Application

    Directory of Open Access Journals (Sweden)

    Arjun Balachandar

    2017-07-01

    Full Text Available Background: Orthostatic tremor is one of the few tremor conditions requiring an electromyogram for definitive diagnosis since leg tremor might not be visible to the naked eye.Phenomenology Shown: An iOS application (iSeismometer, ObjectGraph LLC, New York using an Apple iPhone 5 (Cupertino, CA, USA inserted into the patient’s sock detected a tremor with a frequency of 16.4 Hz on both legs.Educational Value: The rapid and straightforward accelerometer-based recordings accomplished in this patient demonstrate the ease with which quantitative analysis of orthostatic tremor can be conducted and, importantly, demonstrates the potential application of this approach in the assessment of any lower limb tremor. 

  6. Fabrication, characterization and applications of iron selenide

    Energy Technology Data Exchange (ETDEWEB)

    Hussain, Raja Azadar, E-mail: hussainazadar@yahoo.com [Department of Chemistry, Quaid-i-Azam University, 45320 Islamabad (Pakistan); Badshah, Amin [Department of Chemistry, Quaid-i-Azam University, 45320 Islamabad (Pakistan); Lal, Bhajan [Department of Energy Systems Engineering, Sukkur Institute of Business Administration (Pakistan)

    2016-11-15

    This review article presents fabrication of FeSe by solid state reactions, solution chemistry routes, chemical vapor deposition, spray pyrolysis and chemical vapor transport. Different properties and applications such as crystal structure and phase transition, band structure, spectroscopy, superconductivity, photocatalytic activity, electrochemical sensing, and fuel cell activity of FeSe have been discussed. - Graphical abstract: Iron selenide can be synthesized by solid state reactions, chemical vapor deposition, solution chemistry routes, chemical vapor transport and spray pyrolysis. - Highlights: • Different fabrication methods of iron selenide (FeSe) have been reviewed. • Crystal structure, band structure and spectroscopy of FeSe have been discussed. • Superconducting, catalytic and fuel cell application of FeSe have been presented.

  7. Azo biphenyl polyurethane: Preparation, characterization and application for optical waveguide switch

    Science.gov (United States)

    Jiang, Yan; Da, Zulin; Qiu, Fengxian; Yang, Dongya; Guan, Yijun; Cao, Guorong

    2018-01-01

    Azo waveguide polymers are of particular interest in the design of materials for applications in optical switch. The aim of this contribution was the synthesis and thermo-optic waveguide switch properties of azo biphenyl polyurethanes. A series of monomers and azo biphenyl polyurethanes (Azo BPU1 and Azo BPU2) were synthesized and characterized by FT-IR, UV-Vis spectroscopy and 1H NMR. The physical and mechanical properties of thin polymer films were measured. The refractive index and thermo-optic coefficient (dn/dT) of polymer films were investigated for TE (transversal electric) polarizations by ATR technique. The transmission loss of film was measured using the Charge Coupled Device digital imaging devices. The results showed the Azo BPU2 containing chiral azobenzene chromophore had higher dn/dT and lower transmission loss. Subsequently, a 1 × 2 Y-branch and 2 × 2 Mach-Zehnder optical switches based on the prepared polymers were designed and simulated. The results showed that the power consumption of all switches was less than 1.0 mW. Compared with 1 × 2 Y-branch optical switch, the 2 × 2 Mach-Zehnder optical switches based on the same polymer have the faster response time, which were about only 1.2 and 2.0 ms, respectively.

  8. Polypyrrole-coated samarium oxide nanobelts: fabrication, characterization, and application in supercapacitors

    Energy Technology Data Exchange (ETDEWEB)

    Liu Peng, E-mail: pliu@lzu.edu.cn; Wang Yunjiao; Wang Xue; Yang Chao; Yi Yanfeng [College of Chemistry and Chemical Engineering, Lanzhou University, Key Laboratory of Nonferrous Metal Chemistry and Resources Utilization of Gansu Province and State Key Laboratory of Applied Organic Chemistry (China)

    2012-11-15

    Polypyrrole-coated samarium oxide nanobelts were synthesized by the in situ chemical oxidative surface polymerization technique based on the self-assembly of pyrrole on the surface of the amine-functionalized Sm{sub 2}O{sub 3} nanobelts. The morphologies of the polypyrrole/samarium oxide (PPy/Sm{sub 2}O{sub 3}) nanocomposites were characterized using transmission electron microscope. The UV-vis absorbance of these samples was also investigated, and the remarkable enhancement was clearly observed. The electrochemical behaviors of the PPy/Sm{sub 2}O{sub 3} composites were investigated by cyclic voltammetry, electrochemical impedance spectroscopy, and galvanostatic charge-discharge. The results indicated that the PPy/Sm{sub 2}O{sub 3} composite electrode was fully reversible and achieved a very fast Faradaic reaction. After being corrected into the weight percentage of the PPy/Sm{sub 2}O{sub 3} composite at a current density of 20 mA cm{sup -2} in a 1.0 M NaNO{sub 3} electrolyte solution, a maximum discharge capacity of 771 F g{sup -1} was achieved in a half-cell setup configuration for the PPy/Sm{sub 2}O{sub 3} composites electrode with the potential application to electrode materials for electrochemical capacitors.

  9. A new application of hyperspectral radiometry: the characterization of painted surfaces

    Science.gov (United States)

    Wang, Cong; Salvatici, Teresa; Camaiti, Mara; Del Ventisette, Chiara; Moretti, Sandro

    2016-04-01

    Hyperspectral sensors, working in the Visible-Near Infrared and Short Wave Infrared (VNIR-SWIR) regions, are widely employed for geological applications since they can discriminate many inorganic (e.g. mineral phases) and organic compounds (i.e. vegetations and soils) [1]. Their advantage is to work in the portion of the solar spectrum used for remote sensors. Some examples of application of the hyperspectral sensors to the conservation of cultural heritage are also known. These applications concern the detection of gypsum on historical buildings [2], and the monitoring of organic protective materials on stone surfaces [3]. On the contrary, hyperspectral radiometry has not been employed on painted surfaces. Indeed, the characterization of these surfaces is mainly performed with sophisticated, micro-destractive and time-consuming laboratory analyses (i.e. SEM-EDS, FTIR and, GC-MS spectroscopy) or through portable and non-invasive instruments (mid FTIR, micro Raman, XRF, FORS) which work in different spectral ranges [4,5]. In this work the discrimination of many organic and inorganic components from paintings was investigated through a hyperspectral spectroradiometer ,which works in the 350-2500 nm region. The reflectance spectra were collected by the contact reflectance probe, equipped with an internal light source with fixed geometry of illumination and shot. Several standards samples, selected among the most common materials of paintings, were prepared and analysed in order to collect reference spectra. The standards were prepared with powders of 7 pure pigments, films of 5 varnishes (natural and synthetic), and films of 3 dried binding media. Monochromatic painted surfaces have also been prepared and investigated to verify the identification of different compounds on the surface. The results show that the discrimination of pure products is possible in the VNIR-SWIR region, except for compounds with similar composition (e.g. natural resins such as dammar and

  10. In-Vivo Characterization of Glassy Carbon Micro-Electrode Arrays for Neural Applications and Histological Analysis of the Brain Tissue

    Science.gov (United States)

    Vomero, Maria

    The aim of this work is to fabricate and characterize glassy carbon Microelectrode Arrays (MEAs) for sensing and stimulating neural activity, and conduct histological analysis of the brain tissue after the implant to determine long-term performance. Neural applications often require robust electrical and electrochemical response over a long period of time, and for those applications we propose to replace the commonly used noble metals like platinum, gold and iridium with glassy carbon. We submit that such material has the potential to improve the performances of traditional neural prostheses, thanks to better charge transfer capabilities and higher electrochemical stability. Great interest and attention is given in this work, in particular, to the investigation of tissue response after several weeks of implants in rodents' brain motor cortex and the associated materials degradation. As part of this work, a new set of devices for Electrocorticography (ECoG) has been designed and fabricated to improve durability and quality of the previous generation of devices, designed and manufactured by the same research group in 2014. In-vivo long-term impedance measurements and brain activity recordings were performed to test the functionality of the neural devices. In-vitro electrical characterization of the carbon electrodes, as well as the study of the adhesion mechanisms between glassy carbon and different substrates is also part of the research described in this book.

  11. Parallel protein secondary structure prediction based on neural networks.

    Science.gov (United States)

    Zhong, Wei; Altun, Gulsah; Tian, Xinmin; Harrison, Robert; Tai, Phang C; Pan, Yi

    2004-01-01

    Protein secondary structure prediction has a fundamental influence on today's bioinformatics research. In this work, binary and tertiary classifiers of protein secondary structure prediction are implemented on Denoeux belief neural network (DBNN) architecture. Hydrophobicity matrix, orthogonal matrix, BLOSUM62 and PSSM (position specific scoring matrix) are experimented separately as the encoding schemes for DBNN. The experimental results contribute to the design of new encoding schemes. New binary classifier for Helix versus not Helix ( approximately H) for DBNN produces prediction accuracy of 87% when PSSM is used for the input profile. The performance of DBNN binary classifier is comparable to other best prediction methods. The good test results for binary classifiers open a new approach for protein structure prediction with neural networks. Due to the time consuming task of training the neural networks, Pthread and OpenMP are employed to parallelize DBNN in the hyperthreading enabled Intel architecture. Speedup for 16 Pthreads is 4.9 and speedup for 16 OpenMP threads is 4 in the 4 processors shared memory architecture. Both speedup performance of OpenMP and Pthread is superior to that of other research. With the new parallel training algorithm, thousands of amino acids can be processed in reasonable amount of time. Our research also shows that hyperthreading technology for Intel architecture is efficient for parallel biological algorithms.

  12. An FPGA Testbed for Characterizing and Mapping DOD Applications

    Science.gov (United States)

    2017-12-27

    applications in engineering, artificial intelligence , robotics, etc. As GPUs have a massively parallel architecture with thousands of cores, applications...RC system processing elements must be able to consume/produce data at the highest possible data rates. If there are multiple memory banks , the number...memory banks and the function core for performing the specific application, and the plurality of memory banks coupled to each of the one or more digital

  13. Soil characterization methods for unsaturated low-level waste sites

    International Nuclear Information System (INIS)

    Wierenga, P.J.; Young, M.H.; Hills, R.G.

    1993-01-01

    To support a license application for the disposal of low-level radioactive waste (LLW), applicants must characterize the unsaturated zone and demonstrate that waste will not migrate from the facility boundary. This document provides a strategy for developing this characterization plan. It describes principles of contaminant flow and transport, site characterization and monitoring strategies, and data management. It also discusses methods and practices that are currently used to monitor properties and conditions in the soil profile, how these properties influence water and waste migration, and why they are important to the license application. The methods part of the document is divided into sections on laboratory and field-based properties, then further subdivided into the description of methods for determining 18 physical, flow, and transport properties. Because of the availability of detailed procedures in many texts and journal articles, the reader is often directed for details to the available literature. References are made to experiments performed at the Las Cruces Trench site, New Mexico, that support LLW site characterization activities. A major contribution from the Las Cruces study is the experience gained in handling data sets for site characterization and the subsequent use of these data sets in modeling studies

  14. Polyethyleneimine-modified superparamagnetic Fe3O4 nanoparticles for lipase immobilization: Characterization and application

    International Nuclear Information System (INIS)

    Khoobi, Mehdi; Motevalizadeh, Seyed Farshad; Asadgol, Zahra; Forootanfar, Hamid; Shafiee, Abbas; Faramarzi, Mohammad Ali

    2015-01-01

    Magnetically separable nanospheres consisting of polyethyleneimine (PEI) and succinated PEI grafted on silica coated magnetite (Fe 3 O 4 ) were prepared and characterized using Fourier transform infrared spectroscopy, thermogravimetric analysis, X-ray diffraction, vibrating sample magnetometer, scanning electron microscopy and transmission electron microscopy. The prepared magnetic nanoparticles were then applied for physical adsorption or covalent attachment of Thermomyces lanuginosa lipase (TLL) via glutaraldehyde or hexamethylene diisocyanate. The reusability, storage, pH and thermal stabilities of the immobilized enzymes compared to that of free lipase were examined. The obtained results showed that the immobilized lipase on MNPs@PEI-GLU was the best biocatalyst which retained 80% of its initial activity after 12 cycles of application. The immobilized lipase on the selected support (MNPs@PEI-GLU) was also applied for the synthesis of ethyl valerate. Following 24 h incubation of the immobilized lipase on the selected support in n-hexane and solvent free media, the esterification percentages were 72.9% and 28.9%, respectively. - Graphical abstract: A schematic of the preparation of PEI- and succinated PEI-grafted Fe 3 O 4 MNPs (MNPs@PEI) and the immobilization of lipase by covalent bonding and adsorption. - Highlights: • Functionalized polyethylenimine-grafted magnetic nanoparticles were synthesized. • The prepared supports were fully characterized by various analysis methods. • Lipase was immobilized on the nanostructures by adsorption and covalent attachment. • Immobilized lipase produced ethyl valerate in solvent free medium

  15. Radio Characterization for ISM 2.4 GHz Wireless Sensor Networks for Judo Monitoring Applications

    Directory of Open Access Journals (Sweden)

    Peio Lopez-Iturri

    2014-12-01

    Full Text Available In this work, the characterization of the radio channel for ISM 2.4GHz Wireless Sensor Networks (WSNs for judo applications is presented. The environments where judo activity is held are usually complex indoor scenarios in terms of radiopropagation due to their morphology, the presence of humans and the electromagnetic interference generated by personal portable devices, wireless microphones and other wireless systems used by the media. For the assessment of the impact that the topology and the morphology of these environments have on electromagnetic propagation, an in-house developed 3D ray-launching software has been used in this study. Time domain results as well as estimations of received power level have been obtained for the complete volume of a training venue of a local judo club’s facilities with a contest area with the dimensions specified by the International Judo Federation (IJF for international competitions. The obtained simulation results have been compared with measurements, which have been carried out deploying ZigBee-compliant XBee Pro modules at presented scenario, using approved Judogis (jacket, trousers and belt. The analysis is completed with the inclusion of an in-house human body computational model. Such analysis has allowed the design and development of an in house application devoted to monitor the practice of judo, in order to aid referee activities, training routines and to enhance spectator experience.

  16. A Performance-Prediction Model for PIC Applications on Clusters of Symmetric MultiProcessors: Validation with Hierarchical HPF+OpenMP Implementation

    Directory of Open Access Journals (Sweden)

    Sergio Briguglio

    2003-01-01

    Full Text Available A performance-prediction model is presented, which describes different hierarchical workload decomposition strategies for particle in cell (PIC codes on Clusters of Symmetric MultiProcessors. The devised workload decomposition is hierarchically structured: a higher-level decomposition among the computational nodes, and a lower-level one among the processors of each computational node. Several decomposition strategies are evaluated by means of the prediction model, with respect to the memory occupancy, the parallelization efficiency and the required programming effort. Such strategies have been implemented by integrating the high-level languages High Performance Fortran (at the inter-node stage and OpenMP (at the intra-node one. The details of these implementations are presented, and the experimental values of parallelization efficiency are compared with the predicted results.

  17. CdTe and CdSe quantum dots: synthesis, characterizations and applications in agriculture

    International Nuclear Information System (INIS)

    Ung, Thi Dieu Thuy; Tran, Thi Kim Chi; Pham, Thu Nga; Nguyen, Quang Liem; Nguyen, Duc Nghia; Dinh, Duy Khang

    2012-01-01

    This paper highlights the results of the whole work including the synthesis of highly luminescent quantum dots (QDs), characterizations and testing applications of them in different kinds of sensors. Concretely, it presents: (i) the successful synthesis of colloidal CdTe and CdSe QDs, their core/shell structures with single- and/or double-shell made by CdS, ZnS or ZnSe/ZnS; (ii) morphology, structural and optical characterizations of the synthesized QDs; and (iii) testing examples of QDs as the fluorescence labels for agricultural-bio-medical objects (for tracing residual pesticide in agricultural products, residual clenbuterol in meat/milk and for detection of H5N1 avian influenza virus in breeding farms). Overall, the results show that the synthesized QDs have very good crystallinity, spherical shape and strongly emit at the desired wavelengths between ∼500 and 700 nm with the luminescence quantum yield (LQY) of 30–85%. These synthesized QDs were used in fabrication of the three testing fluorescence QD-based sensors for the detection of residual pesticides, clenbuterol and H5N1 avian influenza virus. The specific detection of parathion methyl (PM) pesticide at a content as low as 0.05 ppm has been realized with the biosensors made from CdTe/CdS and CdSe/ZnSe/ZnS QDs and the acetylcholinesterase (AChE) enzymes. Fluorescence resonance energy transfer (FRET)-based nanosensors using CdTe/CdS QDs conjugated with 2-amino-8-naphthol-6-sulfonic acid were fabricated that enable detection of diazotized clenbuterol at a content as low as 10 pg ml −1 . For detection of H5N1 avian influenza virus, fluorescence biosensors using CdTe/CdS QDs bound on the surface of chromatophores extracted and purified from bacteria Rhodospirillum rubrum were prepared and characterized. The specific detection of H5N1 avian influenza virus in the range of 3–50 ng μl −1 with a detection limit of 3 ng μL −1 has been performed based on the antibody-antigen recognition. (review)

  18. Braze alloy process and strength characterization studies for 18 nickel grade 200 maraging steel with application to wind tunnel models

    Science.gov (United States)

    Bradshaw, James F.; Sandefur, Paul G., Jr.; Young, Clarence P., Jr.

    1991-01-01

    A comprehensive study of braze alloy selection process and strength characterization with application to wind tunnel models is presented. The applications for this study include the installation of stainless steel pressure tubing in model airfoil sections make of 18 Ni 200 grade maraging steel and the joining of wing structural components by brazing. Acceptable braze alloys for these applications are identified along with process, thermal braze cycle data, and thermal management procedures. Shear specimens are used to evaluate comparative shear strength properties for the various alloys at both room and cryogenic (-300 F) temperatures and include the effects of electroless nickel plating. Nickel plating was found to significantly enhance both the wetability and strength properties for the various braze alloys studied. The data are provided for use in selecting braze alloys for use with 18 Ni grade 200 steel in the design of wind tunnel models to be tested in an ambient or cryogenic environment.

  19. Shape and size controlled synthesis of Au nanorods: H{sub 2}S gas-sensing characterizations and antibacterial application

    Energy Technology Data Exchange (ETDEWEB)

    Lanh, Le Thi [College of Sciences, Hue University, 77 Nguyen Hue, Hue City (Viet Nam); Hoa, Tran Thai, E-mail: trthaihoa@yahoo.com [College of Sciences, Hue University, 77 Nguyen Hue, Hue City (Viet Nam); Cuong, Nguyen Duc [College of Sciences, Hue University, 77 Nguyen Hue, Hue City (Viet Nam); Faculty of Hospitality and Tourism, Hue University, 22 Lam Hoang, Hue City (Viet Nam); Khieu, Dinh Quang [College of Sciences, Hue University, 77 Nguyen Hue, Hue City (Viet Nam); Quang, Duong Tuan [College of Education, Hue University, 34 Le Loi, Hue City (Viet Nam); Van Duy, Nguyen; Hoa, Nguyen Duc [International Training Institute for Materials Science, Hanoi University of Science and Technology, Hanoi (Viet Nam); Van Hieu, Nguyen, E-mail: hieu@itims.edu.vn [International Training Institute for Materials Science, Hanoi University of Science and Technology, Hanoi (Viet Nam)

    2015-06-25

    Highlights: • We have demonstrated a facile method to prepare colloid Au nanorods. • The size and shape of Au nanorods can be controlled via seed-mediated growth method. • The H{sub 2}S gas-sensing properties have been investigated. • The antibacterial application has been conducted. - Abstract: Controlling their size and shape is one of the important issues in the fundamental study and application of colloidal metal nanoparticles. In the current study, different sizes and shapes of Au nanorods were fabricated using a seed-mediated growth method. Material characterization by X-ray diffraction and transmission electron microscopy revealed that the obtained products were made of single-crystal Au nanorods with an average diameter and length of 10 nm and 40 nm, respectively. The Au nanorod-based sensor exhibited significantly high sensitivity and fast response/recovery time to low concentrations (2.5–10 ppm) of H{sub 2}S at temperatures ranging from 300 °C to 400 °C. Additionally, they exhibited antibacterial effect at low concentration. These results suggested that the fabricated Au nanorods have excellent potential for practical application in air pollution monitoring and biomedicine.

  20. Performance Study of Monte Carlo Codes on Xeon Phi Coprocessors — Testing MCNP 6.1 and Profiling ARCHER Geometry Module on the FS7ONNi Problem

    Science.gov (United States)

    Liu, Tianyu; Wolfe, Noah; Lin, Hui; Zieb, Kris; Ji, Wei; Caracappa, Peter; Carothers, Christopher; Xu, X. George

    2017-09-01

    This paper contains two parts revolving around Monte Carlo transport simulation on Intel Many Integrated Core coprocessors (MIC, also known as Xeon Phi). (1) MCNP 6.1 was recompiled into multithreading (OpenMP) and multiprocessing (MPI) forms respectively without modification to the source code. The new codes were tested on a 60-core 5110P MIC. The test case was FS7ONNi, a radiation shielding problem used in MCNP's verification and validation suite. It was observed that both codes became slower on the MIC than on a 6-core X5650 CPU, by a factor of 4 for the MPI code and, abnormally, 20 for the OpenMP code, and both exhibited limited capability of strong scaling. (2) We have recently added a Constructive Solid Geometry (CSG) module to our ARCHER code to provide better support for geometry modelling in radiation shielding simulation. The functions of this module are frequently called in the particle random walk process. To identify the performance bottleneck we developed a CSG proxy application and profiled the code using the geometry data from FS7ONNi. The profiling data showed that the code was primarily memory latency bound on the MIC. This study suggests that despite low initial porting e_ort, Monte Carlo codes do not naturally lend themselves to the MIC platform — just like to the GPUs, and that the memory latency problem needs to be addressed in order to achieve decent performance gain.

  1. Diatomite Ores: Origin, Characterization and Applications

    OpenAIRE

    , S.S. Ibrahim

    2016-01-01

    Diatomite is a sedimentary silica mineral that composed of the fossilized skeletal remains of the microscopic single-celled aquatic plants called diatoms. Over 10,000 species of these microscopic algae have been recognized, each with its own distinct morphology. Accordingly, diatomite is multifaceted and varies from microto macro-meter in size. Diatomite has many important industrial applications due to its unique properties. Its chemical constitution is approximately 85% insoluble silica; ac...

  2. Characterization of surface modifications by white light interferometry: applications in ion sputtering, laser ablation, and tribology experiments.

    Science.gov (United States)

    Baryshev, Sergey V; Erck, Robert A; Moore, Jerry F; Zinovev, Alexander V; Tripa, C Emil; Veryovkin, Igor V

    2013-02-27

    In materials science and engineering it is often necessary to obtain quantitative measurements of surface topography with micrometer lateral resolution. From the measured surface, 3D topographic maps can be subsequently analyzed using a variety of software packages to extract the information that is needed. In this article we describe how white light interferometry, and optical profilometry (OP) in general, combined with generic surface analysis software, can be used for materials science and engineering tasks. In this article, a number of applications of white light interferometry for investigation of surface modifications in mass spectrometry, and wear phenomena in tribology and lubrication are demonstrated. We characterize the products of the interaction of semiconductors and metals with energetic ions (sputtering), and laser irradiation (ablation), as well as ex situ measurements of wear of tribological test specimens. Specifically, we will discuss: i. Aspects of traditional ion sputtering-based mass spectrometry such as sputtering rates/yields measurements on Si and Cu and subsequent time-to-depth conversion. ii. Results of quantitative characterization of the interaction of femtosecond laser irradiation with a semiconductor surface. These results are important for applications such as ablation mass spectrometry, where the quantities of evaporated material can be studied and controlled via pulse duration and energy per pulse. Thus, by determining the crater geometry one can define depth and lateral resolution versus experimental setup conditions. iii. Measurements of surface roughness parameters in two dimensions, and quantitative measurements of the surface wear that occur as a result of friction and wear tests. Some inherent drawbacks, possible artifacts, and uncertainty assessments of the white light interferometry approach will be discussed and explained.

  3. Development of IR Contrast Data Analysis Application for Characterizing Delaminations in Graphite-Epoxy Structures

    Science.gov (United States)

    Havican, Marie

    2012-01-01

    Objective: Develop infrared (IR) flash thermography application based on use of a calibration standard for inspecting graphite-epoxy laminated/honeycomb structures. Background: Graphite/Epoxy composites (laminated and honeycomb) are widely used on NASA programs. Composite materials are susceptible for impact damage that is not readily detected by visual inspection. IR inspection can provide required sensitivity to detect surface damage in composites during manufacturing and during service. IR contrast analysis can provide characterization of depth, size and gap thickness of impact damage. Benefits/Payoffs: The research provides an empirical method of calibrating the flash thermography response in nondestructive evaluation. A physical calibration standard with artificial flaws such as flat bottom holes with desired diameter and depth values in a desired material is used in calibration. The research devises several probability of detection (POD) analysis approaches to enable cost effective POD study to meet program requirements.

  4. Preparation and characterization of polyurethane plasticizer for flexible packaging applications: Natural oils affirmed access

    Directory of Open Access Journals (Sweden)

    Mohammed A. Mekewi

    2017-03-01

    Full Text Available Developing bio-renewable feedstock for polyurethane (PU manufacturing and polymer industry as a whole has become highly desirable for both economic and environmental reasons. In this work castor oil (CO and palm olein (PO polyols were synthesized and partially used as renewable feedstock for the manufacturing of polyurethane plasticizing resin for printing ink applications. The chemical structure of the prepared polyols and polyurethanes were characterized using IR spectra and GPC and their solubility in common solvents was tested. As well, properties such as flexibility, mechanical properties, optical properties, heat seal and freeze resistance of these prepared printing inks were determined. The results indicated that the prepared printing inks from 50% synthesized polyurethane have high thermal stability, adhesion and excellent freeze resistance. The net technical properties of the new ink formulations are relatively comparable to the printing ink prepared from standard polyurethane plasticizer.

  5. Characterization of isolated communities: application in the city of Ubatuba, Sao Paulo state, Brazil; Caracterizacao de comunidades isoladas: aplicacao em comunicade de Ubatura/SP

    Energy Technology Data Exchange (ETDEWEB)

    Ferreira, Maria Julita Guerra [Secretaria de Estado de Energia, Recursos Hidricos e Saneamento (SERHS), Sao Paulo, SP (Brazil)], e-mail: mjulita@sp.gov.br; Pilla, Adelina Teixeira Fonseca de [Equilibrio, Desenvolvimento Ambiental Ltda., Sao Paulo, SP (Brazil)], e-mail: adelina.fonseca@uol.com.br

    2004-07-01

    This paper presents a methodology for characterization of isolated communities, developed on a consultant work for the Ministry of Mines and Energy - MME. It still presents the application of this methodology of analysis on a isolated community in the city of Ubatuba, Sao Paulo state. (author)

  6. Synthesis, Characterization, and Processing of Copper, Indium, and Gallium Dithiocarbamates for Energy Conversion Applications

    Science.gov (United States)

    Duraj, S. A.; Duffy, N. V.; Hepp, A. F.; Cowen, J. E.; Hoops, M. D.; Brothrs, S. M.; Baird, M. J.; Fanwick, P. E.; Harris, J. D.; Jin, M. H.-C.

    2009-01-01

    Ten dithiocarbamate complexes of indium(III) and gallium(III) have been prepared and characterized by elemental analysis, infrared spectra and melting point. Each complex was decomposed thermally and its decomposition products separated and identified with the combination of gas chromatography/mass spectrometry. Their potential utility as photovoltaic materials precursors was assessed. Bis(dibenzyldithiocarbamato)- and bis(diethyldithiocarbamato)copper(II), Cu(S2CN(CH2C6H5)2)2 and Cu(S2CN(C2H5)2)2 respectively, have also been examined for their suitability as precursors for copper sulfides for the fabrication of photovoltaic materials. Each complex was decomposed thermally and the products analyzed by GC/MS, TGA and FTIR. The dibenzyl derivative complex decomposed at a lower temperature (225-320 C) to yield CuS as the product. The diethyl derivative complex decomposed at a higher temperature (260-325 C) to yield Cu2S. No Cu containing fragments were noted in the mass spectra. Unusual recombination fragments were observed in the mass spectra of the diethyl derivative. Tris(bis(phenylmethyl)carbamodithioato-S,S'), commonly referred to as tris(N,N-dibenzyldithiocarbamato)indium(III), In(S2CNBz2)3, was synthesized and characterized by single crystal X-ray crystallography. The compound crystallizes in the triclinic space group P1(bar) with two molecules per unit cell. The material was further characterized using a novel analytical system employing the combined powers of thermogravimetric analysis, gas chromatography/mass spectrometry, and Fourier transform infrared (FT-IR) spectroscopy to investigate its potential use as a precursor for the chemical vapor deposition (CVD) of thin film materials for photovoltaic applications. Upon heating, the material thermally decomposes to release CS2 and benzyl moieties in to the gas phase, resulting in bulk In2S3. Preliminary spray CVD experiments indicate that In(S2CNBz2)3 decomposed on a Cu substrate reacts to produce

  7. Characterization and application of enterocin RM6, a bacteriocin from Enterococcus faecalis.

    Science.gov (United States)

    Huang, En; Zhang, Liwen; Chung, Yoon-Kyung; Zheng, Zuoxing; Yousef, Ahmed E

    2013-01-01

    Use of bacteriocins in food preservation has received great attention in recent years. The goal of this study is to characterize enterocin RM6 from Enterococcus faecalis OSY-RM6 and investigate its efficacy against Listeria monocytogenes in cottage cheese. Enterocin RM6 was purified from E. faecalis culture supernatant using ion exchange column, multiple C18-silica cartridges, followed by reverse-phase high-performance liquid chromatography. The molecular weight of enterocin RM6 is 7145.0823 as determined by mass spectrometry (MS). Tandem mass spectrometry (MS/MS) analysis revealed that enterocin RM6 is a 70-residue cyclic peptide with a head-to-tail linkage between methionine and tryptophan residues. The peptide sequence of enterocin RM6 was further confirmed by sequencing the structural gene of the peptide. Enterocin RM6 is active against Gram-positive bacteria, including L. monocytogenes, Bacillus cereus, and methicillin-resistant Staphylococcus aureus (MRSA). Enterocin RM6 (final concentration in cottage cheese, 80 AU/mL) caused a 4-log reduction in population of L. monocytogenes inoculated in cottage cheese within 30 min of treatment. Therefore, enterocin RM6 has potential applications as a potent antimicrobial peptide against foodborne pathogens in food.

  8. Synthesis and Characterization of Mg-doped ZnO Nanorods for Biomedical Applications

    Science.gov (United States)

    Gemar, H.; Das, N. C.; Wanekaya, A.; Delong, R.; Ghosh, K.

    2013-03-01

    Nanomaterials research has become a major attraction in the field of advanced materials research in the area of Physics, Chemistry, and Materials Science. Bio-compatible and chemically stable metal nanoparticles have biomedical applications that includes drug delivery, cell and DNA separation, gene cloning, magnetic resonance imaging (MRI). This research is aimed at the fabrication and characterization of Mg-doped ZnO nanorods. Hydrothermal synthesis of undoped ZnO and Mg-doped ZnO nanorods is carried out using aqueous solutions of Zn(NO3)2 .6H2O, MgSO4, and using NH4OH as hydrolytic catalyst. Nanomaterials of different sizes and shapes were synthesized by varying the process parameters such as molarity (0.15M, 0.3M, 0.5M) and pH (8-11) of the precursors, growth temperature (130°C), and annealing time during the hydrothermal Process. Structural, morphological, and optical properties are studied using various techniques such as XRD, SEM, UV-vis and PL spectroscopy. Detailed structural, and optical properties will be discussed in this presentation. This work is partially supported by National Cancer Institute (1 R15 CA139390-01).

  9. Characterization of Pectinase from Bacillus subtilis Strain Btk 27 and Its Potential Application in Removal of Mucilage from Coffee Beans

    Directory of Open Access Journals (Sweden)

    Oliyad Jeilu Oumer

    2017-01-01

    Full Text Available The demand for enzymes in the global market is projected to rise at a fast pace in recent years. There has been a great increase in industrial applications of pectinase owing to their significant biotechnological uses. For applying enzymes at industrial scale primary it is important to know the features of the enzyme. Thus, this study was undertaken with aims of characterizing the pectinase enzyme from Bacillus subtilis strain Btk27 and proving its potential application in demucilisation of coffee. In this study, the maximum pectinase activity was achieved at pH 7.5 and 50°C. Also, the enzyme activity was found stimulated with Mg2+ and Ca2+ metal ions. Moreover, it was stable on EDTA, Trixton-100, Tween 80, and Tween 20. Since Bacillus subtilis strain Btk27 was stable in most surfactants and inhibitors it could be applicable in various industries whenever pectin degradation is needed. The enzyme Km and Vmax values were identified as 1.879 mg/ml and 149.6 U, respectively. The potential application of the enzyme for coffee processing was studied, and it is found that complete removal of mucilage from coffee beans within 24 hours of treatment indicates the potential application in coffee processing.

  10. Imaging systems and materials characterization

    International Nuclear Information System (INIS)

    Murr, L.E.

    2009-01-01

    This paper provides a broad background for the historical development and modern applications of light optical metallography, scanning and transmission electron microscopy, field-ion microscopy and several forms of scanning probe microscopes. Numerous case examples illustrating especially synergistic applications of these imaging systems are provided to demonstrate materials characterization especially in the context of structure-property-performance issues which define materials science and engineering

  11. Fabrication and characterization of a 3D Positive ion detector and its applications

    Science.gov (United States)

    Venkatraman, Pitchaikannu; Sureka, Chandrasekaran Senbagavadivoo

    2017-11-01

    There is a growing interest to experimentally evaluate the track structure induced by ionizing particles in order to characterize the radiobiological quality of ionizing radiation for applications in radiotherapy and radiation protection. To do so, a novel positive ion detector based on the multilayer printed circuit board (PCB) technology has been proposed previously, which works under the principle of ion induced impact ionization. Based on this, an upgraded 3D positive ion detector was fabricated in order to improve its efficiency and use it for various applications. To improve the efficiency of the detector, cathodes with different insulators (Bakelite plate and Steatite Ceramics) and conducting layers (ITO, FTO, and Gold coated cathode) were studied under various gaseous media (methane, nitrogen, and air) using Am-241, Co-60, Co-57, Na-22, Cs-137, and Ba-133 sources. From this study, it is confirmed that the novel 3D positive ion detector that has been upgraded using gold as strip material, tungsten (87%) coated copper (13%) as the core wire, gold coated ceramic as cathode, and thickness of 3.483 mm showed 9.2% efficiency under methane medium at 0.9 Torr pressure using an Am-241 source. It is also confirmed that when the conductivity of the cathode and thickness of the detector is increased, the performance of the detector is improved significantly. Further, the scope of the detector to use in the field of radiation protection, radiation dosimetry, gamma spectrometry, radiation biology, and oncology are reported here.

  12. Characterization of a new beta titanium alloy, Ti–12Mo–3Nb, for biomedical applications

    International Nuclear Information System (INIS)

    Gabriel, S.B.; Panaino, J.V.P.; Santos, I.D.; Araujo, L.S.; Mei, P.R.; Almeida, L.H. de; Nunes, C.A.

    2012-01-01

    Highlights: ► This paper focused on the development of Ti–12Mo–3Nb alloy for it to be used as a bone substitute. ► The alloy show good mechanical properties and exhibit spontaneous passivity. ► The Ti–12Mo–3Nb alloy can be a promising alternative for biomedical application. - Abstract: In recent years, different beta titanium alloys have been developed for biomedical applications with a combination of mechanical properties including a low Young's modulus, high strength, fatigue resistance and good ductility with excellent corrosion resistance. From this perspective, a new metastable beta titanium Ti–12Mo–3Nb alloy was developed with the replacement of both vanadium and aluminum from the traditional Ti–6Al–4V alloy. This paper presents the microstructure, mechanical properties and corrosion resistance of the Ti–12Mo–3Nb alloy heat-treated at 950 °C for 1 h. The material was characterized by X-ray diffraction and by scanning electron microscopy. Tensile tests were carried out at room temperature. Corrosion tests were performed using Ringer's solution at 25 °C. The results showed that this alloy could potentially be used for biomedical purposes due to its good mechanical properties and spontaneous passivation.

  13. Characterization of Ca co-doped LSO:Ce scintillators coupled to SiPM for PET applications

    International Nuclear Information System (INIS)

    Bisogni, M.G.; Collazuol, G.M.; Marcatili, S.; Melcher, C.L.; Del Guerra, A.

    2011-01-01

    Scintillators suitable for PET applications must be characterized by a high efficiency for gamma-ray detection, determined by a high density and atomic number of the crystal; a fast light signal that allows to achieve a good time resolution and to cope with high counting rates; a high light yield for a good energy and time resolution; a good linearity of the light output as a function of the energy to preserve the intrinsic energy resolution of the scintillator. Recently developed LSO:Ce scintillators, co-doped with Ca, have been produced by the University of Tennessee group. They are characterized by the improved performance of most the above-mentioned characteristics. The crystals, initially tested with PMTs, showed a higher light output, faster light pulse, improved energy resolution and reduced afterglow, as compared to the standard LSO:Ce crystals. Even though the PMTs still represent the gold standard photodetectors, the recently available SiPMs are now valid candidate to replace PMTs in the next generation of PET scanners thanks to their compactness, high spatial resolution performances, low bias operating voltage and, most important for combined PET/MRI systems, insensitivity to static and RF fields. In this work we present the performance of Ca co-doped LSO:Ce samples coupled to SiPMs and PMTs. In particular we have assessed their performances by evaluating the energy and time resolution.

  14. Implementing Shared Memory Parallelism in MCBEND

    Directory of Open Access Journals (Sweden)

    Bird Adam

    2017-01-01

    Full Text Available MCBEND is a general purpose radiation transport Monte Carlo code from AMEC Foster Wheelers’s ANSWERS® Software Service. MCBEND is well established in the UK shielding community for radiation shielding and dosimetry assessments. The existing MCBEND parallel capability effectively involves running the same calculation on many processors. This works very well except when the memory requirements of a model restrict the number of instances of a calculation that will fit on a machine. To more effectively utilise parallel hardware OpenMP has been used to implement shared memory parallelism in MCBEND. This paper describes the reasoning behind the choice of OpenMP, notes some of the challenges of multi-threading an established code such as MCBEND and assesses the performance of the parallel method implemented in MCBEND.

  15. NEW MICROWAVE-BASED MISSIONS APPLICATIONS FOR RAINFED CROPS CHARACTERIZATION

    Directory of Open Access Journals (Sweden)

    N. Sánchez

    2016-06-01

    Full Text Available A multi-temporal/multi-sensor field experiment was conducted within the Soil Moisture Measurement Stations Network of the University of Salamanca (REMEDHUS in Spain, in order to retrieve useful information from satellite Synthetic Aperture Radar (SAR and upcoming Global Navigation Satellite Systems Reflectometry (GNSS-R missions. The objective of the experiment was first to identify which radar observables are most sensitive to the development of crops, and then to define which crop parameters the most affect the radar signal. A wide set of radar variables (backscattering coefficients and polarimetric indicators acquired by Radarsat-2 were analyzed and then exploited to determine variables characterizing the crops. Field measurements were fortnightly taken at seven cereals plots between February and July, 2015. This work also tried to optimize the crop characterization through Landsat-8 estimations, testing and validating parameters such as the leaf area index, the fraction of vegetation cover and the vegetation water content, among others. Some of these parameters showed significant and relevant correlation with the Landsat-derived Normalized Difference Vegetation Index (R>0.60. Regarding the radar observables, the parameters the best characterized were biomass and height, which may be explored for inversion using SAR data as an input. Moreover, the differences in the correlations found for the different crops under study types suggested a way to a feasible classification of crops.

  16. Site characterization activities at Stripa and other Swedish projects

    International Nuclear Information System (INIS)

    Ahlstroehm, P.E.

    1991-01-01

    The Swedish research programme concerning spent nuclear fuel disposal aims for submitting a siting license application around the year 2000. An important step towards that goal will be the detailed characterization of at least two potential sites in late 1990s. In preparation for such characterization several research projects are conducted. One is the international Stripa Project that includes a site characterization and validation project for a small size granite rock body. The Stripa work also includes further development of instrumentation and measurement techniques. Another project is the Finnsjoen Fracture Zone Project, which is characterizing a subhorizontal zone at depths from 100 to 350 meters. The third project is the new Swedish Hard Rock Laboratory planned at the site of the Oskarshamn nuclear power plant. The preinvestigations and construction of this laboratory include major efforts in development, application and validation of site characterization methodology. (author) 6 figs., 9 refs

  17. Synthesis and characterization of iron based nanoparticles for novel applications

    Science.gov (United States)

    Khurshid, Hafsa

    The work in this thesis has been focused on the fabrication and characterization of iron based nanoparticles with controlled size and morphology with the aim: (i) to investigate their properties for potential applications in MICR toners and biomedical field and (ii) to study finite size effects on the magnetic properties of the nanoparticles. For the biomedical applications, core/shell structured iron/iron-oxide and hollow shell nanoparticles were synthesized by thermal decomposition of iron organometallic compounds [Fe(CO)5] at high temperature. Core/shell structured iron/iron-oxide nanoparticles have been prepared in the presence of oleic acid and oleylamine. Particle size and composition was controlled by varying the reaction parameters during synthesis. The as-made particles are hydrophobic and not dispersible in water. Water dispersibility was achieved by ligand exchange a with double hydrophilic diblock copolymer. Relaxometery measurements of the transverse relaxation time T2 of the nanoparticles solution at 3 Tesla confirm that the core/shell nanoparticles are an excellent MRI contrast agent using T2 weighted imaging sequences. In comparison to conventionally used iron oxide nanoparticles, iron/iron-oxide core/shell nanoparticles offer four times stronger T2 shortening effect at comparable core size due to their higher magnetization. The magnetic properties were studied as a function of particle size, composition and morphology. Hollow nanostructures are composed of randomly oriented grains arranged together to make a shell layer and make an interesting class of materials. The hollow morphology can be used as an extra degree of freedom to control the magnetic properties. Owing to their hollow morphology, they can be used for the targeted drug delivery applications by filling the drug inside their cavity. For the magnetic toners applications, particles were synthesized by chemically reducing iron salt using sodium borohydride and then coated with polyethylene

  18. Characterization of in-swath spray deposition for CP-11TT flat-fan nozzles used in low volume aerial application of crop production and protection materials

    Science.gov (United States)

    For aerial application of crop production and protection materials, a complex interaction of controllable and uncontrollable factors is involved. It is difficult to completely characterize spray drift and deposition, but estimates can be made with appropriate sampling protocol and analysis. With c...

  19. Purification, characterization and application of laccase from ...

    African Journals Online (AJOL)

    Administrator

    2007-05-16

    . E-mail: duran@iqm.unicamp.br. .... The elution profile was monitored at 280 nm. Amino acid analysis was performed ..... Enzyme applications in the textile industry. Rev Progr Coloration Rel Topics 30:41-44. Duran N, Rosa ...

  20. Numerical modeling of exciton-polariton Bose-Einstein condensate in a microcavity

    Science.gov (United States)

    Voronych, Oksana; Buraczewski, Adam; Matuszewski, Michał; Stobińska, Magdalena

    2017-06-01

    A novel, optimized numerical method of modeling of an exciton-polariton superfluid in a semiconductor microcavity was proposed. Exciton-polaritons are spin-carrying quasiparticles formed from photons strongly coupled to excitons. They possess unique properties, interesting from the point of view of fundamental research as well as numerous potential applications. However, their numerical modeling is challenging due to the structure of nonlinear differential equations describing their evolution. In this paper, we propose to solve the equations with a modified Runge-Kutta method of 4th order, further optimized for efficient computations. The algorithms were implemented in form of C++ programs fitted for parallel environments and utilizing vector instructions. The programs form the EPCGP suite which has been used for theoretical investigation of exciton-polaritons. Catalogue identifier: AFBQ_v1_0 Program summary URL:http://cpc.cs.qub.ac.uk/summaries/AFBQ_v1_0.html Program obtainable from: CPC Program Library, Queen's University, Belfast, N. Ireland Licensing provisions: BSD-3 No. of lines in distributed program, including test data, etc.: 2157 No. of bytes in distributed program, including test data, etc.: 498994 Distribution format: tar.gz Programming language: C++ with OpenMP extensions (main numerical program), Python (helper scripts). Computer: Modern PC (tested on AMD and Intel processors), HP BL2x220. Operating system: Unix/Linux and Windows. Has the code been vectorized or parallelized?: Yes (OpenMP) RAM: 200 MB for single run Classification: 7, 7.7. Nature of problem: An exciton-polariton superfluid is a novel, interesting physical system allowing investigation of high temperature Bose-Einstein condensation of exciton-polaritons-quasiparticles carrying spin. They have brought a lot of attention due to their unique properties and potential applications in polariton-based optoelectronic integrated circuits. This is an out-of-equilibrium quantum system confined

  1. Characterization of Al/Ni multilayers and their application in diffusion bonding of TiAl to TiC cermet

    International Nuclear Information System (INIS)

    Cao, J.; Song, X.G.; Wu, L.Z.; Qi, J.L.; Feng, J.C.

    2012-01-01

    The Al/Ni multilayers were characterized and diffusion bonding of TiAl intermetallics to TiC cermets was carried out using the multilayers. The microstructure of Al/Ni multilayers and TiAl/TiC cermet joint was investigated. The layered structures consisting of a Ni 3 (AlTi) layer, a Ni 2 AlTi layer, a (Ni,Al,Ti) layer and a Ni diffusion layer were observed from the interlayer to the TiAl substrate. Only one AlNi 3 layer formed at the multilayer/TiC cermet interface. The reaction behaviour of Al/Ni multilayers was characterized by means of differential scanning calorimeter (DSC) and X-ray diffraction. The initial exothermic peak of the DSC curve was formed due to the formation of Al 3 Ni and Al 3 Ni 2 phases. The reaction sequence of the Al/Ni multilayers was Al 3 Ni → Al 3 Ni 2 → AlNi → AlNi 3 and the final products were AlNi and AlNi 3 phases. The shear strength of the joint was tested and the experimental results suggested that the application of Al/Ni multilayers improved the joining quality. - Highlights: ► Diffusion bonding of TiAl to TiC cermet was realized using Al/Ni multilayer. ► The reaction sequence of the Al/Ni multilayers was Al 3 Ni → Al 3 Ni 2 → AlNi → AlNi 3 . ► The interfacial microstructure of the joint was clarified. ► The application of Al/Ni multilayers improved the joining quality.

  2. PREPARATION AND CHARACTERIZATION OF SOLID ELECTROLYTES: FUEL CELL APPLICATIONS

    Energy Technology Data Exchange (ETDEWEB)

    Rambabu Bobba; Josef Hormes; T. Wang; Jaymes A. Baker; Donald G. Prier; Tommy Rockwood; Dinesha Hawkins; Saleem Hasan; V. Rayanki

    1997-12-31

    The intent of this project with Federal Energy Technology Center (FETC)/Morgantown Energy Technology Center (METC) is to develop research infrastructure conductive to Fuel Cell research at Southern University and A and M College, Baton Route. A state of the art research laboratory (James Hall No.123 and No.114) for energy conversion and storage devices was developed during this project duration. The Solid State Ionics laboratory is now fully equipped with materials research instruments: Arbin Battery Cycling and testing (8 channel) unit, Electrochemical Analyzer (EG and G PAR Model 273 and Solartron AC impedance analyzer), Fuel Cell test station (Globe Tech), Differential Scanning Calorimeter (DSC-10), Thermogravimetric Analyzer (TGA), Scanning Tunneling Microscope (STM), UV-VIS-NIR Absorption Spectrometer, Fluorescence Spectrometer, FT-IR Spectrometer, Extended X-ray Absorption Fine Structure (EXAFS) measurement capability at Center for Advanced Microstructure and Devices (CAMD- a multimillion dollar DOE facility), Glove Box, gas hood chamber, high temperature furnaces, hydraulic press and several high performance computers. IN particular, a high temperature furnace (Thermodyne 6000 furnace) and a high temperature oven were acquired through this project funds. The PI Dr. R Bobba has acquired additional funds from federal agencies include NSF-Academic Research Infrastructure program and other DOE sites. They have extensively used the multimillion dollar DOE facility ''Center'' for Advanced Microstructures and Devices (CAMD) for electrochemical research. The students were heavily involved in the experimental EXAFS measurements and made use of their DCM beamline for EXAFS research. The primary objective was to provide hands on experience to the selected African American undergraduate and graduate students in experimental energy research.The goal was to develop research skills and involve them in the Preparation and Characterization of Solid

  3. A method for characterization of coherent backgrounds in real time and its application in gravitational wave data analysis

    International Nuclear Information System (INIS)

    Daw, E J; Hewitson, M R

    2008-01-01

    Many experiments, and in particular gravitational wave detectors, produce continuous streams of data whose frequency representations contain discrete, relatively narrowband coherent features at high amplitude. We discuss the application of digital Fourier transforms (DFTs) to characterization of these features, hereafter frequently referred to as lines. Application of DFTs to continuously produced time-domain data is achieved through an algorithm, hereafter referred to as EFC , for efficient time-domain determination of the Fourier coefficients of a data set. We first define EFC and discuss parameters relating to the algorithm that determine its properties and action on the data. In gravitational wave interferometers, these lines are commonly due to parasitic sources of coherent background interference coupling into the instrument. Using GEO 600 data, we next demonstrate that time-domain subtraction of lines can proceed without detrimental effects either on features at frequencies separated from that of the subtracted line, or on features at the frequency of the line but having different stationarity properties

  4. Development and characterization of a D-D fast neutron generator for imaging applications.

    Science.gov (United States)

    Adams, Robert; Bort, Lorenz; Zboray, Robert; Prasser, Horst-Michael

    2015-02-01

    The experimental characterization of a pulsed D-D fast neutron generator designed for fan-beam tomography applications is presented. Using Monte Carlo simulations the response of an LB6411 neutron probe was related to the neutron generator output. The yield was measured to be up to ∼10(7) neutrons/s. An aluminum block was moved stepwise between the source and a BC400 plastic scintillator detector in order to measure an edge response. This edge response was related to the neutron emitting spot size using Monte Carlo simulations and a simplified geometry-based model. The experimentally determined spot size of 2.2 mm agreed well with the simulated value of 1.5 mm. The time-dependence of pulsed output for various operating conditions was also measured. The neutron generator was found to satisfy design requirements for a planned fast neutron tomography arrangement based on a plastic scintillator detector array which is expected to be capable of producing 2D tomograms with a resolution of ∼1.5 mm. Copyright © 2014 Elsevier Ltd. All rights reserved.

  5. Characterization for DRX and FTIR of the surface of UWMWPE for critical applications

    International Nuclear Information System (INIS)

    Medeiros, Keila M. de; Araujo, E.M.; Lira, H.L.; Patricio, Aline C.L.; Lima, Carlos A.P. de

    2009-01-01

    Biomaterials is the result of the application of the science of the materials to the medicine, understands a new and important spectrum of the knowledge - Science of Biomaterials. The principal aspects that determine the acting of a bio material in the human body are three: biocompatibility, mechanical properties and degradation. This work had the objective to modify and to oxidate the surface of ultra-high molecular weight polyethylene (UHMWPE). It was utilized for this modification water sandpapers and for oxidation the hydrogen peroxide (H 2 O 2 ). The surface of UHMWPE it was modified with water sandpapers of numbers 180, 600 and 1200 mesh and oxidated with the H 2 O 2 in different concentrations of 35 and 60%. The samples already with its modified surfaces had been submitted to the characterization using itself the following techniques: diffraction de ray-X and Fourier transform infra-red spectroscopy. The physical modification (sanded) and chemistry (H 2 O 2 ) of the surface of UHMWPE was important because it looks for improving the interaction techniques of the implants with the bone. (author)

  6. EO-1 analysis applicable to coastal characterization

    Science.gov (United States)

    Burke, Hsiao-hua K.; Misra, Bijoy; Hsu, Su May; Griffin, Michael K.; Upham, Carolyn; Farrar, Kris

    2003-09-01

    The EO-1 satellite is part of NASA's New Millennium Program (NMP). It consists of three imaging sensors: the multi-spectral Advanced Land Imager (ALI), Hyperion and Atmospheric Corrector. Hyperion provides a high-resolution hyperspectral imager capable of resolving 220 spectral bands (from 0.4 to 2.5 micron) with a 30 m resolution. The instrument images a 7.5 km by 100 km land area per image. Hyperion is currently the only space-borne HSI data source since the launch of EO-1 in late 2000. The discussion begins with the unique capability of hyperspectral sensing to coastal characterization: (1) most ocean feature algorithms are semi-empirical retrievals and HSI has all spectral bands to provide legacy with previous sensors and to explore new information, (2) coastal features are more complex than those of deep ocean that coupled effects are best resolved with HSI, and (3) with contiguous spectral coverage, atmospheric compensation can be done with more accuracy and confidence, especially since atmospheric aerosol effects are the most pronounced in the visible region where coastal feature lie. EO-1 data from Chesapeake Bay from 19 February 2002 are analyzed. In this presentation, it is first illustrated that hyperspectral data inherently provide more information for feature extraction than multispectral data despite Hyperion has lower SNR than ALI. Chlorophyll retrievals are also shown. The results compare favorably with data from other sources. The analysis illustrates the potential value of Hyperion (and HSI in general) data to coastal characterization. Future measurement requirements (air borne and space borne) are also discussed.

  7. A MODELING METHOD OF FLUTTERING LEAVES BASED ON POINT CLOUD

    Directory of Open Access Journals (Sweden)

    J. Tang

    2017-09-01

    Full Text Available Leaves falling gently or fluttering are common phenomenon in nature scenes. The authenticity of leaves falling plays an important part in the dynamic modeling of natural scenes. The leaves falling model has a widely applications in the field of animation and virtual reality. We propose a novel modeling method of fluttering leaves based on point cloud in this paper. According to the shape, the weight of leaves and the wind speed, three basic trajectories of leaves falling are defined, which are the rotation falling, the roll falling and the screw roll falling. At the same time, a parallel algorithm based on OpenMP is implemented to satisfy the needs of real-time in practical applications. Experimental results demonstrate that the proposed method is amenable to the incorporation of a variety of desirable effects.

  8. Surface Characterization of Nanoparticles: Critical Needs and Significant Challenges

    International Nuclear Information System (INIS)

    Baer, Donald R.

    2011-01-01

    There is a growing recognition that nanoparticles and other nanostructured materials are sometimes inadequately characterized and that this may limit or even invalidate some of the conclusions regarding particle properties and behavior. A number of international organizations are working to establish the essential measurement requirements that enable adequate understanding of nanoparticle properties for both technological applications and for environmental health issues. Our research on the interaction of iron metal-core oxide-shell nanoparticles with environmental contaminants and studies of the behaviors of ceria nanoparticles, with a variety of medical, catalysis and energy applications, have highlighted a number of common nanoparticle characterization challenges that have not been fully recognized by parts of the research community. This short review outlines some of these characterization challenges based on our research observations and using other results reported in the literature. Issues highlighted include: (1) the importance of surfaces and surface characterization, (2) nanoparticles are often not created equal - subtle differences in synthesis and processing can have large impacts; (3) nanoparticles frequently change with time having lifetime implications for products and complicating understanding of health and safety impacts; (4) the high sensitivity of nanoparticles to their environment complicates characterization and applications in many ways; (5) nanoparticles are highly unstable and easily altered (damaged) during analysis.

  9. Characterization of natural topaz for dosimetric applications in the therapeutic range

    International Nuclear Information System (INIS)

    Souza, Divanizia do Nascimento

    2002-01-01

    The thermoluminescence (TL) and the thermally stimulated exoelectron emission of Brazilian natural topaz samples from Minas Gerais were analysed aiming the use of this mineral for dosimetric applications. Topaz is an aluminium fluorosilicate with a fairly constant chemical composition of Al 2 SiO 4 (F,OH) 2 . The major variation in the structure among different samples is related to the OH/F concentration ratio. In the present work, samples cut from rolled pebbles, powdered samples and composites were used. The composites (dosimeters) were prepared with powdered topaz embedded in powdered Teflon or glass. The dosimetric characterization of the composites showed that the dosimeters present a linear response in the range of therapeutic doses, slow isothermic fading and a strong TL dependence with radiation energy. The TL was also combined with the X-ray diffraction, infrared and Raman spectroscopic techniques to identify the charge carrier traps and those of the recombination centres, that are essential aspects to understand the processes of light emission in natural colourless topaz. It was observed that the main charge trapping centers in the topaz are due to various OH-related defects, and that the thermal treatments can change the concentration of the recombination centers. Implantations with chromium, aluminium and iron ions into colourless samples were performed, and they were efficient to produce TL modifications in topaz. (author)

  10. Production and characterization of ceramics for armor application; Producao e caracterizacao de ceramicas para blindagem balistica

    Energy Technology Data Exchange (ETDEWEB)

    Alves, J.T.; Lopes, C.M.A. [Instituto Tecnologico de Aeronautica (ITA), Sao Jose dos Campos, SP (Brazil). Div. de Engenharia Mecanica-Aeronautica; Assis, J.M.K.; Melo, F.C.L., E-mail: cmoniz@iae.cta.b [Instituto de Aeronautica e Espaco (IAE), Sao Jose dos Campos, SP (Brazil). Div. de Materiais

    2010-07-01

    The fabrication of devices for ballistic protection as bullet proof vests and helmets and armored vehicles has been evolving over the past years along with the materials and models used for this specific application. The requirements for high efficient light-weight ballistic protection systems which not interfere in the user comfort and mobility has driven the research in this area. In this work we will present the results of characterization of two ceramics based on alumina and silicon carbide. The ceramics were produced in lab scale and the specific mass, scanning electron microscopy (SEM) microstructure, Vickers hardness, flexural resistance at room temperature and X-ray diffraction were evaluated. Ballistic tests performed in the selected materials showed that the ceramics present armor efficiency. (author)

  11. Application of X-ray micro-CT for micro-structural characterization of APCVD deposited SiC coatings on graphite conduit.

    Science.gov (United States)

    Agrawal, A K; Sarkar, P S; Singh, B; Kashyap, Y S; Rao, P T; Sinha, A

    2016-02-01

    SiC coatings are commonly used as oxidation protective materials in high-temperature applications. The operational performance of the coating depends on its microstructure and uniformity. This study explores the feasibility of applying tabletop X-ray micro-CT for the micro-structural characterization of SiC coating. The coating is deposited over the internal surface of pipe structured graphite fuel tube, which is a prototype of potential components of compact high-temperature reactor (CHTR). The coating is deposited using atmospheric pressure chemical vapor deposition (APCVD) and properties such as morphology, porosity, thickness variation are evaluated. Micro-structural differences in the coating caused by substrate distance from precursor inlet in a CVD reactor are also studied. The study finds micro-CT a potential tool for characterization of SiC coating during its future course of engineering. We show that depletion of reactants at larger distances causes development of larger pores in the coating, which affects its morphology, density and thickness. Copyright © 2015 Elsevier Ltd. All rights reserved.

  12. Piezoelectric Transformer Characterization and Application of Electronic Ballast

    OpenAIRE

    Lin, Ray-Lee

    2001-01-01

    The characterization and modeling of piezoelectric transformers are studied and developed for use in electronic ballasts. By replacing conventional L-C resonant tanks with piezoelectric transformers, inductor-less piezoelectric transformer electronic ballasts have been developed for use in fluorescent lamps. The piezoelectric transformer is a combination of piezoelectric actuators as the primary side and piezoelectric transducers as the secondary side, both of which work in longitudinal o...

  13. Mechanical Resonators for Material Characterization: Sensor Development and Applications

    DEFF Research Database (Denmark)

    Casci Ceccacci, Andrea; Bosco, Filippo Giacomo

    The goals of this PhD project were to provide new approaches and developing new systems for material characterization, based on micro and nanomechanical sensors. Common issues that have shown to hinder large-scale integration of sensing techniques based on a micromechanical sensor are the readout......-co-Glycolic Acid (PLGA), which is of high relevance in the biomedical research field. A second version of the system is currently under development, and it aims to increase the throughput of the system allowing to read out multiple microbridge arrays. For material characterization, spectroscopy analysis is often...... considered a benchmark technology. Conventional infrared spectroscopy approaches commonly require milligram amount of sample. Considering the frame of reference given by the overall aim of the project, mechanical sensors can be exploited to provide a unique tool for performing spectroscopy on a limited...

  14. Design, fabrication and characterization of Computer Generated Holograms for anti-counterfeiting applications using OAM beams as light decoders.

    Science.gov (United States)

    Ruffato, Gianluca; Rossi, Roberto; Massari, Michele; Mafakheri, Erfan; Capaldo, Pietro; Romanato, Filippo

    2017-12-21

    In this paper, we present the design, fabrication and optical characterization of computer-generated holograms (CGH) encoding information for light beams carrying orbital angular momentum (OAM). Through the use of a numerical code, based on an iterative Fourier transform algorithm, a phase-only diffractive optical element (PO-DOE) specifically designed for OAM illumination has been computed, fabricated and tested. In order to shape the incident beam into a helicoidal phase profile and generate light carrying phase singularities, a method based on transmission through high-order spiral phase plates (SPPs) has been used. The phase pattern of the designed holographic DOEs has been fabricated using high-resolution Electron-Beam Lithography (EBL) over glass substrates coated with a positive photoresist layer (polymethylmethacrylate). To the best of our knowledge, the present study is the first attempt, in a comprehensive work, to design, fabricate and characterize computer-generated holograms encoding information for structured light carrying OAM and phase singularities. These optical devices appear promising as high-security optical elements for anti-counterfeiting applications.

  15. Rambrain - a library for virtually extending physical memory

    Directory of Open Access Journals (Sweden)

    M. Imgrund

    2017-01-01

    Full Text Available We introduce Rambrain, a user space C++ library that manages memory consumption of data-intense applications. Using Rambrain, one can overcommit memory beyond the size of physical memory present in the system. While there exist other more advanced techniques to solve this problem, Rambrain focuses on saving development time by providing a fast, general and easy-to-use solution. Rambrain takes care of temporarily swapping out data to disk and can handle multiples of the physical memory size present. Rambrain is thread-safe, OpenMP and MPI compatible and supports asynchronous I/O. The library is designed to require minimal changes to existing programs and pose only a small overhead.

  16. Growth and characterization of ammonium nickel-cobalt sulfate Tutton's salt for UV light applications

    Science.gov (United States)

    Ghosh, Santunu; Oliveira, Michelle; Pacheco, Tiago S.; Perpétuo, Genivaldo J.; Franco, Carlos J.

    2018-04-01

    We have obtained a set of sample crystals of the family of Tutton's salt comprise in the isomorphic series with general chemical formula (NH4)2NixCo(1-x) (SO4)2·6H2O, by employing growth from solutions by slow evaporation technique. The samples crystals were characterized by ICP-AES, X-ray powder diffraction analysis, thermogravimetric analysis, UV-Vis-NIR, Raman and FTIR spectroscopy. This type of material has been studied because of its physical and chemical properties not yet understood and they have potential technological applications. Chemical analysis of the samples by ICP-AES method allowed us to investigate the efficiency of the method of growth used. Thermogravimetric analysis provides the information about the thermal stability of the obtained crystals for high temperature applications, and powder X-ray diffraction analysis at ambient and high temperature reveals the structural quality and structural change of the samples respectively. We have used Raman spectroscopy in the range 100-4000 cm-1 and FTIR spectroscopy in the range 400-4000 cm-1 to understand the internal vibrational mode of the octahedral complexes [Ni(H2O)6]2+ and [Co(H2O)6]2+, SO42- and NH4+ tetrahedra. The transmittance of our mixed ammonium nickel cobalt sulfate hexahydrate (ACNSH) crystals is 75% in the UV region, which indicates that they are ideal to use in UV light filters and UV sensors.

  17. SU-G-TeP2-07: Dosimetric Characterization of a New HDR Multi-Channel Esophageal Applicator for Brachytherapy

    Energy Technology Data Exchange (ETDEWEB)

    Zhao, A; Gao, S; Greskovich, J; Wilkinson, D [Cleveland Clinic, Cleveland, OH (United States); Diener, T [Cleveland State University, Cleveland, OH (United States)

    2016-06-15

    Purpose: To characterize the dose distribution of a new multi-channel esophageal applicator for brachytherapy HDR treatment, and particularly the effect of the presence of air or water in the applicator’s expansion balloon. Methods: A new multi-channel (6) inflatable applicator for esophageal HDR has been developed in house and tested in a simple water phantom. CT image sets were obtained under several balloon expansions (80ml of air, 50 cc of water), and channel loadings and used with the Oncentra (Elekta) planning system based on TG43 formalism. 400 cGy was prescribed to a plane 1cm away from the applicator. Planar dose distributions were measured for that plane and one next to the applicator using Gafchromic EBT3 film and scanned by a Vidar VXR-12 film digitizer. Film and TPS generated dose distributions of film were sent to OmniPro I’mRT (iba DOSIMETRY) for analysis. 2D dose profiles in both X and Y directions were compared and gamma analysis performed. Results: Film dose measurement of the air-inflated applicator is lower than the TPS calculated dose by as much as 60%. Only 80.8% of the pixels passed the gamma criteria (3%/3mm). For the water-inflated applicator, the measured film dose is fairly close to the TPS calculated dose (typically within <3%). 99.84% of the pixels passed the gamma criteria (3%/3mm). Conclusion: TG43 based calculations worked well when water was used in the expansion balloon. However, when air is present in that balloon, the neglect of heterogeneity corrections in the TG43 calculation results in large differences between calculated and measured doses. This could result in severe underdosing when used in a patient. This study illustrates the need for a TPS with an advanced algorithm which can account for heterogeneity. Supported by Innovations Department, Cleveland Clinic.

  18. Application of small specimens to fracture mechanics characterization of irradiated pressure vessel steels

    International Nuclear Information System (INIS)

    Sokolov, M.A.; Wallin, K.; McCabe, D.E.

    1996-01-01

    In this study, precracked Charpy V-notch (PCVN) specimens were used to characterize the fracture toughness of unirradiated and irradiated reactor pressure vessel steels in the transition region by means of three-point static bending. Fracture toughness at cleavage instability was calculated in terms of elastic-plastic K Jc values. A statistical size correction based upon weakest-link theory was performed. The concept of a master curve was applied to analyze fracture toughness properties. Initially, size-corrected PCVN data from A 533 grade B steel, designated HSST Plate O2, were used to position the master curve and a 5% tolerance bound for K Jc data. By converting PCVN data to IT compact specimen equivalent K Jc data, the same master curve and 5% tolerance bound curve were plotted against the Electric Power Research Institute valid linear-elastic K Jc database and the ASME lower bound K Ic curve. Comparison shows that the master curve positioned by testing several PCVN specimens describes very well the massive fracture toughness database of large specimens. These results give strong support to the validity of K Jc with respect to K Ic in general and to the applicability of PCVN specimens to measure fracture toughness of reactor vessel steels in particular. Finally, irradiated PCVN specimens of other materials were tested, and the results are compared to compact specimen data. The current results show that PCVNs demonstrate very good capacity for fracture toughness characterization of reactor pressure vessel steels. It provides an opportunity for direct measurement of fracture toughness of irradiated materials by means of precracking and testing Charpy specimens from surveillance capsules. However, size limits based on constraint theory restrict the operational test temperature range for K Jc data from PCVN specimens. 13 refs., 8 figs., 1 tab

  19. Carbon and oxide nanostructures. Synthesis, characterisation and applications

    Energy Technology Data Exchange (ETDEWEB)

    Yahya, Noorhana [Universiti Teknologi PETRONAS, Tronoh, Perak (Malaysia). Dept. of Fundamental and Applied Sciences

    2010-07-01

    This volume covers all aspects of carbon and oxide based nanostructured materials. The topics include synthesis, characterization and application of carbon-based namely carbon nanotubes, carbon nanofibres, fullerenes, carbon filled composites etc. In addition, metal oxides namely, ZnO, TiO2, Fe2O3, ferrites, garnets etc., for various applications like sensors, solar cells, transformers, antennas, catalysts, batteries, lubricants, are presented. The book also includes the modeling of oxide and carbon based nanomaterials. The book covers the topics: - Synthesis, characterization and application of carbon nanotubes, carbon nanofibres, fullerenes - Synthesis, characterization and application of oxide based nanomaterials. - Nanostructured magnetic and electric materials and their applications. - Nanostructured materials for petro-chemical industry. - Oxide and carbon based thin films for electronics and sustainable energy. - Theory, calculations and modeling of nanostructured materials. (orig.)

  20. Development and characterization of new phosphorus based flame ...

    Indian Academy of Sciences (India)

    A study was made in the present investigation on the development and characterization of triphenyl phosphine oxide based phosphorus tetraglycidyl epoxy nanocomposites denoted as 'C' and to find out its suitability for use in high performance applications. The synthesized resin was characterized by Fourier transform ...

  1. A quantum-classical simulation of a multi-surface multi-mode ...

    Indian Academy of Sciences (India)

    Multi surface multi mode quantum dynamics; parallelized quantum classical approach; TDDVR method. 1. ... cal simulation on molecular system is a great cha- llenge for ..... on a multiple core cluster with shared memory using. OpenMP based ...

  2. Synthesis, characterization and application in biomedicine of a novel chondroitin sulfate based hydrogel and bioadhesive

    Science.gov (United States)

    Strehin, Iossif

    Clinically, there exists a need for adhesive biomaterials. There is room to improve upon what is currently on the market as it is either too toxic, lacks the required adhesive strength and/or lacks the desired degradation properties. The general goals of this thesis all focused on designing a biomaterial which would improve upon these shortcomings while at the same time allow for modifications to meet the needs for the specific application of interest. To accomplish this task, it was important to choose the appropriate composition and crosslinking chemistry which will allow the most flexibility. Chondroitin sulfate (CS) was chosen as the principle component of the hydrogel because it is a ubiquitous glycosaminoglycan (GAG) found in almost all tissues in the body. Many variants of CS exist with each one possessing unique biological activity allowing for tight control over these properties of the material. To modulate cell migration through the adhesive, polyethylene glycol (PEG) or blood was used as the second constituent. The former made the scaffold act as a cell barrier while the ladder could be used in varying concentrations to modulate cell adhesion and migration into the biomaterial. Also, the CS and blood components are both biodegradable and degradation can be controlled using various methods. While the constituents were chosen to allow flexibility in the biological activity and cell migration into the scaffold, the crosslinking chemistry was chosen to allow control over the mechanical properties as well as to increase tissue adhesion. By functionalizing the carboxyl groups of the GAG with N-hydroxysuccinimide (NHS), the resulting chondroitin sulfate succinimidyl succinate (CS-NHS) molecule could react with primary amines on polymers to form a hydrogel as well as the primary amines on proteins comprising tissue to anchor the hydrogel to the tissue. The material has been characterized and optimized for several applications. The applications described here

  3. Site characterization plan:

    International Nuclear Information System (INIS)

    1988-01-01

    The Yucca Mountain site in Nevada is one of three candidate sites for the first geologic repository for radioactive waste. On May 28, 1986, it was recommended for detailed study in a program of site characterization. This site characterization plan (SCP) has been prepared in accordance with the requirements of the Nuclear Waste Policy Act to summarize the information collected to date about the geologic conditions at the site;to describe the conceptual designs for the repository and the waste package;and to present the plans for obtaining the geologic information necessary to demonstrate the suitability of the site for repository, to design the repository and the waste package, to prepare an environmental impact statement, and to obtain from the US Nuclear Regulatory Commission (NRC) an authorization to construct the repository. This introduction begins with a brief section on the process for siting and developing a repository, followed by a discussion of the pertinent legislation and regulations. A description of site characterization is presented next;it describes the facilities to be constructed for the site characterization program and explains the principal activities to be conducted during the program. Finally, the purpose, content, organizing principles, and organization of this site characterization plan are outlined, and compliance with applicable regulations is discussed

  4. Intact glycopeptide characterization using mass spectrometry.

    Science.gov (United States)

    Cao, Li; Qu, Yi; Zhang, Zhaorui; Wang, Zhe; Prytkova, Iya; Wu, Si

    2016-05-01

    Glycosylation is one of the most prominent and extensively studied protein post-translational modifications. However, traditional proteomic studies at the peptide level (bottom-up) rarely characterize intact glycopeptides (glycosylated peptides without removing glycans), so no glycoprotein heterogeneity information is retained. Intact glycopeptide characterization, on the other hand, provides opportunities to simultaneously elucidate the glycan structure and the glycosylation site needed to reveal the actual biological function of protein glycosylation. Recently, significant improvements have been made in the characterization of intact glycopeptides, ranging from enrichment and separation, mass spectroscopy (MS) detection, to bioinformatics analysis. In this review, we recapitulated currently available intact glycopeptide characterization methods with respect to their advantages and limitations as well as their potential applications.

  5. Evaluating the applicability of portable-XRF for the characterization of Hokkaido Obsidian sources. A comparison with INAA, ICP-MS and EPMA

    International Nuclear Information System (INIS)

    Lynch, S.C.

    2016-01-01

    As a result of the limited application of portable X-ray fluorescence (pXRF) in archaeological research in Japan it is necessary to compare this technique to proven, laboratory-based, analytical techniques. In this study instrumental neutron activation analysis, inductively-coupled plasma mass spectrometry, and electron probe microanalysis are used to validate pXRF and determine the overall suitability of this technique for archaeological obsidian provenance studies in Hokkaido, northern Japan. Furthermore, the results of this study are compared to previously published data to assess reproducibility and compatibility. This study demonstrates the reliability of pXRF for the rapid characterization of Hokkaido obsidian while contributing to the ongoing evaluation of the applicability of 'off-the-shelf' pXRF to obsidian provenance research in archaeology. (author)

  6. Applications of Real Space Crystallography in Characterization of Dislocations in Geological Materials in a Scanning Electron Microscope (SEM)

    Science.gov (United States)

    Kaboli, S.; Burnley, P. C.

    2017-12-01

    new approach in microstructure characterization of deformed geologic materials in FE-SEM, without the use of etching or decoration techniques, has valuable applications to both experimentally deformed and naturally deformed specimens.

  7. Human mesenchymal stromal cells : biological characterization and clinical application

    NARCIS (Netherlands)

    Bernardo, Maria Ester

    2010-01-01

    This thesis focuses on the characterization of the biological and functional properties of human mesenchymal stromal cells (MSCs), isolated from different tissue sources. The differentiation capacity of MSCs from fetal and adult tissues has been tested and compared. Umbilical cord blood (UCB) has

  8. Design, Fabrication and Characterization of an In Silico Cell Physiology lab for Bio Sensing Applications

    International Nuclear Information System (INIS)

    Haque, A ul; Rokkam, M; De Carlo, A R; Wereley, S T; Wells, H W; McLamb, W T; Roux, S J; Irazoqui, P P; Porterfield, D M

    2006-01-01

    In this paper, we report the design, fabrication and characterization of an In Silico cell physiology biochip for measuring Ca 2+ ion concentrations and currents around single cells. This device has been designed around specific science objectives of measuring real time multidimensional calcium flux patterns around sixteen Ceratopteris richardii fern spores in microgravity flight experiments and ground studies. The sixteen microfluidic cell holding pores are 150 by 150 μm each and have 4 Ag/AgCl electrodes leading into them. An SU-8 structural layer is used for insulation and packaging purposes. The In Silico cell physiology lab is wire bonded on to a custom PCB for easy interface with a state of the art data acquisition system. The electrodes are coated with a Ca 2+ ion selective membrane based on ETH-5234 ionophore and operated against an Ag/AgCl reference electrode. Initial characterization results have shown Nernst slopes of 30mv/decade that were stable over a number of measurement cycles. While this work is focused on technology to enable basic research on the Ceratopteris richardii spores, we anticipate that this type of cell physiology lab-on-a-chip will be broadly applied in biomedical and pharmacological research by making minor modifications to the electrode material and the measurement technique. Future applications include detection of glucose, hormones such as plant auxin, as well as multiple analyte detection on the same chip

  9. Characterizing wood-plastic composites via data-driven methodologies

    Science.gov (United States)

    John G. Michopoulos; John C. Hermanson; Robert Badaliance

    2007-01-01

    The recent increase of wood-plastic composite materials in various application areas has underlined the need for an efficient and robust methodology to characterize their nonlinear anisotropic constitutive behavior. In addition, the multiplicity of various loading conditions in structures utilizing these materials further increases the need for a characterization...

  10. Synthesis and characterization of carbon nano fibers for its application in the adsorption of toxic gases

    International Nuclear Information System (INIS)

    Juanico L, J.A.

    2004-01-01

    The production of carbon nano fibers (CNF's) by diverse techniques as the electric arc, laser ablation, or chemical deposition in vapor phase, among other, they have been so far used from final of the 90's. However, the synthesis method by discharge Glow arc of alternating current and high frequency developed by Pacheco and collaborators, is a once alternative for its obtaining. In the plasma Application Laboratory (LAP) of the National Institute of Nuclear Research (INlN) it was designed and manufactured a reactor of alternating current and high frequency that produces a Glow arc able to synthesize carbon nano fibers. Its were carried out nano fibers synthesis with different catalysts to different proportions and with distinct conditions of vacuum pressure and methane flow until obtaining the best nano fibers samples and for it, this nano structures were characterized by Scanning and Transmission Electron Microscopy, X-ray Diffraction, Raman spectrometry and EDS spectrometry. Once found the optimal conditions for the nano fibers production its were contaminated with NO 2 toxic gas and it was determined if they present adsorption, for it was used the thermal gravimetric analysis technique. This work is divided in three parts, in the first one, conformed by the chapters 1, at the 3, they are considered the foundations of the carbon nano fibers, their history, their characteristics, growth mechanisms, synthesis techniques, the thermal gravimetric analysis principles and the adsorption properties of the nano fibers. In the second part, consistent of the chapters 4 and 5, the methodology of synthesis and characterization of the nano fibers is provided. Finally, in third part its were carried out the activation energy calculation, the adsorption of the CNF's is analyzed and the conclusions are carried out. The present study evaluates the adsorption of environmental gas pollutants as the nitrogen oxides on carbon nano fibers at environmental or near conditions. Also

  11. Characterization and Application of Enterocin RM6, a Bacteriocin from Enterococcus faecalis

    Directory of Open Access Journals (Sweden)

    En Huang

    2013-01-01

    Full Text Available Use of bacteriocins in food preservation has received great attention in recent years. The goal of this study is to characterize enterocin RM6 from Enterococcus faecalis OSY-RM6 and investigate its efficacy against Listeria monocytogenes in cottage cheese. Enterocin RM6 was purified from E. faecalis culture supernatant using ion exchange column, multiple C18-silica cartridges, followed by reverse-phase high-performance liquid chromatography. The molecular weight of enterocin RM6 is 7145.0823 as determined by mass spectrometry (MS. Tandem mass spectrometry (MS/MS analysis revealed that enterocin RM6 is a 70-residue cyclic peptide with a head-to-tail linkage between methionine and tryptophan residues. The peptide sequence of enterocin RM6 was further confirmed by sequencing the structural gene of the peptide. Enterocin RM6 is active against Gram-positive bacteria, including L. monocytogenes, Bacillus cereus, and methicillin-resistant Staphylococcus aureus (MRSA. Enterocin RM6 (final concentration in cottage cheese, 80 AU/mL caused a 4-log reduction in population of L. monocytogenes inoculated in cottage cheese within 30 min of treatment. Therefore, enterocin RM6 has potential applications as a potent antimicrobial peptide against foodborne pathogens in food.

  12. Characterization of cellulose nanowhiskers

    International Nuclear Information System (INIS)

    Nascimento, Nayra R.; Pinheiro, Ivanei F.; Morales, Ana R.; Ravagnani, Sergio P.; Mei, Lucia

    2015-01-01

    Cellulose is the most abundant polymer earth. The cellulose nanowhiskers can be extracted from the cellulose. These have attracted attention for its use in nanostructured materials for various applications, such as nanocomposites, because they have peculiar characteristics, among them, high aspect ratio, biodegradability and excellent mechanical properties. This work aims to characterize cellulose nanowhiskers from microcrystalline cellulose. Therefore, these materials were characterized by X-ray diffraction (XRD) to assess the degree of crystallinity, infrared spectroscopy (FT-IR), transmission electron microscopy (TEM) to the morphology of nanowhiskers and thermal stability was evaluated by Thermogravimetric Analysis (TGA). (author)

  13. Characterizing interdependencies of multiple time series theory and applications

    CERN Document Server

    Hosoya, Yuzo; Takimoto, Taro; Kinoshita, Ryo

    2017-01-01

    This book introduces academic researchers and professionals to the basic concepts and methods for characterizing interdependencies of multiple time series in the frequency domain. Detecting causal directions between a pair of time series and the extent of their effects, as well as testing the non existence of a feedback relation between them, have constituted major focal points in multiple time series analysis since Granger introduced the celebrated definition of causality in view of prediction improvement. Causality analysis has since been widely applied in many disciplines. Although most analyses are conducted from the perspective of the time domain, a frequency domain method introduced in this book sheds new light on another aspect that disentangles the interdependencies between multiple time series in terms of long-term or short-term effects, quantitatively characterizing them. The frequency domain method includes the Granger noncausality test as a special case. Chapters 2 and 3 of the book introduce an i...

  14. Small-Molecule Binding Aptamers: Selection Strategies, Characterization, and Applications

    Directory of Open Access Journals (Sweden)

    Annamaria eRuscito

    2016-05-01

    Full Text Available Aptamers are single-stranded, synthetic oligonucleotides that fold into 3-dimensional shapes capable of binding non-covalently with high affinity and specificity to a target molecule. They are generated via an in vitro process known as the Systematic Evolution of Ligands by EXponential enrichment, from which candidates are screened and characterized, and then applied in aptamer-based biosensors for target detection. Aptamers for small molecule targets such as toxins, antibiotics, molecular markers, drugs, and heavy metals will be the focus of this review. Their accurate detection is ultimately needed for the protection and wellbeing of humans and animals. However, issues such as the drastic difference in size of the aptamer and small molecule make it challenging to select, characterize, and apply aptamers for the detection of small molecules. Thus, recent (since 2012 notable advances in small molecule aptamers, which have overcome some of these challenges, are presented here, while defining challenges that still exist are discussed

  15. The characterization of HG10MNN and an evaluation of suitability for use in naval applications

    Energy Technology Data Exchange (ETDEWEB)

    Hawxhurst, K.L.; Westerberg, J.M., E-mail: m166918@usna.edu; Woertz, J.C., E-mail: woertz@usna.edu

    2016-06-15

    Highlights: • HG10MNN alloy showed good strength, hardness and ductility compared to NAB. • In air, four point bending fatigue tests suggest an endurance limit between 8 and 10 ksi. • As compared to NAB, HG10MNN has excellent casting and corrosion behavior. - Abstract: An initial mechanical evaluation and standard material characterization were conducted for the stainless steel alloy HG10MNN in order to evaluate its use in naval and marine applications. HG10MNN is a newly developed stainless steel designed for improved resistance to mechanical and thermal fatigue. This material could eventually replace the Nickel–Aluminum–Bronze (NAB) currently used in many naval propulsion systems, however, additional testing is required to validate the alloy's performance characteristics. Although stainless steels are commonly used in marine applications, there is insufficient HG10MNN documentation to permit its use in naval ship design. This investigation also involved an evaluation of castability and machinability to determine whether the material could be formed into the complex shapes required in a modern naval construction. Initial results showed that the alloy exhibits a fully austenitic microstructure in the as-cast condition, while maintaining acceptable mechanical properties and superior castability as compared to NAB.

  16. The characterization of HG10MNN and an evaluation of suitability for use in naval applications

    International Nuclear Information System (INIS)

    Hawxhurst, K.L.; Westerberg, J.M.; Woertz, J.C.

    2016-01-01

    Highlights: • HG10MNN alloy showed good strength, hardness and ductility compared to NAB. • In air, four point bending fatigue tests suggest an endurance limit between 8 and 10 ksi. • As compared to NAB, HG10MNN has excellent casting and corrosion behavior. - Abstract: An initial mechanical evaluation and standard material characterization were conducted for the stainless steel alloy HG10MNN in order to evaluate its use in naval and marine applications. HG10MNN is a newly developed stainless steel designed for improved resistance to mechanical and thermal fatigue. This material could eventually replace the Nickel–Aluminum–Bronze (NAB) currently used in many naval propulsion systems, however, additional testing is required to validate the alloy's performance characteristics. Although stainless steels are commonly used in marine applications, there is insufficient HG10MNN documentation to permit its use in naval ship design. This investigation also involved an evaluation of castability and machinability to determine whether the material could be formed into the complex shapes required in a modern naval construction. Initial results showed that the alloy exhibits a fully austenitic microstructure in the as-cast condition, while maintaining acceptable mechanical properties and superior castability as compared to NAB.

  17. Fabrication and Characterization of Single-Aperture 3.5-MHz BNT-Based Ultrasonic Transducer for Therapeutic Application.

    Science.gov (United States)

    Taghaddos, Elaheh; Ma, T; Zhong, Hui; Zhou, Qifa; Wan, M X; Safari, Ahmad

    2018-04-01

    This paper discusses the fabrication and characterization of 3.5-MHz single-element transducers for therapeutic applications in which the active elements are made of hard lead-free BNT-based and hard commercial PZT (PZT-841) piezoceramics. Composition of (BiNa 0.88 K 0.08 Li 0.04 ) 0.5 (Ti 0.985 Mn 0.015 )O 3 (BNKLT88-1.5Mn) was used to develop lead-free piezoelectric ceramic. Mn-doped samples exhibited high mechanical quality factor ( ) of 970, thickness coupling coefficient ( ) of 0.48, a dielectric constant ( ) of 310 (at 1 kHz), depolarization temperature ( ) of 200 °C, and coercive field ( ) of 52.5 kV/cm. Two different unfocused single-element transducers using BNKLT88-1.5Mn and PZT-841 with the same center frequency of 3.5 MHz and similar aperture size of 10.7 and 10.5 mm were fabricated. Pulse-echo response, acoustic frequency spectrum, acoustic pressure field, and acoustic intensity field of transducers were characterized. The BNT-based transducer shows linear response up to the peak-to-peak voltage of 105 V in which the maximum rarefactional acoustic pressure of 1.1 MPa, and acoustic intensity of 43 W/cm 2 were achieved. Natural focal point of this transducer was at 60 mm from the surface of the transducer.

  18. Synchrotron Bragg diffraction imaging characterization of synthetic diamond crystals for optical and electronic power device applications.

    Science.gov (United States)

    Tran Thi, Thu Nhi; Morse, J; Caliste, D; Fernandez, B; Eon, D; Härtwig, J; Barbay, C; Mer-Calfati, C; Tranchant, N; Arnault, J C; Lafford, T A; Baruchel, J

    2017-04-01

    Bragg diffraction imaging enables the quality of synthetic single-crystal diamond substrates and their overgrown, mostly doped, diamond layers to be characterized. This is very important for improving diamond-based devices produced for X-ray optics and power electronics applications. The usual first step for this characterization is white-beam X-ray diffraction topography, which is a simple and fast method to identify the extended defects (dislocations, growth sectors, boundaries, stacking faults, overall curvature etc. ) within the crystal. This allows easy and quick comparison of the crystal quality of diamond plates available from various commercial suppliers. When needed, rocking curve imaging (RCI) is also employed, which is the quantitative counterpart of monochromatic Bragg diffraction imaging. RCI enables the local determination of both the effective misorientation, which results from lattice parameter variation and the local lattice tilt, and the local Bragg position. Maps derived from these parameters are used to measure the magnitude of the distortions associated with polishing damage and the depth of this damage within the volume of the crystal. For overgrown layers, these maps also reveal the distortion induced by the incorporation of impurities such as boron, or the lattice parameter variations associated with the presence of growth-incorporated nitrogen. These techniques are described, and their capabilities for studying the quality of diamond substrates and overgrown layers, and the surface damage caused by mechanical polishing, are illustrated by examples.

  19. BEAGLE: an application programming interface and high-performance computing library for statistical phylogenetics.

    Science.gov (United States)

    Ayres, Daniel L; Darling, Aaron; Zwickl, Derrick J; Beerli, Peter; Holder, Mark T; Lewis, Paul O; Huelsenbeck, John P; Ronquist, Fredrik; Swofford, David L; Cummings, Michael P; Rambaut, Andrew; Suchard, Marc A

    2012-01-01

    Phylogenetic inference is fundamental to our understanding of most aspects of the origin and evolution of life, and in recent years, there has been a concentration of interest in statistical approaches such as Bayesian inference and maximum likelihood estimation. Yet, for large data sets and realistic or interesting models of evolution, these approaches remain computationally demanding. High-throughput sequencing can yield data for thousands of taxa, but scaling to such problems using serial computing often necessitates the use of nonstatistical or approximate approaches. The recent emergence of graphics processing units (GPUs) provides an opportunity to leverage their excellent floating-point computational performance to accelerate statistical phylogenetic inference. A specialized library for phylogenetic calculation would allow existing software packages to make more effective use of available computer hardware, including GPUs. Adoption of a common library would also make it easier for other emerging computing architectures, such as field programmable gate arrays, to be used in the future. We present BEAGLE, an application programming interface (API) and library for high-performance statistical phylogenetic inference. The API provides a uniform interface for performing phylogenetic likelihood calculations on a variety of compute hardware platforms. The library includes a set of efficient implementations and can currently exploit hardware including GPUs using NVIDIA CUDA, central processing units (CPUs) with Streaming SIMD Extensions and related processor supplementary instruction sets, and multicore CPUs via OpenMP. To demonstrate the advantages of a common API, we have incorporated the library into several popular phylogenetic software packages. The BEAGLE library is free open source software licensed under the Lesser GPL and available from http://beagle-lib.googlecode.com. An example client program is available as public domain software.

  20. Meta-analysis methods for combining multiple expression profiles: comparisons, statistical characterization and an application guideline.

    Science.gov (United States)

    Chang, Lun-Ching; Lin, Hui-Min; Sibille, Etienne; Tseng, George C

    2013-12-21

    As high-throughput genomic technologies become accurate and affordable, an increasing number of data sets have been accumulated in the public domain and genomic information integration and meta-analysis have become routine in biomedical research. In this paper, we focus on microarray meta-analysis, where multiple microarray studies with relevant biological hypotheses are combined in order to improve candidate marker detection. Many methods have been developed and applied in the literature, but their performance and properties have only been minimally investigated. There is currently no clear conclusion or guideline as to the proper choice of a meta-analysis method given an application; the decision essentially requires both statistical and biological considerations. We performed 12 microarray meta-analysis methods for combining multiple simulated expression profiles, and such methods can be categorized for different hypothesis setting purposes: (1) HS(A): DE genes with non-zero effect sizes in all studies, (2) HS(B): DE genes with non-zero effect sizes in one or more studies and (3) HS(r): DE gene with non-zero effect in "majority" of studies. We then performed a comprehensive comparative analysis through six large-scale real applications using four quantitative statistical evaluation criteria: detection capability, biological association, stability and robustness. We elucidated hypothesis settings behind the methods and further apply multi-dimensional scaling (MDS) and an entropy measure to characterize the meta-analysis methods and data structure, respectively. The aggregated results from the simulation study categorized the 12 methods into three hypothesis settings (HS(A), HS(B), and HS(r)). Evaluation in real data and results from MDS and entropy analyses provided an insightful and practical guideline to the choice of the most suitable method in a given application. All source files for simulation and real data are available on the author's publication website.

  1. Time-Resolved Fluorescence Spectroscopy and Fluorescence Lifetime Imaging Microscopy for Characterization of Dendritic Polymer Nanoparticles and Applications in Nanomedicine

    Directory of Open Access Journals (Sweden)

    Alexander Boreham

    2016-12-01

    Full Text Available The emerging field of nanomedicine provides new approaches for the diagnosis and treatment of diseases, for symptom relief and for monitoring of disease progression. One route of realizing this approach is through carefully constructed nanoparticles. Due to the small size inherent to the nanoparticles a proper characterization is not trivial. This review highlights the application of time-resolved fluorescence spectroscopy and fluorescence lifetime imaging microscopy (FLIM for the analysis of nanoparticles, covering aspects ranging from molecular properties to particle detection in tissue samples. The latter technique is particularly important as FLIM allows for distinguishing of target molecules from the autofluorescent background and, due to the environmental sensitivity of the fluorescence lifetime, also offers insights into the local environment of the nanoparticle or its interactions with other biomolecules. Thus, these techniques offer highly suitable tools in the fields of particle development, such as organic chemistry, and in the fields of particle application, such as in experimental dermatology or pharmaceutical research.

  2. Time-Resolved Fluorescence Spectroscopy and Fluorescence Lifetime Imaging Microscopy for Characterization of Dendritic Polymer Nanoparticles and Applications in Nanomedicine.

    Science.gov (United States)

    Boreham, Alexander; Brodwolf, Robert; Walker, Karolina; Haag, Rainer; Alexiev, Ulrike

    2016-12-24

    The emerging field of nanomedicine provides new approaches for the diagnosis and treatment of diseases, for symptom relief and for monitoring of disease progression. One route of realizing this approach is through carefully constructed nanoparticles. Due to the small size inherent to the nanoparticles a proper characterization is not trivial. This review highlights the application of time-resolved fluorescence spectroscopy and fluorescence lifetime imaging microscopy (FLIM) for the analysis of nanoparticles, covering aspects ranging from molecular properties to particle detection in tissue samples. The latter technique is particularly important as FLIM allows for distinguishing of target molecules from the autofluorescent background and, due to the environmental sensitivity of the fluorescence lifetime, also offers insights into the local environment of the nanoparticle or its interactions with other biomolecules. Thus, these techniques offer highly suitable tools in the fields of particle development, such as organic chemistry, and in the fields of particle application, such as in experimental dermatology or pharmaceutical research.

  3. Characterization and application of halloysite nanotubes in semiconductor

    International Nuclear Information System (INIS)

    Basilia, Blessie; Sudario, Franck; Clemente, Richard; Millare, Jeremiah; Abad, Jojo

    2013-01-01

    The demand for low cost and reliable conductive die attach paste continues to increase because of the recent development in the semiconductor and electronics industry. Hybrid products with vertically and horizontally integrated components attach material with good electrical conductivity and excellent reliability. This has driven interest in polymers filled with silver particles that can deliver good performance and reliability at reduced cost. The challenge lies with the metal and polymer composition of the available die attach epoxies in the market with low Tg (glass transition temperature) and high CTE (coefficient of thermal expansion) compared to other components. Adding Halloysite Nanotube (HNT) to make a silver-filled epoxy (SFE) nanocomposite by in-situ intercalation method, the desired electrical conductivity of the epoxy matrix can be achieved without compromising its adhesion strength which is suitable for semiconductor die attach application. A custom design of experiment was used to study the effects of HNT mixed at varying composition into the silver filled epoxy matrix. Test results based on ASTM, JEDEC and military standards indicated that the desirable electrical conductivity and shear strength applicable to semiconductor die attach application can be achieved at 3% to 6% HNT composition. There was a substantial increase in Tg from 219°C t 228°C and reduction in CTE from 117 to 76 ppm/°C. Exfoliated structures of embedded HNT in the cured polymer matrix were observed in the SEM (Scanning Electron Microscopy) micrographs. Considering the electrical conductivity, adhesion strength, Tg and CTE, the HNT content of 3 to 6% is a good range to produce this material to attain good functionality and reliability. Combining HNT to make a silver filled epoxy-clay nanocomposite is highly feasible for semiconductor and electronics application. (author)

  4. Functionalized polypyrrole film: synthesis, characterization, and potential applications in chemical and biological sensors.

    Science.gov (United States)

    Dong, Hua; Cao, Xiaodong; Li, Chang Ming

    2009-07-01

    In this paper, we report the synthesis of a carboxyl-functionalized polypyrrole derivative, a poly(pyrrole-N-propanoic acid) (PPPA) film, by electrochemical polymerization, and the investigation of its basic properties via traditional characterization techniques such as confocal-Raman, FTIR, SEM, AFM, UV-vis, fluorescence microscopy, and contact-angle measurements. The experimental data show that the as-prepared PPPA film exhibits a hydrophilic nanoporous structure, abundant -COOH functional groups in the polymer backbone, and high fluorescent emission under laser excitation. On the basis of these unique properties, further experiments were conducted to demonstrate three potential applications of the PPPA film in chemical and biological sensors: a permeable and permselective membrane, a membrane with specific recognition sites for biomolecule immobilization, and a fluorescent conjugated polymer for amplification of fluorescence quenching. Specifically, the permeability and permselectivity of ion species through the PPPA film are detected by means of rotating-disk-electrode voltammetry; the specific recognition sites on the film surface are confirmed with protein immobilization, and the amplification of fluorescence quenching is measured by the addition of a quenching agent with fluorescence microscopy. The results are in good agreement with our expectations.

  5. On a model of three-dimensional bursting and its parallel implementation

    Science.gov (United States)

    Tabik, S.; Romero, L. F.; Garzón, E. M.; Ramos, J. I.

    2008-04-01

    A mathematical model for the simulation of three-dimensional bursting phenomena and its parallel implementation are presented. The model consists of four nonlinearly coupled partial differential equations that include fast and slow variables, and exhibits bursting in the absence of diffusion. The differential equations have been discretized by means of a second-order accurate in both space and time, linearly-implicit finite difference method in equally-spaced grids. The resulting system of linear algebraic equations at each time level has been solved by means of the Preconditioned Conjugate Gradient (PCG) method. Three different parallel implementations of the proposed mathematical model have been developed; two of these implementations, i.e., the MPI and the PETSc codes, are based on a message passing paradigm, while the third one, i.e., the OpenMP code, is based on a shared space address paradigm. These three implementations are evaluated on two current high performance parallel architectures, i.e., a dual-processor cluster and a Shared Distributed Memory (SDM) system. A novel representation of the results that emphasizes the most relevant factors that affect the performance of the paralled implementations, is proposed. The comparative analysis of the computational results shows that the MPI and the OpenMP implementations are about twice more efficient than the PETSc code on the SDM system. It is also shown that, for the conditions reported here, the nonlinear dynamics of the three-dimensional bursting phenomena exhibits three stages characterized by asynchronous, synchronous and then asynchronous oscillations, before a quiescent state is reached. It is also shown that the fast system reaches steady state in much less time than the slow variables.

  6. Hybrid MPI-OpenMP Parallelism in the ONETEP Linear-Scaling Electronic Structure Code: Application to the Delamination of Cellulose Nanofibrils.

    Science.gov (United States)

    Wilkinson, Karl A; Hine, Nicholas D M; Skylaris, Chris-Kriton

    2014-11-11

    We present a hybrid MPI-OpenMP implementation of Linear-Scaling Density Functional Theory within the ONETEP code. We illustrate its performance on a range of high performance computing (HPC) platforms comprising shared-memory nodes with fast interconnect. Our work has focused on applying OpenMP parallelism to the routines which dominate the computational load, attempting where possible to parallelize different loops from those already parallelized within MPI. This includes 3D FFT box operations, sparse matrix algebra operations, calculation of integrals, and Ewald summation. While the underlying numerical methods are unchanged, these developments represent significant changes to the algorithms used within ONETEP to distribute the workload across CPU cores. The new hybrid code exhibits much-improved strong scaling relative to the MPI-only code and permits calculations with a much higher ratio of cores to atoms. These developments result in a significantly shorter time to solution than was possible using MPI alone and facilitate the application of the ONETEP code to systems larger than previously feasible. We illustrate this with benchmark calculations from an amyloid fibril trimer containing 41,907 atoms. We use the code to study the mechanism of delamination of cellulose nanofibrils when undergoing sonification, a process which is controlled by a large number of interactions that collectively determine the structural properties of the fibrils. Many energy evaluations were needed for these simulations, and as these systems comprise up to 21,276 atoms this would not have been feasible without the developments described here.

  7. Characterization of commercial supercapacitors for low temperature applications

    OpenAIRE

    Iwama, Etsuro; Taberna, Pierre-Louis; Azais, Philippe; Brégeon, Laurent; Simon, Patrice

    2012-01-01

    International audience; Electrochemical characterizations at low temperature and floating tests have been performed on 600F commercial supercapacitor (SC) for acetonitrile (AN)-based and AN + methyl acetate (MA) mixed electrolytes. From −40 to +20 °C, AN electrolyte showed slightly higher capacitance than those of AN + MA mixed electrolytes (25 and 33 vol.% of MA). At −55 °C, however, AN electrolyte did not cycle at all, while MA mixed electrolyte normally cycled with a slight decrease in the...

  8. Site characterization plan:

    International Nuclear Information System (INIS)

    1988-01-01

    The Yucca Mountain site in Nevada is one of three candidate sites for the first geologic repository for radioactive waste. On May 28, 1986, it was recommended for detailed study in a program of site characterization. This site characterization plan (SCP) has been prepared in acordance with the requirements of the Nuclear Waste Policy Act to summarize the information collected to date about the geologic conditions at the site;to describe the conceptual designs for the repository and the waste package and to present the plans for obtaining the geologic information necessary to demonstrate the suitability of the site for a repository, to design the repository and the waste package, to prepare an environmental impact statement, and to obtain from the US Nuclear Regulatory Commission (NRC) an authorization to construct the repository. This introduction begins with a brief section on the process for siting and eveloping a repository, followed by a discussion of the pertinent legislation and regulations. A description of site characterization is presented next;it describes the facilities to be constructed for the site characterization program and explains the principal activities to be conducted during the program. Finally, the purpose, content, organizing prinicples, and organization of this site characterization plan are outlined, and compliance with applicable regulations is discussed. 880 refs., 130 figs., 25 tabs

  9. Synthesis and characterization of LDH/Ppi composite and its application as adsorbent of 2,4-dichlorophenoxyacetic (herbicide)

    International Nuclear Information System (INIS)

    Pacheco, I.S.; Oliveira, R.S.; Girotto, L.G.; Freitas, L.L. de; Amaral, F.A. do; Canobre, S.C.

    2016-01-01

    This work had as main objective the synthesis and characterization of LDH [Co-Al-Cl] method by hydrolysis of urea and then its synthesized polypyrrole coating by chemically targeting the application as adsorbent dichlorophenoxyacetic acid (2,4-D). The x-ray diffractogram of well defined showed diffraction peaks corresponding to the planes 003, 006, 009 and 110 which allow them to rhombohedral indexes and lamellar structure. The composite LDH / Ppi had a percentage of 49% herbicide retention in aqueous solution. From the investigated adsorption isotherm models that more fit the experimental data was the Freundlich, so it could be inferred that the interaction between the LDH / Ppi and the herbicide was physical, ie an rapid, reversible adsorption and does not specify. (author)

  10. Sol-gel synthesized ZnO for optoelectronics applications: a characterization review

    Science.gov (United States)

    Harun, Kausar; Hussain, Fayaz; Purwanto, Agus; Sahraoui, Bouchta; Zawadzka, Anna; Azmin Mohamad, Ahmad

    2017-12-01

    The rapid growth in green technology has resulted in a marked increase in the incorporation of ZnO in energy and optoelectronic devices. Research involving ZnO is being given renewed attention in the quest to fully exploit its promising properties. The purity and state of defects in the ZnO system are optimized through several modifications to the synthesis conditions and the starting materials. These works have been verified through a series of characterizations. This review covers the essential characterization outcomes of pure ZnO nanoparticles. Emphasis is placed on recent techniques, examples and some issues concerning sol-gel synthesized ZnO nanoparticles. Thermal, phase, structural and morphological observations are combined to ascertain the level of purity of ZnO. The subsequent elemental and optical characterizations are also discussed. This review would be the collective information and suggestions at one place for investigators to focus on the best development of ZnO-based optical and energy devices.

  11. Application and interview features used to assess applicant qualifications for residency training.

    Science.gov (United States)

    Butts, Allison R; Smith, Kelly M

    2015-02-01

    To determine what factors residency program directors (RPDs) consider and what methods they use to assess applicants. Respondents ranked the importance of 27 applicant features within domains: academics/credentials, application features/program fit, involvement, professional experience, research/ teaching experience, and postgraduate year 1 (PGY-1) residency experience. Rank was assigned in an ordinal fashion (1 = most important feature). The domains were characterized by their importance (mean % ± SD) in selecting candidates for interviews. Participants characterized their screening process according to 8 application and 6 interview features and the corresponding applicant dimensions evaluated. RPDs rated the importance of 14 methods applicants used to communicate with the program and 3 methods by which references were obtained. A Likert scale was used for rating (4 = crucial features). The approaches the program used to evaluate 12 application features or interpersonal interactions were reported. The most important application domain was application features/program fit (26.28 ± 19.11). The highest ranked application feature was program fit (2.04 ± 1.17). The applicant's cover letter, recommendation letters, curriculum vitae, and interview meal were commonly used to assess communication and interpersonal skills, knowledge base, and experience. The most important communication venue was the on-site interview (3.95 ± 0.23). Recommendations solicited by RPDs (3.42 ± 0.69) were most important. Programs formally evaluated the interview (89%) and recommendation letters (84%). Understanding the importance that RPDs place on application and interview features, as well as the process used to assess communication skills and interpersonal interactions, should allow residency candidates to become more competitive residency prospects.

  12. Molybdenum Tube Characterization report

    Energy Technology Data Exchange (ETDEWEB)

    Beaux II, Miles Frank [Los Alamos National Lab. (LANL), Los Alamos, NM (United States); Usov, Igor Olegovich [Los Alamos National Lab. (LANL), Los Alamos, NM (United States)

    2017-02-07

    Chemical vapor deposition (CVD) techniques have been utilized to produce free-standing molybdenum tubes with the end goal of nuclear fuel clad applications. In order to produce tubes with properties desirable for this application, deposition rates were lowered requiring long deposition durations on the order of 50 hours. Standard CVD methods as well as fluidized-bed CVD (FBCVD) methods were applied towards these objectives. Characterization of the tubes produced in this manner revealed material suitable for fuel clad applications, but lacking necessary uniformity across the length of the tubes. The production of freestanding Mo tubes that possess the desired properties across their entire length represents an engineering challenge that can be overcome in a next iteration of the deposition system.

  13. Development and characterization of attenuated metabolic mutants of Bordetella bronchiseptica for applications in vaccinology.

    Science.gov (United States)

    Yevsa, Tetyana; Ebensen, Thomas; Fuchs, Barbara; Zygmunt, Beata; Libanova, Rimma; Gross, Roy; Schulze, Kai; Guzmán, Carlos A

    2013-01-01

    Bordetella bronchiseptica is an important pathogen causing a number of veterinary respiratory syndromes in agriculturally important and food-producing confinement-reared animals, resulting in great economic losses annually amounting to billions of euros worldwide. Currently available live vaccines are incompletely satisfactory in terms of efficacy and safety. An efficient vaccine for livestock animals would allow reducing the application of antibiotics, thereby preventing the massive release of pharmaceuticals into the environment. Here, we describe two new potential vaccine strains based on the BB7865 strain. Two independent attenuating mutations were incorporated by homologous recombination in order to make negligible the risk of recombination and subsequent reversion to the virulent phenotype. The mutations are critical for bacterial metabolism, resistance to oxidative stress, intracellular survival and in vivo persistence. The resulting double mutants BB7865 risA aroA and BB7865 risA dapE were characterized as promising vaccine candidates, which are able to confer protection against colonization of the lower respiratory tract after sublethal challenge with the wild-type strain. © 2012 Society for Applied Microbiology and Blackwell Publishing Ltd.

  14. Roofline Analysis in the Intel® Advisor to Deliver Optimized Performance for applications on Intel® Xeon Phi™ Processor

    Energy Technology Data Exchange (ETDEWEB)

    Koskela, Tuomas S.; Lobet, Mathieu; Deslippe, Jack; Matveev, Zakhar

    2017-05-23

    In this session we show, in two case studies, how the roofline feature of Intel Advisor has been utilized to optimize the performance of kernels of the XGC1 and PICSAR codes in preparation for Intel Knights Landing architecture. The impact of the implemented optimizations and the benefits of using the automatic roofline feature of Intel Advisor to study performance of large applications will be presented. This demonstrates an effective optimization strategy that has enabled these science applications to achieve up to 4.6 times speed-up and prepare for future exascale architectures. # Goal/Relevance of Session The roofline model [1,2] is a powerful tool for analyzing the performance of applications with respect to the theoretical peak achievable on a given computer architecture. It allows one to graphically represent the performance of an application in terms of operational intensity, i.e. the ratio of flops performed and bytes moved from memory in order to guide optimization efforts. Given the scale and complexity of modern science applications, it can often be a tedious task for the user to perform the analysis on the level of functions or loops to identify where performance gains can be made. With new Intel tools, it is now possible to automate this task, as well as base the estimates of peak performance on measurements rather than vendor specifications. The goal of this session is to demonstrate how the roofline feature of Intel Advisor can be used to balance memory vs. computation related optimization efforts and effectively identify performance bottlenecks. A series of typical optimization techniques: cache blocking, structure refactoring, data alignment, and vectorization illustrated by the kernel cases will be addressed. # Description of the codes ## XGC1 The XGC1 code [3] is a magnetic fusion Particle-In-Cell code that uses an unstructured mesh for its Poisson solver that allows it to accurately resolve the edge plasma of a magnetic fusion device. After

  15. Thread-level parallelization and optimization of NWChem for the Intel MIC architecture

    Energy Technology Data Exchange (ETDEWEB)

    Shan, Hongzhang [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Williams, Samuel [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); de Jong, Wibe [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States); Oliker, Leonid [Lawrence Berkeley National Lab. (LBNL), Berkeley, CA (United States)

    2015-01-01

    In the multicore era it was possible to exploit the increase in on-chip parallelism by simply running multiple MPI processes per chip. Unfortunately, manycore processors' greatly increased thread- and data-level parallelism coupled with a reduced memory capacity demand an altogether different approach. In this paper we explore augmenting two NWChem modules, triples correction of the CCSD(T) and Fock matrix construction, with OpenMP in order that they might run efficiently on future manycore architectures. As the next NERSC machine will be a self-hosted Intel MIC (Xeon Phi) based supercomputer, we leverage an existing MIC testbed at NERSC to evaluate our experiments. In order to proxy the fact that future MIC machines will not have a host processor, we run all of our experiments in native mode. We found that while straightforward application of OpenMP to the deep loop nests associated with the tensor contractions of CCSD(T) was sufficient in attaining high performance, significant e ort was required to safely and efeciently thread the TEXAS integral package when constructing the Fock matrix. Ultimately, our new MPI+OpenMP hybrid implementations attain up to 65× better performance for the triples part of the CCSD(T) due in large part to the fact that the limited on-card memory limits the existing MPI implementation to a single process per card. Additionally, we obtain up to 1.6× better performance on Fock matrix constructions when compared with the best MPI implementations running multiple processes per card.

  16. Characterization of Al/Ni multilayers and their application in diffusion bonding of TiAl to TiC cermet

    Energy Technology Data Exchange (ETDEWEB)

    Cao, J., E-mail: cao_jian@hit.edu.cn [State Key Lab of Advanced Welding Production Technology, Harbin Institute of Technology, Harbin, 150001 (China); Center for Composite Materials and Structures, Harbin Institute of Technology, Harbin, 150001 (China); Song, X.G. [State Key Lab of Advanced Welding Production Technology, Harbin Institute of Technology, Harbin, 150001 (China); Wu, L.Z. [Center for Composite Materials and Structures, Harbin Institute of Technology, Harbin, 150001 (China); Qi, J.L.; Feng, J.C. [State Key Lab of Advanced Welding Production Technology, Harbin Institute of Technology, Harbin, 150001 (China)

    2012-02-29

    The Al/Ni multilayers were characterized and diffusion bonding of TiAl intermetallics to TiC cermets was carried out using the multilayers. The microstructure of Al/Ni multilayers and TiAl/TiC cermet joint was investigated. The layered structures consisting of a Ni{sub 3}(AlTi) layer, a Ni{sub 2}AlTi layer, a (Ni,Al,Ti) layer and a Ni diffusion layer were observed from the interlayer to the TiAl substrate. Only one AlNi{sub 3} layer formed at the multilayer/TiC cermet interface. The reaction behaviour of Al/Ni multilayers was characterized by means of differential scanning calorimeter (DSC) and X-ray diffraction. The initial exothermic peak of the DSC curve was formed due to the formation of Al{sub 3}Ni and Al{sub 3}Ni{sub 2} phases. The reaction sequence of the Al/Ni multilayers was Al{sub 3}Ni {yields} Al{sub 3}Ni{sub 2} {yields} AlNi {yields} AlNi{sub 3} and the final products were AlNi and AlNi{sub 3} phases. The shear strength of the joint was tested and the experimental results suggested that the application of Al/Ni multilayers improved the joining quality. - Highlights: Black-Right-Pointing-Pointer Diffusion bonding of TiAl to TiC cermet was realized using Al/Ni multilayer. Black-Right-Pointing-Pointer The reaction sequence of the Al/Ni multilayers was Al{sub 3}Ni {yields} Al{sub 3}Ni{sub 2} {yields} AlNi {yields} AlNi{sub 3}. Black-Right-Pointing-Pointer The interfacial microstructure of the joint was clarified. Black-Right-Pointing-Pointer The application of Al/Ni multilayers improved the joining quality.

  17. Experiences Using Hybrid MPI/OpenMP in the Real World: Parallelization of a 3D CFD Solver for Multi-Core Node Clusters

    Directory of Open Access Journals (Sweden)

    Gabriele Jost

    2010-01-01

    Full Text Available Today most systems in high-performance computing (HPC feature a hierarchical hardware design: shared-memory nodes with several multi-core CPUs are connected via a network infrastructure. When parallelizing an application for these architectures it seems natural to employ a hierarchical programming model such as combining MPI and OpenMP. Nevertheless, there is the general lore that pure MPI outperforms the hybrid MPI/OpenMP approach. In this paper, we describe the hybrid MPI/OpenMP parallelization of IR3D (Incompressible Realistic 3-D code, a full-scale real-world application, which simulates the environmental effects on the evolution of vortices trailing behind control surfaces of underwater vehicles. We discuss performance, scalability and limitations of the pure MPI version of the code on a variety of hardware platforms and show how the hybrid approach can help to overcome certain limitations.

  18. Automation of Data Traffic Control on DSM Architecture

    Science.gov (United States)

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

    2001-01-01

    The design of distributed shared memory (DSM) computers liberates users from the duty to distribute data across processors and allows for the incremental development of parallel programs using, for example, OpenMP or Java threads. DSM architecture greatly simplifies the development of parallel programs having good performance on a few processors. However, to achieve a good program scalability on DSM computers requires that the user understand data flow in the application and use various techniques to avoid data traffic congestions. In this paper we discuss a number of such techniques, including data blocking, data placement, data transposition and page size control and evaluate their efficiency on the NAS (NASA Advanced Supercomputing) Parallel Benchmarks. We also present a tool which automates the detection of constructs causing data congestions in Fortran array oriented codes and advises the user on code transformations for improving data traffic in the application.

  19. Massively parallel sparse matrix function calculations with NTPoly

    Science.gov (United States)

    Dawson, William; Nakajima, Takahito

    2018-04-01

    We present NTPoly, a massively parallel library for computing the functions of sparse, symmetric matrices. The theory of matrix functions is a well developed framework with a wide range of applications including differential equations, graph theory, and electronic structure calculations. One particularly important application area is diagonalization free methods in quantum chemistry. When the input and output of the matrix function are sparse, methods based on polynomial expansions can be used to compute matrix functions in linear time. We present a library based on these methods that can compute a variety of matrix functions. Distributed memory parallelization is based on a communication avoiding sparse matrix multiplication algorithm. OpenMP task parallellization is utilized to implement hybrid parallelization. We describe NTPoly's interface and show how it can be integrated with programs written in many different programming languages. We demonstrate the merits of NTPoly by performing large scale calculations on the K computer.

  20. Deposition and Characterization of CVD-Grown Ge-Sb Thin Film Device for Phase-Change Memory Application

    Directory of Open Access Journals (Sweden)

    C. C. Huang

    2012-01-01

    Full Text Available Germanium antimony (Ge-Sb thin films with tuneable compositions have been fabricated on SiO2/Si, borosilicate glass, and quartz glass substrates by chemical vapour deposition (CVD. Deposition takes place at atmospheric pressure using metal chloride precursors at reaction temperatures between 750 and 875°C. The compositions and structures of these thin films have been characterized by micro-Raman, scanning electron microscope (SEM with energy dispersive X-ray analysis (EDX and X-ray diffraction (XRD techniques. A prototype Ge-Sb thin film phase-change memory device has been fabricated and reversible threshold and phase-change switching demonstrated electrically, with a threshold voltage of 2.2–2.5 V. These CVD-grown Ge-Sb films show promise for applications such as phase-change memory and optical, electronic, and plasmonic switching.