WorldWideScience

Sample records for autobayes program synthesis

  1. AutoBayes Program Synthesis System System Internals

    Science.gov (United States)

    Schumann, Johann Martin

    2011-01-01

    This lecture combines the theoretical background of schema based program synthesis with the hands-on study of a powerful, open-source program synthesis system (Auto-Bayes). Schema-based program synthesis is a popular approach toward program synthesis. The lecture will provide an introduction into this topic and discuss how this technology can be used to generate customized algorithms. The synthesis of advanced numerical algorithms requires the availability of a powerful symbolic (algebra) system. Its task is to symbolically solve equations, simplify expressions, or to symbolically calculate derivatives (among others) such that the synthesized algorithms become as efficient as possible. We will discuss the use and importance of the symbolic system for synthesis. Any synthesis system is a large and complex piece of code. In this lecture, we will study Autobayes in detail. AutoBayes has been developed at NASA Ames and has been made open source. It takes a compact statistical specification and generates a customized data analysis algorithm (in C/C++) from it. AutoBayes is written in SWI Prolog and many concepts from rewriting, logic, functional, and symbolic programming. We will discuss the system architecture, the schema libary and the extensive support infra-structure. Practical hands-on experiments and exercises will enable the student to get insight into a realistic program synthesis system and provides knowledge to use, modify, and extend Autobayes.

  2. AutoBayes Program Synthesis System Users Manual

    Science.gov (United States)

    Schumann, Johann; Jafari, Hamed; Pressburger, Tom; Denney, Ewen; Buntine, Wray; Fischer, Bernd

    2008-01-01

    Program synthesis is the systematic, automatic construction of efficient executable code from high-level declarative specifications. AutoBayes is a fully automatic program synthesis system for the statistical data analysis domain; in particular, it solves parameter estimation problems. It has seen many successful applications at NASA and is currently being used, for example, to analyze simulation results for Orion. The input to AutoBayes is a concise description of a data analysis problem composed of a parameterized statistical model and a goal that is a probability term involving parameters and input data. The output is optimized and fully documented C/C++ code computing the values for those parameters that maximize the probability term. AutoBayes can solve many subproblems symbolically rather than having to rely on numeric approximation algorithms, thus yielding effective, efficient, and compact code. Statistical analysis is faster and more reliable, because effort can be focused on model development and validation rather than manual development of solution algorithms and code.

  3. Retrofitting the AutoBayes Program Synthesis System with Concrete Syntax

    Science.gov (United States)

    Fischer, Bernd; Visser, Eelco

    2004-01-01

    AutoBayes is a fully automatic, schema-based program synthesis system for statistical data analysis applications. Its core component is a schema library. i.e., a collection of generic code templates with associated applicability constraints which are instantiated in a problem-specific way during synthesis. Currently, AutoBayes is implemented in Prolog; the schemas thus use abstract syntax (i.e., Prolog terms) to formulate the templates. However, the conceptual distance between this abstract representation and the concrete syntax of the generated programs makes the schemas hard to create and maintain. In this paper we describe how AutoBayes is retrofitted with concrete syntax. We show how it is integrated into Prolog and describe how the seamless interaction of concrete syntax fragments with AutoBayes's remaining legacy meta-programming kernel based on abstract syntax is achieved. We apply the approach to gradually mitigate individual schemas without forcing a disruptive migration of the entire system to a different First experiences show that a smooth migration can be achieved. Moreover, it can result in a considerable reduction of the code size and improved readability of the code. In particular, abstracting out fresh-variable generation and second-order term construction allows the formulation of larger continuous fragments.

  4. The AutoBayes Program Synthesis System: System Description

    Science.gov (United States)

    Fischer, Bernd; Pressburger, Thomas; Rosu, Grigore; Schumann, Johann; Norvog, Peter (Technical Monitor)

    2001-01-01

    AUTOBAYES is a fully automatic program synthesis system for the statistical data analysis domain. Its input is a concise description of a data analysis problem in the form of a statistical model; its output is optimized and fully documented C/C++ code which can be linked dynamically into the Matlab and Octave environments. AUTOBAYES synthesizes code by a schema-guided deductive process. Schemas (i.e., code templates with associated semantic constraints) are applied to the original problem and recursively to emerging subproblems. AUTOBAYES complements this approach by symbolic computation to derive closed-form solutions whenever possible. In this paper, we concentrate on the interaction between the symbolic computations and the deductive synthesis process. A statistical model specifies for each problem variable (i.e., data or parameter) its properties and dependencies in the form of a probability distribution, A typical data analysis task is to estimate the best possible parameter values from the given observations or measurements. The following example models normal-distributed data but takes prior information (e.g., from previous experiments) on the data's mean value and variance into account.

  5. Analysis of Air Traffic Track Data with the AutoBayes Synthesis System

    Science.gov (United States)

    Schumann, Johann Martin Philip; Cate, Karen; Lee, Alan G.

    2010-01-01

    The Next Generation Air Traffic System (NGATS) is aiming to provide substantial computer support for the air traffic controllers. Algorithms for the accurate prediction of aircraft movements are of central importance for such software systems but trajectory prediction has to work reliably in the presence of unknown parameters and uncertainties. We are using the AutoBayes program synthesis system to generate customized data analysis algorithms that process large sets of aircraft radar track data in order to estimate parameters and uncertainties. In this paper, we present, how the tasks of finding structure in track data, estimation of important parameters in climb trajectories, and the detection of continuous descent approaches can be accomplished with compact task-specific AutoBayes specifications. We present an overview of the AutoBayes architecture and describe, how its schema-based approach generates customized analysis algorithms, documented C/C++ code, and detailed mathematical derivations. Results of experiments with actual air traffic control data are discussed.

  6. AutoBayes: A System for Generating Data Analysis Programs from Statistical Models

    OpenAIRE

    Fischer, Bernd; Schumann, Johann

    2003-01-01

    Data analysis is an important scientific task which is required whenever information needs to be extracted from raw data. Statistical approaches to data analysis, which use methods from probability theory and numerical analysis, are well-founded but dificult to implement: the development of a statistical data analysis program for any given application is time-consuming and requires substantial knowledge and experience in several areas. In this paper, we describe AutoBayes, a program synthesis...

  7. Adding Concrete Syntax to a Prolog-Based Program Synthesis System

    Science.gov (United States)

    Fischer, Bernd; Visser, Eelco

    2003-01-01

    Program generation and transformation systems manipulate large, pa- rameterized object language fragments. Support for user-definable concrete syntax makes this easier but is typically restricted to certain object and meta languages. We show how Prolog can be retrofitted with concrete syntax and describe how a seamless interaction of concrete syntax fragments with an existing legacy meta-programming system based on abstract syntax is achieved. We apply the approach to gradually migrate the schemas of the AUTOBAYES program synthesis system to concrete syntax. Fit experiences show that this can result in a considerable reduction of the code size and an improved readability of the code. In particular, abstracting out fresh-variable generation and second-order term construction allows the formulation of larger continuous fragments and improves the locality in the schemas.

  8. The Role of Ontologies in Schema-based Program Synthesis

    Science.gov (United States)

    Bures, Tomas; Denney, Ewen; Fischer, Bernd; Nistor, Eugen C.

    2004-01-01

    Program synthesis is the process of automatically deriving executable code from (non-executable) high-level specifications. It is more flexible and powerful than conventional code generation techniques that simply translate algorithmic specifications into lower-level code or only create code skeletons from structural specifications (such as UML class diagrams). Key to building a successful synthesis system is specializing to an appropriate application domain. The AUTOBAYES and AUTOFILTER systems, under development at NASA Ames, operate in the two domains of data analysis and state estimation, respectively. The central concept of both systems is the schema, a representation of reusable computational knowledge. This can take various forms, including high-level algorithm templates, code optimizations, datatype refinements, or architectural information. A schema also contains applicability conditions that are used to determine when it can be applied safely. These conditions can refer to the initial specification, to intermediate results, or to elements of the partially-instantiated code. Schema-based synthesis uses AI technology to recursively apply schemas to gradually refine a specification into executable code. This process proceeds in two main phases. A front-end gradually transforms the problem specification into a program represented in an abstract intermediate code. A backend then compiles this further down into a concrete target programming language of choice. A core engine applies schemas on the initial problem specification, then uses the output of those schemas as the input for other schemas, until the full implementation is generated. Since there might be different schemas that implement different solutions to the same problem this process can generate an entire solution tree. AUTOBAYES and AUTOFILTER have reached the level of maturity where they enable users to solve interesting application problems, e.g., the analysis of Hubble Space Telescope images

  9. Automatic Derivation of Statistical Data Analysis Algorithms: Planetary Nebulae and Beyond

    Science.gov (United States)

    Fischer, Bernd; Hajian, Arsen; Knuth, Kevin; Schumann, Johann

    2004-04-01

    AUTOBAYES is a fully automatic program synthesis system for the data analysis domain. Its input is a declarative problem description in form of a statistical model; its output is documented and optimized C/C++ code. The synthesis process relies on the combination of three key techniques. Bayesian networks are used as a compact internal representation mechanism which enables problem decompositions and guides the algorithm derivation. Program schemas are used as independently composable building blocks for the algorithm construction; they can encapsulate advanced algorithms and data structures. A symbolic-algebraic system is used to find closed-form solutions for problems and emerging subproblems. In this paper, we describe the application of AUTOBAYES to the analysis of planetary nebulae images taken by the Hubble Space Telescope. We explain the system architecture, and present in detail the automatic derivation of the scientists' original analysis as well as a refined analysis using clustering models. This study demonstrates that AUTOBAYES is now mature enough so that it can be applied to realistic scientific data analysis tasks.

  10. Automatic Generation of Algorithms for the Statistical Analysis of Planetary Nebulae Images

    Science.gov (United States)

    Fischer, Bernd

    2004-01-01

    Analyzing data sets collected in experiments or by observations is a Core scientific activity. Typically, experimentd and observational data are &aught with uncertainty, and the analysis is based on a statistical model of the conjectured underlying processes, The large data volumes collected by modern instruments make computer support indispensible for this. Consequently, scientists spend significant amounts of their time with the development and refinement of the data analysis programs. AutoBayes [GF+02, FS03] is a fully automatic synthesis system for generating statistical data analysis programs. Externally, it looks like a compiler: it takes an abstract problem specification and translates it into executable code. Its input is a concise description of a data analysis problem in the form of a statistical model as shown in Figure 1; its output is optimized and fully documented C/C++ code which can be linked dynamically into the Matlab and Octave environments. Internally, however, it is quite different: AutoBayes derives a customized algorithm implementing the given model using a schema-based process, and then further refines and optimizes the algorithm into code. A schema is a parameterized code template with associated semantic constraints which define and restrict the template s applicability. The schema parameters are instantiated in a problem-specific way during synthesis as AutoBayes checks the constraints against the original model or, recursively, against emerging sub-problems. AutoBayes schema library contains problem decomposition operators (which are justified by theorems in a formal logic in the domain of Bayesian networks) as well as machine learning algorithms (e.g., EM, k-Means) and nu- meric optimization methods (e.g., Nelder-Mead simplex, conjugate gradient). AutoBayes augments this schema-based approach by symbolic computation to derive closed-form solutions whenever possible. This is a major advantage over other statistical data analysis systems

  11. Automatic Derivation of Statistical Data Analysis Algorithms: Planetary Nebulae and Beyond

    OpenAIRE

    Fischer, Bernd; Knuth, Kevin; Hajian, Arsen; Schumann, Johann

    2004-01-01

    AUTOBAYES is a fully automatic program synthesis system for the data analysis domain. Its input is a declarative problem description in form of a statistical model; its output is documented and optimized C/C++ code. The synthesis process relies on the combination of three key techniques. Bayesian networks are used as a compact internal representation mechanism which enables problem decompositions and guides the algorithm derivation. Program schemas are used as independently composable buildin...

  12. Synthesizing Certified Code

    Science.gov (United States)

    Whalen, Michael; Schumann, Johann; Fischer, Bernd

    2002-01-01

    Code certification is a lightweight approach to demonstrate software quality on a formal level. Its basic idea is to require producers to provide formal proofs that their code satisfies certain quality properties. These proofs serve as certificates which can be checked independently. Since code certification uses the same underlying technology as program verification, it also requires many detailed annotations (e.g., loop invariants) to make the proofs possible. However, manually adding theses annotations to the code is time-consuming and error-prone. We address this problem by combining code certification with automatic program synthesis. We propose an approach to generate simultaneously, from a high-level specification, code and all annotations required to certify generated code. Here, we describe a certification extension of AUTOBAYES, a synthesis tool which automatically generates complex data analysis programs from compact specifications. AUTOBAYES contains sufficient high-level domain knowledge to generate detailed annotations. This allows us to use a general-purpose verification condition generator to produce a set of proof obligations in first-order logic. The obligations are then discharged using the automated theorem E-SETHEO. We demonstrate our approach by certifying operator safety for a generated iterative data classification program without manual annotation of the code.

  13. Behavioral program synthesis with genetic programming

    CERN Document Server

    Krawiec, Krzysztof

    2016-01-01

    Genetic programming (GP) is a popular heuristic methodology of program synthesis with origins in evolutionary computation. In this generate-and-test approach, candidate programs are iteratively produced and evaluated. The latter involves running programs on tests, where they exhibit complex behaviors reflected in changes of variables, registers, or memory. That behavior not only ultimately determines program output, but may also reveal its `hidden qualities' and important characteristics of the considered synthesis problem. However, the conventional GP is oblivious to most of that information and usually cares only about the number of tests passed by a program. This `evaluation bottleneck' leaves search algorithm underinformed about the actual and potential qualities of candidate programs. This book proposes behavioral program synthesis, a conceptual framework that opens GP to detailed information on program behavior in order to make program synthesis more efficient. Several existing and novel mechanisms subs...

  14. Automatic Derivation of Statistical Algorithms: The EM Family and Beyond

    OpenAIRE

    Gray, Alexander G.; Fischer, Bernd; Schumann, Johann; Buntine, Wray

    2003-01-01

    Machine learning has reached a point where many probabilistic methods can be understood as variations, extensions and combinations of a much smaller set of abstract themes, e.g., as different instances of the EM algorithm. This enables the systematic derivation of algorithms customized for different models. Here, we describe the AUTOBAYES system which takes a high-level statistical model specification, uses powerful symbolic techniques based on schema-based program synthesis and computer alge...

  15. Equivalence Checking between Pre-synthesis and Post-synthesis Programs by Using VIS

    Energy Technology Data Exchange (ETDEWEB)

    Lee, Jonghoon; Yoo, Junbeom [Konkuk Univ., Seoul (Korea, Republic of); Choi, Jonggyun; Lee, Jangsoo [Korea Atomic Energy Research Institute, Daejeon (Korea, Republic of)

    2013-05-15

    PLC (Programmable Logic Controller)-based Software development, the design programs are translated into implementation programs, and behavioral equivalence between the design and implementation is demonstrated by formal method based technique. In FPGA-based software development, the design programs are also synthesized into implementation programs. However, in this process, testing and simulation based comparison techniques are mainly used. This paper proposes a formal method based technique to demonstrate behavioral equivalence between pre-synthesis and post-synthesis programs with VIS (Verification Interacting with Synthesis) verification system. We translated into BLIF-MV which is front-end of VIS, from Verlag and EDIF net list which synthesized from the same Verlag by an automatic synthesis tool. This paper proposes a formal method based technique to confirm correctness of synthesis by using equivalence checking of VIS verification system. In order to confirm the effectiveness of the proposed technique, we performed a case study with a part of prototype version of the RPS BP, and demonstrated a behavioral equivalence between Verlag HDL and EDIF post-synthesis net list.

  16. Equivalence Checking between Pre-synthesis and Post-synthesis Programs by Using VIS

    International Nuclear Information System (INIS)

    Lee, Jonghoon; Yoo, Junbeom; Choi, Jonggyun; Lee, Jangsoo

    2013-01-01

    PLC (Programmable Logic Controller)-based Software development, the design programs are translated into implementation programs, and behavioral equivalence between the design and implementation is demonstrated by formal method based technique. In FPGA-based software development, the design programs are also synthesized into implementation programs. However, in this process, testing and simulation based comparison techniques are mainly used. This paper proposes a formal method based technique to demonstrate behavioral equivalence between pre-synthesis and post-synthesis programs with VIS (Verification Interacting with Synthesis) verification system. We translated into BLIF-MV which is front-end of VIS, from Verlag and EDIF net list which synthesized from the same Verlag by an automatic synthesis tool. This paper proposes a formal method based technique to confirm correctness of synthesis by using equivalence checking of VIS verification system. In order to confirm the effectiveness of the proposed technique, we performed a case study with a part of prototype version of the RPS BP, and demonstrated a behavioral equivalence between Verlag HDL and EDIF post-synthesis net list

  17. Guided Synthesis of Control Programs Using UPPAAL

    DEFF Research Database (Denmark)

    Hune, T.; Larsen, Kim Guldstrand; Pettersson, P.

    2000-01-01

    the transitions with extra guards. Applying this technique have made synthesis of control programs feasible for a plant producing as many as 60 batches. In comparison, we could only handle plants producing two batches without using guides. The synthesized control programs have been executed in a physical plant...

  18. A Generic Software Safety Document Generator

    Science.gov (United States)

    Denney, Ewen; Venkatesan, Ram Prasad

    2004-01-01

    Formal certification is based on the idea that a mathematical proof of some property of a piece of software can be regarded as a certificate of correctness which, in principle, can be subjected to external scrutiny. In practice, however, proofs themselves are unlikely to be of much interest to engineers. Nevertheless, it is possible to use the information obtained from a mathematical analysis of software to produce a detailed textual justification of correctness. In this paper, we describe an approach to generating textual explanations from automatically generated proofs of program safety, where the proofs are of compliance with an explicit safety policy that can be varied. Key to this is tracing proof obligations back to the program, and we describe a tool which implements this to certify code auto-generated by AutoBayes and AutoFilter, program synthesis systems under development at the NASA Ames Research Center. Our approach is a step towards combining formal certification with traditional certification methods.

  19. Adipocyte lipid synthesis coupled to neuronal control of thermogenic programming

    Directory of Open Access Journals (Sweden)

    Adilson Guilherme

    2017-08-01

    Conclusions: These results demonstrate that downregulation of fatty acid synthesis via FASN depletion in white adipocytes of mature mice can stimulate neuronal signaling to control thermogenic programming in iWAT.

  20. Data synthesis and display programs for wave distribution function analysis

    Science.gov (United States)

    Storey, L. R. O.; Yeh, K. J.

    1992-01-01

    At the National Space Science Data Center (NSSDC) software was written to synthesize and display artificial data for use in developing the methodology of wave distribution analysis. The software comprises two separate interactive programs, one for data synthesis and the other for data display.

  1. Modeling and Synthesis Support for the North American Carbon Program

    Science.gov (United States)

    Baskaran, L.; Cook, R. B.; Thornton, P. E.; Post, W. M.; Wilson, B. E.; Dadi, U.

    2007-12-01

    The Modeling and Synthesis Thematic Data Center (MAST-DC) supports the North American Carbon Program by providing data products and data management services needed for modeling and synthesis activities. The overall objective of MAST-DC is to provide advanced data management support to NACP investigators doing modeling and synthesis, thereby freeing those investigators from having to perform data management functions. MAST-DC has compiled a number of data products for North America, including sub-pixel land-water content, daily meteorological data, and soil, land cover, and elevation data. In addition, we have developed an internet-based WebGIS system that enables users to browse, query, display, subset, and download spatial data using a standard web browser. For the mid-continent intensive, MAST-DC is working with a group of data assimilation modelers to generate a consistent set of meteorological data to drive bottom-up models.

  2. A multifunction editor for programming control sequences for a robot based radiopharmaceutical synthesis system

    International Nuclear Information System (INIS)

    Appelquist, G.; Bohm, C.

    1990-01-01

    A Multifunction Editor is a development tool for building control sequences for a robotized production system for positron emitting radiopharmaceuticals. This system consists of SCARA robot and a PC-AT personal computer as a controller together with general and synthesis specific chemistry equipment. The general equipment, which is common for many synthesis, is fixed to the wall of the hotcell, while the specific equipment, dedicated to the given synthesis, is located on a removable tray. The program recognizes commands to move the robot, to control valves and to control the computer screen. From within the editor it is possible to run the control sequence forward or backward to test it and to use the single step feature to debug. The editor commands include insert, replace and delete of commands in the sequence. When programming or editing robot movements the robot may be controlled by the mouse, from the keyboard or from a remote control box. The robot control sequence consists of a succession of stored robot positions. The screen control is used to display dynamic flowchart diagrams. This is achieved by displaying a modified picture on the screen whenever the system state has been changed significantly

  3. Memory-Optimized Software Synthesis from Dataflow Program Graphs with Large Size Data Samples

    Directory of Open Access Journals (Sweden)

    Hyunok Oh

    2003-05-01

    Full Text Available In multimedia and graphics applications, data samples of nonprimitive type require significant amount of buffer memory. This paper addresses the problem of minimizing the buffer memory requirement for such applications in embedded software synthesis from graphical dataflow programs based on the synchronous dataflow (SDF model with the given execution order of nodes. We propose a memory minimization technique that separates global memory buffers from local pointer buffers: the global buffers store live data samples and the local buffers store the pointers to the global buffer entries. The proposed algorithm reduces 67% memory for a JPEG encoder, 40% for an H.263 encoder compared with unshared versions, and 22% compared with the previous sharing algorithm for the H.263 encoder. Through extensive buffer sharing optimization, we believe that automatic software synthesis from dataflow program graphs achieves the comparable code quality with the manually optimized code in terms of memory requirement.

  4. Interfacing theories of program with theories of evaluation for advancing evaluation practice: Reductionism, systems thinking, and pragmatic synthesis.

    Science.gov (United States)

    Chen, Huey T

    2016-12-01

    Theories of program and theories of evaluation form the foundation of program evaluation theories. Theories of program reflect assumptions on how to conceptualize an intervention program for evaluation purposes, while theories of evaluation reflect assumptions on how to design useful evaluation. These two types of theories are related, but often discussed separately. This paper attempts to use three theoretical perspectives (reductionism, systems thinking, and pragmatic synthesis) to interface them and discuss the implications for evaluation practice. Reductionism proposes that an intervention program can be broken into crucial components for rigorous analyses; systems thinking view an intervention program as dynamic and complex, requiring a holistic examination. In spite of their contributions, reductionism and systems thinking represent the extreme ends of a theoretical spectrum; many real-world programs, however, may fall in the middle. Pragmatic synthesis is being developed to serve these moderate- complexity programs. These three theoretical perspectives have their own strengths and challenges. Knowledge on these three perspectives and their evaluation implications can provide a better guide for designing fruitful evaluations, improving the quality of evaluation practice, informing potential areas for developing cutting-edge evaluation approaches, and contributing to advancing program evaluation toward a mature applied science. Copyright © 2016 Elsevier Ltd. All rights reserved.

  5. A synthesis of evaluation monitoring projects by the forest health monitoring program (1998-2007)

    Science.gov (United States)

    William A. Bechtold; Michael J. Bohne; Barbara L. Conkling; Dana L. Friedman

    2012-01-01

    The national Forest Health Monitoring Program of the Forest Service, U.S. Department of Agriculture, has funded over 200 Evaluation Monitoring projects. Evaluation Monitoring is designed to verify and define the extent of deterioration in forest ecosystems where potential problems have been identified. This report is a synthesis of results from over 150 Evaluation...

  6. Consequences of increased extraction of forest fuel - A synthesis from the Energy Agency fuel program 2007-2011 Summary of the Synthesis Report; Konsekvenser av ett oekat uttag av skogsbraensle - En syntes fraan Energimyndighetens braensleprogram 2007-2011 Sammanfattning av syntesrapporten

    Energy Technology Data Exchange (ETDEWEB)

    NONE

    2013-07-01

    This report summarizes the findings of a research synthesis of forest fuels. The full report (de Jong et al 2012) can be ordered from the Swedish Energy Agency (report number: ER 2012:08), or downloaded from www.energimyndigheten.se. The Energy Agency's research program 'Sustainable supply and refining of biofuels', also known as 'Fuel program', ran from 2007-01-01 to 2011-06-30. The results of the program are reported in synthesis reports for various program areas. The purpose of the synthesis reports is to compile the knowledge in various areas, to identify knowledge gaps that need to be elucidated further, and to place and discuss the aggregated research results in a larger energy- and societal perspective, including relations to environmental quality and forest policy environmental- and production goals. This report covers sub-project 'Forest fuel and environmental impacts', conducted during the years 2007-2011. The report covers projects within the program 'Sustainable supply and refining of biofuels', adjacent individual projects funded by the Energy Agency and certain other national related activities.

  7. Parametric synthesis of a robust controller on a base of mathematical programming method

    Science.gov (United States)

    Khozhaev, I. V.; Gayvoronskiy, S. A.; Ezangina, T. A.

    2018-05-01

    Considered paper is dedicated to deriving sufficient conditions, linking root indices of robust control quality with coefficients of interval characteristic polynomial, on the base of mathematical programming method. On the base of these conditions, a method of PI- and PID-controllers, providing aperiodic transient process with acceptable stability degree and, subsequently, acceptable setting time, synthesis was developed. The method was applied to a problem of synthesizing a controller for a depth control system of an unmanned underwater vehicle.

  8. Bourbaki's structure theory in the problem of complex systems simulation models synthesis and model-oriented programming

    Science.gov (United States)

    Brodsky, Yu. I.

    2015-01-01

    The work is devoted to the application of Bourbaki's structure theory to substantiate the synthesis of simulation models of complex multicomponent systems, where every component may be a complex system itself. An application of the Bourbaki's structure theory offers a new approach to the design and computer implementation of simulation models of complex multicomponent systems—model synthesis and model-oriented programming. It differs from the traditional object-oriented approach. The central concept of this new approach and at the same time, the basic building block for the construction of more complex structures is the concept of models-components. A model-component endowed with a more complicated structure than, for example, the object in the object-oriented analysis. This structure provides to the model-component an independent behavior-the ability of standard responds to standard requests of its internal and external environment. At the same time, the computer implementation of model-component's behavior is invariant under the integration of models-components into complexes. This fact allows one firstly to construct fractal models of any complexity, and secondly to implement a computational process of such constructions uniformly-by a single universal program. In addition, the proposed paradigm allows one to exclude imperative programming and to generate computer code with a high degree of parallelism.

  9. Reactor Network Synthesis Using Coupled Genetic Algorithm with the Quasi-linear Programming Method

    OpenAIRE

    Soltani, H.; Shafiei, S.; Edraki, J.

    2016-01-01

    This research is an attempt to develop a new procedure for the synthesis of reactor networks (RNs) using a genetic algorithm (GA) coupled with the quasi-linear programming (LP) method. The GA is used to produce structural configuration, whereas continuous variables are handled using a quasi-LP formulation for finding the best objective function. Quasi-LP consists of LP together with a search loop to find the best reactor conversions (xi), as well as split and recycle ratios (yi). Quasi-LP rep...

  10. A Qualitative Meta-Synthesis of Interpersonal Violence Prevention Programs Focused on Males.

    Science.gov (United States)

    Taliep, Naiema; Lazarus, Sandy; Naidoo, Anthony V

    2017-12-01

    Exceptionally high levels of interpersonal violence have triggered a call by many experts for the need to determine effective ways to address the onset and effects of exposure to interpersonal violence. The specific aim of this study was to identify and draw on existing promising practices to make a more informed decision on strategies to develop a contextually relevant intervention that focused on the promotion of positive forms of masculinity to create safety and peace. This study used a qualitative meta-synthesis (QMS) technique to integrate and interpret findings from various intervention studies that focused on males and/or gender. An in-depth literature search yielded a total of 827 papers that met the search criteria. After removal of duplicates, abstract review, and review of the full texts, the subsequent sample for this meta-synthesis included 12 intervention programs and 23 studies. This QMS revealed the value of a comprehensive approach, using multiple strategies, employing participatory and interactive methods, and promoting social mobilization to address interpersonal violence. The promotion of positive forms of masculinity as an interpersonal violence prevention strategy is a much-needed, relatively untapped approach to generating safety and peace for both males and females.

  11. Integrated programs for women with substance use issues and their children: a qualitative meta-synthesis of processes and outcomes

    Directory of Open Access Journals (Sweden)

    Thabane Lehana

    2009-01-01

    Full Text Available Abstract Background There is a need for services that effectively and comprehensively address the complex needs of women with substance use issues and their children. A growing body of literature supports the relevance of integrated treatment programs that offer a wide range of services in centralized settings. Quantitative studies suggest that these programs are associated with positive outcomes. A qualitative meta-synthesis was conducted to provide insight into the processes that contribute to recovery in integrated programs and women's perceptions of benefits for themselves and their children. Methods A comprehensive search of published and unpublished literature to August 2009 was carried out for narrative reports of women's experiences and perceptions of integrated treatment programs. Eligibility for inclusion in the meta-synthesis was determined using defined criteria. Quality assessment was then conducted. Qualitative data and interpretations were extracted from studies of adequate quality, and were synthesized using a systematic and iterative process to create themes and overarching concepts. Results A total of 15 documents were included in the meta-synthesis. Women experienced a number of psychosocial processes during treatment that played a role in their recovery and contributed to favourable outcomes. These included: development of a sense of self; development of personal agency; giving and receiving of social support; engagement with program staff; self-disclosure of challenges, feelings, and past experiences; recognizing patterns of destructive behaviour; and goal setting. A final process, the motivating presence of children, sustained women in their recovery journeys. Perceived outcomes included benefits for maternal and child well-being, and enhanced parenting capacity. Conclusion A number of distinct but interconnected processes emerged as being important to women's addiction recovery. Women experienced individual growth and

  12. Applying Aspect-Oriented Programming to Intelligent Synthesis

    Science.gov (United States)

    Filman, Robert E.; Norvig, Peter (Technical Monitor)

    2000-01-01

    I discuss a component-centered, aspect-oriented system, the Object Infrastructure Framework (OIF), NASA's initiative on Intelligent Synthesis Environments (ISE), and the application of OIF to the architecture of ISE.

  13. Alternative Fuels and Chemicals from Synthesis Gas

    Energy Technology Data Exchange (ETDEWEB)

    None, None

    1998-12-02

    The overall objectives of this program are to investigate potential technologies for the conversion of synthesis gas to oxygenated and hydrocarbon fuels and industrial chemicals, and to demonstrate the most promising technologies at DOE's LaPorte, Texas, Slurry Phase Alternative Fuels Development Unit (AFDU). The program will involve a continuation of the work performed under the Alternative Fuels from Coal-Derived Synthesis Gas Program and will draw upon information and technologies generated in parallel current and future DOE-funded contracts.

  14. Alternative fuels and chemicals from synthesis gas

    Energy Technology Data Exchange (ETDEWEB)

    Unknown

    1998-08-01

    The overall objectives of this program are to investigate potential technologies for the conversion of synthesis gas to oxygenated and hydrocarbon fuels and industrial chemicals, and to demonstrate the most promising technologies at DOE's LaPorte, Texas, Slurry Phase Alternative Fuels Development Unit (AFDU). The program will involve a continuation of the work performed under the Alternative Fuels from Coal-Derived Synthesis Gas Program and will draw upon information and technologies generated in parallel current and future DOE-funded contracts.

  15. ALTERNATIVE FUELS AND CHEMICALS FROM SYNTHESIS GAS

    Energy Technology Data Exchange (ETDEWEB)

    Unknown

    1999-01-01

    The overall objectives of this program are to investigate potential technologies for the conversion of synthesis gas to oxygenated and hydrocarbon fuels and industrial chemicals, and to demonstrate the most promising technologies at DOE's LaPorte, Texas, Slurry Phase Alternative Fuels Development Unit (AFDU). The program will involve a continuation of the work performed under the Alternative Fuels from Coal-Derived Synthesis Gas Program and will draw upon information and technologies generated in parallel current and future DOE-funded contracts.

  16. Alternative Fuels and Chemicals From Synthesis Gas

    Energy Technology Data Exchange (ETDEWEB)

    none

    1998-07-01

    The overall objectives of this program are to investigate potential technologies for the conversion of synthesis gas to oxygenated and hydrocarbon fuels and industrial chemicals, and to demonstrate the most promising technologies at DOE's LaPorte, Texas, Slurry Phase Alternative Fuels Development Unit (AFDU). The program will involve a continuation of the work performed under the Alternative Fuels from Coal-Derived Synthesis Gas Program and will draw upon information and technologies generated in parallel current and future DOE-funded contracts.

  17. A concise synthesis of the cortistatin core

    OpenAIRE

    Dai, Mingji; Danishefsky, Samuel J.

    2008-01-01

    We describe a concise and convergent route to the core matrix of the cortistatin steroidal alkaloids. The salient features of the synthesis are the Snieckus cascade methodology and the Masamune alkylative dearomatization. This chemistry lends itself to a total synthesis of the cortistatins and to the development of a SAR program based on diverted total synthesis.

  18. Indirect synthesis of multi-degree of freedom transient systems. [linear programming for a kinematically linear system

    Science.gov (United States)

    Pilkey, W. D.; Chen, Y. H.

    1974-01-01

    An indirect synthesis method is used in the efficient optimal design of multi-degree of freedom, multi-design element, nonlinear, transient systems. A limiting performance analysis which requires linear programming for a kinematically linear system is presented. The system is selected using system identification methods such that the designed system responds as closely as possible to the limiting performance. The efficiency is a result of the method avoiding the repetitive systems analyses accompanying other numerical optimization methods.

  19. Automatic programming for critical applications

    Science.gov (United States)

    Loganantharaj, Raj L.

    1988-01-01

    The important phases of a software life cycle include verification and maintenance. Usually, the execution performance is an expected requirement in a software development process. Unfortunately, the verification and the maintenance of programs are the time consuming and the frustrating aspects of software engineering. The verification cannot be waived for the programs used for critical applications such as, military, space, and nuclear plants. As a consequence, synthesis of programs from specifications, an alternative way of developing correct programs, is becoming popular. The definition, or what is understood by automatic programming, has been changed with our expectations. At present, the goal of automatic programming is the automation of programming process. Specifically, it means the application of artificial intelligence to software engineering in order to define techniques and create environments that help in the creation of high level programs. The automatic programming process may be divided into two phases: the problem acquisition phase and the program synthesis phase. In the problem acquisition phase, an informal specification of the problem is transformed into an unambiguous specification while in the program synthesis phase such a specification is further transformed into a concrete, executable program.

  20. Game-based verification and synthesis

    DEFF Research Database (Denmark)

    Vester, Steen

    and the environment behaves. Synthesis of strategies in games can thus be used for automatic generation of correct-by-construction programs from specifications. We consider verification and synthesis problems for several well-known game-based models. This includes both model-checking problems and satisfiability...... can be extended to solve finitely-branching turn-based games more efficiently. Further, the novel concept of winning cores in parity games is introduced. We use this to develop a new polynomial-time under-approximation algorithm for solving parity games. Experimental results show that this algorithm...... corresponds directly to a program for the corresponding entity of the system. A strategy for a player which ensures that the player wins no matter how the other players behave then corresponds to a program ensuring that the specification of the entity is satisfied no matter how the other entities...

  1. Dijkstra's interpretation of the approach to solving a problem of program correctness

    Directory of Open Access Journals (Sweden)

    Markoski Branko

    2010-01-01

    Full Text Available Proving the program correctness and designing the correct programs are two connected theoretical problems, which are of great practical importance. The first is solved within program analysis, and the second one in program synthesis, although intertwining of these two processes is often due to connection between the analysis and synthesis of programs. Nevertheless, having in mind the automated methods of proving correctness and methods of automatic program synthesis, the difference is easy to tell. This paper presents denotative interpretation of programming calculation explaining semantics by formulae φ and ψ, in such a way that they can be used for defining state sets for program P.

  2. Learning via Query Synthesis

    KAUST Repository

    Alabdulmohsin, Ibrahim Mansour

    2017-05-07

    Active learning is a subfield of machine learning that has been successfully used in many applications. One of the main branches of active learning is query synthe- sis, where the learning agent constructs artificial queries from scratch in order to reveal sensitive information about the underlying decision boundary. It has found applications in areas, such as adversarial reverse engineering, automated science, and computational chemistry. Nevertheless, the existing literature on membership query synthesis has, generally, focused on finite concept classes or toy problems, with a limited extension to real-world applications. In this thesis, I develop two spectral algorithms for learning halfspaces via query synthesis. The first algorithm is a maximum-determinant convex optimization method while the second algorithm is a Markovian method that relies on Khachiyan’s classical update formulas for solving linear programs. The general theme of these methods is to construct an ellipsoidal approximation of the version space and to synthesize queries, afterward, via spectral decomposition. Moreover, I also describe how these algorithms can be extended to other settings as well, such as pool-based active learning. Having demonstrated that halfspaces can be learned quite efficiently via query synthesis, the second part of this thesis proposes strategies for mitigating the risk of reverse engineering in adversarial environments. One approach that can be used to render query synthesis algorithms ineffective is to implement a randomized response. In this thesis, I propose a semidefinite program (SDP) for learning a distribution of classifiers, subject to the constraint that any individual classifier picked at random from this distributions provides reliable predictions with a high probability. This algorithm is, then, justified both theoretically and empirically. A second approach is to use a non-parametric classification method, such as similarity-based classification. In this

  3. General aviation design synthesis utilizing interactive computer graphics

    Science.gov (United States)

    Galloway, T. L.; Smith, M. R.

    1976-01-01

    Interactive computer graphics is a fast growing area of computer application, due to such factors as substantial cost reductions in hardware, general availability of software, and expanded data communication networks. In addition to allowing faster and more meaningful input/output, computer graphics permits the use of data in graphic form to carry out parametric studies for configuration selection and for assessing the impact of advanced technologies on general aviation designs. The incorporation of interactive computer graphics into a NASA developed general aviation synthesis program is described, and the potential uses of the synthesis program in preliminary design are demonstrated.

  4. Strategic bioenergy research. A knowledge compilation and synthesis of research projects funded by the Swedish Energy Agency's fuel program 2007-2011; Strategisk bioenergiforskning. En kunskapssammanstaellning och syntes av forskningsprojekt finansierade av Energimyndighetens braensleprogram 2007-2011

    Energy Technology Data Exchange (ETDEWEB)

    Gode, Jenny; Gustavsson, Mathias; Hoeglund, Jonas; Hellsten, Sofie; Martinsson, Fredrik; Stadmark, Johanna [IVL Svenska Miljoeinstitutet, Stockholm (Sweden)

    2012-11-01

    During 2007-2011 the Swedish Energy Agency has run the program 'Sustainable supply and processing of biofuels'. To summarise the state of knowledge, identify knowledge gaps and analyse the results in a broader context, three different synthesis reports have been performed in the program's final phase. This report is one of these synthesis reports and concerns the area of strategic bioenergy research. In this context, 'strategic' means research that is of significance from the system, marketing and/or policy perspective. The work is based on research conducted mainly in the research programme 'Sustainable supply and processing of biofuels'. This report constitutes the final report of the synthesis project on strategic bioenergy research and includes knowledge compilation, identification of knowledge gaps and synthesis. The results of the synthesis project provide a basis for planning new research programs in the auspices of the Swedish Energy Agency. The two other synthesis projects concern forest fuels as well as energy crops and fuel quality. The report covers a rather broad field of research, e.g. environmental impact, carbon balances, nitrous oxide, bioenergy systems, scenarios, trade and marketing, standardization and certification. The work has been based on project plans and publications for a predefined number of projects, as well as on interviews and discussions with project leaders. Furthermore, several seminars and workshops also provided information for the compilation. Other studies have also been taken into account to some extent.

  5. An Efficient, Green Chemical Synthesis of the Malaria Drug ...

    African Journals Online (AJOL)

    Purpose: To provide a robust, efficient synthesis of the malaria drug piperaquine for potential use in resource-poor settings. Methods: We used in-process analytical technologies (IPAT; HPLC) and a program of experiments to develop a synthesis of piperaquine that avoids the presence of a toxic impurity in the API and is ...

  6. The KTH synthesis of singing

    Directory of Open Access Journals (Sweden)

    Johan Sundberg

    2006-01-01

    Full Text Available This is an overview of the work with synthesizing singing that has been carried out at the Speech Music Hearing Department, KTH since 1977. The origin of the work, a hardware synthesis machine, is described and some aspects of the control program, a modified version of a text-to-speech conversion system are reviewed. Three applications are described in which the synthesis system has paved the way for investigations of specific aspects of the singing voice. One concerns the perceptual relevance of the center frequency of the singer's formant, one deals with characteristics of an ugly voice, and one regards intonation. The article is accompanied by 18 sound examples, several of which were not published before. Finally, limitations and advantages of singing synthesis are discussed.

  7. A multi-paradigm language for reactive synthesis

    Directory of Open Access Journals (Sweden)

    Ioannis Filippidis

    2016-02-01

    Full Text Available This paper proposes a language for describing reactive synthesis problems that integrates imperative and declarative elements. The semantics is defined in terms of two-player turn-based infinite games with full information. Currently, synthesis tools accept linear temporal logic (LTL as input, but this description is less structured and does not facilitate the expression of sequential constraints. This motivates the use of a structured programming language to specify synthesis problems. Transition systems and guarded commands serve as imperative constructs, expressed in a syntax based on that of the modeling language Promela. The syntax allows defining which player controls data and control flow, and separating a program into assumptions and guarantees. These notions are necessary for input to game solvers. The integration of imperative and declarative paradigms allows using the paradigm that is most appropriate for expressing each requirement. The declarative part is expressed in the LTL fragment of generalized reactivity(1, which admits efficient synthesis algorithms, extended with past LTL. The implementation translates Promela to input for the Slugs synthesizer and is written in Python. The AMBA AHB bus case study is revisited and synthesized efficiently, identifying the need to reorder binary decision diagrams during strategy construction, in order to prevent the exponential blowup observed in previous work.

  8. Synthesis, Analysis And Simulation Of a Four-Bar Mechanism Using ...

    African Journals Online (AJOL)

    Kinematic synthesis of the four-bar mechanism using the complex number method is presented. The results of the synthesis process are analyzed to determine motion characteristics of the mechanism. These motion characteristics are then used for simulation of the mechanism. Matlab programs are written for solving the ...

  9. Gestural Control Of Wavefield synthesis

    DEFF Research Database (Denmark)

    Grani, Francesco; Di Carlo, Diego; Portillo, Jorge Madrid

    2016-01-01

    We present a report covering our preliminary research on the control of spatial sound sources in wavefield synthesis through gesture based interfaces. After a short general introduction on spatial sound and few basic concepts on wavefield synthesis, we presents a graphical application called sp......AAce which let users to con- trol real-time movements of sound sources by drawing tra- jectories on a screen. The first prototype of this application has been developed bound to WFSCollider, an open-source software based on Supercollider which let users control wavefield synthesis. The spAAce application has...... been im- plemented using Processing, a programming language for sketches and prototypes within the context of visual arts, and communicates with WFSCollider through the Open Sound Control protocol. This application aims to create a new way of interaction for live performance of spatial composition...

  10. RPython high-level synthesis

    Science.gov (United States)

    Cieszewski, Radoslaw; Linczuk, Maciej

    2016-09-01

    The development of FPGA technology and the increasing complexity of applications in recent decades have forced compilers to move to higher abstraction levels. Compilers interprets an algorithmic description of a desired behavior written in High-Level Languages (HLLs) and translate it to Hardware Description Languages (HDLs). This paper presents a RPython based High-Level synthesis (HLS) compiler. The compiler get the configuration parameters and map RPython program to VHDL. Then, VHDL code can be used to program FPGA chips. In comparison of other technologies usage, FPGAs have the potential to achieve far greater performance than software as a result of omitting the fetch-decode-execute operations of General Purpose Processors (GPUs), and introduce more parallel computation. This can be exploited by utilizing many resources at the same time. Creating parallel algorithms computed with FPGAs in pure HDL is difficult and time consuming. Implementation time can be greatly reduced with High-Level Synthesis compiler. This article describes design methodologies and tools, implementation and first results of created VHDL backend for RPython compiler.

  11. Accelerating spirocyclic polyketide synthesis using flow chemistry.

    Science.gov (United States)

    Newton, Sean; Carter, Catherine F; Pearson, Colin M; de C Alves, Leandro; Lange, Heiko; Thansandote, Praew; Ley, Steven V

    2014-05-05

    Over the past decade, the integration of synthetic chemistry with flow processing has resulted in a powerful platform for molecular assembly that is making an impact throughout the chemical community. Herein, we demonstrate the extension of these tools to encompass complex natural product synthesis. We have developed a number of novel flow-through processes for reactions commonly encountered in natural product synthesis programs to achieve the first total synthesis of spirodienal A and the preparation of spirangien A methyl ester. Highlights of the synthetic route include an iridium-catalyzed hydrogenation, iterative Roush crotylations, gold-catalyzed spiroketalization and a late-stage cis-selective reduction. © 2014 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  12. Synthesis report regarding the Forest Industry Program 1997-2002[Energy research]; Skogsindustriell energiforskning syntesrapport 1997-2002

    Energy Technology Data Exchange (ETDEWEB)

    Kjoerk, Anders; Olle, Nystroem

    2003-07-01

    This synthesis report commissioned by the Thermal Engineering Research Institute (Varmeforsk) constitutes a summary of the Forest Industry Program up to and including turn of the year 2002/2003. According to the assignment the resulting reports of the program has specifically been related to the present and expected EU-directives and, as a base for interpretation, national rules and regulations of relevance to the programme. Also there is a discussion, from a broad perspective, of the value and usefulness of these reports as well as of how the resources should be spent and prioritised in a coming program. As a basis for the analysis a survey of the program directions and the aims descriptions for the periods 97-98, 99-00 and 01-02 has been carried out. Throughout the three periods there is a tendency going from specific areas of interest to a more general approach which in the last program period has resulted in program directions emphasizing utilization of energy, energy integration and coordination with industry and enterprises outside the forest industry where it applies. A survey of the relevant EU-directives has been carried out. A division was made between directives related to legislation overall, permits related to combustion, operation of combustion plants and landfilling of refuse. In total 26 reports have been summarized and evaluated. They include some, which, at the time of finishing the present report, had not yet been published. The overall result has been synthesized in a discussion covering contents, aims, fulfillment and value of the reports. The work have been structured and presented based on some main activity areas that have been possible to identify from the program directions and policy statements, they are: combustion efficiency, improved energy utilization and novel concepts. Some reports, which have not been possible to arrange under these headings and furthermore are difficult to associate with the main areas defined are covered under a

  13. Synthesis of evidence of diagnostic tests and preventive programs identifying pre-diabetes type

    Directory of Open Access Journals (Sweden)

    Dagmar Tučková

    2015-09-01

    Full Text Available Introduction: Type 2 diabetes mellitus (T2D has become the main type of diabetes in children and it is expected that in countries with high income diabetes it is projected to be one of the leading causes of death by 2030. Another fact is that programs and tests diagnosing pre-diabetes type 2 (T2P-DMC are missing. Methods: The aim of the paper is to present the steps for the synthesis of the evidence within the brand new type of the systematic review (SR: SR of diagnostic test accuracy (DTA. Using the acronym PIRD it was developed a review question, search strategy and inclusion and exclusion criteria. Results: The initial search was done in two databases (MedLine and Cinahl with 2 025 results. The second search after the improvement of the sensitivity and the specificity was done in 15 databases with 3 681 results. Conclusion: This methodological paper introduces how to conduct the systematic review protocols of diagnostic test accuracy on the example of T2P-DMC.

  14. An Ensemble Approach to Building Mercer Kernels with Prior Information

    Science.gov (United States)

    Srivastava, Ashok N.; Schumann, Johann; Fischer, Bernd

    2005-01-01

    This paper presents a new methodology for automatic knowledge driven data mining based on the theory of Mercer Kernels, which are highly nonlinear symmetric positive definite mappings from the original image space to a very high, possibly dimensional feature space. we describe a new method called Mixture Density Mercer Kernels to learn kernel function directly from data, rather than using pre-defined kernels. These data adaptive kernels can encode prior knowledge in the kernel using a Bayesian formulation, thus allowing for physical information to be encoded in the model. Specifically, we demonstrate the use of the algorithm in situations with extremely small samples of data. We compare the results with existing algorithms on data from the Sloan Digital Sky Survey (SDSS) and demonstrate the method's superior performance against standard methods. The code for these experiments has been generated with the AUTOBAYES tool, which automatically generates efficient and documented C/C++ code from abstract statistical model specifications. The core of the system is a schema library which contains templates for learning and knowledge discovery algorithms like different versions of EM, or numeric optimization methods like conjugate gradient methods. The template instantiation is supported by symbolic-algebraic computations, which allows AUTOBAYES to find closed-form solutions and, where possible, to integrate them into the code.

  15. Benzoylurea Chitin Synthesis Inhibitors.

    Science.gov (United States)

    Sun, Ranfeng; Liu, Chunjuan; Zhang, Hao; Wang, Qingmin

    2015-08-12

    Benzoylurea chitin synthesis inhibitors are widely used in integrated pest management (IPM) and insecticide resistance management (IRM) programs due to their low toxicity to mammals and predatory insects. In the past decades, a large number of benzoylurea derivatives have been synthesized, and 15 benzoylurea chitin synthesis inhibitors have been commercialized. This review focuses on the history of commercial benzolyphenylureas (BPUs), synthetic methods, structure-activity relationships (SAR), action mechanism research, environmental behaviors, and ecotoxicology. Furthermore, their disadvantages of high risk to aquatic invertebrates and crustaceans are pointed out. Finally, we propose that the para-substituents at anilide of benzoylphenylureas should be the functional groups, and bipartite model BPU analogues are discussed in an attempt to provide new insight for future development of BPUs.

  16. A Correctness Verification Technique for Commercial FPGA Synthesis Tools

    International Nuclear Information System (INIS)

    Kim, Eui Sub; Yoo, Jun Beom; Choi, Jong Gyun; Kim, Jang Yeol; Lee, Jang Soo

    2014-01-01

    Once the FPGA (Filed-Programmable Gate Array) designers designs Verilog programs, the commercial synthesis tools automatically translate the Verilog programs into EDIF programs so that the designers can have largely focused on HDL designs for correctness of functionality. Nuclear regulation authorities, however, require more considerate demonstration of the correctness and safety of mechanical synthesis processes of FPGA synthesis tools, even if the FPGA industry have acknowledged them empirically as correct and safe processes and tools. In order to assure of the safety, the industry standards for the safety of electronic/electrical devices, such as IEC 61508 and IEC 60880, recommend using the formal verification technique. There are several formal verification tools (i.e., 'FormalPro' 'Conformal' 'Formality' and so on) to verify the correctness of translation from Verilog into EDIF programs, but it is too expensive to use and hard to apply them to the works of 3rd-party developers. This paper proposes a formal verification technique which can contribute to the correctness demonstration in part. It formally checks the behavioral equivalence between Verilog and subsequently synthesized Net list with the VIS verification system. A Net list is an intermediate output of FPGA synthesis process, and EDIF is used as a standard format of Net lists. If the formal verification succeeds, then we can assure that the synthesis process from Verilog into Net list worked correctly at least for the Verilog used. In order to support the formal verification, we developed the mechanical translator 'EDIFtoBLIFMV,' which translates EDIF into BLIF-MV as an input front-end of VIS system, while preserving their behavior equivalence.. We performed the case study with an example of a preliminary version of RPS in a Korean nuclear power plant in order to provide the efficiency of the proposed formal verification technique and implemented translator. It

  17. A Correctness Verification Technique for Commercial FPGA Synthesis Tools

    Energy Technology Data Exchange (ETDEWEB)

    Kim, Eui Sub; Yoo, Jun Beom [Konkuk University, Seoul (Korea, Republic of); Choi, Jong Gyun; Kim, Jang Yeol; Lee, Jang Soo [Korea Atomic Energy Research Institute, Daejeon (Korea, Republic of)

    2014-10-15

    Once the FPGA (Filed-Programmable Gate Array) designers designs Verilog programs, the commercial synthesis tools automatically translate the Verilog programs into EDIF programs so that the designers can have largely focused on HDL designs for correctness of functionality. Nuclear regulation authorities, however, require more considerate demonstration of the correctness and safety of mechanical synthesis processes of FPGA synthesis tools, even if the FPGA industry have acknowledged them empirically as correct and safe processes and tools. In order to assure of the safety, the industry standards for the safety of electronic/electrical devices, such as IEC 61508 and IEC 60880, recommend using the formal verification technique. There are several formal verification tools (i.e., 'FormalPro' 'Conformal' 'Formality' and so on) to verify the correctness of translation from Verilog into EDIF programs, but it is too expensive to use and hard to apply them to the works of 3rd-party developers. This paper proposes a formal verification technique which can contribute to the correctness demonstration in part. It formally checks the behavioral equivalence between Verilog and subsequently synthesized Net list with the VIS verification system. A Net list is an intermediate output of FPGA synthesis process, and EDIF is used as a standard format of Net lists. If the formal verification succeeds, then we can assure that the synthesis process from Verilog into Net list worked correctly at least for the Verilog used. In order to support the formal verification, we developed the mechanical translator 'EDIFtoBLIFMV,' which translates EDIF into BLIF-MV as an input front-end of VIS system, while preserving their behavior equivalence.. We performed the case study with an example of a preliminary version of RPS in a Korean nuclear power plant in order to provide the efficiency of the proposed formal verification technique and implemented translator. It

  18. Program Management Officer | IDRC - International Development ...

    International Development Research Centre (IDRC) Digital Library (Canada)

    English · Français ... Reviews project and program material and prepares synthesis documents of results, decisions, and directions for team discussion; Researches specific topics of interest to the program to enrich the knowledge of team ...

  19. Fission product release under severe accidental conditions: general presentation of the program and synthesis of VERCORS 1-6 results

    International Nuclear Information System (INIS)

    Ducros, G.; Malgouyres, P.P.; Kissane, M.; Boulaud, D.; Durin, M.

    2001-01-01

    The French Nuclear Protection and Safety Institute (IPSN) launched the HEVA-VERCORS program in 1983, in collaboration with Electricite de France (EDF). This program is devoted to the source term of fission products (FP) released from PWR fuel samples during a sequence representative of a severe accident. The analytical experiments are conducted in a shielded hot cell of the LAMA facility of the Grenoble center of CEA (Commissariat a l'Energie Atomique); as simplified tests addressing a limited number of phenomena, they give results complementary to those of the more global in-pile PHEBUS experiments. Six VERCORS tests have been conducted from 1989-1994 with higher fuel temperatures (up to 2600 K) compared with the earlier HEVA tests in order, in particular, to quantify better the release of lower volatile FPs. This paper gives an overview of the experimental facility, a synthesis of FP release from these tests and exhibits, as an example, some specific results of the VERCORS 6 test, performed with high burn-up fuel (60 GWd tU -1 ). The on-going VERCORS HT-RT program, designed to reach fuel liquefaction temperatures, is described before conclusions are drawn

  20. Dynamic analysis of pipings by Modal Synthesis

    International Nuclear Information System (INIS)

    Augusto, O.B.; Mattar Neto, M.

    1986-01-01

    A Modal Synthesis method, the component modes, and its implementation as a post-processor of finite element program is presented. Examples of calculations of stationary and transient vibrations for monitoring pipelines of nuclear power plants are analysed. (M.C.K.) [pt

  1. Modal intersection types, two-level languages, and staged synthesis

    DEFF Research Database (Denmark)

    Henglein, Fritz; Rehof, Jakob

    2016-01-01

    -linguistic framework for staged program synthesis, where metaprograms are automatically synthesized which, when executed, generate code in a target language. We survey the basic theory of staged synthesis and illustrate by example how a two-level language theory specialized from λ∩ ⎕ can be used to understand......A typed λ-calculus, λ∩ ⎕, is introduced, combining intersection types and modal types. We develop the metatheory of λ∩ ⎕, with particular emphasis on the theory of subtyping and distributivity of the modal and intersection type operators. We describe how a stratification of λ∩ ⎕ leads to a multi...... the process of staged synthesis....

  2. The digital code driven autonomous synthesis of ibuprofen automated in a 3D-printer-based robot.

    Science.gov (United States)

    Kitson, Philip J; Glatzel, Stefan; Cronin, Leroy

    2016-01-01

    An automated synthesis robot was constructed by modifying an open source 3D printing platform. The resulting automated system was used to 3D print reaction vessels (reactionware) of differing internal volumes using polypropylene feedstock via a fused deposition modeling 3D printing approach and subsequently make use of these fabricated vessels to synthesize the nonsteroidal anti-inflammatory drug ibuprofen via a consecutive one-pot three-step approach. The synthesis of ibuprofen could be achieved on different scales simply by adjusting the parameters in the robot control software. The software for controlling the synthesis robot was written in the python programming language and hard-coded for the synthesis of ibuprofen by the method described, opening possibilities for the sharing of validated synthetic 'programs' which can run on similar low cost, user-constructed robotic platforms towards an 'open-source' regime in the area of chemical synthesis.

  3. From non-preemptive to preemptive scheduling using synchronization synthesis.

    Science.gov (United States)

    Černý, Pavol; Clarke, Edmund M; Henzinger, Thomas A; Radhakrishna, Arjun; Ryzhyk, Leonid; Samanta, Roopsha; Tarrach, Thorsten

    2017-01-01

    We present a computer-aided programming approach to concurrency. The approach allows programmers to program assuming a friendly, non-preemptive scheduler, and our synthesis procedure inserts synchronization to ensure that the final program works even with a preemptive scheduler. The correctness specification is implicit, inferred from the non-preemptive behavior. Let us consider sequences of calls that the program makes to an external interface. The specification requires that any such sequence produced under a preemptive scheduler should be included in the set of sequences produced under a non-preemptive scheduler. We guarantee that our synthesis does not introduce deadlocks and that the synchronization inserted is optimal w.r.t. a given objective function. The solution is based on a finitary abstraction, an algorithm for bounded language inclusion modulo an independence relation, and generation of a set of global constraints over synchronization placements. Each model of the global constraints set corresponds to a correctness-ensuring synchronization placement. The placement that is optimal w.r.t. the given objective function is chosen as the synchronization solution. We apply the approach to device-driver programming, where the driver threads call the software interface of the device and the API provided by the operating system. Our experiments demonstrate that our synthesis method is precise and efficient. The implicit specification helped us find one concurrency bug previously missed when model-checking using an explicit, user-provided specification. We implemented objective functions for coarse-grained and fine-grained locking and observed that different synchronization placements are produced for our experiments, favoring a minimal number of synchronization operations or maximum concurrency, respectively.

  4. Automatic Bayesian single molecule identification for localization microscopy

    OpenAIRE

    Tang, Yunqing; Hendriks, Johnny; Gensch, Thomas; Dai, Luru; Li, Junbai

    2016-01-01

    Single molecule localization microscopy (SMLM) is on its way to become a mainstream imaging technique in the life sciences. However, analysis of SMLM data is biased by user provided subjective parameters required by the analysis software. To remove this human bias we introduce here the Auto-Bayes method that executes the analysis of SMLM data automatically. We demonstrate the success of the method using the photoelectron count of an emitter as selection characteristic. Moreover, the principle...

  5. Adapting realist synthesis methodology: The case of workplace harassment interventions.

    Science.gov (United States)

    Carr, Tracey; Quinlan, Elizabeth; Robertson, Susan; Gerrard, Angie

    2017-12-01

    Realist synthesis techniques can be used to assess complex interventions by extracting and synthesizing configurations of contexts, mechanisms, and outcomes found in the literature. Our novel and multi-pronged approach to the realist synthesis of workplace harassment interventions describes our pursuit of theory to link macro and program level theories. After discovering the limitations of a dogmatic approach to realist synthesis, we adapted our search strategy and focused our analysis on a subset of data. We tailored our realist synthesis to understand how, why, and under what circumstances workplace harassment interventions are effective. The result was a conceptual framework to test our theory-based interventions and provide the basis for subsequent realist evaluation. Our experience documented in this article contributes to an understanding of how, under what circumstances, and with what consequences realist synthesis principles can be customized. Copyright © 2017 John Wiley & Sons, Ltd.

  6. Influence of the synthesis parameters on the physico-chemical and catalytic properties of cerium oxide for application in the synthesis of diethyl carbonate

    International Nuclear Information System (INIS)

    Leino, Ewelina; Kumar, Narendra; Mäki-Arvela, Päivi; Aho, Atte; Kordás, Krisztián; Leino, Anne-Riikka; Shchukarev, Andrey; Murzin, Dmitry Yu.; Mikkola, Jyri-Pekka

    2013-01-01

    Synthesis of cerium (IV) oxide by means of room temperature precipitation method was carried out. The effect of preparation variables such as synthesis time, calcination temperature and pH of the solution on resulting CeO 2 properties was discussed. Moreover, the comparison of CeO 2 samples prepared in a static and rotation mode of synthesis is presented. The solid catalysts were characterized by means of X-ray powder diffraction, scanning electron microscopy, transmission electron microscope, nitrogen physisorption, X-ray photoelectron spectroscopy, Fourier transform infrared spectroscopy using pyridine as a probe molecule and temperature programmed desorption of CO 2 . Significant variations in physico-chemical properties of CeO 2 by varying the preparation conditions were observed. Furthermore, the catalytic performances of CeO 2 catalysts were compared in the synthesis of diethyl carbonate starting from ethanol and CO 2 using butylene oxide as a dehydrating agent. The dependence of CeO 2 properties on its catalytic activity is evaluated in detail. - Highlights: • Synthesis of cerium (IV) oxide by precipitation method. • Influence of synthesis time, calcination temperature, mode of stirring and solution pH on properties. • Characterization by XRD, SEM, TEM, nitrogen physisorption, XPS, FTIR. • Catalytic performance diethyl carbonate synthesis from ethanol and CO 2

  7. Regulation of protein synthesis during sea urchin early development

    International Nuclear Information System (INIS)

    Kelso, L.C.

    1989-01-01

    Fertilization of the sea urchin egg results in a 20-40 fold increase in the rate of protein synthesis. The masked message hypothesis proposes that mRNAs are masked or unavailable for translation in the egg. We devised an in vivo assay to test this hypothesis. Our results show that masked mRNAs limit protein synthesis in the unfertilized egg. In addition, we show that protein synthesis is also regulated at the level of translational machinery. Following fertilization is a period of rapid cell divisions. This period, known as the rapid cleavage stage, is characterized by the transient synthesis of a novel set of proteins. The synthesis of these proteins is programmed by maternal mRNAs stored in the unfertilized egg. To study the behavior of these mRNAs, we prepared a cDNA library from polysomal poly (A+) RNA from 2-hour embryos. [ 32 P] labeled probes, prepared from the cDNA library, were used to monitor the levels of individual mRNAs in polysomes at fertilization and during early development

  8. Two-directional synthesis as a tool for diversity-oriented synthesis: Synthesis of alkaloid scaffolds

    Directory of Open Access Journals (Sweden)

    Kieron M. G. O’Connell

    2012-06-01

    Full Text Available Two-directional synthesis represents an ideal strategy for the rapid elaboration of simple starting materials and their subsequent transformation into complex molecular architectures. As such, it is becoming recognised as an enabling technology for diversity-oriented synthesis. Herein, we provide a thorough account of our work combining two-directional synthesis with diversity-oriented synthesis, with particular reference to the synthesis of polycyclic alkaloid scaffolds.

  9. FWP executive summaries, Basic Energy Sciences Materials Sciences Programs (SNL/NM)

    Energy Technology Data Exchange (ETDEWEB)

    Samara, G.A.

    1997-05-01

    The BES Materials Sciences Program has the central theme of Scientifically Tailored Materials. The major objective of this program is to combine Sandia`s expertise and capabilities in the areas of solid state sciences, advanced atomic-level diagnostics and materials synthesis and processing science to produce new classes of tailored materials as well as to enhance the properties of existing materials for US energy applications and for critical defense needs. Current core research in this program includes the physics and chemistry of ceramics synthesis and processing, the use of energetic particles for the synthesis and study of materials, tailored surfaces and interfaces for materials applications, chemical vapor deposition sciences, artificially-structured semiconductor materials science, advanced growth techniques for improved semiconductor structures, transport in unconventional solids, atomic-level science of interfacial adhesion, high-temperature superconductors, and the synthesis and processing of nano-size clusters for energy applications. In addition, the program includes the following three smaller efforts initiated in the past two years: (1) Wetting and Flow of Liquid Metals and Amorphous Ceramics at Solid Interfaces, (2) Field-Structured Anisotropic Composites, and (3) Composition-Modulated Semiconductor Structures for Photovoltaic and Optical Technologies. The latter is a joint effort with the National Renewable Energy Laboratory. Separate summaries are given of individual research areas.

  10. Stereodivergent synthesis with a programmable molecular machine

    Science.gov (United States)

    Kassem, Salma; Lee, Alan T. L.; Leigh, David A.; Marcos, Vanesa; Palmer, Leoni I.; Pisano, Simone

    2017-09-01

    It has been convincingly argued that molecular machines that manipulate individual atoms, or highly reactive clusters of atoms, with Ångström precision are unlikely to be realized. However, biological molecular machines routinely position rather less reactive substrates in order to direct chemical reaction sequences, from sequence-specific synthesis by the ribosome to polyketide synthases, where tethered molecules are passed from active site to active site in multi-enzyme complexes. Artificial molecular machines have been developed for tasks that include sequence-specific oligomer synthesis and the switching of product chirality, a photo-responsive host molecule has been described that is able to mechanically twist a bound molecular guest, and molecular fragments have been selectively transported in either direction between sites on a molecular platform through a ratchet mechanism. Here we detail an artificial molecular machine that moves a substrate between different activating sites to achieve different product outcomes from chemical synthesis. This molecular robot can be programmed to stereoselectively produce, in a sequential one-pot operation, an excess of any one of four possible diastereoisomers from the addition of a thiol and an alkene to an α,β-unsaturated aldehyde in a tandem reaction process. The stereodivergent synthesis includes diastereoisomers that cannot be selectively synthesized through conventional iminium-enamine organocatalysis. We anticipate that future generations of programmable molecular machines may have significant roles in chemical synthesis and molecular manufacturing.

  11. Application of lean manufacturing concepts to drug discovery: rapid analogue library synthesis.

    Science.gov (United States)

    Weller, Harold N; Nirschl, David S; Petrillo, Edward W; Poss, Michael A; Andres, Charles J; Cavallaro, Cullen L; Echols, Martin M; Grant-Young, Katherine A; Houston, John G; Miller, Arthur V; Swann, R Thomas

    2006-01-01

    The application of parallel synthesis to lead optimization programs in drug discovery has been an ongoing challenge since the first reports of library synthesis. A number of approaches to the application of parallel array synthesis to lead optimization have been attempted over the years, ranging from widespread deployment by (and support of) individual medicinal chemists to centralization as a service by an expert core team. This manuscript describes our experience with the latter approach, which was undertaken as part of a larger initiative to optimize drug discovery. In particular, we highlight how concepts taken from the manufacturing sector can be applied to drug discovery and parallel synthesis to improve the timeliness and thus the impact of arrays on drug discovery.

  12. Synthesis report: program ecosystems, transport, pollutions, 1998 - 2001

    International Nuclear Information System (INIS)

    Etchelecou, A.; Deletraz, G.; Elichegaray, Ch.

    2001-04-01

    The ''Ecosystems, Transports, Pollution Program'' ETP Program, has been elaborated to evaluate the road pollution impacts on the mountain ecosystems. Four mountains valleys have been chosen: two in Alps (Chamonix and Maurienne) and two in Pyrenees (Biriatou and Vallee d'Aspe). This Program presents six objectives: the road traffic characterization, the pollutants emission estimation, the pollutants concentrations in the air, the pollutants dispersion according to relief, the relationships between pollutants emissions and bio-monitoring, the road pollution effects on nearby ecosystems. (A.L.B.)

  13. Synthesis-on” and “synthesis-off” modes of carbon arc operation during synthesis of carbon nanotubes

    International Nuclear Information System (INIS)

    Yatom, Shurik; Selinsky, Rachel S.

    2017-01-01

    Arc discharge synthesis of single-walled carbon nanotubes (SWCNTs) remains largely uncontrollable, due to incomplete understanding of the synthetic process itself. Here, we show that synthesis of SWCNTs by a carbon arc may not constitute a single continuous process, but may instead consist of two distinct modes. One of these, a “synthesis-on” mode, produces the majority of the nanomaterials. During the synthesis-on mode, proportionally more carbon nanotubes are collected than in another mode, a “synthesis-off” mode. Both synthesis-on and synthesis-off modes for a typical arc configuration, employing a hollow anode filled with a mixture of powdered metal catalyst and graphite, were characterized by using in situ electrical, imaging, and spectroscopic diagnostics, along with ex situ imaging and spectroscopy. The synthesis-on mode duration is rare compared to the total arc run-time, helping to explain the poor selectivity found in the final collected products, a known inadequacy of arc synthesis. Finally, the rarity of the synthesis on mode occurence may be due to the synthesis off mode being more favorable energetically.

  14. Computer Music Synthesis and Composition

    Science.gov (United States)

    Ayers, Lydia

    What is computer music composition? Composers are using the computer for everything from MIDI instruments communicating with computer sequencers, pitch trackers analyzing the sounds of acoustic instruments and converting them to pitch information, live performers with recorded music, performers with interactive computer programs, computer music produced by dancers using sensors, automatic music composition with the computer programs composing the music, composing with sounds or parts of sounds rather than notes, how to structure the use of time, composing with timbres, or the colors of sounds, and timbre morphing, such as a gong morphing to a voice, composing with textures and texture morphing, such as fluttertonguing morphing to pitch, granular synthesis, trills and convolution.

  15. Syntheses by rules of the speech signal in its amplitude-time representation - melody study - phonetic, translation program

    International Nuclear Information System (INIS)

    Santamarina, Carole

    1975-01-01

    The present paper deals with the real-time speech synthesis implemented on a minicomputer. A first program translates the orthographic text into a string of phonetic codes, which is then processed by the synthesis program itself. The method used, a synthesis by rules, directly computes the speech signal in its amplitude-time representation. Emphasis has been put on special cases (diphthongs, 'e muet', consonant-consonant transition) and the implementation of the rhythm and of the melody. (author) [fr

  16. Solar Power and Solar Fuels Synthesis Report. Technology, market and research activities 2006-2011

    Energy Technology Data Exchange (ETDEWEB)

    Ridell, Bengt; Nilsson, Ronny; Rehnlund, Bjoern [Grontmij, Stockholm (Sweden); Kasemo, Bengt [Chalmers Univ. of Technology, Goeteborg (Sweden)

    2012-11-01

    The objectives of the synthesis is to survey the situation and give an accumulated and concentrated knowledge about status, needs and opportunities for Swedish research and Swedish industry within the area of solar power and solar fuels, to be used for prioritisation of further efforts. The synthesis shall identify strengths and weaknesses in areas fundamental for development of solar power and solar fuels, focused on the development in Sweden, but in an international context. The synthesis shall also cover proposals for future Swedish research efforts and organisation of future Swedish research programs.

  17. Multi-Criteria Layout Synthesis of MEMS Devices Using Memetic Computing

    DEFF Research Database (Denmark)

    Tutum, Cem Celal; Fan, Zhun

    2011-01-01

    This paper introduces a multi-objective optimization approach for layout synthesis of MEMS components. A case study of layout synthesis of a comb-driven micro-resonator shows that the approach proposed in this paper can lead to design results accommodating two design objectives, i.e. simultaneous...... sorting genetic algorithm (NSGA-II), has been applied to find multiple trade-off solutions followed by a gradient-based local search, i.e. sequential quadratic programming (SQP), to improve the convergence of the obtained Pareto-optimal front. In order to reduce the number of function evaluations...

  18. Method for innovative synthesis-design of chemical process flowsheets

    DEFF Research Database (Denmark)

    Kumar Tula, Anjan; Gani, Rafiqul

    Chemical process synthesis-design involve the identification of the processing route to reach a desired product from a specified set of raw materials, design of the operations involved in the processing route, the calculations of utility requirements, the calculations of waste and emission...... to the surrounding and many more. Different methods (knowledge-based [1], mathematical programming [2], hybrid, etc.) have been proposed and are also currently employed to solve these synthesis-design problems. D’ Anterroches [3] proposed a group contribution based approach to solve the synthesis-design problem...... of chemical processes, where, chemical process flowsheets could be synthesized in the same way as atoms or groups of atoms are synthesized to form molecules in computer aided molecular design (CAMD) techniques [4]. That, from a library of building blocks (functional process-groups) and a set of rules to join...

  19. Synthesis and Characterization of Oxide Feedstock Powders for the Fuel Cycle R and D Program

    International Nuclear Information System (INIS)

    Voit, Stewart L.; Vedder, Raymond James; Johnson, Jared A.

    2010-01-01

    Nuclear fuel feedstock properties, such as physical, chemical, and isotopic characteristics, have a significant impact on the fuel fabrication process and, by extension, the in-reactor fuel performance. This has been demonstrated through studies with UO 2 spanning greater than 50 years. The Fuel Cycle R and D Program with The Department of Energy Office of Nuclear Energy has initiated an effort to develop a better understanding of the relationships between oxide feedstock, fresh fuel properties, and in-reactor fuel performance for advanced mixed oxide compositions. Powder conditioning studies to enable the use of less than ideal powders for ceramic fuel pellet processing are ongoing at Los Alamos National Laboratory (LANL) and an understanding of methods to increase the green density and homogeneity of pressed pellets has been gained for certain powders. Furthermore, Oak Ridge National Laboratory (ORNL) is developing methods for the co-conversion of mixed oxides along with techniques to analyze the degree of mixing. Experience with the fabrication of fuel pellets using co-synthesized multi-constituent materials is limited. In instances where atomically mixed solid solutions of two or more species are needed, traditional ceramic processing methods have been employed. Solution-based processes may be considered viable synthesis options, including co-precipitation (AUPuC), direct precipitation, direct-conversion (Modified Direct Denitration or MDD) and internal/external gelation (sol-gel). Each of these techniques has various advantages and disadvantages. The Fiscal Year 2010 feedstock development work at ORNL focused on the synthesis and characterization of one batch of UO x and one batch of U 80 Ce 20 O x . Oxide material synthesized at ORNL is being shipped to LANL for fuel fabrication process development studies. The feedstock preparation was performed using the MDD process which utilizes a rotary kiln to continuously thermally denitrate double salts of ammonium

  20. Full Automatic synthesis of [18F]FMISO

    International Nuclear Information System (INIS)

    Seung Jun Oh; Se Hun Kang; Jin-Sook Ryu; Dae Hyuk Moon

    2004-01-01

    [ 18 F]FMISO is a radiopharmaceutical for hypoxia imaging. Although it was developed in 1986, there has been no report about automatic synthesis. In this experiment, we established the full automatic synthesis of [ 18 F]FMISO and evaluate the stability according to ICH guideline. Method: We used GE MicroLab MX for automatic synthesis. Sequence program was modified to control of the module as follows: [ 18 F]Fluoride drying→[ 18 F]fluorination→trapping of reaction mixture on C18 cartridge→purification-elution of reaction mixture→hydrolysis and HPLC purification. We used disposable cassette for each synthesis and discard it after synthesis. To find optimal synthesis condition, we tested 90 120 degree C as reaction temperature, 5 15 mg of 1-(2-nitro-1-imidazolyl) -2-O-tetrahtdropyranyl-3-O-toluenesulfonyl-propanediol as precursor and 5 15 min as [ 18 F]fluorination time. HPLC purification condition was EtOH:H20 = 5:95, 5ml/min with Alltech Econosil column. To check the stability of production, we performed 30 times of run. We checked the radiochemical stability until 6 hours at 25 degree C and 40% humidity condition. We also performed the stability test at 50 70 degree C with 60-80% humidity condition or under UV light for 6 hours after synthesis for acceleration test, Results: The optimal [ 18 F] fluorination condition was 10mg of precursor and 15 min incubation at 110 degree C. Hydrolysis was performed at 105 degree C for 5 min. After HPLC purification, radiochemical yields and purity were 45±2.8 and 98±1.2%, respectively. Total synthesis time was 60±5.2 min. [ 18 F]FMISO was stable until 6 hours after production with 97±2.4% of radiochemical purity. [ 18 F]FMISO was also stable in acceleration test and photochemical test with 97±2.4 and 97±2.8% of radiochemical purity, respectively. Conclusion: We established the full automatic synthesis method of [ 18 F]FMISO with reproducible high production yield. [18F]FMISO synthesized by this method was stable

  1. Putting Priors in Mixture Density Mercer Kernels

    Science.gov (United States)

    Srivastava, Ashok N.; Schumann, Johann; Fischer, Bernd

    2004-01-01

    This paper presents a new methodology for automatic knowledge driven data mining based on the theory of Mercer Kernels, which are highly nonlinear symmetric positive definite mappings from the original image space to a very high, possibly infinite dimensional feature space. We describe a new method called Mixture Density Mercer Kernels to learn kernel function directly from data, rather than using predefined kernels. These data adaptive kernels can en- code prior knowledge in the kernel using a Bayesian formulation, thus allowing for physical information to be encoded in the model. We compare the results with existing algorithms on data from the Sloan Digital Sky Survey (SDSS). The code for these experiments has been generated with the AUTOBAYES tool, which automatically generates efficient and documented C/C++ code from abstract statistical model specifications. The core of the system is a schema library which contains template for learning and knowledge discovery algorithms like different versions of EM, or numeric optimization methods like conjugate gradient methods. The template instantiation is supported by symbolic- algebraic computations, which allows AUTOBAYES to find closed-form solutions and, where possible, to integrate them into the code. The results show that the Mixture Density Mercer-Kernel described here outperforms tree-based classification in distinguishing high-redshift galaxies from low- redshift galaxies by approximately 16% on test data, bagged trees by approximately 7%, and bagged trees built on a much larger sample of data by approximately 2%.

  2. Environmentally benign chemical synthesis and processing

    International Nuclear Information System (INIS)

    Hancock, K.G.

    1992-01-01

    A new era of university-industry-government partnership is required to address the intertwined problems of industrial economic competitiveness and environmental quality. Chemicals that go up the stacks and down the drains are simultaneously a serious detriment to the environment, a waste of natural resources, and a threat to industrial profitability. Recently, the NSF Divisions of Chemistry and chemical and Thermal Systems have joined with the Council for Chemical research in a new grant program to reduce pollution at the source by underwriting research aimed at environmentally benign chemical synthesis and processing. Part of a broader NSF initiative on environmental science research, this new program serves as a model for university-industry-government joint action and technology transfer. Other features of this program and related activities will be described in this paper

  3. Enhancement of computer program SPECTRAN to provide optional synthesis of 1/12 octave-band and critical-band spectra from 1/3 octave-band spectra

    Energy Technology Data Exchange (ETDEWEB)

    Chang, Young-Soo [Argonne National Lab., IL (United States); Liebich, R.E. [Raytheon Environmental Services Company, Cambridge, MA (United States)

    1997-07-01

    This paper describes greatly enhanced version of the computer program SPECTRAN, which was initially presented in Paper No. 96-RA104.01, at the A&WMA 89th Annual Meeting in June 1996. The program has had three basic upgrades since that time. The first is provision of an option to use either batch-mode input from previously prepared data files or a {open_quotes}user-friendly{close_quotes} interactive input routine. The latter is primarily for first-time users and those having only one, or very few, spectra to process. The second improvement is the synthesis of 1/12 octave-band spectra from 1/3 octave-band spectra, with {open_quotes}tone correction,{close_quotes} in a manner similar to that used in the original version of the program. The third fundamental improvement is addition of a unique new capability to synthesize classic {open_quotes}critical-band{close_quotes} spectra from 1/3 octave-band input spectra. Critical-band spectra are also termed {open_quotes}equivalent-rectangular-bandwidth (ERB){close_quotes} and {open_quotes}equal-contribution-to-speech (ECS){close_quotes} spectra.

  4. Superconducting Technology Program: Sandia 1993 annual report

    International Nuclear Information System (INIS)

    Roth, E.P.

    1994-05-01

    Sandia's STP program is a four-part high-temperature superconductor (HTS) research and development program consisting of efforts in powder synthesis and process development, thallium-based HTS film development, wire and tape fabrication, and HTS motor design. The objective of this work is to develop high-temperature superconducting conductors (wire and tape) capable of meeting requirements for high-power electrical devices of interest to industry. The four research efforts currently underway are: (1) process research on the material synthesis of high-temperature superconductors; (2) investigation of the synthesis and processing of thallium-based high-temperature superconducting thick films; (3) process development and characterization of high-temperature superconducting wire and tape, and (4) cryogenic design of a high-temperature superconducting motor. This report outlines the research that has been performed during FY93 in each of these four areas. A brief background of each project is included to provide historical context and perspective. Major areas of research are described, although no attempt has been made to exhaustively include all work performed in each of these areas

  5. Tomo-synthesis. Bibliographic study report

    International Nuclear Information System (INIS)

    2016-01-01

    Tomo-synthesis is a recent technique for breast imaging. This technique, qualified as 'pseudo-3D', draws the attention of health professionals. Indeed, this technique could offer a gain in sensibility and in specificity in the detection of breast cancers compared to 2D mammography, thanks to the reduction of the tissues' overlapping in particular. Although its place and its clinical indication are not still clearly defined, tomo-synthesis is already used in France. The introduction of this technique within the national breast cancer screening program, seems to be foreseen by the authorities in the coming years. IRSN, in the scope of its mission of evaluation of the dose impact of innovative techniques, is closely interested in this technique and has proceeded in 2015 to a bibliographical review of the state of the art in tomo-synthesis. This review paid specific attention to the following points: conception of the installations, dose, image quality and quality control. it has highlighted several points of attention, which incite IRSN to formulate certain recommendations to accompany the spreading of this new technique in France. Most of the clinical trials validating the use of tomo-synthesis were realized on systems of a single manufacturer. However, manufacturers' strategies of design are heterogeneous. There is no unique technique of tomo-synthesis but several, of which equivalence in terms of technical and clinical performances is not demonstrated. Due to the heterogeneity of the different models available on the French market, IRSN recommends not to extrapolate the results of clinical studies obtained on a specific system but to consolidate them for all the available systems. In many imaging departments, tomo-synthesis is already implemented in addition or in substitution of 2D mammography without any regulatory quality control and periodic technical checks. The European reference standard for quality control of these devices is not yet

  6. 34 CFR 668.10 - Direct assessment programs.

    Science.gov (United States)

    2010-07-01

    ... such as creativity, analysis or synthesis associated with the subject matter of the program. Examples... student will do (e.g., required readings, research, and work products), how the student's work will be...

  7. Synthesis and structures of two cobalt compounds of 2-amino-2 ...

    Indian Academy of Sciences (India)

    as catalysis, magnetism and luminescence.1 7 One of the most fascinating challenges ... program and refined by the full-matrix least-squares method on F2 with the ..... R E P 2012 Synthesis and characterisation of cobalt(II) phosphonate cage ...

  8. Occupational Safety and Health Programs in Career Education.

    Science.gov (United States)

    DiCarlo, Robert D.; And Others

    This resource guide was developed in response to the Occupational Safety and Health Act of 1970 and is intended to assist teachers in implementing courses in occupational safety and health as part of a career education program. The material is a synthesis of films, programed instruction, slides and narration, case studies, safety pamphlets,…

  9. Superconducting technology program Sandia 1996 annual report

    International Nuclear Information System (INIS)

    Roth, E.P.

    1997-02-01

    Sandia's Superconductivity Technology Program is a thallium-based high-temperature superconductor (HTS) research and development program consisting of efforts in powder synthesis and process development, open-system thick film conductor development, wire and tape fabrication, and HTS motor design. The objective of this work is to develop high-temperature superconducting conductors (wire and tape) capable of meeting requirements for high-power electrical devices of interest to industry. The research efforts currently underway are: (1) Process development and characterization of thallium-based high-temperature superconducting closed system wire and tape, (2) Investigation of the synthesis and processing of thallium-based thick films using two-zone processing, and (3) Cryogenic design of a 30K superconducting motor. This report outlines the research that has been performed during FY96 in each of these areas

  10. Multi-line split DNA synthesis: a novel combinatorial method to make high quality peptide libraries

    Directory of Open Access Journals (Sweden)

    Ueno Shingo

    2004-09-01

    Full Text Available Abstract Background We developed a method to make a various high quality random peptide libraries for evolutionary protein engineering based on a combinatorial DNA synthesis. Results A split synthesis in codon units was performed with mixtures of bases optimally designed by using a Genetic Algorithm program. It required only standard DNA synthetic reagents and standard DNA synthesizers in three lines. This multi-line split DNA synthesis (MLSDS is simply realized by adding a mix-and-split process to normal DNA synthesis protocol. Superiority of MLSDS method over other methods was shown. We demonstrated the synthesis of oligonucleotide libraries with 1016 diversity, and the construction of a library with random sequence coding 120 amino acids containing few stop codons. Conclusions Owing to the flexibility of the MLSDS method, it will be able to design various "rational" libraries by using bioinformatics databases.

  11. A Review and Modern Approach to LC Ladder Synthesis

    Directory of Open Access Journals (Sweden)

    Alexander J. Casson

    2011-01-01

    Full Text Available Ultra low power circuits require robust and reliable operation despite the unavoidable use of low currents and the weak inversion transistor operation region. For analogue domain filtering doubly terminated LC ladder based filter topologies are thus highly desirable as they have very low sensitivities to component values: non-exact component values have a minimal effect on the realised transfer function. However, not all transfer functions are suitable for implementation via a LC ladder prototype, and even when the transfer function is suitable the synthesis procedure is not trivial. The modern circuit designer can thus benefit from an updated treatment of this synthesis procedure. This paper presents a methodology for the design of doubly terminated LC ladder structures making use of the symbolic maths engines in programs such as MATLAB and MAPLE. The methodology is explained through the detailed synthesis of an example 7th order bandpass filter transfer function for use in electroencephalogram (EEG analysis.

  12. Program Management Officer -Think Tank Initiative | IDRC ...

    International Development Research Centre (IDRC) Digital Library (Canada)

    English · Français ... minutes and meeting reports of a technical nature to ensure discussions and decisions are well documented ... the Centre; Reviews project and program material and prepares synthesis documents of results, decisions, ...

  13. Synthesis of the project leadership staffing needs for successful development of alternative delivery programs.

    Science.gov (United States)

    2017-08-01

    This research provides a synthesis of practices in organizational structuring and professional staffing of the innovative delivery units in several state DOTs across the nation that are actively utilizing alternative project delivery. Several major c...

  14. Synthesis of concentric circular antenna arrays using dragonfly algorithm

    Science.gov (United States)

    Babayigit, B.

    2018-05-01

    Due to the strong non-linear relationship between the array factor and the array elements, concentric circular antenna array (CCAA) synthesis problem is challenging. Nature-inspired optimisation techniques have been playing an important role in solving array synthesis problems. Dragonfly algorithm (DA) is a novel nature-inspired optimisation technique which is based on the static and dynamic swarming behaviours of dragonflies in nature. This paper presents the design of CCAAs to get low sidelobes using DA. The effectiveness of the proposed DA is investigated in two different (with and without centre element) cases of two three-ring (having 4-, 6-, 8-element or 8-, 10-, 12-element) CCAA design. The radiation pattern of each design cases is obtained by finding optimal excitation weights of the array elements using DA. Simulation results show that the proposed algorithm outperforms the other state-of-the-art techniques (symbiotic organisms search, biogeography-based optimisation, sequential quadratic programming, opposition-based gravitational search algorithm, cat swarm optimisation, firefly algorithm, evolutionary programming) for all design cases. DA can be a promising technique for electromagnetic problems.

  15. Systematic process synthesis and design methods for cost effective waste minimization

    International Nuclear Information System (INIS)

    Biegler, L.T.; Grossman, I.E.; Westerberg, A.W.

    1995-01-01

    We present progress on our work to develop synthesis methods to aid in the design of cost effective approaches to waste minimization. Work continues to combine the approaches of Douglas and coworkers and of Grossmann and coworkers on a hierarchical approach where bounding information allows it to fit within a mixed integer programming approach. We continue work on the synthesis of reactors and of flexible separation processes. In the first instance, we strive for methods we can use to reduce the production of potential pollutants, while in the second we look for ways to recover and recycle solvents

  16. Systematic process synthesis and design methods for cost effective waste minimization

    Energy Technology Data Exchange (ETDEWEB)

    Biegler, L.T.; Grossman, I.E.; Westerberg, A.W. [Carnegie Mellon Univ., Pittsburgh, PA (United States)

    1995-12-31

    We present progress on our work to develop synthesis methods to aid in the design of cost effective approaches to waste minimization. Work continues to combine the approaches of Douglas and coworkers and of Grossmann and coworkers on a hierarchical approach where bounding information allows it to fit within a mixed integer programming approach. We continue work on the synthesis of reactors and of flexible separation processes. In the first instance, we strive for methods we can use to reduce the production of potential pollutants, while in the second we look for ways to recover and recycle solvents.

  17. A Software Architecture for Intelligent Synthesis Environments

    Science.gov (United States)

    Filman, Robert E.; Norvig, Peter (Technical Monitor)

    2001-01-01

    The NASA's Intelligent Synthesis Environment (ISE) program is a grand attempt to develop a system to transform the way complex artifacts are engineered. This paper discusses a "middleware" architecture for enabling the development of ISE. Desirable elements of such an Intelligent Synthesis Architecture (ISA) include remote invocation; plug-and-play applications; scripting of applications; management of design artifacts, tools, and artifact and tool attributes; common system services; system management; and systematic enforcement of policies. This paper argues that the ISA extend conventional distributed object technology (DOT) such as CORBA and Product Data Managers with flexible repositories of product and tool annotations and "plug-and-play" mechanisms for inserting "ility" or orthogonal concerns into the system. I describe the Object Infrastructure Framework, an Aspect Oriented Programming (AOP) environment for developing distributed systems that provides utility insertion and enables consistent annotation maintenance. This technology can be used to enforce policies such as maintaining the annotations of artifacts, particularly the provenance and access control rules of artifacts-, performing automatic datatype transformations between representations; supplying alternative servers of the same service; reporting on the status of jobs and the system; conveying privileges throughout an application; supporting long-lived transactions; maintaining version consistency; and providing software redundancy and mobility.

  18. Occupational Therapy in Preschools: A Synthesis of Current Knowledge

    Science.gov (United States)

    Jasmin, Emmanuelle; Gauthier, Anne; Julien, Marjorie; Hui, Caroline

    2018-01-01

    This paper presents a synthesis of current knowledge about occupational therapy in preschools (for 3-6 year olds) in order to provide a better understanding of this field of practice and to guide the implementation or programming of this service. In the literature, occupational therapy in preschools has been documented mainly in the USA. Results…

  19. Are workplace health promotion programs effective at improving presenteeism in workers? A systematic review and best evidence synthesis of the literature.

    Science.gov (United States)

    Cancelliere, Carol; Cassidy, J David; Ammendolia, Carlo; Côté, Pierre

    2011-05-26

    Presenteeism is highly prevalent and costly to employers. It is defined as being present at work, but limited in some aspect of job performance by a health problem.Workplace health promotion (WHP) is a common strategy used to enhance on-the-job productivity. The primary objective is to determine if WHP programs are effective in improving presenteeism. The secondary objectives are to identify characteristics of successful programs and potential risk factors for presenteeism. The Cochrane Library, Medline, and other electronic databases were searched from 1990 to 2010. Reference lists were examined, key journals were hand-searched and experts were contacted. Included studies were original research that contained data on at least 20 participants (≥ 18 years of age), and examined the impacts of WHP programs implemented at the workplace. The Effective Public Health Practice Project Tool for Quantitative Studies was used to rate studies. 'Strong' and 'moderate' studies were abstracted into evidence tables, and a best evidence synthesis was performed. Interventions were deemed successful if they improved the outcome of interest. Their program components were identified, as were possible risk factors contributing to presenteeism. After 2,032 titles and abstracts were screened, 47 articles were reviewed, and 14 were accepted (4 strong and 10 moderate studies). These studies contained preliminary evidence for a positive effect of some WHP programs. Successful programs offered organizational leadership, health risk screening, individually tailored programs, and a supportive workplace culture. Potential risk factors contributing to presenteeism included being overweight, a poor diet, a lack of exercise, high stress, and poor relations with co-workers and management. This review is limited to English publications. A large number of reviewed studies (70%) were inadmissible due to issues of bias, thus limiting the amount of primary evidence. The uncertainties surrounding

  20. Are workplace health promotion programs effective at improving presenteeism in workers? a systematic review and best evidence synthesis of the literature

    Directory of Open Access Journals (Sweden)

    Cassidy J David

    2011-05-01

    Full Text Available Abstract Background Presenteeism is highly prevalent and costly to employers. It is defined as being present at work, but limited in some aspect of job performance by a health problem. Workplace health promotion (WHP is a common strategy used to enhance on-the-job productivity. The primary objective is to determine if WHP programs are effective in improving presenteeism. The secondary objectives are to identify characteristics of successful programs and potential risk factors for presenteeism. Methods The Cochrane Library, Medline, and other electronic databases were searched from 1990 to 2010. Reference lists were examined, key journals were hand-searched and experts were contacted. Included studies were original research that contained data on at least 20 participants (≥ 18 years of age, and examined the impacts of WHP programs implemented at the workplace. The Effective Public Health Practice Project Tool for Quantitative Studies was used to rate studies. 'Strong' and 'moderate' studies were abstracted into evidence tables, and a best evidence synthesis was performed. Interventions were deemed successful if they improved the outcome of interest. Their program components were identified, as were possible risk factors contributing to presenteeism. Results After 2,032 titles and abstracts were screened, 47 articles were reviewed, and 14 were accepted (4 strong and 10 moderate studies. These studies contained preliminary evidence for a positive effect of some WHP programs. Successful programs offered organizational leadership, health risk screening, individually tailored programs, and a supportive workplace culture. Potential risk factors contributing to presenteeism included being overweight, a poor diet, a lack of exercise, high stress, and poor relations with co-workers and management. Limitations: This review is limited to English publications. A large number of reviewed studies (70% were inadmissible due to issues of bias, thus limiting

  1. Preparation of 18F-FDG by basic hydrolysis on '1-pot' FDG synthesis module

    International Nuclear Information System (INIS)

    Li Qiming; Jin Rongbing; Fan Xijiang

    2007-01-01

    '1-pot' equipment is an automatic synthesis module of producing 18 F-FDG by acid hydrolysis process. Simple changes in the chemistry, plumbing, and programming of CPCU enable two back-to-back '1-pot' systems in a unit. The preparation of precursor of 18 F-FDG is the same with origin. The results of experiments showed that by basic hydrolysis procedure, the synthesis time is shorten from 45-50 min to 30-35 min, uncorrected synthesis yield can be increased from 45%-50% to 60%-65%, and the preparing procedure is stable. The quality of 18 F-FDG meets the requirements under USP fludeoxyglucose 18 F injection, radiochemical purity is more than 99% especially by HPLC. With '1-pot' FDG synthesis module Chemical Processing Control Unit (CPCU), 18 F-FDG can be prepared by basic hydrolysis process. (authors)

  2. Cyclobutane-Containing Alkaloids: Origin, Synthesis, and Biological Activities

    OpenAIRE

    Sergeiko, Anastasia; Poroikov, Vladimir V; Hanuš, Lumir O; Dembitsky, Valery M

    2008-01-01

    Present review describes research on novel natural cyclobutane-containing alkaloids isolated from terrestrial and marine species. More than 60 biological active compounds have been confirmed to have antimicrobial, antibacterial, antitumor, and other activities. The structures, synthesis, origins, and biological activities of a selection of cyclobutane-containing alkaloids are reviewed. With the computer program PASS some additional biological activities are also predicted, which point toward ...

  3. High-speed research program systems analysis activities at Ames Research Center

    Science.gov (United States)

    Kidwell, George H.

    1992-01-01

    The Ames Systems Analysis Branch has been working to support the High Speed Research Program (HSRP) for nearly one year. Both the status of methodology development activities and the results of studies are presented whether completed or underway. The discussion involves the conceptual design synthesis program used for High Speed Civil Transport (HSCT) studies, ACSYNT (aircraft synthesis), and enhancements that have been made especially for HSRP. Some results are presented for one study that has been completed and two that are underway. These are the advanced controls integration study, the fuel cost impact study, and the oblique wing configuration evaluation that is part of a larger innovative concepts study.

  4. The digital code driven autonomous synthesis of ibuprofen automated in a 3D-printer-based robot

    Directory of Open Access Journals (Sweden)

    Philip J. Kitson

    2016-12-01

    Full Text Available An automated synthesis robot was constructed by modifying an open source 3D printing platform. The resulting automated system was used to 3D print reaction vessels (reactionware of differing internal volumes using polypropylene feedstock via a fused deposition modeling 3D printing approach and subsequently make use of these fabricated vessels to synthesize the nonsteroidal anti-inflammatory drug ibuprofen via a consecutive one-pot three-step approach. The synthesis of ibuprofen could be achieved on different scales simply by adjusting the parameters in the robot control software. The software for controlling the synthesis robot was written in the python programming language and hard-coded for the synthesis of ibuprofen by the method described, opening possibilities for the sharing of validated synthetic ‘programs’ which can run on similar low cost, user-constructed robotic platforms towards an ‘open-source’ regime in the area of chemical synthesis.

  5. Lesbian, Gay, Bisexual, and Transgender Youth with Disabilities: A Meta-Synthesis

    Science.gov (United States)

    Duke, Thomas Scott

    2011-01-01

    This meta-synthesis of empirical and nonempirical literature analyzed 24 journal articles and book chapters that addressed the intersection of disability, [homo]sexuality, and gender identity/expression in P-12 schools, colleges and universities, supported living programs, and other educational and social contexts in Australia, Belgium, Canada,…

  6. Kinematic synthesis of adjustable robotic mechanisms

    Science.gov (United States)

    Chuenchom, Thatchai

    1993-01-01

    identification of adjustable member was also developed. The analytical synthesis techniques developed in this dissertation were successfully implemented in a graphic-intensive user-friendly computer program. A physical prototype of a general purpose adjustable robotic mechanism has been constructed to serve as a proof-of-concept model.

  7. Example-Based Automatic Music-Driven Conventional Dance Motion Synthesis

    Energy Technology Data Exchange (ETDEWEB)

    Xu, Songhua [ORNL; Fan, Rukun [University of North Carolina, Chapel Hill; Geng, Weidong [Zhejiang University

    2011-04-21

    We introduce a novel method for synthesizing dance motions that follow the emotions and contents of a piece of music. Our method employs a learning-based approach to model the music to motion mapping relationship embodied in example dance motions along with those motions' accompanying background music. A key step in our method is to train a music to motion matching quality rating function through learning the music to motion mapping relationship exhibited in synchronized music and dance motion data, which were captured from professional human dance performance. To generate an optimal sequence of dance motion segments to match with a piece of music, we introduce a constraint-based dynamic programming procedure. This procedure considers both music to motion matching quality and visual smoothness of a resultant dance motion sequence. We also introduce a two-way evaluation strategy, coupled with a GPU-based implementation, through which we can execute the dynamic programming process in parallel, resulting in significant speedup. To evaluate the effectiveness of our method, we quantitatively compare the dance motions synthesized by our method with motion synthesis results by several peer methods using the motions captured from professional human dancers' performance as the gold standard. We also conducted several medium-scale user studies to explore how perceptually our dance motion synthesis method can outperform existing methods in synthesizing dance motions to match with a piece of music. These user studies produced very positive results on our music-driven dance motion synthesis experiments for several Asian dance genres, confirming the advantages of our method.

  8. Example-based automatic music-driven conventional dance motion synthesis.

    Science.gov (United States)

    Fan, Rukun; Xu, Songhua; Geng, Weidong

    2012-03-01

    We introduce a novel method for synthesizing dance motions that follow the emotions and contents of a piece of music. Our method employs a learning-based approach to model the music to motion mapping relationship embodied in example dance motions along with those motions' accompanying background music. A key step in our method is to train a music to motion matching quality rating function through learning the music to motion mapping relationship exhibited in synchronized music and dance motion data, which were captured from professional human dance performance. To generate an optimal sequence of dance motion segments to match with a piece of music, we introduce a constraint-based dynamic programming procedure. This procedure considers both music to motion matching quality and visual smoothness of a resultant dance motion sequence. We also introduce a two-way evaluation strategy, coupled with a GPU-based implementation, through which we can execute the dynamic programming process in parallel, resulting in significant speedup. To evaluate the effectiveness of our method, we quantitatively compare the dance motions synthesized by our method with motion synthesis results by several peer methods using the motions captured from professional human dancers' performance as the gold standard. We also conducted several medium-scale user studies to explore how perceptually our dance motion synthesis method can outperform existing methods in synthesizing dance motions to match with a piece of music. These user studies produced very positive results on our music-driven dance motion synthesis experiments for several Asian dance genres, confirming the advantages of our method.

  9. Procafd: Computer Aided Tool for Synthesis-Design & Analysis of Chemical Process Flowsheets

    DEFF Research Database (Denmark)

    Kumar Tula, Anjan; Eden, Mario R.; Gani, Rafiqul

    2015-01-01

    and emission to the surrounding and many more. In terms of approaches to solve the synthesis-design problem three major lines of attack have emerged: (a) the knowledge based approach [1] which relies on engineering knowledge & problem insights, (b) the optimization approach [2] which relies on the use...... of mathematical programming techniques, (c) hybrid approach which combine two or more approaches. D’Anterroches [3] proposed a group contribution based hybrid approach to solve the synthesis-design problem where, chemical process flowsheets could be synthesized in the same way as atoms or groups of atoms...... parameters for the operations of the high ranked flowsheets are established through reverse engineering approaches based on driving forces available for each operation. In the final stage, rigorous simulation is performed to validate the synthesis-design. Note that since the flowsheet is synthesized...

  10. Algorithmic synthesis using Python compiler

    Science.gov (United States)

    Cieszewski, Radoslaw; Romaniuk, Ryszard; Pozniak, Krzysztof; Linczuk, Maciej

    2015-09-01

    This paper presents a python to VHDL compiler. The compiler interprets an algorithmic description of a desired behavior written in Python and translate it to VHDL. FPGA combines many benefits of both software and ASIC implementations. Like software, the programmed circuit is flexible, and can be reconfigured over the lifetime of the system. FPGAs have the potential to achieve far greater performance than software as a result of bypassing the fetch-decode-execute operations of traditional processors, and possibly exploiting a greater level of parallelism. This can be achieved by using many computational resources at the same time. Creating parallel programs implemented in FPGAs in pure HDL is difficult and time consuming. Using higher level of abstraction and High-Level Synthesis compiler implementation time can be reduced. The compiler has been implemented using the Python language. This article describes design, implementation and results of created tools.

  11. Detonation-synthesis nanodiamonds: synthesis, structure, properties and applications

    Energy Technology Data Exchange (ETDEWEB)

    Dolmatov, Valerii Yu [Federal State Unitary Enterprise Special Design-Technology Bureau (FSUE SDTB) ' ' Tekhnolog' ' at the St Petersburg State Institute of Technology (Technical University) (Russian Federation)

    2007-04-30

    The review outlines the theoretical foundations and industrial implementations of modern detonation synthesis of nanodiamonds and chemical purification of the nanodiamonds thus obtained. The structure, key properties and promising fields of application of detonation-synthesis nanodiamonds are considered.

  12. Detonation-synthesis nanodiamonds: synthesis, structure, properties and applications

    International Nuclear Information System (INIS)

    Dolmatov, Valerii Yu

    2007-01-01

    The review outlines the theoretical foundations and industrial implementations of modern detonation synthesis of nanodiamonds and chemical purification of the nanodiamonds thus obtained. The structure, key properties and promising fields of application of detonation-synthesis nanodiamonds are considered.

  13. Use of scintillometric quantitation of unscheduled DNA synthesis in isolated rat hepatocytes for the screening of genotoxic agents

    International Nuclear Information System (INIS)

    Hsia, M.T.

    1987-01-01

    The induction of unscheduled DNA synthesis has been considered as a suitable endpoint for the screening of genotoxic agents. Experimentally, unscheduled DNA synthesis is most frequently measured by autoradiography. The purpose of this report was to examine the usefulness of the liquid scintillation counting technique in measuring unscheduled DNA synthesis response in isolated rat hepatocytes. The various liquid scintillation counting-based unscheduled DNA synthesis assay procedures were examined according to the following groupings: (1) procedures based on the acid precipitation of cellular macromolecules, (2) procedures based on isopycnic gradient centrifugation of solubilized cells, (3) procedures based on nuclei isolation in conjunction with other DNA purification methods, and (4) procedures based on the selective retention of hepatocellular DNA. Limited cases in which test chemicals gave positive unscheduled DNA synthesis response in liquid scintillation counting-based assays and negative unscheduled DNA synthesis response in autoradiography-based assays are presented. It is concluded that liquid scintillation counting-based unscheduled DNA synthesis assays represent an appropriate system for inclusion in carcinogenicity and mutagenicity testing programs

  14. Embedded audio without beeps: synthesis and sound effects from cheap to steep

    DEFF Research Database (Denmark)

    Møbius, Nikolaj; Overholt, Dan

    2015-01-01

    , and wireless devices for the control of sound or music generated remotely. For example, studio creations can synthesize sound directly with an Arduino or a more powerful "Create USB Interface" board via Direct Digital Synthesis. Alternatively, they can control a program such as Pure Data (or other common...

  15. N-acetylcysteine stimulates protein synthesis in enterocytes independently of glutathione synthesis.

    Science.gov (United States)

    Yi, Dan; Hou, Yongqing; Wang, Lei; Long, Minhui; Hu, Shengdi; Mei, Huimin; Yan, Liqiong; Hu, Chien-An Andy; Wu, Guoyao

    2016-02-01

    Dietary supplementation with N-acetylcysteine (NAC) has been reported to improve intestinal health and treat gastrointestinal diseases. However, the underlying mechanisms are not fully understood. According to previous reports, NAC was thought to exert its effect through glutathione synthesis. This study tested the hypothesis that NAC enhances enterocyte growth and protein synthesis independently of cellular glutathione synthesis. Intestinal porcine epithelial cells were cultured for 3 days in Dulbecco's modified Eagle medium containing 0 or 100 μM NAC. To determine a possible role for GSH (the reduced form of glutathione) in mediating the effect of NAC on cell growth and protein synthesis, additional experiments were conducted using culture medium containing 100 μM GSH, 100 μM GSH ethyl ester (GSHee), diethylmaleate (a GSH-depletion agent; 10 μM), or a GSH-synthesis inhibitor (buthionine sulfoximine, BSO; 20 μM). NAC increased cell proliferation, GSH concentration, and protein synthesis, while inhibiting proteolysis. GSHee enhanced cell proliferation and GSH concentration without affecting protein synthesis but inhibited proteolysis. Conversely, BSO or diethylmaleate reduced cell proliferation and GSH concentration without affecting protein synthesis, while promoting protein degradation. At the signaling level, NAC augmented the protein abundance of total mTOR, phosphorylated mTOR, and phosphorylated 70S6 kinase as well as mRNA levels for mTOR and p70S6 kinase in IPEC-1 cells. Collectively, these results indicate that NAC upregulates expression of mTOR signaling proteins to stimulate protein synthesis in enterocytes independently of GSH generation. Our findings provide a hitherto unrecognized biochemical mechanism for beneficial effects of NAC in intestinal cells.

  16. MPA-11: Materials Synthesis and Integrated Devices; Overview of an Applied Energy Group

    Energy Technology Data Exchange (ETDEWEB)

    Dattelbaum, Andrew Martin [Los Alamos National Lab. (LANL), Los Alamos, NM (United States)

    2017-11-16

    Our mission is to provide innovative and creative chemical synthesis and materials science solutions to solve materials problems across the LANL missions. Our group conducts basic and applied research in areas related to energy security as well as problems relevant to the Weapons Program.

  17. Final Report on XStack: Software Synthesis for High Productivity ExaScale Computing

    Energy Technology Data Exchange (ETDEWEB)

    Solar-Lezama, Armando [Massachusetts Inst. of Technology (MIT), Cambridge, MA (United States). Computer Science and Artificial Intelligence Lab.

    2016-07-12

    The goal of the project was to develop a programming model that would significantly improve productivity in the high-performance computing domain by bringing together three components: a) Automated equivalence checking, b) Sketch-based program synthesis, and c) Autotuning. The report provides an executive summary of the research accomplished through this project. At the end of the report is appended a paper that describes in more detail the key technical accomplishments from this project, and which was published in SC 2014.

  18. Barriers and Facilitators to the Implementation of Interventions to Prevent Youth Violence in Latin America: A Systematic Review and Qualitative Evidence Synthesis.

    Science.gov (United States)

    Atienzo, Erika E; Kaltenthaler, Eva; Baxter, Susan K

    2016-08-12

    Youth violence in Latin America is an important public health problem. However, the evidence from preventive programs within the region to address this problem is limited. Identifying context-specific factors that facilitate or hinder the success of interventions is necessary to guarantee the successful implementation of new preventive strategies. We present a systematic review and synthesis of qualitative studies to identify factors affecting the implementation of programs to prevent youth violence in Latin America. We searched 10 electronic databases and websites of international institutions. The quality of the studies was assessed using the critical appraisal skills program checklist, while the certainty of the findings of the synthesis was assessed using the certainty of the qualitative evidence approach. We included eight papers describing five programs in Argentina, Venezuela, Peru, El Salvador, and Mexico. Most of the factors affecting the implementation of programs were aspects related to features of the programs and social/political constraints. The synthesis suggests that future programs can benefit from having a multidisciplinary and/or multisectoral approach involving different key players. At the same time, potential strategies for avoiding problems related to such active engagement should be planned via promoting effective channels for communication and supervision. The review also suggests the importance of increasing awareness and motivation toward the problem of youth violence among relevant agencies and stakeholders. While the limited volume and quality of the literature impact on the ability to draw conclusions, the results could be useful for new programs being designed and the ones seeking to be adapted from other contexts. © The Author(s) 2016.

  19. Parametric Synthesis of Automatic Control System of Industrial Robot Manipulator in Compliance with Requirements of Robust Quality

    Directory of Open Access Journals (Sweden)

    A. A. Nesenchuk

    2004-01-01

    Full Text Available The paper considers an application of a root-locus method for synthesis of dynamic systems with uncertainty that meet the requirements of pre-set quality. This method is used for parametric synthesis of automatic control system of industrial robot manipulator that is used for transportation of engineering products. The synthesis takes place under conditions of substantial changes in inertia moment of robot load. As a result of investigations it is possible to determine range of values of variable parameter that ensures the required quality of control system operation. A system of computer programs has been developed in order to solve the problem.

  20. Distributed PROMPT-LTL Synthesis

    Directory of Open Access Journals (Sweden)

    Swen Jacobs

    2016-09-01

    Full Text Available We consider the synthesis of distributed implementations for specifications in Prompt Linear Temporal Logic (PROMPT-LTL, which extends LTL by temporal operators equipped with parameters that bound their scope. For single process synthesis it is well-established that such parametric extensions do not increase worst-case complexities. For synchronous systems, we show that, despite being more powerful, the distributed realizability problem for PROMPT-LTL is not harder than its LTL counterpart. For asynchronous systems we have to consider an assume-guarantee synthesis problem, as we have to express scheduling assumptions. As asynchronous distributed synthesis is already undecidable for LTL, we give a semi-decision procedure for the PROMPT-LTL assume-guarantee synthesis problem based on bounded synthesis.

  1. Organic synthesis

    International Nuclear Information System (INIS)

    Lallemand, J.Y.; Fetizon, M.

    1988-01-01

    The 1988 progress report of the Organic Synthesis Chemistry laboratory (Polytechnic School, France), is presented. The laboratory activities are centered on the chemistry of natural products, which have a biological activity and on the development of new reactions, useful in the organic synthesis. The research works involve the following domains: the natural products chemistry which are applied in pharmacology, the plants and insects chemistry, the organic synthesis, the radical chemistry new reactions and the bio-organic physicochemistry. The published papers, the congress communications and the thesis are listed [fr

  2. Robotic production of 2-deoxy-2-[18F]fluoro-D-glucose: a routine method of synthesis using tetrabutylammonium [18F]fluoride

    International Nuclear Information System (INIS)

    Brodack, J.W.; Dence, C.S.; Kilbourn, M.R.; Welch, M.J.

    1988-01-01

    Using existing robotic hardware and software programs developed for the synthesis of several positron-emitting radiopharmaceuticals for PET imaging, the additional automated synthesis of 2-deoxy-2-[ 18 F]fluoro-D-glucose (2-[ 18 F]FDG) has been incorporated into our Zymate Laboratory Automation System. The robotic synthesis of 2-[ 18 F]FDG took less than one week to implement, including the organization of software subroutines and construction of an additional heating station. The end of synthesis yield (12-17%) and radiochemical purity (96-99%) for the robotic preparation of 2-[ 18 F]FDG is similar to that of the manual synthesis. This automated method uses anhydrous tetrabutylammonium [ 18 F]fluoride as the reactive fluoride source in the labeling step. The procedure is a modification of the synthesis reported by Hamacher et al. [Hamacher et al. (1986) J. Nucl. Med. 27, 235]. (author)

  3. Design of convergent pierce electron gun of accelerator for radiation sterilization by the method of synthesis

    International Nuclear Information System (INIS)

    Kong Xiaoxiao; Li Quanfeng

    2003-01-01

    A synthesis technique for the preliminary design of convergent Pierce electron guns is introduced briefly which has a series of advantages over the traditional methods. A thermal cathode electron gun used in the accelerator for radiation sterilization with the synthesis method is redesigned, and the validity of this method is proved. Based on the preliminary design parameters given by the synthesis method, a simulating calculation program, EGUN, was used in the numerical figure design of the focusing electrode and the anode. The final results can meet the engineering requirement as the current being 1A, the normalized emittance being less than 4 mm·mrad, and the final current density showing uniformity

  4. Active vibration control testing of the SPICES program: final demonstration article

    Science.gov (United States)

    Dunne, James P.; Jacobs, Jack H.

    1996-05-01

    The Synthesis and Processing of Intelligent Cost Effective Structures (SPICES) Program is a partnership program sponsored by the Advanced Research Projects Agency. The mission of the program is to develop cost effective material processing and synthesis technologies to enable new products employing active vibration suppression and control devices to be brought to market. The two year program came to fruition in 1995 through the fabrication of the final smart components and testing of an active plate combined with two trapezoidal rails, forming an active mount. Testing of the SPICES combined active mount took place at McDonnell Douglas facilities in St. Louis, MO, in October-December 1995. Approximately 15 dB reduction in overall response of a motor mounted on the active structure was achieved. Further details and results of the SPICES combined active mount demonstration testing are outlined. Results of numerous damping and control strategies that were developed and employed in the testing are presented, as well as aspects of the design and fabrication of the SPICES active mount components.

  5. Application of the Synthesis method to the calculations of neutron flow in 3D in the enveloping of a BWR reactor with the DORT code

    International Nuclear Information System (INIS)

    Xolocostli M, J.V.; Gomez T, A.M.; Palacios H, J.C.

    2006-01-01

    The surveillance program of the vessel materials of a BWR reactor requires the determination of the neutron flux in 3D in the core enveloping. To carry out these calculations of the neutron flux, the Regulatory Guide 1.190 of the NRC recommends the use of the following codes: MCNP, TORT and DORT. In the case of using the DORT code, the one which solves the transport equation in discreet coordinates and in two dimensions (xy, rθ, and rz), the regulatory guide in reference, requires to make an approach of the flow in three dimensions by means of the call Synthesis Method. It is denominated like this due to that a flow representation in 3D is achieved 'combining' or 'synthesizing' the calculated flows by DORT in rθ, rz and r. In this work the application of the Synthesis Method it is presented, according to the Regulatory Guide 1.190, to determine the 3D flows in a BWR reactor. To achieve the above mentioned it was implemented the Synthesis Method in a computer program developed in the ININ to which is denominated SYNTHESIS. This program applies the synthesis method, and is 'coupled' with the DORT code to determine by this way the neutronic fluxes in 3D on the enveloping of a BWR reactor. (Author)

  6. Coronavirus minus-strand RNA synthesis and effect of cycloheximide on coronavirus RNA synthesis

    International Nuclear Information System (INIS)

    Sawicki, S.G.; Sawicki, D.L.

    1986-01-01

    The temporal sequence of coronavirus plus-strand and minus-strand RNA synthesis was determined in 17CL1 cells infected with the A59 strain of mouse hepatitis virus (MHV). MHV-induced fusion was prevented by keeping the pH of the medium below pH 6.8. This had no effect on the MHV replication cycle, but gave 5- to 10-fold-greater titers of infectious virus and delayed the detachment of cells from the monolayer which permitted viral RNA synthesis to be studied conveniently until at least 10 h postinfection. Seven species of poly(A)-containing viral RNAs were synthesized at early and late times infection, in nonequal but constant ratios. MHV minus-strand RNA synthesis was first detected at about 3 h after infection and was found exclusively in the viral replicative intermediates and was not detected in 60S single-stranded form in infected cells. Early in the replication cycle, from 45 to 65% of the [ 3 H]uridine pulse-labeled RF core of purified MHV replicative intermediates was in minus-strand RNA. The rate of minus-strand synthesis peaked at 5 to 6 h postinfection and then declined to about 20% of the maximum rate. The addition of cycloheximide before 3 h postinfection prevented viral RNA synthesis, whereas the addition of cycloheximide after viral RNA synthesis had begun resulted in the inhibition of viral RNA synthesis. The synthesis of both genome and subgenomic mRNAs and of viral minus strands required continued protein synthesis, and minis-strand RNA synthesis was three- to fourfold more sensitive to inhibition of cycloheximide than was plus-strand synthesis

  7. An Approach to Interface Synthesis

    DEFF Research Database (Denmark)

    Madsen, Jan; Hald, Bjarne

    1995-01-01

    Presents a novel interface synthesis approach based on a one-sided interface description. Whereas most other approaches consider interface synthesis as optimizing a channel to existing client/server modules, we consider the interface synthesis as part of the client/server module synthesis (which...... may contain the re-use of existing modules). The interface synthesis approach describes the basic transformations needed to transform the server interface description into an interface description on the client side of the communication medium. The synthesis approach is illustrated through a point...

  8. The use of automatic programming techniques for fault tolerant computing systems

    Science.gov (United States)

    Wild, C.

    1985-01-01

    It is conjectured that the production of software for ultra-reliable computing systems such as required by Space Station, aircraft, nuclear power plants and the like will require a high degree of automation as well as fault tolerance. In this paper, the relationship between automatic programming techniques and fault tolerant computing systems is explored. Initial efforts in the automatic synthesis of code from assertions to be used for error detection as well as the automatic generation of assertions and test cases from abstract data type specifications is outlined. Speculation on the ability to generate truly diverse designs capable of recovery from errors by exploring alternate paths in the program synthesis tree is discussed. Some initial thoughts on the use of knowledge based systems for the global detection of abnormal behavior using expectations and the goal-directed reconfiguration of resources to meet critical mission objectives are given. One of the sources of information for these systems would be the knowledge captured during the automatic programming process.

  9. Organ-Specific Alterations in Fatty Acid De Novo Synthesis and Desaturation in a Rat Model of Programmed Obesity

    Directory of Open Access Journals (Sweden)

    Desai Mina

    2011-05-01

    Full Text Available Abstract Background Small for gestational age (SGA leads to increased risk of adult obesity and metabolic syndrome. Offspring exposed to 50% maternal food restriction in utero are born smaller than Controls (FR, catch-up in growth by the end of the nursing period, and become obese adults. The objective of the study was to determine stearoyl-CoA desaturase activity (SCD1 and rates of de novo fatty acid synthesis in young FR and Control offspring tissues at the end of the nursing period, as possible contributors to catch-up growth. Methods From gestational day 10 to term, dams fed ad libitum (Control or were 50% food-restricted to produce small FR pups. Control dams nursed all pups. At postnatal day 1 (p1 and p21, offspring body tissues were analyzed by GC/MS, and desaturation indices of palmitoleate/palmitate and oleate/stearate were calculated. SCD1 gene expression was determined by real-time PCR on adipose and liver. Offspring were enriched with deuterium that was given to dams in drinking water during lactation and de novo synthesis of offspring body tissues was determined at p21. Primary adipocyte cell cultures were established at p21 and exposed to U13C-glucose. Results FR offspring exhibited higher desaturation index in p1 and p21 adipose tissue, but decreased desaturation index in liver at p21. SCD1 gene expression at p21 was correspondingly increased in adipose and decreased in liver. FR subcutaneous fat demonstrated increased de novo synthesis at p21. Primary cell cultures exhibited increased de novo synthesis in FR. Conclusions Adipose tissue is the first site to exhibit increased de novo synthesis and desaturase activity in FR. Therefore, abnormal lipogenesis is already present prior to onset of obesity during the period of catch-up growth. These abnormalities may contribute to future obesity development.

  10. Alcohol fuels program technical review

    Energy Technology Data Exchange (ETDEWEB)

    None

    1981-07-01

    The last issue of the Alcohol Fuels Process R/D Newsletter contained a work breakdown structure (WBS) of the SERI Alcohol Fuels Program that stressed the subcontracted portion of the program and discussed the SERI biotechnology in-house program. This issue shows the WBS for the in-house programs and contains highlights for the remaining in-house tasks, that is, methanol production research, alcohol utilization research, and membrane research. The methanol production research activity consists of two elements: development of a pressurized oxygen gasifier and synthesis of catalytic materials to more efficiently convert synthesis gas to methanol and higher alcohols. A report is included (Finegold et al. 1981) that details the experimental apparatus and recent results obtained from the gasifier. The catalysis research is principally directed toward producing novel organometallic compounds for use as a homogeneous catalyst. The utilization research is directed toward the development of novel engine systems that use pure alcohol for fuel. Reforming methanol and ethanol catalytically to produce H/sub 2/ and CO gas for use as a fuel offers performance and efficiency advantages over burning alcohol directly as fuel in an engine. An application of this approach is also detailed at the end of this section. Another area of utilization is the use of fuel cells in transportation. In-house researchers investigating alternate electrolyte systems are exploring the direct and indirect use of alcohols in fuel cells. A workshop is being organized to explore potential applications of fuel cells in the transportation sector. The membrane research group is equipping to evaluate alcohol/water separation membranes and is also establishing cost estimation and energy utilization figures for use in alcohol plant design.

  11. The synthesis of a tritium, carbon-14, and stable isotope-labeled cathepsin C inhibitors.

    Science.gov (United States)

    Allen, Paul; Bragg, Ryan A; Caffrey, Moya; Ericsson, Cecilia; Hickey, Michael J; Kingston, Lee P; Elmore, Charles S

    2017-02-01

    As part of a medicinal chemistry program aimed at developing a highly potent and selective cathepsin C inhibitor, tritium, carbon-14, and stable isotope-labeled materials were required. The synthesis of tritium-labeled methanesulfonate 5 was achieved via catalytic tritiolysis of a chloro precursor, albeit at a low radiochemical purity of 67%. Tritium-labeled AZD5248 was prepared via a 3-stage synthesis, utilizing amide-directed hydrogen isotope exchange. Carbon-14 and stable isotope-labeled AZD5248 were successfully prepared through modifications of the medicinal chemistry synthetic route, enabling the use of available labeled intermediates. Copyright © 2016 John Wiley & Sons, Ltd.

  12. PACE: A dynamic programming algorithm for hardware/software partitioning

    DEFF Research Database (Denmark)

    Knudsen, Peter Voigt; Madsen, Jan

    1996-01-01

    This paper presents the PACE partitioning algorithm which is used in the LYCOS co-synthesis system for partitioning control/dataflow graphs into hardware and software parts. The algorithm is a dynamic programming algorithm which solves both the problem of minimizing system execution time...

  13. Enantioselective synthesis of α-oxy amides via Umpolung amide synthesis.

    Science.gov (United States)

    Leighty, Matthew W; Shen, Bo; Johnston, Jeffrey N

    2012-09-19

    α-Oxy amides are prepared through enantioselective synthesis using a sequence beginning with a Henry addition of bromonitromethane to aldehydes and finishing with Umpolung Amide Synthesis (UmAS). Key to high enantioselection is the finding that ortho-iodo benzoic acid salts of the chiral copper(II) bis(oxazoline) catalyst deliver both diastereomers of the Henry adduct with high enantiomeric excess, homochiral at the oxygen-bearing carbon. Overall, this approach to α-oxy amides provides an innovative complement to alternatives that focus almost entirely on the enantioselective synthesis of α-oxy carboxylic acids.

  14. Synthesis of railway-signaling plans using reachability games

    DEFF Research Database (Denmark)

    Kasting, Patrick Frederik Soelmark; Hansen, Michael Reichhardt; Vester, Steen

    2016-01-01

    (the control system) controls signals and points and the universal player (the antagonistic environment) controls movement of trains. A winning strategy for the existential player provides a signaling plan that will safely guide trains through the network. The concepts from the railway network model......In this work, we show the feasibility of using functional programming (more specifically F#) in connection with gamebased methods for synthesis of correct-by-construction controllers (also called signaling plans) for railway networks. This is a massively resource-demanding application. A model...

  15. Integrated biofuels process synthesis

    DEFF Research Database (Denmark)

    Torres-Ortega, Carlo Edgar; Rong, Ben-Guang

    2017-01-01

    Second and third generation bioethanol and biodiesel are more environmentally friendly fuels than gasoline and petrodiesel, andmore sustainable than first generation biofuels. However, their production processes are more complex and more expensive. In this chapter, we describe a two-stage synthesis......% used for bioethanol process), and steam and electricity from combustion (54%used as electricity) in the bioethanol and biodiesel processes. In the second stage, we saved about 5% in equipment costs and 12% in utility costs for bioethanol separation. This dual synthesis methodology, consisting of a top......-level screening task followed by a down-level intensification task, proved to be an efficient methodology for integrated biofuel process synthesis. The case study illustrates and provides important insights into the optimal synthesis and intensification of biofuel production processes with the proposed synthesis...

  16. The KASY synthesis programme for the approximative solution of the 3-dimensional neutron diffusion equation

    International Nuclear Information System (INIS)

    Buckel, G.; Wouters, R. de; Pilate, S.

    1977-01-01

    The synthesis code KASY for an approximate solution of the three-dimensional neutron diffusion equation is described; the state of the art as well as envisaged program extensions and the application to tasks from the field of reactor designing are dealt with. (RW) [de

  17. The Battle of RNA Synthesis: Virus versus Host.

    Science.gov (United States)

    Harwig, Alex; Landick, Robert; Berkhout, Ben

    2017-10-21

    Transcription control is the foundation of gene regulation. Whereas a cell is fully equipped for this task, viruses often depend on the host to supply tools for their transcription program. Over the course of evolution and adaptation, viruses have found diverse ways to optimally exploit cellular host processes such as transcription to their own benefit. Just as cells are increasingly understood to employ nascent RNAs in transcription regulation, recent discoveries are revealing how viruses use nascent RNAs to benefit their own gene expression. In this review, we first outline the two different transcription programs used by viruses, i.e., transcription (DNA-dependent) and RNA-dependent RNA synthesis. Subsequently, we use the distinct stages (initiation, elongation, termination) to describe the latest insights into nascent RNA-mediated regulation in the context of each relevant stage.

  18. Python based high-level synthesis compiler

    Science.gov (United States)

    Cieszewski, Radosław; Pozniak, Krzysztof; Romaniuk, Ryszard

    2014-11-01

    This paper presents a python based High-Level synthesis (HLS) compiler. The compiler interprets an algorithmic description of a desired behavior written in Python and map it to VHDL. FPGA combines many benefits of both software and ASIC implementations. Like software, the mapped circuit is flexible, and can be reconfigured over the lifetime of the system. FPGAs therefore have the potential to achieve far greater performance than software as a result of bypassing the fetch-decode-execute operations of traditional processors, and possibly exploiting a greater level of parallelism. Creating parallel programs implemented in FPGAs is not trivial. This article describes design, implementation and first results of created Python based compiler.

  19. Research program on regulatory safety research - Synthesis report 2008

    International Nuclear Information System (INIS)

    Mailaender, R

    2009-06-01

    This report for the Swiss Federal Office of Energy (SFOE) summarises the program's main points of interest, work done in the year 2008 and the results obtained. The main points of the research program, which is co-ordinated by the Swiss Federal Nuclear Safety Inspectorate ENSI, are discussed. Topics covered concern reactor safety as well as human, organisational and safety aspects. Work done in several areas concerning reactor safety and materials as well as interactions in severe accidents in light-water reactors is described. Radiation protection, the transport and disposal of radioactive wastes and safety culture are also looked at. Finally, national and international co-operation is briefly looked at and work to be done in 2009 is reviewed. The report is completed with a list of research and development projects co-ordinated by ENSI

  20. Program packages for dynamics systems analysis and design

    International Nuclear Information System (INIS)

    Athani, V.V.

    1976-01-01

    The development of computer program packages for dynamic system analysis and design are reported. The purpose of developing these program packages is to take the burden of writing computer programs off the mind of the system engineer and to enable him to concentrate on his main system analysis and design work. Towards this end, four standard computer program packages have been prepared : (1) TFANA - starting from system transfer function this program computes transient response, frequency response, root locus and stability by Routh Hurwitz criterion, (2) TFSYN - classical synthesis using algebraic method of Shipley, (3) MODANA - starting from state equations of the system this program computes solution of state equations, controllability, observability and stability, (4) OPTCON - This program obtains solutions of (i) linear regulator problem, (ii) servomechanism problems and (iii) problem of pole placement. The paper describes these program packages with the help of flowcharts and illustrates their use with the help of examples. (author)

  1. Effects of inhibitors of DNA synthesis and protein synthesis on the rate of DNA synthesis after exposure of mammalian cells to ultraviolet light

    International Nuclear Information System (INIS)

    Griffiths, T.D.; Dahle, D.B.; Meechan, P.J.; Carpenter, J.G.

    1981-01-01

    Chinese hamster V-79 cells were treated with metabolic inhibitors of DNA or protein synthesis for various intervals of time after exposure of 3.0 or 5.0 J m -2 . After removal of the metabolic block(s) the rate of DNA synthesis was followed by measuring the incorporation of [ 14 C]thymidine into acid-insoluble material. A 2.5 or 5.0h incubation with cycloheximide or hydroxyurea was effective in delaying the onset of the recovery in the rate of DNA synthesis that normally becomes evident several hours after exposure to ultraviolet light. By using concentrations of cycloheximide or hydroxyurea that inhibit DNA synthesis by a similar amount (70%), but protein synthesis by vastly different amounts (95% for cycloheximide; 0% for hydroxyurea), it was apparent that the delay in recovery caused by the treatment of the cells with cycloheximide could be accounted for entirely by its inhibitory effect on DNA synthesis. This suggests that the recovery in DNA synthetic rates following exposure of V-79 cells to ultraviolet light does not appear to require de novo protein synthesis, and therefore does not appear to require the involvement of an inducible DNA repair process. (Auth.)

  2. Synthesis imaging in radio astronomy

    International Nuclear Information System (INIS)

    Perley, R.A.; Schwab, F.R.; Bridle, A.H.

    1989-01-01

    Recent advances in techniques and instrumentation for radio synthesis imaging in astronomy are discussed in a collection of review essays. Topics addressed include coherence in radio astronomy, the interferometer in practice, primary antenna elements, cross correlators, calibration and editing, sensitivity, deconvolution, self-calibration, error recognition, and image analysis. Consideration is given to wide-field imaging (bandwidth and time-average smearing, noncoplanar arrays, and mosaicking), high-dynamic-range imaging, spectral-line imaging, VLBI, solar imaging with a synthesis telescope, synthesis imaging of spatially coherent objects, noise in images of very bright sources, synthesis observing strategies, and the design of aperture-synthesis arrays

  3. Feature-aware natural texture synthesis

    KAUST Repository

    Wu, Fuzhang; Dong, Weiming; Kong, Yan; Mei, Xing; Yan, Dongming; Zhang, Xiaopeng; Paul, Jean Claude

    2014-01-01

    This article presents a framework for natural texture synthesis and processing. This framework is motivated by the observation that given examples captured in natural scene, texture synthesis addresses a critical problem, namely, that synthesis

  4. Materials sciences programs, fiscal year 1994

    International Nuclear Information System (INIS)

    1995-04-01

    The Division of Materials Sciences is located within the DOE in the Office of Basic Energy Sciences. The Division of Materials Sciences is responsible for basic research and research facilities in strategic materials science topics of critical importance to the mission of the Department and its Strategic Plan. Materials Science is an enabling technology. The performance parameters, economics, environmental acceptability and safety of all energy generation, conversion, transmission and conservation technologies are limited by the properties and behavior of materials. The Materials Sciences programs develop scientific understanding of the synergistic relationship amongst the synthesis, processing, structure, properties, behavior, performance and other characteristics of materials. Emphasis is placed on the development of the capability to discover technologically, economically, and environmentally desirable new materials and processes, and the instruments and national user facilities necessary for achieving such progress. Materials Sciences sub-fields include physical metallurgy, ceramics, polymers, solid state and condensed matter physics, materials chemistry, surface science and related disciplines where the emphasis is on the science of materials. This report includes program descriptions for 458 research programs including 216 at 14 DOE National Laboratories, 242 research grants (233 for universities), and 9 Small Business Innovation Research (SBIR) Grants. The report is divided into eight sections. Section A contains all Laboratory projects, Section B has all contract research projects, Section C has projects funded under the SBIR Program, Section D describes the Center of Excellence for the Synthesis and Processing of Advanced Materials and E has information on major user facilities. F contains descriptions of other user facilities; G, a summary of funding levels; and H, indices characterizing research projects

  5. Materials sciences programs: Fiscal year 1994

    Science.gov (United States)

    1995-04-01

    The Division of Materials Sciences is located within the DOE in the Office of Basic Energy Sciences. The Division of Materials Sciences is responsible for basic research and research facilities in strategic materials science topics of critical importance to the mission of the Department and its Strategic Plan. Materials Science is an enabling technology. The performance parameters, economics, environmental acceptability and safety of all energy generation, conversion, transmission and conservation technologies are limited by the properties and behavior of materials. The Materials Sciences programs develop scientific understanding of the synergistic relationship amongst the synthesis, processing, structure, properties, behavior, performance and other characteristics of materials. Emphasis is placed on the development of the capability to discover technologically, economically, and environmentally desirable new materials and processes, and the instruments and national user facilities necessary for achieving such progress. Materials Sciences sub-fields include physical metallurgy, ceramics, polymers, solid state and condensed matter physics, materials chemistry, surface science and related disciplines where the emphasis is on the science of materials. This report includes program descriptions for 458 research programs including 216 at 14 DOE National Laboratories, 242 research grants (233 for universities), and 9 Small Business Innovation Research (SBIR) Grants. The report is divided into eight sections. Section A contains all Laboratory projects, Section B has all contract research projects, Section C has projects funded under the SBIR Program, Section D describes the Center of Excellence for the Synthesis and Processing of Advanced Materials and E has information on major user facilities. F contains descriptions of other user facilities; G, a summary of funding levels; and H, indices characterizing research projects.

  6. Materials sciences programs, fiscal year 1994

    Energy Technology Data Exchange (ETDEWEB)

    NONE

    1995-04-01

    The Division of Materials Sciences is located within the DOE in the Office of Basic Energy Sciences. The Division of Materials Sciences is responsible for basic research and research facilities in strategic materials science topics of critical importance to the mission of the Department and its Strategic Plan. Materials Science is an enabling technology. The performance parameters, economics, environmental acceptability and safety of all energy generation, conversion, transmission and conservation technologies are limited by the properties and behavior of materials. The Materials Sciences programs develop scientific understanding of the synergistic relationship amongst the synthesis, processing, structure, properties, behavior, performance and other characteristics of materials. Emphasis is placed on the development of the capability to discover technologically, economically, and environmentally desirable new materials and processes, and the instruments and national user facilities necessary for achieving such progress. Materials Sciences sub-fields include physical metallurgy, ceramics, polymers, solid state and condensed matter physics, materials chemistry, surface science and related disciplines where the emphasis is on the science of materials. This report includes program descriptions for 458 research programs including 216 at 14 DOE National Laboratories, 242 research grants (233 for universities), and 9 Small Business Innovation Research (SBIR) Grants. The report is divided into eight sections. Section A contains all Laboratory projects, Section B has all contract research projects, Section C has projects funded under the SBIR Program, Section D describes the Center of Excellence for the Synthesis and Processing of Advanced Materials and E has information on major user facilities. F contains descriptions of other user facilities; G, a summary of funding levels; and H, indices characterizing research projects.

  7. Radiation chemical synthesis

    International Nuclear Information System (INIS)

    Zagoretz, P.A.; Poluetkov, V.A.; Shostenko, A.G.

    1986-01-01

    The authors consider processes in radiation chemical synthesis which are being developed in various scientific-research organizations. The important advantages of radiation chlorination, viz. the lower temperature compared with the thermal method and the absence of dehydrochlorination products are discussed. The authors examine the liquid-phase chlorination of trifluorochloroethyltrichloromethyl ether to obtain the pentachloro-contining ether, trifluorodichloroethyltrichloromethyl ether. The authors discuss radiation synthesis processes that have be used formulated kinetic equations on which models have been based. It is concluded that the possibilities of preparative (micro- and low-tonnage) radiation synthesis are promising

  8. Click synthesis of PET radiopharmaceuticals

    International Nuclear Information System (INIS)

    Xu Mei; Kuang Chunxiang

    2009-01-01

    Increasing attention has been focused on synthesis radiopharmaceuticals for positron emission tomography (PET). The recent years witnessed applications of click chemistry to PET radiopharmaceutical synthesis,because of its distinctive advantages including high speed,yield and stereospecificity under mild conditions. Synthesis of 18 F-labeled and 11 C-labeled radiopharmaceuticals and intermediates via click chemistry are reviewed. The future trend of click chemistry for the synthesis of PET radiopharmaceutical is prospected. (authors)

  9. Epigenetic Programming of Synthesis, Release, and/or Receptor Expression of Common Mediators Participating in the Risk/Resilience for Comorbid Stress-Related Disorders and Coronary Artery Disease

    Science.gov (United States)

    Zapata-Martín del Campo, Carlos Manuel; Martínez-Rosas, Martín

    2018-01-01

    Corticotrophin releasing factor, vasopressin, oxytocin, natriuretic hormones, angiotensin, neuregulins, some purinergic substances, and some cytokines contribute to the long-term modulation and restructuring of cardiovascular regulation networks and, at the same time, have relevance in situations of comorbid abnormal stress responses. The synthesis, release, and receptor expression of these mediators seem to be under epigenetic control since early stages of life, possibly underlying the comorbidity to coronary artery disease (CAD) and stress-related disorders (SRD). The exposure to environmental conditions, such as stress, during critical periods in early life may cause epigenetic programming modifying the development of pathways that lead to stable and long-lasting alterations in the functioning of these mediators during adulthood, determining the risk of or resilience to CAD and SRD. However, in contrast to genetic information, epigenetic marks may be dynamically altered throughout the lifespan. Therefore, epigenetics may be reprogrammed if the individual accepts the challenge to undertake changes in their lifestyle. Alternatively, epigenetics may remain fixed and/or even be inherited in the next generation. In this paper, we analyze some of the common neuroendocrine functions of these mediators in CAD and SRD and summarize the evidence indicating that they are under early programming to put forward the theoretical hypothesis that the comorbidity of these diseases might be epigenetically programmed and modified over the lifespan of the individual. PMID:29670001

  10. Epigenetic Programming of Synthesis, Release, and/or Receptor Expression of Common Mediators Participating in the Risk/Resilience for Comorbid Stress-Related Disorders and Coronary Artery Disease

    Directory of Open Access Journals (Sweden)

    Carlos Manuel Zapata-Martín del Campo

    2018-04-01

    Full Text Available Corticotrophin releasing factor, vasopressin, oxytocin, natriuretic hormones, angiotensin, neuregulins, some purinergic substances, and some cytokines contribute to the long-term modulation and restructuring of cardiovascular regulation networks and, at the same time, have relevance in situations of comorbid abnormal stress responses. The synthesis, release, and receptor expression of these mediators seem to be under epigenetic control since early stages of life, possibly underlying the comorbidity to coronary artery disease (CAD and stress-related disorders (SRD. The exposure to environmental conditions, such as stress, during critical periods in early life may cause epigenetic programming modifying the development of pathways that lead to stable and long-lasting alterations in the functioning of these mediators during adulthood, determining the risk of or resilience to CAD and SRD. However, in contrast to genetic information, epigenetic marks may be dynamically altered throughout the lifespan. Therefore, epigenetics may be reprogrammed if the individual accepts the challenge to undertake changes in their lifestyle. Alternatively, epigenetics may remain fixed and/or even be inherited in the next generation. In this paper, we analyze some of the common neuroendocrine functions of these mediators in CAD and SRD and summarize the evidence indicating that they are under early programming to put forward the theoretical hypothesis that the comorbidity of these diseases might be epigenetically programmed and modified over the lifespan of the individual.

  11. Epigenetic Programming of Synthesis, Release, and/or Receptor Expression of Common Mediators Participating in the Risk/Resilience for Comorbid Stress-Related Disorders and Coronary Artery Disease.

    Science.gov (United States)

    Zapata-Martín Del Campo, Carlos Manuel; Martínez-Rosas, Martín; Guarner-Lans, Verónica

    2018-04-18

    Corticotrophin releasing factor, vasopressin, oxytocin, natriuretic hormones, angiotensin, neuregulins, some purinergic substances, and some cytokines contribute to the long-term modulation and restructuring of cardiovascular regulation networks and, at the same time, have relevance in situations of comorbid abnormal stress responses. The synthesis, release, and receptor expression of these mediators seem to be under epigenetic control since early stages of life, possibly underlying the comorbidity to coronary artery disease (CAD) and stress-related disorders (SRD). The exposure to environmental conditions, such as stress, during critical periods in early life may cause epigenetic programming modifying the development of pathways that lead to stable and long-lasting alterations in the functioning of these mediators during adulthood, determining the risk of or resilience to CAD and SRD. However, in contrast to genetic information, epigenetic marks may be dynamically altered throughout the lifespan. Therefore, epigenetics may be reprogrammed if the individual accepts the challenge to undertake changes in their lifestyle. Alternatively, epigenetics may remain fixed and/or even be inherited in the next generation. In this paper, we analyze some of the common neuroendocrine functions of these mediators in CAD and SRD and summarize the evidence indicating that they are under early programming to put forward the theoretical hypothesis that the comorbidity of these diseases might be epigenetically programmed and modified over the lifespan of the individual.

  12. Review of literature and practices for incident management programs : technical report.

    Science.gov (United States)

    2016-06-01

    The project team examined project evaluations, best practice summaries, and synthesis documents, and derived a summary of key elements of programs to speed the time to find and clear stalled vehicles and crashes from freeway shoulders and main lanes....

  13. Bio-inspired synthesis of hybrid silica nanoparticles templated from elastin-like polypeptide micelles

    Science.gov (United States)

    Han, Wei; MacEwan, Sarah R.; Chilkoti, Ashutosh; López, Gabriel P.

    2015-07-01

    The programmed self-assembly of block copolymers into higher order nanoscale structures offers many attractive attributes for the development of new nanomaterials for numerous applications including drug delivery and biosensing. The incorporation of biomimetic silaffin peptides in these block copolymers enables the formation of hybrid organic-inorganic materials, which can potentially enhance the utility and stability of self-assembled nanostructures. We demonstrate the design, synthesis and characterization of amphiphilic elastin-like polypeptide (ELP) diblock copolymers that undergo temperature-triggered self-assembly into well-defined spherical micelles. Genetically encoded incorporation of the silaffin R5 peptide at the hydrophilic terminus of the diblock ELP leads to presentation of the silaffin R5 peptide on the coronae of the micelles, which results in localized condensation of silica and the formation of near-monodisperse, discrete, sub-100 nm diameter hybrid ELP-silica particles. This synthesis method, can be carried out under mild reaction conditions suitable for bioactive materials, and will serve as the basis for the development and application of functional nanomaterials. Beyond silicification, the general strategies described herein may also be adapted for the synthesis of other biohybrid nanomaterials as well.The programmed self-assembly of block copolymers into higher order nanoscale structures offers many attractive attributes for the development of new nanomaterials for numerous applications including drug delivery and biosensing. The incorporation of biomimetic silaffin peptides in these block copolymers enables the formation of hybrid organic-inorganic materials, which can potentially enhance the utility and stability of self-assembled nanostructures. We demonstrate the design, synthesis and characterization of amphiphilic elastin-like polypeptide (ELP) diblock copolymers that undergo temperature-triggered self-assembly into well

  14. Materials sciences programs: Fiscal year 1995

    Energy Technology Data Exchange (ETDEWEB)

    NONE

    1996-05-01

    The purpose of this report is to provide a convenient compilation and index of the DOE Materials Science Division programs. This compilation is primarily intended for use by administrators, managers, and scientists to help coordinate research. The report is divided into eight sections. Section A contains all Laboratory projects, Section B has all contract research projects, Section C has projects funded under the Small Business Innovation Research Program, Section D describes the Center of Excellence for the Synthesis and Processing of Advanced Materials and E has information on major user facilities. F describes other user facilities, G as a summary of funding levels and H has indices characterizing research projects.

  15. Materials sciences programs fiscal year 1996

    Energy Technology Data Exchange (ETDEWEB)

    NONE

    1997-06-01

    The purpose of this report is to provide a convenient compilation and index of the DOE Materials Sciences Division programs. This compilation is primarily intended for use by administrators, managers, and scientists to help coordinate research. The report is divided into eight sections. Section A contains all Laboratory projects, Section B has all contract research projects, Section C has projects funded under the Small Business Innovation Research Program, Section D describes the Center of Excellence for the Synthesis and Processing of Advanced Materials and E has information on major user facilities. F describes other user facilities, G as a summary of funding levels and H has indices characterizing research projects.

  16. Synthesis gas demonstration plant program, Phase I. Site confirmation report

    Energy Technology Data Exchange (ETDEWEB)

    1978-12-01

    With few reservations, the Baskett, Kentucky site exhibits the necessary characteristics to suggest compatibility with the proposed Synthesis Gas Demonstration Plant Project. An evaluation of a broad range of technical disciplinary criteria in consideration of presently available information indicated generally favorable conditions or, at least, conditions which could be feasibly accommodated in project design. The proximity of the Baskett site to market areas and sources of raw materials as well as a variety of transportation facilities suggests an overall favorable impact on Project economic feasibility. Two aspects of environmental engineering, however, have been identified as areas where the completion or continuation of current studies are required before removing all conditions on site suitability. The first aspect involves the current contradictory status of existing land use and planning ordinances in the site area. Additional investigation of the legality of, and local attitudes toward, these present plans is warranted. Secondly, terrestrial and aquatic surveys of plant and animal life species in the site area must be completed on a seasonal basis to confirm the preliminary conclusion that no exclusionary conditions exist.

  17. Synthesis of Mechanisms

    DEFF Research Database (Denmark)

    Hansen, John Michael

    1999-01-01

    These notes describe an automated procedure for analysis and synthesis of mechanisms. The analysis method is based on the body coordinate formulation, and the synthesis is based on applying optimization methods, used to minimize the difference between an actual and a desired behaviour...

  18. Isobutane Alkylation Process Synthesis by means of Hybrid Simulation-Multiobjective Optimization

    OpenAIRE

    Fernandez-Torres, Maria J.; García, Norberto; Caballero, José A.

    2014-01-01

    Multiobjective Generalized Disjunctive Programming (MO-GDP) optimization has been used for the synthesis of an important industrial process, isobutane alkylation. The two objective functions to be simultaneously optimized are the environmental impact, determined by means of LCA (Life Cycle Assessment), and the economic potential of the process. The main reason for including the minimization of the environmental impact in the optimization process is the widespread environmental concern by the ...

  19. Is there any relationship between decreased AgNOR protein synthesis and human hair loss?

    Science.gov (United States)

    Eroz, R; Tasdemir, S; Dogan, H

    2012-11-01

    Argyrophilic nucleolar organizing region associated proteins (AgNORs) play roles in cell proliferation and a variety of diseases. We attempted to determine whether decreased NOR protein synthesis causes human hair loss. We studied 21 healthy males who suffered hair loss on the frontal/vertex portion of the head. Hair root cells from normal and hair loss sites were stained for AgNOR. One hundred nuclei per site were evaluated and the AgNOR number and NORa/TNa proportions of individual cells were determined using a computer program. The cells from normal sites had significantly higher AgNOR counts than those from hair loss sites. Also, the cells from the normal sites had significantly higher NORa/TNa than cells from the hair loss sites. In the normal sites, the cells demonstrated more NOR protein synthesis than cells in hair loss sites. Therefore, decreased NOR protein synthesis appears to be related to hair loss in humans.

  20. Evaluation of an automated double-synthesis module: efficiency and reliability of subsequent radiosyntheses of FHBG and FLT

    International Nuclear Information System (INIS)

    Niedermoser, Sabrina; Pape, Manuela; Gildehaus, Franz Josef; Wängler, Carmen; Hartenbach, Markus; Schirrmacher, Ralf; Bartenstein, Peter; Wängler, Björn

    2012-01-01

    We optimized the synthesis methods for 3′-deoxy-3′-[ 18 F]fluorothymidine ([ 18 F]FLT) and 9-(4-[ 18 F]fluoro-3-[hydroxymethyl]butyl)guanine) ([ 18 F]FHBG) and automated them on an Explora General Nucleophilic double-synthesis module. Furthermore, the synthesis efficiency and reliability and the formation of cross-contaminations of the products when preparing two consecutive batches were evaluated. Whereas the preinstalled FLT synthesis conditions required substantial modification in reaction and neutralization conditions to achieve radiochemical yields of up to 60% within 70±10 min including high-performance liquid chromatography purification, the synthesis of FHBG had to be implemented to the module to obtain competitive radiochemical yields of up to 40% in an overall synthesis time of 60±10 min. The radiochemical purities obtained were ≥99% and ≥96% for the synthesis of [ 18 F]FLT and [ 18 F]FHBG, respectively. No significant changes in yield or purity could be observed between both batch productions. We found that the yields and purities also did not change when performing FLT after FHBG syntheses and vice versa. Hence, we developed a synthesis setup that offers the opportunity to perform two subsequent syntheses of either [ 18 F]FLT, [ 18 F]FHBG or [ 18 F]FLT after [ 18 F]FHBG without decrease in radiochemical yields and purities. Also, no cross-contaminations were observed, which can be attributed to the use of separate product delivery tubes, purification columns and an automated intermediate cleaning program. These results open up the possibility of producing consecutively either two equal 18 F-fluorinated tracers or two different ones in high yields on the same synthesis module.

  1. VHDL for logic synthesis

    CERN Document Server

    Rushton, Andrew

    2011-01-01

    Many engineers encountering VHDL (very high speed integrated circuits hardware description language) for the first time can feel overwhelmed by it. This book bridges the gap between the VHDL language and the hardware that results from logic synthesis with clear organisation, progressing from the basics of combinational logic, types, and operators; through special structures such as tristate buses, register banks and memories, to advanced themes such as developing your own packages, writing test benches and using the full range of synthesis types. This third edition has been substantially rewritten to include the new VHDL-2008 features that enable synthesis of fixed-point and floating-point hardware. Extensively updated throughout to reflect modern logic synthesis usage, it also contains a complete case study to demonstrate the updated features. Features to this edition include: * a common VHDL subset which will work across a range of different synthesis systems, targeting a very wide range of technologies...

  2. NOVEL REACTOR FOR THE PRODUCTION OF SYNTHESIS GAS

    Energy Technology Data Exchange (ETDEWEB)

    Vasilis Papavassiliou; Leo Bonnell; Dion Vlachos

    2004-12-01

    Praxair investigated an advanced technology for producing synthesis gas from natural gas and oxygen This production process combined the use of a short-reaction time catalyst with Praxair's gas mixing technology to provide a novel reactor system. The program achieved all of the milestones contained in the development plan for Phase I. We were able to develop a reactor configuration that was able to operate at high pressures (up to 19atm). This new reactor technology was used as the basis for a new process for the conversion of natural gas to liquid products (Gas to Liquids or GTL). Economic analysis indicated that the new process could provide a 8-10% cost advantage over conventional technology. The economic prediction although favorable was not encouraging enough for a high risk program like this. Praxair decided to terminate development.

  3. Exploring and Implementing Participatory Action Synthesis

    Science.gov (United States)

    Wimpenny, Katherine; Savin-Baden, Maggi

    2012-01-01

    This article presents participatory action synthesis as a new approach to qualitative synthesis which may be used to facilitate the promotion and use of qualitative research for policy and practice. The authors begin by outlining different forms of qualitative research synthesis and then present participatory action synthesis, a collaborative…

  4. The Synthesis, Characterization and Catalytic Reaction Studies of Monodisperse Platinum Nanoparticles in Mesoporous Oxide Materials

    Energy Technology Data Exchange (ETDEWEB)

    Rioux, Robert M. [Univ. of California, Berkeley, CA (United States)

    2006-01-01

    A catalyst design program was implemented in which Pt nanoparticles, either of monodisperse size and/or shape were synthesized, characterized and studied in a number of hydrocarbon conversion reactions. The novel preparation of these materials enables exquisite control over their physical and chemical properties that could be controlled (and therefore rationally tuned) during synthesis. The ability to synthesize rather than prepare catalysts followed by thorough characterization enable accurate structure-function relationships to be elucidated. This thesis emphasizes all three aspects of catalyst design: synthesis, characterization and reactivity studies. The precise control of metal nanoparticle size, surface structure and composition may enable the development of highly active and selective heterogeneous catalysts.

  5. Antecedents to workplace injury in the health care industry: A synthesis of the literature.

    Science.gov (United States)

    McCaughey, Deirdre; Kimmel, Ashley; Savage, Grant; Lukas, Tiana; Walsh, Erin; Halbesleben, Jonathon

    2016-01-01

    The U.S. Department of Labor has identified the health care industry as a major source of all U.S. workplace injuries. Studies have shown that injury within the health care workforce is related to high turnover rates, burnout, poor job satisfaction, and leaving the health care workforce permanently, thus contributing to the existing health care workforce shortages. The purpose of this synthesis of the literature was twofold. The first was to conduct a comprehensive evaluation of the occupational health and safety literature to determine the key antecedents to health care provider injury. The second was to utilize the National Institute for Occupational Safety and Health (NIOSH) framework to organize the findings. Empirical studies published between 1985 and 2013 examining work-related injuries sustained by nurses and nurses' aides were systematically reviewed and evaluated for inclusion in the synthesis of the literature. Thirty-six studies met the criteria for inclusion. Using the NIOSH framework, antecedent variables to workplace injury were identified and then grouped into three broad categories that were highlighted during the synthesis: organization of work, job characteristics, and safety programs and training. A fourth category, individual characteristics, was added based on its use by many studies. Over half of the studies (n = 20) included factors within the organization of work category. Over two thirds of the studies (n = 26) included job characteristics such as task and demand. Nine studies contained information related to safety programs and training, whereas 17 studies included information on individual factors. The findings suggest that the NIOSH framework, with the addition of individual characteristics, provide a foundation for conceptually organizing occupational health and safety studies. Health care administrators and leaders should be aware and understand the antecedents to workplace injury that will assist their organizations in developing

  6. Synthesis of polyaryl rigid-core carbosilane dendrimers for supported organic synthesis

    NARCIS (Netherlands)

    Wander, M.; Hausoul, P.J.C.; Sliedregt, L.A.J.M.; van Steen, B.J.; van Koten, G.; Klein Gebbink, R.J.M.

    2009-01-01

    Carbosilane dendrimers can be used as soluble supports for organic synthesis, since their structure allows separation of excess reagents from the supported products, eventually yielding products of high purity and in high yield, as in solid-phase organic synthesis (SPOS). In previous studies often

  7. Behavioral synthesis of asynchronous circuits

    DEFF Research Database (Denmark)

    Nielsen, Sune Fallgaard

    2005-01-01

    This thesis presents a method for behavioral synthesis of asynchronous circuits, which aims at providing a synthesis flow which uses and tranfers methods from synchronous circuits to asynchronous circuits. We move the synchronous behavioral synthesis abstraction into the asynchronous handshake...... is idle. This reduces unnecessary switching activity in the individual functional units and therefore the energy consumption of the entire circuit. A collection of behavioral synthesis algorithms have been developed allowing the designer to perform time and power constrained design space exploration...

  8. An improved synthesis process of calixcrown ethers and synthesis of novel calixcrown ether

    International Nuclear Information System (INIS)

    Wang Hairong; Zhang Ping; Wang Chunmiao; Wang Jianchen; Chen Jing

    2007-01-01

    The synthesis method of calixcrown ethers was simplified and improved, and 10 L- scale synthesis was carried out. In the synthesis of the intermediates of the first three steps, the synthesis of 5, 11, 17, 23-tetra-tert-butyl-25, 26, 27, 28-tetrahydroxyl-calix[4] and its dehydroxylation were considered together, the purification procedures of the former, including re-crystallization in toluene and decolorization with activated carbon, were cancelled, and thus these steps were simplified. In the synthesis of oligoethylene glycol ditosylate, the purification method was also improved and the time-consuming column chromatography was left out. In the final step, impurities were removed by repeating stirring-settlement steps, by following recrystallization, the pure product was obtained. With these measures, the whole process could be implemented easily. The industrial scale production of calixcrown ethers could be fulfilled with the improved process. In addition, a new extracant, 25, 27-bis (n-propyloxy)calix[4]-26, 28-crown-6, is prepared and identified. (authors)

  9. Long time storage containers for spent fuels and vitrified wastes: synthesis of the studies

    International Nuclear Information System (INIS)

    Beziat, A.

    2004-01-01

    This report presents a synthesis of the studies relatives to the containers devoted to the long time spent fuels storage and vitrified wastes packages. These studies were realized in the framework of the axis 3 of the law of 1991 on the radioactive wastes management. The first part is devoted to the presentation of the studies. The container sizing studies which constitute the first containment barrier are then presented. The material choice and the closed system are also detailed. The studies were validate by the realization of containers models and an associated demonstration program is proposed. A synthesis of the technical and economical studies allowed to determine the components and operation costs. (A.L.B.)

  10. What Synthesis Methodology Should I Use? A Review and Analysis of Approaches to Research Synthesis.

    Science.gov (United States)

    Schick-Makaroff, Kara; MacDonald, Marjorie; Plummer, Marilyn; Burgess, Judy; Neander, Wendy

    2016-01-01

    When we began this process, we were doctoral students and a faculty member in a research methods course. As students, we were facing a review of the literature for our dissertations. We encountered several different ways of conducting a review but were unable to locate any resources that synthesized all of the various synthesis methodologies. Our purpose is to present a comprehensive overview and assessment of the main approaches to research synthesis. We use 'research synthesis' as a broad overarching term to describe various approaches to combining, integrating, and synthesizing research findings. We conducted an integrative review of the literature to explore the historical, contextual, and evolving nature of research synthesis. We searched five databases, reviewed websites of key organizations, hand-searched several journals, and examined relevant texts from the reference lists of the documents we had already obtained. We identified four broad categories of research synthesis methodology including conventional, quantitative, qualitative, and emerging syntheses. Each of the broad categories was compared to the others on the following: key characteristics, purpose, method, product, context, underlying assumptions, unit of analysis, strengths and limitations, and when to use each approach. The current state of research synthesis reflects significant advancements in emerging synthesis studies that integrate diverse data types and sources. New approaches to research synthesis provide a much broader range of review alternatives available to health and social science students and researchers.

  11. Aircraft interior noise prediction using a structural-acoustic analogy in NASTRAN modal synthesis

    Science.gov (United States)

    Grosveld, Ferdinand W.; Sullivan, Brenda M.; Marulo, Francesco

    1988-01-01

    The noise induced inside a cylindrical fuselage model by shaker excitation is investigated theoretically and experimentally. The NASTRAN modal-synthesis program is used in the theoretical analysis, and the predictions are compared with experimental measurements in extensive graphs. Good general agreement is obtained, but the need for further refinements to account for acoustic-cavity damping and structural-acoustic interaction is indicated.

  12. Review and synthesis of historical Tampa Bay water quality data. Final technical report

    International Nuclear Information System (INIS)

    Vargo, G.; Weisberg, R.; Bendis, B.; Rutherford, E.H.

    1992-11-01

    The review and synthesis of historical water quality data was one of the first characterization projects administered by the Tampa Bay National Estuary Program (NEP). The objective of the project was to describe the physical, chemical and biological characteristics of Tampa Bay. The report examines the spatial and temporal trends from the acquired data for possible interrelationships and develops them statistically

  13. Evaluation of the FIR Example using Xilinx Vivado High-Level Synthesis Compiler

    Energy Technology Data Exchange (ETDEWEB)

    Jin, Zheming [Argonne National Lab. (ANL), Argonne, IL (United States); Finkel, Hal [Argonne National Lab. (ANL), Argonne, IL (United States); Yoshii, Kazutomo [Argonne National Lab. (ANL), Argonne, IL (United States); Cappello, Franck [Argonne National Lab. (ANL), Argonne, IL (United States)

    2017-07-28

    Compared to central processing units (CPUs) and graphics processing units (GPUs), field programmable gate arrays (FPGAs) have major advantages in reconfigurability and performance achieved per watt. This development flow has been augmented with high-level synthesis (HLS) flow that can convert programs written in a high-level programming language to Hardware Description Language (HDL). Using high-level programming languages such as C, C++, and OpenCL for FPGA-based development could allow software developers, who have little FPGA knowledge, to take advantage of the FPGA-based application acceleration. This improves developer productivity and makes the FPGA-based acceleration accessible to hardware and software developers. Xilinx Vivado HLS compiler is a high-level synthesis tool that enables C, C++ and System C specification to be directly targeted into Xilinx FPGAs without the need to create RTL manually. The white paper [1] published recently by Xilinx uses a finite impulse response (FIR) example to demonstrate the variable-precision features in the Vivado HLS compiler and the resource and power benefits of converting floating point to fixed point for a design. To get a better understanding of variable-precision features in terms of resource usage and performance, this report presents the experimental results of evaluating the FIR example using Vivado HLS 2017.1 and a Kintex Ultrascale FPGA. In addition, we evaluated the half-precision floating-point data type against the double-precision and single-precision data type and present the detailed results.

  14. Synthesis centers as critical research infrastructure

    Science.gov (United States)

    Baron, Jill S.; Specht, Alison; Garnier, Eric; Bishop, Pamela; Campbell, C. Andrew; Davis, Frank W.; Fady, Bruno; Field, Dawn; Gross, Louis J.; Guru, Siddeswara M.; Halpern, Benjamin S; Hampton, Stephanie E.; Leavitt, Peter R.; Meagher, Thomas R.; Ometto, Jean; Parker, John N.; Price, Richard; Rawson, Casey H.; Rodrigo, Allen; Sheble, Laura A.; Winter, Marten

    2017-01-01

    Demand for the opportunity to participate in a synthesis-center activity has increased in the years since the US National Science Foundation (NSF)–funded National Center for Ecological Analysis and Synthesis (NCEAS) opened its doors in 1995 and as more scientists across a diversity of scientific disciplines have become aware of what synthesis centers provide. The NSF has funded four synthesis centers, and more than a dozen new synthesis centers have been established around the world, some following the NSF model and others following different models suited to their national funding environment (http://synthesis-consortium.org).Scientific synthesis integrates diverse data and knowledge to increase the scope and applicability of results and yield novel insights or explanations within and across disciplines (Pickett et al. 2007, Carpenter et al. 2009). The demand for synthesis comes from the pressing societal need to address grand challenges related to global change and other issues that cut across multiple societal sectors and disciplines and from recognition that substantial added scientific value can be achieved through the synthesis-based analysis of existing data. Demand also comes from groups of scientists who see exciting opportunities to generate new knowledge from interdisciplinary and transdisciplinary collaboration, often capitalizing on the increasingly large volume and variety of available data (Kelling et al. 2009, Bishop et al. 2014, Specht et al. 2015b). The ever-changing nature of societal challenges and the availability of data with which to address them suggest there will be an expanding need for synthesis.However, we are now entering a phase in which government support for some existing synthesis centers has ended or will be ending soon, forcing those centers to close or develop new operational models, approaches, and funding streams. We argue here that synthesis centers play such a unique role in science that continued long-term public

  15. Gas Phase Nanoparticle Synthesis

    Science.gov (United States)

    Granqvist, Claes; Kish, Laszlo; Marlow, William

    This book deals with gas-phase nanoparticle synthesis and is intended for researchers and research students in nanomaterials science and engineering, condensed matter physics and chemistry, and aerosol science. Gas-phase nanoparticle synthesis is instrumental to nanotechnology - a field in current focus that raises hopes for environmentally benign, resource-lean manufacturing. Nanoparticles can be produced by many physical, chemical, and even biological routes. Gas-phase synthesis is particularly interesting since one can achieve accurate manufacturing control and hence industrial viability.

  16. Climate change and indigenous peoples: A synthesis of current impacts and experiences

    Science.gov (United States)

    Norton-Smith, Kathryn; Lynn, Kathy; Chief, Karletta; Cozetto, Karen; Donatuto, Jamie; Hiza, Margaret; Kruger, Linda; Maldonado, Julie; Viles, Carson; Whyte, Kyle P.

    2016-01-01

    A growing body of literature examines the vulnerability, risk, resilience, and adaptation of indigenous peoples to climate change. This synthesis of literature brings together research pertaining to the impacts of climate change on sovereignty, culture, health, and economies that are currently being experienced by Alaska Native and American Indian tribes and other indigenous communities in the United States. The knowledge and science of how climate change impacts are affecting indigenous peoples contributes to the development of policies, plans, and programs for adapting to climate change and reducing greenhouse gas emissions. This report defines and describes the key frameworks that inform indigenous understandings of climate change impacts and pathways for adaptation and mitigation, namely, tribal sovereignty and self-determination, culture and cultural identity, and indigenous community health indicators. It also provides a comprehensive synthesis of climate knowledge, science, and strategies that indigenous communities are exploring, as well as an understanding of the gaps in research on these issues. This literature synthesis is intended to make a contribution to future efforts such as the 4th National Climate Assessment, while serving as a resource for future research, tribal and agency climate initiatives, and policy development.

  17. Synthesis of Isoiminosugars

    DEFF Research Database (Denmark)

    Hyldtoft, Lene; Godskesen, Michael Anders; Lundt, Inge

    1998-01-01

    A short synthesis of isoiminosugars have been developed. Bromolactones are diastereoselectively alkylated at C-2 followed by ring closure to the corresponding lactams. Reduction of these then gives isoiminosugars......A short synthesis of isoiminosugars have been developed. Bromolactones are diastereoselectively alkylated at C-2 followed by ring closure to the corresponding lactams. Reduction of these then gives isoiminosugars...

  18. Synthesis of derivatives of tetronic acid and pulvinic acid. Total synthesis of norbadione A

    International Nuclear Information System (INIS)

    Mallinger, A.

    2008-11-01

    When vegetables like mushrooms are contaminated by radioactive caesium 137, this radioactive caesium is associated to norbadione A, a natural pigment present in two mushroom species and which can be used as a caesium decorporation agent or maybe as protection agent against ionizing radiations. Within this perspective, this research report describes the biosynthesis and the structure and properties of the norbadione A and of pulvinic acids (physicochemical properties, anti-oxidizing properties). Then, it presents the various tetronic acids (3-acyl-, 3-alkyl-, 3-alkoxy-, 3-aryl-tetronic acids and non 3-substituted tetronic acids), their synthesis path as they are described in the literature, and presents a new synthesis approach using a tandem reaction (with different esters or hydroxy esters) and the synthesis of tetronic acids. The author also proposes a new synthesis way for methyl pulvinates, and finally reports the work on the development of a total synthesis of the norbadione A

  19. Total synthesis of ciguatoxin.

    Science.gov (United States)

    Hamajima, Akinari; Isobe, Minoru

    2009-01-01

    Something fishy: Ciguatoxin (see structure) is one of the principal toxins involved in ciguatera poisoning and the target of a total synthesis involving the coupling of three segments. The key transformations in this synthesis feature acetylene-dicobalthexacarbonyl complexation.

  20. Machine Learning in Computer-Aided Synthesis Planning.

    Science.gov (United States)

    Coley, Connor W; Green, William H; Jensen, Klavs F

    2018-05-15

    Computer-aided synthesis planning (CASP) is focused on the goal of accelerating the process by which chemists decide how to synthesize small molecule compounds. The ideal CASP program would take a molecular structure as input and output a sorted list of detailed reaction schemes that each connect that target to purchasable starting materials via a series of chemically feasible reaction steps. Early work in this field relied on expert-crafted reaction rules and heuristics to describe possible retrosynthetic disconnections and selectivity rules but suffered from incompleteness, infeasible suggestions, and human bias. With the relatively recent availability of large reaction corpora (such as the United States Patent and Trademark Office (USPTO), Reaxys, and SciFinder databases), consisting of millions of tabulated reaction examples, it is now possible to construct and validate purely data-driven approaches to synthesis planning. As a result, synthesis planning has been opened to machine learning techniques, and the field is advancing rapidly. In this Account, we focus on two critical aspects of CASP and recent machine learning approaches to both challenges. First, we discuss the problem of retrosynthetic planning, which requires a recommender system to propose synthetic disconnections starting from a target molecule. We describe how the search strategy, necessary to overcome the exponential growth of the search space with increasing number of reaction steps, can be assisted through a learned synthetic complexity metric. We also describe how the recursive expansion can be performed by a straightforward nearest neighbor model that makes clever use of reaction data to generate high quality retrosynthetic disconnections. Second, we discuss the problem of anticipating the products of chemical reactions, which can be used to validate proposed reactions in a computer-generated synthesis plan (i.e., reduce false positives) to increase the likelihood of experimental success

  1. Exergy analysis of industrial ammonia synthesis

    International Nuclear Information System (INIS)

    Kirova-Yordanova, Zornitza

    2004-01-01

    Exergy consumption of ammonia production plants depends strongly on the ammonia synthesis loop design. Due to the thermodynamically limited low degree of conversion of hydrogen-nitrogen mixture to ammonia, industrial ammonia synthesis is implemented as recycle process (so-called 'ammonia synthesis loop'). Significant quantities of reactants are recycled back to reactor, after the removal of ammonia at low temperatures. Modern ammonia synthesis plants use well-developed heat- and cold recovery to improve the reaction heat utilisation and to reduce the refrigeration costs. In this work, the exergy method is applied to estimate the effect of the most important process parameters on the exergy efficiency of industrial ammonia synthesis. A specific approach, including suitable definitions of the system boundaries and process parameters, is proposed. Exergy efficiency indexes are discussed in order to make the results applicable to ammonia synthesis loops of various designs. The dependence of the exergy losses on properly selected independent process parameters is studied. Some results from detailed exergy analysis of the most commonly used ammonia synthesis loop design configurations at a wide range of selected parameters values are shown

  2. Synthesis through Trans-disciplinarity

    DEFF Research Database (Denmark)

    Hansen, Hanne Tine Ring

    2006-01-01

    synthesis is a requirement for creating successful ‘environmentally sustainable' architecture through the application of trans-disciplinarity, which leads to an increased awareness of the differences in decision-making as well as that of communication barriers between the different professions......When looking up the word ‘synthesis' in a dictionary, one comes across the following definition: "The combining of separate elements or substances to form a coherent whole."[1] Based on this definition one could argue that all great architectureis achieved through synthesis in one way or another...

  3. Synthesis of ammonia using sodium melt

    OpenAIRE

    Kawamura, Fumio; Taniguchi, Takashi

    2017-01-01

    Research into inexpensive ammonia synthesis has increased recently because ammonia can be used as a hydrogen carrier or as a next generation fuel which does not emit CO2. Furthermore, improving the efficiency of ammonia synthesis is necessary, because current synthesis methods emit significant amounts of CO2. To achieve these goals, catalysts that can effectively reduce the synthesis temperature and pressure, relative to those required in the Haber-Bosch process, are required. Although severa...

  4. β-Molybdenum nitride: synthesis mechanism and catalytic response in the gas phase hydrogenation of p-chloronitrobenzene

    NARCIS (Netherlands)

    Cárdenas-Lizana, F.; Gómez-Quero, S.; Perret, N.; Kiwi-Minsker, L.; Keane, M.A.

    2011-01-01

    A temperature programmed treatment of MoO3 in flowing N2 + H2 has been employed to prepare β-phase molybdenum nitride (β-Mo2N) which has been used to promote, for the first time, the catalytic hydrogenation of p-chloronitrobenzene. The reduction/nitridation synthesis steps have been monitored in

  5. Routine human-competitive machine intelligence by means of genetic programming

    Science.gov (United States)

    Koza, John R.; Streeter, Matthew J.; Keane, Martin

    2004-01-01

    Genetic programming is a systematic method for getting computers to automatically solve a problem. Genetic programming starts from a high-level statement of what needs to be done and automatically creates a computer program to solve the problem. The paper demonstrates that genetic programming (1) now routinely delivers high-return human-competitive machine intelligence; (2) is an automated invention machine; (3) can automatically create a general solution to a problem in the form of a parameterized topology; and (4) has delivered a progression of qualitatively more substantial results in synchrony with five approximately order-of-magnitude increases in the expenditure of computer time. Recent results involving the automatic synthesis of the topology and sizing of analog electrical circuits and controllers demonstrate these points.

  6. Study on Production Management in Programming of Computer Numerical Control Machines

    Directory of Open Access Journals (Sweden)

    Gheorghe Popovici

    2014-12-01

    Full Text Available The paper presents the results of a study regarding the need for technology in programming for machinetools with computer-aided command. Engineering is the science of making skilled things. That is why, in the "factory of the future", programming engineering will have to realise the part processing on MU-CNCs (Computer Numerical Control Machines in the optimum economic variant. There is no "recipe" when it comes to technologies. In order to select the correct variant from among several technical variants, 10 technological requirements are forwarded for the engineer to take into account in MU-CNC programming. It is the first argued synthesis of the need for technological knowledge in MU-CNC programming.

  7. Use of Modern Chemical Protein Synthesis and Advanced Fluorescent Assay Techniques to Experimentally Validate the Functional Annotation of Microbial Genomes

    Energy Technology Data Exchange (ETDEWEB)

    Kent, Stephen [University of Chicago

    2012-07-20

    The objective of this research program was to prototype methods for the chemical synthesis of predicted protein molecules in annotated microbial genomes. High throughput chemical methods were to be used to make large numbers of predicted proteins and protein domains, based on microbial genome sequences. Microscale chemical synthesis methods for the parallel preparation of peptide-thioester building blocks were developed; these peptide segments are used for the parallel chemical synthesis of proteins and protein domains. Ultimately, it is envisaged that these synthetic molecules would be ‘printed’ in spatially addressable arrays. The unique ability of total synthesis to precision label protein molecules with dyes and with chemical or biochemical ‘tags’ can be used to facilitate novel assay technologies adapted from state-of-the art single molecule fluorescence detection techniques. In the future, in conjunction with modern laboratory automation this integrated set of techniques will enable high throughput experimental validation of the functional annotation of microbial genomes.

  8. Formal synthesis of naturally occurring norephedrine

    Indian Academy of Sciences (India)

    A concise and simple synthesis of 1-hydroxy-phenethylamine derivatives has been achieved following classical organic transformations using commercially available chiral pools. The said derivatives were explored for the synthesis of naturally occurring bio-active small molecules. Formal synthesis of norephedrine, virolin ...

  9. Biomimetic and Bioinspired Synthesis of Nanomaterials/Nanostructures.

    Science.gov (United States)

    Zan, Guangtao; Wu, Qingsheng

    2016-03-16

    In recent years, due to its unparalleled advantages, the biomimetic and bioinspired synthesis of nanomaterials/nanostructures has drawn increasing interest and attention. Generally, biomimetic synthesis can be conducted either by mimicking the functions of natural materials/structures or by mimicking the biological processes that organisms employ to produce substances or materials. Biomimetic synthesis is therefore divided here into "functional biomimetic synthesis" and "process biomimetic synthesis". Process biomimetic synthesis is the focus of this review. First, the above two terms are defined and their relationship is discussed. Next different levels of biological processes that can be used for process biomimetic synthesis are compiled. Then the current progress of process biomimetic synthesis is systematically summarized and reviewed from the following five perspectives: i) elementary biomimetic system via biomass templates, ii) high-level biomimetic system via soft/hard-combined films, iii) intelligent biomimetic systems via liquid membranes, iv) living-organism biomimetic systems, and v) macromolecular bioinspired systems. Moreover, for these five biomimetic systems, the synthesis procedures, basic principles, and relationships are discussed, and the challenges that are encountered and directions for further development are considered. © 2016 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  10. Principles of asymmetric synthesis

    CERN Document Server

    Gawley, Robert E; Aube, Jeffrey

    2012-01-01

    The world is chiral. Most of the molecules in it are chiral, and asymmetric synthesis is an important means by which enantiopure chiral molecules may be obtained for study and sale. Using examples from the literature of asymmetric synthesis, this book presents a detailed analysis of the factors that govern stereoselectivity in organic reactions. After an explanation of the basic physical-organic principles governing stereoselective reactions, the authors provide a detailed, annotated glossary of stereochemical terms. A chapter on "Practical Aspects of Asymmetric Synthesis" provides a critical overview of the most common methods for the preparation of enantiomerically pure compounds, techniques for analysis of stereoisomers using chromatographic, spectroscopic, and chiroptical methods. The authors then present an overview of the most important methods in contemporary asymmetric synthesis organized by reaction type. Thus, there are four chapters on carbon-carbon bond forming reactions, one chapter on reductions...

  11. Synthesis of radiopharmaceuticals containing short-lived radionuclides: Progress report, March 1, 1987-February 28, 1988

    International Nuclear Information System (INIS)

    Kabalka, G.W.

    1987-09-01

    The objective is the creation of new methods for introducing short-lived isotopes into agents for use in diagnostic nuclear medicine. Focus is on the design of new molecular architecture as opposed to the application of known reactions to the synthesis of specific radiopharmaceuticals. The new technology is utilized in nuclear medicine research at the University of Tennessee Medical Imaging Center and in collaboration with colleagues at other DOE facilities. The program provides training for students in the scientific aspects of nuclear medicine. The academic nature of the program facilitates collaborative interactions with other DOE nuclear medicine programs and helps to insure the continued availability of skilled scientists dedicated to the advancement of nuclear medicine. 70 refs., 9 figs

  12. Synthesis of analytical and experimental data, capacity evaluation

    International Nuclear Information System (INIS)

    Lin Chiwenn

    2001-01-01

    This part of the presentation deals with the synthesis of analytical and experimental data and capacity evaluation. First, a typical test flow diagram will be discussed to identify key aspects of the test program where analysis is to be performed. Next, actual component test and analysis programs will be presented to illustrate some important parameters to be considered in the modelling process. Then, two combined test and analysis projects will be reviewed to demonstrate the potential use of substructuring in the model testing to reduce the size of the model to be tested. This will be followed by an inelastic response spectral reactor coolant loop analysis, which was used to study a high level seismic test conducted for a PWR reactor coolant system. The potential use of an improved impact calculation method will be discussed after that. As a closure to the test and analysis synthesis process, a reactor internal qualification process will be discussed. Finally, capacity evaluation will be discussed, following the requirements of ASME section III code for class 1 pressure vessel, class 1 piping which includes the reactor coolant loop piping, and the reactor internals. The subsections included in this part of presentation which cover the above mentioned subjects: typical component test and analysis results; combined test and analysis process; a simplified inelastic response spectral; analysis of reactor coolant loop; an improved impact analysis methodology; reactor coolant system and core internal qualification process; ASME section III code, design by analysis of class 1 pressure vessel; design by analysis of class 1 piping; SME section III code, design by analysis of reactor core internals

  13. Feature-aware natural texture synthesis

    KAUST Repository

    Wu, Fuzhang

    2014-12-04

    This article presents a framework for natural texture synthesis and processing. This framework is motivated by the observation that given examples captured in natural scene, texture synthesis addresses a critical problem, namely, that synthesis quality can be affected adversely if the texture elements in an example display spatially varied patterns, such as perspective distortion, the composition of different sub-textures, and variations in global color pattern as a result of complex illumination. This issue is common in natural textures and is a fundamental challenge for previously developed methods. Thus, we address it from a feature point of view and propose a feature-aware approach to synthesize natural textures. The synthesis process is guided by a feature map that represents the visual characteristics of the input texture. Moreover, we present a novel adaptive initialization algorithm that can effectively avoid the repeat and verbatim copying artifacts. Our approach improves texture synthesis in many images that cannot be handled effectively with traditional technologies.

  14. What Synthesis Methodology Should I Use? A Review and Analysis of Approaches to Research Synthesis

    Science.gov (United States)

    Schick-Makaroff, Kara; MacDonald, Marjorie; Plummer, Marilyn; Burgess, Judy; Neander, Wendy

    2016-01-01

    Background When we began this process, we were doctoral students and a faculty member in a research methods course. As students, we were facing a review of the literature for our dissertations. We encountered several different ways of conducting a review but were unable to locate any resources that synthesized all of the various synthesis methodologies. Our purpose is to present a comprehensive overview and assessment of the main approaches to research synthesis. We use ‘research synthesis’ as a broad overarching term to describe various approaches to combining, integrating, and synthesizing research findings. Methods We conducted an integrative review of the literature to explore the historical, contextual, and evolving nature of research synthesis. We searched five databases, reviewed websites of key organizations, hand-searched several journals, and examined relevant texts from the reference lists of the documents we had already obtained. Results We identified four broad categories of research synthesis methodology including conventional, quantitative, qualitative, and emerging syntheses. Each of the broad categories was compared to the others on the following: key characteristics, purpose, method, product, context, underlying assumptions, unit of analysis, strengths and limitations, and when to use each approach. Conclusions The current state of research synthesis reflects significant advancements in emerging synthesis studies that integrate diverse data types and sources. New approaches to research synthesis provide a much broader range of review alternatives available to health and social science students and researchers. PMID:29546155

  15. What Synthesis Methodology Should I Use? A Review and Analysis of Approaches to Research Synthesis.

    Directory of Open Access Journals (Sweden)

    Kara Schick-Makaroff

    2016-03-01

    Full Text Available Background: When we began this process, we were doctoral students and a faculty member in a research methods course. As students, we were facing a review of the literature for our dissertations. We encountered several different ways of conducting a review but were unable to locate any resources that synthesized all of the various synthesis methodologies. Our purpose is to present a comprehensive overview and assessment of the main approaches to research synthesis. We use ‘research synthesis’ as a broad overarching term to describe various approaches to combining, integrating, and synthesizing research findings. Methods: We conducted an integrative review of the literature to explore the historical, contextual, and evolving nature of research synthesis. We searched five databases, reviewed websites of key organizations, hand-searched several journals, and examined relevant texts from the reference lists of the documents we had already obtained. Results: We identified four broad categories of research synthesis methodology including conventional, quantitative, qualitative, and emerging syntheses. Each of the broad categories was compared to the others on the following: key characteristics, purpose, method, product, context, underlying assumptions, unit of analysis, strengths and limitations, and when to use each approach. Conclusions: The current state of research synthesis reflects significant advancements in emerging synthesis studies that integrate diverse data types and sources. New approaches to research synthesis provide a much broader range of review alternatives available to health and social science students and researchers.

  16. Tailored fatty acid synthesis via dynamic control of fatty acid elongation

    Energy Technology Data Exchange (ETDEWEB)

    Torella, JP; Ford, TJ; Kim, SN; Chen, AM; Way, JC; Silver, PA

    2013-07-09

    Medium-chain fatty acids (MCFAs, 4-12 carbons) are valuable as precursors to industrial chemicals and biofuels, but are not canonical products of microbial fatty acid synthesis. We engineered microbial production of the full range of even-and odd-chain-length MCFAs and found that MCFA production is limited by rapid, irreversible elongation of their acyl-ACP precursors. To address this limitation, we programmed an essential ketoacyl synthase to degrade in response to a chemical inducer, thereby slowing acyl-ACP elongation and redirecting flux from phospholipid synthesis to MCFA production. Our results show that induced protein degradation can be used to dynamically alter metabolic flux, and thereby increase the yield of a desired compound. The strategy reported herein should be widely useful in a range of metabolic engineering applications in which essential enzymes divert flux away from a desired product, as well as in the production of polyketides, bioplastics, and other recursively synthesized hydrocarbons for which chain-length control is desired.

  17. Tailored fatty acid synthesis via dynamic control of fatty acid elongation

    Science.gov (United States)

    Torella, Joseph P.; Ford, Tyler J.; Kim, Scott N.; Chen, Amanda M.; Way, Jeffrey C.; Silver, Pamela A.

    2013-01-01

    Medium-chain fatty acids (MCFAs, 4–12 carbons) are valuable as precursors to industrial chemicals and biofuels, but are not canonical products of microbial fatty acid synthesis. We engineered microbial production of the full range of even- and odd-chain–length MCFAs and found that MCFA production is limited by rapid, irreversible elongation of their acyl-ACP precursors. To address this limitation, we programmed an essential ketoacyl synthase to degrade in response to a chemical inducer, thereby slowing acyl-ACP elongation and redirecting flux from phospholipid synthesis to MCFA production. Our results show that induced protein degradation can be used to dynamically alter metabolic flux, and thereby increase the yield of a desired compound. The strategy reported herein should be widely useful in a range of metabolic engineering applications in which essential enzymes divert flux away from a desired product, as well as in the production of polyketides, bioplastics, and other recursively synthesized hydrocarbons for which chain-length control is desired. PMID:23798438

  18. Hamiltonian Algorithm Sound Synthesis

    OpenAIRE

    大矢, 健一

    2013-01-01

    Hamiltonian Algorithm (HA) is an algorithm for searching solutions is optimization problems. This paper introduces a sound synthesis technique using Hamiltonian Algorithm and shows a simple example. "Hamiltonian Algorithm Sound Synthesis" uses phase transition effect in HA. Because of this transition effect, totally new waveforms are produced.

  19. Collaboration and Productivity in Scientific Synthesis

    Science.gov (United States)

    Hampton, Stephanie E.; Parker, John N.

    2011-01-01

    Scientific synthesis has transformed ecological research and presents opportunities for advancements across the sciences; to date, however, little is known about the antecedents of success in synthesis. Building on findings from 10 years of detailed research on social interactions in synthesis groups at the National Center for Ecological Analysis…

  20. Perspective: Toward "synthesis by design": Exploring atomic correlations during inorganic materials synthesis

    Science.gov (United States)

    Soderholm, L.; Mitchell, J. F.

    2016-05-01

    Synthesis of inorganic extended solids is a critical starting point from which real-world functional materials and their consequent technologies originate. However, unlike the rich mechanistic foundation of organic synthesis, with its underlying rules of assembly (e.g., functional groups and their reactivities), the synthesis of inorganic materials lacks an underpinning of such robust organizing principles. In the latter case, any such rules must account for the diversity of chemical species and bonding motifs inherent to inorganic materials and the potential impact of mass transport on kinetics, among other considerations. Without such assembly rules, there is less understanding, less predictive power, and ultimately less control of properties. Despite such hurdles, developing a mechanistic understanding for synthesis of inorganic extended solids would dramatically impact the range of new material discoveries and resulting new functionalities, warranting a broad call to explore what is possible. Here we discuss our recent approaches toward a mechanistic framework for the synthesis of bulk inorganic extended solids, in which either embryonic atomic correlations or fully developed phases in solutions or melts can be identified and tracked during product selection and crystallization. The approach hinges on the application of high-energy x-rays, with their penetrating power and large Q-range, to explore reaction pathways in situ. We illustrate this process using two examples: directed assembly of Zr clusters in aqueous solution and total phase awareness during crystallization from K-Cu-S melts. These examples provide a glimpse of what we see as a larger vision, in which large scale simulations, data-driven science, and in situ studies of atomic correlations combine to accelerate materials discovery and synthesis, based on the assembly of well-defined, prenucleated atomic correlations.

  1. The NRAO Observing for University Classes Program

    Science.gov (United States)

    Cannon, John M.; Van Moorsel, Gustaaf A.

    2017-01-01

    The NRAO "Observing for University Classes" program is a tremendous resource for instructors of courses in observational astronomy. As a service to the astronomical and educational communities, the NRAO offers small amounts of observing time on the Very Large Array (VLA) and the Very Long Baseline Array to such instructors. The data can be used by students and faculty to demonstrate radio astronomy theory with modern data products. Further, the results may lead to publication; this is a unique opportunity for faculty members to integrate research into the classroom. Previous experience with NRAO facilities is required for instructors; individuals without radio astronomy experience can take advantage of other NRAO educational opportunities (e.g., the Synthesis Imaging Workshop) prior to using the program. No previous experience with radio astronomy data is required for students; this is the primary target audience of the program. To demonstrate concept, this poster describes three different VLA observing programs that have been completed using the "Observing for University Classes" resource at Macalester College; undergraduate students have published the results of all three of these programs. Other recent "Observing for University Classes" programs are also described.

  2. The Interpretation of Cholesterol Balance Derived Synthesis Data and Surrogate Noncholesterol Plasma Markers for Cholesterol Synthesis under Lipid Lowering Therapies

    Directory of Open Access Journals (Sweden)

    Frans Stellaard

    2017-01-01

    Full Text Available The cholesterol balance procedure allows the calculation of cholesterol synthesis based on the assumption that loss of endogenous cholesterol via fecal excretion and bile acid synthesis is compensated by de novo synthesis. Under ezetimibe therapy hepatic cholesterol is diminished which can be compensated by hepatic de novo synthesis and hepatic extraction of plasma cholesterol. The plasma lathosterol concentration corrected for total cholesterol concentration (R_Lath as a marker of de novo cholesterol synthesis is increased during ezetimibe treatment but unchanged under treatment with ezetimibe and simvastatin. Cholesterol balance derived synthesis data increase during both therapies. We hypothesize the following. (1 The cholesterol balance data must be applied to the hepatobiliary cholesterol pool. (2 The calculated cholesterol synthesis value is the sum of hepatic de novo synthesis and the net plasma—liver cholesterol exchange rate. (3 The reduced rate of biliary cholesterol absorption is the major trigger for the regulation of hepatic cholesterol metabolism under ezetimibe treatment. Supportive experimental and literature data are presented that describe changes of cholesterol fluxes under ezetimibe, statin, and combined treatments in omnivores and vegans, link plasma R_Lath to liver function, and define hepatic de novo synthesis as target for regulation of synthesis. An ezetimibe dependent direct hepatic drug effect cannot be excluded.

  3. Synthesis of analogues of Eunicea gamma-cembranolides containing cyclic ethers via saponification.

    Science.gov (United States)

    Rodríguez, A D; Piña, I C; Acosta, A L; Ramírez, C; Soto, J J

    2001-02-09

    A method for the synthesis of derivatives of the lead structures euniolide (1), 12,13-bisepieupalmerin (2), and eupalmerin acetate (3) containing tetrahydrofuran and tetrahydropyran ring systems was developed on the basis of alkali-induced intramolecular oxacyclizations. Representatives of the new analogues were submitted to the in vitro antitumor cell-line-screening program of the National Cancer Institute (NCI). While it was shown that a variety of structural modifications are possible, these transformations led typically to nontoxic synthetic cembranoids.

  4. Green chemistry for nanoparticle synthesis.

    Science.gov (United States)

    Duan, Haohong; Wang, Dingsheng; Li, Yadong

    2015-08-21

    The application of the twelve principles of green chemistry in nanoparticle synthesis is a relatively new emerging issue concerning the sustainability. This field has received great attention in recent years due to its capability to design alternative, safer, energy efficient, and less toxic routes towards synthesis. These routes have been associated with the rational utilization of various substances in the nanoparticle preparations and synthetic methods, which have been broadly discussed in this tutorial review. This article is not meant to provide an exhaustive overview of green synthesis of nanoparticles, but to present several pivotal aspects of synthesis with environmental concerns, involving the selection and evaluation of nontoxic capping and reducing agents, the choice of innocuous solvents and the development of energy-efficient synthetic methods.

  5. [The mechanism of phenoptosis: I. Age-dependent decrease of the overall rate of protein synthesis is caused by the programmed attenuation of bio-energetics].

    Science.gov (United States)

    Trubitsyn, A G

    2009-01-01

    The age-dependent degradation of all vital processes of an organism can be result of influences of destructive factors (the stochastic mechanism of aging), or effect of realizations of the genetic program (phenoptosis). The stochastic free-radical theory of aging dominating now contradicts the set of empirical data, and the semicentenial attempts to create the means to slow down aging did not give any practical results. It makes obvious that the stochastic mechanism of aging is incorrect. At the same time, the alternative mechanism of the programmed aging is not developed yet but preconditions for it development have already been created. It is shown that the genes controlling process of aging exist (contrary to the customary opinion) and the increase in the level of damaged macromolecules (basic postulate of the free-radical theory) can be explained by programmed attenuation of bio-energetics. As the bio-energetics is a driving force of all vital processes, decrease of its level is capable to cause degradation of all functions of an organism. However to transform this postulate into a basis of the theory of phenoptosis it is necessary to show, that attenuation of bio-energetics predetermines such fundamental processes accompanying aging as decrease of the overall rate of protein biosynthesis, restriction of cellular proliferations (Hayflick limit), loss of telomeres etc. This article is the first step in this direction: the natural mechanism of interaction of overall rate of protein synthesis with a level of cellular bio-energetics is shown. This is built-in into the translation machine and based on dependence of recirculation rate of eukaryotic initiation factor 2 (elF2) from ATP/ADP value that is created by mitochondrial bio-energetic machine.

  6. Synthesis of ammonia using sodium melt.

    Science.gov (United States)

    Kawamura, Fumio; Taniguchi, Takashi

    2017-09-14

    Research into inexpensive ammonia synthesis has increased recently because ammonia can be used as a hydrogen carrier or as a next generation fuel which does not emit CO 2 . Furthermore, improving the efficiency of ammonia synthesis is necessary, because current synthesis methods emit significant amounts of CO 2 . To achieve these goals, catalysts that can effectively reduce the synthesis temperature and pressure, relative to those required in the Haber-Bosch process, are required. Although several catalysts and novel ammonia synthesis methods have been developed previously, expensive materials or low conversion efficiency have prevented the displacement of the Haber-Bosch process. Herein, we present novel ammonia synthesis route using a Na-melt as a catalyst. Using this route, ammonia can be synthesized using a simple process in which H 2 -N 2 mixed gas passes through the Na-melt at 500-590 °C under atmospheric pressure. Nitrogen molecules dissociated by reaction with sodium then react with hydrogen, resulting in the formation of ammonia. Because of the high catalytic efficiency and low-cost of this molten-Na catalyst, it provides new opportunities for the inexpensive synthesis of ammonia and the utilization of ammonia as an energy carrier and next generation fuel.

  7. Detonation Synthesis of Alpha-Variant Silicon Carbide

    Science.gov (United States)

    Langenderfer, Martin; Johnson, Catherine; Fahrenholtz, William; Mochalin, Vadym

    2017-06-01

    A recent research study has been undertaken to develop facilities for conducting detonation synthesis of nanomaterials. This process involves a familiar technique that has been utilized for the industrial synthesis of nanodiamonds. Developments through this study have allowed for experimentation with the concept of modifying explosive compositions to induce synthesis of new nanomaterials. Initial experimentation has been conducted with the end goal being synthesis of alpha variant silicon carbide (α-SiC) in the nano-scale. The α-SiC that can be produced through detonation synthesis methods is critical to the ceramics industry because of a number of unique properties of the material. Conventional synthesis of α-SiC results in formation of crystals greater than 100 nm in diameter, outside nano-scale. It has been theorized that the high temperature and pressure of an explosive detonation can be used for the formation of α-SiC in the sub 100 nm range. This paper will discuss in detail the process development for detonation nanomaterial synthesis facilities, optimization of explosive charge parameters to maximize nanomaterial yield, and introduction of silicon to the detonation reaction environment to achieve first synthesis of nano-sized alpha variant silicon carbide.

  8. Use of collagen hydrolysate as a complex nitrogen source for the synthesis of penicillin by Penicillium chrysogenum.

    Science.gov (United States)

    Leonhartsberger, S; Lafferty, R M; Korneti, L

    1993-09-01

    Optimal conditions for both biomass formation and penicillin synthesis by a strain of Penicillium chrysogenum were determined when using a collagen-derived nitrogen source. Preliminary investigations were carried out in shaken flask cultures employing a planned experimental program termed the Graeco-Latin square technique (Auden et al., 1967). It was initially determined that up to 30% of a conventional complex nitrogen source such as cottonseed meal could be replaced by the collagen-derived nitrogen source without decreasing the productivity with respect to the penicillin yield. In the pilot scale experiments using a 30 l stirred tank type of bioreactor, higher penicillin yields were obtained when 70% of the conventional complex nitrogen source in the form of cottonseed meal was replaced by the collagen hydrolysate. Furthermore, the maximum rate of penicillin synthesis continued for over a longer period when using collagen hydrolysate as a complex nitrogen source. Penicillin synthesis rates were determined using a linear regression.

  9. Synthesis of oligonucleotide phosphorodithioates

    DEFF Research Database (Denmark)

    Beaton, G.; Brill, W. K D; Grandas, A.

    1991-01-01

    The synthesis of DNA containing sulfur at the two nonbonding internucleotide valencies is reported. Several different routes using either tervalent or pentavalent mononucleotide synthons are described.......The synthesis of DNA containing sulfur at the two nonbonding internucleotide valencies is reported. Several different routes using either tervalent or pentavalent mononucleotide synthons are described....

  10. GITTAM program for numerical simulation of one-dimensional targets TIS. Part 3

    International Nuclear Information System (INIS)

    Basko, M.M.; Sokolovskij, M.V.

    1989-01-01

    Results of testing calculations according to GITTAM program, developed for numeric simulation of one-dimensional thermonuclear targets of heavy-ion synthesis are presented. Finite-difference method for solving a system of one-dimensional hydrodynamics equations with heat conductivity, radiation diffusion and thermonuclear combustion is used in the GITTAM program. In the tests presented, based on simple automodel solutions, adiabatic motion as well as distribution of shock, thermal and radial waves in gas with simple polytron state equation is investigated. 3 refs.; 6 figs

  11. Growth hormone stimulates the collagen synthesis in human tendon and skeletal muscle without affecting myofibrillar protein synthesis

    DEFF Research Database (Denmark)

    Doessing, Simon; Heinemeier, Katja M; Holm, Lars

    2010-01-01

    young individuals. rhGH administration caused an increase in serum GH, serum IGF-I, and IGF-I mRNA expression in tendon and muscle. Tendon collagen I mRNA expression and tendon collagen protein synthesis increased by 3.9-fold and 1.3-fold, respectively (P ...RNA expression and muscle collagen protein synthesis increased by 2.3-fold and 5.8-fold, respectively (P protein synthesis was unaffected by elevation of GH and IGF-I. Moderate exercise did not enhance the effects of GH manipulation. Thus, increased GH availability stimulates...... matrix collagen synthesis in skeletal muscle and tendon, but without any effect upon myofibrillar protein synthesis. The results suggest that GH is more important in strengthening the matrix tissue than for muscle cell hypertrophy in adult human musculotendinous tissue....

  12. STICS: surface-tethered iterative carbohydrate synthesis.

    Science.gov (United States)

    Pornsuriyasak, Papapida; Ranade, Sneha C; Li, Aixiao; Parlato, M Cristina; Sims, Charles R; Shulga, Olga V; Stine, Keith J; Demchenko, Alexei V

    2009-04-14

    A new surface-tethered iterative carbohydrate synthesis (STICS) technology is presented in which a surface functionalized 'stick' made of chemically stable high surface area porous gold allows one to perform cost efficient and simple synthesis of oligosaccharide chains; at the end of the synthesis, the oligosaccharide can be cleaved off and the stick reused for subsequent syntheses.

  13. Finding the K best synthesis plans.

    Science.gov (United States)

    Fagerberg, Rolf; Flamm, Christoph; Kianian, Rojin; Merkle, Daniel; Stadler, Peter F

    2018-04-05

    In synthesis planning, the goal is to synthesize a target molecule from available starting materials, possibly optimizing costs such as price or environmental impact of the process. Current algorithmic approaches to synthesis planning are usually based on selecting a bond set and finding a single good plan among those induced by it. We demonstrate that synthesis planning can be phrased as a combinatorial optimization problem on hypergraphs by modeling individual synthesis plans as directed hyperpaths embedded in a hypergraph of reactions (HoR) representing the chemistry of interest. As a consequence, a polynomial time algorithm to find the K shortest hyperpaths can be used to compute the K best synthesis plans for a given target molecule. Having K good plans to choose from has many benefits: it makes the synthesis planning process much more robust when in later stages adding further chemical detail, it allows one to combine several notions of cost, and it provides a way to deal with imprecise yield estimates. A bond set gives rise to a HoR in a natural way. However, our modeling is not restricted to bond set based approaches-any set of known reactions and starting materials can be used to define a HoR. We also discuss classical quality measures for synthesis plans, such as overall yield and convergency, and demonstrate that convergency has a built-in inconsistency which could render its use in synthesis planning questionable. Decalin is used as an illustrative example of the use and implications of our results.

  14. Fuels planning: science synthesis and integration; fact sheet: The Fuels Synthesis Project overview

    Science.gov (United States)

    Rocky Mountain Research Station USDA Forest Service

    2004-01-01

    The geographic focus of the "Fuels Planning: Science Synthesis and Integration" project #known as the Fuels Synthesis Project# is on the dry forests of the Western United States. Target audiences include fuels management specialists, resource specialists, National Environmental Policy Act #NEPA# planning team leaders, line officers in the USDA Forest Service...

  15. Constraints and Logic Programming in Grammars and Language Analysis

    DEFF Research Database (Denmark)

    Christiansen, Henning

    2014-01-01

    Constraints are an important notion in grammars and language analysis, and constraint programming techniques have been developed concurrently for solving a variety of complex problems. In this chapter we consider the synthesis of these branches into practical and effective methods for language...... methods that combine constraints with logic grammars such as Definite Clause Grammars and CHR Grammars, and show also a direct relationship to abductive reasoning....

  16. Synthesis in land change science

    DEFF Research Database (Denmark)

    Magliocca, Nicholas R.; Rudel, Thomas K.; Verburg, Peter H.

    2015-01-01

    Global and regional economic and environmental changes are increasingly influencing local land-use, livelihoods, and ecosystems. At the same time, cumulative local land changes are driving global and regional changes in biodiversity and the environment. To understand the causes and consequences...... of these changes, land change science (LCS) draws on a wide array synthetic and meta-study techniques to generate global and regional knowledge from local case studies of land change. Here, we review the characteristics and applications of synthesis methods in LCS and assess the current state of synthetic research...... based on a meta-analysis of synthesis studies from 1995 to 2012. Publication of synthesis research is accelerating, with a clear trend toward increasingly sophisticated and quantitative methods, including meta-analysis. Detailed trends in synthesis objectives, methods, and land change phenomena...

  17. Rate in template-directed polymer synthesis.

    Science.gov (United States)

    Saito, Takuya

    2014-06-01

    We discuss the temporal efficiency of template-directed polymer synthesis, such as DNA replication and transcription, under a given template string. To weigh the synthesis speed and accuracy on the same scale, we propose a template-directed synthesis (TDS) rate, which contains an expression analogous to that for the Shannon entropy. Increasing the synthesis speed accelerates the TDS rate, but the TDS rate is lowered if the produced sequences are diversified. We apply the TDS rate to some production system models and investigate how the balance between the speed and the accuracy is affected by changes in the system conditions.

  18. Lunar Production and Application of Solar Cells, and Synthesis of Diamond Film

    Science.gov (United States)

    Fang, P. H.

    1991-01-01

    Two projects which are carried out under the Summer Faculty Fellowship Program-1991 are discussed. A conceptual design of a solar cell manufacturing plant on a lunar base is discussed. This is a large program that requires a continuous and expanded effort, the present status of which is reflected here. An experiment on the synthesis of diamond film is discussed. Encouraging, but not yet conclusive evidence has been obtained on a new method to synthesize diamond film. The procedures and observations are presented. A third project is an analysis of the solar cell performance over five years on the moon based on Apollo missions. A paper has been completed and will be submitted to the journal Solar Cells for publication.

  19. Immigrant women's experiences of maternity-care services in Canada: a systematic review using a narrative synthesis.

    Science.gov (United States)

    Higginbottom, Gina M A; Morgan, Myfanwy; Alexandre, Mirande; Chiu, Yvonne; Forgeron, Joan; Kocay, Deb; Barolia, Rubina

    2015-02-11

    Canada's diverse society and its statutory commitment to multiculturalism means that a synthesis of knowledge related to the healthcare experiences of immigrants is essential to realise the health potential for future Canadians. Although concerns about the maternity experiences of immigrants in Canada are relatively new, recent national guidelines explicitly call for the tailoring of services to user needs. We therefore assessed the experiences of immigrant women accessing maternity-care services in Canada. In particular, we investigated the experiences of immigrant women in Canada in accessing and navigating maternity and related healthcare services from conception to 6 months postpartum in Canada. Our focus was on (a) the accessibility and acceptability of maternity-care services for immigrant women and (b) the effects of the perceptions and experiences of these women on their birth and postnatal outcomes. We conducted a systematic review using a systematic search and narrative synthesis of peer-reviewed and non-peer-reviewed reports of empirical research, with the aim of providing stakeholders with perspectives on maternity-care services as experienced by immigrant women. We partnered with key stakeholders ('integrated knowledge users') to ensure the relevancy of topics and to tailor recommendations for effective translation into future policy, practice and programming. Two search phases and a three-stage selection process for published and grey literature were conducted prior to appraisal of literature quality and narrative synthesis of the findings. Our knowledge synthesis of maternity care among immigrants to Canada provided a coherent evidence base for (a) eliciting a better understanding of the factors that generate disparities in accessibility, acceptability and outcomes during maternity care; and (b) improving culturally based competency in maternity care. Our synthesis also identified pertinent issues in multiple sectors that should be addressed to

  20. Application of Self-Propagating High Temperature Synthesis to the Fabrication of Actinide Bearing Nitride and Other Ceramic Nuclear Fuels

    International Nuclear Information System (INIS)

    Moore, John J.; Reigel, Marissa M.; Donohoue, Collin D.

    2009-01-01

    The project uses an exothermic combustion synthesis reaction, termed self-propagating high-temperature synthesis (SHS), to produce high quality, reproducible nitride fuels and other ceramic type nuclear fuels (cercers and cermets, etc.) in conjunction with the fabrication of transmutation fuels. The major research objective of the project is determining the fundamental SHS processing parameters by first using manganese as a surrogate for americium to produce dense Zr-Mn-N ceramic compounds. These fundamental principles will then be transferred to the production of dense Zr-Am-N ceramic materials. A further research objective in the research program is generating fundamental SHS processing data to the synthesis of (i) Pu-Am-Zr-N and (ii) U-Pu-Am-N ceramic fuels. In this case, Ce will be used as the surrogate for Pu, Mn as the surrogate for Am, and depleted uranium as the surrogate for U. Once sufficient fundamental data has been determined for these surrogate systems, the information will be transferred to Idaho National Laboratory (INL) for synthesis of Zr-Am-N, Pu-Am-Zr-N and U-Pu-Am-N ceramic fuels. The high vapor pressures of americium (Am) and americium nitride (AmN) are cause for concern in producing nitride ceramic nuclear fuel that contains Am. Along with the problem of Am retention during the sintering phases of current processing methods, are additional concerns of producing a consistent product of desirable homogeneity, density and porosity. Similar difficulties have been experienced during the laboratory scale process development stage of producing metal alloys containing Am wherein compact powder sintering methods had to be abandoned. Therefore, there is an urgent need to develop a low-temperature or low-heat fuel fabrication process for the synthesis of Am-containing ceramic fuels. Self-propagating high temperature synthesis (SHS), also called combustion synthesis, offers such an alternative process for the synthesis of Am nitride fuels. Although SHS

  1. Leucine-Enriched Essential Amino Acids Augment Mixed Protein Synthesis, But Not Collagen Protein Synthesis, in Rat Skeletal Muscle after Downhill Running

    Science.gov (United States)

    Kato, Hiroyuki; Suzuki, Hiromi; Inoue, Yoshiko; Suzuki, Katsuya; Kobayashi, Hisamine

    2016-01-01

    Mixed and collagen protein synthesis is elevated for as many as 3 days following exercise. Immediately after exercise, enhanced amino acid availability increases synthesis of mixed muscle protein, but not muscle collagen protein. However, the potential for synergic effects of amino acid ingestion with exercise on both mixed and collagen protein synthesis remains unclear. We investigated muscle collagen protein synthesis in rats following post-exercise ingestion of leucine-enriched essential amino acids. We determined fractional protein synthesis rates (FSR) at different time points following exercise. Mixed protein and collagen protein FSRs in skeletal muscle were determined by measuring protein-bound enrichments of hydroxyproline and proline, and by measuring the intracellular enrichment of proline, using injections of flooding d3-proline doses. A leucine-enriched mixture of essential amino acids (or distilled water as a control) was administrated 30 min or 1 day post-exercise. The collagen protein synthesis in the vastus lateralis was elevated for 2 days after exercise. Although amino acid administration did not increase muscle collagen protein synthesis, it did lead to augmented mixed muscle protein synthesis 1 day following exercise. Thus, contrary to the regulation of mixed muscle protein synthesis, muscle collagen protein synthesis is not affected by amino acid availability after damage-inducing exercise. PMID:27367725

  2. Leucine-Enriched Essential Amino Acids Augment Mixed Protein Synthesis, But Not Collagen Protein Synthesis, in Rat Skeletal Muscle after Downhill Running

    Directory of Open Access Journals (Sweden)

    Hiroyuki Kato

    2016-06-01

    Full Text Available Mixed and collagen protein synthesis is elevated for as many as 3 days following exercise. Immediately after exercise, enhanced amino acid availability increases synthesis of mixed muscle protein, but not muscle collagen protein. However, the potential for synergic effects of amino acid ingestion with exercise on both mixed and collagen protein synthesis remains unclear. We investigated muscle collagen protein synthesis in rats following post-exercise ingestion of leucine-enriched essential amino acids. We determined fractional protein synthesis rates (FSR at different time points following exercise. Mixed protein and collagen protein FSRs in skeletal muscle were determined by measuring protein-bound enrichments of hydroxyproline and proline, and by measuring the intracellular enrichment of proline, using injections of flooding d3-proline doses. A leucine-enriched mixture of essential amino acids (or distilled water as a control was administrated 30 min or 1 day post-exercise. The collagen protein synthesis in the vastus lateralis was elevated for 2 days after exercise. Although amino acid administration did not increase muscle collagen protein synthesis, it did lead to augmented mixed muscle protein synthesis 1 day following exercise. Thus, contrary to the regulation of mixed muscle protein synthesis, muscle collagen protein synthesis is not affected by amino acid availability after damage-inducing exercise.

  3. Suppression of matrix protein synthesis in endothelial cells by herpes simplex virus is not dependent on viral protein synthesis

    International Nuclear Information System (INIS)

    Kefalides, N.A.

    1986-01-01

    The synthesis of matrix proteins by human endothelial cells (EC) in vitro was studied before and at various times after infection with Herpes Simplex virus Type 1 (HSV-1) or 2 (HSV-2). Monolayers of EC were either mock-infected or infected with virus for 1 hr at a multiplicity infection (MOI) of 5 to 20 at 37 0 C. Control and infected cultures were pulse-labeled for 1 or 2 hrs with either [ 14 C]proline or [ 35 S]methionine. Synthesis of labeled matrix proteins was determined by SDS-gel electrophoresis. Suppression of synthesis of fibronectin, Type IV collagen and thrombospondin began as early as 2 hrs and became almost complete by 10 hrs post-infection. The degree of suppression varied with the protein and the virus dose. Suppression of Type IV collagen occurred first followed by that of fibronectin and then thrombospondin. Infection of EC with UV irradiated HSV-1 or HSV-2 resulted in suppression of host-cell protein synthesis as well as viral protein synthesis. Infection with intact virus in the presence of actinomycin-D resulted in suppression of both host-cell and viral protein synthesis. The data indicate that infection of EC with HSV leads to suppression of matrix protein synthesis which does not depend on viral protein synthesis

  4. Topology synthesis of large-displacement compliant mechanisms

    DEFF Research Database (Denmark)

    Pedersen, Claus B. Wittendorf; Buhl, Thomas; Sigmund, Ole

    2001-01-01

    This paper describes the use of topology optimization as a synthesis tool for the design of large-displacement compliant mechanisms. An objective function for the synthesis of large-displacement mechanisms is proposed together with a formulation for synthesis of path-generating compliant mechanisms...

  5. Noncovalent synthesis of protein dendrimers

    NARCIS (Netherlands)

    Lempens, E.H.M.; Baal, van I.; Dongen, van J.L.J.; Hackeng, T.M.; Merkx, M.; Meijer, E.W.

    2009-01-01

    The covalent synthesis of complex biomolecular systems such as multivalent protein dendrimers often proceeds with low efficiency, thereby making alternative strategies based on noncovalent chemistry of high interest. Here, the synthesis of protein dendrimers using a strong but noncovalent

  6. ACN-France, Aarhus Convention and Nuclear - Synthesis report

    International Nuclear Information System (INIS)

    2012-01-01

    This report first recalls the Aarhus Convention and Nuclear (ACN) process and proposes a presentation of the thematic and program of the three work-groups. Respectively, these work-groups addressed the return on experience on the search process for a Low Activity Long Life radioactive waste storage site, the application of the Convention articles addressing the modalities of public participation and information, and the issue of the empowerment and access to expertise of actors belonging to the civil society. Then, this report contains conclusions and recommendations made by these work-groups, and proposes a synthesis of recommendations aimed at improving public information and participation to decision processes while linking regional and national levels

  7. STRATEGIES TO REDUCE OR REPLACE THE USE OF ANIMALS IN THE ENDOCRINE SCREENING AND TESTING PROGRAM.

    Science.gov (United States)

    Abstract: The US Environmental Protection Agency (EPA) is developing a screening and testing program for endocrine disrupting chemicals (EDCs) to detect alterations of hypothalamic-pituitary-gonadal (HPG) function, estrogen, androgen and thyroid hormone synthesis and androgen (AR...

  8. Organic synthesis with stable isotopes

    International Nuclear Information System (INIS)

    Blazer, R.M.; Daub, G.H.; Kerr, V.N.; Williams, D.L.; Whaley, T.W.

    1982-01-01

    Described is a scheme for the synthesis of L-arginine-1- 13 C utilizing methods developed for the synthesis of L-ornithine-1- 13 C from L-ornithine-2- 13 C and then converting ornithine into arginine with the enzyme acylase

  9. Chemical synthesis on SU-8

    DEFF Research Database (Denmark)

    Qvortrup, Katrine; Taveras, Kennedy; Thastrup, Ole

    2011-01-01

    In this paper we describe a highly effective surface modification of SU-8 microparticles, the attachment of appropriate linkers for solid-supported synthesis, and the successful chemical modification of these particles via controlled multi-step organic synthesis leading to molecules attached...

  10. Synthesis of Novel Hydrocarbon Soluble Multifunctional Anionic Initiators: Tools for Synthesis of Novel Dendrimer and Molecular Brush Polymer Architectures

    Science.gov (United States)

    2015-02-09

    Synthesis of Novel Dendrimer and Molecular Brush Polymer Architectures. Research Area:7.4 The views, opinions and/or findings contained in this report...journals: Final Report: Synthesis of Novel Hydrocarbon Soluble Multifunctional Anionic Initiators: Tools for Synthesis of Novel Dendrimer and Molecular

  11. Conducting polymers: Synthesis and industrial applications

    Energy Technology Data Exchange (ETDEWEB)

    Gottesfeld, S. [Los Alamos National Laboratory, NM (United States)

    1995-05-01

    The Conducting Polymer project funded by the AIM Materials Program is developing new methods for the synthesis of electronically conducting polymers and is evaluating new industrial applications for these materials which will result in significant reductions in energy usage or industrial waste. The applications specifically addressed during FY 1994 are electrochemical capacitors and membranes for gas separation. As an active material in electrochemical capacitors, conducting polymers have the potential of storing large amounts of electrical energy in low cost materials. Such devices are needed in electronics for power failure back-up and peak power, in power supplies for filtering, and in electric vehicles for peak power and load leveling. As a gas electrically adapt the membrane for specific gas combinations. Potential energy savings in the US. for this application are estimated at 1 to 3 quads/yr.

  12. Shock compression synthesis of hard materials

    Energy Technology Data Exchange (ETDEWEB)

    Willson, C.G. [Univ. of Texas, Austin, TX (United States). Dept. of Chemistry

    1999-03-01

    The purpose of this research was to adapt the high explosives technology that was developed in conjunction with nuclear weapons programs to subjecting materials to ultra-high pressures and to explore the utility of this technique for the synthesis of hard materials. The research was conducted in collaboration with researchers at the University of Texas, Texas Tech University and Pantex (Mason and Hanger Corp.). The group designed, modeled, built, and tested a new device that allows quantitative recovery of grams of material that have been subjected to unprecedented pressures. The modeling work was done at Texas Tech and Pantex. The metal parts and material samples were made at the University of Texas, and Pantex machined the explosives, assembled the devices and conducted the detonations. Sample characterization was carried out at the University of Texas and Texas Tech.

  13. Chemo-enzymatic peptide synthesis : bioprocess engineering aspects

    NARCIS (Netherlands)

    Vossenberg, P.

    2012-01-01

    Peptides, in particular oligopeptides, play an important role in the fields of health care, nutrition and cosmetics. Chemical synthesis is currently the most mature technique for the synthesis of peptides that range in length from 5 to 80 amino acids. Chemical synthesis is, however,

  14. Organic synthesis

    Energy Technology Data Exchange (ETDEWEB)

    Thomas, S.E.

    1991-01-01

    This paper reports on reactions of organoboranes. Organoboron routes to unsaturated hydrocarbons. Boronic ester homologation. Properties of organosilicon compounds. Alkene synthesis (Peterson olefination). Allylsilanes and acylsilanes.

  15. Total synthesis of solanoeclepin A

    Science.gov (United States)

    Tanino, Keiji; Takahashi, Motomasa; Tomata, Yoshihide; Tokura, Hiroshi; Uehara, Taketo; Narabu, Takashi; Miyashita, Masaaki

    2011-06-01

    Cyst nematodes are troublesome parasites that live on, and destroy, a range of important host vegetable plants. Damage caused by the potato cyst nematode has now been reported in over 50 countries. One approach to eliminating the problem is to stimulate early hatching of the nematodes, but key hatching stimuli are not naturally available in sufficient quantities to do so. Here, we report the first chemical synthesis of solanoeclepin A, the key hatch-stimulating substance for potato cyst nematode. The crucial steps in our synthesis are an intramolecular cyclization reaction for construction of the highly strained tricyclo[5.2.1.01,6]decane skeleton (DEF ring system) and an intramolecular Diels-Alder reaction of a furan derivative for the synthesis of the ABC carbon framework. The present synthesis has the potential to contribute to addressing one of the critical food issues of the twenty-first century.

  16. A low-crystalline ruthenium nano-layer supported on praseodymium oxide as an active catalyst for ammonia synthesis.

    Science.gov (United States)

    Sato, Katsutoshi; Imamura, Kazuya; Kawano, Yukiko; Miyahara, Shin-Ichiro; Yamamoto, Tomokazu; Matsumura, Syo; Nagaoka, Katsutoshi

    2017-01-01

    Ammonia is a crucial chemical feedstock for fertilizer production and is a potential energy carrier. However, the current method of synthesizing ammonia, the Haber-Bosch process, consumes a great deal of energy. To reduce energy consumption, a process and a substance that can catalyze ammonia synthesis under mild conditions (low temperature and low pressure) are strongly needed. Here we show that Ru/Pr 2 O 3 without any dopant catalyzes ammonia synthesis under mild conditions at 1.8 times the rates reported with other highly active catalysts. Scanning transmission electron micrograph observations and energy dispersive X-ray analyses revealed the formation of low-crystalline nano-layers of ruthenium on the surface of Pr 2 O 3 . Furthermore, CO 2 temperature-programmed desorption revealed that the catalyst was strongly basic. These unique structural and electronic characteristics are considered to synergistically accelerate the rate-determining step of NH 3 synthesis, cleavage of the N 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 1111111111111111111111111111111111 1111111111111111111111111111111111 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 1111111111111111111111111111111111 1111111111111111111111111111111111 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000 1111111111111111111111111111111111 1111111111111111111111111111111111 0000000000000000000000000000000000 0000000000000000000000000000000000 0000000000000000000000000000000000

  17. Health systems guidance appraisal--a critical interpretive synthesis.

    Science.gov (United States)

    Ako-Arrey, Denis E; Brouwers, Melissa C; Lavis, John N; Giacomini, Mita K

    2016-01-22

    Health systems guidance (HSG) are systematically developed statements that assist with decisions about options for addressing health systems challenges, including related changes in health systems arrangements. However, the development, appraisal, and reporting of HSG poses unique conceptual and methodological challenges related to the varied types of evidence that are relevant, the complexity of health systems, and the pre-eminence of contextual factors. To address this gap, we are conducting a program of research that aims to create a tool to support the appraisal of HSG and further enhance HSG development and reporting. The focus of this paper was to conduct a knowledge synthesis of the published and grey literatures to determine quality criteria (concepts) relevant for this process. We applied a critical interpretive synthesis (CIS) approach to knowledge synthesis that enabled an iterative, flexible, and dynamic analysis of diverse bodies of literature in order to generate a candidate list of concepts that will constitute the foundational components of the HSG tool. Using our review questions as compasses, we were able to guide the search strategy to look for papers based on their potential relevance to HSG appraisal, development, and reporting. The search strategy included various electronic databases and sources, subject-specific journals, conference abstracts, research reports, book chapters, unpublished data, dissertations, and policy documents. Screening the papers and data extraction was completed independently and in duplicate, and a narrative approach to data synthesis was executed. We identified 43 papers that met eligibility criteria. No existing review was found on this topic, and no HSG appraisal tool was identified. Over one third of the authors implicitly or explicitly identified the need for a high-quality tool aimed to systematically evaluate HSG and contribute to its development/reporting. We identified 30 concepts that may be relevant to the

  18. Social science to improve fuels management: a synthesis of research relevant to communicating with homeowners about fuels management

    Science.gov (United States)

    Martha C. Monroe; Lisa Pennisi; Sarah McCaffrey; Dennis Mileti

    2006-01-01

    A series of syntheses were commissioned by the USDA Forest Service to aid in fuels mitigation project planning. This synthesis focuses on how managers can most effectively communicate with the public about fuels management efforts. It summarizes what is known about the techniques of persuasive communication programs and provides an outline of the characteristics of...

  19. Modulation of protein synthesis by polyamines.

    Science.gov (United States)

    Igarashi, Kazuei; Kashiwagi, Keiko

    2015-03-01

    Polyamines are ubiquitous small basic molecules that play important roles in cell growth and viability. Since polyamines mainly exist as a polyamine-RNA complex, we looked for proteins whose synthesis is preferentially stimulated by polyamines at the level of translation, and thus far identified 17 proteins in Escherichia coli and 6 proteins in eukaryotes. The mechanisms of polyamine stimulation of synthesis of these proteins were investigated. In addition, the role of eIF5A, containing hypusine formed from spermidine, on protein synthesis is described. These results clearly indicate that polyamines and eIF5A contribute to cell growth and viability through modulation of protein synthesis. © 2015 International Union of Biochemistry and Molecular Biology.

  20. Synthesis of nano-sized amorphous boron powders through active dilution self-propagating high-temperature synthesis method

    Energy Technology Data Exchange (ETDEWEB)

    Wang, Jilin [The State Key Laboratory of Advanced Technology for Materials Synthesis and Processing, Wuhan University of Technology, Wuhan 430070 (China); Gu, Yunle [School of Material Science and Engineering, Wuhan Institute of Technology, Wuhan 430073 (China); Li, Zili [The State Key Laboratory of Advanced Technology for Materials Synthesis and Processing, Wuhan University of Technology, Wuhan 430070 (China); Wang, Weimin, E-mail: wangwm@hotmail.com [The State Key Laboratory of Advanced Technology for Materials Synthesis and Processing, Wuhan University of Technology, Wuhan 430070 (China); Fu, Zhengyi [The State Key Laboratory of Advanced Technology for Materials Synthesis and Processing, Wuhan University of Technology, Wuhan 430070 (China)

    2013-06-01

    Graphical abstract: Nano-sized amorphous boron powders were synthesized by active dilution self-propagating high-temperature synthesis (SHS) method. The effects of endothermic reaction rate, the possible chemical reaction mechanism and active dilution model for synthesis of the product were also discussed. Highlights: ► Nano-sized amorphous boron powders were synthesized by active dilution self-propagating high-temperature synthesis method. ► The morphology, particle size and purity of the samples could be effectively controlled via changing the endothermic rate. ► The diluter KBH{sub 4} played an important role in active dilution synthesis of amorphous nano-sized boron powders. ► The active dilution method could be further popularized and become a common approach to prepare various inorganic materials. - Abstract: Nano-sized amorphous boron powders were synthesized by active dilution self-propagating high-temperature synthesis (SHS) method at temperatures ranging from 700 °C to 850 °C in a SHS furnace using Mg, B{sub 2}O{sub 3} and KBH{sub 4} as raw materials. Samples were characterized by X-ray powder diffraction (XRD), Laser particle size analyzer, Fourier transform infrared spectra (FTIR), X-ray energy dispersive spectroscopy (EDX), scanning electron microscopy (SEM), transmission electron microscopy (TEM) and high-resolution transmission TEM (HRTEM). The boron powders demonstrated an average particle size of 50 nm with a purity of 95.64 wt.%. The diluter KBH{sub 4} played an important role in the active dilution synthesis of amorphous nano-sized boron powders. The effects of endothermic reaction rate, the possible chemical reaction mechanism and active dilution model for synthesis of the product were also discussed.

  1. Synthesis of nano-sized amorphous boron powders through active dilution self-propagating high-temperature synthesis method

    International Nuclear Information System (INIS)

    Wang, Jilin; Gu, Yunle; Li, Zili; Wang, Weimin; Fu, Zhengyi

    2013-01-01

    Graphical abstract: Nano-sized amorphous boron powders were synthesized by active dilution self-propagating high-temperature synthesis (SHS) method. The effects of endothermic reaction rate, the possible chemical reaction mechanism and active dilution model for synthesis of the product were also discussed. Highlights: ► Nano-sized amorphous boron powders were synthesized by active dilution self-propagating high-temperature synthesis method. ► The morphology, particle size and purity of the samples could be effectively controlled via changing the endothermic rate. ► The diluter KBH 4 played an important role in active dilution synthesis of amorphous nano-sized boron powders. ► The active dilution method could be further popularized and become a common approach to prepare various inorganic materials. - Abstract: Nano-sized amorphous boron powders were synthesized by active dilution self-propagating high-temperature synthesis (SHS) method at temperatures ranging from 700 °C to 850 °C in a SHS furnace using Mg, B 2 O 3 and KBH 4 as raw materials. Samples were characterized by X-ray powder diffraction (XRD), Laser particle size analyzer, Fourier transform infrared spectra (FTIR), X-ray energy dispersive spectroscopy (EDX), scanning electron microscopy (SEM), transmission electron microscopy (TEM) and high-resolution transmission TEM (HRTEM). The boron powders demonstrated an average particle size of 50 nm with a purity of 95.64 wt.%. The diluter KBH 4 played an important role in the active dilution synthesis of amorphous nano-sized boron powders. The effects of endothermic reaction rate, the possible chemical reaction mechanism and active dilution model for synthesis of the product were also discussed

  2. Synthesis of 2-phosphaadamantane derivatives

    International Nuclear Information System (INIS)

    Zemlyanoi, V.N.; Aleksandrov, A.M.; Kukhar', V.P.

    1986-01-01

    The authors describe the synthesis and properties of 2-phosphadamantane derivatives. For the synthesis of 2-phosphaadamantane derivatives they decided to use the methodology of the synthesis of 2-thiaadamantane. The IR spectra were determined on CHCl 3 solutions with a Specord 711R spectrometer, the PMR spectra were determined on Tesla BS-467 (60 MHz) and Bruker WP-200 (200 MHz) spectrometers, external standard hexamethyldisiloxane, the 31 P NMR spectra were determined on Tesla BS-487 C (30 MHz) and Bruker WP-200 (81 MHz) spectrometers, external standard 85% phosphoric acid, and the mass spectra were determined on an MS-1302 spectrometer

  3. Divergent solid-phase synthesis of natural product-inspired bipartite cyclodepsipeptides : total synthesis of seragamide A

    NARCIS (Netherlands)

    Arndt, H.-D.; Rizzo, S.; Nöcker, Chr.; Wackchaure, V.N.; Milroy, L.G.; Bieker, V.; Calderon, A.; Tran, T.T.N.; Brand, S.; Dehmelt, L.; Waldmann, H.

    2015-01-01

    Macrocyclic natural products (NPs) and analogues thereof often show high affinity, selectivity, and metabolic stability, and methods for the synthesis of NP-like macrocycle collections are of major current interest. We report an efficient solid-phase/cyclorelease method for the synthesis of a

  4. An Interactive Concert Program Based on Infrared Watermark and Audio Synthesis

    Science.gov (United States)

    Wang, Hsi-Chun; Lee, Wen-Pin Hope; Liang, Feng-Ju

    The objective of this research is to propose a video/audio system which allows the user to listen the typical music notes in the concert program under infrared detection. The system synthesizes audio with different pitches and tempi in accordance with the encoded data in a 2-D barcode embedded in the infrared watermark. The digital halftoning technique has been used to fabricate the infrared watermark composed of halftone dots by both amplitude modulation (AM) and frequency modulation (FM). The results show that this interactive system successfully recognizes the barcode and synthesizes audio under infrared detection of a concert program which is also valid for human observation of the contents. This interactive video/audio system has greatly expanded the capability of the printout paper to audio display and also has many potential value-added applications.

  5. Superconductivity Program for electric power systems: 1994 annual PEER review. Volume 1, Meeting proceedings

    International Nuclear Information System (INIS)

    1994-01-01

    This is Volume I of information presented at the Annual Peer Review of the Superconductivity Program For Electric Power Systems. Topics include: Wire development; powder synthesis; characterization of superconducting materials; electric power applications; magnetic refrigerators; and motor cooling issues. Individual reports were processed separately for the database

  6. A realist synthesis of the effect of social accountability interventions on health service providers' and policymakers' responsiveness.

    Science.gov (United States)

    Lodenstein, Elsbet; Dieleman, Marjolein; Gerretsen, Barend; Broerse, Jacqueline Ew

    2013-11-07

    Accountability has center stage in the current post-Millennium Development Goals (MDG) debate. One of the effective strategies for building equitable health systems and providing quality health services is the strengthening of citizen-driven or social accountability processes. The monitoring of actions and decisions of policymakers and providers by citizens is regarded as a right in itself but also as an alternative to weak administrative accountability mechanisms, in particular in settings with poor governance. The effects of social accountability interventions are often based on assumptions and are difficult to evaluate because of their complex nature and context sensitivity. This study aims to review and assess the available evidence for the effect of social accountability interventions on policymakers' and providers' responsiveness in countries with medium to low levels of governance capacity and quality. For policymakers and practitioners engaged in health system strengthening, social accountability initiatives and rights-based approaches to health, the findings of this review may help when reflecting on the assumptions and theories of change behind their policies and interventions. Little is known about social accountability interventions, their outcomes and the circumstances under which they produce outcomes for particular groups or issues. In this study, social accountability interventions are conceptualized as complex social interventions for which a realist synthesis is considered the most appropriate method of systematic review. The synthesis is based on a preliminary program theory of social accountability that will be tested through an iterative process of primary study searches, data extraction, analysis and synthesis. Published and non-published (grey) quantitative and qualitative studies in English, French and Spanish will be included. Quality and validity will be enhanced by continuous peer review and team reflection among the reviewers. The

  7. Nitrocyclopropanes: synthesis and properties

    Energy Technology Data Exchange (ETDEWEB)

    Averina, Elena B; Yashin, N V; Kuznetsova, Tamara S; Zefirov, Nikolai S [Department of Chemistry, M.V. Lomonosov Moscow State University, Moscow (Russian Federation)

    2009-10-31

    State-of-the-art data on the methods of synthesis, properties and transformations of nitro- and- dinitrocyclopropanes of different structure is generalized and described systematically. The attention is focused on stereoselective cyclopropanation methods, new approaches to the synthesis of natural products and their synthetic analogues with diversified biological activities, in particular, of aminocyclopropane acids based on nitrocyclopropanes, and the formation of structures of energetic compounds.

  8. Matrix-assisted peptide synthesis on nanoparticles.

    Science.gov (United States)

    Khandadash, Raz; Machtey, Victoria; Weiss, Aryeh; Byk, Gerardo

    2014-09-01

    We report a new method for multistep peptide synthesis on polymeric nanoparticles of differing sizes. Polymeric nanoparticles were functionalized via their temporary embedment into a magnetic inorganic matrix that allows multistep peptide synthesis. The matrix is removed at the end of the process for obtaining nanoparticles functionalized with peptides. The matrix-assisted synthesis on nanoparticles was proved by generating various biologically relevant peptides. Copyright © 2014 European Peptide Society and John Wiley & Sons, Ltd.

  9. Vitamin C–enriched gelatin supplementation before intermittent activity augments collagen synthesis12

    Science.gov (United States)

    Shaw, Gregory; Lee-Barthel, Ann; Ross, Megan LR; Wang, Bing; Baar, Keith

    2017-01-01

    Background: Musculoskeletal injuries are the most common complaint in active populations. More than 50% of all injuries in sports can be classified as sprains, strains, ruptures, or breaks of musculoskeletal tissues. Nutritional and/or exercise interventions that increase collagen synthesis and strengthen these tissues could have an important effect on injury rates. Objective: This study was designed to determine whether gelatin supplementation could increase collagen synthesis. Design: Eight healthy male subjects completed a randomized, double-blinded, crossover-design study in which they consumed either 5 or 15 g of vitamin C–enriched gelatin or a placebo control. After the initial drink, blood was taken every 30 min to determine amino acid content in the blood. A larger blood sample was taken before and 1 h after consumption of gelatin for treatment of engineered ligaments. One hour after the initial supplement, the subjects completed 6 min of rope-skipping to stimulate collagen synthesis. This pattern of supplementation was repeated 3 times/d with ≥6 h between exercise bouts for 3 d. Blood was drawn before and 4, 24, 48, and 72 h after the first exercise bout for determination of amino-terminal propeptide of collagen I content. Results: Supplementation with increasing amounts of gelatin increased circulating glycine, proline, hydroxyproline, and hydroxylysine, peaking 1 h after the supplement was given. Engineered ligaments treated for 6 d with serum from samples collected before or 1 h after subjects consumed a placebo or 5 or 15 g gelatin showed increased collagen content and improved mechanics. Subjects who took 15 g gelatin 1 h before exercise showed double the amino-terminal propeptide of collagen I in their blood, indicating increased collagen synthesis. Conclusion: These data suggest that adding gelatin to an intermittent exercise program improves collagen synthesis and could play a beneficial role in injury prevention and tissue repair. This trial

  10. Sustainable processes synthesis for renewable resources

    International Nuclear Information System (INIS)

    Halasz, L.; Povoden, G.; Narodoslawsky, M.

    2005-01-01

    Renewable resources pose special challenges to process synthesis. Due to decentral raw material generation, usually low transport densities and the perishable character of most renewable raw materials in combination with their time dependent availability, logistical questions as well as adaptation to regional agricultural structures are necessary. This calls for synthesis of structures not only of single processes but of the whole value chain attached to the utilisation of a certain resource. As most of the innovative technologies proposed to build on a renewable raw material base face stiff economic competition from fossil based processes, economic optimality of the value chain is crucial to their implementation. On top of this widening of the process definition for synthesis, many processes on the base of renewable resources apply technologies (like membrane separations, chromatographic purification steps, etc.) for which the heuristic knowledge is still slim. This reduces the choice of methods for process synthesis, mainly to methods based on combinatorial principles. The paper investigates applicability as well as impact on technology development of process synthesis for renewable raw material utilisation. It takes logistic considerations into account and applies process synthesis to the case study of the green biorefinery concept. The results show the great potential of process synthesis for technology development of renewable resource utilisation. Applied early in the development phase, it can point towards the most promising utilisation pathways, thus guiding the engineering work. On top of that, and even more important, it can help avoid costly development flops as it also clearly indicates 'blind alleys' that have to be avoided

  11. Cell-specific monitoring of protein synthesis in vivo.

    Directory of Open Access Journals (Sweden)

    Nikos Kourtis

    Full Text Available Analysis of general and specific protein synthesis provides important information, relevant to cellular physiology and function. However, existing methodologies, involving metabolic labelling by incorporation of radioactive amino acids into nascent polypeptides, cannot be applied to monitor protein synthesis in specific cells or tissues, in live specimens. We have developed a novel approach for monitoring protein synthesis in specific cells or tissues, in vivo. Fluorescent reporter proteins such as GFP are expressed in specific cells and tissues of interest or throughout animals using appropriate promoters. Protein synthesis rates are assessed by following fluorescence recovery after partial photobleaching of the fluorophore at targeted sites. We evaluate the method by examining protein synthesis rates in diverse cell types of live, wild type or mRNA translation-defective Caenorhabditis elegans animals. Because it is non-invasive, our approach allows monitoring of protein synthesis in single cells or tissues with intrinsically different protein synthesis rates. Furthermore, it can be readily implemented in other organisms or cell culture systems.

  12. Research program on regulatory safety research

    International Nuclear Information System (INIS)

    Mailaender, R.

    2010-02-01

    This paper elaborated for the Swiss Federal Office of Energy (SFOE) presents the synthesis report for 2009 made by the SFOE's program leader on the research program concerning regulatory nuclear safety research, as co-ordinated by the Swiss Nuclear Safety Inspectorate ENSI. Work carried out in various areas is reviewed, including that done on reactor safety, radiation protection and waste disposal as well as human aspects, organisation and safety culture. Work done concerning materials, pressure vessel integrity, transient analysis, the analysis of serious accidents in light-water reactors, fuel and material behaviour, melt cooling and concrete interaction is presented. OECD data bank topics are discussed. Transport and waste disposal research at the Mont Terri rock laboratory is looked at. Requirements placed on the personnel employed in nuclear power stations are examined and national and international co-operation is reviewed

  13. Sustainable Process Synthesis-Intensification

    DEFF Research Database (Denmark)

    Babi, Deenesh Kavi; Holtbruegge, Johannes; Lutze, Philip

    2014-01-01

    Sustainable process design can be achieved by performing process synthesis and process intensification together. This approach first defines a design target through a sustainability analysis and then finds design alternatives that match the target through process intensification. A systematic......, multi-stage framework for process synthesis- intensification that identifies more sustainable process designs has been developed. At stages 1-2, the working scale is at the level of unit operations, where a base case design is identified and analyzed with respect to sustainability metrics. At stages 3......, a phenomena-based process synthesis method is applied, where the phenomena involved in each tasks are identified, manipulated and recombined to generate new and/or existing unit operations configured into flowsheets that are more sustainable from those found in the previous levels. An overview of the key...

  14. Synthesis and in-vivo detection of boronated compounds for use in BNCT

    International Nuclear Information System (INIS)

    Kabalka, G.W.

    1990-04-01

    The primary objective of the DOE Program at the University of Tennessee Biomedical Imaging Center is the development of new technology to detect boron compounds in-vivo. The research focuses on the development of multinuclear magnetic resonance imaging (MRI) and spectroscopy (MRS) techniques for verifying and measuring BNCT agents in-vivo. A small but significant portion of the effort is directed toward the design of boron-containing neutron-capture-therapy agents. The UT -- DOE program is unique in that it has access to two state-of-the-art multinuclear magnetic resonance imaging units housed in the Biomedical Imaging Center at the University of Tennessee Medical Center at Knoxville. Included in this report are two sections describing research accomplishments in multinuclear magnetic resonance imaging and synthesis of potential BNCT agents

  15. Protein synthesis in x-irradiated rabbit lens

    International Nuclear Information System (INIS)

    Garadi, R.; Foltyn, A.R.; Giblin, F.J.; Reddy, V.N.

    1984-01-01

    The present study deals with the incorporation of 35 S methionine into lens crystallins as a function of time after x-irradiation. Crystallin synthesis is first affected approximately 4 weeks following x-irradiation. This coincides with the time period at which the ratio of the two cations in the lens is affected, as shown in earlier studies. A greater decrease in 35 S-methionine incorporation into crystallins is observed between 5-7 weeks following x-irradiation in good agreement with a cation imbalance at these time intervals. These studies also revealed for the first time that the change in cation distribution can affect not only crystallin synthesis, but also the synthesis of certain polypeptides of lens membranes. No alteration in protein synthesis could be detected in lens epithelium even after 7 weeks following irradiation. In addition to the effect of Na+ and K+ levels on protein synthesis, an impaired transport of amino acids into the x-rayed lens was also found to be a factor in the observed reduction in synthesis of the crystallin, cytoskeletal and membrane proteins of the fiber cells. It is concluded that Na+/K+ ratio as well as the availability of amino acids in the lens are important factors in protein synthesis of x-ray cataracts

  16. Leucine stimulation of skeletal muscle protein synthesis

    International Nuclear Information System (INIS)

    Layman, D.K.; Grogan, C.K.

    1986-01-01

    Previous work in this laboratory has demonstrated a stimulatory effect of leucine on skeletal muscle protein synthesis measured in vitro during catabolic conditions. Studies in other laboratories have consistently found this effect in diaphragm muscle, however, studies examining effects on nitrogen balance or with in vivo protein synthesis in skeletal muscle are equivocal. This experiment was designed to determine the potential of leucine to stimulate skeletal muscle protein synthesis in vivo. Male Sprague-Dawley rats weighing 200 g were fasted for 12 hrs, anesthetized, a jugular cannula inserted, and protein synthesis measured using a primed continuous infusion of 14 C-tyrosine. A plateau in specific activity was reached after 30 to 60 min and maintained for 3 hrs. The leucine dose consisted of a 240 umole priming dose followed by a continuous infusion of 160 umoles/hr. Leucine infusion stimulated protein synthesis in the soleus muscle (28%) and in the red (28%) and white portions (12%) of the gastrocnemius muscle compared with controls infused with only tyrosine. The increased rates of protein synthesis were due to increased incorporation of tyrosine into protein and to decreased specific activity of the free tyrosine pool. These data indicate that infusion of leucine has the potential to stimulate in vivo protein synthesis in skeletal muscles

  17. Research perspectives on the public and fire management: a synthesis of current social science on eight essential questions

    Science.gov (United States)

    Sarah M. McCaffrey; Christine S. Olsen

    2012-01-01

    As part of a Joint Fire Science Program project, a team of social scientists reviewed existing fire social science literature to develop a targeted synthesis of scientific knowledge on the following questions: 1. What is the public's understanding of fire's role in the ecosystem? 2. Who are trusted sources of information about fire? 3. What are the public...

  18. Multidisciplinary research program directed toward utilization of solar energy through bioconversion of renewable resources

    Energy Technology Data Exchange (ETDEWEB)

    1980-07-01

    Progress is reported in this multidisciplinary research program. Genetic selection of superior trees, physiological basis of vigor, tissue culture systems leading to cloning of diploid and haploid cell lines are discussed in the Program A report. The physiological basis of enhanced oleoresin formation in southern pines when treated with sublethal concentrations of the herbicide paraquat was investigated in Program B. In Program C, metabolic changes in the stems of slash pine, in vivo, after application with paraquat were determined. The use of phdoem and xylem tissue slices as a laboratory model for studying paraquat associated- and normal-terpene synthesis in pines is discussed. The biochemistry and physiology of methane formation from cellulose during anaerobic fermentation are discussed in the Program D report. (DMC)

  19. AutoBayes/CC: Combining Program Synthesis with Automatic Code Certification: System Description

    Science.gov (United States)

    Whalen, Michael; Schumann, Johann; Fischer, Bernd; Clancy, Daniel (Technical Monitor)

    2002-01-01

    Code certification is a lightweight approach to formally demonstrate software quality. It concentrates on aspects of software quality that can be defined and formalized via properties, e.g., operator safety or memory safety. Its basic idea is to require code producers to provide formal proofs that their code satisfies these quality properties. The proofs serve as certificates which can be checked independently, by the code consumer or by certification authorities, e.g., the FAA. It is the idea underlying such approaches as proof-carrying code [6]. Code certification can be viewed as a more practical version of traditional Hoare-style program verification. The properties to be verified are fairly simple and regular so that it is often possible to use an automated theorem prover to automatically discharge all emerging proof obligations. Usually, however, the programmer must still splice auxiliary annotations (e.g., loop invariants) into the program to facilitate the proofs. For complex properties or larger programs this quickly becomes the limiting factor for the applicability of current certification approaches.

  20. Time-efficient and convenient synthesis of [18F]altanserin for human PET imaging by a new work-up procedure

    International Nuclear Information System (INIS)

    Massarweh, G.; Kovacevic, M.; Rosa-Neto, P.; Evans, A.C.; Diksic, M.; Schirrmacher, R.

    2009-01-01

    [ 18 F]Altanserin, an important PET radioligand for the in vivo imaging of the 5-HT 2A receptor, was synthesized from its precursor nitro-altanserin in DMF or DMSO at high temperatures of 150 deg. C in an overall radiochemical yield (EOB) of 23-25% after 75 min. A new solid phase work-up procedure involving the acidification of the crude reaction mixture and a C18-SepPak-solid phase separation preceded the final HPLC purification. This led to a significantly reduced synthesis time as a result of a stable and early elution from the HPLC column using improved HPLC conditions (MeOH/THF/NaOAc 0.05 N pH 5: 27/18/55, flow: 5 mL/min, Symetry Prep 7 μm C18 (Waters)). The synthesis was performed semi-automatically in a modified GE TracerLab synthesis module using an in-house-developed program. The synthesized [ 18 F]altanserin was used in our ongoing human and animal PET imaging studies.

  1. Integrated methanol synthesis

    International Nuclear Information System (INIS)

    Jaeger, W.

    1982-01-01

    This invention concerns a plant for methanol manufacture from gasified coal, particularly using nuclear power. In order to reduce the cost of the hydrogen circuits, the methanol synthesis is integrated in the coal gasification plant. The coal used is gasified with hydration by means of hydrogen and the crude gas emerging, after cooling and separating the carbon dioxide and hydrogen sulphide, is mixed with the synthetic gas leaving the methane cracking furnace. This mixture is taken to the methanol synthesis and more than 90% is converted into methanol in one pass. The gas mixture remaning after condensation and separation of methanol is decomposed into three fractions in low temperature gas decomposition with a high proportion of unconverted carbon monoxide. The flow of methane is taken to the cracking furnace with steam, the flow of hydrogen is taken to the hydrating coal gasifier, and the flow of carbon monoxide is taken to the methanol synthesis. The heat required for cracking the methane can either be provided by a nuclear reactor or by the coke left after hydrating gasification. (orig./RB) [de

  2. Total Synthesis of Bryostatins. Development of Methodology for Atom-Economic and Stereoselective Synthesis of the C-ring Subunit

    Science.gov (United States)

    Trost, Barry M.; Frontier, Alison J.; Thiel, Oliver R.; Yang, Hanbiao; Dong, Guangbin

    2012-01-01

    Bryostatins, a family of structurally complicated macrolides, exhibit an exceptional range of biological activities. The limited availability and structural complexity of these molecules makes development of an efficient total synthesis particularly important. This article describes our initial efforts towards the total synthesis of bryostatins, in which chemoselective and atom-economical methods for stereoselective assembly of the C-ring subunit were developed. A Pd-catalyzed tandem alkyne-alkyne coupling/6-endo-dig cyclization sequence was explored and successfully pursued in the synthesis of a dihydropyran ring system. Elaboration of this methodology ultimately led to a concise synthesis of the C-ring subunit of bryostatins. PMID:21793057

  3. Synthesis of S-linked oligoxylans

    DEFF Research Database (Denmark)

    Bonora, Beatrice

    by several families of enzymes,collected under the name of Glycosyl Hydrolases (GHs). Among other methods,the use of enzyme inhibitors like thio-linked oligosaccharides has for a long timebeen a common tool to analyze and characterize these enzymes.In the present work the chemical synthesis of thio......-analogs of xylo- andarabinoxyloglycans is presented. Furthermore, the selection of a reliable method forthe incorporation of thiolinkages in the synthesis of oligoxylans is alsoinvestigated.Therefore, different strategies for assembling S-linked-disaccharides have beenapproached both involving 1-thioglycoside...... donors and thioacceptors. Advantagesand disadvantages concerning the different methods are described and evaluated inrelation to the synthesis of linear and branched oligoxylans....

  4. A novel synthesis of hemispherands

    NARCIS (Netherlands)

    Ostaszewski, Ryszard; Verboom, Willem; Reinhoudt, David

    1992-01-01

    A novel, flexible synthesis of hemispherands {2,5,8-trioxa[9](3,3″) m-terphenylophanes 5a-d} with different central aromatic groups is described. The key step comprises the introduction of the central aromatic ring in the last step of the synthesis via a Suzuki cross-coupling reaction using

  5. Low-Temperature Synthesis Routes to Intermetallic Superconductors

    Energy Technology Data Exchange (ETDEWEB)

    Schaak, Raymond E

    2008-01-08

    Over the past few years, our group has gained expertise at developing low-temperature solution-based synthetic pathways to complex nanoscale solids, with particular emphasis on nanocrystalline intermetallic compounds. Our synthetic capabilities are providing tools to reproducibly generate intermetallic nanostructures with simultaneous control over crystal structure, composition, and morphology. This DOE-funded project aims to expand these capabilities to intermetallic superconductors. This could represent an important addition to the tools that are available for the synthesis and processing of intermetallic superconductors, which traditionally utilize high-temperature, high-pressure, thin film, or gas-phase vacuum deposition methods. Our current knowledge of intermetallic superconductors suggests that significant enhancements could result from the inherent benefits of low-temperature solution synthesis, e.g. metastable phase formation, control over nanoscale morphology to facilitate size-dependent property studies, robust and inexpensive processability, low-temperature annealing and consolidation, and impurity incorporation (for doping, stoichiometry control, flux pinning, and improving the critical fields). Our focus is on understanding the superconducting properties as a function of synthetic route, crystal structure, crystallite size, and morphology, and developing the synthetic tools necessary to accomplish this. This research program can currently be divided into two classes of superconducting materials: intermetallics (transition metal/post transition metal) and metal carbides/borides. Both involve the development and exploitation of low-temperature synthesis routes followed by detailed characterization of structures and properties, with the goal of understanding how the synthetic pathways influence key superconducting properties of selected target materials. Because of the low-temperature methods used to synthesize them and the nanocrystalline morphologies

  6. Industrial scale gene synthesis.

    Science.gov (United States)

    Notka, Frank; Liss, Michael; Wagner, Ralf

    2011-01-01

    The most recent developments in the area of deep DNA sequencing and downstream quantitative and functional analysis are rapidly adding a new dimension to understanding biochemical pathways and metabolic interdependencies. These increasing insights pave the way to designing new strategies that address public needs, including environmental applications and therapeutic inventions, or novel cell factories for sustainable and reconcilable energy or chemicals sources. Adding yet another level is building upon nonnaturally occurring networks and pathways. Recent developments in synthetic biology have created economic and reliable options for designing and synthesizing genes, operons, and eventually complete genomes. Meanwhile, high-throughput design and synthesis of extremely comprehensive DNA sequences have evolved into an enabling technology already indispensable in various life science sectors today. Here, we describe the industrial perspective of modern gene synthesis and its relationship with synthetic biology. Gene synthesis contributed significantly to the emergence of synthetic biology by not only providing the genetic material in high quality and quantity but also enabling its assembly, according to engineering design principles, in a standardized format. Synthetic biology on the other hand, added the need for assembling complex circuits and large complexes, thus fostering the development of appropriate methods and expanding the scope of applications. Synthetic biology has also stimulated interdisciplinary collaboration as well as integration of the broader public by addressing socioeconomic, philosophical, ethical, political, and legal opportunities and concerns. The demand-driven technological achievements of gene synthesis and the implemented processes are exemplified by an industrial setting of large-scale gene synthesis, describing production from order to delivery. Copyright © 2011 Elsevier Inc. All rights reserved.

  7. Structure and synthesis of a new library of N,N-Bis-[1,2,4]triazol-1-ylmethyl-amino compounds

    Czech Academy of Sciences Publication Activity Database

    Al Bay, H.; Touzani, R.; Taleb, M.; Benchat, N.-e.; El Bali, B.; Dušek, Michal; Fejfarová, Karla; El Kadiri, S.

    2010-01-01

    Roč. 40, č. 18 (2010), s. 2767-2779 ISSN 0039-7911 Grant - others:AV ČR(CZ) AP0701 Program:Akademická prémie - Praemium Academiae Institutional research plan: CEZ:AV0Z10100521 Keywords : amines * crystal structure * chemical synthesis Subject RIV: BM - Solid Matter Physics ; Magnetism Impact factor: 0.937, year: 2010

  8. Prebiotic Amino Acid Thioester Synthesis: Thiol-Dependent Amino Acid Synthesis from Formose substrates (Formaldehyde and Glycolaldehyde) and Ammonia

    Science.gov (United States)

    Weber, Arthur L.

    1998-01-01

    Formaldehyde and glycolaldehyde (substrates of the formose autocatalytic cycle) were shown to react with ammonia yielding alanine and homoserine under mild aqueous conditions in the presence of thiol catalysts. Since similar reactions carried out without ammonia yielded alpha-hydroxy acid thioesters, the thiol-dependent synthesis of alanine and homoserine is presumed to occur via amino acid thioesters-intermediates capable of forming peptides. A pH 5.2 solution of 20 mM formaldehyde, 20 mM glycolaldehyde, 20 mM ammonium chloride, 23 mM 3-mercaptopropionic acid, and 23 mM acetic acid that reacted for 35 days at 40 C yielded (based on initial formaldehyde) 1.8% alanine and 0.08% homoserine. In the absence of thiol catalyst, the synthesis of alanine and homoserine was negligible. Alanine synthesis required both formaldehyde and glycolaldehyde, but homoserine synthesis required only glycolaldehyde. At 25 days the efficiency of alanine synthesis calculated from the ratio of alanine synthesized to formaldehyde reacted was 2.1%, and the yield (based on initial formaldehyde) of triose and tetrose intermediates involved in alanine and homoserine synthesis was 0.3 and 2.1%, respectively. Alanine synthesis was also seen in similar reactions containing only 10 mM each of aldehyde substrates, ammonia, and thiol. The prebiotic significance of these reactions that use the formose reaction to generate sugar intermediates that are converted to reactive amino acid thioesters is discussed.

  9. Synthesis of nanoparticles and nanomaterials biological approaches

    CERN Document Server

    Abdullaeva, Zhypargul

    2017-01-01

    This book covers biological synthesis approaches for nanomaterials and nanoparticles, including introductory material on their structure, phase compositions and morphology, nanomaterials chemical, physical, and biological properties. The chapters of this book describe in sequence the synthesis of various nanoparticles by microorganisms, bacteria, yeast, algae, and actynomycetes; plant and plant extract-based synthesis; and green synthesis methods. Each chapter provides basic knowledge on the synthesis of nanomaterials, defines fundamental terms, and aims to build a solid foundation of knowledge, followed by explanations, examples, visual photographs, schemes, tables and illustrations. Each chapter also contains control questions, problem drills, as well as case studies that clarify theory and the explanations given in the text. This book is ideal for researchers and advanced graduate students in materials engineering, biotechnology, and nanotechnology fields. As a reference book this work is also appropriate ...

  10. Leucine-Enriched Essential Amino Acids Augment Mixed Protein Synthesis, But Not Collagen Protein Synthesis, in Rat Skeletal Muscle after Downhill Running

    OpenAIRE

    Kato, Hiroyuki; Suzuki, Hiromi; Inoue, Yoshiko; Suzuki, Katsuya; Kobayashi, Hisamine

    2016-01-01

    Mixed and collagen protein synthesis is elevated for as many as 3 days following exercise. Immediately after exercise, enhanced amino acid availability increases synthesis of mixed muscle protein, but not muscle collagen protein. However, the potential for synergic effects of amino acid ingestion with exercise on both mixed and collagen protein synthesis remains unclear. We investigated muscle collagen protein synthesis in rats following post-exercise ingestion of leucine-enriched essential a...

  11. A Non-Precious Metal Promoting the Synthesis of 5-Hydroxymethylfurfural

    Directory of Open Access Journals (Sweden)

    Xinyuan Lu

    2017-11-01

    Full Text Available In this work, a new kind of catalyst was prepared for synthesis of 5-hydroxymethylfurfural. Copper ions were incorporated into manganese oxide octahedral molecular sieves (K-OMS-2. The catalysts Cu-K-OMS-2 were characterized by measuring FTIR spectra, scanning electron microscope images, X-ray diffraction patterns, and temperature-programmed desorption (TPD and temperature-programmed reduction (TPR profiles. Thermogravimetric analysis (TGA demonstrated that the stability of Cu-K-OMS-2 is almost the same as that of K-OMS-2. XRD patterns showed that introducing copper ions did not change the structure of K-OMS-2, but copper ions had an effect on the morphology of K-OMS-2 as illustrated by SEM images. TPD profiles demonstrated that both K-OMS-2 and Cu-K-OMS-2 possess basic and acidic sites, and Cu-K-OMS-2 has weak acidic sites. One-pot synthesis of 2,5-diformylfuran (DFF from fructose was investigated under the catalysis of Cu-K-OMS-2 together with a commercial catalyst Amberlyst 15. The effect of reaction time and temperature on the DFF yield was investigated, and reaction temperature had an effect on the DFF yield. The effect of atomic ratio of Cu to Mn of Cu-K-OMS-2 on the DFF yield was also investigated. The DFF yield was improved 34.7% by Cu-K-OMS-2 in comparison to K-OMS-2, indicating the promotion effect of copper on the DFF yield. Consecutive use of Cu-K-OMS-2 demonstrated that after 6 cycles, the loss of DFF yield was 6.3%, indicating a good reusability of Cu-K-OMS-2.

  12. Practical multipeptide synthesis: dedicated software for the definition of multiple, overlapping peptides covering polypeptide sequences.

    Science.gov (United States)

    Heegaard, P M; Holm, A; Hagerup, M

    1993-01-01

    A personal computer program for the conversion of linear amino acid sequences to multiple, small, overlapping peptide sequences has been developed. Peptide lengths and "jumps" (the distance between two consecutive overlapping peptides) are defined by the user. To facilitate the use of the program for parallel solid-phase chemical peptide syntheses for the synchronous production of multiple peptides, amino acids at each acylation step are laid out by the program in a convenient standard multi-well setup. Also, the total number of equivalents, as well as the derived amount in milligrams (depend-ending on user-defined equivalent weights and molar surplus), of each amino acid are given. The program facilitates the implementation of multipeptide synthesis, e.g., for the elucidation of polypeptide structure-function relationships, and greatly reduces the risk of introducing mistakes at the planning step. It is written in Pascal and runs on any DOS-based personal computer. No special graphic display is needed.

  13. First total synthesis of Boehmenan

    Indian Academy of Sciences (India)

    The first total synthesis of dilignan Boehmenan has been achieved. A biomimetic oxidative coupling of the ferulic acid methyl ester in the presence of silver oxide is the crucial step in the synthesis sequence, generating the dihydrobenzofuran skeleton. Hydroxyl group was protected with DHP and reducted with LiAlH4 to ...

  14. Control of DNA synthesis in inhibited and activated Agrostemma githago seeds

    Energy Technology Data Exchange (ETDEWEB)

    Hecker, M [Sektion Biologie, FG Algemeine Botanik und Pflanzenphysiologie, Universitaet Greifswald (German Democratic Republic)

    1975-01-01

    The relationships between DNA synthesis and germination capacity of Agrostemma seeds had been studied. Protein synthesis and RNA synthesis were activated at the very beginning of imbibition, whereas DNA synthesis started in the second part of the imbibition phase. Agrostemma seeds inhibited by higher temperature (30 degC), or aged seeds with a low germination capacity were characterized by a significantly reduced protein synthesis. DNA synthesis was also reduced. The inhibition of the protein synthesis of Agrostemma embryos fed with cycloheximide or actinomycin D caused a depression of DNA synthesis. The results indicated that the initiation of DNA synthesis of imbibing Agrostemma seeds depended on the synthesis of special proteins. Abscisic acid inhibited the growth as well as DNA synthesis of isolated Agrostemma embryos. Nitomycin inhibited germination and DNA synthesis to the same extent. Dormant seeds with an undiminished intensity of protein synthesis also showed a reduced incorporation of /sup 3/H-thymidine by DNA. It is suggested that DNA synthesis of imbibed seeds, which is a necessary prerequisite for the radicle protrusion, was involved in the mechanism of ripening of the Agrostemma seeds.

  15. Control of DNA synthesis in inhibited and activated Agrostemma githago seeds

    International Nuclear Information System (INIS)

    Hecker, M.

    1975-01-01

    The relationships between DNA synthesis and germination capacity of Agrostemma seeds had been studied. Protein synthesis and RNA synthesis were activated at the very beginning of imbibition, whereas DNA synthesis started in the second part of the imbibition phase. Agrostemma seeds inhibited by higher temperature (30 degC), or aged seeds with a low germination capacity were characterized by a significantly reduced protein synthesis. DNA synthesis was also reduced. The inhibition of the protein synthesis of Agrostemma embryos fed with cycloheximide or actinomycin D caused a depression of DNA synthesis. The results indicated that the initiation of DNA synthesis of imbibing Agrostemma seeds depended on the synthesis of special proteins. Abscisic acid inhibited the growth as well as DNA synthesis of isolated Agrostemma embryos. Nitomycin inhibited germination and DNA synthesis to the same extent. Dormant seeds with an undiminished intensity of protein synthesis also showed a reduced incorporation of 3 H-thymidine by DNA. It is suggested that DNA synthesis of imbibed seeds, which is a necessary prerequisite for the radicle protrusion, was involved in the mechanism of ripening of the Agrostemma seeds. (author)

  16. Synthesis of sulfadiazine and silver sulfadiazine in semi-micro scale, as an experimental practice in drug synthesis

    International Nuclear Information System (INIS)

    Borges, Aurea Donizete Lanchote; Del Ponte, Gino; Federman Neto, Alberto; Carvalho, Ivone

    2005-01-01

    The total synthesis of sulfadiazine and silver sulfadiazine from readily available starting materials was adapted to semi-micro laboratory scale and is proposed as an experiment in drug synthesis for undergraduate courses. (author)

  17. High-throughput synthesis equipment applied to polymer research

    NARCIS (Netherlands)

    Hoogenboom, R.; Schubert, U.S.

    2005-01-01

    To speed up synthetic polymer research, a workflow dedicated to automated polymer synthesis and characterization was developed. The workflow consists of several synthesis robots with online and offline analytical equipment. For screening of reaction parameters and for library synthesis, robots

  18. The modern synthesis, Ronald Fisher and creationism.

    Science.gov (United States)

    Leigh

    1999-12-01

    The 'modern evolutionary synthesis' convinced most biologists that natural selection was the only directive influence on adaptive evolution. Today, however, dissatisfaction with the synthesis is widespread, and creationists and antidarwinians are multiplying. The central problem with the synthesis is its failure to show (or to provide distinct signs) that natural selection of random mutations could account for observed levels of adaptation.

  19. Synthesis of radiopharmaceuticals containing short-lived radionuclides: Comprehensive progress report, March 1, 1986-February 28, 1989

    International Nuclear Information System (INIS)

    Kabalka, G.W.

    1988-06-01

    The primary objective of the DOE Nuclear Medicine Program at The University of Tennessee is the creation of new methods for intoducing short-lived isotopes into agents for use in PET and SPECT. A portion of our effort is directed toward the design and in vivo quantitation of boron-containing neutron therapy agents. The uniqueness of the program is its focus on the design of new chemistry (molecular architecture) and technology as opposed to the application of known reactions to the synthesis of specific radiopharmaceuticals. The following topics are outlined in this paper: new isotope incorporation reactions utilizing nitrogen 13, oxygen 15, and carbon 11; technetium-boron complexes; boron-neutron-capture

  20. Synthesis and Biological Evaluation of Glycosidase Inhibitors: gem-Difluoromethylenated Nojirimycin Analogues

    DEFF Research Database (Denmark)

    Bols, Mikael; Wang, Ruo-Wen; Qiu, Xiao-Long

    2006-01-01

    In our ongoing program aimed at the design, synthesis, and biological evaluation of novel gem-difluoromethylenated glycosidase inhibitors, gem-4,4-difluoromethylenated iminosugars (5-9) were synthesized. The biological evaluation of these synthetic iminosugars showed that the gem....... It is proposed that the unprotonated iminosugar is the species preferably bound by beta-glucosidase, due to the lower pK(a) value of iminosugar 6 than of 1 or 36, leaving iminosugars 1 and 36 mostly protonated at pH 5.0, while iminosugar 6 is not. Iminosugar 6 also displayed good and selective inhibition of beta...

  1. Sterol Synthesis in Diverse Bacteria.

    Science.gov (United States)

    Wei, Jeremy H; Yin, Xinchi; Welander, Paula V

    2016-01-01

    Sterols are essential components of eukaryotic cells whose biosynthesis and function has been studied extensively. Sterols are also recognized as the diagenetic precursors of steranes preserved in sedimentary rocks where they can function as geological proxies for eukaryotic organisms and/or aerobic metabolisms and environments. However, production of these lipids is not restricted to the eukaryotic domain as a few bacterial species also synthesize sterols. Phylogenomic studies have identified genes encoding homologs of sterol biosynthesis proteins in the genomes of several additional species, indicating that sterol production may be more widespread in the bacterial domain than previously thought. Although the occurrence of sterol synthesis genes in a genome indicates the potential for sterol production, it provides neither conclusive evidence of sterol synthesis nor information about the composition and abundance of basic and modified sterols that are actually being produced. Here, we coupled bioinformatics with lipid analyses to investigate the scope of bacterial sterol production. We identified oxidosqualene cyclase (Osc), which catalyzes the initial cyclization of oxidosqualene to the basic sterol structure, in 34 bacterial genomes from five phyla (Bacteroidetes, Cyanobacteria, Planctomycetes, Proteobacteria, and Verrucomicrobia) and in 176 metagenomes. Our data indicate that bacterial sterol synthesis likely occurs in diverse organisms and environments and also provides evidence that there are as yet uncultured groups of bacterial sterol producers. Phylogenetic analysis of bacterial and eukaryotic Osc sequences confirmed a complex evolutionary history of sterol synthesis in this domain. Finally, we characterized the lipids produced by Osc-containing bacteria and found that we could generally predict the ability to synthesize sterols. However, predicting the final modified sterol based on our current knowledge of sterol synthesis was difficult. Some bacteria

  2. Protein synthesis in the growing rat lung

    International Nuclear Information System (INIS)

    Kelley, J.; Chrin, L.

    1986-01-01

    Developmental control of protein synthesis in the postnatal growth of the lung has not been systematically studied. In male Fischer 344 rats, lung growth continues linearly as a function of body weight (from 75 to 450 g body weight). To study total protein synthesis in lungs of growing rats, we used the technique of constant intravenous infusion of tritiated leucine, an essential amino acid. Lungs of sacrificed animals were used to determine the leucine incorporation rate into newly synthesized protein. The specific radioactivity of the leucine associated with tRNA extracted from the same lungs served as an absolute index of the precursor leucine pool used for lung protein synthesis. On the basis of these measurements, we were able to calculate the fractional synthesis rate (the proportion of total protein destroyed and replaced each day) of pulmonary proteins for each rat. Under the conditions of isotope infusion, leucyl-tRNA very rapidly equilibrates with free leucine of the plasma and of the extracellular space of the lung. Infusions lasting 30 minutes or less yielded linear rates of protein synthesis without evidence of contamination of lung proteins by newly labeled intravascular albumin. The fractional synthesis rate is considerably higher in juvenile animals (55% per day) than in adult rats (20% per day). After approximately 12 weeks of age, the fractional synthesis rate remains extremely constant in spite of continued slow growth of the lung. It is apparent from these data that in both young and adult rats the bulk of total protein synthesis is devoted to rapidly turning over proteins and that less than 4 percent of newly made protein is committed to tissue growth

  3. Synthesis and structural characterization of lithium

    Indian Academy of Sciences (India)

    synthesis and characterization of two new iminophos- phonamine ligands ... structures. 2.3 General synthetic method for ligands (1 and 2) ... 2.3b General method for the Synthesis of ligands ...... studies are currently underway in our laboratory.

  4. Small Molecule Library Synthesis Using Segmented Flow

    Directory of Open Access Journals (Sweden)

    Christina M. Thompson

    2011-11-01

    Full Text Available Flow chemistry has gained considerable recognition as a simple, efficient, and safe technology for the synthesis of many types of organic and inorganic molecules ranging in scope from large complex natural products to silicon nanoparticles. In this paper we describe a method that adapts flow chemistry to the synthesis of libraries of compounds using a fluorous immiscible solvent as a spacer between reactions. The methodology was validated in the synthesis of two small heterocycle containing libraries. The reactions were performed on a 0.2 mmol scale, enabling tens of milligrams of material to be generated in a single 200 mL reaction plug. The methodology allowed library synthesis in half the time of conventional microwave synthesis while maintaining similar yields. The ability to perform multiple, potentially unrelated reactions in a single run is ideal for making small quantities of many different compounds quickly and efficiently.

  5. Chronic ethanol feeding modulates the synthesis of digestive enzymes

    International Nuclear Information System (INIS)

    Ponnappa, B.C.; Hoek, J.B.; Rubin, E.

    1987-01-01

    The effects of chronic ethanol feeding on pancreatic protein synthesis were investigated. Protein synthesis was assessed by studying the rate of incorporation of 3 H-leucine into TCA-precipitable proteins in isolated pancreatic acini from rats. Chronic ethanol ingestion increased the rate of pancreatic protein synthesis by 2-4 fold. The onset of the increase in protein synthesis was detectable two days after ethanol feeding, reached a maximum after 7 days and remained unchanged after 4 months on the ethanol-containing diet. The rate of synthesis of individual digestive enzymes was studied by SDS-PAGE on extracts obtained from purified zymogen granules. Ethanol feeding induced an increase in the rate of synthesis of most of the digestive enzymes; chymotrypsinogen, trypsinogen and an unidentified protein were increased to a greater extent than other digestive enzymes. By contrast, the synthesis of amylase was selectively decreased after ethanol feeding. These results suggest that chronic ethanol ingestion has specific effects on the rate of synthesis of individual digestive enzymes in the exocrine pancreas

  6. Compilation and synthesis for embedded reconfigurable systems an aspect-oriented approach

    CERN Document Server

    Diniz, Pedro; Coutinho, José; Petrov, Zlatko

    2013-01-01

    This book provides techniques to tackle the design challenges raised by the increasing diversity and complexity of emerging, heterogeneous architectures for embedded systems. It describes an approach based on techniques from software engineering called aspect-oriented programming, which allow designers to control today’s sophisticated design tool chains, while maintaining a single application source code.  Readers are introduced to the basic concepts of an aspect-oriented, domain specific language that enables control of a wide range of compilation and synthesis tools in the partitioning and mapping of an application to a heterogeneous (and possibly multi-core) target architecture.  Several examples are presented that illustrate the benefits of the approach developed for applications from avionics and digital signal processing. Using the aspect-oriented programming techniques presented in this book, developers can reuse extensive sections of their designs, while preserving the original application source-...

  7. Mental Health and Mental Disorder Recommendation Programs.

    Science.gov (United States)

    Ruchiwit, Manyat

    2017-12-01

    The characteristic differences among the Greater Mekong Subregion (GMS) countries in terms of trade and investment, society and cultural values, medical information and technology, and the living and working environment have become major health problems in terms of mental disorders. The purpose of this article is to identify the gaps in those aspects, to propose mental health and mental disorder recommendation programs, and to recommend policies for policy makers and research investors. A comparative analysis and literature review of existing policy, including overviews of previous research were used to generate a synthesis of the existing knowledge of the mental health and mental disorder recommendation programs. The review results recommend mental health and mental disorder programs for policy makers, research investors, and stakeholders in order to strengthen the directions for implementing these programs in the future. The healthcare provision in each country will not be limited only to its citizens; the healthcare markets and target groups are likely to expand to the neighboring countries in the context of changes in domestic and international factors, which have both positive and negative impacts according to the political, economic, and social situations of the influencing countries.

  8. Albumin synthesis in protein energy malnutrition

    Energy Technology Data Exchange (ETDEWEB)

    Duggan, C; Hardy, S; Kleinman, R E [Harvard Medical School, Boston, MA (United States); Lembcke, J [Instituto de Investigacion Nutricional, La Molina, Lima (Peru); Young, V E [Massachusetts Inst. of Technology (MIT), Cambridge, MA (United States). Lab. of Human Nutrition

    1994-12-31

    The dietary treatment of protein-energy malnutrition (PEM) has been designed on an empirical basis, with outcomes for successful management including body weight gain and resolution of apathy. We propose using the measurements of protein synthesis as a more objective measure of renourishment. We will therefore randomize a group of malnourished children (weigh-for-height Z score <-2.0) to receive either a standard (10% of calories as protein) or increased (15%) amount of dietary protein early in their recovery phase. We will calculate albumin synthesis rates via the flooding dose technique, using {sup 13}C-leucine and serial measurements of {sup 13}C-enrichment of albumin. Isotope infusions will be performed on days one and three, following a standard three hour fast. Since albumin synthesis is reduced under the influence of cytokines which mediate the inflammatory response, results will be stratified according to the presence or absence of clinically apparent infections. We hypothesize that the provision of added dietary protein will optimize albumin synthesis rates in PEM as well as attenuate the reduction in albumin synthesis seen in the presence of infections. (author). 20 refs.

  9. Instrument Modeling and Synthesis

    Science.gov (United States)

    Horner, Andrew B.; Beauchamp, James W.

    During the 1970s and 1980s, before synthesizers based on direct sampling of musical sounds became popular, replicating musical instruments using frequency modulation (FM) or wavetable synthesis was one of the “holy grails” of music synthesis. Synthesizers such as the Yamaha DX7 allowed users great flexibility in mixing and matching sounds, but were notoriously difficult to coerce into producing sounds like those of a given instrument. Instrument design wizards practiced the mysteries of FM instrument design.

  10. Design, Synthesis, and Applications of Carbon Nanohoops

    Science.gov (United States)

    2016-05-23

    rings via one electron reduction reactions was feasible. Therefore, the synthesis and spectroscopic investigations of these ring systems by reducing...Release; Distribution Unlimited UU UU UU UU 23-05-2016 15-Feb-2012 14-Feb-2016 Final Report: Design, Synthesis , and Applications of Carbon Nanohoops The...Office P.O. Box 12211 Research Triangle Park, NC 27709-2211 Caron Nanohoops, paracyclophanes, carbon nanotubes, organic synthesis REPORT

  11. Synthesis of a posterior indicator protein in normal embryos and double abdomens of Smittia sp. (Chironomidae, Diptera).

    Science.gov (United States)

    Jäckle, H; Kalthoff, K

    1980-01-01

    In embryos of the chironomid midge Smittia, synthesis of a posterior indicator protein designated PI1 (Mr approximately 50,000; pI approximately 5.5) forecasts development of an abdomen as opposed to head and thorax. The protein is synthesized several hours before germ anlage formation. In normal embryos at early blastoderm stages, synthesis of PI1 is restricted to posterior embryonic fragments but not to pole cells. In "double-abdomen" embryos, a mirror-image duplication of the abdomen is formed by cells that would otherwise develop into head and thorax. Embryos were programmed for double-abdomen development by UV irradiation of the anterior pole, and half of them were reprogrammed for normal development by subsequent exposure to visible light (photoreversal). Correspondingly, PI1 was synthesized in anterior fragments of UV-irradiated embryos but not after photoreversal. In a control experiment, UV irradiation of the posterior pole caused neither double-abdomen formation nor PI1 synthesis in anterior fragments. The identity of PI1 formed in anterior fragments of prospective double abdomens with the protein found in posterior fragments was revealed by two-dimensional gel electrophoresis and limited proteolysis. Suppression of PI1 synthesis in anterior fragments of normal embryos is ascribed to the activity of cytoplasmic ribonucleoprotein particles thought to act as anterior determinants. Images PMID:6935679

  12. Plasma-assisted synthesis of MoS2

    Science.gov (United States)

    Campbell, Philip M.; Perini, Christopher J.; Chiu, Johannes; Gupta, Atul; Ray, Hunter S.; Chen, Hang; Wenzel, Kevin; Snyder, Eric; Wagner, Brent K.; Ready, Jud; Vogel, Eric M.

    2018-03-01

    There has been significant interest in transition metal dichalcogenides (TMDs), including MoS2, in recent years due to their potential application in novel electronic and optical devices. While synthesis methods have been developed for large-area films of MoS2, many of these techniques require synthesis temperatures of 800 °C or higher. As a result of the thermal budget, direct synthesis requiring high temperatures is incompatible with many integrated circuit processes as well as flexible substrates. This work explores several methods of plasma-assisted synthesis of MoS2 as a way to lower the synthesis temperature. The first approach used is conversion of a naturally oxidized molybdenum thin film to MoS2 using H2S plasma. Conversion is demonstrated at temperatures as low as 400 °C, and the conversion is enabled by hydrogen radicals which reduce the oxidized molybdenum films. The second method is a vapor phase reaction incorporating thermally evaporated MoO3 exposed to a direct H2S plasma, similar to chemical vapor deposition (CVD) synthesis of MoS2. Synthesis at 400 °C results in formation of super-stoichiometric MoS2 in a beam-interrupted growth process. A final growth method relies on a cyclical process in which a small amount of Mo is sputtered onto the substrate and is subsequently sulfurized in a H2S plasma. Similar results could be realized using an atomic layer deposition (ALD) process to deposit the Mo film. Compared to high temperature synthesis methods, the lower temperature samples are lower quality, potentially due to poor crystallinity or higher defect density in the films. Temperature-dependent conductivity measurements are consistent with hopping conduction in the plasma-assisted synthetic MoS2, suggesting a high degree of disorder in the low-temperature films. Optimization of the plasma-assisted synthesis process for slower growth rate and better stoichiometry is expected to lead to high quality films at low growth temperature.

  13. Glucose Synthesis in a Protein-Based Artificial Photosynthesis System.

    Science.gov (United States)

    Lu, Hao; Yuan, Wenqiao; Zhou, Jack; Chong, Parkson Lee-Gau

    2015-09-01

    The objective of this study was to understand glucose synthesis of a protein-based artificial photosynthesis system affected by operating conditions, including the concentrations of reactants, reaction temperature, and illumination. Results from non-vesicle-based glyceraldehyde-3-phosphate (GAP) and glucose synthesis showed that the initial concentrations of ribulose-1,5-bisphosphate (RuBP) and adenosine triphosphate (ATP), lighting source, and temperature significantly affected glucose synthesis. Higher initial concentrations of RuBP and ATP significantly enhanced GAP synthesis, which was linearly correlated to glucose synthesis, confirming the proper functions of all catalyzing enzymes in the system. White fluorescent light inhibited artificial photosynthesis and reduced glucose synthesis by 79.2 % compared to in the dark. The reaction temperature of 40 °C was optimum, whereas lower or higher temperature reduced glucose synthesis. Glucose synthesis in the vesicle-based artificial photosynthesis system reconstituted with bacteriorhodopsin, F 0 F 1 ATP synthase, and polydimethylsiloxane-methyloxazoline-polydimethylsiloxane triblock copolymer was successfully demonstrated. This system efficiently utilized light-induced ATP to drive glucose synthesis, and 5.2 μg ml(-1) glucose was synthesized in 0.78-ml reaction buffer in 7 h. Light-dependent reactions were found to be the bottleneck of the studied artificial photosynthesis system.

  14. Convenient synthesis of deuterated aluminium hydrides

    Energy Technology Data Exchange (ETDEWEB)

    Pawelke, Roland H.; Felderhoff, Michael; Weidenthaler, Claudia [Max-Planck-Institut fuer Kohlenforschung, Kaiser-Wilhelm-Platz 1, 45470 Muelheim an der Ruhr (Germany); Schueth, Ferdi [Max-Planck-Institut fuer Kohlenforschung, Kaiser-Wilhelm-Platz 1, 45470 Muelheim an der Ruhr (Germany)], E-mail: schueth@mpi-muelheim.mpg.de

    2008-09-15

    We describe the ball-milling synthesis of alkali metal deuterides from commercial lithium aluminium deuteride. This reaction principle was exemplified by the mechanochemical synthesis of NaAlD{sub 4} and KAlD{sub 4}. NaAlD{sub 4} was prepared on the multi-gram scale by this procedure and purified by standard wet-chemical separation. Pure NaAlD{sub 4} was obtained and used for the synthesis of Ca(AlD{sub 4}){sub 2}. The formation of all products was verified by X-ray diffraction.

  15. Synthesis of high luminescent carbon nanoparticles

    Science.gov (United States)

    Gvozdyuk, Alina A.; Petrova, Polina S.; Goryacheva, Irina Y.; Sukhorukov, Gleb B.

    2017-03-01

    In this article we report an effective and simple method for synthesis of high luminescent carbon nanodots (CDs). In our work as a carbon source sodium dextran sulfate (DS) was used because it is harmless, its analogs are used in medicine as antithrombotic compounds and blood substitutes after hemorrhage. was used as a substrate We investigated the influence of temperature parameters of hydrothermal synthesis on the photoluminescence (PL) intensity and position of emission maxima. We discovered that the PL intensity can be tuned by changing of synthesis temperature and CD concentration.

  16. Ribulose 1,5-bisphosphate carboxylase synthesis during heat shock

    International Nuclear Information System (INIS)

    Vierling, E.; Key, J.L.

    1985-01-01

    Ribulose 1,5-bisphosphate carboxylase (RuBPCase) was chosen as a model protein to study how heat shock (HS) affects both chloroplast protein synthesis and the nuclear-chloroplast interaction in production of chloroplast proteins. Experiments were performed using highly chlorophyllous, soybean (Glycine max L. Merr. var Corsoy) cell suspension cultures active in chloroplast protein synthesis. Synthesis of RuBPCase large (L) and small (S) subunits was followed by in vivo labeling, and corresponding mRNA levels were examined by Northern and dot hybridization analyses. Results demonstrate that L and S synthesis declines with increasing HS temperatures (33-40 0 C) and reaches minimum levels (20-30% of control) at temperatures of maximum HS protein synthesis (39-40 0 C). Recovery of L and S synthesis following a 2-hour HS at 38 or 40 0 C was also studied. The changes in S synthesis during HS and recovery correlate with the steady state levels of S mRNA. In contrast, changes in L synthesis show little relationship to the corresponding mRNA levels; levels of L mRNA remain relatively unchanged by HS. The authors conclude that chloroplast protein synthesis shows no greater sensitivity to HS than is observed for cytoplasmic protein synthesis and that transport of proteins into the chloroplast (e.g.,S subunit) continues during HS. Furthermore, there is no apparent coordination of L and S subunit mNRA levels under the conditions examined

  17. Systematic network synthesis and design: Problem formulation, superstructure generation, data management and solution

    DEFF Research Database (Denmark)

    Quaglia, Alberto; Gargalo, Carina L.; Chairakwongsa, Siwanat

    2015-01-01

    when large problems are considered. In an earlier work, we proposed a computer-aided framework for synthesis and design of process networks. In this contribution, we expand the framework by including methods and tools developed to structure, automate and simplify the mathematical formulation......The developments obtained in recent years in the field of mathematical programming considerably reduced the computational time and resources needed to solve large and complex Mixed Integer Non Linear Programming (MINLP) problems. Nevertheless, the application of these methods in industrial practice...... is still limited by the complexity associated with the mathematical formulation of some problems. In particular, the tasks of design space definition and representation as superstructure, as well as the data collection, validation and handling may become too complex and cumbersome to execute, especially...

  18. HMM Adaptation for child speech synthesis

    CSIR Research Space (South Africa)

    Govender, Avashna

    2015-09-01

    Full Text Available Hidden Markov Model (HMM)-based synthesis in combination with speaker adaptation has proven to be an approach that is well-suited for child speech synthesis. This paper describes the development and evaluation of different HMM-based child speech...

  19. The CP molecule labyrinth: a paradigm of how endeavors in total synthesis lead to discoveries and inventions in organic synthesis.

    Science.gov (United States)

    Nicolaou, K C; Baran, Phil S

    2002-08-02

    Imagine an artist carving a sculpture from a marble slab and finding gold nuggets in the process. This thought is not a far-fetched description of the work of a synthetic chemist pursuing the total synthesis of a natural product. At the end of the day, he or she will be judged by the artistry of the final work and the weight of the gold discovered in the process. However, as colorful as this description of total synthesis may be, it does not entirely capture the essence of the endeavor, for there is much more to be told, especially with regard to the contrast of frustrating failures and exhilarating moments of discovery. To fully appreciate the often Herculean nature of the task and the rewards that accompany it, one must sense the details of the enterprise behind the scenes. A more vivid description of total synthesis as a struggle against a tough opponent is perhaps appropriate to dramatize these elements of the experience. In this article we describe one such endeavor of total synthesis which, in addition to reaching the target molecule, resulted in a wealth of new synthetic strategies and technologies for chemical synthesis. The total synthesis of the CP molecules is compared to Theseus' most celebrated athlos (Greek for exploit, accomplishment): the conquest of the dreaded Minotaur, which he accomplished through brilliance, skill, and bravery having traversed the famous labyrinth with the help of Ariadne. This story from Greek mythology comes alive in modern synthetic expeditions toward natural products as exemplified by the total synthesis of the CP molecules which serve as a paradigm for modern total synthesis endeavors, where the objectives are discovery and invention in the broader sense of organic synthesis.

  20. Radiation metagenesis and inhibition of DNA synthesis

    International Nuclear Information System (INIS)

    Dubinina, L.G.; Sergievskaya, S.P.; Kurashova, Z.I.; Dubinin, N.P.

    1983-01-01

    The study of modification of radiation mutagenesis and inhibition of the DNA synthesis by means of 1-β-D arabinofuranosylcytosine (ara-C) is carried out. It is shown that ara-C-acting on chromosomes in the G 1 phase and G 2 phase does not cause mutations in the C capillaris cells. The modification by means of ara-C radiation effect in the G 1 phase and G 2 phase correlates with duration and time of administering ara-C before and after irradiation. A new form of ara-C DNA synthesis inhibitor interaction with mutation processes has been found out. Protective effect of the DNA synthesis inhibitor (ara-C) from mutageneous radiation effect is stressed. Sensibilization of the radiation mutagenesis during cell treafment by the DNA synthesis inhibitor (ara-C) is shown. It is pointed out that emergence of sensibilization or protective effect, i. e. antimutagenesis phenomenon depends on conditions under which the synthesis inhibitor acted in G 1 and G 2 phases

  1. Recent Progress in Chemical and Chemoenzymatic Synthesis of Carbohydrates

    Science.gov (United States)

    Muthana, Saddam; Cao, Hongzhi; Chen, Xi

    2011-01-01

    Summary The important roles that carbohydrates play in biological processes and their potential application in diagnosis, therapeutics, and vaccine development have made them attractive synthetic targets. Despite ongoing challenges, tremendous progresses have been made in recent years for the synthesis of carbohydrates. The chemical glycosylation methods have become more sophisticated and the synthesis of oligosaccharides has become more predictable. Simplified one-pot glycosylation strategy and automated synthesis are increasingly used to obtain biologically important glycans. On the other hand, chemoenzymatic synthesis continues to be a powerful alternative for obtaining complex carbohydrates. This review highlights recent progress in chemical and chemoenzymatic synthesis of carbohydrates with a particular focus on the methods developed for the synthesis of oligosaccharides, polysaccharides, glycolipids, and glycosylated natural products. PMID:19833544

  2. Plasma synthesis of nanostructures for improved thermoelectric properties

    International Nuclear Information System (INIS)

    Petermann, Nils; Hecht, Christian; Schulz, Christof; Wiggers, Hartmut; Stein, Niklas; Schierning, Gabi; Theissmann, Ralf; Stoib, Benedikt; Brandt, Martin S

    2011-01-01

    The utilization of silicon-based materials for thermoelectrics is studied with respect to the synthesis and processing of doped silicon nanoparticles from gas phase plasma synthesis. It is found that plasma synthesis enables the formation of spherical, highly crystalline and soft-agglomerated materials. We discuss the requirements for the formation of dense sintered bodies, while keeping the crystallite size small. Small particles a few tens of nanometres and below that are easily achievable from plasma synthesis, and a weak surface oxidation, both lead to a pronounced sinter activity about 350 K below the temperature usually needed for the successful densification of silicon. The thermoelectric properties of our sintered materials are comparable to the best results found for nanocrystalline silicon prepared by methods other than plasma synthesis.

  3. The synthesis of [O-methyl-{sup 11}C]venlafaxine: a non-classical, fast-acting antidepressant

    Energy Technology Data Exchange (ETDEWEB)

    Gee, A.D.; Gjedde, A. [Aarhus Univ. Hospital, PET Center, Aarhus (Denmark); Smith, D.F. [Aarhus Univ. Psychiatric Hospital, Inst. for Biological Psychiatry, Risskov (Denmark)

    1997-01-01

    As part of our program to develop PET tracers for the 5-HT reuptake site, venlafaxine, a non-classical, fast-acting antidepressant, was selected as a candidate for labelling with {sup 11}C for in vivo evaluation. [O-methyl-{sup 11}C]venlafaxine was produced by the alkylation of O-desmethyl venlafaxine with [{sup 11}C]methyl iodide followed by HPLC purification and formulation. Radiochemically pure [O-methyl-{sup 11}C]venlafaxine was obtained in a 30 {+-} 5% decay corrected radiochemical yield and a specific activity > 50 GBq/{mu}mol(1.4 Ci/{mu}mol) at the end of synthesis. For a typical production starting with 46 GBq (1.3 Ci) [{sup 11}C]CO{sub 2}, 5.2 GBq (140 mCi) [O-methyl-{sup 11}C]venlafaxine was obtained as a sterile, formulated solution in a synthesis time of 30 min (counted from EOB). (Author).

  4. Synthesis algorithm of VLSI multipliers for ASIC

    Science.gov (United States)

    Chua, O. H.; Eldin, A. G.

    1993-01-01

    Multipliers are critical sub-blocks in ASIC design, especially for digital signal processing and communications applications. A flexible multiplier synthesis tool is developed which is capable of generating multiplier blocks for word size in the range of 4 to 256 bits. A comparison of existing multiplier algorithms is made in terms of speed, silicon area, and suitability for automated synthesis and verification of its VLSI implementation. The algorithm divides the range of supported word sizes into sub-ranges and provides each sub-range with a specific multiplier architecture for optimal speed and area. The algorithm of the synthesis tool and the multiplier architectures are presented. Circuit implementation and the automated synthesis methodology are discussed.

  5. Synthesis of allocolchicinoids: a 50 year journey

    International Nuclear Information System (INIS)

    Sitnikov, N S; Fedorov, A Yu

    2013-01-01

    Published data on the stereo- and enantioselective synthesis of allocolchicinoids, which are of interest as antitumour agents, are summarized. The stereochemistry of these compounds is described. Two key approaches to their preparation are considered, namely, the synthesis from natural colchicine and total synthesis from commercially available reagents. Various total syntheses of N-acetylcolchicinol are performed using biaryl oxidative and reductive coupling, cyclopropanation–ring expansion and Nicholas reaction. The synthetic routes to allocolchicine are based on Diels–Alder cycloaddition, combination of metathesis and Diels–Alder reaction and direct catalytic CH-arylation. Analogues of the colchicine site ligands incorporating heteroaromatic rings are briefly considered; their structural features and methods of synthesis are discussed. The bibliography includes 144 references.

  6. Low-temperature synthesis of silicon carbide powder using shungite

    International Nuclear Information System (INIS)

    Gubernat, A.; Pichor, W.; Lach, R.; Zientara, D.; Sitarz, M.; Springwald, M.

    2017-01-01

    The paper presents the results of investigation the novel and simple method of synthesis of silicon carbide. As raw material for synthesis was used shungite, natural mineral rich in carbon and silica. The synthesis of SiC is possible in relatively low temperature in range 1500–1600°C. It is worth emphasising that compared to the most popular method of SiC synthesis (Acheson method where the temperature of synthesis is about 2500°C) the proposed method is much more effective. The basic properties of products obtained from different form of shungite and in wide range of synthesis temperature were investigated. The process of silicon carbide formation was proposed and discussed. In the case of synthesis SiC from powder of raw materials the product is also in powder form and not requires any additional process (crushing, milling, etc.). Obtained products are pure and after grain classification may be used as abrasive and polishing powders. (Author)

  7. Low-temperature synthesis of silicon carbide powder using shungite

    Energy Technology Data Exchange (ETDEWEB)

    Gubernat, A.; Pichor, W.; Lach, R.; Zientara, D.; Sitarz, M.; Springwald, M.

    2017-07-01

    The paper presents the results of investigation the novel and simple method of synthesis of silicon carbide. As raw material for synthesis was used shungite, natural mineral rich in carbon and silica. The synthesis of SiC is possible in relatively low temperature in range 1500–1600°C. It is worth emphasising that compared to the most popular method of SiC synthesis (Acheson method where the temperature of synthesis is about 2500°C) the proposed method is much more effective. The basic properties of products obtained from different form of shungite and in wide range of synthesis temperature were investigated. The process of silicon carbide formation was proposed and discussed. In the case of synthesis SiC from powder of raw materials the product is also in powder form and not requires any additional process (crushing, milling, etc.). Obtained products are pure and after grain classification may be used as abrasive and polishing powders. (Author)

  8. Catalytic synthesis of enantiopure mixed diacylglycerols - synthesis of a major M. tuberculosis phospholipid and platelet activating factor

    NARCIS (Netherlands)

    Fodran, Peter; Minnaard, Adriaan J.

    2013-01-01

    An efficient catalytic one-pot synthesis of TBDMS-protected diacylglycerols has been developed, starting from enantiopure glycidol. Subsequent migration-free deprotection leads to stereo- and regiochemically pure diacylglycerols. This novel strategy has been applied to the synthesis of a major

  9. Lactobacillusassisted synthesis of titanium nanoparticles

    Directory of Open Access Journals (Sweden)

    Jha Anal

    2007-01-01

    Full Text Available AbstractAn eco-friendlylactobacillussp. (microbe assisted synthesis of titanium nanoparticles is reported. The synthesis is performed at room temperature. X-ray and transmission electron microscopy analyses are performed to ascertain the formation of Ti nanoparticles. Individual nanoparticles as well as a number of aggregates almost spherical in shape having a size of 40–60 nm are found.

  10. Albumin synthesis in protein energy malnutrition

    International Nuclear Information System (INIS)

    Duggan, C.; Hardy, S.; Kleinman, R.E.; Lembcke, J.; Young, V.E.

    1994-01-01

    The dietary treatment of protein-energy malnutrition (PEM) has been designed on an empirical basis, with outcomes for successful management including body weight gain and resolution of apathy. We propose using the measurements of protein synthesis as a more objective measure of renourishment. We will therefore randomize a group of malnourished children (weigh-for-height Z score 13 C-leucine and serial measurements of 13 C-enrichment of albumin. Isotope infusions will be performed on days one and three, following a standard three hour fast. Since albumin synthesis is reduced under the influence of cytokines which mediate the inflammatory response, results will be stratified according to the presence or absence of clinically apparent infections. We hypothesize that the provision of added dietary protein will optimize albumin synthesis rates in PEM as well as attenuate the reduction in albumin synthesis seen in the presence of infections. (author). 20 refs

  11. Studies towards a total synthesis of tagetitoxin

    OpenAIRE

    Mahoney, Brian

    2017-01-01

    Tagetitoxin was first isolated over thirty five years ago and a total synthesis has not been achieved to date. A vast amount of research has been carried out on the biological activity of tagetitoxin with hundreds of literature reports. However, very few papers have been published regarding the synthesis and within this thesis we will explore a number of synthetic pathways some towards tagetitoxin. The first chapter reviews previous developments regarding the total synthesis of...

  12. Fully automated synthesis of 11C-acetate as tumor PET tracer by simple modified solid-phase extraction purification

    International Nuclear Information System (INIS)

    Tang, Xiaolan; Tang, Ganghua; Nie, Dahong

    2013-01-01

    Introduction: Automated synthesis of 11 C-acetate ( 11 C-AC) as the most commonly used radioactive fatty acid tracer is performed by a simple, rapid, and modified solid-phase extraction (SPE) purification. Methods: Automated synthesis of 11 C-AC was implemented by carboxylation reaction of MeMgBr on a polyethylene Teflon loop ring with 11 C-CO 2 , followed by acidic hydrolysis with acid and SCX cartridge, and purification on SCX, AG11A8 and C18 SPE cartridges using a commercially available 11 C-tracer synthesizer. Quality control test and animals positron emission tomography (PET) imaging were also carried out. Results: A high and reproducible decay-uncorrected radiochemical yield of (41.0±4.6)% (n=10) was obtained from 11 C-CO 2 within the whole synthesis time about 8 min. The radiochemical purity of 11 C-AC was over 95% by high-performance liquid chromatography (HPLC) analysis. Quality control test and PET imaging showed that 11 C-AC injection produced by the simple SPE procedure was safe and efficient, and was in agreement with the current Chinese radiopharmaceutical quality control guidelines. Conclusion: The novel, simple, and rapid method is readily adapted to the fully automated synthesis of 11 C-AC on several existing commercial synthesis module. The method can be used routinely to produce 11 C-AC for preclinical and clinical studies with PET imaging. - Highlights: • A fully automated synthesis of 11 C-acetate by simple modified solid-phase extraction purification has been developed. • Typical non-decay-corrected yields were (41.0±4.6)% (n=10) • Radiochemical purity was determined by radio-HPLC analysis on a C18 column using the gradient program, instead of expensive organic acid column or anion column. • QC testing (RCP>99%)

  13. Computational Chemical Synthesis Analysis and Pathway Design

    Directory of Open Access Journals (Sweden)

    Fan Feng

    2018-06-01

    Full Text Available With the idea of retrosynthetic analysis, which was raised in the 1960s, chemical synthesis analysis and pathway design have been transformed from a complex problem to a regular process of structural simplification. This review aims to summarize the developments of computer-assisted synthetic analysis and design in recent years, and how machine-learning algorithms contributed to them. LHASA system started the pioneering work of designing semi-empirical reaction modes in computers, with its following rule-based and network-searching work not only expanding the databases, but also building new approaches to indicating reaction rules. Programs like ARChem Route Designer replaced hand-coded reaction modes with automatically-extracted rules, and programs like Chematica changed traditional designing into network searching. Afterward, with the help of machine learning, two-step models which combine reaction rules and statistical methods became the main stream. Recently, fully data-driven learning methods using deep neural networks which even do not require any prior knowledge, were applied into this field. Up to now, however, these methods still cannot replace experienced human organic chemists due to their relatively low accuracies. Future new algorithms with the aid of powerful computational hardware will make this topic promising and with good prospects.

  14. Protein synthesis controls phosphate homeostasis.

    Science.gov (United States)

    Pontes, Mauricio H; Groisman, Eduardo A

    2018-01-01

    Phosphorus is an essential element assimilated largely as orthophosphate (Pi). Cells respond to Pi starvation by importing Pi from their surroundings. We now report that impaired protein synthesis alone triggers a Pi starvation response even when Pi is plentiful in the extracellular milieu. In the bacterium Salmonella enterica serovar Typhimurium , this response entails phosphorylation of the regulatory protein PhoB and transcription of PhoB-dependent Pi transporter genes and is eliminated upon stimulation of adenosine triphosphate (ATP) hydrolysis. When protein synthesis is impaired due to low cytoplasmic magnesium (Mg 2+ ), Salmonella triggers the Pi starvation response because ribosomes are destabilized, which reduces ATP consumption and thus free cytoplasmic Pi. This response is transient because low cytoplasmic Mg 2+ promotes an uptake in Mg 2+ and a decrease in ATP levels, which stabilizes ribosomes, resulting in ATP consumption and Pi increase, thus ending the response. Notably, pharmacological inhibition of protein synthesis also elicited a Pi starvation response in the bacterium Escherichia coli and the yeast Saccharomyces cerevisiae Our findings identify a regulatory connection between protein synthesis and Pi homeostasis that is widespread in nature. © 2018 Pontes and Groisman; Published by Cold Spring Harbor Laboratory Press.

  15. Space synthesis: an application of synthesis method to two and three dimensional multigroup neutron diffusion equations; Synthese spatiale: une application de la methode de synthese aux equations de diffusion neutronique multigroupe a deux et trois dimensions

    Energy Technology Data Exchange (ETDEWEB)

    Nguyen-Ngoc, H [Commissariat a l' Energie Atomique, Saclay (France). Centre d' Etudes Nucleaires

    1969-07-01

    In order to reduce computing time, two and three-dimensional multigroup neutron diffusion equations in cylindrical, rectangular (X, Y), (X, Y, Z) and hexagonal geometries are solved by the method of synthesis using an appropriate variational principle (stationary principle). The basic idea is to reduce the number of independent variables by constructing two or three-dimensional solutions from solutions of fewer variables, hence the name 'synthesis method'. Whatever the geometry, we are led to solve a system of ordinary differential equations with matrix coefficients to which one can apply well-known numerical methods: CHEBYSHEV's polynomial method, Gaussian elimination. Numerical results furnished by synthesis programs written for the IBM 7094, the IBM 360-75 and the CDC 6600 computers, are confronted with those which are given by programs employing the classical finite difference method. [French] En vue de reduire le-temps de calcul, les equations de diffusion neutronique, multigroupe, a deux et trois dimensions d'espace dans les geometries cylindrique, rectangulaire (X, Y), (X, Y, Z) et hexagonale sont resolues par la methode de synthese utilisant un principe variationnel approprie (principe stationnaire). L'idee consiste a reduire le nombre de variables independantes par construction d'une solution bi ou tridimensionnelle au moyen de solutions dependant d'un nombre inferieur de variables, d'ou le nom de la methode. Dans tous les cas de geometrie, nous sommes conduits a resoudre un systeme d'equations differentielles a coefficients matriciels auquel peuvent s'appliquer les methodes numeriques courantes; methode polynomiale de TCHEBYCHEFF et methode d'elimination de GAUSS. Les resultats numeriques obtenus par nos codes de synthese programmes sur IBM 7094, IBM 360-75 et CDC 6600, sont confrontes avec ceux que fournissent les programmes adoptant la methode classique des differences finies. (auteur)

  16. Suppression of glycosaminoglycan synthesis by articular cartilage, but not of hyaluronic acid synthesis by synovium, after exposure to radiation

    International Nuclear Information System (INIS)

    Hugenberg, S.T.; Myers, S.L.; Brandt, K.D.

    1989-01-01

    We recently found that injection of 2 mCi of yttrium 90 (90Y; approximately 23,000 rads) into normal canine knees stimulated glycosaminoglycan (GAG) synthesis by femoral condylar cartilage. The present investigation was conducted to determine whether radiation affects cartilage metabolism directly. Rates of GAG synthesis and degradation in normal canine articular cartilage were studied following irradiation. Cultured synovium from the same knees was treated similarly, to determine the effects of irradiation on hyaluronic acid synthesis. Twenty-four hours after exposure to 1,000 rads, 10,000 rads, or 50,000 rads, 35S-GAG synthesis by the cartilage was 93%, 69%, and 37%, respectively, of that in control, nonirradiated cartilage. The effect was not rapidly reversible: 120 hours after exposure to 50,000 rads, GAG synthesis remained at only 28% of the control level. Autoradiography showed marked suppression of 35S uptake by chondrocytes after irradiation. Cartilage GAG degradation was also increased following irradiation: 4 hours and 8 hours after exposure to 50,000 rads, the cartilage GAG concentration was only 66% and 54%, respectively, of that at time 0, while corresponding values for control, nonirradiated cartilage were 90% and 87%. In contrast to its effects on cartilage GAG metabolism, radiation at these levels had no effect on synovial hyaluronic acid synthesis

  17. Suppression of glycosaminoglycan synthesis by articular cartilage, but not of hyaluronic acid synthesis by synovium, after exposure to radiation

    Energy Technology Data Exchange (ETDEWEB)

    Hugenberg, S.T.; Myers, S.L.; Brandt, K.D.

    1989-04-01

    We recently found that injection of 2 mCi of yttrium 90 (90Y; approximately 23,000 rads) into normal canine knees stimulated glycosaminoglycan (GAG) synthesis by femoral condylar cartilage. The present investigation was conducted to determine whether radiation affects cartilage metabolism directly. Rates of GAG synthesis and degradation in normal canine articular cartilage were studied following irradiation. Cultured synovium from the same knees was treated similarly, to determine the effects of irradiation on hyaluronic acid synthesis. Twenty-four hours after exposure to 1,000 rads, 10,000 rads, or 50,000 rads, 35S-GAG synthesis by the cartilage was 93%, 69%, and 37%, respectively, of that in control, nonirradiated cartilage. The effect was not rapidly reversible: 120 hours after exposure to 50,000 rads, GAG synthesis remained at only 28% of the control level. Autoradiography showed marked suppression of 35S uptake by chondrocytes after irradiation. Cartilage GAG degradation was also increased following irradiation: 4 hours and 8 hours after exposure to 50,000 rads, the cartilage GAG concentration was only 66% and 54%, respectively, of that at time 0, while corresponding values for control, nonirradiated cartilage were 90% and 87%. In contrast to its effects on cartilage GAG metabolism, radiation at these levels had no effect on synovial hyaluronic acid synthesis.

  18. Differential sensitivity to aphidicolin of replicative DNA synthesis and ultraviolet-induced unscheduled DNA synthesis in vivo in mammalian cells

    International Nuclear Information System (INIS)

    Seki, Shuji; Hosogi, Nobuo; Oda, Takuzo

    1984-01-01

    In vivo in mammalian cells, ultraviolet-induced unscheduled DNA synthesis was less sensitive to aphidicolin than was replicative DNA synthesis. Replicative DNA synthesis in HeLa, HEp-2, WI-38 VA-13 and CV-1 cells was inhibited more than 97 % by aphidicolin at 10 μg/ml, whereas aphidicolin inhibition of DNA synthesis in ultraviolet-irradiated cells varied between 30 % and 90 % depending on cell types and assay conditions. Aphidicolin inhibition of unscheduled DNA synthesis (UDS) in HeLa cells increased gradually with increasing aphidicolin concentration and reached approximately 90 % at 100 μg/ml aphidicolin. A significant fraction of UDS in ultraviolet-irradiated HEp-2 cells was resistant to aphidicolin even at 300 μg/ml. Considered along with related information reported previously, the present results suggest that both aphidicolin-sensitive and insensitive DNA polymerases, DNA polymerase α and a non-α DNA polymerase (possibly DNA polymerase β), are involved in in situ UDS in these ultraviolet-irradiated cells. Comparison of staphylococcal nuclease sensitivity between DNAs repaired in the presence and in the absence of aphidicolin in HEp-2 cells suggested that the involvement of DNA polymerase α in UDS favored DNA synthesis in the intranucleosomal region. (author)

  19. Mg2FeH6 Synthesis Efficiency Map

    Directory of Open Access Journals (Sweden)

    Katarzyna Witek

    2018-02-01

    Full Text Available The influences of the processing parameters on the Mg2FeH6 synthesis yield were studied. Mixtures of magnesium hydride (MgH2 and iron (Fe were mechanically milled in a planetary ball mill under argon for 0.5-, 1-, 2- and 3-h periods and subsequently sintered at temperatures from 300–500 ∘ C under hydrogen. The reaction yield, phase content and hydrogen storage properties of the received materials were investigated. The morphologies of the powders after synthesis were studied by SEM. The synthesis effectiveness map was presented. The obtained results prove that synthesis parameters, such as the milling time and synthesis temperature, greatly influence the reaction yield and material properties and show that extended mechanical milling may not be beneficial to the reaction efficiency.

  20. Solid-phase peptide synthesis

    DEFF Research Database (Denmark)

    Jensen, Knud Jørgen

    2013-01-01

    This chapter provides an introduction to and overview of peptide chemistry with a focus on solid-phase peptide synthesis. The background, the most common reagents, and some mechanisms are presented. This chapter also points to the different chapters and puts them into perspective.......This chapter provides an introduction to and overview of peptide chemistry with a focus on solid-phase peptide synthesis. The background, the most common reagents, and some mechanisms are presented. This chapter also points to the different chapters and puts them into perspective....

  1. Uncertainty analysis: an evaluation metric for synthesis science

    Science.gov (United States)

    Mark E. Harmon; Becky Fasth; Charles B. Halpern; James A. Lutz

    2015-01-01

    The methods for conducting reductionist ecological science are well known and widely used. In contrast, those used in the synthesis of ecological science (i.e., synthesis science) are still being developed, vary widely, and often lack the rigor of reductionist approaches. This is unfortunate because the synthesis of ecological parts into a greater whole is...

  2. The synthesis of nanostructured, phase pure catalysts by hydrodynamic cavitation

    Energy Technology Data Exchange (ETDEWEB)

    Moser, W.R.; Sunstrom, J.E.; Marshik-Geurts, B.J. [Worcester Polytechnic Institute, Worcester, MA (United States)

    1995-12-01

    A new process for the synthesis of advanced catalytic materials based on performing the synthesis under hydrodynamic cavitation conditions has been discovered. This continuous process for catalyst synthesis resulted in the formation of both supported and unsupported catalysts. The advantage of the process over classical methods of synthesis is that it permits the formation of a wide variety of nanostructured catalysts in exceptionally high phase purities. The synthesis of platinum and palladium catalysts supported on alumina and other supports resulted in high dispersions of the noble metals. The synthesis of alpha, beta- and gamma-bismuth molybdates resulted in catalysts having superior phase purities as compared to several other classical methods of synthesis. The beta-bismuth molybdate was synthesized directly onto Cabosil. These studies showed that the particle size of the active component could be varied from a few manometers to much larger grains. The process enabled the synthesis of other complex metal oxides like perovskites as pure phases. The process uses a commercially available Microfluidizer.

  3. Phase retrieval in near-field measurements by array synthesis

    DEFF Research Database (Denmark)

    Wu, Jian; Larsen, Flemming Holm

    1991-01-01

    The phase retrieval problem in near-field antenna measurements is formulated as an array synthesis problem. As a test case, a particular synthesis algorithm has been used to retrieve the phase of a linear array......The phase retrieval problem in near-field antenna measurements is formulated as an array synthesis problem. As a test case, a particular synthesis algorithm has been used to retrieve the phase of a linear array...

  4. Quinazoline derivatives: synthesis and bioactivities

    OpenAIRE

    Wang, Dan; Gao, Feng

    2013-01-01

    Owing to the significant biological activities, quinazoline derivatives have drawn more and more attention in the synthesis and bioactivities research. This review summarizes the recent advances in the synthesis and biological activities investigations of quinazoline derivatives. According to the main method the authors adopted in their research design, those synthetic methods were divided into five main classifications, including Aza-reaction, Microwave-assisted reaction, Metal-mediated reac...

  5. Fischer-Tropsch synthesis : catalysts and chemistry

    NARCIS (Netherlands)

    Loosdrecht, van de J.; Botes, F.G.; Ciobica, I.M.; Ferreira, A.C.; Gibson, P.; Moodley, D.J.; Saib, A.M.; Visagie, J.L.; Weststrate, C.J.; Niemantsverdriet, J.W.; Reedijk, J.; Poeppelmeier, K.

    2013-01-01

    The Fischer–Tropsch synthesis represents a time-tested and fully proven technology for the conversion of synthesis gas (CO + H2) into paraffins, olefins, and oxygenated hydrocarbons. Depending on the origin of the syngas, one speaks of gas-to-liquids, coal-to-liquids, biomass-to-liquids, or

  6. Synthesis of a jojoba bean disaccharide.

    Science.gov (United States)

    Kornienko, A; Marnera, G; d'Alarcao, M

    1998-08-01

    A synthesis of the disaccharide recently isolated from jojoba beans, 2-O-alpha-D-galactopyranosyl-D-chiro-inositol, has been achieved. The suitably protected chiro-inositol unit was prepared by an enantiospecific synthesis from L-xylose utilizing SmI2-mediated pinacol coupling as a key step.

  7. Conceptual problems with remote element synthesis

    Indian Academy of Sciences (India)

    The notion of remote element synthesis has recently been modified to explain the presence of nucleogenetic isotopic anomalies and decay products of short-lived nuclides by injection of a small amount of exotic nucleogenetic material. Even with this modification, remote element synthesis seems inconsistent with the ...

  8. Temporal aspects of DNA and RNA synthesis during human immunodeficiency virus infection: Evidence for differential gene expression

    International Nuclear Information System (INIS)

    Kim, Sunyoung; Baltimore, D.; Byrn, R.; Groopman, J.

    1989-01-01

    The kinetics of retroviral DNA and RNA synthesis are parameters vital to understanding viral growth, especially for human immunodeficiency virus (HIV), which encodes several of its own regulatory genes. The authors have established a single-cycle growth condition for HIV in H9 cells, a human CD4 + lymphocyte line. The full-length viral linear DNA is first detectable by 4 h postinfection. During a one-step growth of HIV, amounts of viral DNA gradually increase until 8 to 12 h postinfection and then decrease. The copy number of unintegrated viral DNA is not extraordinarily high even at its peak. Most strikingly, there is a temporal program of RNA accumulation: the earliest RNA is greatly enriched in the 2-kilobase subgenomic mRNA species, while the level of 9.2-kilobase RNA which is both genomic RNA and mRNA remains low until after 24 h of infection. Virus production begins at about 24 h postinfection. Thus, viral DNA synthesis is as rapid as for other retroviruses, but viral RNA synthesis involves temporal alteration in the species that accumulate, presumably as a consequence of viral regulatory genes

  9. Synthesis by plasma of halogenated poly anilines

    International Nuclear Information System (INIS)

    Enriquez, M.A.; Olayo, M.G.; Cruz, G.J.

    2002-01-01

    In this work polymerization by plasma of aniline with iodine and chlorine bonded chemically to the aniline ring were realized. The results of the synthesis and characterizations are compared with those ones obtained starting from the poly aniline synthesis (P An) doped with iodine, where the dopant was aggregated in the moment of the polymerization. The objective is to study the dopant behavior in the synthesis by plasma in function of the properties of these polymers. (Author)

  10. A concept for performance management for Federal science programs

    Science.gov (United States)

    Whalen, Kevin G.

    2017-11-06

    The demonstration of clear linkages between planning, funding, outcomes, and performance management has created unique challenges for U.S. Federal science programs. An approach is presented here that characterizes science program strategic objectives by one of five “activity types”: (1) knowledge discovery, (2) knowledge development and delivery, (3) science support, (4) inventory and monitoring, and (5) knowledge synthesis and assessment. The activity types relate to performance measurement tools for tracking outcomes of research funded under the objective. The result is a multi-time scale, integrated performance measure that tracks individual performance metrics synthetically while also measuring progress toward long-term outcomes. Tracking performance on individual metrics provides explicit linkages to root causes of potentially suboptimal performance and captures both internal and external program drivers, such as customer relations and science support for managers. Functionally connecting strategic planning objectives with performance measurement tools is a practical approach for publicly funded science agencies that links planning, outcomes, and performance management—an enterprise that has created unique challenges for public-sector research and development programs.

  11. Collagen synthesis in CBA mouse heart after total thoracic irradiation

    International Nuclear Information System (INIS)

    Murray, J.C.; Parkins, C.S.; Institute of Cancer Research, Sutton

    1988-01-01

    CBA mice were irradiated to the whole thorax with single doses of 240 kVp X-rays in the dose range 8-16 Gy. Collagen and total protein synthesis rates in the heart were measured at 2-monthly intervals using a radio-isotope incorporation techniques. Doses of 10 Gy or greater caused a slight increase in collagen synthesis, followed by significantly reduced collagen synthesis by 16 weeks or longer after treatment. The depression in synthesis appeared correspondingly earlier with increasing dose. Total protein synthesis in heart followed similar patterns although changes were not statistically significant, indicating that the changes reflected alterations to collagen synthesis specifally, and not protein synthesis in geneal. Total hydroxyproline measurements showed no significant changes in heart collagen at any time as a result of X-irradiation. 18 refs.; 7 figs

  12. SHORT-TERM MEMORY IS INDEPENDENT OF BRAIN PROTEIN SYNTHESIS

    Energy Technology Data Exchange (ETDEWEB)

    Davis, Hasker P.; Rosenzweig, Mark R.; Jones, Oliver W.

    1980-09-01

    Male Swiss albino CD-1 mice given a single injection of a cerebral protein synthesis inhibitor, anisomycin (ANI) (1 mg/animal), 20 min prior to single trial passive avoidance training demonstrated impaired retention at tests given 3 hr, 6 hr, 1 day, and 7 days after training. Retention was not significantly different from saline controls when tests were given 0.5 or 1.5 hr after training. Prolonging inhibition of brain protein synthesis by giving either 1 or 2 additional injections of ANI 2 or 2 and 4 hr after training did not prolong short-term retention performance. The temporal development of impaired retention in ANI treated mice could not be accounted for by drug dosage, duration of protein synthesis inhibition, or nonspecific sickness at test. In contrast to the suggestion that protein synthesis inhibition prolongs short-term memory (Quinton, 1978), the results of this experiment indicate that short-term memory is not prolonged by antibiotic drugs that inhibit cerebral protein synthesis. All evidence seems consistent with the hypothesis that short-term memory is protein synthesis independent and that the establishment of long-term memory depends upon protein synthesis during or shortly after training. Evidence for a role of protein synthesis in memory maintenance is discussed.

  13. Silver-palladium catalysts for the direct synthesis of hydrogen peroxide

    Science.gov (United States)

    Khan, Zainab; Dummer, Nicholas F.; Edwards, Jennifer K.

    2017-11-01

    A series of bimetallic silver-palladium catalysts supported on titania were prepared by wet impregnation and assessed for the direct synthesis of hydrogen peroxide, and its subsequent side reactions. The addition of silver to a palladium catalyst was found to significantly decrease hydrogen peroxide productivity and hydrogenation, but crucially increase the rate of decomposition. The decomposition product, which is predominantly hydroxyl radicals, can be used to decrease bacterial colonies. The interaction between silver and palladium was characterized using scanning electron microscopy, X-ray diffraction, X-ray photoelectron spectroscopy (XPS) and temperature programmed reduction (TPR). The results of the TPR and XPS indicated the formation of a silver-palladium alloy. The optimal 1% Ag-4% Pd/TiO2 bimetallic catalyst was able to produce approximately 200 ppm of H2O2 in 30 min. The findings demonstrate that AgPd/TiO2 catalysts are active for the synthesis of hydrogen peroxide and its subsequent decomposition to reactive oxygen species. The catalysts are promising for use in wastewater treatment as they combine the disinfectant properties of silver, hydrogen peroxide production and subsequent decomposition. This article is part of a discussion meeting issue 'Providing sustainable catalytic solutions for a rapidly changing world'.

  14. Synthesis of Siloxanes Directly from Amorphous Silica

    International Nuclear Information System (INIS)

    Myint Sandar Win

    2011-12-01

    A direct synthesis of oligomeric-siloxanes from amorphous silica has been achieved. The compound prepared was caedonal-siloxane. Cardonal is a mono hydroxyphenolic compound with a bulky group in the meta position. It was derived as a by-product from the renewable resources cashew nut shell liquid (CNSL). In the synthesis, one pot synthesis was carried out by using ethylene glycol (EG) as solvent. In the reaction ethylene glycol served as a primary precursor chelating ligand in the synthesised product. The one pot synthesis was enhanced by the strong base, triethylenetetramine (TETA) which served as the promoter catalyst. In the synthesis, optimal conditions were established on the basic of the yield percent of organo-siloxane compounds with respect to the variation of the weight fraction of TETA and to the variation of reaction time. Experimental runs were carried out at (ca 210 2c) which was nearly above the boiling point of the solvent. The substituted organo-silicon compounds obtained were characterized by FT- ir, Thermal analysis, XRD and SEM.

  15. GCIP water and energy budget synthesis (WEBS)

    Science.gov (United States)

    Roads, J.; Lawford, R.; Bainto, E.; Berbery, E.; Chen, S.; Fekete, B.; Gallo, K.; Grundstein, A.; Higgins, W.; Kanamitsu, M.; Krajewski, W.; Lakshmi, V.; Leathers, D.; Lettenmaier, D.; Luo, L.; Maurer, E.; Meyers, T.; Miller, D.; Mitchell, Ken; Mote, T.; Pinker, R.; Reichler, T.; Robinson, D.; Robock, A.; Smith, J.; Srinivasan, G.; Verdin, K.; Vinnikov, K.; Vonder, Haar T.; Vorosmarty, C.; Williams, S.; Yarosh, E.

    2003-01-01

    As part of the World Climate Research Program's (WCRPs) Global Energy and Water-Cycle Experiment (GEWEX) Continental-scale International Project (GCIP), a preliminary water and energy budget synthesis (WEBS) was developed for the period 1996-1999 fromthe "best available" observations and models. Besides this summary paper, a companion CD-ROM with more extensive discussion, figures, tables, and raw data is available to the interested researcher from the GEWEX project office, the GAPP project office, or the first author. An updated online version of the CD-ROM is also available at http://ecpc.ucsd.edu/gcip/webs.htm/. Observations cannot adequately characterize or "close" budgets since too many fundamental processes are missing. Models that properly represent the many complicated atmospheric and near-surface interactions are also required. This preliminary synthesis therefore included a representative global general circulation model, regional climate model, and a macroscale hydrologic model as well as a global reanalysis and a regional analysis. By the qualitative agreement among the models and available observations, it did appear that we now qualitatively understand water and energy budgets of the Mississippi River Basin. However, there is still much quantitative uncertainty. In that regard, there did appear to be a clear advantage to using a regional analysis over a global analysis or a regional simulation over a global simulation to describe the Mississippi River Basin water and energy budgets. There also appeared to be some advantage to using a macroscale hydrologic model for at least the surface water budgets. Copyright 2003 by the American Geophysical Union.

  16. The Total Synthesis of Cephalosporin C

    Indian Academy of Sciences (India)

    IAS Admin

    The Total Synthesis of Cephalosporin C. Edited by Setty Mallikarjuna Babu and Subramania Ranganathan. Keywords. Cephalosporin C. The Nobel Prize in Chemistry for 1965 has been awarded for contributions to the art of chemical synthesis. It gives me much pleasure to record here my gratification with the citation, ...

  17. Two-dimensional parallel array technology as a new approach to automated combinatorial solid-phase organic synthesis

    Science.gov (United States)

    Brennan; Biddison; Frauendorf; Schwarcz; Keen; Ecker; Davis; Tinder; Swayze

    1998-01-01

    An automated, 96-well parallel array synthesizer for solid-phase organic synthesis has been designed and constructed. The instrument employs a unique reagent array delivery format, in which each reagent utilized has a dedicated plumbing system. An inert atmosphere is maintained during all phases of a synthesis, and temperature can be controlled via a thermal transfer plate which holds the injection molded reaction block. The reaction plate assembly slides in the X-axis direction, while eight nozzle blocks holding the reagent lines slide in the Y-axis direction, allowing for the extremely rapid delivery of any of 64 reagents to 96 wells. In addition, there are six banks of fixed nozzle blocks, which deliver the same reagent or solvent to eight wells at once, for a total of 72 possible reagents. The instrument is controlled by software which allows the straightforward programming of the synthesis of a larger number of compounds. This is accomplished by supplying a general synthetic procedure in the form of a command file, which calls upon certain reagents to be added to specific wells via lookup in a sequence file. The bottle position, flow rate, and concentration of each reagent is stored in a separate reagent table file. To demonstrate the utility of the parallel array synthesizer, a small combinatorial library of hydroxamic acids was prepared in high throughput mode for biological screening. Approximately 1300 compounds were prepared on a 10 μmole scale (3-5 mg) in a few weeks. The resulting crude compounds were generally >80% pure, and were utilized directly for high throughput screening in antibacterial assays. Several active wells were found, and the activity was verified by solution-phase synthesis of analytically pure material, indicating that the system described herein is an efficient means for the parallel synthesis of compounds for lead discovery. Copyright 1998 John Wiley & Sons, Inc.

  18. μ-synthesis for the coupled mass benchmark problem

    DEFF Research Database (Denmark)

    Niemann, Hans Henrik; Stoustrup, J.; Tøffner-Clausen, S.

    1997-01-01

    A robust controller design for the coupled mass benchmark problem is presented in this paper. The applied design method is based on a modified D-K iteration, i.e. μ-synthesis which take care of mixed real and complex perturbations sets. This μ-synthesis method for mixed perturbation sets is a str......A robust controller design for the coupled mass benchmark problem is presented in this paper. The applied design method is based on a modified D-K iteration, i.e. μ-synthesis which take care of mixed real and complex perturbations sets. This μ-synthesis method for mixed perturbation sets...

  19. [Collaborative program of research in engineering sciences]: Progress report, January 1, 1988--December 31, 1988

    International Nuclear Information System (INIS)

    1988-01-01

    Research programs in the following areas are briefly described: High Temperatures Gas-Particle Reactions, heat flow and mass transfer in plasma systems; Multivariable Control of Gas Metal Arc Welding; Metal Transfer in Gas Metal Arc Welding; In-Process Control of Residual Stresses and Distortion in Automatic Welding; Synthesis of Heat and Work Integration Systems for Chemical Process Plants; Parity Simulation of Dynamic Processes; Fracture Mechanics; Fracture in Pressure Vessels Alloys; and Stress and Fracture Analysis of Particles in Crushing Beds. Publications resulting from each program are listed

  20. Toleration, Synthesis or Replacement?

    DEFF Research Database (Denmark)

    Holtermann, Jakob v. H.; Madsen, Mikael Rask

    2016-01-01

    , in order to answer is not yet another partisan suggestion, but rather an attempt at making intelligible both the oppositions and the possibilities of synthesis between normative and empirical approaches to law. Based on our assessment and rational reconstruction of current arguments and positions, we...... therefore outline a taxonomy consisting of the following three basic, ideal-types in terms of the epistemological understanding of the interface of law and empirical studies: toleration, synthesis and replacement. This tripartite model proves useful with a view to teasing out and better articulating...

  1. EPRI program in water reactor safety

    International Nuclear Information System (INIS)

    Loewenstein, W.B.; Gelhaus, F.; Gopalakrishnan, A.

    1975-01-01

    The basis for EPRI's water reactor safety program is twofold. First is compilation and development of fundamental background data necessary for quantified light-water reactor (LWR) safety assurance appraisals. Second is development of realistic and experimentally bench-marked analytical procedures. The results are expected either to confirm the safety margins in current operating parameters, and to identify overly conservative controls, or, in some cases, to provide a basis for improvements to further minimize uncertainties in expected performance. Achievement of these objectives requires the synthesis of related current and projected experimental-analytical projects toward establishment of an experimentally-based analysis for the assurance of safety for LWRs

  2. Improved synthesis of (S)-N-Boc-5-oxaproline for protein synthesis with the α-ketoacid-hydroxylamine (KAHA) ligation.

    Science.gov (United States)

    Murar, Claudia E; Harmand, Thibault J; Bode, Jeffrey W

    2017-09-15

    We describe a new route for the synthesis of (S)-N-Boc-5-oxaproline. This building block is a key element for the chemical synthesis of proteins with the α-ketoacid-hydroxylamine (KAHA) ligation. The new synthetic pathway to the enantiopure oxaproline is based on a chiral amine mediated enantioselective conjugate addition of a hydroxylamine to trans-4-oxo-2-butenoate. This route is practical, scalable and economical and provides decagram amounts of material for protein synthesis and conversion to other protected forms of (S)-oxaproline. Copyright © 2017 Elsevier Ltd. All rights reserved.

  3. Design, Synthesis and Biological Activity of Novel Reversible Peptidyl FVIIa Inhibitors Rh-Catalyzed Enantioselective Synthesis of Diaryl Amines

    DEFF Research Database (Denmark)

    Storgaard, Morten

    functional group tolerance. Unfortunately, these -aryl tetramic acids were too unreactive and ring opening toward the synthesis of the building block did not succeed. However, -aryl tetramic acids are still interesting compounds due to their potential biological activity. The building block 3.15 (P1......-catalyzed enantioselective synthesis of diaryl amines, which is an important class of compounds (Chapter 4). For example it is found in the third generation anti-histaminic agent levocetirizine. Development of efficient synthetic routes is therefore of considerably interest. The rhodium-catalyzed enantioselective synthesis...

  4. “Best fit” framework synthesis: refining the method

    Science.gov (United States)

    2013-01-01

    Background Following publication of the first worked example of the “best fit” method of evidence synthesis for the systematic review of qualitative evidence in this journal, the originators of the method identified a need to specify more fully some aspects of this particular derivative of framework synthesis. Methods and Results We therefore present a second such worked example in which all techniques are defined and explained, and their appropriateness is assessed. Specified features of the method include the development of new techniques to identify theories in a systematic manner; the creation of an a priori framework for the synthesis; and the “testing” of the synthesis. An innovative combination of existing methods of quality assessment, analysis and synthesis is used to complete the process. This second worked example was a qualitative evidence synthesis of employees’ views of workplace smoking cessation interventions, in which the “best fit” method was found to be practical and fit for purpose. Conclusions The method is suited to producing context-specific conceptual models for describing or explaining the decision-making and health behaviours of patients and other groups. It offers a pragmatic means of conducting rapid qualitative evidence synthesis and generating programme theories relating to intervention effectiveness, which might be of relevance both to researchers and policy-makers. PMID:23497061

  5. The extended evolutionary synthesis: its structure, assumptions and predictions

    Science.gov (United States)

    Laland, Kevin N.; Uller, Tobias; Feldman, Marcus W.; Sterelny, Kim; Müller, Gerd B.; Moczek, Armin; Jablonka, Eva; Odling-Smee, John

    2015-01-01

    Scientific activities take place within the structured sets of ideas and assumptions that define a field and its practices. The conceptual framework of evolutionary biology emerged with the Modern Synthesis in the early twentieth century and has since expanded into a highly successful research program to explore the processes of diversification and adaptation. Nonetheless, the ability of that framework satisfactorily to accommodate the rapid advances in developmental biology, genomics and ecology has been questioned. We review some of these arguments, focusing on literatures (evo-devo, developmental plasticity, inclusive inheritance and niche construction) whose implications for evolution can be interpreted in two ways—one that preserves the internal structure of contemporary evolutionary theory and one that points towards an alternative conceptual framework. The latter, which we label the ‘extended evolutionary synthesis' (EES), retains the fundaments of evolutionary theory, but differs in its emphasis on the role of constructive processes in development and evolution, and reciprocal portrayals of causation. In the EES, developmental processes, operating through developmental bias, inclusive inheritance and niche construction, share responsibility for the direction and rate of evolution, the origin of character variation and organism–environment complementarity. We spell out the structure, core assumptions and novel predictions of the EES, and show how it can be deployed to stimulate and advance research in those fields that study or use evolutionary biology. PMID:26246559

  6. Comparison of Analysis Results Between 2D/1D Synthesis and RAPTOR-M3G in the Korea Standard Nuclear Plant (KSNP

    Directory of Open Access Journals (Sweden)

    Lim Mi Joung

    2016-01-01

    Full Text Available The 2D/1D synthesis methodology has been used to calculate the fast neutron (E > 1.0 MeV exposure to the beltline region of the reactor pressure vessel. This method uses the DORT 3.1 discrete ordinates code and the BUGLE-96 cross-section library based on ENDF/B-VI. RAPTOR-M3G (RApid Parallel Transport Of Radiation-Multiple 3D Geometries which performs full 3D calculations was developed and is based on domain decomposition algorithms, where the spatial and angular domains are allocated and processed on multi-processor computer architecture. As compared to traditional single-processor applications, this approach reduces the computational load as well as the memory requirement per processor. Both methods are applied to surveillance test results for the Korea Standard Nuclear Plant (KSNP-OPR (Optimized Power Reactor 1000 MW. The objective of this paper is to compare the results of the KSNP surveillance program between 2D/1D synthesis and RAPTOR-M3G. Each operating KSNP has a reactor vessel surveillance program consisting of six surveillance capsules located between the core and the reactor vessel in the downcomer region near the reactor vessel wall. In addition to the In-Vessel surveillance program, an Ex-Vessel Neutron Dosimetry (EVND program has been implemented. In order to estimate surveillance test results, cycle-specific forward transport calculations were performed by 2D/1D synthesis and by RAPTOR-M3G. The ratio between measured and calculated (M/C reaction rates will be discussed. The current plan is to install an EVND system in all of the Korea PWRs including the new reactor type, APR (Advanced Power Reactor 1400 MW. This work will play an important role in establishing a KSNP-specific database of surveillance test results and will employ RAPTOR-M3G for surveillance dosimetry location as well as positions in the KSNP reactor vessel.

  7. Total synthesis of (±)-antroquinonol d.

    Science.gov (United States)

    Sulake, Rohidas S; Jiang, Yan-Feng; Lin, Hsiao-Han; Chen, Chinpiao

    2014-11-21

    Total synthesis of (±)-antroquinonol D, which is isolated from very expensive and rarely found Antrodia camphorata and which has potential anticancer properties, was achieved from 4-methoxyphenol. In addition, a Michael addition to dimethoxy cyclohexadienones was studied. The main step involved chelation and substrate-controlled diastereoselective reduction of cyclohexenone and lactonization. Lactone synthesis facilitated the diastereoselective reduction of ketone, which help control the desired stereochemistry at the crucial stereogenic center in the natural product. Other key reactions in the synthesis involved a Michael addition of dimethyl malonate on cyclohexadienone, dihydroxylation, and Wittig olefination. A sesquiterpene side chain was synthesized through coupling with geranyl phenyl sulfide and Bouveault-Blanc reduction.

  8. Diamond Synthesis Employing Nanoparticle Seeds

    Science.gov (United States)

    Uppireddi, Kishore (Inventor); Morell, Gerardo (Inventor); Weiner, Brad R. (Inventor)

    2014-01-01

    Iron nanoparticles were employed to induce the synthesis of diamond on molybdenum, silicon, and quartz substrates. Diamond films were grown using conventional conditions for diamond synthesis by hot filament chemical vapor deposition, except that dispersed iron oxide nanoparticles replaced the seeding. This approach to diamond induction can be combined with dip pen nanolithography for the selective deposition of diamond and diamond patterning while avoiding surface damage associated to diamond-seeding methods.

  9. Synthesis of Directional Sources Using Wave Field Synthesis, Possibilities, and Limitations

    Directory of Open Access Journals (Sweden)

    Corteel E

    2007-01-01

    Full Text Available The synthesis of directional sources using wave field synthesis is described. The proposed formulation relies on an ensemble of elementary directivity functions based on a subset of spherical harmonics. These can be combined to create and manipulate directivity characteristics of the synthesized virtual sources. The WFS formulation introduces artifacts in the synthesized sound field for both ideal and real loudspeakers. These artifacts can be partly compensated for using dedicated equalization techniques. A multichannel equalization technique is shown to provide accurate results thus enabling for the manipulation of directional sources with limited reconstruction artifacts. Applications of directional sources to the control of the direct sound field and the interaction with the listening room are discussed.

  10. Generation of Efficient High-Level Hardware Code from Dataflow Programs

    OpenAIRE

    Siret , Nicolas; Wipliez , Matthieu; Nezan , Jean François; Palumbo , Francesca

    2012-01-01

    High-level synthesis (HLS) aims at reducing the time-to-market by providing an automated design process that interprets and compiles high-level abstraction programs into hardware. However, HLS tools still face limitations regarding the performance of the generated code, due to the difficulties of compiling input imperative languages into efficient hardware code. Moreover the hardware code generated by the HLS tools is usually target-dependant and at a low level of abstraction (i.e. gate-level...

  11. Large-Scale Seismic Test Program at Hualien, Taiwan

    International Nuclear Information System (INIS)

    Tang, H.T.; Graves, H.L.; Yeh, Y.S.

    1991-01-01

    The Large-Scale Seismic Test (LSST) Program at Hualien, Taiwan, is a follow-on to the soil-structure interaction (SSI) experiments at Lotung, Taiwan. The planned SSI studies will be performed at a stiff soil site in Hualien, Taiwan, that historically has had slightly more destructive earthquakes in the past than Lotung. The objectives of the LSST project is as follows: To obtain earthquake-induced SSI data at a stiff soil site having similar prototypical nuclear power plant soil conditions. To confirm the findings and methodologies validated against the Lotung soft soil SSI data for prototypical plant condition applications. To further validate the technical basis of realistic SSI analysis approaches. To further support the resolution of USI A-40 Seismic Design Criteria issue. These objectives will be accomplished through an integrated and carefully planned experimental program consisting of: soil characterization, test model design and field construction, instrumentation layout and deployment, in-situ geophysical information collection, forced vibration test, and synthesis of results and findings. The LSST is a joint effort among many interested parties. EPRI and Taipower are the organizers of the program and have the lead in planning and managing the program

  12. Hydrothermal Synthesis of Disulfide-Containing Uranyl Compounds. In Situ Ligand Synthesis versus Direct Assembly

    Energy Technology Data Exchange (ETDEWEB)

    Rowland, Clare E. [George Washington Univ., Washington, DC (United States); Belai, Nebebech [George Washington Univ., Washington, DC (United States); Knope, Karah E. [George Washington Univ., Washington, DC (United States); Cahill, Christopher L. [George Washington Univ., Washington, DC (United States)

    2010-01-29

    Three disulfide-containing uranyl compounds, [UO2(C7H4O2S)3]·H2O (1), [UO2(C7H4O2S)2(C7H5O2S)] (2), and [UO2(C7H4O2S)4] (3) have been hydrothermally synthesized. Both in situ disulfide bond formation from 3- and 4-mercaptobenzoic acid (C7H5O2S, MBA) to yield 3,3'- and 4,4'-dithiobisbenzoic acid (C14H8O4S2, DTBA) and direct assembly with the presynthesized dimeric ligands have been explored. While the starting materials 4-MBA and 4,4'-DTBA both yield 2 via in situ ligand synthesis and direct assembly, respectively, we observe the formation of 1 from the starting material 3-MBA via in situ ligand synthesis and of 3 from the direct assembly of the uranyl cation with 3,3'-DTBA. Concurrently with the synthesis of 1 and 2, we have observed the in situ formation of the crystalline dimeric organic species, 3,3'-DTBA, [(C7H5O2S)2] (4) and 4,4'-DTBA, [(C7H5O2S)2] (5). Herein we report the synthesis and crystallographic characterization of 1-5, as well as observations regarding the utility of product formation via direct assembly and in situ ligand synthesis.

  13. Automatic compilation from high-level biologically-oriented programming language to genetic regulatory networks.

    Science.gov (United States)

    Beal, Jacob; Lu, Ting; Weiss, Ron

    2011-01-01

    The field of synthetic biology promises to revolutionize our ability to engineer biological systems, providing important benefits for a variety of applications. Recent advances in DNA synthesis and automated DNA assembly technologies suggest that it is now possible to construct synthetic systems of significant complexity. However, while a variety of novel genetic devices and small engineered gene networks have been successfully demonstrated, the regulatory complexity of synthetic systems that have been reported recently has somewhat plateaued due to a variety of factors, including the complexity of biology itself and the lag in our ability to design and optimize sophisticated biological circuitry. To address the gap between DNA synthesis and circuit design capabilities, we present a platform that enables synthetic biologists to express desired behavior using a convenient high-level biologically-oriented programming language, Proto. The high level specification is compiled, using a regulatory motif based mechanism, to a gene network, optimized, and then converted to a computational simulation for numerical verification. Through several example programs we illustrate the automated process of biological system design with our platform, and show that our compiler optimizations can yield significant reductions in the number of genes (~ 50%) and latency of the optimized engineered gene networks. Our platform provides a convenient and accessible tool for the automated design of sophisticated synthetic biological systems, bridging an important gap between DNA synthesis and circuit design capabilities. Our platform is user-friendly and features biologically relevant compiler optimizations, providing an important foundation for the development of sophisticated biological systems.

  14. Total synthesis of bryostatins: the development of methodology for the atom-economic and stereoselective synthesis of the ring C subunit.

    Science.gov (United States)

    Trost, Barry M; Frontier, Alison J; Thiel, Oliver R; Yang, Hanbiao; Dong, Guangbin

    2011-08-22

    Bryostatins, a family of structurally complicated macrolides, exhibit an exceptional range of biological activities. The limited availability and structural complexity of these molecules makes development of an efficient total synthesis particularly important. This article describes our initial efforts towards the total synthesis of bryostatins, in which chemoselective and atom-economical methods for the stereoselective assembly of the ring C subunit were developed. A Pd-catalyzed tandem alkyne-alkyne coupling/6-endo-dig cyclization sequence was explored and successfully pursued in the synthesis of a dihydropyran ring system. Elaboration of this methodology ultimately led to a concise synthesis of the ring C subunit of bryostatins. Copyright © 2011 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  15. US Department of Agriculture School Breakfast Program.

    Science.gov (United States)

    Kennedy, E; Davis, C

    1998-04-01

    This article reviews the history of the US Department of Agriculture School Breakfast Program (SBP) and provides a synthesis of factors influencing participation rates. Certain children are more likely to participate than others, such as those in lower grades and those from low-income households, and African American, Hispanic, and male students. A few studies in the past 25 y have examined the effectiveness of the SBP in improving the diets and nutritional status of children. The overall pattern that emerges from these studies is that the SBP contributes to improved nutrient intake in program participants. Less attention has been devoted to assessing the effects of SBP on cognitive development. Some of the evidence reviewed here suggests that the SBP significantly improves school performance and reduces absenteeism and tardiness. Future directions for research and operation of the SBP are discussed in light of the changing dietary profile of American children.

  16. RNA synthesis during germination of UV-irradiated Dictyostelium discoideum spores

    International Nuclear Information System (INIS)

    Okaichi, Kumio

    1987-01-01

    UV irradiation to the spores of Dictyostelium discoideum NC4 resulted in a more prolonged delay of amoeba-emergence from swollen spores with increasing UV fluence. During the germination, an inhibition of total RNA synthesis and a shift of stage of maximum RNA synthesis to the later period were observed. The maximum poly(A) + RNA synthetic activity was found on an early stage of amoeba-emergence prior about 1 h to the beginning of rRNA synthesis in unirradiated spore germination; but, in UV-irradiated spore germination, the stage of maximum poly(A) + RNA synthesis shifted to the later stage of germination with increasing UV fluence. A decreased synthesis of poly(A) + RNA and a severe inhibition of rRNA synthesis were observed on UV-irradiated and germinated spores, but no significant inhibition of 4 - 5 S RNA synthesis was detected. Actinomycin D suppressed almost completely the rRNA synthesis of emerged amoebae but the drug apparently did not affect the emergence of amoebae at any stage of germination. It was postulated that the delay of amoeba-emergence in UV-irradiated spore must be mainly due to the shift of the stage of maximum synthesis of poly(A) + RNA to the later stage of germination. (author)

  17. Analysis and synthesis of laughter

    Science.gov (United States)

    Sundaram, Shiva; Narayanan, Shrikanth

    2004-10-01

    There is much enthusiasm in the text-to-speech community for synthesis of emotional and natural speech. One idea being proposed is to include emotion dependent paralinguistic cues during synthesis to convey emotions effectively. This requires modeling and synthesis techniques of various cues for different emotions. Motivated by this, a technique to synthesize human laughter is proposed. Laughter is a complex mechanism of expression and has high variability in terms of types and usage in human-human communication. People have their own characteristic way of laughing. Laughter can be seen as a controlled/uncontrolled physiological process of a person resulting from an initial excitation in context. A parametric model based on damped simple harmonic motion to effectively capture these diversities and also maintain the individuals characteristics is developed here. Limited laughter/speech data from actual humans and synthesis ease are the constraints imposed on the accuracy of the model. Analysis techniques are also developed to determine the parameters of the model for a given individual or laughter type. Finally, the effectiveness of the model to capture the individual characteristics and naturalness compared to real human laughter has been analyzed. Through this the factors involved in individual human laughter and their importance can be better understood.

  18. Solventless synthesis of ruthenium nanoparticles

    Energy Technology Data Exchange (ETDEWEB)

    García-Peña, Nidia G. [Departmento de Tecnociencias, Universidad Nacional Autónoma de México, Centro de Ciencias Aplicadas y Desarrollo Tecnológico, Universidad Nacional Autónoma de México, Cd. Universitaria A.P. 70-186, C.P. 04510 Coyoacán, México D.F. (Mexico); Redón, Rocío, E-mail: rredon@unam.mx [Departmento de Tecnociencias, Universidad Nacional Autónoma de México, Centro de Ciencias Aplicadas y Desarrollo Tecnológico, Universidad Nacional Autónoma de México, Cd. Universitaria A.P. 70-186, C.P. 04510 Coyoacán, México D.F. (Mexico); Herrera-Gomez, Alberto [Estudios Avanzados del Instituto Politécnico Nacional, Campus Juriquilla, Querétaro (Mexico); Fernández-Osorio, Ana Leticia [FES-Cuautitlán, Universidad Nacional Autónoma de México, Edo. de Mexico (Mexico); Bravo-Sanchez, Mariela; Gomez-Sosa, Gustavo [Estudios Avanzados del Instituto Politécnico Nacional, Campus Juriquilla, Querétaro (Mexico)

    2015-06-15

    Graphical abstract: - Highlights: • Successful synthesis of Ru nanoparticles by a cheap, fast and solventless approach was achieved. • The zero-valent state as well as the by-product/impurity free of the mechanochemical obtained Ru nanoparticles was proven by XPS, TEM and XRD. • Compared to two other synthesis strategies, the above-mentioned synthesis was more suitable to obtain smaller particles with fewer impurities in shorter time. - Abstract: This paper presents a novel solventless method for the synthesis of zero-valent ruthenium nanoparticles Ru(0). The proposed method, although not entirely new in the nanomaterials world, was used for the first time to synthesize zero-valent ruthenium nanoparticles. This new approach has proved to be an environmentally friendly, clean, cheap, fast, and reproducible technique which employs low amounts of solvent. It was optimized through varying amounts of reducing salt on a determined quantity of precursor and measuring the effect of this variation on the average particle size obtained. The resulting products were fully characterized by powder XRD, TEM, HR-TEM, and XPS studies, all of which corroborated the purity of the nanoparticles achieved. In order to verify the advantages of our method over other techniques, we compared our nanoparticles with two common colloidal-synthesized ruthenium nanoparticles.

  19. Web-Mediated Knowledge Synthesis for Educators

    Science.gov (United States)

    DeSchryver, Michael

    2015-01-01

    Ubiquitous and instant access to information on the Web is challenging what constitutes 21st century literacies. This article explores the notion of Web-mediated knowledge synthesis, an approach to integrating Web-based learning that may result in generative synthesis of ideas. This article describes the skills and strategies that may support…

  20. Synthesis and applications of nano-structured iron oxides/hydroxides

    African Journals Online (AJOL)

    ... in numerous synthesis processes. This review outlines the work being carried out on synthesis of iron oxides in nano form and their various applications. Keywords: nano iron oxides, synthesis, catalysts, magnetic properties, biomedical application. International Journal of Engineering, Science and Technology, Vol. 2, No.

  1. Proceedings of the DGMK-conference 'Synthesis gas chemistry'. Authors' manuscripts

    Energy Technology Data Exchange (ETDEWEB)

    Hoenicke, D; Kohlpaintner, C; Luecke, B; Reschetilowski, W [eds.

    2000-07-01

    The main topics of the DGMK-Conference ''Synthesis Gas Chemistry'' were: production of synthesis gas from several educts, new catalysts, Fischer-Tropsch synthesis, hydroformylation, steam reforming and carbonylation.

  2. Materials sciences programs, Fiscal year 1997

    Energy Technology Data Exchange (ETDEWEB)

    NONE

    1998-10-01

    The Division of Materials Sciences is responsible for basic research and research facilities in materials science topics important to the mission of the Department of Energy. The programmatic divisions under the Office of Basic Energy Sciences are Chemical Sciences, Engineering and Geosciences, and Energy Biosciences. Materials Science is an enabling technology. The performance parameters, economics, environmental acceptability and safety of all energy generation, conversion, transmission and conservation technologies are limited by the properties and behavior of materials. The Materials Sciences programs develop scientific understanding of the synergistic relationship among synthesis, processing, structure, properties, behavior, performance and other characteristics of materials. Emphasis is placed on the development of the capability to discover technologically, economically, and environmentally desirable new materials and processes, and the instruments and national user facilities necessary for achieving such progress. Materials Sciences subfields include: physical metallurgy, ceramics, polymers, solid state and condensed matter physics, materials chemistry, surface science and related disciplines where the emphasis is on the science of materials. This report includes program descriptions for 517 research programs including 255 at 14 DOE National Laboratories, 262 research grants (233 of which are at universities), and 29 Small Business Innovation Research Grants. Five cross-cutting indices located at the rear of this book identify all 517 programs according to principal investigator(s), materials, techniques, phenomena, and environment.

  3. Synthesis of acid-soluble spore proteins by Bacillus subtilis.

    OpenAIRE

    Leventhal, J M; Chambliss, G H

    1982-01-01

    The major acid-soluble spore proteins (ASSPs) of Bacillus subtilis were detected by immunoprecipitation of radioactively labeled in vitro- and in vivo-synthesized proteins. ASSP synthesis in vivo began 2 h after the initiation of sporulation (t2) and reached its maximum rate at t7. This corresponded to the time of synthesis of mRNA that stimulated the maximum rate of ASSP synthesis in vitro. Under the set of conditions used in these experiments, protease synthesis began near t0, alkaline phos...

  4. Prebiotic RNA Synthesis by Montmorillonite Catalysis

    Directory of Open Access Journals (Sweden)

    Sohan Jheeta

    2014-08-01

    Full Text Available This review summarizes our recent findings on the role of mineral salts in prebiotic RNA synthesis, which is catalyzed by montmorillonite clay minerals. The clay minerals not only catalyze the synthesis of RNA but also facilitate homochiral selection. Preliminary data of these findings have been presented at the “Horizontal Gene Transfer and the Last Universal Common Ancestor (LUCA” conference at the Open University, Milton Keynes, UK, 5–6 September 2013. The objective of this meeting was to recognize the significance of RNA in LUCA. We believe that the prebiotic RNA synthesis from its monomers must have been a simple process. As a first step, it may have required activation of the 5'-end of the mononucleotide with a leaving group, e.g., imidazole in our model reaction (Figure 1. Wide ranges of activating groups are produced from HCN under plausible prebiotic Earth conditions. The final step is clay mineral catalysis in the presence of mineral salts to facilitate selective production of functional RNA. Both the clay minerals and mineral salts would have been abundant on early Earth. We have demonstrated that while montmorillonite (pH 7 produced only dimers from its monomers in water, addition of sodium chloride (1 M enhanced the chain length multifold, as detected by HPLC. The effect of monovalent cations on RNA synthesis was of the following order: Li+ > Na+ > K+. A similar effect was observed with the anions, enhancing catalysis in the following order: Cl− > Br− > I−. The montmorillonite-catalyzed RNA synthesis was not affected by hydrophobic or hydrophilic interactions. We thus show that prebiotic synthesis of RNA from its monomers was a simple process requiring only clay minerals and a small amount of salt.

  5. Synthesis of acid-soluble spore proteins by Bacillus subtilis.

    Science.gov (United States)

    Leventhal, J M; Chambliss, G H

    1982-12-01

    The major acid-soluble spore proteins (ASSPs) of Bacillus subtilis were detected by immunoprecipitation of radioactively labeled in vitro- and in vivo-synthesized proteins. ASSP synthesis in vivo began 2 h after the initiation of sporulation (t2) and reached its maximum rate at t7. This corresponded to the time of synthesis of mRNA that stimulated the maximum rate of ASSP synthesis in vitro. Under the set of conditions used in these experiments, protease synthesis began near t0, alkaline phosphatase synthesis began at about t2, and refractile spores were first observed between t7 and t8. In vivo- and in vitro-synthesized ASSPs comigrated in sodium dodecyl sulfate-polyacrylamide gels. Their molecular weights were 4,600 (alpha and beta) and 11,000 (gamma). The average half-life of the ASSP messages was 11 min when either rifampin (10 micrograms/ml) or actinomycin D (1 microgram/ml) was used to inhibit RNA synthesis.

  6. Development of miniature module for [11C] methionine synthesis

    International Nuclear Information System (INIS)

    Watanabe, Toshimitsu; Araya, Hiroshi; Ueno, Satoshi

    2006-01-01

    [ 18 F]FDG-PET has spread rapidly in the cancer diagnosis. On the other hand, [ 11 C]Methionine is paid attention as one of the PET drugs that may help cancer diagnosis by [ 18 F]FDG. Due to its short half-life, repeated preparations of [ 11 C] Methionine, two or three times a day, are generally required for the routine PET practice. Although the automatic synthesis devices for [ 11 C]Methionine were developed, it was difficult to supply [ 11 C]Methionine two times a day or more. We developed a methionine synthesis system that was able to supply [ 11 C]Methionine two times a day or more, and a new methionine synthesis unit. The new synthesis unit is able to synthesize [ 11 C]Methionine efficiently without HPLC preparation and evaporation in a short time. The new methionine synthesis unit and system are more useful for the routine synthesis of [ 11 C]Methionine. (author)

  7. Protein synthesis in geostimulated root caps

    Science.gov (United States)

    Feldman, L. J.

    1982-01-01

    A study is presented of the processes occurring in the root cap of corn which are requisite for the formation of root cap inhibitor and which can be triggered or modulated by both light and gravity. The results of this study indicate the importance of protein synthesis for light-induced gravitropic bending in roots. Root caps in which protein synthesis is prevented are unable to induce downward bending. This suggests that light acts by stimulating proteins which are necessary for the translation of the gravitropic stimulus into a growth response (downward bending). The turnover of protein with time was also examined in order to determine whether light acts by stimulating the synthesis of unique proteins required for downward growth. It is found that auxin in combination with light allows for the translation of the gravitropic stimulus into a growth response at least in part through the modification of protein synthesis. It is concluded that unique proteins are stimulated by light and are involved in promoting the downward growth in roots which are responding to gravity.

  8. Fischer-Tropsch synthesis. Development and perspectives

    Energy Technology Data Exchange (ETDEWEB)

    Schaub, G.; Rohde, M.; Mena Subiranas, A. [Karlsruhe Univ. (Germany). Engler-Bunte-Institut

    2006-07-01

    Production of synthetic hydrocarbons via Fischer-Tropsch (FT) synthesis has the potential to produce high-value automotive fuels and petrochemicals from fossil and renewable sources. The availability of cheap natural gas and solid raw materials like coal and biomass has given momentum to synthesis technologies first developed in the mid-twentieth century. The present paper summarizes the fundamentals and describes some general aspects regarding driving forces, catalyst and reaction, synthesis reactor, and overall process. In this way, it indicates the context of present and future developments. Worldwide plant capacities will increase significantly in the next future, with natural gas favored as feedstock. Substitution of petroleum as well as production of improved products (like automotive fuels) are the most significant incentives. Energy loss and additional fossil CO{sub 2} emissions caused by the conversion process will be a problem in extended applications with fossil feedstocks. The current R and D activities worldwide, in all areas related to Fischer-Tropsch synthesis, will contribute to further process improvements and extended applications. (orig.)

  9. Hybrid principle with applications to synthesis

    International Nuclear Information System (INIS)

    Nanneh, M.M.

    1991-01-01

    The theory of hybrid principles is presented together with the transformation rule for converting odd-parity approximations into even-parity approximations. This rule leads to a method which provides rigorous upper and lower bounds for the disadvantage factor for a reactor lattice cell. With these bounds very precise benchmarks have been constructed for representative lattices. It is found that a combination of even and odd-parity solutions for the neutron flux is much more efficient than solutions based on either the even-parity or odd-parity. This is the basis of one synthesis scheme. In another synthesis method, a hybrid principle with trial functions for both the even- and odd- parity angular flux is used in conjunction with a classical principle with an odd-parity trial function. The synthesis process is efficient because the largest set of equations to be solved, i.e. the frame work, involves as few as one unknown per node of the finite element mesh. The effectiveness of the synthesis method is demonstrated for a thick shield problem. (author)

  10. Time-efficient and convenient synthesis of [{sup 18}F]altanserin for human PET imaging by a new work-up procedure

    Energy Technology Data Exchange (ETDEWEB)

    Massarweh, G. [McConnell Brain Imaging Centre, Montreal Neurological Institute, McGill University, 3801 University Street, Montreal, Quebec (Canada)], E-mail: gassan.wassarweh@mcgill.ca; Kovacevic, M.; Rosa-Neto, P.; Evans, A.C.; Diksic, M. [McConnell Brain Imaging Centre, Montreal Neurological Institute, McGill University, 3801 University Street, Montreal, Quebec (Canada); Schirrmacher, R. [McConnell Brain Imaging Centre, Montreal Neurological Institute, McGill University, 3801 University Street, Montreal, Quebec (Canada)], E-mail: ralf.schirrmacher@mcgill.ca

    2009-11-15

    [{sup 18}F]Altanserin, an important PET radioligand for the in vivo imaging of the 5-HT{sub 2A} receptor, was synthesized from its precursor nitro-altanserin in DMF or DMSO at high temperatures of 150 deg. C in an overall radiochemical yield (EOB) of 23-25% after 75 min. A new solid phase work-up procedure involving the acidification of the crude reaction mixture and a C18-SepPak-solid phase separation preceded the final HPLC purification. This led to a significantly reduced synthesis time as a result of a stable and early elution from the HPLC column using improved HPLC conditions (MeOH/THF/NaOAc 0.05 N pH 5: 27/18/55, flow: 5 mL/min, Symetry Prep 7 {mu}m C18 (Waters)). The synthesis was performed semi-automatically in a modified GE TracerLab synthesis module using an in-house-developed program. The synthesized [{sup 18}F]altanserin was used in our ongoing human and animal PET imaging studies.

  11. SYNTHESIS OF METHACRYLATES FROM COAL-DERIVED SYNGAS

    Energy Technology Data Exchange (ETDEWEB)

    Jang, B.W.L.; Spivey, J.J.; Gogate, M.R.; Zoeller, J.R.; Colberg, R.D.; Choi, G.N.

    1999-12-01

    Research Triangle Institute (RTI), Eastman Chemical Company, and Bechtel have developed a novel process for synthesis of methyl methacrylate (MMA) from coal-derived syngas, under a contract from the US Department of Energy/Fossil Energy Technology Center (DOE/FETC). This project has resulted in five US patents (four already published and one pending publication). It has served as the basis for the technical and economic assessment of the production of this high-volume intermediate from coal-derived synthesis gas. The three-step process consists of the synthesis of a propionate from ethylene carbonylation using coal-derived CO, condensation of the propionate with formaldehyde to form methacrylic acid (MAA); and esterification of MAA with methanol to yield MMA. The first two steps, propionate synthesis and condensation catalysis, are the key technical challenges and the focus of the research presented here.

  12. Design of an Automated System for Synthesis of [18 F] FDG for PET Investigation at IFIN-HH Bucharest

    International Nuclear Information System (INIS)

    Craciun, Liviu Stefan; Cimpeanu, Catalina; Constantinescu, Olimpiu; Dudu, Dorin; Ionescu, Cristina; Negoita, Nicolae; Racolta, Petru Mihai; Rusen, Ion

    2009-01-01

    A novel apparatus constructed at IFIN-HH is described for automated synthesis of radiopharmaceuticals labeled with 18 F for use in positron emission tomography (PET) investigations. [18 F] fluoride was produced at the IFIN-HH cyclotron by irradiation of H 2 O enriched 97% in 18 O with 13 MeV deuterons, or 8 MeV protons. The irradiated H 2 O was transferred (injected) into the radiochemical fully-automated processing systems which ensured the separation of 18 F from H 2 O, the labeling with 18 F, and finally purified by filtration with selective absorbants. The system is easy to operate and contains a programmable logical controller that manages the entire operation program stored in its internal memory. The computer is used to assist the operator during the different steps of synthesis and to allow visualization of the process and printing the report. The device was used for used for the production of 2-[18 F] FLUORO-2-DEOXY-D-GLUCOSE at the IFIN-HH cyclotron, one of the most used radiopharmaceutical in PET investigations. The synthesis module is configured so that is flexible enough to accomplish other nucleophile reactions of labeling with short lived radioisotopes.

  13. Design of an Automated System for Synthesis of [18 F] FDG for PET Investigation at IFIN-HH Bucharest

    Science.gov (United States)

    Craciun, Liviu Stefan; Cimpeanu, Catalina; Constantinescu, Olimpiu; Dudu, Dorin; Ionescu, Cristina; Negoita, Nicolae; Racolta, Petru Mihai; Rusen, Ion

    2009-03-01

    A novel apparatus constructed at IFIN-HH is described for automated synthesis of radiopharmaceuticals labeled with 18F for use in positron emission tomography (PET) investigations. [18 F] fluoride was produced at the IFIN-HH cyclotron by irradiation of H2O enriched 97% in 18O with 13 MeV deuterons, or 8 MeV protons. The irradiated H2O was transferred (injected) into the radiochemical fully-automated processing systems which ensured the separation of 18F from H2O, the labeling with 18F, and finally purified by filtration with selective absorbants. The system is easy to operate and contains a programmable logical controller that manages the entire operation program stored in its internal memory. The computer is used to assist the operator during the different steps of synthesis and to allow visualization of the process and printing the report. The device was used for used for the production of 2-[18 F] FLUORO-2-DEOXY-D-GLUCOSE at the IFIN-HH cyclotron, one of the most used radiopharmaceutical in PET investigations. The synthesis module is configured so that is flexible enough to accomplish other nucleophile reactions of labeling with short lived radioisotopes.

  14. A review: radiolabeled synthesis of pesticides

    International Nuclear Information System (INIS)

    Li Juying; Han Ailiang; Wang Haiyan; Wang Wei; Ye Qingfu

    2010-01-01

    Isotope tracer technique has been widely applied in studies of metabolism, mode action, fate and environmental behavior of pesticides. In such studies, the key point is to obtain suitable radiolabelled compounds. However, the radiotracers, especially the labelled pesticides which are novel compounds with complex structures and longer synthesis routes, are usually unavailable from domestic and /or foreign markets. Therefore, it is essential to explore the synthesis methods of radiolabelled pesticides, which are quite different from the conventional nonradiosynthesis, and are requested to obtain higher yield. This article is a review on current status of choosing the available radionuclide and labelled position, the main synthesis methods and problems in the process of preparing radiolabelled pesticides. (authors)

  15. Synthesis of milligram quantities of proteins using a reconstituted in vitro protein synthesis system.

    Science.gov (United States)

    Kazuta, Yasuaki; Matsuura, Tomoaki; Ichihashi, Norikazu; Yomo, Tetsuya

    2014-11-01

    In this study, the amount of protein synthesized using an in vitro protein synthesis system composed of only highly purified components (the PURE system) was optimized. By varying the concentrations of each system component, we determined the component concentrations that result in the synthesis of 0.38 mg/mL green fluorescent protein (GFP) in batch mode and 3.8 mg/mL GFP in dialysis mode. In dialysis mode, protein concentrations of 4.3 and 4.4 mg/mL were synthesized for dihydrofolate reductase and β-galactosidase, respectively. Using the optimized system, the synthesized protein represented 30% (w/w) of the total protein, which is comparable to the level of overexpressed protein in Escherichia coli cells. This optimized reconstituted in vitro protein synthesis system may potentially be useful for various applications, including in vitro directed evolution of proteins, artificial cell assembly, and protein structural studies. Copyright © 2014 The Society for Biotechnology, Japan. Published by Elsevier B.V. All rights reserved.

  16. Synthesis and characterization of six-membered pincer ...

    Indian Academy of Sciences (India)

    0013167

    SUPPORTING INFORMATION. REGULAR ARTICLE. Synthesis and characterization of six-membered pincer nickelacycles and application in alkylation of benzothiazole. †. HANUMANPRASAD PANDIRI,a DIPESH M SHARMA,a RAJESH G GONNADEb and. BENUDHAR PUNJI*,a. aOrganometallic Synthesis and Catalysis ...

  17. New regioselective multicomponent reaction: one pot synthesis of spiro heterobicyclic aliphatic rings.

    Science.gov (United States)

    Byk, G; Gottlieb, H E; Herscovici, J; Mirkin, F

    2000-01-01

    In the context of our high-throughput organic synthesis program, we have studied the reactivity of special beta-keto esters toward the Biginelli reaction. We have found that a cyclic beta-keto ester reacts with one molecule of urea and two molecules of aldehyde to give a new family of spiro heterobicyclic aliphatic rings in good yields. Interestingly, the Biginelli product was not detected. After analysis of products using HPLC, 1H NMR, and 13C NMR, we have found that the reaction is driven by a regio-specific condensation of two molecules of aldehyde with the other reagents to afford only products harboring substituents exclusively in cis configuration. Monte Carlo minimization studies using MM2 force field suggest that cis products are energetically more stable than the trans counterparts. Together with previously reported data, these results suggest that the trans products were not obtained as result of steric hindrance produced by the equatorial position of one of the ring substituents. This new reaction is useful for high-throughput organic synthesis. Indeed, the new scaffold can be used to introduce additional groups in the molecules through remaining functional groups by a "domino strategy".

  18. Nanoscale Synthesis and Characterization Laboratory Annual Report 2005

    Energy Technology Data Exchange (ETDEWEB)

    Hamza, A V; Lesuer, D R

    2006-01-03

    The Nanoscale Synthesis and Characterization Laboratory's (NSCL) primary mission is to create and advance interdisciplinary research and development opportunities in nanoscience and technology. The initial emphasis of the NSCL has been on development of scientific solutions in support of target fabrication for the NIF laser and other stockpile stewardship experimental platforms. Particular emphasis has been placed on the design and development of innovative new materials and structures for use in these targets. Projects range from the development of new high strength nanocrystalline alloys to graded density materials to high Z nanoporous structures. The NSCL also has a mission to recruit and train personnel for Lab programs such as the National Ignition Facility (NIF), Defense and Nuclear Technologies (DNT), and Nonproliferation, Arms control and International security (NAI). The NSCL continues to attract talented scientists to the Laboratory.

  19. Features of fatty acid synthesis in higher plants

    Energy Technology Data Exchange (ETDEWEB)

    Yamada, M [Tokyo Univ. (Japan). Coll. of General Education; Nakamura, Y

    1975-07-01

    In the biosynthesis of fatty acid in the presence of /sup 3/H/sub 2/O, /sup 3/H is incorporated into the hydrocarbon chain of the fatty acid. The features in the fatty acid synthesis of higher plants were investigated by applying /sup 3/H/sub 2/O method to the measurement of the ability of spinach leaves synthesizing fatty acid. Sucrose, acetate, pyruvate, PGA, PEP, OAA, citrate, etc. were employed as the substrates of fatty acid synthesis to trace the process of synthesis of each fatty acid. The demand of various cofactors related to the ability of spinach chloroplast fatty acid synthesizing was also examined. Light dependence of the fatty acid synthesis of chloroplast as well as the influences of N,N'-dicyclohexyl carbodiimide, carbonylcyanide-4-trifluoromethoxy phenyl hydrazone and NH/sub 4/Cl were discussed. The results were compared with the reports on the fatty acid synthesis of avocado pear, castor bean, etc.

  20. Synthesis of graphene using gamma radiations

    Indian Academy of Sciences (India)

    Considering the advantages of radiolytic synthesis such as the absence of toxic chemical as a reducing agent, uniform distribution of reducing agent and high purity of product, the synthesis of graphene (rGO) from graphene oxide (GO) by the gamma irradiation technique using a relatively low dose rate of 0.24 kGy h−1 has ...

  1. Factors associated with the implementation of community-based peer-led health promotion programs: A scoping review.

    Science.gov (United States)

    Lorthios-Guilledroit, Agathe; Richard, Lucie; Filiatrault, Johanne

    2018-06-01

    Peer education is growing in popularity as a useful health promotion strategy. However, optimal conditions for implementing peer-led health promotion programs (HPPs) remain unclear. This scoping review aimed to describe factors that can influence implementation of peer-led HPPs targeting adult populations. Five databases were searched using the keywords "health promotion/prevention", "implementation", "peers", and related terms. Studies were included if they reported at least one factor associated with the implementation of community-based peer-led HPPs. Fifty-five studies were selected for the analysis. The method known as "best fit framework synthesis" was used to analyze the factors identified in the selected papers. Many factors included in existing implementation conceptual frameworks were deemed applicable to peer-led HPPs. However, other factors related to individuals, programs, and implementation context also emerged from the analysis. Based on this synthesis, an adapted theoretical framework was elaborated, grounded in a complex adaptive system perspective and specifying potential mechanisms through which factors may influence implementation of community-based peer-led HPPs. Further research is needed to test the theoretical framework against empirical data. Findings from this scoping review increase our knowledge of the optimal conditions for implementing peer-led HPPs and thereby maximizing the benefits of such programs. Copyright © 2018 Elsevier Ltd. All rights reserved.

  2. Catalytic asymmetric synthesis of the alkaloid (+)-myrtine

    NARCIS (Netherlands)

    Pizzuti, Maria Gabriefla; Minnaard, Adriaan J.; Feringa, Ben L.

    2008-01-01

    A new protocol for the asymmetric synthesis of trans-2,6-disubstituted-4-piperidones has been developed using a catalytic enantioselective conjugate addition reaction in combination with a diastereoselective lithiation-substitution sequence; an efficient synthesis of (+)-myrtine has been achieved

  3. Total synthesis of (-)- and (+)-tedanalactam

    Digital Repository Service at National Institute of Oceanography (India)

    Majik, M.S.; Parameswaran, P.S.; Tilve, S.G.

    : The Journal of Organic Chemistry, vol.74(16); 6378-6381 1 Total Synthesis of (-) and (+)-Tedanalactam Mahesh S. Majik, † Peruninakulath S. Parameswaran, ‡ and Santosh G. Tilve* ,† Department of Chemistry, Goa University, Taleigao Plateau, Goa 403..., displaying a wide range of biological activities. 1 Piperidones are key synthetic intermediates 2 for the synthesis of piperidine ring due to the presence of keto function which allows the introduction of other groups. Piperidones are also known...

  4. Essentials of inorganic materials synthesis

    CERN Document Server

    Rao, C N R

    2015-01-01

    This compact handbook describes all the important methods of synthesis employed today for synthesizing inorganic materials. Some features: Focuses on modern inorganic materials with applications in nanotechnology, energy materials, and sustainability Synthesis is a crucial component of materials science and technology; this book provides a simple introduction as well as an updated description of methods Written in a very simple style, providing references to the literature to get details of the methods of preparation when required

  5. A Short Synthesis of (+)-Cyclophellitol

    DEFF Research Database (Denmark)

    Hansen, Flemming Gundorph; Bundgaard, Eva; Madsen, Robert

    2005-01-01

    A new synthesis of (+)-cyclophellitol, a potent b-glucosidase inhibitor, has been completed in nine steps from D-xylose. The key transformations involve a zinc-mediated fragmentation of benzyl-protected methyl 5-deoxy-5-iodo-xylofuranoside followed by a highly diastereoselective indium-mediated c......-mediated coupling with ethyl 4-bromocrotonate. Subsequent ring-closing olefin metathesis, ester reduction, olefin epoxidation, and deprotection then afford the natural product. This constitutes the shortest synthesis of (+)-cyclophellitol reported to date....

  6. Structural synthesis of parallel robots

    CERN Document Server

    Gogu, Grigore

    This book represents the fifth part of a larger work dedicated to the structural synthesis of parallel robots. The originality of this work resides in the fact that it combines new formulae for mobility, connectivity, redundancy and overconstraints with evolutionary morphology in a unified structural synthesis approach that yields interesting and innovative solutions for parallel robotic manipulators.  This is the first book on robotics that presents solutions for coupled, decoupled, uncoupled, fully-isotropic and maximally regular robotic manipulators with Schönflies motions systematically generated by using the structural synthesis approach proposed in Part 1.  Overconstrained non-redundant/overactuated/redundantly actuated solutions with simple/complex limbs are proposed. Many solutions are presented here for the first time in the literature. The author had to make a difficult and challenging choice between protecting these solutions through patents and releasing them directly into the public domain. T...

  7. View synthesis using parallax invariance

    Science.gov (United States)

    Dornaika, Fadi

    2001-06-01

    View synthesis becomes a focus of attention of both the computer vision and computer graphics communities. It consists of creating novel images of a scene as it would appear from novel viewpoints. View synthesis can be used in a wide variety of applications such as video compression, graphics generation, virtual reality and entertainment. This paper addresses the following problem. Given a dense disparity map between two reference images, we would like to synthesize a novel view of the same scene associated with a novel viewpoint. Most of the existing work is relying on building a set of 3D meshes which are then projected onto the new image (the rendering process is performed using texture mapping). The advantages of our view synthesis approach are as follows. First, the novel view is specified by a rotation and a translation which are the most natural way to express the virtual location of the camera. Second, the approach is able to synthesize highly realistic images whose viewing position is significantly far away from the reference viewpoints. Third, the approach is able to handle the visibility problem during the synthesis process. Our developed framework has two main steps. The first step (analysis step) consists of computing the homography at infinity, the epipoles, and thus the parallax field associated with the reference images. The second step (synthesis step) consists of warping the reference image into a new one, which is based on the invariance of the computed parallax field. The analysis step is working directly on the reference views, and only need to be performed once. Examples of synthesizing novel views using either feature correspondences or dense disparity map have demonstrated the feasibility of the proposed approach.

  8. Design of generic coal conversion facilities: Production of oxygenates from synthesis gas---A technology review

    Energy Technology Data Exchange (ETDEWEB)

    1991-10-01

    This report concentrates on the production of oxygenates from coal via gasification and indirect liquefaction. At the present the majority of oxygenate synthesis programs are at laboratory scale. Exceptions include commercial and demonstration scale plants for methanol and higher alcohols production, and ethers such as MTBE. Research and development work has concentrated on elucidating the fundamental transport and kinetic limitations governing various reactor configurations. But of equal or greater importance has been investigations into the optimal catalyst composition and process conditions for the production of various oxygenates.

  9. Synthesis of Acetylhomoagmatine

    Directory of Open Access Journals (Sweden)

    Carmenza Duque

    2006-08-01

    Full Text Available Abstract: The first total synthesis of acetylhomoagmatine, a natural product isolated form the methanolic extracts from the sponge Cliona celata, is performed in four steps in a very high yield.

  10. Catalytic chemical amide synthesis at room temperature: one more step toward peptide synthesis.

    Science.gov (United States)

    Mohy El Dine, Tharwat; Erb, William; Berhault, Yohann; Rouden, Jacques; Blanchet, Jérôme

    2015-05-01

    An efficient method has been developed for direct amide bond synthesis between carboxylic acids and amines via (2-(thiophen-2-ylmethyl)phenyl)boronic acid as a highly active bench-stable catalyst. This catalyst was found to be very effective at room temperature for a large range of substrates with slightly higher temperatures required for challenging ones. This methodology can be applied to aliphatic, α-hydroxyl, aromatic, and heteroaromatic acids as well as primary, secondary, heterocyclic, and even functionalized amines. Notably, N-Boc-protected amino acids were successfully coupled in good yields with very little racemization. An example of catalytic dipeptide synthesis is reported.

  11. Protein chemical synthesis by α-ketoacid-hydroxylamine ligation.

    Science.gov (United States)

    Harmand, Thibault J; Murar, Claudia E; Bode, Jeffrey W

    2016-06-01

    Total chemical synthesis of proteins allows researchers to custom design proteins without the complex molecular biology that is required to insert non-natural amino acids or the biocontamination that arises from methods relying on overexpression in cells. We describe a detailed procedure for the chemical synthesis of proteins with the α-ketoacid-hydroxylamine (KAHA ligation), using (S)-5-oxaproline (Opr) as a key building block. This protocol comprises two main parts: (i) the synthesis of peptide fragments by standard fluorenylmethoxycarbonyl (Fmoc) chemistry and (ii) the KAHA ligation between fragments containing Opr and a C-terminal peptide α-ketoacid. This procedure provides an alternative to native chemical ligation (NCL) that could be valuable for the synthesis of proteins, particularly targets that do not contain cysteine residues. The ligation conditions-acidic DMSO/H2O or N-methyl-2-pyrrolidinone (NMP)/H2O-are ideally suited for solubilizing peptide segments, including many hydrophobic examples. The utility and efficiency of the protocol is demonstrated by the total chemical synthesis of the mature betatrophin (also called ANGPTL8), a 177-residue protein that contains no cysteine residues. With this protocol, the total synthesis of the betatrophin protein has been achieved in around 35 working days on a multimilligram scale.

  12. mTORC1 Balances Cellular Amino Acid Supply with Demand for Protein Synthesis through Post-transcriptional Control of ATF4

    Directory of Open Access Journals (Sweden)

    Yeonwoo Park

    2017-05-01

    Full Text Available The mammalian target of rapamycin complex 1 (mTORC1 is a master regulator of cell growth that is commonly deregulated in human diseases. Here we find that mTORC1 controls a transcriptional program encoding amino acid transporters and metabolic enzymes through a mechanism also used to regulate protein synthesis. Bioinformatic analysis of mTORC1-responsive mRNAs identified a promoter element recognized by activating transcription factor 4 (ATF4, a key effector of the integrated stress response. ATF4 translation is normally induced by the phosphorylation of eukaryotic initiation factor 2 alpha (eIF2α through a mechanism that requires upstream open reading frames (uORFs in the ATF4 5′ UTR. mTORC1 also controls ATF4 translation through uORFs, but independently of changes in eIF2α phosphorylation. mTORC1 instead employs the 4E-binding protein (4E-BP family of translation repressors. These results link mTORC1-regulated demand for protein synthesis with an ATF4-regulated transcriptional program that controls the supply of amino acids to the translation machinery.

  13. Finite element design for the HPHT synthesis of diamond

    Science.gov (United States)

    Li, Rui; Ding, Mingming; Shi, Tongfei

    2018-06-01

    The finite element method is used to simulate the steady-state temperature field in diamond synthesis cell. The 2D and 3D models of the China-type cubic press with large deformation of the synthesis cell was established successfully, which has been verified by situ measurements of synthesis cell. The assembly design, component design and process design for the HPHT synthesis of diamond based on the finite element simulation were presented one by one. The temperature field in a high-pressure synthetic cavity for diamond production is optimized by adjusting the cavity assembly. A series of analysis about the influence of the pressure media parameters on the temperature field are examined through adjusting the model parameters. Furthermore, the formation mechanism of wasteland was studied in detail. It indicates that the wasteland is inevitably exists in the synthesis sample, the distribution of growth region of the diamond with hex-octahedral is move to the center of the synthesis sample from near the heater as the power increasing, and the growth conditions of high quality diamond is locating at the center of the synthesis sample. These works can offer suggestion and advice to the development and optimization of a diamond production process.

  14. Nonionic emulsion-mediated synthesis of zeolite beta

    Indian Academy of Sciences (India)

    Zeolite beta synthesis was first carried out in a newly developed emulsion system containing nonionic polyoxyethylated alkylphenol surfactant, which showed interesting non-conventional features. Compared to the conventional hydrothermal synthesis of zeolite beta, the reported nonionic emulsion system showed a faster ...

  15. SYNTHESIS, CHARACTERIZATION AND BIO-ACTIVITY OF SOME ...

    African Journals Online (AJOL)

    Preferred Customer

    Organophosphorus compounds have wide range of applications in the industrial, agricultural and medicinal chemistry owing to their unique physicochemical and biological properties. Their utility as reagents and potential synthons in organic synthesis is gaining increased attention [1]. Synthesis of a-aminophosphonates, ...

  16. A chemical platform approach on cardanol oil: from the synthesis of building blocks to polymer synthesis

    Directory of Open Access Journals (Sweden)

    Jaillet Fanny

    2016-09-01

    Full Text Available This review proposes a platform approach for the synthesis of various building blocks from cardanol oil in one or two-steps synthesis. Cardanol is a natural phenol issued from Cashew nutshell liquid (CNSL. CNSL is a non-edible renewable resource, co-produced from cashew industry in large commercial volumes. Cardanol is non-toxic and particularly suitable as an aromatic renewable resource for polymers and materials. Various routes were used for the synthesis of di- and poly-functional building blocks used thereafter in polymer syntheses. Phenolation was used to dimerize/oligomerize cardanol to propose increase functionality of cardanol. Thio-ene was used to synthesize new reactive amines. Epoxidation and (methacrylation were also used to insert oxirane or (methacrylate groups in order to synthesize polymers and materials.

  17. Synthesis of beta-sialon from coal gangue

    Energy Technology Data Exchange (ETDEWEB)

    Luo, X.Y.; Sun, J.L.; Deng, C.J.; Hong, Y.R. [Beijing University Science & Technology, Beijing (China)

    2003-01-01

    It is worth studying the synthesis of beta-Sialon from coal gangue, because coal gangue is a waste of coal production and is a high quality kaolin contained carbon which is a perfect raw material of contained reducer itself for synthesis of beta-sialon. The study showed that a high conversion rate of 95% from coal gangue to beta-Sialon could be obtained by using process of carbothermal reduction nitridation when strictly controlling the thermodynamic conditions of synthesis. For controlling the synthesis conditions, the details of the effects of p(CO), P-O{sub 2} and T on the conversion rate of beta-sialon are discussed and the phase diagrams of oxygen pressure vs composition for Si{sub 3}N{sub 4}-A{sub l}N-Al{sub 2}O{sub 3}-SiO{sub 2} system at 1350, 1500, and 1600{sup o}C are constructed.

  18. Solving fault diagnosis problems linear synthesis techniques

    CERN Document Server

    Varga, Andreas

    2017-01-01

    This book addresses fault detection and isolation topics from a computational perspective. Unlike most existing literature, it bridges the gap between the existing well-developed theoretical results and the realm of reliable computational synthesis procedures. The model-based approach to fault detection and diagnosis has been the subject of ongoing research for the past few decades. While the theoretical aspects of fault diagnosis on the basis of linear models are well understood, most of the computational methods proposed for the synthesis of fault detection and isolation filters are not satisfactory from a numerical standpoint. Several features make this book unique in the fault detection literature: Solution of standard synthesis problems in the most general setting, for both continuous- and discrete-time systems, regardless of whether they are proper or not; consequently, the proposed synthesis procedures can solve a specific problem whenever a solution exists Emphasis on the best numerical algorithms to ...

  19. Application of synthesis methods to two-dimensional fast reactor transient study

    International Nuclear Information System (INIS)

    Izutsu, Sadayuki; Hirakawa, Naohiro

    1978-01-01

    Space time synthesis and time synthesis codes were developed and applied to the space-dependent kinetics benchmark problem of a two-dimensional fast reactor model, and it was found both methods are accurate and economical for the fast reactor kinetics study. Comparison between the space time synthesis and the time synthesis was made. Also, in space time synthesis, the influence of the number of trial functions on the error and on the computing time and the effect of degeneration of expansion coefficients are investigated. The matrix factorization method is applied to the inversion of the matrix equation derived from the synthesis equation, and it is indicated that by the use of this scheme space-dependent kinetics problem of a fast reactor can be solved efficiently by space time synthesis. (auth.)

  20. Machine-learned and codified synthesis parameters of oxide materials

    Science.gov (United States)

    Kim, Edward; Huang, Kevin; Tomala, Alex; Matthews, Sara; Strubell, Emma; Saunders, Adam; McCallum, Andrew; Olivetti, Elsa

    2017-09-01

    Predictive materials design has rapidly accelerated in recent years with the advent of large-scale resources, such as materials structure and property databases generated by ab initio computations. In the absence of analogous ab initio frameworks for materials synthesis, high-throughput and machine learning techniques have recently been harnessed to generate synthesis strategies for select materials of interest. Still, a community-accessible, autonomously-compiled synthesis planning resource which spans across materials systems has not yet been developed. In this work, we present a collection of aggregated synthesis parameters computed using the text contained within over 640,000 journal articles using state-of-the-art natural language processing and machine learning techniques. We provide a dataset of synthesis parameters, compiled autonomously across 30 different oxide systems, in a format optimized for planning novel syntheses of materials.

  1. Synthesis Polarimetry Calibration

    Science.gov (United States)

    Moellenbrock, George

    2017-10-01

    Synthesis instrumental polarization calibration fundamentals for both linear (ALMA) and circular (EVLA) feed bases are reviewed, with special attention to the calibration heuristics supported in CASA. Practical problems affecting modern instruments are also discussed.

  2. Developing a Translator from C Programs to Data Flow Graphs Using RAISE

    DEFF Research Database (Denmark)

    Haxthausen, Anne Elisabeth

    1996-01-01

    Describes how a translator from a subset of C to data flow graphs has been formally developed using the RAISE (Rigorous Approach to Industrial Software Engineering) method and tools. In contrast to many development examples described in the literature, this development is not a case study......, but a real one, and it covers all development phases, including the code-generation phase. The translator is now one of the components of the LYCOS (LYngby CO-Synthesis) system, which is a software/hardware co-synthesis system under development at the Technical University of Denmark. The translator, together...... with the other components of LYCOS, provides a means for moving parts of C programs to dedicated hardware, thereby obtaining better performance. The translator was refined in steps, starting with an abstract specification and ending with a concrete specification from which C++ code was then automatically...

  3. In vitro synthesis of a lipid-linked trisaccharide involved in synthesis of enterobacterial common antigen

    International Nuclear Information System (INIS)

    Barr, K.; Nunes-Edwards, P.; Rick, P.D.

    1989-01-01

    The heteropolysaccharide chains of enterobacterial common antigen (ECA) are made up of linear trisaccharide repeat units with the structure----3)-alpha-D-Fuc4NAc-(1----4)- beta-D-ManNAcA-(1----4)-alpha-D-GlcNAc-(1----, where Fuc4NAc is 4-acetamido-4,6-dideoxy-D-galactose, ManNAcA is N-acetyl-D-mannosaminuronic acid, and GlcNAc is N-acetyl-D-glucosamine. The assembly of these chains involves lipid-linked intermediates, and both GlcNAc-pyrophosphorylundecaprenol (lipid I) and ManNAcA-GlcNAc-pyrophosphorylundecaprenol (lipid II) are intermediates in ECA biosynthesis. In this study we demonstrated that lipid II serves as the acceptor of Fuc4NAc residues in the assembly of the trisaccharide repeat unit of ECA chains. Incubation of Escherichia coli membranes with UDP-GlcNAc, UDP-[14C]ManNAcA, and TDP-[3H]Fuc4NAc resulted in the synthesis of a radioactive glycolipid (lipid III) that contained both [14C]ManNAcA and [3H]Fuc4NAc. The oligosaccharide moiety of lipid III was identified as a trisaccharide by gel-permeation chromatography, and the in vitro synthesis of lipid III was dependent on prior synthesis of lipids I and II. Accordingly, the incorporation of [3H]Fuc4NAc into lipid III from the donor TDP-[3H]Fuc4NAc was dependent on the presence of both UDP-GlcNAc and UDP-ManNAcA in the reaction mixtures. In addition, the in vitro synthesis of lipid III was abolished by tunicamycin. Direct conversion of lipid II to lipid III was demonstrated in two-stage reactions in which membranes were initially incubated with UDP-GlcNAc and UDP-[14C]ManNAcA to allow the synthesis of radioactive lipid II

  4. Synthesis of ammonia with microwave plasma

    International Nuclear Information System (INIS)

    Xu Wenguo; Yu Aimin; Liu Jun; Jin Qinhan

    1991-01-01

    THe synthesis of ammonia absorbed on 13X zeolite with the aid of microwave plasma is described. The ammonia molecule absorbed on 13X zeolite as ammonium ions were detected by IR spectroscopy. The results obtained show that the ammonia synthesis is facilitated by the surface reactions of NH x (x = 1, 2) radicals adsorbed on zeolite with hydrogen atoms

  5. Synthesis and Photophysical Characterizations of Thermal -Stable Naphthalene Benzimidazoles

    OpenAIRE

    Erten Ela, Şule; Özçelik, Serdar; Eren, Ersin

    2011-01-01

    Microwave-assisted synthesis, photophysical and electrochemical properties of thermal-stable naphthalene benzimidazoles and naphthalimides are studied in this paper. Microwave-assisted synthesis of naphthalene benzimidazoles provide higher yields than the conventional thermal synthesis. Comparative photophysical properties of naphthalene benzimidazoles and naphthalimides are revealed that conjugation of electron-donating group onto naphthalimide moiety increases fluorescence ...

  6. Chemistry of Renieramycins. Part 14: Total Synthesis of Renieramycin I and Practical Synthesis of Cribrostatin 4 (Renieramycin H

    Directory of Open Access Journals (Sweden)

    Masashi Yokoya

    2015-08-01

    Full Text Available The first total synthesis of (±-renieramycin I, which was isolated from the Indian bright blue sponge Haliclona cribricutis, is described. The key step is the selenium oxide oxidation of pentacyclic bis-p-quinone derivative (3 stereo- and regioselectively. We also report a large-scale synthesis of cribrostatin 4 (renieramycin H via the C3-C4 double bond formation in an early stage based on the Avendaño’s protocol, from readily available 1-acetyl-3-(3-methyl-2,4,5-trimethylphenylmethyl-piperazine-2,5-dione (8 in 18 steps (8.3% overall yield. The synthesis provides unambiguous evidence supporting the original structure of renieramycin I.

  7. Accelerate synthesis in ecology and environmental sciences

    Science.gov (United States)

    Synthesis of diverse knowledge is a central part of all sciences, but especially those such as ecology and environmental sciences which draw information from many disciplines. Research and education in ecology are intrinsically synthetic, and synthesis is increasingly needed to find solutions for en...

  8. N-Acyliminium Intermediates in Solid-Phase Synthesis

    DEFF Research Database (Denmark)

    Quement, Sebastian Thordal le; Petersen, Rico; Meldal, M.

    2010-01-01

    N-Acyliminium ions are powerful intermediates in synthetic organic chemistry. Examples of their use are numerous in solution-phase synthesis, but there are unmerited few reports on these highly reactive electrophiles in solid-phase synthesis. The present review covers the literature to date and i...

  9. Principles of digital image synthesis

    CERN Document Server

    Glassner, Andrew S

    1995-01-01

    Image synthesis, or rendering, is a field of transformation: it changesgeometry and physics into meaningful images. Because the most popularalgorithms frequently change, it is increasingly important for researchersand implementors to have a basic understanding of the principles of imagesynthesis. Focusing on theory, Andrew Glassner provides a comprehensiveexplanation of the three core fields of study that come together to formdigital image synthesis: the human visual system, digital signalprocessing, and the interaction of matter and light. Assuming no more thana basic background in calculus,

  10. Biosurfactants as green stabilizers for the biological synthesis of nanoparticles.

    Science.gov (United States)

    Kiran, G Seghal; Selvin, Joseph; Manilal, Aseer; Sujith, S

    2011-12-01

    Taking into consideration the needs of greener bioprocesses and novel enhancers for synthesis using microbial processes, biosurfactants, and/or biosurfactant producing microbes are emerging as an alternate source for the rapid synthesis of nanoparticles. A microemulsion technique using an oil-water-surfactant mixture was shown to be a promising approach for nanoparticle synthesis. Biosurfactants are natural surfactants derived from microbial origin composed mostly of sugar and fatty acid moieties, they have higher biodegradability, lower toxicity, and excellent biological activities. The biosurfactant mediated process and microbial synthesis of nanoparticles are now emerging as clean, nontoxic, and environmentally acceptable "green chemistry" procedures. The biosurfactant-mediated synthesis is superior to the methods of bacterial- or fungal-mediated nanoparticle synthesis, since biosurfactants reduce the formation of aggregates due to the electrostatic forces of attraction and facilitate a uniform morphology of the nanoparticles. In this review, we highlight the biosurfactant mediated synthesis of nanoparticles with relevant details including a greener bioprocess, sources of biosurfactants, and biological synthesized nanoparticles based on the available literature and laboratory findings.

  11. Synthesis of crystalline ceramics for actinide immobilisation

    International Nuclear Information System (INIS)

    Burakov, B.; Gribova, V.; Kitsay, A.; Ojovan, M.; Hyatt, N.C.; Stennett, M.C.

    2007-01-01

    Methods for the synthesis of ceramic wasteforms for the immobilization of actinides are common to those for non-radioactive ceramics: hot uniaxial pressing (HUP); hot isostatic pressing (HIP); cold pressing followed by sintering; melting (for some specific ceramics, such as garnet/perovskite composites). Synthesis of ceramics doped with radionuclides is characterized with some important considerations: all the radionuclides should be incorporated into crystalline structure of durable host-phases in the form of solid solutions and no separate phases of radionuclides should be present in the matrix of final ceramic wasteform; all procedures of starting precursor preparation and ceramic synthesis should follow safety requirements of nuclear industry. Synthesis methods that avoid the use of very high temperatures and pressures and are easily accomplished within the environment of a glove-box or hot cell are preferable. Knowledge transfer between the V. G. Khlopin Radium Institute (KRI, Russia) and Immobilisation Science Laboratory (ISL, UK) was facilitated in the framework of a joint project supported by UK Royal Society. In order to introduce methods of precursor preparation and ceramic synthesis we selected well-known procedures readily deployable in radiochemical processing plants. We accounted that training should include main types of ceramic wasteforms which are currently discussed for industrial applications. (authors)

  12. The effect of laser repetition rate on the LASiS synthesis of biocompatible silver nanoparticles in aqueous starch solution

    Directory of Open Access Journals (Sweden)

    Zamiri R

    2013-01-01

    Full Text Available Reza Zamiri,1 Azmi Zakaria,1,* Hossein Abbastabar Ahangar,2 Majid Darroudi,3 Golnoosh Zamiri,1 Zahid Rizwan,1 Gregor PC Drummen4,* 1Department of Physics, Faculty of Science, Universiti Putra Malaysia, Serdang, Selangor, Malaysia; 2Department of Chemistry, Faculty of Science, Universiti Putra Malaysia, Selangor Darul Ehsan, Malaysia; 3Advanced Materials and Nanotechnology Laboratory, Institute of Advanced Technology (ITMA, Universiti Putra Malaysia, Serdang, Selangor, Malaysia; 4Bionanoscience and Bio-Imaging Program, Cellular Stress and Ageing Program, Bio&Nano-Solutions, Düsseldorf, Germany*These authors contributed to this work equallyAbstract: Laser ablation-based nanoparticle synthesis in solution is rapidly becoming popular, particularly for potential biomedical and life science applications. This method promises one pot synthesis and concomitant bio-functionalization, is devoid of toxic chemicals, does not require complicated apparatus, can be combined with natural stabilizers, is directly biocompatible, and has high particle size uniformity. Size control and reduction is generally determined by the laser settings; that the size and size distribution scales with laser fluence is well described. Conversely, the effect of the laser repetition rate on the final nanoparticle product in laser ablation is less well-documented, especially in the presence of stabilizers. Here, the influence of the laser repetition rate during laser ablation synthesis of silver nanoparticles in the presence of starch as a stabilizer was investigated. The increment of the repetition rate does not negatively influence the ablation efficiency, but rather shows increased productivity, causes a red-shift in the plasmon resonance peak of the silver–starch nanoparticles, an increase in mean particle size and size distribution, and a distinct lack of agglomerate formation. Optimal results were achieved at 10 Hz repetition rate, with a mean particle size of ~10 nm and a

  13. Chemistry of Ammonothermal Synthesis

    Directory of Open Access Journals (Sweden)

    Theresia M. M. Richter

    2014-02-01

    Full Text Available Ammonothermal synthesis is a method for synthesis and crystal growth suitable for a large range of chemically different materials, such as nitrides (e.g., GaN, AlN, amides (e.g., LiNH2, Zn(NH22, imides (e.g., Th(NH2, ammoniates (e.g., Ga(NH33F3, [Al(NH36]I3 · NH3 and non-nitrogen compounds like hydroxides, hydrogen sulfides and polychalcogenides (e.g., NaOH, LiHS, CaS, Cs2Te5. In particular, large scale production of high quality crystals is possible, due to comparatively simple scalability of the experimental set-up. The ammonothermal method is defined as employing a heterogeneous reaction in ammonia as one homogenous fluid close to or in supercritical state. Three types of milieus may be applied during ammonothermal synthesis: ammonobasic, ammononeutral or ammonoacidic, evoked by the used starting materials and mineralizers, strongly influencing the obtained products. There is little known about the dissolution and materials transport processes or the deposition mechanisms during ammonothermal crystal growth. However, the initial results indicate the possible nature of different intermediate species present in the respective milieus.

  14. Protein synthesis and the recovery of both survival and cytoplasmic "petite" mutation in ultraviolet-treated yeast cells. I. Nuclear-directed protein synthesis.

    Science.gov (United States)

    Heude, M; Chanet, R; Moustacchi, E

    1975-04-01

    The contribution of nuclear-directed protein synthesis in the repair of lethal and mitochondrial genetic damage after UV-irradiation of exponential and stationary phage haploid yeast cells was examined. This was carried out using cycloheximide (CH), a specific inhibitor of nuclear protein synthesis. It appears that nuclear protein synthesis is required for the increase in survival seen after the liquid holding of cells at both stages, as well as for the "petite" recovery seen after the liquid holding of exponential phase cells. The characteristic negative liquid holding effect observed for the UV induction of "petites" in stationary phase cells (increase of the frequency of "petites" during storage) remained following all the treatments which inhibited nuclear protein synthesis. However, the application of photoreactivating light following dark holding with cycloheximide indicates that some steps of the repair of both nuclear and mitochondrial damage are performed in the absence of a synthesis of proteins.

  15. Supercritical Synthesis of Biodiesel

    Directory of Open Access Journals (Sweden)

    Michel Vaultier

    2012-07-01

    Full Text Available The synthesis of biodiesel fuel from lipids (vegetable oils and animal fats has gained in importance as a possible source of renewable non-fossil energy in an attempt to reduce our dependence on petroleum-based fuels. The catalytic processes commonly used for the production of biodiesel fuel present a series of limitations and drawbacks, among them the high energy consumption required for complex purification operations and undesirable side reactions. Supercritical fluid (SCF technologies offer an interesting alternative to conventional processes for preparing biodiesel. This review highlights the advances, advantages, drawbacks and new tendencies involved in the use of supercritical fluids (SCFs for biodiesel synthesis.

  16. Synthesis and characterization of iron cobalt (FECO) nanorods ...

    African Journals Online (AJOL)

    Synthesis and characterization of iron cobalt (FECO) nanorods prepared by simple ... shaped by increasing annealing temperature from room temperature to 800 ... Keywords: FeCo nanoparticles, sodium borohydrid, CTAB, chemical synthesis ...

  17. Jointly Sponsored Research Program on Energy Related Research

    Energy Technology Data Exchange (ETDEWEB)

    No, author

    2013-12-31

    competitiveness of U.S. energy technologies in international markets and assisting in technology transfer. Under the Cooperative Agreement Program, WRI has furthered the development of two different coal upgrading technologies. River Basin Energy technology was scaled-up and demonstrated at a nominal 40 tpd size. Similarly, WRI’s patented mercury removal technology further developed into WRITE Coal technology which was then integrated into oxy-combustion and gasification systems for IGCC and fuels production. Integrated systems with WRITE Coal technology applied at the front end represent substantial environmental and efficiency gains. A variation of the RBE coal upgrading technology is being commercialized as a torrefaction technology for woody biomass. WRI worked with EPRI and NIST to develop and improve mercury calibration standards for emissions monitoring. Working with Chart Energy and Chemicals, WRI scaled-up compact reactor technology for the synthesis of fuels and chemicals from syngas. Compact reactor technology represents a five-fold increase in productivity over conventional reactors making smaller-scale distributed synthesis plants an economical viability. Similarly, WRI's patented mixed alcohol synthesis catalyst production is being scaled-up in collaboration with a commercial catalyst manufacturer.

  18. Waste utilization for the controlled synthesis of nanosized hydroxyapatite

    Energy Technology Data Exchange (ETDEWEB)

    Nayar, Suprabha, E-mail: Suprabha.nayar@gmail.com [National Metallurgical Laboratory, Jamshedpur (India); Guha, Avijit [National Metallurgical Laboratory, Jamshedpur (India)

    2009-05-05

    This work uses biomolecules in waste and medicinally important materials for the synthesis of hydroxyapatite nanoparticles. Orange and potato peel, eggshell, papaya leaf and calendula flower extracts have varied biomolecules, which exert a significant, control on the in situ synthesis of nanosized hydroxyapatite particles. The biomimetic synthesis of inorganic particles using known matrices is already well established, however, there are only a few reports using compound extracts. The synthesized nanocomposite has been characterized using X-ray diffraction, Fourier transform infrared spectroscopy and scanning electron microscopy studies. Role of varied biomolecules in controlled inorganic synthesis may have tremendous technological impact.

  19. Novel Green Synthesis and Characterization of Nanopolymer ...

    African Journals Online (AJOL)

    Purpose: To develop a novel approach to green synthesis of nano-polymer porous gold oxide nanoparticles, and examine the effects of the temperatures on their surface. Methods: Green synthesis of nano-polymer porous gold oxide nanoparticles (GONPs) using cetyle trimethylammonium bromide (CTAB) surfactant with a ...

  20. Synthesis-Spectroscopy Roadmap Problems: Discovering Organic Chemistry

    Science.gov (United States)

    Kurth, Laurie L.; Kurth, Mark J.

    2014-01-01

    Organic chemistry problems that interrelate and integrate synthesis with spectroscopy are presented. These synthesis-spectroscopy roadmap (SSR) problems uniquely engage second-year undergraduate organic chemistry students in the personal discovery of organic chemistry. SSR problems counter the memorize-or-bust strategy that many students tend to…

  1. Swelling of rat hepatocytes stimulates glycogen synthesis

    NARCIS (Netherlands)

    Baquet, A.; Hue, L.; Meijer, A. J.; van Woerkom, G. M.; Plomp, P. J.

    1990-01-01

    In hepatocytes from fasted rats, several amino acids are known to stimulate glycogen synthesis via activation of glycogen synthase. The hypothesis that an increase in cell volume resulting from amino acid uptake may be involved in the stimulation of glycogen synthesis is supported by the following

  2. Chronological protein synthesis in regenerating rat liver.

    Science.gov (United States)

    He, Jinjun; Hao, Shuai; Zhang, Hao; Guo, Fuzheng; Huang, Lingyun; Xiao, Xueyuan; He, Dacheng

    2015-07-01

    Liver regeneration has been studied for decades; however, its regulation remains unclear. In this study, we report a dynamic tracing of protein synthesis in rat regenerating liver with a new proteomic technique, (35) S in vivo labeling analysis for dynamic proteomics (SiLAD). Conventional proteomic techniques typically measure protein alteration in accumulated amounts. The SiLAD technique specifically detects protein synthesis velocity instead of accumulated amounts of protein through (35) S pulse labeling of newly synthesized proteins, providing a direct way for analyzing protein synthesis variations. Consequently, protein synthesis within short as 30 min was visualized and protein regulations in the first 8 h of regenerating liver were dynamically traced. Further, the 3.5-5 h post partial hepatectomy (PHx) was shown to be an important regulatory turning point by acute regulation of many proteins in the initiation of liver regeneration. © 2015 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  3. Evaluations of Sexual Assault Prevention Programs in Military Settings: A Synthesis of the Research Literature.

    Science.gov (United States)

    Orchowski, Lindsay M; Berry-Cabán, Cristóbal S; Prisock, Kara; Borsari, Brian; Kazemi, Donna M

    2018-03-01

    The prevention of sexual assault (SA) in the U.S. military is a significant priority. This study applied the Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) guidelines to a literature search that identified research evaluating SA prevention programs conducted within military settings. Only six studies published between 2005 and 2016 met criteria for inclusion in the review. Studies demonstrated high heterogeneity in the: (1) conceptual framework of the prevention approach; (2) target population and timing of administration; (3) study recruitment methods; (4) methodological design; (5) method of delivery, program dosage and theory of change; and (6) outcome administration and efficacy. Scientific rigor according to the Oxford Center for Evidence-based Medicine was also variable. Several gaps in the research base were identified. Specifically, research evaluating SA prevention programs have only been conducted among U.S. Army and U.S. Navy samples. Most studies did not examine whether program participation was associated with reductions in rates of sexual violence. Studies also lacked utilization of a long-term follow-up period. Additionally, studies did not reflect the types of SA prevention programs currently being implemented in military settings. Taken together, further research is needed to enhance the evidence base for SA prevention in the military, and to evaluate the effectiveness of the approaches currently being conducted with service members.

  4. GITTAM program for numerical simulation of one-dimensional targets TIS. Part 2

    International Nuclear Information System (INIS)

    Arpishkin, Yu.P.; Basko, M.M.; Sokolovskij, M.V.

    1989-01-01

    A finite-difference algorithm for numeric solution of a system of one-dimensional hydrodynamics equation with heat conductivity, radiation diffusion and thermonuclear combustion is considered. The algorithm presented allows one to simulate one-dimensional thermonuclear targets for heavy-ion synthesis (HIS), irradiated with heavy ion beams. A brief description of a complex of GITTAM programs in which finite-difference algorithm for one-dimensional thermonuclear HIS target simulation is used, is given. 5 refs.; 3 figs

  5. Effects of S-adenosylmethionine decarboxylase, polyamines, amino acids, and weak bases (amines and ammonia) on development and ribosomal RNA synthesis in Xenopus embryos.

    Science.gov (United States)

    Shiokawa, Koichiro; Aso, Mai; Kondo, Takeshi; Takai, Jun-Ichi; Yoshida, Junki; Mishina, Takamichi; Fuchimukai, Kota; Ogasawara, Tsukasa; Kariya, Taro; Tashiro, Kosuke; Igarashi, Kazuei

    2010-02-01

    We have been studying control mechanisms of gene expression in early embryogenesis in a South African clawed toad Xenopus laevis, especially during the period of midblastula transition (MBT), or the transition from the phase of active cell division (cleavage stage) to the phase of extensive morphogenesis (post-blastular stages). We first found that ribosomal RNA synthesis is initiated shortly after MBT in Xenopus embryos and those weak bases, such as amines and ammonium ion, selectively inhibit the initiation and subsequent activation of rRNA synthesis. We then found that rapidly labeled heterogeneous mRNA-like RNA is synthesized in embryos at pre-MBT stage. We then performed cloning and expression studies of several genes, such as those for activin receptors, follistatin and aldolases, and then reached the studies of S-adenosylmethionine decarboxylase (SAMDC), a key enzyme in polyamine metabolism. Here, we cloned a Xenopus SAMDC cDNA and performed experiments to overexpress the in vitro-synthesized SAMDC mRNA in Xenopus early embryos, and found that the maternally preset program of apoptosis occurs in cleavage stage embryos, which is executed when embryos reach the stage of MBT. In the present article, we first summarize results on SAMDC and the maternal program of apoptosis, and then describe our studies on small-molecular-weight substances like polyamines, amino acids, and amines in Xenopus embryos. Finally, we summarize our studies on weak bases, especially on ammonium ion, as the specific inhibitor of ribosomal RNA synthesis in Xenopus embryonic cells.

  6. Facile microwave synthesis of uniform magnetic nanoparticles with minimal sample processing

    Energy Technology Data Exchange (ETDEWEB)

    Schneider, Thomas, E-mail: tom.schneider@ubc.ca [Faculty of Pharmaceutical Sciences, University of British Columbia, Vancouver, BC, V6T 1Z3 Canada (Canada); Löwa, Anna; Karagiozov, Stoyan [Faculty of Pharmaceutical Sciences, University of British Columbia, Vancouver, BC, V6T 1Z3 Canada (Canada); Sprenger, Lisa [Faculty of Pharmaceutical Sciences, University of British Columbia, Vancouver, BC, V6T 1Z3 Canada (Canada); TU Dresden, Chair of Magnetofluiddynamics, Measuring and Automation Technology, Dresden, 01062 Germany (Germany); Gutiérrez, Lucía [Instituto Universitario de Nanociencia de Aragón (INA), University of Zaragoza, Zaragoza, 50018 Spain (Spain); Esposito, Tullio; Marten, Gernot; Saatchi, Katayoun [Faculty of Pharmaceutical Sciences, University of British Columbia, Vancouver, BC, V6T 1Z3 Canada (Canada); Häfeli, Urs O., E-mail: urs.hafeli@ubc.ca [Faculty of Pharmaceutical Sciences, University of British Columbia, Vancouver, BC, V6T 1Z3 Canada (Canada)

    2017-01-01

    We present a simple and rapid method for the synthesis of small magnetic nanoparticles (diameters in the order of 5–20 nm) and narrow size distributions (CV's of 20–40%). The magnetite nanoparticles were synthesized in green solvents within minutes and the saturation magnetization of the particles was tunable by changes in the reaction conditions. We show that this particle synthesis method requires minimal processing steps and we present the successful coating of the particles with reactive bisphosphonates after synthesis without washing or centrifugation. We found minimal batch-to-batch variability and show the scalability of the particle synthesis method. We present a full characterization of the particle properties and believe that this synthesis method holds great promise for facile and rapid generation of magnetic nanoparticles with defined surface coatings for magnetic targeting applications. - Highlights: ●Rapid and facile synthesis of magnetic nanoparticles. ●Microwave synthesis in green solvent. ●Magnetite MNPs with small sizes and high saturation magnetization. ●Tunable particle properties depending on heating duration. ●Scalable MNP synthesis.

  7. Hologlyphics: volumetric image synthesis performance system

    Science.gov (United States)

    Funk, Walter

    2008-02-01

    This paper describes a novel volumetric image synthesis system and artistic technique, which generate moving volumetric images in real-time, integrated with music. The system, called the Hologlyphic Funkalizer, is performance based, wherein the images and sound are controlled by a live performer, for the purposes of entertaining a live audience and creating a performance art form unique to volumetric and autostereoscopic images. While currently configured for a specific parallax barrier display, the Hologlyphic Funkalizer's architecture is completely adaptable to various volumetric and autostereoscopic display technologies. Sound is distributed through a multi-channel audio system; currently a quadraphonic speaker setup is implemented. The system controls volumetric image synthesis, production of music and spatial sound via acoustic analysis and human gestural control, using a dedicated control panel, motion sensors, and multiple musical keyboards. Music can be produced by external acoustic instruments, pre-recorded sounds or custom audio synthesis integrated with the volumetric image synthesis. Aspects of the sound can control the evolution of images and visa versa. Sounds can be associated and interact with images, for example voice synthesis can be combined with an animated volumetric mouth, where nuances of generated speech modulate the mouth's expressiveness. Different images can be sent to up to 4 separate displays. The system applies many novel volumetric special effects, and extends several film and video special effects into the volumetric realm. Extensive and various content has been developed and shown to live audiences by a live performer. Real world applications will be explored, with feedback on the human factors.

  8. Research progress in the electrochemical synthesis of ferrate(VI)

    International Nuclear Information System (INIS)

    Macova, Zuzana; Bouzek, Karel; Hives, Jan; Sharma, Virender K.; Terryn, Raymond J.; Baum, J. Clayton

    2009-01-01

    There is renewed interest in the +6 oxidation state of iron, ferrate (VI) (Fe VI O 4 2- ), because of its potential as a benign oxidant for organic synthesis, as a chemical in developing cleaner ('greener') technology for remediation processes, and as an alternative for environment-friendly battery cathodes. This interest has led many researchers to focus their attention on the synthesis of ferrate(VI). Of the three synthesis methods, electrochemical, wet chemical and thermal, electrochemical synthesis has received the most attention due to its ease and the high purity of the product. Moreover, electrochemical processes use an electron as a so-called clean chemical, thus avoiding the use of any harmful chemicals to oxidize iron to the +6 oxidation state. This paper reviews the development of electrochemical methods to synthesize ferrate(VI). The approaches chosen by different laboratories to overcome some of the difficulties associated with the electrochemical synthesis of ferrate(VI) are summarized. Special attention is paid to parameters such as temperature, anolyte, and anode material composition. Spectroscopic work to understand the mechanism of ferrate(VI) synthesis is included. Recent advances in two new approaches, the use of an inert electrode and molten hydroxide salts, in the synthesis of ferrate(VI) are also reviewed. Progress made in the commercialization of ferrate(VI) continuous production is briefly discussed as well

  9. Stimulation of poliovirus RNA synthesis and virus maturation in a HeLa cell-free in vitro translation-RNA replication system by viral protein 3CDpro

    Directory of Open Access Journals (Sweden)

    Wimmer Eckard

    2005-11-01

    Full Text Available Abstract Poliovirus protein 3CDpro possesses both proteinase and RNA binding activities, which are located in the 3Cpro domain of the protein. The RNA polymerase (3Dpol domain of 3CDpro modulates these activities of the protein. We have recently shown that the level of 3CDpro in HeLa cell-free in vitro translation-RNA replication reactions is suboptimal for efficient virus production. However, the addition of either 3CDpro mRNA or of purified 3CDpro protein to in vitro reactions, programmed with viral RNA, results in a 100-fold increase in virus yield. Mutational analyses of 3CDpro indicated that RNA binding by the 3Cpro domain and the integrity of interface I in the 3Dpol domain of the protein are both required for function. The aim of these studies was to determine the exact step or steps at which 3CDpro enhances virus yield and to determine the mechanism by which this occurs. Our results suggest that the addition of extra 3CDpro to in vitro translation RNA-replication reactions results in a mild enhancement of both minus and plus strand RNA synthesis. By examining the viral particles formed in the in vitro reactions on sucrose gradients we determined that 3CDpro has only a slight stimulating effect on the synthesis of capsid precursors but it strikingly enhances the maturation of virus particles. Both the stimulation of RNA synthesis and the maturation of the virus particles are dependent on the presence of an intact RNA binding site within the 3Cpro domain of 3CDpro. In addition, the integrity of interface I in the 3Dpol domain of 3CDpro is required for efficient production of mature virus. Surprisingly, plus strand RNA synthesis and virus production in in vitro reactions, programmed with full-length transcript RNA, are not enhanced by the addition of extra 3CDpro. Our results indicate that the stimulation of RNA synthesis and virus maturation by 3CDpro in vitro is dependent on the presence of a VPg-linked RNA template.

  10. Transdisciplinary synthesis for ecosystem science, policy and management: The Australian experience.

    Science.gov (United States)

    Lynch, A J J; Thackway, R; Specht, A; Beggs, P J; Brisbane, S; Burns, E L; Byrne, M; Capon, S J; Casanova, M T; Clarke, P A; Davies, J M; Dovers, S; Dwyer, R G; Ens, E; Fisher, D O; Flanigan, M; Garnier, E; Guru, S M; Kilminster, K; Locke, J; Mac Nally, R; McMahon, K M; Mitchell, P J; Pierson, J C; Rodgers, E M; Russell-Smith, J; Udy, J; Waycott, M

    2015-11-15

    Mitigating the environmental effects of global population growth, climatic change and increasing socio-ecological complexity is a daunting challenge. To tackle this requires synthesis: the integration of disparate information to generate novel insights from heterogeneous, complex situations where there are diverse perspectives. Since 1995, a structured approach to inter-, multi- and trans-disciplinary(1) collaboration around big science questions has been supported through synthesis centres around the world. These centres are finding an expanding role due to ever-accumulating data and the need for more and better opportunities to develop transdisciplinary and holistic approaches to solve real-world problems. The Australian Centre for Ecological Analysis and Synthesis (ACEAS ) has been the pioneering ecosystem science synthesis centre in the Southern Hemisphere. Such centres provide analysis and synthesis opportunities for time-pressed scientists, policy-makers and managers. They provide the scientific and organisational environs for virtual and face-to-face engagement, impetus for integration, data and methodological support, and innovative ways to deliver synthesis products. We detail the contribution, role and value of synthesis using ACEAS to exemplify the capacity for synthesis centres to facilitate trans-organisational, transdisciplinary synthesis. We compare ACEAS to other international synthesis centres, and describe how it facilitated project teams and its objective of linking natural resource science to policy to management. Scientists and managers were brought together to actively collaborate in multi-institutional, cross-sectoral and transdisciplinary research on contemporary ecological problems. The teams analysed, integrated and synthesised existing data to co-develop solution-oriented publications and management recommendations that might otherwise not have been produced. We identify key outcomes of some ACEAS working groups which used synthesis to

  11. Natural Product Total Synthesis in the Organic Laboratory: Total Synthesis of Caffeic Acid Phenethyl Ester (CAPE), a Potent 5-Lipoxygenase Inhibitor from Honeybee Hives

    Science.gov (United States)

    Touaibia, Mohamed; Guay, Michel

    2011-01-01

    Natural products play a critical role in modern organic synthesis and learning synthetic techniques is an important component of the organic laboratory experience. In addition to traditional one-step organic synthesis laboratories, a multistep natural product synthesis is an interesting experiment to challenge students. The proposed three-step…

  12. Synthesis of protargol

    International Nuclear Information System (INIS)

    Baratova, Z.R.; Sattarova, M.A.; Abdurakhmanov, A.Kh.; Solojenkin, P.M.

    1997-01-01

    This paper is devoted to synthesis of protargol containing 7,5-8,3% of silver. The flowsheet of obtaining of protargol was elaborated. The obtained protargol contains 7,5% of silver, insoluble in alcohol, ether and chloroform.

  13. γ-irradiation induces radioresistant DNA synthesis in HeLa cells

    International Nuclear Information System (INIS)

    Synzynys, B.I.; Aminev, A.G.; Konstantinova, S.A.; Saenko, A.S.

    1987-01-01

    Cells of suspension HeLa culture at the logarithmic phase of growth were exposed to 60 Co-γ-rays (5 Gy), incubated in the nutritious medium, and in 4 h subjected to repeated irradiation: the dose-response function and the dynamics of DNA synthesis inhibition were determined. It was shown that DNA synthesis was inhibited to a lesser extent after preirradiation, in other words, DNA synthesis was radioresistant. A correlation between this synthesis and reproductive cell death is discussed

  14. Ferroic materials synthesis and applications

    CERN Document Server

    Virk, Hardev Singh

    2015-01-01

    Ferroics is the generic name given to the study of ferromagnets, ferroelectrics, and ferroelastics. The basis of this study is to understand the large changes in physical characteristics that occur over a very narrow temperature range. In recent years, a new class of ferroic materials has been attracting increased interest. These multiferroics exhibit more than one ferroic property simultaneously in a single phase. The present volume: ""Ferroic Materials: Synthesis and Applications"" has ten Chapters, spread over areas as diverse as Magnetic Oxide Nanomaterials, Ferrites Synthesis, Hexaferrite

  15. Synthesis of magnetic polymeric microspheres

    Energy Technology Data Exchange (ETDEWEB)

    Gervald, A Yu; Gritskova, Inessa A; Prokopov, Nikolai I [M.V. Lomonosov Moscow State Academy of Fine Chemical Technology, Moscow (Russian Federation)

    2010-05-13

    The key types of magnetic polymeric microspheres are considered. Methods of synthesis of different types of magnetic nanoparticles and of preparation of stable magnetic fluids on their basis are outlined. The overview of the methods for the manufacture of magnetic polymeric microspheres is presented. The effect of the synthesis conditions on the characteristics of magnetic polymeric microspheres such as the diameter and the particle size distribution and the content of magnetic material is discussed by particular examples. The application fields of magnetic polymeric microspheres are briefly surveyed.

  16. Synthesis of magnetic polymeric microspheres

    International Nuclear Information System (INIS)

    Gervald, A Yu; Gritskova, Inessa A; Prokopov, Nikolai I

    2010-01-01

    The key types of magnetic polymeric microspheres are considered. Methods of synthesis of different types of magnetic nanoparticles and of preparation of stable magnetic fluids on their basis are outlined. The overview of the methods for the manufacture of magnetic polymeric microspheres is presented. The effect of the synthesis conditions on the characteristics of magnetic polymeric microspheres such as the diameter and the particle size distribution and the content of magnetic material is discussed by particular examples. The application fields of magnetic polymeric microspheres are briefly surveyed.

  17. Protein degradation and protein synthesis in long-term memory formation

    Directory of Open Access Journals (Sweden)

    Timothy J Jarome

    2014-06-01

    Full Text Available Long-term memory (LTM formation requires transient changes in the activity of intracellular signaling cascades that are thought to regulate new gene transcription and de novo protein synthesis in the brain. Consistent with this, protein synthesis inhibitors impair LTM for a variety of behavioral tasks when infused into the brain around the time of training or following memory retrieval, suggesting that protein synthesis is a critical step in LTM storage in the brain. However, evidence suggests that protein degradation mediated by the ubiquitin-proteasome system may also be a critical regulator of LTM formation and stability following retrieval. This requirement for increased protein degradation has been shown in the same brain regions in which protein synthesis is required for LTM storage. Additionally, increases in the phosphorylation of proteins involved in translational control parallel increases in protein polyubiquitination and the increased demand for protein degradation is regulated by intracellular signaling molecules thought to regulate protein synthesis during LTM formation. In some cases inhibiting proteasome activity can rescue memory impairments that result from pharmacological blockade of protein synthesis, suggesting that protein degradation may control the requirement for protein synthesis during the memory storage process. Results such as these suggest that protein degradation and synthesis are both critical for LTM formation and may interact to properly consolidate and store memories in the brain. Here, we review the evidence implicating protein synthesis and degradation in LTM storage and highlight the areas of overlap between these two opposing processes. We also discuss evidence suggesting these two processes may interact to properly form and store memories. LTM storage likely requires a coordinated regulation between protein degradation and synthesis at multiple sites in the mammalian brain.

  18. Ultrafast Hydro-Micromechanical Synthesis of Calcium Zincate: Structural and Morphological Characterizations

    Directory of Open Access Journals (Sweden)

    Vincent Caldeira

    2017-01-01

    Full Text Available Calcium zincate is a compound with a large panel of application: mainly known as an advantageous replacement of zinc oxide in negative electrodes for air-zinc or nickel-zinc batteries, it is also used as precursor catalyst in biodiesel synthesis and as antifungal compound for the protection of limestone monuments. However, its synthesis is not optimized yet. In this study, it was elaborated using an ultrafast synthesis protocol: Hydro-Micromechanical Synthesis. Two other synthesis methods, Hydrochemical Synthesis and Hydrothermal Synthesis, were used for comparison. In all cases, the as-synthesized samples were analyzed by X-ray diffraction, scanning electron microscopy, and LASER diffraction particle size analysis. Rietveld method was used to refine various structural parameters and obtain an average crystallite size, on a Hydro-Micromechanical submicronic sample. X-ray single crystal structure determination was performed on a crystal obtained by Hydrochemical Synthesis. It has been shown that regardless of the synthesis protocol, the prepared samples always crystallize in the same crystal lattice, with P21/c space group and only differ from their macroscopic textural parameters. Nevertheless, only the Hydro-Micromechanical method is industrially scalable and enables a precise control of the textural parameters of the obtained calcium zincate.

  19. Urea synthesis in patients with chronic pancreatitis

    DEFF Research Database (Denmark)

    Hamberg, Ole; Andersen, Vibeke; Sonne, J

    2001-01-01

    Up-regulation of urea synthesis by amino acids and dietary protein intake may be impaired in patients with chronic pancreatitis (CP) due to the reduced glucagon secretion. Conversely, urea synthesis may be increased as a result of the chronic inflammation. The aims of the study were to determine...

  20. Supercritical Flow Synthesis of TiO2

    DEFF Research Database (Denmark)

    Hellstern, Henrik Christian; Becker, Jacob; Hald, Peter

    2014-01-01

    A new, up-scaled supercritical flow synthesis apparatus has been constructed in Aarhus. A module based system allows for a range of parameter studies with improved parameter control. The dual-reactor setup enables both single phase and core-shell nanoparticle synthesis. TiO2 is a well-known mater...

  1. Synthesis of 4-Halogenated 3-Fluoro-6-methoxyquinolines: Key Building Blocks for the Synthesis of Antibiotics

    DEFF Research Database (Denmark)

    Flagstad, Thomas; Petersen, Mette Terp; Hinnerfeldt, Daniel Michael

    2014-01-01

    A practical and scalable 4-step route is presented for the synthesis of 4-bromo-3-fluoro-6-methoxyoquinoline and 3-fluoro-4-iodo-6-methoxyoquinoline from readily available 2,4-dichloro-3-fluoroquinoline with an overall yield of 81-85%. Halogenated quinoline building blocks have found much use in ...... in antimicrobial drug discovery, and the method reported here would be useful for the synthesis of these compounds. © Georg Thieme Verlag....

  2. Technologies for direct production of flexible H2/CO synthesis gas

    International Nuclear Information System (INIS)

    Song Xueping; Guo Zhancheng

    2006-01-01

    The use of synthesis gas offers the opportunity to furnish a broad range of environmentally clean fuels and high value chemicals. However, synthesis gas manufacturing systems based on natural gas are capital intensive, and hence, there is great interest in technologies for cost effective synthesis gas production. Direct production of synthesis gas with flexible H 2 /CO ratio, which is in agreement with the stoichiometric ratios required by major synthesis gas based petrochemicals, can decrease the capital investment as well as the operating cost. Although CO 2 reforming and catalytic partial oxidation can directly produce desirable H 2 /CO synthesis gas, they are complicated and continued studies are necessary. In fact, direct production of flexible H 2 /CO synthesis gas can be obtained by optimizing the process schemes based on steam reforming and autothermal reforming as well as partial oxidation. This paper reviews the state of the art of the technologies

  3. Fungal Anticancer Metabolites: Synthesis Towards Drug Discovery.

    Science.gov (United States)

    Barbero, Margherita; Artuso, Emma; Prandi, Cristina

    2018-01-01

    Fungi are a well-known and valuable source of compounds of therapeutic relevance, in particular of novel anticancer compounds. Although seldom obtainable through isolation from the natural source, the total organic synthesis still remains one of the most efficient alternatives to resupply them. Furthermore, natural product total synthesis is a valuable tool not only for discovery of new complex biologically active compounds but also for the development of innovative methodologies in enantioselective organic synthesis. We undertook an in-depth literature searching by using chemical bibliographic databases (SciFinder, Reaxys) in order to have a comprehensive insight into the wide research field. The literature has been then screened, refining the obtained results by subject terms focused on both biological activity and innovative synthetic procedures. The literature on fungal metabolites has been recently reviewed and these publications have been used as a base from which we consider the synthetic feasibility of the most promising compounds, in terms of anticancer properties and drug development. In this paper, compounds are classified according to their chemical structure. This review summarizes the anticancer potential of fungal metabolites, highlighting the role of total synthesis outlining the feasibility of innovative synthetic procedures that facilitate the development of fungal metabolites into drugs that may become a real future perspective. To our knowledge, this review is the first effort to deal with the total synthesis of these active fungi metabolites and demonstrates that total chemical synthesis is a fruitful means of yielding fungal derivatives as aided by recent technological and innovative advancements. Copyright© Bentham Science Publishers; For any queries, please email at epub@benthamscience.org.

  4. Synthesis of S-linked cello-oligosaccharides

    DEFF Research Database (Denmark)

    Nami, Faranak

    , structurally well-defined oligosaccharides made via chemical synthesis can be used as models for the more complex polysaccharides in the investigation of properties such as polysaccharide biosynthesis, degradation and protein-carbohydrate interactions. For this purpose, non-natural substrate analogues forming...... irreversible binding to the enzyme can be employed. Thio-oligosaccharides represent the largest class of specific non-natural inhibitors for glycanases. In this thesis the chemical synthesis of some thio-glucans is presented. The formation of thio-linkages using a classical and non-classical method...... is investigated. Two strategies, relying on either a linear or a convergent strategy, have been employed in the synthesis towards two target molecules. Furthermore, the activity of a glycosyltransferase responsible for the elongation of a pectic polysaccharide has been investigated and partially characterized....

  5. [Folates and fetal programming: role of epigenetics and epigenomics].

    Science.gov (United States)

    Guéant, Jean-Louis; Daval, Jean-Luc; Vert, Paul; Nicolas, Jean-Pierre

    2012-12-01

    Folates are needed for synthesis of methionine, the precursor of S-adenosyl methionine (SAM). They play therefore a key role in nutrition and epigenomics by fluxing monocarbons towards synthesis or methylation of DNA and RNA, and methylation of gene transregulators, respectively. The deficiency produces intrauterine growth retardation and birth dejects. Folate deficiency deregulates epigenomic mechanisms related to fetal programming through decreased cellular availability of SAM. Epigenetic mechanisms of folate deficiency are illustrated by inheritance of coat colour of agouti mice model and altered expression of Igf2/H19 imprinting genes. Dietary exposure to fumonisin FB1 acts synergistically with folate deficiency on alterations of heterochromatin assembly. Deficiency in folate and vitamin B12 produces impaired fatty acid oxidation in liver and heart through imbalanced methylation and acetylation of PGC1-alpha and decreased expression of SIRT1, and long-lasting cognitive disabilities through impaired hippocampal cell proliferation, differentiation and plasticity and atrophy of hippocampal CA1. Deciphering these mechanisms will help understand the discordances between experimental models and population studies on folate supplementation.

  6. Synthesis of graphene by MEVVA source ion implantation

    International Nuclear Information System (INIS)

    Ying, J.J.; Xiao, X.H.; Dai, Z.G.; Wu, W.; Li, W.Q.; Mei, F.; Cai, G.X.; Ren, F.; Jiang, C.Z.

    2013-01-01

    Ion implantation provides a new synthesis route for graphene, and few-layered graphene synthesis by ion implantation has been reported. Here we show the synthesis of a single layer of high-quality graphene by Metal Vapor Vacuum Arc (MEVVA) source ion implantation. Polycrystalline nickel and copper thin films are implanted with MEVVA source carbon ions at 40 kV, followed by high-temperature thermal annealing and quenching. A Raman spectrum is applied to probe the quality and thickness of the prepared graphene. A single layer of high-quality graphene is grown on the nickel films, but not on the copper films. The growth mechanisms on the nickel and copper films are explained. MEVVA source ion implantation has been widely applied in industrial applications, demonstrating that this synthesis method can be generalized for industrial production

  7. Principles of selectivity in Fischer-Tropsch SYNTHESIS

    Energy Technology Data Exchange (ETDEWEB)

    Schulz, H. [Karlsruhe Univ. (Germany). Engler-Bunte-Institut

    2006-07-01

    The detailed selectivity of Fischer-Tropsch synthesis with iron and cobalt as catalysts with high temporal resolution has been determined and used to derive the values of probability of chain growth, chain branching and olefin/paraffin molar ratio as a function of carbon number and time. Catalyst reassembling and self-organization of the Fischer-Tropsch regime are investigated. The basic principle of Fischer-Tropsch synthesis, suppression of desorption of growing chains is disclosed. This frustration governs FT-synthesis of the otherwise different systems with iron and cobalt. The advanced characterization of sites and elementary reactions (specifically with cobalt) is thought to be a more realistic basis for future theoretical calculations. (orig.)

  8. The origin of polynucleotide-directed protein synthesis

    Science.gov (United States)

    Orgel, Leslie E.

    1989-01-01

    If protein synthesis evolved in an RNA world it was probably preceded by simpler processes by means of which interaction with amino acids conferred selective advantage on replicating RNA molecules. It is suggested that at first the simple attachment of amino acids to the 2'(3') termini of RNA templates favored initiation of replication at the end of the template rather than at internal positions. The second stage in the evolution of protein synthesis would probably have been the association of pairs of charged RNA adaptors in such a way as to favor noncoded formation of peptides. Only after this process had become efficient could coded synthesis have begun.

  9. Thermodynamics of carbothermic synthesis of actinide mononitrides

    International Nuclear Information System (INIS)

    Ogawa, T.; Shirasu, Y.; Minato, K.; Serizawa, H.

    1997-01-01

    Carbothermic synthesis will be further applied to the fabrication of nitride fuels containing minor actinides (MA) such as neptunium, americium and curium. A thorough understanding of the carbothermic synthesis of UN will be beneficial in the development of the MA-containing fuels. Thermodynamic analysis was carried out for conditions of practical interest in order to better understand the recent fabrication experiences. Two types of solution phases, oxynitride and carbonitride phases, were taken into account. The Pu-N-O ternary isotherm was assessed for the modelling of M(C, N, O). With the understanding of the UN synthesis, the fabrication problems of Am-containing nitrides are discussed. (orig.)

  10. UCLA Translational Biomarker Development Program (UTBD)

    Energy Technology Data Exchange (ETDEWEB)

    Czernin, Johannes [Univ. of California, Los Angeles, CA (United States)

    2014-09-01

    The proposed UTBD program integrates the sciences of diagnostic nuclear medicine and (radio)chemistry with tumor biology and drug development. UTBD aims to translate new PET biomarkers for personalized medicine and to provide examples for the use of PET to determine pharmacokinetic (PK) and pharmacodynamic (PD) drug properties. The program builds on an existing partnership between the Ahmanson Translational Imaging Division (ATID) and the Crump Institute of Molecular Imaging (CIMI), the UCLA Department of Chemistry and the Division of Surgical Oncology. ATID provides the nuclear medicine training program, clinical and preclinical PET/CT scanners, biochemistry and biology labs for probe and drug development, radiochemistry labs, and two cyclotrons. CIMI provides DOE and NIH-funded training programs for radio-synthesis (START) and molecular imaging (SOMI). Other participating entities at UCLA are the Department of Chemistry and Biochemistry and the Division of Surgical Oncology. The first UTBD project focuses on deoxycytidine kinase, a rate-limiting enzyme in nucleotide metabolism, which is expressed in many cancers. Deoxycytidine kinase (dCK) positive tumors can be targeted uniquely by two distinct therapies: 1) nucleoside analog prodrugs such as gemcitabine (GEM) are activated by dCK to cytotoxic antimetabolites; 2) recently developed small molecule dCK inhibitors kill tumor cells by starving them of nucleotides required for DNA replication and repair. Since dCK-specific PET probes are now available, PET imaging of tumor dCK activity could improve the use of two different classes of drugs in a wide variety of cancers.

  11. Virtual screening of inorganic materials synthesis parameters with deep learning

    Science.gov (United States)

    Kim, Edward; Huang, Kevin; Jegelka, Stefanie; Olivetti, Elsa

    2017-12-01

    Virtual materials screening approaches have proliferated in the past decade, driven by rapid advances in first-principles computational techniques, and machine-learning algorithms. By comparison, computationally driven materials synthesis screening is still in its infancy, and is mired by the challenges of data sparsity and data scarcity: Synthesis routes exist in a sparse, high-dimensional parameter space that is difficult to optimize over directly, and, for some materials of interest, only scarce volumes of literature-reported syntheses are available. In this article, we present a framework for suggesting quantitative synthesis parameters and potential driving factors for synthesis outcomes. We use a variational autoencoder to compress sparse synthesis representations into a lower dimensional space, which is found to improve the performance of machine-learning tasks. To realize this screening framework even in cases where there are few literature data, we devise a novel data augmentation methodology that incorporates literature synthesis data from related materials systems. We apply this variational autoencoder framework to generate potential SrTiO3 synthesis parameter sets, propose driving factors for brookite TiO2 formation, and identify correlations between alkali-ion intercalation and MnO2 polymorph selection.

  12. Synthesis of γ-Valerolactone from Carbohydrates and its Applications.

    Science.gov (United States)

    Zhang, Zehui

    2016-01-01

    γ-Valerolactone (GVL) is a valuable chemical intermediate that can be obtained by catalytic reduction of levulinic acid (LA) or alkyl levulinates (AL). There are many reports on the synthesis of GVL from LA or AL. However, the demand for the large-scale synthesis of GVL requires more environmentally friendly and cost-effective production processes. This article focuses on the recent advance in the synthesis of GVL from carbohydrates or lignocellulosic biomass. In addition, application of GVL as the reaction solvents, fuel additives, and as precursor for the synthesis of jet fuel and polymer monomers is also discussed. © 2016 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  13. RNA synthesis during cleavage of the Lymnaea egg

    NARCIS (Netherlands)

    Biggelaar, J.A.M. van den

    In eggs of Lymnaea RNA synthesis can be detected autoradiographically from the 8- to the 16-cell stage. From the 16- to the 24-cell stage distinct nucleoli reappear which are immediately engaged in RNA synthesis.

  14. Sequential logic analysis and synthesis

    CERN Document Server

    Cavanagh, Joseph

    2007-01-01

    Until now, there was no single resource for actual digital system design. Using both basic and advanced concepts, Sequential Logic: Analysis and Synthesis offers a thorough exposition of the analysis and synthesis of both synchronous and asynchronous sequential machines. With 25 years of experience in designing computing equipment, the author stresses the practical design of state machines. He clearly delineates each step of the structured and rigorous design principles that can be applied to practical applications. The book begins by reviewing the analysis of combinatorial logic and Boolean a

  15. Tunable synthesis of copper nanotubes

    International Nuclear Information System (INIS)

    Kaniukov, E; Yakimchuk, D; Kozlovsky, A; Shlimas, D; Zdorovets, M; Kadyrzhanov, K

    2016-01-01

    Simple method of tunable synthesis of copper nanotubes based on template synthesis was developed. A comprehensive study of the structural, morphological and electrical characteristics of the obtained nanostructures was carried out. Characterization of structural features was made by methods of scanning electron microscopy, energy dispersive spectroscopy and X-ray diffractometry analysis. Evaluation of wall thickness is made by methods of gas permeability. Electrical conductivity of nanotubes was define in the study of their current-voltage characteristics. The possibility to control of copper nanotubes physical properties by variation of the deposition parameters was shown. (paper)

  16. Asymmetric Formal Synthesis of Azadirachtin.

    Science.gov (United States)

    Mori, Naoki; Kitahara, Takeshi; Mori, Kenji; Watanabe, Hidenori

    2015-12-01

    An asymmetric formal synthesis of azadirachtin, a potent insect antifeedant, was accomplished in 30 steps to Ley's synthetic intermediate (longest linear sequence). The synthesis features: 1) rapid access to the optically active right-hand segment starting from the known 5-hydroxymethyl-2-cyclopentenone scaffold; 2) construction of the B and E rings by a key intramolecular tandem radical cyclization; 3) formation of the hemiacetal moiety in the C ring through the α-oxidation of the six-membered lactone followed by methanolysis. © 2015 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  17. Rendering Systems Visible for Design: Synthesis Maps as Constructivist Design Narratives

    Directory of Open Access Journals (Sweden)

    Peter Jones

    Full Text Available Synthesis maps integrate research evidence, system expertise, and design proposals into visual narratives. These narratives support communication and decision-making among stakeholders. Synthesis maps evolved from earlier visualization tools in systemics and design. They help stakeholders to understand design options for complex sociotechnical systems. Other visual approaches map complexity for effective collaboration across perspectives and knowledge domains. These help stakeholder groups to work in higher-order design contexts for sociotechnical or human-ecological systems. This article describes a constructivist pedagogy for collaborative learning in small teams of mixed-discipline designers. Synthesis mapping enables these teams to learn systems methods for design research in complex problem domains. Synthesis maps integrate knowledge from research cycles and iterative sensemaking to define a coherent design narrative. While synthesis maps may include formal system modeling techniques, they do not require them. Synthesis maps tangibly render research observations and design choices. As a hybrid system design method, synthesis maps are a contribution to the design genre of visual systems thinking.

  18. Effect of UVA on RNA synthesis in isolated chicken liver nuclei

    International Nuclear Information System (INIS)

    Arai, Soichiro; Nakanishi, Y.H.; Hayashi, Masanobu

    1997-01-01

    Little information is available on the effects of UVA (320-400 nm radiation) on transcription. We examined the effect of UVA on RNA synthesis in isolated chicken liver nuclei. Nuclei in air or nitrogen were irradiated with UVA, and the RNA synthesis induced by endogenous RNA polymerase was estimated under conditions in which little or no initiation occurs. Incorporation of = 3 H=UMP into the acid-insoluble fraction was used as the measure of RNA synthesis in the nuclei. In air the amount of synthesized RNA decreased with increasing UVA fluence. In contrast, in nitrogen UVA had little effect on RNA synthesis. Sodium azide and histidine, which effectively scavenge singlet oxygen ( 1 O 2 ) as well as hydroxyl radicals (·OH), protected the nuclei from inhibition of RNA synthesis; whereas, sodium formate and dimethyl sulfoxide, both of which much more effectively scavenge ·OH than 1 O 2 , had no protective effect. These findings provide a strong indication that 1 O 2 is involved in the inhibition of RNA synthesis. In addition, RNA polymerase II-dependent synthesis (in the nucleoplasm) was much more sensitive to UVA than RNA polymerase I-dependent synthesis (in the nucleolus). (author)

  19. Standardized chemical synthesis of Pseudomonas aeruginosa pyocyanin

    Directory of Open Access Journals (Sweden)

    Rajkumar Cheluvappa

    2014-01-01

    As we have extracted pyocyanin both from P. aeruginosa cultures, and via chemical synthesis; we know the procedural and product-quality differences. We endorse the relative ease, safety, and convenience of using the chemical synthesis described here. Crucially, our “naturally endotoxin-free” pyocyanin can be extracted easily without using infectious bacteria.

  20. Synthesis of nano-carbon (nanotubes, nanofibres, graphene ...

    Indian Academy of Sciences (India)

    In the present study, we report the synthesis of carbon nanotubes (CNTs) using a new natural precursor: castor oil. The CNTs were synthesized by spray pyrolysis of castor oil–ferrocene solution at 850°C under an Ar atmosphere. We also report the synthesis of carbon nitrogen (C–N) nanotubes using castor ...

  1. Early steps in protein synthesis and their regulation: a background study related to the biological effects of radiation. Progress report, July 1, 1974--June 30, 1975

    International Nuclear Information System (INIS)

    Zamecnik, P.C.

    1975-01-01

    The proposed program is an interwoven effort to study the details of the mechanism of protein synthesis in normal living systems and their alterations in the presence of oncogenic RNA viruses using the avian myeloblastosis virus as a model. Emphasis will be placed on determining the role of the primary structure of the viral RNA and of other factors required for the production of viral proteins in a cell-free system. Continued studies of the initial steps of protein synthesis where much specificity is determined by the tRNA: tRNA synthetase interactions will be carried out using biochemical and genetic techniques. (U.S.)

  2. Linkers, resins, and general procedures for solid-phase peptide synthesis

    DEFF Research Database (Denmark)

    Shelton, Anne Pernille Tofteng; Jensen, Knud Jørgen

    2013-01-01

    and linkers for solid-phase synthesis is a key parameter for successful peptide synthesis. This chapter provides an overview of the most common and useful resins and linkers for the synthesis of peptides with C-terminal amides, carboxylic acids, and more. The chapter finishes with robust protocols for general...

  3. Heuristic Synthesis of Reversible Logic – A Comparative Study

    Directory of Open Access Journals (Sweden)

    Chua Shin Cheng

    2014-01-01

    Full Text Available Reversible logic circuits have been historically motivated by theoretical research in low-power, and recently attracted interest as components of the quantum algorithm, optical computing and nanotechnology. However due to the intrinsic property of reversible logic, traditional irreversible logic design and synthesis methods cannot be carried out. Thus a new set of algorithms are developed correctly to synthesize reversible logic circuit. This paper presents a comprehensive literature review with comparative study on heuristic based reversible logic synthesis. It reviews a range of heuristic based reversible logic synthesis techniques reported by researchers (BDD-based, cycle-based, search-based, non-search-based, rule-based, transformation-based, and ESOP-based. All techniques are described in detail and summarized in a table based on their features, limitation, library used and their consideration metric. Benchmark comparison of gate count and quantum cost are analysed for each synthesis technique. Comparing the synthesis algorithm outputs over the years, it can be observed that different approach has been used for the synthesis of reversible circuit. However, the improvements are not significant. Quantum cost and gate count has improved over the years, but arguments and debates are still on certain issues such as the issue of garbage outputs that remain the same. This paper provides the information of all heuristic based synthesis of reversible logic method proposed over the years. All techniques are explained in detail and thus informative for new reversible logic researchers and bridging the knowledge gap in this area.

  4. The Advanced Aluminum Nitride Synthesis Methods and Its Applications: Patent Review.

    Science.gov (United States)

    Shishkin, Roman A; Elagin, Andrey A; Mayorova, Ekaterina S; Beketov, Askold R

    2016-01-01

    High purity nanosized aluminum nitride synthesis is a current issue for both industry and science. However, there is no up-to-date review considering the major issues and the technical solutions for different methods. This review aims to investigate the advanced methods of aluminum nitride synthesis and its development tendencies. Also the aluminum nitride application patents and prospects for development of the branch have been considered. The patent search on "aluminum nitride synthesis" has been carried out. The research activity has been analyzed. Special attention has been paid to the patenting geography and the leading researchers in aluminum nitride synthesis. Aluminum nitride synthesis methods have been divided into 6 main groups, the most studied approaches are carbothermal reduction (88 patents) and direct nitridation (107 patents). The current issues for each group have been analyzed; the main trends are purification of the final product and nanopowder synthesis. The leading researchers in aluminum nitride synthesis have represented 5 countries, namely: Japan, China, Russia, South Korea and USA. The main aluminum nitride application spheres are electronics (59,1 percent of applications) and new materials manufacturing (30,9 percent). The review deals with the state of the art data in nanosized aluminum nitride synthesis, the major issues and the technical solutions for different synthesis methods. It gives a full understanding of the development tendencies and of the current leaders in the sphere.

  5. The plane strain tests in the PROMETRA program

    International Nuclear Information System (INIS)

    Cazalis, B.; Desquines, J.; Carassou, S.; Le Jolu, T.; Bernaudat, C.

    2016-01-01

    A fuel cladding mechanical test, performed under conditions of plane strain deformation in the transverse direction of tube axis, was originally developed at Pennsylvania State University. It was decided to implement this original test within the PROMETRA program using the same experimental procedure and its optimization for a ring mechanical testing on plane strain conditions (PST tests) in hot cells laboratory. This paper presents a detailed description and an interpretation of the Plane Strain Tensile (PST) tests performed in the framework of the PROMETRA program on fresh and irradiated claddings. At first, the context of the PST tests is situated and the specificities of these tests implemented at CEA are justified. Indeed, a significant adjustment of the original experimental procedure is carried out in order to test the irradiated fuel cladding in the best possible conditions. Then, the tests results on fresh Zircaloy-4 and on irradiated Zircaloy-4, M5™ and ZIRLO ® specimens are gathered. The main analyses in support of these tests, such as metallographies, fractographic examinations and finite element simulations are detailed. Finally, a synthesis of the interpretation of the tests is proposed. The PST test seems only representative of plane strain fracture conditions when the test material is very ductile (fresh or high temperature or low hydride material like M5TM). However, it provides a relevant representation of the RIA rupture initiation which is observed in irradiated cladding resulting from hydride rim damage due to the strong irradiation of a fuel rod. - Highlights: • A plane strain mechanical test performed on fuel rod claddings is described. • The tests are performed in the framework of the French PROMETRA program. • Fresh Zircaloy-4 and irradiated Zircaloy-4, M5 and ZIRLO specimens are tested. • The main analyses in support of these tests are detailed. • A synthesis of the interpretation of the PST tests is proposed.

  6. The plane strain tests in the PROMETRA program

    Energy Technology Data Exchange (ETDEWEB)

    Cazalis, B., E-mail: bernard.cazalis@irsn.fr [Institut de Radioprotection et de Sûreté Nucléaire, IRSN/PSN-RES, F-13115 Saint-Paul Lez Durance BP3 (France); Desquines, J. [Institut de Radioprotection et de Sûreté Nucléaire, IRSN/PSN-RES, F-13115 Saint-Paul Lez Durance BP3 (France); Carassou, S.; Le Jolu, T. [Commissariat à l' Energie Atomique, CEA/DEN/DMN, F- 91191 Gif-sur-Yvette (France); Bernaudat, C. [Electricité de France, EDF/SEPTEN, F-69628 Villeurbanne (France)

    2016-04-15

    A fuel cladding mechanical test, performed under conditions of plane strain deformation in the transverse direction of tube axis, was originally developed at Pennsylvania State University. It was decided to implement this original test within the PROMETRA program using the same experimental procedure and its optimization for a ring mechanical testing on plane strain conditions (PST tests) in hot cells laboratory. This paper presents a detailed description and an interpretation of the Plane Strain Tensile (PST) tests performed in the framework of the PROMETRA program on fresh and irradiated claddings. At first, the context of the PST tests is situated and the specificities of these tests implemented at CEA are justified. Indeed, a significant adjustment of the original experimental procedure is carried out in order to test the irradiated fuel cladding in the best possible conditions. Then, the tests results on fresh Zircaloy-4 and on irradiated Zircaloy-4, M5™ and ZIRLO{sup ®} specimens are gathered. The main analyses in support of these tests, such as metallographies, fractographic examinations and finite element simulations are detailed. Finally, a synthesis of the interpretation of the tests is proposed. The PST test seems only representative of plane strain fracture conditions when the test material is very ductile (fresh or high temperature or low hydride material like M5TM). However, it provides a relevant representation of the RIA rupture initiation which is observed in irradiated cladding resulting from hydride rim damage due to the strong irradiation of a fuel rod. - Highlights: • A plane strain mechanical test performed on fuel rod claddings is described. • The tests are performed in the framework of the French PROMETRA program. • Fresh Zircaloy-4 and irradiated Zircaloy-4, M5 and ZIRLO specimens are tested. • The main analyses in support of these tests are detailed. • A synthesis of the interpretation of the PST tests is proposed.

  7. Current Status of Human Resource Training Program for Fostering RIBiomics Professionals

    Energy Technology Data Exchange (ETDEWEB)

    Lee, Dong-Eun; Jang, Beom-Su; Choi, Dae Seong [Advanced Radiation Technology Institute, Korea Atomic Energy Research Institute, Jeongeup 580-185 (Korea, Republic of); Park, Tai-jin [Radiation Research Division, Korea Radioisotope Association, Seoul 132-822, Republic of Korea (Korea, Republic of); Park, Sang Hyun [Advanced Radiation Technology Institute, Korea Atomic Energy Research Institute, Jeongeup 580-185 (Korea, Republic of); Radiation Research Division, Korea Radioisotope Association, Seoul 132-822, Republic of Korea (Korea, Republic of); Department of Radiobiotechnology and Applied Radioisotope Science, Korea University of Science and Technology, Deajeon 305-350 (Korea, Republic of)

    2015-07-01

    training program for fostering RI-Biomics professionals in the following key fields; (1) Radio-pharmaceuticals synthesis and labeled compound development, (2) Development of RI-ADME in the living object and image assessment technology. Personnel training program that carries out theoretical education and practical training in the field related to RI-Biomics in parallel is being conducted. Internship training for university students has been administered twice already while educational program for the existing professionals in the RI-Biomics field will be carried out during the summer of 2014. The human resource training program for combination of RIADME and different molecular imaging techniques can offer synergistic advantages to facilitate understanding RIADME and fostering RI-ADME professionals. (authors)

  8. Current Status of Human Resource Training Program for Fostering RIBiomics Professionals

    International Nuclear Information System (INIS)

    Lee, Dong-Eun; Jang, Beom-Su; Choi, Dae Seong; Park, Tai-jin; Park, Sang Hyun

    2015-01-01

    training program for fostering RI-Biomics professionals in the following key fields; (1) Radio-pharmaceuticals synthesis and labeled compound development, (2) Development of RI-ADME in the living object and image assessment technology. Personnel training program that carries out theoretical education and practical training in the field related to RI-Biomics in parallel is being conducted. Internship training for university students has been administered twice already while educational program for the existing professionals in the RI-Biomics field will be carried out during the summer of 2014. The human resource training program for combination of RIADME and different molecular imaging techniques can offer synergistic advantages to facilitate understanding RIADME and fostering RI-ADME professionals. (authors)

  9. Development and optimisation of synthesis, characterisation and physical properties of solid materials for strip conductors; purpose oriented synthesis of novel systems. Final report

    International Nuclear Information System (INIS)

    Guenther, W.; Schoellhorn, R.

    1995-06-01

    The project reported is part of studies into the performance of HTSC, and was responsible for the following essential tasks: synthesis, characterisation, and optimisation of oxocuprates of the type (RE)Ba 2 Cu 3 O 7 , examination of the relevant corrosion processes and reactivity of the phases, and synthesis of novel systems guided by special model concepts, applying kinetics-controlled low-temperature synthesis. (orig./MM) [de

  10. Dissociation of histone and DNA synthesis in x-irradiated HeLa cells

    International Nuclear Information System (INIS)

    Bases, R.; Mendez, F.

    1971-01-01

    Although histone synthesis and DNA synthesis are normally very well coordinated in HeLa cells, their histone synthesis proved relatively resistant to inhibition by ionizing radiation. During the first 24 h after 1,000 R the rate of cellular DNA synthesis progressively fell to small fractions of control values while histone synthesis with much less relative reduction. Acrylamide gel electropherograms of the acid soluble nuclear histones synthesized by irradiated HeLa cells were qualitatively normal

  11. Biological synthesis of nanoparticles in biofilms.

    Science.gov (United States)

    Tanzil, Abid H; Sultana, Sujala T; Saunders, Steven R; Shi, Liang; Marsili, Enrico; Beyenal, Haluk

    2016-12-01

    The biological synthesis of nanoparticles (NPs) by bacteria and biofilms via extracellular redox reactions has received attention because of the minimization of harmful chemicals, low cost, and ease of culturing and downstream processing. Bioreduction mechanisms vary across bacteria and growth conditions, which leads to various sizes and shapes of biosynthesized NPs. NP synthesis in biofilms offers additional advantages, such as higher biomass concentrations and larger surface areas, which can lead to more efficient and scalable biosynthesis. Although biofilms have been used to produce NPs, the mechanistic details of NP formation are not well understood. In this review, we identify three critical areas of research and development needed to advance our understanding of NP production by biofilms: 1) synthesis, 2) mechanism and 3) stabilization. Advancement in these areas could result in the biosynthesis of NPs that are suitable for practical applications, especially in drug delivery and biocatalysis. Specifically, the current status of methods and mechanisms of nanoparticle synthesis and surface stabilization using planktonic bacteria and biofilms is discussed. We conclude that the use of biofilms to synthesize and stabilize NPs is underappreciated and could provide a new direction in biofilm-based NP production. Copyright © 2016 Elsevier Inc. All rights reserved.

  12. DNA repair synthesis dependent on the uvrA,B gene products

    International Nuclear Information System (INIS)

    Moses, R.E.; Moody, E.E.M.

    1975-01-01

    Ultraviolet irradiation of toluene-treated Escherichia coli causes an inhibition of replicative DNA synthesis. This is followed by the appearance of nonconservative DNA repair synthesis which does not require either the polymerase or 5' → 3' exonucleolytic activities of DNA polymerase I. The repair synthesis may be catalyzed by DNA polymerase III activity but does not require a functional DNA polymerase II. The ultraviolet-induced synthesis requires ATP and is dependent on a functional uvrA and uvrB gene product. However, other uvr gene products are not required for the synthesis. The recB function is also not required

  13. Pimelic acid, the first precursor of the Bacillus subtilis biotin synthesis pathway, exists as the free acid and is assembled by fatty acid synthesis.

    Science.gov (United States)

    Manandhar, Miglena; Cronan, John E

    2017-05-01

    Biotin synthetic pathways are readily separated into two stages, synthesis of the seven carbon α, ω-dicarboxylic acid pimelate moiety and assembly of the fused heterocyclic rings. The biotin pathway genes responsible for pimelate moiety synthesis vary widely among bacteria whereas the ring synthesis genes are highly conserved. Bacillus subtilis seems to have redundant genes, bioI and bioW, for generation of the pimelate intermediate. Largely consistent with previous genetic studies it was found that deletion of bioW caused a biotin auxotrophic phenotype whereas deletion of bioI did not. BioW is a pimeloyl-CoA synthetase that converts pimelic acid to pimeloyl-CoA. The essentiality of BioW for biotin synthesis indicates that the free form of pimelic acid is an intermediate in biotin synthesis although this is not the case in E. coli. Since the origin of pimelic acid in Bacillus subtilis is unknown, 13 C-NMR studies were carried out to decipher the pathway for its generation. The data provided evidence for the role of free pimelate in biotin synthesis and the involvement of fatty acid synthesis in pimelate production. Cerulenin, an inhibitor of the key fatty acid elongation enzyme, FabF, markedly decreased biotin production by B. subtilis resting cells whereas a strain having a cerulenin-resistant FabF mutant produced more biotin. In addition, supplementation with pimelic acid fully restored biotin production in cerulenin-treated cells. These results indicate that pimelic acid originating from fatty acid synthesis pathway is a bona fide precursor of biotin in B. subtilis. © 2017 John Wiley & Sons Ltd.

  14. Towards large-scale plasma-assisted synthesis of nanowires

    Science.gov (United States)

    Cvelbar, U.

    2011-05-01

    Large quantities of nanomaterials, e.g. nanowires (NWs), are needed to overcome the high market price of nanomaterials and make nanotechnology widely available for general public use and applications to numerous devices. Therefore, there is an enormous need for new methods or routes for synthesis of those nanostructures. Here plasma technologies for synthesis of NWs, nanotubes, nanoparticles or other nanostructures might play a key role in the near future. This paper presents a three-dimensional problem of large-scale synthesis connected with the time, quantity and quality of nanostructures. Herein, four different plasma methods for NW synthesis are presented in contrast to other methods, e.g. thermal processes, chemical vapour deposition or wet chemical processes. The pros and cons are discussed in detail for the case of two metal oxides: iron oxide and zinc oxide NWs, which are important for many applications.

  15. Collagen synthesis in human musculoskeletal tissues and skin

    DEFF Research Database (Denmark)

    Babraj, J A; Cuthbertson, D J R; Smith, K

    2005-01-01

    We have developed a direct method for the measurement of human musculoskeletal collagen synthesis on the basis of the incorporation of stable isotope-labeled proline or leucine into protein and have used it to measure the rate of synthesis of collagen in tendon, ligament, muscle, and skin....... In postabsorptive, healthy young men (28 +/- 6 yr) synthetic rates for tendon, ligament, muscle, and skin collagen were 0.046 +/- 0.005, 0.040 +/- 0.006, 0.016 +/- 0.002, and 0.037 +/- 0.003%/h, respectively (means +/- SD). In postabsorptive, healthy elderly men (70 +/- 6 yr) the rate of skeletal muscle collagen...... synthesis is greater than in the young (0.023 +/- 0.002%/h, P collagen are similar to those of mixed skeletal muscle protein in the postabsorptive state, whereas the rate for muscle collagen synthesis is much lower in both young and elderly men...

  16. Divergent Synthesis of Solanidine and 22-epi-Solanidine.

    Science.gov (United States)

    Hou, Ling-Li; Shi, Yong; Zhang, Zhi-Dan; Wu, Jing-Jing; Yang, Qing-Xiong; Tian, Wei-Sheng

    2017-07-21

    A divergent synthesis of solanidine and 22-epi-solanidine, two 25S natural steroidal alkaloids, from 25R-configured diosgenin acetate, is described. Initially, solanidine was synthesized through a series of transformations including a cascade ring-switching process of furostan-26-acid, an epimerization of C25 controlled by the conformation of six-membered lactone ring, an intramolecular Schmidt reaction, and an imine reduction/intramolecular aminolysis process. To address the epimerization issue during Schmidt reaction, an improved synthesis was developed, which also led to a synthesis of 22-epi-solanidine. In this synthesis, selective transformation of azido lactone to azido diol and amino diol was realized through a reduction relay tactic. The azido diol was transformed to solanidine via an intramolecular Schmidt reaction/N-alkylation/reduction process and to 22-epi-solanidine via an intramolecular double N-alkylation process.

  17. Synthesis and Design of Integrated Process and Water Networks

    DEFF Research Database (Denmark)

    Handani, Zainatul B.; Quaglia, Alberto; Gani, Rafiqul

    2015-01-01

    This work presents the development of a systematic framework for a simultaneous synthesis and design of process and water networks using the superstructure-based optimization approach. In this framework, a new superstructure combining both networks is developed by attempting to consider all...... possible options with respect to the topology of the process and water networks, leading to Mixed Integer Non Linear Programming (MINLP) problem. A solution strategy to solve the multi-network problem accounts explicitly the interactions between the networks by selecting suitable technologies in order...... to transform raw materials into products and produce clean water to be reused in the process at the early stage of design. Since the connection between the process network and the wastewater treatment network is not a straight forward connection, a new converter interval is introduced in order to convert...

  18. Cholesterol synthesis by human fetal hepatocytes: effect of lipoproteins

    International Nuclear Information System (INIS)

    Carr, B.R.; Simpson, E.R.

    1984-01-01

    The purpose of the present investigation was to determine the effect of various lipoproteins on the rate of cholesterol synthesis of human fetal liver cells maintained in culture. This was accomplished by measuring the rate of incorporation of tritium from tritiated water or carbon 14-labeled acetate into cholesterol in human fetal liver cells. Optimal conditions for each assay were determined. When human fetal liver cells were maintained in the presence of low-density lipoprotein, cholesterol synthesis was inhibited in a concentration-dependent fashion. Intermediate--density lipoprotein and very-low-density lipoprotein also suppressed cholesterol synthesis in human fetal liver cells. In contrast, high-density lipoprotein stimulated cholesterol synthesis in human fetal liver cells. The results of the present as well as our previous investigations suggest that multiple interrelationships exist between fetal liver cholesterol synthesis and lipoprotein-cholesterol utilization by the human fetal adrenal gland and that these processes serve to regulate the lipoprotein-cholesterol levels in fetal plasma

  19. In vivo determination of arterial collagen synthesis in atherosclerotic rabbits

    International Nuclear Information System (INIS)

    Opsahl, W.P.; DeLuca, D.J.; Ehrhart, L.A.

    1986-01-01

    Collagen and non-collagen protein synthesis rates were determined in vivo in tissues from rabbits fed a control or atherogenic diet supplemented with 2% peanut oil and 0.25% cholesterol for 4 months. Rabbits received a bolus intravenous injection of L-[ 3 H]-proline (1.0 mCi/kg) and unlabeled L-proline (7 mmoles/kg) in 0.9% NaCl. Plasma proline specific activity decreased only 20% over 5 hr and was similar to the specific activity of free proline in tissues. Thoracic aortas from atherosclerotic rabbits exhibited raised plaques covering at least 75% of the surface. Thoracic intima plus a portion of the media (TIM) was separated from the remaining media plus adventitia (TMA). Dry delipidated weight, total collagen content, and collagen as a percent of dry weight were increased significantly in the TIM of atherosclerotic rabbits. Collagen synthesis rates and collagen synthesis as a percent of total protein synthesis were likewise increased both in the TIM and in the abdominal aortas. No differences from controls either in collagen content or collagen synthesis rates were observed in the TMA, lung or skin. These results demonstrate for the first time in vivo that formation of atherosclerotic plaques is associated with increased rates of collagen synthesis. Furthermore, as previously observed with incubations in vitro, collagen synthesis was elevated to a greater extent than noncollagen protein synthesis in atherosclerotic aortas from rabbits fed cholesterol plus peanut oil

  20. Quantum chemistry-assisted synthesis route development

    International Nuclear Information System (INIS)

    Hori, Kenji; Sumimoto, Michinori; Murafuji, Toshihiro

    2015-01-01

    We have been investigating “quantum chemistry-assisted synthesis route development” using in silico screenings and applied the method to several targets. Another example was conducted to develop synthesis routes for a urea derivative, namely 1-(4-(trifluoromethyl)-2-oxo-2H-chromen-7-yl)urea. While five synthesis routes were examined, only three routes passed the second in silico screening. Among them, the reaction of 7-amino-4-(trifluoromethyl)-2H-chromen-2-one and O-methyl carbamate with BF 3 as an additive was ranked as the first choice for synthetic work. We were able to experimentally obtain the target compound even though its yield was as low as 21 %. The theoretical result was thus consistent with that observed. The summary of transition state data base (TSDB) is also provided. TSDB is the key to reducing time of in silico screenings

  1. Synthesis and processing of nanostructured materials

    International Nuclear Information System (INIS)

    Siegel, R.W.

    1992-12-01

    Significant and growing interest is being exhibited in the novel and enhanced properties of nanostructured materials. These materials, with their constituent phase or grain structures modulated on a length scale less than 100 nm, are artificially synthesized by a wide variety of physical, chemical, and mechanical methods. In this NATO Advanced Study Institute, where mechanical behavior is emphasized, nanostructured materials with modulation dimensionalities from one (multilayers) to three (nanophase materials) are mainly considered. No attempt is made in this review to cover in detail all of the diverse methods available for the synthesis of nanostructured materials. Rather, the basic principles involved in their synthesis are discussed in terms of the special properties sought using examples of particular synthesis and processing methodologies. Some examples of the property changes that can result from one of these methods, cluster assembly of nanophase materials, are presented

  2. One-pot synthesis of 2H-pyrans by indium(III) chloride-catalyzed reactions. efficient synthesis of pyranocoumarins, pyranophenalenones, and pyranoquinolinones

    International Nuclear Information System (INIS)

    Lee, Yong Rok; Kim, Do Hoon; Shim, Jae Jin; Kim, Seog K.; Park, Jung Hag; Cha, Jin Soon; Lee, Chong Soon

    2002-01-01

    An efficient synthesis of 2H-pyrans is achieved by indium (III) chloride-catalyzed reactions of 1,3-dicarbonyl compounds with a variety of α.β-unsaturated aldehydes in moderates yields. This method has been applied to the synthesis of pyranocoumarins, pyranophenaleneones, and pyranoquinolinone alkaloids

  3. One-pot synthesis of 2H-pyrans by indium(III) chloride-catalyzed reactions. efficient synthesis of pyranocoumarins, pyranophenalenones, and pyranoquinolinones

    Energy Technology Data Exchange (ETDEWEB)

    Lee, Yong Rok; Kim, Do Hoon; Shim, Jae Jin; Kim, Seog K.; Park, Jung Hag; Cha, Jin Soon; Lee, Chong Soon [Yeungnam Univ., Kyongsan (Korea, Republic of)

    2002-08-01

    An efficient synthesis of 2H-pyrans is achieved by indium (III) chloride-catalyzed reactions of 1,3-dicarbonyl compounds with a variety of {alpha}.{beta}-unsaturated aldehydes in moderates yields. This method has been applied to the synthesis of pyranocoumarins, pyranophenaleneones, and pyranoquinolinone alkaloids.

  4. Solid-Phase Synthesis for the Construction of Biologically Interesting Molecules and the Total Synthesis of Trioxacarcin DC-45-A2

    DEFF Research Database (Denmark)

    Mikkelsen, Remi Jacob Thomsen

    . Furthermore a route to another key building block was developed featuring a Stille cross-coupling.Synthesis of Poly-fused Heterocycles. In the search for new biologically active compounds a methodology for the synthesis of polyfused heterocycles was investigated. This led to the development and optimization...

  5. Recycling of surfactant template in mesoporous MCM-41 synthesis

    Science.gov (United States)

    Lai, J. Y.; Twaiq, F.; Ngu, L. H.

    2017-06-01

    The recycling of surfactant template is investigated through the reuse of the surfactant template in the mesoporous MCM-41 synthesis process. In the synthesis of MCM-41, tetraethylorthosilicate (TEOS) solution in water was utilized as the silica source while hexadecyltrimethylammonium bromide (CTAB) solution in ethyl alcohol was used as a surfactant template. The synthesized gel is formed thoroughly by mixing the two solutions under acid conditions with a pH value of 0.5 for 1 hour and kept for crystallization for 48 hours. The as-synthesized MCM-41 powder is recovered by filtration while the filtrate (mother liquor) was then reused for the second synthesis cycle. The synthesis procedure was repeated till no further solid product was formed. The synthesized gel was not produced in the unifying solution in the fifth cycle of MCM-41 synthesis. The quality of the calcined MCM-41 powder produced in each synthesis cycle was evaluated by calculating the amount of MCM-41 produced and the surface area of the powder product. The result showed that 1.28, 0.37, 1.64, 1.90 and 0.037 g were obtained in the 1st, 2nd, 3rd, 4th and 5th synthesis cycle, respectively. The surface area of the powder produced was found to be 1170, 916, 728, and 508 m2/g for 1st, 2nd, 3rd and 4th respectively. The concentration of the surfactant template has reached value lower than the critical micelle concentration (CMC) and remained constant after the 4th cycle. There was no further formation of gel due to low availability in the interaction between silicate anions and surfactant cations when the amount of TEOS was fixed for every synthesis cycle.

  6. Predictors of muscle protein synthesis after severe pediatric burns.

    Science.gov (United States)

    Diaz, Eva C; Herndon, David N; Lee, Jinhyung; Porter, Craig; Cotter, Matthew; Suman, Oscar E; Sidossis, Labros S; Børsheim, Elisabet

    2015-04-01

    Following a major burn, skeletal muscle protein synthesis rate increases but is often insufficient to compensate for massively elevated muscle protein breakdown rates. Given the long-term nature of the pathophysiologic response to burn injury, we hypothesized that muscle protein synthesis rate would be chronically elevated in severely burned children. The objectives of this study were to characterize muscle protein synthesis rate of burned children over a period of 24 months after injury and to identify predictors that influence this response. A total of 87 children with 40% or greater total body surface area (TBSA) burned were included. Patients participated in stable isotope infusion studies at 1, 2, and approximately 4 weeks after burn and at 6, 12, and 24 months after injury to determine skeletal muscle protein fractional synthesis rate. Generalized estimating equations with log link normal distribution were applied to account for clustering of patients and control for patient characteristics. Patients (8 ± 6 years) had large (62, 51-72% TBSA) and deep (47% ± 21% TBSA third degree) burns. Muscle protein fractional synthesis rate was elevated throughout the first 12 months after burn compared with established values from healthy young adults. Muscle protein fractional synthesis rate was lower in boys, in children older than 3 years, and when burns were greater than 80% TBSA. Muscle protein synthesis is elevated for at least 1 year after injury, suggesting that greater muscle protein turnover is a component of the long-term pathophysiologic response to burn trauma. Muscle protein synthesis is highly affected by sex, age, and burn size in severely burned children. These findings may explain the divergence in net protein balance and lean body mass in different populations of burn patients. Prognostic study, level III.

  7. Early Universe synthesis of asymmetric dark matter nuggets

    Science.gov (United States)

    Gresham, Moira I.; Lou, Hou Keong; Zurek, Kathryn M.

    2018-02-01

    We compute the mass function of bound states of asymmetric dark matter—nuggets—synthesized in the early Universe. We apply our results for the nugget density and binding energy computed from a nuclear model to obtain analytic estimates of the typical nugget size exiting synthesis. We numerically solve the Boltzmann equation for synthesis including two-to-two fusion reactions, estimating the impact of bottlenecks on the mass function exiting synthesis. These results provide the basis for studying the late Universe cosmology of nuggets in a future companion paper.

  8. From the "Modern Synthesis" to cybernetics: Ivan Ivanovich Schmalhausen (1884-1963) and his research program for a synthesis of evolutionary and developmental biology.

    Science.gov (United States)

    Levit, Georgy S; Hossfeld, Uwe; Olsson, Lennart

    2006-03-15

    Ivan I. Schmalhausen was one of the central figures in the Russian development of the "Modern Synthesis" in evolutionary biology. He is widely cited internationally even today. Schmalhausen developed the main principles of his theory facing the danger of death in the totalitarian Soviet Union. His great services to evolutionary and theoretical biology are indisputable. However, the received view of Schmalhausen's contributions to evolutionary biology makes an unbiased reading of his texts difficult. Here we show that taking all of his works into consideration (including those only available in Russian) paints a much more dynamic and exciting picture of what he tried to achieve. Schmalhausen pioneered the integration of a developmental perspective into evolutionary thinking. A main tool for achieving this was his approach to living objects as complex multi-level self-regulating systems. Schmalhausen put enormous effort into bringing this idea into fruition during the final stages of his career by combining evolutionary theory with cybernetics. His results and ideas remain thought-provoking, and his texts are of more than just historical interest. Copyright 2006 Wiley-Liss, Inc.

  9. DNA-synthesis inhibition and repair DNA-synthesis in CHO Ade- C cells: An alternative approach to genotoxicity testing

    International Nuclear Information System (INIS)

    Slamenova, D.; Papsova, E.; Gabelova, A.; Dusinska, M.; Collins, A.; Wsolova, L.

    1997-01-01

    We describe an alternative assay to determine genotoxicity. Its main feature is that it combines two measures in a single experiment; the inhibition of replicative DNA synthesis together with the stimulation of DNA repair. We show that, in tests of four different genotoxic agents, the assay gives results that are entirely consistent with what is known about the mode of action of these agents. In addition, we have demonstrated that chemical carcinogens requiring metabolic activation can be examined using a standard procedure of incubation with a microsomal activating fraction. We consider the combined assay for DNA synthesis inhibition and repair synthesis to be a useful way for the rapid pre-screening of chemicals suspected of genotoxic activity on the level of mammalian cells. (author)

  10. The art and science of knowledge synthesis.

    Science.gov (United States)

    Tricco, Andrea C; Tetzlaff, Jennifer; Moher, David

    2011-01-01

    To review methods for completing knowledge synthesis. We discuss how to complete a broad range of knowledge syntheses. Our article is intended as an introductory guide. Many groups worldwide conduct knowledge syntheses, and some methods are applicable to most reviews. However, variations of these methods are apparent for different types of reviews, such as realist reviews and mixed-model reviews. Review validity is dependent on the validity of the included primary studies and the review process itself. Steps should be taken to avoid bias in the conduct of knowledge synthesis. Transparency in reporting will help readers assess review validity and applicability, increasing its utility. Given the magnitude of the literature, the increasing demands on knowledge syntheses teams, and the diversity of approaches, continuing efforts will be important to increase the efficiency, validity, and applicability of systematic reviews. Future research should focus on increasing the uptake of knowledge synthesis, how best to update reviews, the comparability between different types of reviews (eg, rapid vs. comprehensive reviews), and how to prioritize knowledge synthesis topics. Copyright © 2011 Elsevier Inc. All rights reserved.

  11. Spontaneous unscheduled DNA synthesis in human lymphocytes

    International Nuclear Information System (INIS)

    Forell, B.; Myers, L.S. Jr.; Norman, A.

    1979-01-01

    The rate of spontaneous unscheduled DNA synthesis in human lymphocytes was estimated from measurements of tritiated thymidine incorporation into double-stranded DNA (ds-DNA) during incubation of cells in vitro. The contribution of scheduled DNA synthesis to the observed incorporation was reduced by inhibiting replication with hydroxyurea and by separating freshly replicated single-stranded DNA (ss-DNA) from repaired ds-DNA by column chromatography. The residual contribution of scheduled DNA synthesis was estimated by observing effects on thymidine incorporation of: (a) increasing the rate of production of apurinic sites, and alternatively, (b) increasing the number of cells in S-phase. Corrections based on estimates of endogenous pool size were also made. The rate of spontaneous unscheduled DNA synthesis is estimated to be 490 +- 120 thymidine molecules incorporated per cell per hour. These results compare favorably with estimates made from rates of depurination and depyrimidination of DNA, measured in molecular systems if we assume thymidine is incorporated by a short patch mechanism which incorporates an average of four bases per lesion

  12. Leadership development programs for physicians: a systematic review.

    Science.gov (United States)

    Frich, Jan C; Brewster, Amanda L; Cherlin, Emily J; Bradley, Elizabeth H

    2015-05-01

    Physician leadership development programs typically aim to strengthen physicians' leadership competencies and improve organizational performance. We conducted a systematic review of medical literature on physician leadership development programs in order to characterize the setting, educational content, teaching methods, and learning outcomes achieved. Articles were identified through a search in Ovid MEDLINE from 1950 through November 2013. We included articles that described programs designed to expose physicians to leadership concepts, outlined teaching methods, and reported evaluation outcomes. A thematic analysis was conducted using a structured data entry form with categories for setting/target group, educational content, format, type of evaluation and outcomes. We identified 45 studies that met eligibility criteria, of which 35 reported on programs exclusively targeting physicians. The majority of programs focused on skills training and technical and conceptual knowledge, while fewer programs focused on personal growth and awareness. Half of the studies used pre/post intervention designs, and four studies used a comparison group. Positive outcomes were reported in all studies, although the majority of studies relied on learner satisfaction scores and self-assessed knowledge or behavioral change. Only six studies documented favorable organizational outcomes, such as improvement in quality indicators for disease management. The leadership programs examined in these studies were characterized by the use of multiple learning methods, including lectures, seminars, group work, and action learning projects in multidisciplinary teams. Physician leadership development programs are associated with increased self-assessed knowledge and expertise; however, few studies have examined outcomes at a system level. Our synthesis of the literature suggests important gaps, including a lack of programs that integrate non-physician and physician professionals, limited use of more

  13. Cell-Free, De Nova Synthesis of Poliovirus

    Science.gov (United States)

    Molla, Akhteruzzaman; Paul, Aniko V.; Wimmer, Eckard

    1991-12-01

    Cell-free translation of poliovirus RNA in an extract of uninfected human (HeLa) cells yielded viral proteins through proteolysis of the polyprotein. In the extract, newly synthesized proteins catalyzed poliovirus-specific RNA synthesis, and formed infectious poliovirus de novo. Newly formed virions were neutralized by type-specific antiserum, and infection of human cells with them was prevented by poliovirus receptor-specific antibodies. Poliovirus synthesis was increased nearly 70-fold when nucleoside triphosphates were added, but it was abolished in the presence of inhibitors of translation or viral genome replication. The ability to conduct cell-free synthesis of poliovirus will aid in the study of picornavirus proliferation and in the search for the control of picornaviral disease.

  14. Ordered synthesis and mobilization of glycogen in the perfused heart

    International Nuclear Information System (INIS)

    Brainard, J.R.; Hutson, J.Y.; Hoekenga, D.E.; Lenhoff, R.

    1989-01-01

    The molecular order of synthesis and mobilization of glycogen in the perfused heart was studied by 13 C NMR. By varying the glucose isotopomer ([1- 13 C]glucose or [2- 13 C]glucose) supplied to the heart, glycogen synthesized at different times during the perfusion was labeled at different carbon sites. Subsequently, the in situ mobilization of glycogen during ischemia was observed by detection of labeled lactate derived from glycolysis of the glucosyl monomers. When [1- 13 C]glucose was given initially in the perfusion and [2- 13 C]glucose was given second, [2- 13 C]lactate was detected first during ischemia and [3- 13 C]lactate second. This result, and the equivalent result when the glucose labels were given in the reverse order, demonstrates that glycogen synthesis and mobilization are ordered in the heart, where glycogen is found morphologically only as β particles. Previous studies of glycogen synthesis and mobilization in liver and adipocytes have suggested that the organization of β particles into α particles was partially responsible for ordered synthesis and mobilization. The observations reported here for cardiac glycogen suggest that another mechanism is responsible. In addition to examine the ordered synthesis and mobilization of cardiac glycogen, the authors have selectively monitored the NMR properties of 13 C-labeled glycogen synthesized early in the perfusion during further glycogen synthesis from a second, differently labeled substrate. During synthesis from the second labeled glucose monomer, the glycogen resonance from the first label decreased in integrated intensity and increased in line width. These results suggest either that there is significant isotopic exchange of glucosyl monomers in glycogen during net synthesis or that glucosyl residues incorporated into glycogen undergo motional restrictions as further glycogen synthesis occurs

  15. Effect of UVA on RNA synthesis in isolated chicken liver nuclei

    Energy Technology Data Exchange (ETDEWEB)

    Arai, Soichiro; Nakanishi, Y.H.; Hayashi, Masanobu [Rakuno Gakuen Univ., Ebetsu, Hokkaido (Japan)

    1997-03-01

    Little information is available on the effects of UVA (320-400 nm radiation) on transcription. We examined the effect of UVA on RNA synthesis in isolated chicken liver nuclei. Nuclei in air or nitrogen were irradiated with UVA, and the RNA synthesis induced by endogenous RNA polymerase was estimated under conditions in which little or no initiation occurs. Incorporation of ={sup 3}H=UMP into the acid-insoluble fraction was used as the measure of RNA synthesis in the nuclei. In air the amount of synthesized RNA decreased with increasing UVA fluence. In contrast, in nitrogen UVA had little effect on RNA synthesis. Sodium azide and histidine, which effectively scavenge singlet oxygen ({sup 1}O{sub 2}) as well as hydroxyl radicals ({center_dot}OH), protected the nuclei from inhibition of RNA synthesis; whereas, sodium formate and dimethyl sulfoxide, both of which much more effectively scavenge {center_dot}OH than {sup 1}O{sub 2}, had no protective effect. These findings provide a strong indication that {sup 1}O{sub 2} is involved in the inhibition of RNA synthesis. In addition, RNA polymerase II-dependent synthesis (in the nucleoplasm) was much more sensitive to UVA than RNA polymerase I-dependent synthesis (in the nucleolus). (author)

  16. Synthesis of Optimal Processing Pathway for Microalgae-based Biorefinery under Uncertainty

    DEFF Research Database (Denmark)

    Rizwan, Muhammad; Lee, Jay H.; Gani, Rafiqul

    2015-01-01

    decision making, we propose a systematic framework for the synthesis and optimal design of microalgae-based processing network under uncertainty. By incorporating major uncertainties into the biorefinery superstructure model we developed previously, a stochastic mixed integer nonlinear programming (s......The research in the field of microalgae-based biofuels and chemicals is in early phase of the development, and therefore a wide range of uncertainties exist due to inconsistencies among and shortage of technical information. In order to handle and address these uncertainties to ensure robust......MINLP) problem is formulated for determining the optimal biorefinery structure under given parameter uncertainties modelled as sampled scenarios. The solution to the sMINLP problem determines the optimal decisions with respect to processing technologies, material flows, and product portfolio in the presence...

  17. Evaluating the use of programming games for building early analytical thinking skills

    Directory of Open Access Journals (Sweden)

    H. Tsalapatas

    2015-11-01

    Full Text Available Analytical thinking is a transversal skill that helps learners excel academically independently of theme area. It is on high demand in the world of work especially in innovation related sectors. It involves finding a viable solution to a problem by identifying goals, parameters, and resources available for deployment. These are strategy elements in game play. They further constitute good practices in programming. This work evaluates how serious games based on visual programming as a solution synthesis tool within exploration, inquiry, and collaboration can help learners build structured mindsets. It analyses how a visual programming environment that supports experimentation for building intuition on potential solutions to logical puzzles, and then encourages learners to synthesize a solution interactively, helps learners through gaming principles to build self-esteem on their problem solving ability, to develop algorithmic thinking capacity, and to stay engaged in learning.

  18. Green Synthesis of Robust, Biocompatible Silver Nanoparticles Using Garlic Extract

    International Nuclear Information System (INIS)

    White, G.V.; Kerscher, P.; Brown, R.M.; Morella, J.D.; Kitchens, C.L.; McAllister, W.; Dean, D.

    2012-01-01

    This paper details a facile approach for the synthesis of stable and monodisperse silver nanoparticles performed at ambient/low temperature, where Allium sativum (garlic) extract functions as the silver salt reducing agent during nanoparticle synthesis as well as the post synthesis stabilizing ligands. Varying the synthesis conditions provides control of particle size, size-distribution, and kinetics of particle formation. Infrared spectroscopy, energy dispersive X-ray chemical analysis, and high-performance liquid chromatography indicated that allicin and other carbohydrates in the garlic extract are the primary nanoparticle stabilizing moieties. The synthesized silver nanoparticles also demonstrate potential for biomedical applications, owing to (1) enhanced stability in biological media, (2) resistance to oxidation by the addition of H 2 O 2 , (3) ease and scalability of synthesis, and (4) lack of harsh chemicals required for synthesis. Cytotoxicity assays indicated no decrease in cellular proliferation for vascular smooth muscle cells and 3T3 fibroblasts at a concentration of 25 μg/mL, confirming that silver nanoparticles synthesized with garlic extract are potential candidates for future experimentation and implementation in the biomedical field.

  19. Influence factor on automated synthesis yield of 3'-deoxy-3'-[18F] fluorothymidine

    International Nuclear Information System (INIS)

    Zhang Jinming; Tian Jiahe; Liu Changbin; Liu Jian; Luo Zhigang

    2009-01-01

    3'-deoxy-3'-[ 18 F] fluorothymidine ( 18 F-FLT) was prepared from N-BOC precursor to improve the synthesis yield, chemical purity and radiochemical purity of 18 F-FLT by home-made automated synthesis module. The results showed that residual water in synthesis system and the amount of precursor could affect the synthesis yield dramatically. The more the amount of precursor, the higher the synthesis yield of N-BOC. The residual water can decrease the synthesis yield. In the presence of excess base, the precursor was consumed by elimination before substitution was completed. The precursor to base was optimal in 1 to 1. The balance of semi-preparatiove HPLC Column can affect purified the final 18 F-FLT product. The chemical purity of 18 F-FLT could be decreased with 8% EtOH as mobile phase in semi-preparatiove HPLC. The high chemical purity, radiochemical purity and synthesis yield could be obtained by optimized the parameter of synthesis with home-made automated synthesis module. (authors)

  20. Technology library modeling for information-driven circuit synthesis

    NARCIS (Netherlands)

    Jozwiak, L.; Bieganski, S.J.

    2008-01-01

    Due to weaknesses in circuit synthesis methods used in todaypsilas CAD tools, the opportunities created by modern microelectronic technology cannot effectively be exploited. This paper considers major issues and requirements of circuit synthesis for the nano CMOS technologies, and discusses our new