Sample records for block tridiagonal systems

  1. An Accelerated Recursive Doubling Algorithm for Block Tridiagonal Systems

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

    Seal, Sudip K

    2014-01-01

    Block tridiagonal systems of linear equations arise in a wide variety of scientific and engineering applications. Recursive doubling algorithm is a well-known prefix computation-based numerical algorithm that requires O(M^3(N/P + log P)) work to compute the solution of a block tridiagonal system with N block rows and block size M on P processors. In real-world applications, solutions of tridiagonal systems are most often sought with multiple, often hundreds and thousands, of different right hand sides but with the same tridiagonal matrix. Here, we show that a recursive doubling algorithm is sub-optimal when computing solutions of block tridiagonal systems with multiplemore » right hand sides and present a novel algorithm, called the accelerated recursive doubling algorithm, that delivers O(R) improvement when solving block tridiagonal systems with R distinct right hand sides. Since R is typically about 100 1000, this improvement translates to very significant speedups in practice. Detailed complexity analyses of the new algorithm with empirical confirmation of runtime improvements are presented. To the best of our knowledge, this algorithm has not been reported before in the literature.« less

  2. Revisiting Parallel Cyclic Reduction and Parallel Prefix-Based Algorithms for Block Tridiagonal System of Equations

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

    Seal, Sudip K; Perumalla, Kalyan S; Hirshman, Steven Paul

    2013-01-01

    Simulations that require solutions of block tridiagonal systems of equations rely on fast parallel solvers for runtime efficiency. Leading parallel solvers that are highly effective for general systems of equations, dense or sparse, are limited in scalability when applied to block tridiagonal systems. This paper presents scalability results as well as detailed analyses of two parallel solvers that exploit the special structure of block tridiagonal matrices to deliver superior performance, often by orders of magnitude. A rigorous analysis of their relative parallel runtimes is shown to reveal the existence of a critical block size that separates the parameter space spannedmore » by the number of block rows, the block size and the processor count, into distinct regions that favor one or the other of the two solvers. Dependence of this critical block size on the above parameters as well as on machine-specific constants is established. These formal insights are supported by empirical results on up to 2,048 cores of a Cray XT4 system. To the best of our knowledge, this is the highest reported scalability for parallel block tridiagonal solvers to date.« less

  3. Solving periodic block tridiagonal systems using the Sherman-Morrison-Woodbury formula

    NASA Technical Reports Server (NTRS)

    Yarrow, Maurice

    1989-01-01

    Many algorithms for solving the Navier-Stokes equations require the solution of periodic block tridiagonal systems of equations. By applying a splitting to the matrix representing this system of equations, it may first be reduced to a block tridiagonal matrix plus an outer product of two block vectors. The Sherman-Morrison-Woodbury formula is then applied. The algorithm thus reduces a periodic banded system to a non-periodic banded system with additional right-hand sides and is of higher efficiency than standard Thomas algorithm/LU decompositions.

  4. Parallel Gaussian elimination of a block tridiagonal matrix using multiple microcomputers

    NASA Technical Reports Server (NTRS)

    Blech, Richard A.

    1989-01-01

    The solution of a block tridiagonal matrix using parallel processing is demonstrated. The multiprocessor system on which results were obtained and the software environment used to program that system are described. Theoretical partitioning and resource allocation for the Gaussian elimination method used to solve the matrix are discussed. The results obtained from running 1, 2 and 3 processor versions of the block tridiagonal solver are presented. The PASCAL source code for these solvers is given in the appendix, and may be transportable to other shared memory parallel processors provided that the synchronization outlines are reproduced on the target system.

  5. SSE-based Thomas algorithm for quasi-block-tridiagonal linear equation systems, optimized for small dense blocks

    NASA Astrophysics Data System (ADS)

    Barnaś, Dawid; Bieniasz, Lesław K.

    2017-07-01

    We have recently developed a vectorized Thomas solver for quasi-block tridiagonal linear algebraic equation systems using Streaming SIMD Extensions (SSE) and Advanced Vector Extensions (AVX) in operations on dense blocks [D. Barnaś and L. K. Bieniasz, Int. J. Comput. Meth., accepted]. The acceleration caused by vectorization was observed for large block sizes, but was less satisfactory for small blocks. In this communication we report on another version of the solver, optimized for small blocks of size up to four rows and/or columns.

  6. A fast direct method for block triangular Toeplitz-like with tri-diagonal block systems from time-fractional partial differential equations

    NASA Astrophysics Data System (ADS)

    Ke, Rihuan; Ng, Michael K.; Sun, Hai-Wei

    2015-12-01

    In this paper, we study the block lower triangular Toeplitz-like with tri-diagonal blocks system which arises from the time-fractional partial differential equation. Existing fast numerical solver (e.g., fast approximate inversion method) cannot handle such linear system as the main diagonal blocks are different. The main contribution of this paper is to propose a fast direct method for solving this linear system, and to illustrate that the proposed method is much faster than the classical block forward substitution method for solving this linear system. Our idea is based on the divide-and-conquer strategy and together with the fast Fourier transforms for calculating Toeplitz matrix-vector multiplication. The complexity needs O (MNlog2 ⁡ M) arithmetic operations, where M is the number of blocks (the number of time steps) in the system and N is the size (number of spatial grid points) of each block. Numerical examples from the finite difference discretization of time-fractional partial differential equations are also given to demonstrate the efficiency of the proposed method.

  7. A time-domain decomposition iterative method for the solution of distributed linear quadratic optimal control problems

    NASA Astrophysics Data System (ADS)

    Heinkenschloss, Matthias

    2005-01-01

    We study a class of time-domain decomposition-based methods for the numerical solution of large-scale linear quadratic optimal control problems. Our methods are based on a multiple shooting reformulation of the linear quadratic optimal control problem as a discrete-time optimal control (DTOC) problem. The optimality conditions for this DTOC problem lead to a linear block tridiagonal system. The diagonal blocks are invertible and are related to the original linear quadratic optimal control problem restricted to smaller time-subintervals. This motivates the application of block Gauss-Seidel (GS)-type methods for the solution of the block tridiagonal systems. Numerical experiments show that the spectral radii of the block GS iteration matrices are larger than one for typical applications, but that the eigenvalues of the iteration matrices decay to zero fast. Hence, while the GS method is not expected to convergence for typical applications, it can be effective as a preconditioner for Krylov-subspace methods. This is confirmed by our numerical tests.A byproduct of this research is the insight that certain instantaneous control techniques can be viewed as the application of one step of the forward block GS method applied to the DTOC optimality system.

  8. BCYCLIC: A parallel block tridiagonal matrix cyclic solver

    NASA Astrophysics Data System (ADS)

    Hirshman, S. P.; Perumalla, K. S.; Lynch, V. E.; Sanchez, R.

    2010-09-01

    A block tridiagonal matrix is factored with minimal fill-in using a cyclic reduction algorithm that is easily parallelized. Storage of the factored blocks allows the application of the inverse to multiple right-hand sides which may not be known at factorization time. Scalability with the number of block rows is achieved with cyclic reduction, while scalability with the block size is achieved using multithreaded routines (OpenMP, GotoBLAS) for block matrix manipulation. This dual scalability is a noteworthy feature of this new solver, as well as its ability to efficiently handle arbitrary (non-powers-of-2) block row and processor numbers. Comparison with a state-of-the art parallel sparse solver is presented. It is expected that this new solver will allow many physical applications to optimally use the parallel resources on current supercomputers. Example usage of the solver in magneto-hydrodynamic (MHD), three-dimensional equilibrium solvers for high-temperature fusion plasmas is cited.

  9. Characterizing the inverses of block tridiagonal, block Toeplitz matrices

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

    Boffi, Nicholas M.; Hill, Judith C.; Reuter, Matthew G.

    2014-12-04

    We consider the inversion of block tridiagonal, block Toeplitz matrices and comment on the behaviour of these inverses as one moves away from the diagonal. Using matrix M bius transformations, we first present an O(1) representation (with respect to the number of block rows and block columns) for the inverse matrix and subsequently use this representation to characterize the inverse matrix. There are four symmetry-distinct cases where the blocks of the inverse matrix (i) decay to zero on both sides of the diagonal, (ii) oscillate on both sides, (iii) decay on one side and oscillate on the other and (iv)more » decay on one side and grow on the other. This characterization exposes the necessary conditions for the inverse matrix to be numerically banded and may also aid in the design of preconditioners and fast algorithms. Finally, we present numerical examples of these matrix types.« less

  10. Navier-Stokes simulation of plume/Vertical Launching System interaction flowfields

    NASA Astrophysics Data System (ADS)

    York, B. J.; Sinha, N.; Dash, S. M.; Anderson, L.; Gominho, L.

    1992-01-01

    The application of Navier-Stokes methodology to the analysis of Vertical Launching System/missile exhaust plume interactions is discussed. The complex 3D flowfields related to the Vertical Launching System are computed utilizing the PARCH/RNP Navier-Stokes code. PARCH/RNP solves the fully-coupled system of fluid, two-equation turbulence (k-epsilon) and chemical species equations via the implicit, approximately factored, Beam-Warming algorithm utilizing a block-tridiagonal inversion procedure.

  11. Applications and accuracy of the parallel diagonal dominant algorithm

    NASA Technical Reports Server (NTRS)

    Sun, Xian-He

    1993-01-01

    The Parallel Diagonal Dominant (PDD) algorithm is a highly efficient, ideally scalable tridiagonal solver. In this paper, a detailed study of the PDD algorithm is given. First the PDD algorithm is introduced. Then the algorithm is extended to solve periodic tridiagonal systems. A variant, the reduced PDD algorithm, is also proposed. Accuracy analysis is provided for a class of tridiagonal systems, the symmetric, and anti-symmetric Toeplitz tridiagonal systems. Implementation results show that the analysis gives a good bound on the relative error, and the algorithm is a good candidate for the emerging massively parallel machines.

  12. Communication-avoiding symmetric-indefinite factorization

    DOE PAGES

    Ballard, Grey Malone; Becker, Dulcenia; Demmel, James; ...

    2014-11-13

    We describe and analyze a novel symmetric triangular factorization algorithm. The algorithm is essentially a block version of Aasen's triangular tridiagonalization. It factors a dense symmetric matrix A as the product A=PLTL TP T where P is a permutation matrix, L is lower triangular, and T is block tridiagonal and banded. The algorithm is the first symmetric-indefinite communication-avoiding factorization: it performs an asymptotically optimal amount of communication in a two-level memory hierarchy for almost any cache-line size. Adaptations of the algorithm to parallel computers are likely to be communication efficient as well; one such adaptation has been recently published. Asmore » a result, the current paper describes the algorithm, proves that it is numerically stable, and proves that it is communication optimal.« less

  13. Communication-avoiding symmetric-indefinite factorization

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

    Ballard, Grey Malone; Becker, Dulcenia; Demmel, James

    We describe and analyze a novel symmetric triangular factorization algorithm. The algorithm is essentially a block version of Aasen's triangular tridiagonalization. It factors a dense symmetric matrix A as the product A=PLTL TP T where P is a permutation matrix, L is lower triangular, and T is block tridiagonal and banded. The algorithm is the first symmetric-indefinite communication-avoiding factorization: it performs an asymptotically optimal amount of communication in a two-level memory hierarchy for almost any cache-line size. Adaptations of the algorithm to parallel computers are likely to be communication efficient as well; one such adaptation has been recently published. Asmore » a result, the current paper describes the algorithm, proves that it is numerically stable, and proves that it is communication optimal.« less

  14. Some fast elliptic solvers on parallel architectures and their complexities

    NASA Technical Reports Server (NTRS)

    Gallopoulos, E.; Saad, Y.

    1989-01-01

    The discretization of separable elliptic partial differential equations leads to linear systems with special block tridiagonal matrices. Several methods are known to solve these systems, the most general of which is the Block Cyclic Reduction (BCR) algorithm which handles equations with nonconstant coefficients. A method was recently proposed to parallelize and vectorize BCR. In this paper, the mapping of BCR on distributed memory architectures is discussed, and its complexity is compared with that of other approaches including the Alternating-Direction method. A fast parallel solver is also described, based on an explicit formula for the solution, which has parallel computational compelxity lower than that of parallel BCR.

  15. Comparison of eigensolvers for symmetric band matrices.

    PubMed

    Moldaschl, Michael; Gansterer, Wilfried N

    2014-09-15

    We compare different algorithms for computing eigenvalues and eigenvectors of a symmetric band matrix across a wide range of synthetic test problems. Of particular interest is a comparison of state-of-the-art tridiagonalization-based methods as implemented in Lapack or Plasma on the one hand, and the block divide-and-conquer (BD&C) algorithm as well as the block twisted factorization (BTF) method on the other hand. The BD&C algorithm does not require tridiagonalization of the original band matrix at all, and the current version of the BTF method tridiagonalizes the original band matrix only for computing the eigenvalues. Avoiding the tridiagonalization process sidesteps the cost of backtransformation of the eigenvectors. Beyond that, we discovered another disadvantage of the backtransformation process for band matrices: In several scenarios, a lot of gradual underflow is observed in the (optional) accumulation of the transformation matrix and in the (obligatory) backtransformation step. According to the IEEE 754 standard for floating-point arithmetic, this implies many operations with subnormal (denormalized) numbers, which causes severe slowdowns compared to the other algorithms without backtransformation of the eigenvectors. We illustrate that in these cases the performance of existing methods from Lapack and Plasma reaches a competitive level only if subnormal numbers are disabled (and thus the IEEE standard is violated). Overall, our performance studies illustrate that if the problem size is large enough relative to the bandwidth, BD&C tends to achieve the highest performance of all methods if the spectrum to be computed is clustered. For test problems with well separated eigenvalues, the BTF method tends to become the fastest algorithm with growing problem size.

  16. Stability and Drag Reduction in a Boundary Layer with Microbubbles.

    DTIC Science & Technology

    1988-02-01

    order accurate. .’ Since the numerical methods are not the object of this % dissertation, we decline from including the finite difference equations...previous appendix must be the special case of zero pressure gradient. Some entries of the matrices of the block tridiagonal system will be different ...of the wall mean velocity gradient was observed to be associated with the migration of the bubbles away from the boundary layer. The time scale of the

  17. Navier-Stokes computation of compressible turbulent flows with a second order closure

    NASA Technical Reports Server (NTRS)

    Dingus, C.; Kollmann, W.

    1991-01-01

    The objective was the development of a complete second order closure for wall bounded flows, including all components of the dissipation rate tensor and a numerical solution procedure for the resulting system of equations. The main topics discussed are the closure of the pressure correlations and the viscous destruction terms in the dissipation rate equations and the numerical solution scheme based on a block-tridiagonal solver for the nine equations required for the prediction of plane or axisymmetric flows.

  18. Solution of a tridiagonal system of equations on the finite element machine

    NASA Technical Reports Server (NTRS)

    Bostic, S. W.

    1984-01-01

    Two parallel algorithms for the solution of tridiagonal systems of equations were implemented on the Finite Element Machine. The Accelerated Parallel Gauss method, an iterative method, and the Buneman algorithm, a direct method, are discussed and execution statistics are presented.

  19. An incremental block-line-Gauss-Seidel method for the Navier-Stokes equations

    NASA Technical Reports Server (NTRS)

    Napolitano, M.; Walters, R. W.

    1985-01-01

    A block-line-Gauss-Seidel (LGS) method is developed for solving the incompressible and compressible Navier-Stokes equations in two dimensions. The method requires only one block-tridiagonal solution process per iteration and is consequently faster per step than the linearized block-ADI methods. Results are presented for both incompressible and compressible separated flows: in all cases the proposed block-LGS method is more efficient than the block-ADI methods. Furthermore, for high Reynolds number weakly separated incompressible flow in a channel, which proved to be an impossible task for a block-ADI method, solutions have been obtained very efficiently by the new scheme.

  20. Vectorization of transport and diffusion computations on the CDC Cyber 205

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

    Abu-Shumays, I.K.

    1986-01-01

    The development and testing of alternative numerical methods and computational algorithms specifically designed for the vectorization of transport and diffusion computations on a Control Data Corporation (CDC) Cyber 205 vector computer are described. Two solution methods for the discrete ordinates approximation to the transport equation are summarized and compared. Factors of 4 to 7 reduction in run times for certain large transport problems were achieved on a Cyber 205 as compared with run times on a CDC-7600. The solution of tridiagonal systems of linear equations, central to several efficient numerical methods for multidimensional diffusion computations and essential for fluid flowmore » and other physics and engineering problems, is also dealt with. Among the methods tested, a combined odd-even cyclic reduction and modified Cholesky factorization algorithm for solving linear symmetric positive definite tridiagonal systems is found to be the most effective for these systems on a Cyber 205. For large tridiagonal systems, computation with this algorithm is an order of magnitude faster on a Cyber 205 than computation with the best algorithm for tridiagonal systems on a CDC-7600.« less

  1. Performance Comparison of a Set of Periodic and Non-Periodic Tridiagonal Solvers on SP2 and Paragon Parallel Computers

    NASA Technical Reports Server (NTRS)

    Sun, Xian-He; Moitra, Stuti

    1996-01-01

    Various tridiagonal solvers have been proposed in recent years for different parallel platforms. In this paper, the performance of three tridiagonal solvers, namely, the parallel partition LU algorithm, the parallel diagonal dominant algorithm, and the reduced diagonal dominant algorithm, is studied. These algorithms are designed for distributed-memory machines and are tested on an Intel Paragon and an IBM SP2 machines. Measured results are reported in terms of execution time and speedup. Analytical study are conducted for different communication topologies and for different tridiagonal systems. The measured results match the analytical results closely. In addition to address implementation issues, performance considerations such as problem sizes and models of speedup are also discussed.

  2. A Fast parallel tridiagonal algorithm for a class of CFD applications

    NASA Technical Reports Server (NTRS)

    Moitra, Stuti; Sun, Xian-He

    1996-01-01

    The parallel diagonal dominant (PDD) algorithm is an efficient tridiagonal solver. This paper presents for study a variation of the PDD algorithm, the reduced PDD algorithm. The new algorithm maintains the minimum communication provided by the PDD algorithm, but has a reduced operation count. The PDD algorithm also has a smaller operation count than the conventional sequential algorithm for many applications. Accuracy analysis is provided for the reduced PDD algorithm for symmetric Toeplitz tridiagonal (STT) systems. Implementation results on Langley's Intel Paragon and IBM SP2 show that both the PDD and reduced PDD algorithms are efficient and scalable.

  3. Numerical Calculation of Neoclassical Distribution Functions and Current Profiles in Low Collisionality, Axisymmetric Plasmas

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

    B.C. Lyons, S.C. Jardin, and J.J. Ramos

    2012-06-28

    A new code, the Neoclassical Ion-Electron Solver (NIES), has been written to solve for stationary, axisymmetric distribution functions (f ) in the conventional banana regime for both ions and elec trons using a set of drift-kinetic equations (DKEs) with linearized Fokker-Planck-Landau collision operators. Solvability conditions on the DKEs determine the relevant non-adiabatic pieces of f (called h ). We work in a 4D phase space in which Ψ defines a flux surface, θ is the poloidal angle, v is the total velocity referenced to the mean flow velocity, and λ is the dimensionless magnetic moment parameter. We expand h inmore » finite elements in both v and λ . The Rosenbluth potentials, φ and ψ, which define the integral part of the collision operator, are expanded in Legendre series in cos χ , where χ is the pitch angle, Fourier series in cos θ , and finite elements in v . At each ψ , we solve a block tridiagonal system for hi (independent of fe ), then solve another block tridiagonal system for he (dependent on fi ). We demonstrate that such a formulation can be accurately and efficiently solved. NIES is coupled to the MHD equilibrium code JSOLVER [J. DeLucia, et al., J. Comput. Phys. 37 , pp 183-204 (1980).] allowing us to work with realistic magnetic geometries. The bootstrap current is calculated as a simple moment of the distribution function. Results are benchmarked against the Sauter analytic formulas and can be used as a kinetic closure for an MHD code (e.g., M3D-C1 [S.C. Jardin, et al ., Computational Science & Discovery, 4 (2012).]).« less

  4. Band gap engineering in finite elongated graphene nanoribbon heterojunctions: Tight-binding model

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

    Tayo, Benjamin O.

    2015-08-15

    A simple model based on the divide and conquer rule and tight-binding (TB) approximation is employed for studying the role of finite size effect on the electronic properties of elongated graphene nanoribbon (GNR) heterojunctions. In our model, the GNR heterojunction is divided into three parts: a left (L) part, middle (M) part, and right (R) part. The left part is a GNR of width W{sub L}, the middle part is a GNR of width W{sub M}, and the right part is a GNR of width W{sub R}. We assume that the left and right parts of the GNR heterojunction interactmore » with the middle part only. Under this approximation, the Hamiltonian of the system can be expressed as a block tridiagonal matrix. The matrix elements of the tridiagonal matrix are computed using real space nearest neighbor orthogonal TB approximation. The electronic structure of the GNR heterojunction is analyzed by computing the density of states. We demonstrate that for heterojunctions for which W{sub L} = W{sub R}, the band gap of the system can be tuned continuously by varying the length of the middle part, thus providing a new approach to band gap engineering in GNRs. Our TB results were compared with calculations employing divide and conquer rule in combination with density functional theory (DFT) and were found to agree nicely.« less

  5. 3D Gaussian Beam Modeling

    DTIC Science & Technology

    2011-09-01

    optimized building blocks such as a parallelized tri-diagonal linear solver (used in the “implicit finite differences ” and split-step Pade PE models...and Ding Lee. “A finite - difference treatment of interface conditions for the parabolic wave equation: The horizontal interface.” The Journal of the...Acoustical Society of America, 71(4):855, 1982. 3. Ding Lee and Suzanne T. McDaniel. “A finite - difference treatment of interface conditions for

  6. Parallelization of implicit finite difference schemes in computational fluid dynamics

    NASA Technical Reports Server (NTRS)

    Decker, Naomi H.; Naik, Vijay K.; Nicoules, Michel

    1990-01-01

    Implicit finite difference schemes are often the preferred numerical schemes in computational fluid dynamics, requiring less stringent stability bounds than the explicit schemes. Each iteration in an implicit scheme involves global data dependencies in the form of second and higher order recurrences. Efficient parallel implementations of such iterative methods are considerably more difficult and non-intuitive. The parallelization of the implicit schemes that are used for solving the Euler and the thin layer Navier-Stokes equations and that require inversions of large linear systems in the form of block tri-diagonal and/or block penta-diagonal matrices is discussed. Three-dimensional cases are emphasized and schemes that minimize the total execution time are presented. Partitioning and scheduling schemes for alleviating the effects of the global data dependencies are described. An analysis of the communication and the computation aspects of these methods is presented. The effect of the boundary conditions on the parallel schemes is also discussed.

  7. An efficient parallel algorithm for the solution of a tridiagonal linear system of equations

    NASA Technical Reports Server (NTRS)

    Stone, H. S.

    1971-01-01

    Tridiagonal linear systems of equations are solved on conventional serial machines in a time proportional to N, where N is the number of equations. The conventional algorithms do not lend themselves directly to parallel computations on computers of the ILLIAC IV class, in the sense that they appear to be inherently serial. An efficient parallel algorithm is presented in which computation time grows as log sub 2 N. The algorithm is based on recursive doubling solutions of linear recurrence relations, and can be used to solve recurrence relations of all orders.

  8. On K-Line and K x K Block Iterative Schemes for a Problem Arising in 3-D Elliptic Difference Equations.

    DTIC Science & Technology

    1980-01-01

    VPARTER. , STEUERWALT No 0I 76_C-03AI UNCLASSIFIED CSTR -374 ML M EMON~hEE 111112.08 12.5 111112 1.4 1 1. KWOCP RSLINTS CHR NA11~ L .R~l0 ___VRD I-l...4b) are obtained from the well known algorithm for solving diagonally dominant tridiagonal sys- tems; see (16, 10]. The monotonicity of the Ej and the

  9. Further results on the stagnation point boundary layer with hydrogen injection.

    NASA Technical Reports Server (NTRS)

    Wu, P.; Libby, P. A.

    1972-01-01

    The results of an earlier paper on the behavior of the boundary layer at an axisymmetric stagnation with hydrogen injection into a hot external airstream are extended to span the entire range from essentially frozen to essentially equilibrium flow. This extension is made possible by the employment of finite difference methods; the accurate treatment of the boundary conditions at 'infinity,' the differencing technique employed and the formulation resulting in block tri-diagonal matrices are slight variants in the present work.

  10. Solving the linear inviscid shallow water equations in one dimension, with variable depth, using a recursion formula

    NASA Astrophysics Data System (ADS)

    Hernandez-Walls, R.; Martín-Atienza, B.; Salinas-Matus, M.; Castillo, J.

    2017-11-01

    When solving the linear inviscid shallow water equations with variable depth in one dimension using finite differences, a tridiagonal system of equations must be solved. Here we present an approach, which is more efficient than the commonly used numerical method, to solve this tridiagonal system of equations using a recursion formula. We illustrate this approach with an example in which we solve for a rectangular channel to find the resonance modes. Our numerical solution agrees very well with the analytical solution. This new method is easy to use and understand by undergraduate students, so it can be implemented in undergraduate courses such as Numerical Methods, Lineal Algebra or Differential Equations.

  11. A Navier-Strokes Chimera Code on the Connection Machine CM-5: Design and Performance

    NASA Technical Reports Server (NTRS)

    Jespersen, Dennis C.; Levit, Creon; Kwak, Dochan (Technical Monitor)

    1994-01-01

    We have implemented a three-dimensional compressible Navier-Stokes code on the Connection Machine CM-5. The code is set up for implicit time-stepping on single or multiple structured grids. For multiple grids and geometrically complex problems, we follow the 'chimera' approach, where flow data on one zone is interpolated onto another in the region of overlap. We will describe our design philosophy and give some timing results for the current code. A parallel machine like the CM-5 is well-suited for finite-difference methods on structured grids. The regular pattern of connections of a structured mesh maps well onto the architecture of the machine. So the first design choice, finite differences on a structured mesh, is natural. We use centered differences in space, with added artificial dissipation terms. When numerically solving the Navier-Stokes equations, there are liable to be some mesh cells near a solid body that are small in at least one direction. This mesh cell geometry can impose a very severe CFL (Courant-Friedrichs-Lewy) condition on the time step for explicit time-stepping methods. Thus, though explicit time-stepping is well-suited to the architecture of the machine, we have adopted implicit time-stepping. We have further taken the approximate factorization approach. This creates the need to solve large banded linear systems and creates the first possible barrier to an efficient algorithm. To overcome this first possible barrier we have considered two options. The first is just to solve the banded linear systems with data spread over the whole machine, using whatever fast method is available. This option is adequate for solving scalar tridiagonal systems, but for scalar pentadiagonal or block tridiagonal systems it is somewhat slower than desired. The second option is to 'transpose' the flow and geometry variables as part of the time-stepping process: Start with x-lines of data in-processor. Form explicit terms in x, then transpose so y-lines of data are in-processor. Form explicit terms in y, then transpose so z-lines are in processor. Form explicit terms in z, then solve linear systems in the z-direction. Transpose to the y-direction, then solve linear systems in the y-direction. Finally transpose to the x direction and solve linear systems in the x-direction. This strategy avoids inter-processor communication when differencing and solving linear systems, but requires a large amount of communication when doing the transposes. The transpose method is more efficient than the non-transpose strategy when dealing with scalar pentadiagonal or block tridiagonal systems. For handling geometrically complex problems the chimera strategy was adopted. For multiple zone cases we compute on each zone sequentially (using the whole parallel machine), then send the chimera interpolation data to a distributed data structure (array) laid out over the whole machine. This information transfer implies an irregular communication pattern, and is the second possible barrier to an efficient algorithm. We have implemented these ideas on the CM-5 using CMF (Connection Machine Fortran), a data parallel language which combines elements of Fortran 90 and certain extensions, and which bears a strong similarity to High Performance Fortran. We make use of the Connection Machine Scientific Software Library (CMSSL) for the linear solver and array transpose operations.

  12. Efficient Parallel Algorithm For Direct Numerical Simulation of Turbulent Flows

    NASA Technical Reports Server (NTRS)

    Moitra, Stuti; Gatski, Thomas B.

    1997-01-01

    A distributed algorithm for a high-order-accurate finite-difference approach to the direct numerical simulation (DNS) of transition and turbulence in compressible flows is described. This work has two major objectives. The first objective is to demonstrate that parallel and distributed-memory machines can be successfully and efficiently used to solve computationally intensive and input/output intensive algorithms of the DNS class. The second objective is to show that the computational complexity involved in solving the tridiagonal systems inherent in the DNS algorithm can be reduced by algorithm innovations that obviate the need to use a parallelized tridiagonal solver.

  13. A tridiagonal parsimonious higher order multivariate Markov chain model

    NASA Astrophysics Data System (ADS)

    Wang, Chao; Yang, Chuan-sheng

    2017-09-01

    In this paper, we present a tridiagonal parsimonious higher-order multivariate Markov chain model (TPHOMMCM). Moreover, estimation method of the parameters in TPHOMMCM is give. Numerical experiments illustrate the effectiveness of TPHOMMCM.

  14. Complex eigenvalue extraction in NASTRAN by the tridiagonal reduction (FEER) method

    NASA Technical Reports Server (NTRS)

    Newman, M.; Mann, F. I.

    1977-01-01

    An extension of the Tridiagonal Reduction (FEER) method to complex eigenvalue analysis in NASTRAN is described. As in the case of real eigenvalue analysis, the eigensolutions closest to a selected point in the eigenspectrum are extracted from a reduced, symmetric, tridiagonal eigenmatrix whose order is much lower than that of the full size problem. The reduction process is effected automatically, and thus avoids the arbitrary lumping of masses and other physical quantities at selected grid points. The statement of the algebraic eigenvalue problem admits mass, damping and stiffness matrices which are unrestricted in character, i.e., they may be real, complex, symmetric or unsymmetric, singular or non-singular.

  15. Application of the implicit MacCormack scheme to the PNS equations

    NASA Technical Reports Server (NTRS)

    Lawrence, S. L.; Tannehill, J. C.; Chaussee, D. S.

    1983-01-01

    The two-dimensional parabolized Navier-Stokes equations are solved using MacCormack's (1981) implicit finite-difference scheme. It is shown that this method for solving the parabolized Navier-Stokes equations does not require the inversion of block tridiagonal systems of algebraic equations and allows the original explicit scheme to be employed in those regions where implicit treatment is not needed. The finite-difference algorithm is discussed and the computational results for two laminar test cases are presented. Results obtained using this method for the case of a flat plate boundary layer are compared with those obtained using the conventional Beam-Warming scheme, as well as those obtained from a boundary layer code. The computed results for a more severe test of the method, the hypersonic flow past a 15 deg compression corner, are found to compare favorably with experiment and a numerical solution of the complete Navier-Stokes equations.

  16. On the derivation of the semiclassical approximation to the quantum propagator

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

    Fischer, Stefan G., E-mail: stefan.fischer@physik.uni-freiburg.de; Buchleitner, Andreas

    2015-07-15

    In order to rigorously derive the amplitude factor of the semiclassical approximation to the quantum propagator, we extend an existing method originally devised to evaluate Gaussian path-integral expressions. Using a result which relates the determinant of symmetric block-tridiagonal matrices to the determinants of their blocks, two difference equations are obtained. The first one allows to establish the connection of the amplitude factor to Jacobi’s accessory equations in the continuous-time limit, while the second one leads to an additional factor which, however, contributes to the final result only in exceptional cases. In order to demonstrate the wide applicability of these differencemore » equations, we treat explicitly the case where the time-sliced Lagrangian is written in generalized coordinates, for which a general derivation has so far been unavailable.« less

  17. An adaptive grid algorithm for one-dimensional nonlinear equations

    NASA Technical Reports Server (NTRS)

    Gutierrez, William E.; Hills, Richard G.

    1990-01-01

    Richards' equation, which models the flow of liquid through unsaturated porous media, is highly nonlinear and difficult to solve. Step gradients in the field variables require the use of fine grids and small time step sizes. The numerical instabilities caused by the nonlinearities often require the use of iterative methods such as Picard or Newton interation. These difficulties result in large CPU requirements in solving Richards equation. With this in mind, adaptive and multigrid methods are investigated for use with nonlinear equations such as Richards' equation. Attention is focused on one-dimensional transient problems. To investigate the use of multigrid and adaptive grid methods, a series of problems are studied. First, a multigrid program is developed and used to solve an ordinary differential equation, demonstrating the efficiency with which low and high frequency errors are smoothed out. The multigrid algorithm and an adaptive grid algorithm is used to solve one-dimensional transient partial differential equations, such as the diffusive and convective-diffusion equations. The performance of these programs are compared to that of the Gauss-Seidel and tridiagonal methods. The adaptive and multigrid schemes outperformed the Gauss-Seidel algorithm, but were not as fast as the tridiagonal method. The adaptive grid scheme solved the problems slightly faster than the multigrid method. To solve nonlinear problems, Picard iterations are introduced into the adaptive grid and tridiagonal methods. Burgers' equation is used as a test problem for the two algorithms. Both methods obtain solutions of comparable accuracy for similar time increments. For the Burgers' equation, the adaptive grid method finds the solution approximately three times faster than the tridiagonal method. Finally, both schemes are used to solve the water content formulation of the Richards' equation. For this problem, the adaptive grid method obtains a more accurate solution in fewer work units and less computation time than required by the tridiagonal method. The performance of the adaptive grid method tends to degrade as the solution process proceeds in time, but still remains faster than the tridiagonal scheme.

  18. An Implicit LU/AF FDTD Method

    NASA Technical Reports Server (NTRS)

    Beggs, John H.; Briley, W. Roger

    2001-01-01

    There has been some recent work to develop two and three-dimensional alternating direction implicit (ADI) FDTD schemes. These ADI schemes are based upon the original ADI concept developed by Peaceman and Rachford and Douglas and Gunn, which is a popular solution method in Computational Fluid Dynamics (CFD). These ADI schemes work well and they require solution of a tridiagonal system of equations. A new approach proposed in this paper applies a LU/AF approximate factorization technique from CFD to Maxwell s equations in flux conservative form for one space dimension. The result is a scheme that will retain its unconditional stability in three space dimensions, but does not require the solution of tridiagonal systems. The theory for this new algorithm is outlined in a one-dimensional context for clarity. An extension to two and threedimensional cases is discussed. Results of Fourier analysis are discussed for both stability and dispersion/damping properties of the algorithm. Results are presented for a one-dimensional model problem, and the explicit FDTD algorithm is chosen as a convenient reference for comparison.

  19. Progress on a generalized coordinates tensor product finite element 3DPNS algorithm for subsonic

    NASA Technical Reports Server (NTRS)

    Baker, A. J.; Orzechowski, J. A.

    1983-01-01

    A generalized coordinates form of the penalty finite element algorithm for the 3-dimensional parabolic Navier-Stokes equations for turbulent subsonic flows was derived. This algorithm formulation requires only three distinct hypermatrices and is applicable using any boundary fitted coordinate transformation procedure. The tensor matrix product approximation to the Jacobian of the Newton linear algebra matrix statement was also derived. Tne Newton algorithm was restructured to replace large sparse matrix solution procedures with grid sweeping using alpha-block tridiagonal matrices, where alpha equals the number of dependent variables. Numerical experiments were conducted and the resultant data gives guidance on potentially preferred tensor product constructions for the penalty finite element 3DPNS algorithm.

  20. Two dimensional J-matrix approach to quantum scattering

    NASA Astrophysics Data System (ADS)

    Olumegbon, Ismail Adewale

    We present an extension of the J-matrix method of scattering to two dimensions in cylindrical coordinates. In the J-matrix approach we select a zeroth order Hamiltonian, H0, which is exactly solvable in the sense that we select a square integrable basis set that enable us to have an infinite tridiagonal representation for H0. Expanding the wavefunction in this basis makes the wave equation equivalent to a three-term recursion relation for the expansion coefficients. Consequently, finding solutions of the recursion relation is equivalent to solving the original H0 problem (i.e., determining the expansion coefficients of the system's wavefunction). The part of the original potential interaction which cannot be brought to an exact tridiagonal form is cut in an NxN basis space and its matrix elements are computed numerically using Gauss quadrature approach. Hence, this approach embodies powerful tools in the analysis of solutions of the wave equation by exploiting the intimate connection and interplay between tridiagonal matrices and the theory of orthogonal polynomials. In such analysis, one is at liberty to employ a wide range of well established methods and numerical techniques associated with these settings such as quadrature approximation and continued fractions. To demonstrate the utility, usefulness, and accuracy of the extended method we use it to obtain the bound states for an illustrative short range potential problem.

  1. Two dimensional J-matrix approach to quantum scattering

    NASA Astrophysics Data System (ADS)

    Olumegbon, Ismail Adewale

    2013-01-01

    We present an extension of the J-matrix method of scattering to two dimensions in cylindrical coordinates. In the J-matrix approach we select a zeroth order Hamiltonian, H0, which is exactly solvable in the sense that we select a square integrable basis set that enable us to have an infinite tridiagonal representation for H0. Expanding the wavefunction in this basis makes the wave equation equivalent to a three-term recursion relation for the expansion coefficients. Consequently, finding solutions of the recursion relation is equivalent to solving the original H0 problem (i.e., determining the expansion coefficients of the system's wavefunction). The part of the original potential interaction which cannot be brought to an exact tridiagonal form is cut in an NxN basis space and its matrix elements are computed numerically using Gauss quadrature approach. Hence, this approach embodies powerful tools in the analysis of solutions of the wave equation by exploiting the intimate connection and interplay between tridiagonal matrices and the theory of orthogonal polynomials. In such analysis, one is at liberty to employ a wide range of well established methods and numerical techniques associated with these settings such as quadrature approximation and continued fractions. To demonstrate the utility, usefulness, and accuracy of the extended method we use it to obtain the bound states for an illustrative short range potential problem.

  2. Symmetric tridiagonal structure preserving finite element model updating problem for the quadratic model

    NASA Astrophysics Data System (ADS)

    Rakshit, Suman; Khare, Swanand R.; Datta, Biswa Nath

    2018-07-01

    One of the most important yet difficult aspect of the Finite Element Model Updating Problem is to preserve the finite element inherited structures in the updated model. Finite element matrices are in general symmetric, positive definite (or semi-definite) and banded (tridiagonal, diagonal, penta-diagonal, etc.). Though a large number of papers have been published in recent years on various aspects of solutions of this problem, papers dealing with structure preservation almost do not exist. A novel optimization based approach that preserves the symmetric tridiagonal structures of the stiffness and damping matrices is proposed in this paper. An analytical expression for the global minimum solution of the associated optimization problem along with the results of numerical experiments obtained by both the analytical expressions and by an appropriate numerical optimization algorithm are presented. The results of numerical experiments support the validity of the proposed method.

  3. Implementation of a fully-balanced periodic tridiagonal solver on a parallel distributed memory architecture

    NASA Technical Reports Server (NTRS)

    Eidson, T. M.; Erlebacher, G.

    1994-01-01

    While parallel computers offer significant computational performance, it is generally necessary to evaluate several programming strategies. Two programming strategies for a fairly common problem - a periodic tridiagonal solver - are developed and evaluated. Simple model calculations as well as timing results are presented to evaluate the various strategies. The particular tridiagonal solver evaluated is used in many computational fluid dynamic simulation codes. The feature that makes this algorithm unique is that these simulation codes usually require simultaneous solutions for multiple right-hand-sides (RHS) of the system of equations. Each RHS solutions is independent and thus can be computed in parallel. Thus a Gaussian elimination type algorithm can be used in a parallel computation and the more complicated approaches such as cyclic reduction are not required. The two strategies are a transpose strategy and a distributed solver strategy. For the transpose strategy, the data is moved so that a subset of all the RHS problems is solved on each of the several processors. This usually requires significant data movement between processor memories across a network. The second strategy attempts to have the algorithm allow the data across processor boundaries in a chained manner. This usually requires significantly less data movement. An approach to accomplish this second strategy in a near-perfect load-balanced manner is developed. In addition, an algorithm will be shown to directly transform a sequential Gaussian elimination type algorithm into the parallel chained, load-balanced algorithm.

  4. Face recognition using tridiagonal matrix enhanced multivariance products representation

    NASA Astrophysics Data System (ADS)

    Ã-zay, Evrim Korkmaz

    2017-01-01

    This study aims to retrieve face images from a database according to a target face image. For this purpose, Tridiagonal Matrix Enhanced Multivariance Products Representation (TMEMPR) is taken into consideration. TMEMPR is a recursive algorithm based on Enhanced Multivariance Products Representation (EMPR). TMEMPR decomposes a matrix into three components which are a matrix of left support terms, a tridiagonal matrix of weight parameters for each recursion, and a matrix of right support terms, respectively. In this sense, there is an analogy between Singular Value Decomposition (SVD) and TMEMPR. However TMEMPR is a more flexible algorithm since its initial support terms (or vectors) can be chosen as desired. Low computational complexity is another advantage of TMEMPR because the algorithm has been constructed with recursions of certain arithmetic operations without requiring any iteration. The algorithm has been trained and tested with ORL face image database with 400 different grayscale images of 40 different people. TMEMPR's performance has been compared with SVD's performance as a result.

  5. Janus configurations with SL(2, ℤ)-duality twists, strings on mapping tori and a tridiagonal determinant formula

    NASA Astrophysics Data System (ADS)

    Ganor, Ori J.; Moore, Nathan P.; Sun, Hao-Yu; Torres-Chicon, Nesty R.

    2014-07-01

    We develop an equivalence between two Hilbert spaces: (i) the space of states of U(1) n Chern-Simons theory with a certain class of tridiagonal matrices of coupling constants (with corners) on T 2; and (ii) the space of ground states of strings on an associated mapping torus with T 2 fiber. The equivalence is deduced by studying the space of ground states of SL(2, ℤ)-twisted circle compactifications of U(1) gauge theory, connected with a Janus configuration, and further compactified on T 2. The equality of dimensions of the two Hilbert spaces (i) and (ii) is equivalent to a known identity on determinants of tridiagonal matrices with corners. The equivalence of operator algebras acting on the two Hilbert spaces follows from a relation between the Smith normal form of the Chern-Simons coupling constant matrix and the isometry group of the mapping torus, as well as the torsion part of its first homology group.

  6. Extension of the tridiagonal reduction (FEER) method for complex eigenvalue problems in NASTRAN

    NASA Technical Reports Server (NTRS)

    Newman, M.; Mann, F. I.

    1978-01-01

    As in the case of real eigenvalue analysis, the eigensolutions closest to a selected point in the eigenspectrum were extracted from a reduced, symmetric, tridiagonal eigenmatrix whose order was much lower than that of the full size problem. The reduction process was effected automatically, and thus avoided the arbitrary lumping of masses and other physical quantities at selected grid points. The statement of the algebraic eigenvalue problem admitted mass, damping, and stiffness matrices which were unrestricted in character, i.e., they might be real, symmetric or nonsymmetric, singular or nonsingular.

  7. Neutron Multiplicity: LANL W Covariance Matrix for Curve Fitting

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

    Wendelberger, James G.

    2016-12-08

    In neutron multiplicity counting one may fit a curve by minimizing an objective function, χmore » $$2\\atop{n}$$. The objective function includes the inverse of an n by n matrix of covariances, W. The inverse of the W matrix has a closed form solution. In addition W -1 is a tri-diagonal matrix. The closed form and tridiagonal nature allows for a simpler expression of the objective function χ$$2\\atop{n}$$. Minimization of this simpler expression will provide the optimal parameters for the fitted curve.« less

  8. Investigation of Elliptical Cooling Channels for a Naval Electromagnetic Railgun

    DTIC Science & Technology

    2005-05-09

    Numerical Recipes in C : The Art of Scientific Computing, Second Edition. Cambridge: Cambridge University Press, 1992. Ramanujan , S. Ramanujan’s...by Midshipman 1/ c Elizabeth R. Kealey, Class of 2005 United States Naval Academy Annapolis, MD ___________________________________ (signature...system 55 10 Equation 46: Fourier number 55 Equation 47: General heat equation with coefficients a, b, c , and d 55 Equation 48: Tridiagonal matrix

  9. Non-linear three dimensional spectral model of the Venusian thermosphere with super-rotation. I - Formulation and numerical technique. II - Temperature, composition and winds

    NASA Technical Reports Server (NTRS)

    Stevens-Rayburn, D. R.; Mengel, J. G.; Harris, I.; Mayr, H. G.

    1989-01-01

    A three-dimensional spectral model for the Venusion thermosphere is presented which uses spherical harmonics to represent the horizontal variations in longitude and latitude and which uses Fourier harmonics to represent the LT variations due to atmospheric rotation. A differencing scheme with tridiagonal block elimination is used to perform the height integration. Quadratic nonlinearities are taken into account. In the second part, numerical results obtained with the model are shown to reproduce the observed broad daytime maxima in CO2 and CO and the significantly larger values at dawn than at dusk. It is found that the diurnal variations in He are most sensitive to thermospheric superrotation, and that, given a globally uniform atmosphere as input, larger heating rates yield a larger temperature contrast between day and night.

  10. Numerical methods for the unsymmetric tridiagonal eigenvalue problem

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

    Jessup, E.R.

    1996-12-31

    This report summarizes the results of our project {open_quotes}Numerical Methods for the Unsymmetric Tridiagonal Eigenvalue Problem{close_quotes}. It was funded by both by a DOE grant (No. DE-FG02-92ER25122, 6/1/92-5/31/94, $100,000) and by an NSF Research Initiation Award (No. CCR-9109785, 7/1/91-6/30/93, $46,564.) The publications resulting from that project during the DOE funding period are listed below. Two other journal papers and two other conference papers were produced during the NSF funding period. Most of the listed conference papers are early or partial versions of the listed journal papers.

  11. An O(log sup 2 N) parallel algorithm for computing the eigenvalues of a symmetric tridiagonal matrix

    NASA Technical Reports Server (NTRS)

    Swarztrauber, Paul N.

    1989-01-01

    An O(log sup 2 N) parallel algorithm is presented for computing the eigenvalues of a symmetric tridiagonal matrix using a parallel algorithm for computing the zeros of the characteristic polynomial. The method is based on a quadratic recurrence in which the characteristic polynomial is constructed on a binary tree from polynomials whose degree doubles at each level. Intervals that contain exactly one zero are determined by the zeros of polynomials at the previous level which ensures that different processors compute different zeros. The exact behavior of the polynomials at the interval endpoints is used to eliminate the usual problems induced by finite precision arithmetic.

  12. Multiple-body simulation with emphasis on integrated Space Shuttle vehicle

    NASA Technical Reports Server (NTRS)

    Chiu, Ing-Tsau

    1993-01-01

    The program to obtain intergrid communications - Pegasus - was enhanced to make better use of computing resources. Periodic block tridiagonal and penta-diagonal diagonal routines in OVERFLOW were modified to use a better algorithm to speed up the calculation for grids with periodic boundary conditions. Several programs were added to collar grid tools and a user friendly shell script was developed to help users generate collar grids. User interface for HYPGEN was modified to cope with the changes in HYPGEN. ET/SRB attach hardware grids were added to the computational model for the space shuttle and is currently incorporated into the refined shuttle model jointly developed at Johnson Space Center and Ames Research Center. Flow simulation for the integrated space shuttle vehicle at flight Reynolds number was carried out and compared with flight data as well as the earlier simulation for wind tunnel Reynolds number.

  13. Calculation of flow about two-dimensional bodies by means of the velocity-vorticity formulation on a staggered grid

    NASA Technical Reports Server (NTRS)

    Stremel, Paul M.

    1991-01-01

    A method for calculating the incompressible viscous flow about two-dimensional bodies, utilizing the velocity-vorticity form of the Navier-Stokes equations using a staggered-grid formulation is presented. The solution is obtained by employing an alternative-direction implicit method for the solution of the block tridiagonal matrix resulting from the finite-difference representation of the governing equations. The boundary vorticity and the conservation of mass are calculated implicitly as a part of the solution. The mass conservation is calculated to machine zero for the duration of the computation. Calculations for the flow about a circular cylinder, a 2-pct thick flat plate at 90-deg incidence, an elliptic cylinder at 45-deg incidence, and a NACA 0012, with and without a deflected flap, at - 90-deg incidence are performed and compared with the results of other numerical investigations.

  14. Parallel solution of the symmetric tridiagonal eigenproblem. Research report

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

    Jessup, E.R.

    1989-10-01

    This thesis discusses methods for computing all eigenvalues and eigenvectors of a symmetric tridiagonal matrix on a distributed-memory Multiple Instruction, Multiple Data multiprocessor. Only those techniques having the potential for both high numerical accuracy and significant large-grained parallelism are investigated. These include the QL method or Cuppen's divide and conquer method based on rank-one updating to compute both eigenvalues and eigenvectors, bisection to determine eigenvalues and inverse iteration to compute eigenvectors. To begin, the methods are compared with respect to computation time, communication time, parallel speed up, and accuracy. Experiments on an IPSC hypercube multiprocessor reveal that Cuppen's method ismore » the most accurate approach, but bisection with inverse iteration is the fastest and most parallel. Because the accuracy of the latter combination is determined by the quality of the computed eigenvectors, the factors influencing the accuracy of inverse iteration are examined. This includes, in part, statistical analysis of the effect of a starting vector with random components. These results are used to develop an implementation of inverse iteration producing eigenvectors with lower residual error and better orthogonality than those generated by the EISPACK routine TINVIT. This thesis concludes with adaptions of methods for the symmetric tridiagonal eigenproblem to the related problem of computing the singular value decomposition (SVD) of a bidiagonal matrix.« less

  15. Parallel solution of the symmetric tridiagonal eigenproblem

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

    Jessup, E.R.

    1989-01-01

    This thesis discusses methods for computing all eigenvalues and eigenvectors of a symmetric tridiagonal matrix on a distributed memory MIMD multiprocessor. Only those techniques having the potential for both high numerical accuracy and significant large-grained parallelism are investigated. These include the QL method or Cuppen's divide and conquer method based on rank-one updating to compute both eigenvalues and eigenvectors, bisection to determine eigenvalues, and inverse iteration to compute eigenvectors. To begin, the methods are compared with respect to computation time, communication time, parallel speedup, and accuracy. Experiments on an iPSC hyper-cube multiprocessor reveal that Cuppen's method is the most accuratemore » approach, but bisection with inverse iteration is the fastest and most parallel. Because the accuracy of the latter combination is determined by the quality of the computed eigenvectors, the factors influencing the accuracy of inverse iteration are examined. This includes, in part, statistical analysis of the effects of a starting vector with random components. These results are used to develop an implementation of inverse iteration producing eigenvectors with lower residual error and better orthogonality than those generated by the EISPACK routine TINVIT. This thesis concludes with adaptations of methods for the symmetric tridiagonal eigenproblem to the related problem of computing the singular value decomposition (SVD) of a bidiagonal matrix.« less

  16. Parallel conjugate gradient algorithms for manipulator dynamic simulation

    NASA Technical Reports Server (NTRS)

    Fijany, Amir; Scheld, Robert E.

    1989-01-01

    Parallel conjugate gradient algorithms for the computation of multibody dynamics are developed for the specialized case of a robot manipulator. For an n-dimensional positive-definite linear system, the Classical Conjugate Gradient (CCG) algorithms are guaranteed to converge in n iterations, each with a computation cost of O(n); this leads to a total computational cost of O(n sq) on a serial processor. A conjugate gradient algorithms is presented that provide greater efficiency using a preconditioner, which reduces the number of iterations required, and by exploiting parallelism, which reduces the cost of each iteration. Two Preconditioned Conjugate Gradient (PCG) algorithms are proposed which respectively use a diagonal and a tridiagonal matrix, composed of the diagonal and tridiagonal elements of the mass matrix, as preconditioners. Parallel algorithms are developed to compute the preconditioners and their inversions in O(log sub 2 n) steps using n processors. A parallel algorithm is also presented which, on the same architecture, achieves the computational time of O(log sub 2 n) for each iteration. Simulation results for a seven degree-of-freedom manipulator are presented. Variants of the proposed algorithms are also developed which can be efficiently implemented on the Robot Mathematics Processor (RMP).

  17. Systems of Inhomogeneous Linear Equations

    NASA Astrophysics Data System (ADS)

    Scherer, Philipp O. J.

    Many problems in physics and especially computational physics involve systems of linear equations which arise e.g. from linearization of a general nonlinear problem or from discretization of differential equations. If the dimension of the system is not too large standard methods like Gaussian elimination or QR decomposition are sufficient. Systems with a tridiagonal matrix are important for cubic spline interpolation and numerical second derivatives. They can be solved very efficiently with a specialized Gaussian elimination method. Practical applications often involve very large dimensions and require iterative methods. Convergence of Jacobi and Gauss-Seidel methods is slow and can be improved by relaxation or over-relaxation. An alternative for large systems is the method of conjugate gradients.

  18. Development of the PARVMEC Code for Rapid Analysis of 3D MHD Equilibrium

    NASA Astrophysics Data System (ADS)

    Seal, Sudip; Hirshman, Steven; Cianciosa, Mark; Wingen, Andreas; Unterberg, Ezekiel; Wilcox, Robert; ORNL Collaboration

    2015-11-01

    The VMEC three-dimensional (3D) MHD equilibrium has been used extensively for designing stellarator experiments and analyzing experimental data in such strongly 3D systems. Recent applications of VMEC include 2D systems such as tokamaks (in particular, the D3D experiment), where application of very small (delB/B ~ 10-3) 3D resonant magnetic field perturbations render the underlying assumption of axisymmetry invalid. In order to facilitate the rapid analysis of such equilibria (for example, for reconstruction purposes), we have undertaken the task of parallelizing the VMEC code (PARVMEC) to produce a scalable and temporally rapidly convergent equilibrium code for use on parallel distributed memory platforms. The parallelization task naturally splits into three distinct parts 1) radial surfaces in the fixed-boundary part of the calculation; 2) two 2D angular meshes needed to compute the Green's function integrals over the plasma boundary for the free-boundary part of the code; and 3) block tridiagonal matrix needed to compute the full (3D) pre-conditioner near the final equilibrium state. Preliminary results show that scalability is achieved for tasks 1 and 3, with task 2 still nearing completion. The impact of this work on the rapid reconstruction of D3D plasmas using PARVMEC in the V3FIT code will be discussed. Work supported by U.S. DOE under Contract DE-AC05-00OR22725 with UT-Battelle, LLC.

  19. Parallel O(log n) algorithms for open- and closed-chain rigid multibody systems based on a new mass matrix factorization technique

    NASA Technical Reports Server (NTRS)

    Fijany, Amir

    1993-01-01

    In this paper, parallel O(log n) algorithms for computation of rigid multibody dynamics are developed. These parallel algorithms are derived by parallelization of new O(n) algorithms for the problem. The underlying feature of these O(n) algorithms is a drastically different strategy for decomposition of interbody force which leads to a new factorization of the mass matrix (M). Specifically, it is shown that a factorization of the inverse of the mass matrix in the form of the Schur Complement is derived as M(exp -1) = C - B(exp *)A(exp -1)B, wherein matrices C, A, and B are block tridiagonal matrices. The new O(n) algorithm is then derived as a recursive implementation of this factorization of M(exp -1). For the closed-chain systems, similar factorizations and O(n) algorithms for computation of Operational Space Mass Matrix lambda and its inverse lambda(exp -1) are also derived. It is shown that these O(n) algorithms are strictly parallel, that is, they are less efficient than other algorithms for serial computation of the problem. But, to our knowledge, they are the only known algorithms that can be parallelized and that lead to both time- and processor-optimal parallel algorithms for the problem, i.e., parallel O(log n) algorithms with O(n) processors. The developed parallel algorithms, in addition to their theoretical significance, are also practical from an implementation point of view due to their simple architectural requirements.

  20. Alternating Direction Implicit (ADI) schemes for a PDE-based image osmosis model

    NASA Astrophysics Data System (ADS)

    Calatroni, L.; Estatico, C.; Garibaldi, N.; Parisotto, S.

    2017-10-01

    We consider Alternating Direction Implicit (ADI) splitting schemes to compute efficiently the numerical solution of the PDE osmosis model considered by Weickert et al. in [10] for several imaging applications. The discretised scheme is shown to preserve analogous properties to the continuous model. The dimensional splitting strategy traduces numerically into the solution of simple tridiagonal systems for which standard matrix factorisation techniques can be used to improve upon the performance of classical implicit methods, even for large time steps. Applications to the shadow removal problem are presented.

  1. Diagonalization of complex symmetric matrices: Generalized Householder reflections, iterative deflation and implicit shifts

    NASA Astrophysics Data System (ADS)

    Noble, J. H.; Lubasch, M.; Stevens, J.; Jentschura, U. D.

    2017-12-01

    We describe a matrix diagonalization algorithm for complex symmetric (not Hermitian) matrices, A ̲ =A̲T, which is based on a two-step algorithm involving generalized Householder reflections based on the indefinite inner product 〈 u ̲ , v ̲ 〉 ∗ =∑iuivi. This inner product is linear in both arguments and avoids complex conjugation. The complex symmetric input matrix is transformed to tridiagonal form using generalized Householder transformations (first step). An iterative, generalized QL decomposition of the tridiagonal matrix employing an implicit shift converges toward diagonal form (second step). The QL algorithm employs iterative deflation techniques when a machine-precision zero is encountered "prematurely" on the super-/sub-diagonal. The algorithm allows for a reliable and computationally efficient computation of resonance and antiresonance energies which emerge from complex-scaled Hamiltonians, and for the numerical determination of the real energy eigenvalues of pseudo-Hermitian and PT-symmetric Hamilton matrices. Numerical reference values are provided.

  2. A GPU-accelerated semi-implicit fractional-step method for numerical solutions of incompressible Navier-Stokes equations

    NASA Astrophysics Data System (ADS)

    Ha, Sanghyun; Park, Junshin; You, Donghyun

    2018-01-01

    Utility of the computational power of Graphics Processing Units (GPUs) is elaborated for solutions of incompressible Navier-Stokes equations which are integrated using a semi-implicit fractional-step method. The Alternating Direction Implicit (ADI) and the Fourier-transform-based direct solution methods used in the semi-implicit fractional-step method take advantage of multiple tridiagonal matrices whose inversion is known as the major bottleneck for acceleration on a typical multi-core machine. A novel implementation of the semi-implicit fractional-step method designed for GPU acceleration of the incompressible Navier-Stokes equations is presented. Aspects of the programing model of Compute Unified Device Architecture (CUDA), which are critical to the bandwidth-bound nature of the present method are discussed in detail. A data layout for efficient use of CUDA libraries is proposed for acceleration of tridiagonal matrix inversion and fast Fourier transform. OpenMP is employed for concurrent collection of turbulence statistics on a CPU while the Navier-Stokes equations are computed on a GPU. Performance of the present method using CUDA is assessed by comparing the speed of solving three tridiagonal matrices using ADI with the speed of solving one heptadiagonal matrix using a conjugate gradient method. An overall speedup of 20 times is achieved using a Tesla K40 GPU in comparison with a single-core Xeon E5-2660 v3 CPU in simulations of turbulent boundary-layer flow over a flat plate conducted on over 134 million grids. Enhanced performance of 48 times speedup is reached for the same problem using a Tesla P100 GPU.

  3. Iterative algorithms for tridiagonal matrices on a WSI-multiprocessor

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

    Gajski, D.D.; Sameh, A.H.; Wisniewski, J.A.

    1982-01-01

    With the rapid advances in semiconductor technology, the construction of Wafer Scale Integration (WSI)-multiprocessors consisting of a large number of processors is now feasible. We illustrate the implementation of some basic linear algebra algorithms on such multiprocessors.

  4. Four-parameter potential box with inverse square singular boundaries

    NASA Astrophysics Data System (ADS)

    Alhaidari, A. D.; Taiwo, T. J.

    2018-03-01

    Using the Tridiagonal Representation Approach (TRA), we obtain solutions (energy spectrum and corresponding wavefunctions) for a four-parameter potential box with inverse square singularity at the boundaries. It could be utilized in physical applications to replace the widely used one-parameter infinite square potential well (ISPW). The four parameters of the potential provide an added flexibility over the one-parameter ISPW to control the physical features of the system. The two potential parameters that give the singularity strength at the boundaries are naturally constrained to avoid the inherent quantum anomalies associated with the inverse square potential.

  5. Noniterative three-dimensional grid generation using parabolic partial differential equations

    NASA Technical Reports Server (NTRS)

    Edwards, T. A.

    1985-01-01

    A new algorithm for generating three-dimensional grids has been developed and implemented which numerically solves a parabolic partial differential equation (PDE). The solution procedure marches outward in two coordinate directions, and requires inversion of a scalar tridiagonal system in the third. Source terms have been introduced to control the spacing and angle of grid lines near the grid boundaries, and to control the outer boundary point distribution. The method has been found to generate grids about 100 times faster than comparable grids generated via solution of elliptic PDEs, and produces smooth grids for finite-difference flow calculations.

  6. Making almost commuting matrices commute

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

    Hastings, Matthew B

    Suppose two Hermitian matrices A, B almost commute ({parallel}[A,B]{parallel} {<=} {delta}). Are they close to a commuting pair of Hermitian matrices, A', B', with {parallel}A-A'{parallel},{parallel}B-B'{parallel} {<=} {epsilon}? A theorem of H. Lin shows that this is uniformly true, in that for every {epsilon} > 0 there exists a {delta} > 0, independent of the size N of the matrices, for which almost commuting implies being close to a commuting pair. However, this theorem does not specifiy how {delta} depends on {epsilon}. We give uniform bounds relating {delta} and {epsilon}. The proof is constructive, giving an explicit algorithm to construct A'more » and B'. We provide tighter bounds in the case of block tridiagonal and tridiagnonal matrices. Within the context of quantum measurement, this implies an algorithm to construct a basis in which we can make a projective measurement that approximately measures two approximately commuting operators simultaneously. Finally, we comment briefly on the case of approximately measuring three or more approximately commuting operators using POVMs (positive operator-valued measures) instead of projective measurements.« less

  7. An O(N squared) method for computing the eigensystem of N by N symmetric tridiagonal matrices by the divide and conquer approach

    NASA Technical Reports Server (NTRS)

    Gill, Doron; Tadmor, Eitan

    1988-01-01

    An efficient method is proposed to solve the eigenproblem of N by N Symmetric Tridiagonal (ST) matrices. Unlike the standard eigensolvers which necessitate O(N cubed) operations to compute the eigenvectors of such ST matrices, the proposed method computes both the eigenvalues and eigenvectors with only O(N squared) operations. The method is based on serial implementation of the recently introduced Divide and Conquer (DC) algorithm. It exploits the fact that by O(N squared) of DC operations, one can compute the eigenvalues of N by N ST matrix and a finite number of pairs of successive rows of its eigenvector matrix. The rest of the eigenvectors--all of them or one at a time--are computed by linear three-term recurrence relations. Numerical examples are presented which demonstrate the superiority of the proposed method by saving an order of magnitude in execution time at the expense of sacrificing a few orders of accuracy.

  8. Performance and Accuracy of LAPACK's Symmetric TridiagonalEigensolvers

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

    Demmel, Jim W.; Marques, Osni A.; Parlett, Beresford N.

    2007-04-19

    We compare four algorithms from the latest LAPACK 3.1 release for computing eigenpairs of a symmetric tridiagonal matrix. These include QR iteration, bisection and inverse iteration (BI), the Divide-and-Conquer method (DC), and the method of Multiple Relatively Robust Representations (MR). Our evaluation considers speed and accuracy when computing all eigenpairs, and additionally subset computations. Using a variety of carefully selected test problems, our study includes a variety of today's computer architectures. Our conclusions can be summarized as follows. (1) DC and MR are generally much faster than QR and BI on large matrices. (2) MR almost always does the fewestmore » floating point operations, but at a lower MFlop rate than all the other algorithms. (3) The exact performance of MR and DC strongly depends on the matrix at hand. (4) DC and QR are the most accurate algorithms with observed accuracy O({radical}ne). The accuracy of BI and MR is generally O(ne). (5) MR is preferable to BI for subset computations.« less

  9. Fast modal extraction in NASTRAN via the FEER computer program. [based on automatic matrix reduction method for lower modes of structures with many degrees of freedom

    NASA Technical Reports Server (NTRS)

    Newman, M. B.; Pipano, A.

    1973-01-01

    A new eigensolution routine, FEER (Fast Eigensolution Extraction Routine), used in conjunction with NASTRAN at Israel Aircraft Industries is described. The FEER program is based on an automatic matrix reduction scheme whereby the lower modes of structures with many degrees of freedom can be accurately extracted from a tridiagonal eigenvalue problem whose size is of the same order of magnitude as the number of required modes. The process is effected without arbitrary lumping of masses at selected node points or selection of nodes to be retained in the analysis set. The results of computational efficiency studies are presented, showing major arithmetic operation counts and actual computer run times of FEER as compared to other methods of eigenvalue extraction, including those available in the NASTRAN READ module. It is concluded that the tridiagonal reduction method used in FEER would serve as a valuable addition to NASTRAN for highly increased efficiency in obtaining structural vibration modes.

  10. The Laguerre finite difference one-way equation solver

    NASA Astrophysics Data System (ADS)

    Terekhov, Andrew V.

    2017-05-01

    This paper presents a new finite difference algorithm for solving the 2D one-way wave equation with a preliminary approximation of a pseudo-differential operator by a system of partial differential equations. As opposed to the existing approaches, the integral Laguerre transform instead of Fourier transform is used. After carrying out the approximation of spatial variables it is possible to obtain systems of linear algebraic equations with better computing properties and to reduce computer costs for their solution. High accuracy of calculations is attained at the expense of employing finite difference approximations of higher accuracy order that are based on the dispersion-relationship-preserving method and the Richardson extrapolation in the downward continuation direction. The numerical experiments have verified that as compared to the spectral difference method based on Fourier transform, the new algorithm allows one to calculate wave fields with a higher degree of accuracy and a lower level of numerical noise and artifacts including those for non-smooth velocity models. In the context of solving the geophysical problem the post-stack migration for velocity models of the types Syncline and Sigsbee2A has been carried out. It is shown that the images obtained contain lesser noise and are considerably better focused as compared to those obtained by the known Fourier Finite Difference and Phase-Shift Plus Interpolation methods. There is an opinion that purely finite difference approaches do not allow carrying out the seismic migration procedure with sufficient accuracy, however the results obtained disprove this statement. For the supercomputer implementation it is proposed to use the parallel dichotomy algorithm when solving systems of linear algebraic equations with block-tridiagonal matrices.

  11. Numerical calculation of the neoclassical electron distribution function in an axisymmetric torus

    NASA Astrophysics Data System (ADS)

    Lyons, B. C.; Jardin, S. C.; Ramos, J. J.

    2011-10-01

    We solve for a stationary, axisymmetric electron distribution function (fe) in a torus using a drift-kinetic equation (DKE) with complete Landau collision operator. All terms are kept to gyroradius and collisionality orders relevant to high- temperature tokamaks (i.e., the neoclassical banana regime for electrons). A solubility condition on the DKE determines the non-Maxwellian pieces of fe (called fNMe) to all relevant orders. We work in a 4D phase space (ψ , θ , v , λ) , where ψ defines a flux surface, θ is the poloidal angle, v is the total velocity, and λ is the pitch angle parameter. We expand fNMe in finite elements in both v and λ. The Rosenbluth potentials, Φ and Ψ, which define the collision operator, are expanded in Legendre series in cos χ , where χ is the pitch angle, Fourier series in cos θ , and finite elements in v. At each ψ, we solve a block tridiagonal system for fNMe, Φ, and Ψ simultaneously, resulting in a neoclassical fe for the entire torus. Our goal is to demonstrate that such a formulation can be accurately and efficiently solved numerically. Results will be compared to other codes (e.g., NCLASS, NEO) and could be used as a kinetic closure for an MHD code (e.g., M3D-C1). Supported by the DOE SCGF and DOE Contract # DE-AC02-09CH11466. Based on analytic work by Ramos, PoP 17, 082502 (2010).

  12. A parallel algorithm for computing the eigenvalues of a symmetric tridiagonal matrix

    NASA Technical Reports Server (NTRS)

    Swarztrauber, Paul N.

    1993-01-01

    A parallel algorithm, called polysection, is presented for computing the eigenvalues of a symmetric tridiagonal matrix. The method is based on a quadratic recurrence in which the characteristic polynomial is constructed on a binary tree from polynomials whose degree doubles at each level. Intervals that contain exactly one zero are determined by the zeros of polynomials at the previous level which ensures that different processors compute different zeros. The signs of the polynomials at the interval endpoints are determined a priori and used to guarantee that all zeros are found. The use of finite-precision arithmetic may result in multiple zeros; however, in this case, the intervals coalesce and their number determines exactly the multiplicity of the zero. For an N x N matrix the eigenvalues can be determined in O(log-squared N) time with N-squared processors and O(N) time with N processors. The method is compared with a parallel variant of bisection that requires O(N-squared) time on a single processor, O(N) time with N processors, and O(log N) time with N-squared processors.

  13. Scaling Optimization of the SIESTA MHD Code

    NASA Astrophysics Data System (ADS)

    Seal, Sudip; Hirshman, Steven; Perumalla, Kalyan

    2013-10-01

    SIESTA is a parallel three-dimensional plasma equilibrium code capable of resolving magnetic islands at high spatial resolutions for toroidal plasmas. Originally designed to exploit small-scale parallelism, SIESTA has now been scaled to execute efficiently over several thousands of processors P. This scaling improvement was accomplished with minimal intrusion to the execution flow of the original version. First, the efficiency of the iterative solutions was improved by integrating the parallel tridiagonal block solver code BCYCLIC. Krylov-space generation in GMRES was then accelerated using a customized parallel matrix-vector multiplication algorithm. Novel parallel Hessian generation algorithms were integrated and memory access latencies were dramatically reduced through loop nest optimizations and data layout rearrangement. These optimizations sped up equilibria calculations by factors of 30-50. It is possible to compute solutions with granularity N/P near unity on extremely fine radial meshes (N > 1024 points). Grid separation in SIESTA, which manifests itself primarily in the resonant components of the pressure far from rational surfaces, is strongly suppressed by finer meshes. Large problem sizes of up to 300 K simultaneous non-linear coupled equations have been solved on the NERSC supercomputers. Work supported by U.S. DOE under Contract DE-AC05-00OR22725 with UT-Battelle, LLC.

  14. Parallel algorithms for boundary value problems

    NASA Technical Reports Server (NTRS)

    Lin, Avi

    1990-01-01

    A general approach to solve boundary value problems numerically in a parallel environment is discussed. The basic algorithm consists of two steps: the local step where all the P available processors work in parallel, and the global step where one processor solves a tridiagonal linear system of the order P. The main advantages of this approach are two fold. First, this suggested approach is very flexible, especially in the local step and thus the algorithm can be used with any number of processors and with any of the SIMD or MIMD machines. Secondly, the communication complexity is very small and thus can be used as easily with shared memory machines. Several examples for using this strategy are discussed.

  15. Efficient numerical simulation of an electrothermal de-icer pad

    NASA Technical Reports Server (NTRS)

    Roelke, R. J.; Keith, T. G., Jr.; De Witt, K. J.; Wright, W. B.

    1987-01-01

    In this paper, a new approach to calculate the transient thermal behavior of an iced electrothermal de-icer pad was developed. The method of splines was used to obtain the temperature distribution within the layered pad. Splines were used in order to create a tridiagonal system of equations that could be directly solved by Gauss elimination. The Stefan problem was solved using the enthalpy method along with a recent implicit technique. Only one to three iterations were needed to locate the melt front during any time step. Computational times were shown to be greatly reduced over those of an existing one dimensional procedure without any reduction in accuracy; the curent technique was more than 10 times faster.

  16. Arrowheaded enhanced multivariance products representation for matrices (AEMPRM): Specifically focusing on infinite matrices and converting arrowheadedness to tridiagonality

    NASA Astrophysics Data System (ADS)

    Özdemir, Gizem; Demiralp, Metin

    2015-12-01

    In this work, Enhanced Multivariance Products Representation (EMPR) approach which is a Demiralp-and-his- group extension to the Sobol's High Dimensional Model Representation (HDMR) has been used as the basic tool. Their discrete form have also been developed and used in practice by Demiralp and his group in addition to some other authors for the decomposition of the arrays like vectors, matrices, or multiway arrays. This work specifically focuses on the decomposition of infinite matrices involving denumerable infinitely many rows and columns. To this end the target matrix is first decomposed to the sum of certain outer products and then each outer product is treated by Tridiagonal Matrix Enhanced Multivariance Products Representation (TMEMPR) which has been developed by Demiralp and his group. The result is a three-matrix- factor-product whose kernel (the middle factor) is an arrowheaded matrix while the pre and post factors are invertable matrices decomposed of the support vectors of TMEMPR. This new method is called as Arrowheaded Enhanced Multivariance Products Representation for Matrices. The general purpose is approximation of denumerably infinite matrices with the new method.

  17. Pseudomorphic InGaAs Materials

    DTIC Science & Technology

    1990-07-31

    tive mass Schrodinger equation can be cast using a finite element technique (Galerkin residual method) into a symmetric tridiagonal matrix formulation...lnr’Gal-.’As composition. All of the structures were fabricated by molecular beam epitaxy (MBE). The effects of different growth conditions were evaluated... different growth conditions were evaluated with a combination of characterization techniques. Key results to emerge from this work relate to the

  18. The crypto-Hermitian smeared-coordinate representation of wave functions

    NASA Astrophysics Data System (ADS)

    Znojil, Miloslav

    2011-08-01

    In discrete-coordinate quantum models the kinematical observable of position need not necessarily be chosen local (i.e., diagonal). Its smearing is selected in the nearest-neighbor form of a real asymmetric (i.e., crypto-Hermitian) tridiagonal matrix Qˆ. Via Gauss-Hermite illustrative example we show how such an option restricts the class of admissible dynamical observables (sampled here just by the Hamiltonian).

  19. A divide and conquer approach to the nonsymmetric eigenvalue problem

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

    Jessup, E.R.

    1991-01-01

    Serial computation combined with high communication costs on distributed-memory multiprocessors make parallel implementations of the QR method for the nonsymmetric eigenvalue problem inefficient. This paper introduces an alternative algorithm for the nonsymmetric tridiagonal eigenvalue problem based on rank two tearing and updating of the matrix. The parallelism of this divide and conquer approach stems from independent solution of the updating problems. 11 refs.

  20. Implementation of an ADI method on parallel computers

    NASA Technical Reports Server (NTRS)

    Fatoohi, Raad A.; Grosch, Chester E.

    1987-01-01

    The implementation of an ADI method for solving the diffusion equation on three parallel/vector computers is discussed. The computers were chosen so as to encompass a variety of architectures. They are: the MPP, an SIMD machine with 16K bit serial processors; FLEX/32, an MIMD machine with 20 processors; and CRAY/2, an MIMD machine with four vector processors. The Gaussian elimination algorithm is used to solve a set of tridiagonal systems on the FLEX/32 and CRAY/2 while the cyclic elimination algorithm is used to solve these systems on the MPP. The implementation of the method is discussed in relation to these architectures and measures of the performance on each machine are given. Simple performance models are used to describe the performance. These models highlight the bottlenecks and limiting factors for this algorithm on these architectures. Finally, conclusions are presented.

  1. Implementation of an ADI method on parallel computers

    NASA Technical Reports Server (NTRS)

    Fatoohi, Raad A.; Grosch, Chester E.

    1987-01-01

    In this paper the implementation of an ADI method for solving the diffusion equation on three parallel/vector computers is discussed. The computers were chosen so as to encompass a variety of architectures. They are the MPP, an SIMD machine with 16-Kbit serial processors; Flex/32, an MIMD machine with 20 processors; and Cray/2, an MIMD machine with four vector processors. The Gaussian elimination algorithm is used to solve a set of tridiagonal systems on the Flex/32 and Cray/2 while the cyclic elimination algorithm is used to solve these systems on the MPP. The implementation of the method is discussed in relation to these architectures and measures of the performance on each machine are given. Simple performance models are used to describe the performance. These models highlight the bottlenecks and limiting factors for this algorithm on these architectures. Finally conclusions are presented.

  2. Numerical stability in problems of linear algebra.

    NASA Technical Reports Server (NTRS)

    Babuska, I.

    1972-01-01

    Mathematical problems are introduced as mappings from the space of input data to that of the desired output information. Then a numerical process is defined as a prescribed recurrence of elementary operations creating the mapping of the underlying mathematical problem. The ratio of the error committed by executing the operations of the numerical process (the roundoff errors) to the error introduced by perturbations of the input data (initial error) gives rise to the concept of lambda-stability. As examples, several processes are analyzed from this point of view, including, especially, old and new processes for solving systems of linear algebraic equations with tridiagonal matrices. In particular, it is shown how such a priori information can be utilized as, for instance, a knowledge of the row sums of the matrix. Information of this type is frequently available where the system arises in connection with the numerical solution of differential equations.

  3. Pentadiagonal alternating-direction-implicit finite-difference time-domain method for two-dimensional Schrödinger equation

    NASA Astrophysics Data System (ADS)

    Tay, Wei Choon; Tan, Eng Leong

    2014-07-01

    In this paper, we have proposed a pentadiagonal alternating-direction-implicit (Penta-ADI) finite-difference time-domain (FDTD) method for the two-dimensional Schrödinger equation. Through the separation of complex wave function into real and imaginary parts, a pentadiagonal system of equations for the ADI method is obtained, which results in our Penta-ADI method. The Penta-ADI method is further simplified into pentadiagonal fundamental ADI (Penta-FADI) method, which has matrix-operator-free right-hand-sides (RHS), leading to the simplest and most concise update equations. As the Penta-FADI method involves five stencils in the left-hand-sides (LHS) of the pentadiagonal update equations, special treatments that are required for the implementation of the Dirichlet's boundary conditions will be discussed. Using the Penta-FADI method, a significantly higher efficiency gain can be achieved over the conventional Tri-ADI method, which involves a tridiagonal system of equations.

  4. Computational Modeling of the Dielectric Barrier Discharge (DBD) Device for Aeronautical Applications

    DTIC Science & Technology

    2006-06-01

    electron energy equation are solved semi-implicitly in a sequential manner. Each of the governing equations is solved by casting them onto a tridiagonal ...actuator for different device configurations and operating parameters. This will provide the Air Force with a low cost, quick turn around...Atmosphere (ATM) (20:8). Initially, the applied potential difference on the electrodes must be great enough to initiate gas breakdown. While

  5. On Distributed Strategies in Defense of a High Value Unit (HVU) Against a Swarm Attack

    DTIC Science & Technology

    2012-09-01

    function [ lam ,U] = tqr(a,b,U) % [ lam u] = tqr(a,b) or [ lam U] = tqr(a,b,U... lam u] = tqr(a,b): % % The column lam contains the eigenvalues of the Hermitian tridiagonal % matrix T = mxt(a,b) computed by one version of the...computed. The computed eigenvalues are real and are sorted to be % nonincreasing. % % [ lam U] = tqr(a,b,U): % % This replaces the input U

  6. Implementation of a Fully-Balanced Periodic Tridiagonal Solver on a Parallel Distributed Memory Architecture

    DTIC Science & Technology

    1994-05-01

    PARALLEL DISTRIBUTED MEMORY ARCHITECTURE LTJh T. M. Eidson 0 - 8 l 9 5 " G. Erlebacher _ _ _. _ DTIe QUALITY INSPECTED a Contract NAS I - 19480 May 1994...DISTRIBUTED MEMORY ARCHITECTURE T.M. Eidson * High Technology Corporation Hampton, VA 23665 G. Erlebachert Institute for Computer Applications in Science and...developed and evaluated. Simple model calculations as well as timing results are pres.nted to evaluate the various strategies. The particular

  7. Parallel language constructs for tensor product computations on loosely coupled architectures

    NASA Technical Reports Server (NTRS)

    Mehrotra, Piyush; Van Rosendale, John

    1989-01-01

    A set of language primitives designed to allow the specification of parallel numerical algorithms at a higher level is described. The authors focus on tensor product array computations, a simple but important class of numerical algorithms. They consider first the problem of programming one-dimensional kernel routines, such as parallel tridiagonal solvers, and then look at how such parallel kernels can be combined to form parallel tensor product algorithms.

  8. Electromagnetic Scattering from a Structured Slab Comprised of Periodically Placed Resistive Cards

    DTIC Science & Technology

    1989-05-01

    many different configurations of resistance may be computed at little additional cost. The three types of elements in the tridiagonal resistance...that of the B-52 bomber Reduction of the RCS is a hierarchical process in which each level of contribution must be taken care of by a different ...between the 3 currents of different unit cells; the currents on the entire structure must be treated as unknowns in a moment method solution. On the other

  9. Coordinated Research Program in Pulsed Power Physics.

    DTIC Science & Technology

    1981-12-01

    Ref. C11, this problem may be elimi- nated by factoring the tridiagonal , 2nd order, finite difference equation, Eq. (1), into two ist order finite ...13)Ti,o where 1h 2 /2 h2 = 2 - g + / -h g (1- - g) (14) 1+ h This solution to the finite difference equations consists of expo- nentially growing...December 1, 1981fl j,/,,- //,CJ’ .* ., .) - 13. NUMBEROF PAGES - A.)6 2 /’ij250 14. MONITORING AGENCY NAME & ADDRESS(iI different from Controlling

  10. Convergence rates for finite element problems with singularities. Part 1: Antiplane shear. [crack

    NASA Technical Reports Server (NTRS)

    Plunkett, R.

    1980-01-01

    The problem of a finite crack in an infinite medium under antiplane shear load is considered. It is shown that the nodal forces at the tip of the crack accurately gives the order of singularity, that n energy release methods can give the strength to better than 1 percent with element size 1/10 the crack length, and that nodal forces give a much better estimate of the stress field than do the elements themselves. The finite element formulation and the factoring of tridiagonal matrices are discussed.

  11. The ELPA library: scalable parallel eigenvalue solutions for electronic structure theory and computational science.

    PubMed

    Marek, A; Blum, V; Johanni, R; Havu, V; Lang, B; Auckenthaler, T; Heinecke, A; Bungartz, H-J; Lederer, H

    2014-05-28

    Obtaining the eigenvalues and eigenvectors of large matrices is a key problem in electronic structure theory and many other areas of computational science. The computational effort formally scales as O(N(3)) with the size of the investigated problem, N (e.g. the electron count in electronic structure theory), and thus often defines the system size limit that practical calculations cannot overcome. In many cases, more than just a small fraction of the possible eigenvalue/eigenvector pairs is needed, so that iterative solution strategies that focus only on a few eigenvalues become ineffective. Likewise, it is not always desirable or practical to circumvent the eigenvalue solution entirely. We here review some current developments regarding dense eigenvalue solvers and then focus on the Eigenvalue soLvers for Petascale Applications (ELPA) library, which facilitates the efficient algebraic solution of symmetric and Hermitian eigenvalue problems for dense matrices that have real-valued and complex-valued matrix entries, respectively, on parallel computer platforms. ELPA addresses standard as well as generalized eigenvalue problems, relying on the well documented matrix layout of the Scalable Linear Algebra PACKage (ScaLAPACK) library but replacing all actual parallel solution steps with subroutines of its own. For these steps, ELPA significantly outperforms the corresponding ScaLAPACK routines and proprietary libraries that implement the ScaLAPACK interface (e.g. Intel's MKL). The most time-critical step is the reduction of the matrix to tridiagonal form and the corresponding backtransformation of the eigenvectors. ELPA offers both a one-step tridiagonalization (successive Householder transformations) and a two-step transformation that is more efficient especially towards larger matrices and larger numbers of CPU cores. ELPA is based on the MPI standard, with an early hybrid MPI-OpenMPI implementation available as well. Scalability beyond 10,000 CPU cores for problem sizes arising in the field of electronic structure theory is demonstrated for current high-performance computer architectures such as Cray or Intel/Infiniband. For a matrix of dimension 260,000, scalability up to 295,000 CPU cores has been shown on BlueGene/P.

  12. Numerical Aspects of Atomic Physics: Helium Basis Sets and Matrix Diagonalization

    NASA Astrophysics Data System (ADS)

    Jentschura, Ulrich; Noble, Jonathan

    2014-03-01

    We present a matrix diagonalization algorithm for complex symmetric matrices, which can be used in order to determine the resonance energies of auto-ionizing states of comparatively simple quantum many-body systems such as helium. The algorithm is based in multi-precision arithmetic and proceeds via a tridiagonalization of the complex symmetric (not necessarily Hermitian) input matrix using generalized Householder transformations. Example calculations involving so-called PT-symmetric quantum systems lead to reference values which pertain to the imaginary cubic perturbation (the imaginary cubic anharmonic oscillator). We then proceed to novel basis sets for the helium atom and present results for Bethe logarithms in hydrogen and helium, obtained using the enhanced numerical techniques. Some intricacies of ``canned'' algorithms such as those used in LAPACK will be discussed. Our algorithm, for complex symmetric matrices such as those describing cubic resonances after complex scaling, is faster than LAPACK's built-in routines, for specific classes of input matrices. It also offer flexibility in terms of the calculation of the so-called implicit shift, which is used in order to ``pivot'' the system toward the convergence to diagonal form. We conclude with a wider overview.

  13. A case against a divide and conquer approach to the nonsymmetric eigenvalue problem

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

    Jessup, E.R.

    1991-12-01

    Divide and conquer techniques based on rank-one updating have proven fast, accurate, and efficient in parallel for the real symmetric tridiagonal and unitary eigenvalue problems and for the bidiagonal singular value problem. Although the divide and conquer mechanism can also be adapted to the real nonsymmetric eigenproblem in a straightforward way, most of the desirable characteristics of the other algorithms are lost. In this paper, we examine the problems of accuracy and efficiency that can stand in the way of a nonsymmetric divide and conquer eigensolver based on low-rank updating. 31 refs., 2 figs.

  14. Trajectory Generation by Piecewise Spline Interpolation

    DTIC Science & Technology

    1976-04-01

    Lx) -a 0 + atx + aAx + x (21)0 1 2 3 and the coefficients are obtained from Equation (20) as ao m fl (22)i al " fi, (23) S3(fi + I f ) 2fj + fj+ 1 (24...reference frame to the vehicle fixed frame is pTO’ 0TO’ OTO’ *TO where a if (gZv0 - A >- 0 aCI (64) - azif (gzv0- AzvO < 0 These rotations may be...velocity frame axes directions (velocity frame from the output frame) aO, al , a 2 , a 3 Coefficients of the piecewise cubic polynomials [B ] Tridiagonal

  15. Transpiration and film cooling boundary layer computer program. Volume 2: Computer program and user's manual

    NASA Technical Reports Server (NTRS)

    Gloss, R. J.

    1971-01-01

    A finite difference turbulent boundary layer computer program which allows for mass transfer wall cooling and equilibrium chemistry effects is presented. The program is capable of calculating laminar or turbulent boundary layer solutions for an arbitrary ideal gas or an equilibrium hydrogen oxygen system. Either two dimensional or axisymmetric geometric configurations may be considered. The equations are solved, in nondimension-alized physical coordinates, using the implicit Crank-Nicolson technique. The finite difference forms of the conservation of mass, momentum, total enthalpy and elements equations are linearized and uncoupled, thereby generating easily solvable tridiagonal sets of algebraic equations. A detailed description of the computer program, as well as a program user's manual is provided. Detailed descriptions of all boundary layer subroutines are included, as well as a section defining all program symbols of principal importance. Instructions are then given for preparing card input to the program and for interpreting the printed output. Finally, two sample cases are included to illustrate the use of the program.

  16. Analytical and numerical construction of equivalent cables.

    PubMed

    Lindsay, K A; Rosenberg, J R; Tucker, G

    2003-08-01

    The mathematical complexity experienced when applying cable theory to arbitrarily branched dendrites has lead to the development of a simple representation of any branched dendrite called the equivalent cable. The equivalent cable is an unbranched model of a dendrite and a one-to-one mapping of potentials and currents on the branched model to those on the unbranched model, and vice versa. The piecewise uniform cable, with a symmetrised tri-diagonal system matrix, is shown to represent the canonical form for an equivalent cable. Through a novel application of the Laplace transform it is demonstrated that an arbitrary branched model of a dendrite can be transformed to the canonical form of an equivalent cable. The characteristic properties of the equivalent cable are extracted from the matrix for the transformed branched model. The one-to-one mapping follows automatically from the construction of the equivalent cable. The equivalent cable is used to provide a new procedure for characterising the location of synaptic contacts on spinal interneurons.

  17. Simultaneous heat and mass transfer inside a vertical channel in evaporating a heated falling glycols liquid film

    NASA Astrophysics Data System (ADS)

    Nait Alla, Abderrahman; Feddaoui, M'barek; Meftah, Hicham

    2015-12-01

    The interactive effects of heat and mass transfer in the evaporation of ethylene and propylene glycol flowing as falling films on vertical channel was investigated. The liquid film falls along a left plate which is externally subjected to a uniform heat flux while the right plate is the dry wall and is kept thermally insulated. The model solves the coupled governing equations in both phases together with the boundary and interfacial conditions. The systems of equations obtained by using an implicit finite difference method are solved by Tridiagonal Matrix Algorithm. The influence of the inlet liquid flow, Reynolds number in the gas flow and the wall heat flux on the intensity of heat and mass transfers are examined. A comparison between the results obtained for studied glycols and water in the same conditions is made. The results indicate that water evaporates in more intense way in comparison to glycols and the increase of gas flow rate tends to improve slightly the evaporation.

  18. Parallel implementation of geometrical shock dynamics for two dimensional converging shock waves

    NASA Astrophysics Data System (ADS)

    Qiu, Shi; Liu, Kuang; Eliasson, Veronica

    2016-10-01

    Geometrical shock dynamics (GSD) theory is an appealing method to predict the shock motion in the sense that it is more computationally efficient than solving the traditional Euler equations, especially for converging shock waves. However, to solve and optimize large scale configurations, the main bottleneck is the computational cost. Among the existing numerical GSD schemes, there is only one that has been implemented on parallel computers, with the purpose to analyze detonation waves. To extend the computational advantage of the GSD theory to more general applications such as converging shock waves, a numerical implementation using a spatial decomposition method has been coupled with a front tracking approach on parallel computers. In addition, an efficient tridiagonal system solver for massively parallel computers has been applied to resolve the most expensive function in this implementation, resulting in an efficiency of 0.93 while using 32 HPCC cores. Moreover, symmetric boundary conditions have been developed to further reduce the computational cost, achieving a speedup of 19.26 for a 12-sided polygonal converging shock.

  19. Computational manipulation of a radiative MHD flow with Hall current and chemical reaction in the presence of rotating fluid

    NASA Astrophysics Data System (ADS)

    Alias Suba, Subbu; Muthucumaraswamy, R.

    2018-04-01

    A numerical analysis of transient radiative MHD(MagnetoHydroDynamic) natural convective flow of a viscous, incompressible, electrically conducting and rotating fluid along a semi-infinite isothermal vertical plate is carried out taking into consideration Hall current, rotation and first order chemical reaction.The coupled non-linear partial differential equations are expressed in difference form using implicit finite difference scheme. The difference equations are then reduced to a system of linear algebraic equations with a tri-diagonal structure which is solved by Thomas Algorithm. The primary and secondary velocity profiles, temperature profile, concentration profile, skin friction, Nusselt number and Sherwood Number are depicted graphically for a range of values of rotation parameter, Hall parameter,magnetic parameter, chemical reaction parameter, radiation parameter, Prandtl number and Schmidt number.It is recognized that rate of heat transfer and rate of mass transfer decrease with increase in time but they increase with increasing values of radiation parameter and Schmidt number respectively.

  20. Computer programs for smoothing and scaling airfoil coordinates

    NASA Technical Reports Server (NTRS)

    Morgan, H. L., Jr.

    1983-01-01

    Detailed descriptions are given of the theoretical methods and associated computer codes of a program to smooth and a program to scale arbitrary airfoil coordinates. The smoothing program utilizes both least-squares polynomial and least-squares cubic spline techniques to smooth interatively the second derivatives of the y-axis airfoil coordinates with respect to a transformed x-axis system which unwraps the airfoil and stretches the nose and trailing-edge regions. The corresponding smooth airfoil coordinates are then determined by solving a tridiagonal matrix of simultaneous cubic-spline equations relating the y-axis coordinates and their corresponding second derivatives. A technique for computing the camber and thickness distribution of the smoothed airfoil is also discussed. The scaling program can then be used to scale the thickness distribution generated by the smoothing program to a specific maximum thickness which is then combined with the camber distribution to obtain the final scaled airfoil contour. Computer listings of the smoothing and scaling programs are included.

  1. The use of Lanczos's method to solve the large generalized symmetric definite eigenvalue problem

    NASA Technical Reports Server (NTRS)

    Jones, Mark T.; Patrick, Merrell L.

    1989-01-01

    The generalized eigenvalue problem, Kx = Lambda Mx, is of significant practical importance, especially in structural enginering where it arises as the vibration and buckling problem. A new algorithm, LANZ, based on Lanczos's method is developed. LANZ uses a technique called dynamic shifting to improve the efficiency and reliability of the Lanczos algorithm. A new algorithm for solving the tridiagonal matrices that arise when using Lanczos's method is described. A modification of Parlett and Scott's selective orthogonalization algorithm is proposed. Results from an implementation of LANZ on a Convex C-220 show it to be superior to a subspace iteration code.

  2. Fast Euler solver for transonic airfoils. I - Theory. II - Applications

    NASA Technical Reports Server (NTRS)

    Dadone, Andrea; Moretti, Gino

    1988-01-01

    Equations written in terms of generalized Riemann variables are presently integrated by inverting six bidiagonal matrices and two tridiagonal matrices, using an implicit Euler solver that is based on the lambda-formulation. The solution is found on a C-grid whose boundaries are very close to the airfoil. The fast solver is then applied to the computation of several flowfields on a NACA 0012 airfoil at various Mach number and alpha values, yielding results that are primarily concerned with transonic flows. The effects of grid fineness and boundary distances are analyzed; the code is found to be robust and accurate, as well as fast.

  3. Ground-State of the Bose-Hubbard Model

    NASA Astrophysics Data System (ADS)

    Mancini, J. D.; Fessatidis, V.; Bowen, S. P.; Murawski, R. K.; Maly, J.

    The Bose-Hubbard Model represents a s simple theoretical model to describe the physics of interacting Boson systems. In particular it has proved to be an effective description of a number of physical systems such as arrays of Josephson arrays as well as dilute alkali gases in optical lattices. Here we wish to study the ground-state of this system using two disparate but related moments calculational schemes: the Lanczos (tridiagonal) method as well as a Generalized moments approach. The Hamiltonian to be studied is given by (in second-quantized notation): H = - t ∑ < i , j > bi†bj +U/2 ∑ inini - 1 - μ ∑ ini . Here i is summed over all lattice sites, and < i , j > denotes summation over all neighbhoring sites i and j, while bi† and bi are bosonic creation and annihilation operators. ni = bi†bi gives the number of particles on site i. Parameter t is the hopping amplitude, describing mobility of bosons in the lattice. Parameter U describes the on-site interaction, repulsive, if U > 0 , and attractive for U < 0 . μ is the chemical potential. Both the ground-state energy and energy gap are evaluated as a function of t, U and μ.

  4. Optimal implicit 2-D finite differences to model wave propagation in poroelastic media

    NASA Astrophysics Data System (ADS)

    Itzá, Reymundo; Iturrarán-Viveros, Ursula; Parra, Jorge O.

    2016-08-01

    Numerical modeling of seismic waves in heterogeneous porous reservoir rocks is an important tool for the interpretation of seismic surveys in reservoir engineering. We apply globally optimal implicit staggered-grid finite differences (FD) to model 2-D wave propagation in heterogeneous poroelastic media at a low-frequency range (<10 kHz). We validate the numerical solution by comparing it to an analytical-transient solution obtaining clear seismic wavefields including fast P and slow P and S waves (for a porous media saturated with fluid). The numerical dispersion and stability conditions are derived using von Neumann analysis, showing that over a wide range of porous materials the Courant condition governs the stability and this optimal implicit scheme improves the stability of explicit schemes. High-order explicit FD can be replaced by some lower order optimal implicit FD so computational cost will not be as expensive while maintaining the accuracy. Here, we compute weights for the optimal implicit FD scheme to attain an accuracy of γ = 10-8. The implicit spatial differentiation involves solving tridiagonal linear systems of equations through Thomas' algorithm.

  5. Parallelization of elliptic solver for solving 1D Boussinesq model

    NASA Astrophysics Data System (ADS)

    Tarwidi, D.; Adytia, D.

    2018-03-01

    In this paper, a parallel implementation of an elliptic solver in solving 1D Boussinesq model is presented. Numerical solution of Boussinesq model is obtained by implementing a staggered grid scheme to continuity, momentum, and elliptic equation of Boussinesq model. Tridiagonal system emerging from numerical scheme of elliptic equation is solved by cyclic reduction algorithm. The parallel implementation of cyclic reduction is executed on multicore processors with shared memory architectures using OpenMP. To measure the performance of parallel program, large number of grids is varied from 28 to 214. Two test cases of numerical experiment, i.e. propagation of solitary and standing wave, are proposed to evaluate the parallel program. The numerical results are verified with analytical solution of solitary and standing wave. The best speedup of solitary and standing wave test cases is about 2.07 with 214 of grids and 1.86 with 213 of grids, respectively, which are executed by using 8 threads. Moreover, the best efficiency of parallel program is 76.2% and 73.5% for solitary and standing wave test cases, respectively.

  6. Global synchronization algorithms for the Intel iPSC/860

    NASA Technical Reports Server (NTRS)

    Seidel, Steven R.; Davis, Mark A.

    1992-01-01

    In a distributed memory multicomputer that has no global clock, global processor synchronization can only be achieved through software. Global synchronization algorithms are used in tridiagonal systems solvers, CFD codes, sequence comparison algorithms, and sorting algorithms. They are also useful for event simulation, debugging, and for solving mutual exclusion problems. For the Intel iPSC/860 in particular, global synchronization can be used to ensure the most effective use of the communication network for operations such as the shift, where each processor in a one-dimensional array or ring concurrently sends a message to its right (or left) neighbor. Three global synchronization algorithms are considered for the iPSC/860: the gysnc() primitive provided by Intel, the PICL primitive sync0(), and a new recursive doubling synchronization (RDS) algorithm. The performance of these algorithms is compared to the performance predicted by communication models of both the long and forced message protocols. Measurements of the cost of shift operations preceded by global synchronization show that the RDS algorithm always synchronizes the nodes more precisely and costs only slightly more than the other two algorithms.

  7. Numerical methods on some structured matrix algebra problems

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

    Jessup, E.R.

    1996-06-01

    This proposal concerned the design, analysis, and implementation of serial and parallel algorithms for certain structured matrix algebra problems. It emphasized large order problems and so focused on methods that can be implemented efficiently on distributed-memory MIMD multiprocessors. Such machines supply the computing power and extensive memory demanded by the large order problems. We proposed to examine three classes of matrix algebra problems: the symmetric and nonsymmetric eigenvalue problems (especially the tridiagonal cases) and the solution of linear systems with specially structured coefficient matrices. As all of these are of practical interest, a major goal of this work was tomore » translate our research in linear algebra into useful tools for use by the computational scientists interested in these and related applications. Thus, in addition to software specific to the linear algebra problems, we proposed to produce a programming paradigm and library to aid in the design and implementation of programs for distributed-memory MIMD computers. We now report on our progress on each of the problems and on the programming tools.« less

  8. Research on distributed heterogeneous data PCA algorithm based on cloud platform

    NASA Astrophysics Data System (ADS)

    Zhang, Jin; Huang, Gang

    2018-05-01

    Principal component analysis (PCA) of heterogeneous data sets can solve the problem that centralized data scalability is limited. In order to reduce the generation of intermediate data and error components of distributed heterogeneous data sets, a principal component analysis algorithm based on heterogeneous data sets under cloud platform is proposed. The algorithm performs eigenvalue processing by using Householder tridiagonalization and QR factorization to calculate the error component of the heterogeneous database associated with the public key to obtain the intermediate data set and the lost information. Experiments on distributed DBM heterogeneous datasets show that the model method has the feasibility and reliability in terms of execution time and accuracy.

  9. Parallel language constructs for tensor product computations on loosely coupled architectures

    NASA Technical Reports Server (NTRS)

    Mehrotra, Piyush; Vanrosendale, John

    1989-01-01

    Distributed memory architectures offer high levels of performance and flexibility, but have proven awkard to program. Current languages for nonshared memory architectures provide a relatively low level programming environment, and are poorly suited to modular programming, and to the construction of libraries. A set of language primitives designed to allow the specification of parallel numerical algorithms at a higher level is described. Tensor product array computations are focused on along with a simple but important class of numerical algorithms. The problem of programming 1-D kernal routines is focused on first, such as parallel tridiagonal solvers, and then how such parallel kernels can be combined to form parallel tensor product algorithms is examined.

  10. An efficient three-dimensional Poisson solver for SIMD high-performance-computing architectures

    NASA Technical Reports Server (NTRS)

    Cohl, H.

    1994-01-01

    We present an algorithm that solves the three-dimensional Poisson equation on a cylindrical grid. The technique uses a finite-difference scheme with operator splitting. This splitting maps the banded structure of the operator matrix into a two-dimensional set of tridiagonal matrices, which are then solved in parallel. Our algorithm couples FFT techniques with the well-known ADI (Alternating Direction Implicit) method for solving Elliptic PDE's, and the implementation is extremely well suited for a massively parallel environment like the SIMD architecture of the MasPar MP-1. Due to the highly recursive nature of our problem, we believe that our method is highly efficient, as it avoids excessive interprocessor communication.

  11. Gegenbauer-solvable quantum chain model

    NASA Astrophysics Data System (ADS)

    Znojil, Miloslav

    2010-11-01

    An N-level quantum model is proposed in which the energies are represented by an N-plet of zeros of a suitable classical orthogonal polynomial. The family of Gegenbauer polynomials G(n,a,x) is selected for illustrative purposes. The main obstacle lies in the non-Hermiticity (aka crypto-Hermiticity) of Hamiltonians H≠H†. We managed to (i) start from elementary secular equation G(N,a,En)=0, (ii) keep our H, in the nearest-neighbor-interaction spirit, tridiagonal, (iii) render it Hermitian in an ad hoc, nonunique Hilbert space endowed with metric Θ≠I, (iv) construct eligible metrics in closed forms ordered by increasing nondiagonality, and (v) interpret the model as a smeared N-site lattice.

  12. A Textbook for a First Course in Computational Fluid Dynamics

    NASA Technical Reports Server (NTRS)

    Zingg, D. W.; Pulliam, T. H.; Nixon, David (Technical Monitor)

    1999-01-01

    This paper describes and discusses the textbook, Fundamentals of Computational Fluid Dynamics by Lomax, Pulliam, and Zingg, which is intended for a graduate level first course in computational fluid dynamics. This textbook emphasizes fundamental concepts in developing, analyzing, and understanding numerical methods for the partial differential equations governing the physics of fluid flow. Its underlying philosophy is that the theory of linear algebra and the attendant eigenanalysis of linear systems provides a mathematical framework to describe and unify most numerical methods in common use in the field of fluid dynamics. Two linear model equations, the linear convection and diffusion equations, are used to illustrate concepts throughout. Emphasis is on the semi-discrete approach, in which the governing partial differential equations (PDE's) are reduced to systems of ordinary differential equations (ODE's) through a discretization of the spatial derivatives. The ordinary differential equations are then reduced to ordinary difference equations (O(Delta)E's) using a time-marching method. This methodology, using the progression from PDE through ODE's to O(Delta)E's, together with the use of the eigensystems of tridiagonal matrices and the theory of O(Delta)E's, gives the book its distinctiveness and provides a sound basis for a deep understanding of fundamental concepts in computational fluid dynamics.

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

    Znojil, Miloslav

    An N-level quantum model is proposed in which the energies are represented by an N-plet of zeros of a suitable classical orthogonal polynomial. The family of Gegenbauer polynomials G(n,a,x) is selected for illustrative purposes. The main obstacle lies in the non-Hermiticity (aka crypto-Hermiticity) of Hamiltonians H{ne}H{sup {dagger}.} We managed to (i) start from elementary secular equation G(N,a,E{sub n})=0, (ii) keep our H, in the nearest-neighbor-interaction spirit, tridiagonal, (iii) render it Hermitian in an ad hoc, nonunique Hilbert space endowed with metric {Theta}{ne}I, (iv) construct eligible metrics in closed forms ordered by increasing nondiagonality, and (v) interpret the model as amore » smeared N-site lattice.« less

  14. Introducing a new family of short-range potentials and their numerical solutions using the asymptotic iteration method

    NASA Astrophysics Data System (ADS)

    Assi, I. A.; Sous, A. J.

    2018-05-01

    The goal of this work is to derive a new class of short-range potentials that could have a wide range of physical applications, specially in molecular physics. The tridiagonal representation approach has been developed beyond its limitations to produce new potentials by requiring the representation of the Schrödinger wave operator to be multidiagonal and symmetric. This produces a family of Hulthén potentials that has a specific structure, as mentioned in the introduction. As an example, we have solved the nonrelativistic wave equation for the new four-parameter short-range screening potential numerically using the asymptotic iteration method, where we tabulated the eigenvalues for both s -wave and arbitrary l -wave cases in tables.

  15. An Implicit Characteristic Based Method for Electromagnetics

    NASA Technical Reports Server (NTRS)

    Beggs, John H.; Briley, W. Roger

    2001-01-01

    An implicit characteristic-based approach for numerical solution of Maxwell's time-dependent curl equations in flux conservative form is introduced. This method combines a characteristic based finite difference spatial approximation with an implicit lower-upper approximate factorization (LU/AF) time integration scheme. This approach is advantageous for three-dimensional applications because the characteristic differencing enables a two-factor approximate factorization that retains its unconditional stability in three space dimensions, and it does not require solution of tridiagonal systems. Results are given both for a Fourier analysis of stability, damping and dispersion properties, and for one-dimensional model problems involving propagation and scattering for free space and dielectric materials using both uniform and nonuniform grids. The explicit Finite Difference Time Domain Method (FDTD) algorithm is used as a convenient reference algorithm for comparison. The one-dimensional results indicate that for low frequency problems on a highly resolved uniform or nonuniform grid, this LU/AF algorithm can produce accurate solutions at Courant numbers significantly greater than one, with a corresponding improvement in efficiency for simulating a given period of time. This approach appears promising for development of dispersion optimized LU/AF schemes for three dimensional applications.

  16. Simulation of the concomitant process of nucleation-growth-coarsening of Al2Cu particles in a 319 foundry aluminum alloy

    NASA Astrophysics Data System (ADS)

    Martinez, R.; Larouche, D.; Cailletaud, G.; Guillot, I.; Massinon, D.

    2015-06-01

    The precipitation of Al2Cu particles in a 319 T7 aluminum alloy has been modeled. A theoretical approach enables the concomitant computation of nucleation, growth and coarsening. The framework is based on an implicit scheme using the finite differences. The equation of continuity is discretized in time and space in order to obtain a matricial form. The inversion of a tridiagonal matrix gives way to determining the evolution of the size distribution of Al2Cu particles at t  +Δt. The fluxes of in-between the boundaries are computed in order to respect the conservation of the mass of the system, as well as the fluxes at the boundaries. The essential results of the model are compared to TEM measurements. Simulations provide quantitative features on the impact of the cooling rate on the size distribution of particles. They also provide results in agreement with the TEM measurements. This kind of multiscale approach allows new perspectives to be examined in the process of designing highly loaded components such as cylinder heads. It enables a more precise prediction of the microstructure and its evolution as a function of continuous cooling rates.

  17. Ground State and Finite Temperature Lanczos Methods

    NASA Astrophysics Data System (ADS)

    Prelovšek, P.; Bonča, J.

    The present review will focus on recent development of exact- diagonalization (ED) methods that use Lanczos algorithm to transform large sparse matrices onto the tridiagonal form. We begin with a review of basic principles of the Lanczos method for computing ground-state static as well as dynamical properties. Next, generalization to finite-temperatures in the form of well established finite-temperature Lanczos method is described. The latter allows for the evaluation of temperatures T>0 static and dynamic quantities within various correlated models. Several extensions and modification of the latter method introduced more recently are analysed. In particular, the low-temperature Lanczos method and the microcanonical Lanczos method, especially applicable within the high-T regime. In order to overcome the problems of exponentially growing Hilbert spaces that prevent ED calculations on larger lattices, different approaches based on Lanczos diagonalization within the reduced basis have been developed. In this context, recently developed method based on ED within a limited functional space is reviewed. Finally, we briefly discuss the real-time evolution of correlated systems far from equilibrium, which can be simulated using the ED and Lanczos-based methods, as well as approaches based on the diagonalization in a reduced basis.

  18. Radiated chemical reaction impacts on natural convective MHD mass transfer flow induced by a vertical cone

    NASA Astrophysics Data System (ADS)

    Sambath, P.; Pullepu, Bapuji; Hussain, T.; Ali Shehzad, Sabir

    2018-03-01

    The consequence of thermal radiation in laminar natural convective hydromagnetic flow of viscous incompressible fluid past a vertical cone with mass transfer under the influence of chemical reaction with heat source/sink is presented here. The surface of the cone is focused to a variable wall temperature (VWT) and wall concentration (VWC). The fluid considered here is a gray absorbing and emitting, but non-scattering medium. The boundary layer dimensionless equations governing the flow are solved by an implicit finite-difference scheme of Crank-Nicolson which has speedy convergence and stable. This method converts the dimensionless equations into a system of tri-diagonal equations and which are then solved by using well known Thomas algorithm. Numerical solutions are obtained for momentum, temperature, concentration, local and average shear stress, heat and mass transfer rates for various values of parameters Pr, Sc, λ, Δ, Rd are established with graphical representations. We observed that the liquid velocity decreased for higher values of Prandtl and Schmidt numbers. The temperature is boost up for decreasing values of Schimdt and Prandtl numbers. The enhancement in radiative parameter gives more heat to liquid due to which temperature is enhanced significantly.

  19. 49 CFR 236.824 - System, automatic block signal.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... 49 Transportation 4 2010-10-01 2010-10-01 false System, automatic block signal. 236.824 Section... § 236.824 System, automatic block signal. A block signal system wherein the use of each block is governed by an automatic block signal, cab signal, or both. ...

  20. A Semi-Implicit, Three-Dimensional Model for Estuarine Circulation

    USGS Publications Warehouse

    Smith, Peter E.

    2006-01-01

    A semi-implicit, finite-difference method for the numerical solution of the three-dimensional equations for circulation in estuaries is presented and tested. The method uses a three-time-level, leapfrog-trapezoidal scheme that is essentially second-order accurate in the spatial and temporal numerical approximations. The three-time-level scheme is shown to be preferred over a two-time-level scheme, especially for problems with strong nonlinearities. The stability of the semi-implicit scheme is free from any time-step limitation related to the terms describing vertical diffusion and the propagation of the surface gravity waves. The scheme does not rely on any form of vertical/horizontal mode-splitting to treat the vertical diffusion implicitly. At each time step, the numerical method uses a double-sweep method to transform a large number of small tridiagonal equation systems and then uses the preconditioned conjugate-gradient method to solve a single, large, five-diagonal equation system for the water surface elevation. The governing equations for the multi-level scheme are prepared in a conservative form by integrating them over the height of each horizontal layer. The layer-integrated volumetric transports replace velocities as the dependent variables so that the depth-integrated continuity equation that is used in the solution for the water surface elevation is linear. Volumetric transports are computed explicitly from the momentum equations. The resulting method is mass conservative, efficient, and numerically accurate.

  1. An accelerated lambda iteration method for multilevel radiative transfer. I - Non-overlapping lines with background continuum

    NASA Technical Reports Server (NTRS)

    Rybicki, G. B.; Hummer, D. G.

    1991-01-01

    A method is presented for solving multilevel transfer problems when nonoverlapping lines and background continuum are present and active continuum transfer is absent. An approximate lambda operator is employed to derive linear, 'preconditioned', statistical-equilibrium equations. A method is described for finding the diagonal elements of the 'true' numerical lambda operator, and therefore for obtaining the coefficients of the equations. Iterations of the preconditioned equations, in conjunction with the transfer equation's formal solution, are used to solve linear equations. Some multilevel problems are considered, including an eleven-level neutral helium atom. Diagonal and tridiagonal approximate lambda operators are utilized in the problems to examine the convergence properties of the method, and it is found to be effective for the line transfer problems.

  2. Implicit and Multigrid Method for Ideal Multigrid Convergence: Direct Numerical Simulation of Separated Flow Around NACA 0012 Airfoil

    NASA Technical Reports Server (NTRS)

    Liu, Chao-Qun; Shan, H.; Jiang, L.

    1999-01-01

    Numerical investigation of flow separation over a NACA 0012 airfoil at large angles of attack has been carried out. The numerical calculation is performed by solving the full Navier-Stokes equations in generalized curvilinear coordinates. The second-order LU-SGS implicit scheme is applied for time integration. This scheme requires no tridiagonal inversion and is capable of being completely vectorized, provided the corresponding Jacobian matrices are properly selected. A fourth-order centered compact scheme is used for spatial derivatives. In order to reduce numerical oscillation, a sixth-order implicit filter is employed. Non-reflecting boundary conditions are imposed at the far-field and outlet boundaries to avoid possible non-physical wave reflection. Complex flow separation and vortex shedding phenomenon have been observed and discussed.

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

    Pratap, Surender; Sarkar, Niladri, E-mail: niladri@pilani.bits-pilani.ac.in

    Self-Consistent Quantum Method using Schrodinger-Poisson equations have been used for determining the Channel electron density of Nano-Scale MOSFETs for 6nm and 9nm thick channels. The 6nm thick MOSFET show the peak of the electron density at the middle where as the 9nm thick MOSFET shows the accumulation of the electrons at the oxide/semiconductor interface. The electron density in the channel is obtained from the diagonal elements of the density matrix; [ρ]=[1/(1+exp(β(H − μ)))] A Tridiagonal Hamiltonian Matrix [H] is constructed for the oxide/channel/oxide 1D structure for the dual gate MOSFET. This structure is discretized and Finite-Difference method is used formore » constructing the matrix equation. The comparison of these results which are obtained by Quantum methods are done with Semi-Classical methods.« less

  4. Structure preserving noise and dissipation in the Toda lattice

    NASA Astrophysics Data System (ADS)

    Arnaudon, Alexis

    2018-05-01

    In this paper, we use Flaschka’s change of variables of the open Toda lattice and its interpretation in terms of the group structure of the LU factorisation as a coadjoint motion on a certain dual of the Lie algebra to implement a structure preserving noise and dissipation. Both preserve the structure of the coadjoint orbit, that is the space of symmetric tri-diagonal matrices and arise as a new type of multiplicative noise and nonlinear dissipation of the Toda lattice. We investigate some of the properties of these deformations and, in particular, the continuum limit as a stochastic Burger equation with a nonlinear viscosity. This work is meant to be exploratory, and open more questions that we can answer with simple mathematical tools and without numerical simulations.

  5. 49 CFR 236.824 - System, automatic block signal.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... 49 Transportation 4 2011-10-01 2011-10-01 false System, automatic block signal. 236.824 Section..., INSPECTION, MAINTENANCE, AND REPAIR OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Definitions § 236.824 System, automatic block signal. A block signal system wherein the use of each block is...

  6. 49 CFR 236.824 - System, automatic block signal.

    Code of Federal Regulations, 2014 CFR

    2014-10-01

    ... 49 Transportation 4 2014-10-01 2014-10-01 false System, automatic block signal. 236.824 Section..., INSPECTION, MAINTENANCE, AND REPAIR OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Definitions § 236.824 System, automatic block signal. A block signal system wherein the use of each block is...

  7. 49 CFR 236.824 - System, automatic block signal.

    Code of Federal Regulations, 2013 CFR

    2013-10-01

    ... 49 Transportation 4 2013-10-01 2013-10-01 false System, automatic block signal. 236.824 Section..., INSPECTION, MAINTENANCE, AND REPAIR OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Definitions § 236.824 System, automatic block signal. A block signal system wherein the use of each block is...

  8. 49 CFR 236.827 - System, block signal.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... 49 Transportation 4 2010-10-01 2010-10-01 false System, block signal. 236.827 Section 236.827... System, block signal. A method of governing the movement of trains into or within one or more blocks by block signals or cab signals. ...

  9. Space Launch Systems Block 1B Preliminary Navigation System Design

    NASA Technical Reports Server (NTRS)

    Oliver, T. Emerson; Park, Thomas; Anzalone, Evan; Smith, Austin; Strickland, Dennis; Patrick, Sean

    2018-01-01

    NASA is currently building the Space Launch Systems (SLS) Block 1 launch vehicle for the Exploration Mission 1 (EM-1) test flight. In parallel, NASA is also designing the Block 1B launch vehicle. The Block 1B vehicle is an evolution of the Block 1 vehicle and extends the capability of the NASA launch vehicle. This evolution replaces the Interim Cryogenic Propulsive Stage (ICPS) with the Exploration Upper Stage (EUS). As the vehicle evolves to provide greater lift capability, increased robustness for manned missions, and the capability to execute more demanding missions so must the SLS Integrated Navigation System evolved to support those missions. This paper describes the preliminary navigation systems design for the SLS Block 1B vehicle. The evolution of the navigation hard-ware and algorithms from an inertial-only navigation system for Block 1 ascent flight to a tightly coupled GPS-aided inertial navigation system for Block 1B is described. The Block 1 GN&C system has been designed to meet a LEO insertion target with a specified accuracy. The Block 1B vehicle navigation system is de-signed to support the Block 1 LEO target accuracy as well as trans-lunar or trans-planetary injection accuracy. Additionally, the Block 1B vehicle is designed to support human exploration and thus is designed to minimize the probability of Loss of Crew (LOC) through high-quality inertial instruments and robust algorithm design, including Fault Detection, Isolation, and Recovery (FDIR) logic.

  10. Fast global image smoothing based on weighted least squares.

    PubMed

    Min, Dongbo; Choi, Sunghwan; Lu, Jiangbo; Ham, Bumsub; Sohn, Kwanghoon; Do, Minh N

    2014-12-01

    This paper presents an efficient technique for performing a spatially inhomogeneous edge-preserving image smoothing, called fast global smoother. Focusing on sparse Laplacian matrices consisting of a data term and a prior term (typically defined using four or eight neighbors for 2D image), our approach efficiently solves such global objective functions. In particular, we approximate the solution of the memory-and computation-intensive large linear system, defined over a d-dimensional spatial domain, by solving a sequence of 1D subsystems. Our separable implementation enables applying a linear-time tridiagonal matrix algorithm to solve d three-point Laplacian matrices iteratively. Our approach combines the best of two paradigms, i.e., efficient edge-preserving filters and optimization-based smoothing. Our method has a comparable runtime to the fast edge-preserving filters, but its global optimization formulation overcomes many limitations of the local filtering approaches. Our method also achieves high-quality results as the state-of-the-art optimization-based techniques, but runs ∼10-30 times faster. Besides, considering the flexibility in defining an objective function, we further propose generalized fast algorithms that perform Lγ norm smoothing (0 < γ < 2) and support an aggregated (robust) data term for handling imprecise data constraints. We demonstrate the effectiveness and efficiency of our techniques in a range of image processing and computer graphics applications.

  11. Flash memory management system and method utilizing multiple block list windows

    NASA Technical Reports Server (NTRS)

    Chow, James (Inventor); Gender, Thomas K. (Inventor)

    2005-01-01

    The present invention provides a flash memory management system and method with increased performance. The flash memory management system provides the ability to efficiently manage and allocate flash memory use in a way that improves reliability and longevity, while maintaining good performance levels. The flash memory management system includes a free block mechanism, a disk maintenance mechanism, and a bad block detection mechanism. The free block mechanism provides efficient sorting of free blocks to facilitate selecting low use blocks for writing. The disk maintenance mechanism provides for the ability to efficiently clean flash memory blocks during processor idle times. The bad block detection mechanism provides the ability to better detect when a block of flash memory is likely to go bad. The flash status mechanism stores information in fast access memory that describes the content and status of the data in the flash disk. The new bank detection mechanism provides the ability to automatically detect when new banks of flash memory are added to the system. Together, these mechanisms provide a flash memory management system that can improve the operational efficiency of systems that utilize flash memory.

  12. 49 CFR 236.504 - Operation interconnected with automatic block-signal system.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... 49 Transportation 4 2010-10-01 2010-10-01 false Operation interconnected with automatic block... Operation interconnected with automatic block-signal system. (a) A continuous inductive automatic train stop or train control system shall operate in connection with an automatic block signal system and shall...

  13. Fluid Flow and Heat Transfer Analysis of a Nanofluid Containing Motile Gyrotactic Micro-Organisms Passing a Nonlinear Stretching Vertical Sheet in the Presence of a Non-Uniform Magnetic Field; Numerical Approach

    PubMed Central

    M. Mehryan, S. A.; Moradi Kashkooli, Farshad; Soltani, M.; Raahemifar, Kaamran

    2016-01-01

    The behavior of a water-based nanofluid containing motile gyrotactic micro-organisms passing an isothermal nonlinear stretching sheet in the presence of a non-uniform magnetic field is studied numerically. The governing partial differential equations including continuity, momentums, energy, concentration of the nanoparticles, and density of motile micro-organisms are converted into a system of the ordinary differential equations via a set of similarity transformations. New set of equations are discretized using the finite difference method and have been linearized by employing the Newton’s linearization technique. The tri-diagonal system of algebraic equations from discretization is solved using the well-known Thomas algorithm. The numerical results for profiles of velocity, temperature, nanoparticles concentration and density of motile micro-organisms as well as the local skin friction coefficient Cfx, the local Nusselt number Nux, the local Sherwood number Shx and the local density number of the motile microorganism Nnx are expressed graphically and described in detail. This investigation shows the density number of the motile micro-organisms enhances with rise of M, Gr/Re2, Pe and Ω but it decreases with augment of Rb and n. Also, Sherwood number augments with an increase of M and Gr/Re2, while decreases with n, Rb, Nb and Nr. To show the validity of the current results, a comparison between the present results and the existing literature has been carried out. PMID:27322536

  14. SLS Block 1-B and Exploration Upper Stage Navigation System Design

    NASA Technical Reports Server (NTRS)

    Oliver, T. Emerson; Park, Thomas B.; Smith, Austin; Anzalone, Evan; Bernard, Bill; Strickland, Dennis; Geohagan, Kevin; Green, Melissa; Leggett, Jarred

    2018-01-01

    The SLS Block 1B vehicle is planned to extend NASA's heavy lift capability beyond the initial SLS Block 1 vehicle. The most noticeable change for this vehicle from SLS Block 1 is the swapping of the upper stage from the Interim Cryogenic Propulsion stage (ICPS), a modified Delta IV upper stage, to the more capable Exploration Upper Stage (EUS). As the vehicle evolves to provide greater lift capability and execute more demanding missions so must the SLS Integrated Navigation System to support those missions. The SLS Block 1 vehicle carries two independent navigation systems. The responsibility of the two systems is delineated between ascent and upper stage flight. The Block 1 navigation system is responsible for the phase of flight between the launch pad and insertion into Low-Earth Orbit (LEO). The upper stage system assumes the mission from LEO to payload separation. For the Block 1B vehicle, the two functions are combined into a single system intended to navigate from ground to payload insertion. Both are responsible for self-disposal once payload delivery is achieved. The evolution of the navigation hardware and algorithms from an inertial-only navigation system for Block 1 ascent flight to a tightly coupled GPS-aided inertial navigation system for Block 1-B is described. The Block 1 GN&C system has been designed to meet a LEO insertion target with a specified accuracy. The Block 1-B vehicle navigation system is designed to support the Block 1 LEO target accuracy as well as trans-lunar or trans-planetary injection accuracy. This is measured in terms of payload impact and stage disposal requirements. Additionally, the Block 1-B vehicle is designed to support human exploration and thus is designed to minimize the probability of Loss of Crew (LOC) through high-quality inertial instruments and Fault Detection, Isolation, and Recovery (FDIR) logic. The preliminary Block 1B integrated navigation system design is presented along with the challenges associated with meeting the design objectives. This paper also addresses the design considerations associated with the use of Block 1 and Commercial Off-the-Shelf (COTS) avionics for Block 1-B/EUS as part of an integrated vehicle suite for orbital operations.

  15. Design and Synthesis of Novel Block Copolymers for Efficient Opto-Electronic Applications

    NASA Technical Reports Server (NTRS)

    Sun, Sam-Shajing; Fan, Zhen; Wang, Yiqing; Taft, Charles; Haliburton, James; Maaref, Shahin

    2002-01-01

    It has been predicted that nano-phase separated block copolymer systems containing electron rich donor blocks and electron deficient acceptor blocks may facilitate the charge carrier separation and migration in organic photovoltaic devices due to improved morphology in comparison to polymer blend system. This paper presents preliminary data describing the design and synthesis of a novel Donor-Bridge-Acceptor (D-B-A) block copolymer system for potential high efficient organic optoelectronic applications. Specifically, the donor block contains an electron donating alkyloxy derivatized polyphenylenevinylene (PPV), the acceptor block contains an electron withdrawing alkyl-sulfone derivatized polyphenylenevinylene (PPV), and the bridge block contains an electronically neutral non-conjugated aliphatic hydrocarbon chain. The key synthetic strategy includes the synthesis of each individual block first, then couple the blocks together. While the donor block stabilizes and facilitates the transport of the holes, the acceptor block stabilizes and facilitates the transport of the electrons, the bridge block is designed to hinder the probability of electron-hole recombination. Thus, improved charge separation and stability are expected with this system. In addition, charge migration toward electrodes may also be facilitated due to the potential nano-phase separated and highly ordered block copolymer ultra-structure.

  16. Cooperative storage of shared files in a parallel computing system with dynamic block size

    DOEpatents

    Bent, John M.; Faibish, Sorin; Grider, Gary

    2015-11-10

    Improved techniques are provided for parallel writing of data to a shared object in a parallel computing system. A method is provided for storing data generated by a plurality of parallel processes to a shared object in a parallel computing system. The method is performed by at least one of the processes and comprises: dynamically determining a block size for storing the data; exchanging a determined amount of the data with at least one additional process to achieve a block of the data having the dynamically determined block size; and writing the block of the data having the dynamically determined block size to a file system. The determined block size comprises, e.g., a total amount of the data to be stored divided by the number of parallel processes. The file system comprises, for example, a log structured virtual parallel file system, such as a Parallel Log-Structured File System (PLFS).

  17. 49 CFR 236.827 - System, block signal.

    Code of Federal Regulations, 2014 CFR

    2014-10-01

    ... 49 Transportation 4 2014-10-01 2014-10-01 false System, block signal. 236.827 Section 236.827..., MAINTENANCE, AND REPAIR OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Definitions § 236.827 System, block signal. A method of governing the movement of trains into or within one or more blocks by...

  18. 49 CFR 236.827 - System, block signal.

    Code of Federal Regulations, 2013 CFR

    2013-10-01

    ... 49 Transportation 4 2013-10-01 2013-10-01 false System, block signal. 236.827 Section 236.827..., MAINTENANCE, AND REPAIR OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Definitions § 236.827 System, block signal. A method of governing the movement of trains into or within one or more blocks by...

  19. Role of heat equation in lap joint for welding process

    NASA Astrophysics Data System (ADS)

    Kumar, P.; Rohit, Sooraj

    2017-07-01

    Welding is predominantly used in industrial purposes and growth in their industry, which gives exact welding and more efficient. The major advantage of using this welding technique at initial stage it takes very low heat to weld the portion and gives a good result of low distortion in modules. In this context, two dissimilar metals copper and nickel are chosen for analysis in tungsten inert gas welding (TIG) in which length is 300 mm and breadth is 100 mm thickness 15 mm welded at room temperature a welded portion zone is formed simulation analysis has done on CATIA® and ANSYS®and MATLAB® code is generated for calculating temperatures at each node to calculate temperature at each node a new technique is used tri-diagonal matrix algorithm is used (TDMA) Steady state one dimension heat is calculated results compared between simulation analysis and analytical analysis temperature at each node is calculated both the temperatures are equal with error.

  20. Active angular alignment of gauge blocks in double-ended interferometers.

    PubMed

    Buchta, Zdeněk; Reřucha, Simon; Hucl, Václav; Cížek, Martin; Sarbort, Martin; Lazar, Josef; Cíp, Ondřej

    2013-09-27

    This paper presents a method implemented in a system for automatic contactless calibration of gauge blocks designed at ISI ASCR. The system combines low-coherence interferometry and laser interferometry, where the first identifies the gauge block sides position and the second one measures the gauge block length itself. A crucial part of the system is the algorithm for gauge block alignment to the measuring beam which is able to compensate the gauge block lateral and longitudinal tilt up to 0.141 mrad. The algorithm is also important for the gauge block position monitoring during its length measurement.

  1. Active Angular Alignment of Gauge Blocks in Double-Ended Interferometers

    PubMed Central

    Buchta, Zdeněk; Řeřucha, Šimon; Hucl, Václav; Čížek, Martin; Šarbort, Martin; Lazar, Josef; Číp, Ondřej

    2013-01-01

    This paper presents a method implemented in a system for automatic contactless calibration of gauge blocks designed at ISI ASCR. The system combines low-coherence interferometry and laser interferometry, where the first identifies the gauge block sides position and the second one measures the gauge block length itself. A crucial part of the system is the algorithm for gauge block alignment to the measuring beam which is able to compensate the gauge block lateral and longitudinal tilt up to 0.141 mrad. The algorithm is also important for the gauge block position monitoring during its length measurement. PMID:24084107

  2. Criminal Justice Systems. Block I: Law Enforcement. Block II: The Courts. Block III: Corrections. Block IV: Community Relations. Block V: Proficiency Skills. Block VI: Criminalistics. Instructor Guide.

    ERIC Educational Resources Information Center

    Florida State Dept. of Education, Tallahassee. Div. of Vocational, Adult, and Community Education.

    This instructor guide together with a student guide comprise a set of curriculum materials on the criminal justice system. The instructor guide is a resource for planning and managing individualized, competency-based instruction in six major subject areas or blocks, which are further broken down into several units with some units having several…

  3. 49 CFR 236.401 - Automatic block signal system and interlocking standards applicable to traffic control systems.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... 49 Transportation 4 2010-10-01 2010-10-01 false Automatic block signal system and interlocking standards applicable to traffic control systems. 236.401 Section 236.401 Transportation Other Regulations... block signal system and interlocking standards applicable to traffic control systems. The standards...

  4. Energy resolution in semiconductor gamma radiation detectors using heterojunctions and methods of use and preparation thereof

    DOEpatents

    Nikolic, Rebecca J.; Conway, Adam M.; Nelson, Art J.; Payne, Stephen A.

    2012-09-04

    In one embodiment, a system comprises a semiconductor gamma detector material and a hole blocking layer adjacent the gamma detector material, the hole blocking layer resisting passage of holes therethrough. In another embodiment, a system comprises a semiconductor gamma detector material, and an electron blocking layer adjacent the gamma detector material, the electron blocking layer resisting passage of electrons therethrough, wherein the electron blocking layer comprises undoped HgCdTe. In another embodiment, a method comprises forming a hole blocking layer adjacent a semiconductor gamma detector material, the hole blocking layer resisting passage of holes therethrough. Additional systems and methods are also presented.

  5. Microbial Fouling and its Effect on Power Generation.

    DTIC Science & Technology

    1981-09-01

    The tubular fouling reactor system (TFR) consists of a test block heat exchanger and a support system which includes water supply treatment facilities...and measurement instrumentation. Figure 8 is a schematic diagram of the system. Test block heat exchanger : The test block heat exchanger consists of...two adjacent aluminum cylindrical blocks (12.5 cm dia.) clamped to the section of tubing being tested (Fig. 9). The block is heated by electrical re

  6. Using the World Health Organization health system building blocks through survey of healthcare professionals to determine the performance of public healthcare facilities.

    PubMed

    Manyazewal, Tsegahun

    2017-01-01

    Acknowledging the health system strengthening agenda, the World Health Organization (WHO) has formulated a health systems framework that describes health systems in terms of six building blocks. This study aimed to determine the current status of the six WHO health system building blocks in public healthcare facilities in Ethiopia. A quantitative, cross-sectional study was conducted in five public hospitals in central Ethiopia which were in a post-reform period. A self-administered, structured questionnaire which covered the WHO's six health system building blocks was used to collect data on healthcare professionals who consented. Data was analyzed using IBM SPSS version 20. The overall performance of the public hospitals was 60% when weighed against the WHO building blocks which, in this procedure, needed a minimum of 80% score. For each building block, performance scores were: information 53%, health workforce 55%, medical products and technologies 58%, leadership and governance 61%, healthcare financing 62%, and service delivery 69%. There existed a significant difference in performance among the hospitals ( p  < .001). The study proved that the WHO's health system building blocks are useful for assessing the process of strengthening health systems in Ethiopia. The six blocks allow identifying different improvement opportunities in each one of the hospitals. There was no contradiction between the indicators of the WHO building blocks and the health sustainable development goal (SDG) objectives. However, such SDG objectives should not be a substitute for strategies to strengthen health systems.

  7. ETARA - EVENT TIME AVAILABILITY, RELIABILITY ANALYSIS

    NASA Technical Reports Server (NTRS)

    Viterna, L. A.

    1994-01-01

    The ETARA system was written to evaluate the performance of the Space Station Freedom Electrical Power System, but the methodology and software can be modified to simulate any system that can be represented by a block diagram. ETARA is an interactive, menu-driven reliability, availability, and maintainability (RAM) simulation program. Given a Reliability Block Diagram representation of a system, the program simulates the behavior of the system over a specified period of time using Monte Carlo methods to generate block failure and repair times as a function of exponential and/or Weibull distributions. ETARA can calculate availability parameters such as equivalent availability, state availability (percentage of time at a particular output state capability), continuous state duration and number of state occurrences. The program can simulate initial spares allotment and spares replenishment for a resupply cycle. The number of block failures are tabulated both individually and by block type. ETARA also records total downtime, repair time, and time waiting for spares. Maintenance man-hours per year and system reliability, with or without repair, at or above a particular output capability can also be calculated. The key to using ETARA is the development of a reliability or availability block diagram. The block diagram is a logical graphical illustration depicting the block configuration necessary for a function to be successfully accomplished. Each block can represent a component, a subsystem, or a system. The function attributed to each block is considered for modeling purposes to be either available or unavailable; there are no degraded modes of block performance. A block does not have to represent physically connected hardware in the actual system to be connected in the block diagram. The block needs only to have a role in contributing to an available system function. ETARA can model the RAM characteristics of systems represented by multilayered, nesting block diagrams. There are no restrictions on the number of total blocks or on the number of blocks in a series, parallel, or M-of-N parallel subsystem. In addition, the same block can appear in more than one subsystem if such an arrangement is necessary for an accurate model. ETARA 3.3 is written in APL2 for IBM PC series computers or compatibles running MS-DOS and the APL2 interpreter. Hardware requirements for the APL2 system include 640K of RAM, 2Mb of extended memory, and an 80386 or 80486 processor with an 80x87 math co-processor. The standard distribution medium for this package is a set of two 5.25 inch 360K MS-DOS format diskettes. A sample executable is included. The executable contains licensed material from the APL2 for the IBM PC product which is program property of IBM; Copyright IBM Corporation 1988 - All rights reserved. It is distributed with IBM's permission. The contents of the diskettes are compressed using the PKWARE archiving tools. The utility to unarchive the files, PKUNZIP.EXE, is included. ETARA was developed in 1990 and last updated in 1991.

  8. Clinical Results and Problems of Percutaneous Transluminal Angioplasty and Stenting for Extracranial Internal Carotid Stenoses

    PubMed Central

    Tsuura, M.; Terada, T.; Masuo, O.; Matsumoto, H.; Itakura, T.; Hyoutani, G.; Nakamura, Y.; Moriwaki, H.; Hayashi, S.

    2001-01-01

    Summary 110 patients with extracranial ICA stenosis were treated by PTA or stenting. In 21 of 55 cases of only PTA and in 40 of 55 cases of stenting, we used our blocking balloon systems to prevent distal embolism. The morbidity and the mortality rates were 5.4% and 0%, respectively. There was only one embolic complication in cases of PTA or stenting where blocking balloon systems were used. In contrast, distal embolism occurred in 3 of 34 cases of PTA without blocking balloon systems (one symptomatic case) and in 4 of 15 cases of stenting without blocking balloon systems (3 symptomatic cases). Our blocking balloon catheter system is a useful device to reduce the risk of symptomatic distal embolism. PMID:20663375

  9. Powered Explicit Guidance Modifications and Enhancements for Space Launch System Block-1 and Block-1B Vehicles

    NASA Technical Reports Server (NTRS)

    Von der Porten, Paul; Ahmad, Naeem; Hawkins, Matt; Fill, Thomas

    2018-01-01

    NASA is currently building the Space Launch System (SLS) Block-1 launch vehicle for the Exploration Mission 1 (EM-1) test flight. NASA is also currently designing the next evolution of SLS, the Block-1B. The Block-1 and Block-1B vehicles will use the Powered Explicit Guidance (PEG) algorithm (of Space Shuttle heritage) for closed loop guidance. To accommodate vehicle capabilities and design for future evolutions of SLS, modifications were made to PEG for Block-1 to handle multi-phase burns, provide PEG updated propulsion information, and react to a core stage engine out. In addition, due to the relatively low thrust-to-weight ratio of the Exploration Upper Stage (EUS) and EUS carrying out Lunar Vicinity and Earth Escape missions, certain enhancements to the Block-1 PEG algorithm are needed to perform Block-1B missions to account for long burn arcs and target translunar and hyperbolic orbits. This paper describes the design and implementation of modifications to the Block-1 PEG algorithm as compared to Space Shuttle. Furthermore, this paper illustrates challenges posed by the Block-1B vehicle and the required PEG enhancements. These improvements make PEG capable for use on the SLS Block-1B vehicle as part of the Guidance, Navigation, and Control (GN&C) System.

  10. Clustering of GPS velocities in the Mojave Block, southeastern California

    USGS Publications Warehouse

    Savage, James C.; Simpson, Robert W.

    2013-01-01

    We find subdivisions within the Mojave Block using cluster analysis to identify groupings in the velocities observed at GPS stations there. The clusters are represented on a fault map by symbols located at the positions of the GPS stations, each symbol representing the cluster to which the velocity of that GPS station belongs. Fault systems that separate the clusters are readily identified on such a map. The most significant representation as judged by the gap test involves 4 clusters within the Mojave Block. The fault systems bounding the clusters from east to west are 1) the faults defining the eastern boundary of the Northeast Mojave Domain extended southward to connect to the Hector Mine rupture, 2) the Calico-Paradise fault system, 3) the Landers-Blackwater fault system, and 4) the Helendale-Lockhart fault system. This division of the Mojave Block is very similar to that proposed by Meade and Hager. However, no cluster boundary coincides with the Garlock Fault, the northern boundary of the Mojave Block. Rather, the clusters appear to continue without interruption from the Mojave Block north into the southern Walker Lane Belt, similar to the continuity across the Garlock Fault of the shear zone along the Blackwater-Little Lake fault system observed by Peltzer et al. Mapped traces of individual faults in the Mojave Block terminate within the block and do not continue across the Garlock Fault [Dokka and Travis, ].

  11. Mosquito larvicidal effectiveness of EcoBio-Block S: a novel integrated water-purifying concrete block formulation containing insect growth regulator pyriproxyfen.

    PubMed

    Kawada, Hitoshi; Saita, Susumu; Shimabukuro, Kozue; Hirano, Masachika; Koga, Masayuki; Iwashita, Toshiaki; Takagi, Masahiro

    2006-09-01

    EcoBio-Block S, a novel controlled release system (CRS) for the insect growth regulator pyriproxyfen, uses a water-purifying concrete block system (EcoBio-Block) composed of a porous volcanic rock and cement, and it incorporates the aerobic bacterial groups of Bacillus subtilis natto. EcoBio-Block S showed high inhibitory activity against mosquito emergence as well as a water-purifying effect. Chemical analysis and bioassay showed that EcoBio-Block S provides a high-performance CRS that controls the release of pyriproxyfen at low levels according to "zero order kinetics".

  12. Novel High Efficient Organic Photovoltaic Materials

    NASA Technical Reports Server (NTRS)

    Sun, Sam; Haliburton, James; Wang, Yi-Qing; Fan, Zhen; Taft, Charles; Maaref, Shahin; Bailey, Sheila (Technical Monitor)

    2003-01-01

    Solar energy is a renewable, nonpolluting, and most abundant energy source for human exploration of a remote site or outer space. In order to generate appreciable electrical power in space or on the earth, it is necessary to collect sunlight from large areas and with high efficiency due to the low density of sunlight. Future organic or polymer (plastic) solar cells appear very attractive due to their unique features such as light weight, flexible shape, tunability of energy band-gaps via versatile molecular or supramolecular design, synthesis, processing and device fabrication schemes, and much lower cost on large scale industrial production. It has been predicted that supramolecular and nano-phase separated block copolymer systems containing electron rich donor blocks and electron deficient acceptor blocks may facilitate the charge carrier separation and migration due to improved electronic ultrastructure and morphology in comparison to polymer composite system. This presentation will describe our recent progress in the design, synthesis and characterization of a novel block copolymer system containing donor and acceptor blocks covalently attached. Specifically, the donor block contains an electron donating alkyloxy derivatized polyphenylenevinylene (RO-PPV), the acceptor block contains an electron withdrawing alkyl-sulfone derivatized polyphenylenevinylene (SF-PPV). The key synthetic strategy includes the synthesis of each individual block first, then couple the blocks together. While the donor block has a strong PL emission at around 560 nm, and acceptor block has a strong PL emission at around 520 nm, the PL emissions of final block copolymers are severely quenched. This verifies the expected electron transfer and charge separation due to interfaces of donor and acceptor nano phase separated blocks. The system therefore has potential for variety light harvesting applications, including high efficient photovoltaic applications.

  13. Unsteady solute-transport simulation in streamflow using a finite-difference model

    USGS Publications Warehouse

    Land, Larry F.

    1978-01-01

    This report documents a rather simple, general purpose, one-dimensional, one-parameter, mass-transport model for field use. The model assumes a well-mixed conservative solute that may be coming from an unsteady source and is moving in unsteady streamflow. The quantity of solute being transported is in the units of concentration. Results are reported as such. An implicit finite-difference technique is used to solve the mass transport equation. It consists of creating a tridiagonal matrix and using the Thomas algorithm to solve the matrix for the unknown concentrations at the new time step. The computer program pesented is designed to compute the concentration of a water-quality constituent at any point and at any preselected time in a one-dimensional stream. The model is driven by the inflowing concentration of solute at the upstream boundary and is influenced by the solute entering the stream from tributaries and lateral ground-water inflow and from a source or sink. (Woodard-USGS)

  14. An Efficient Spectral Method for Ordinary Differential Equations with Rational Function Coefficients

    NASA Technical Reports Server (NTRS)

    Coutsias, Evangelos A.; Torres, David; Hagstrom, Thomas

    1994-01-01

    We present some relations that allow the efficient approximate inversion of linear differential operators with rational function coefficients. We employ expansions in terms of a large class of orthogonal polynomial families, including all the classical orthogonal polynomials. These families obey a simple three-term recurrence relation for differentiation, which implies that on an appropriately restricted domain the differentiation operator has a unique banded inverse. The inverse is an integration operator for the family, and it is simply the tridiagonal coefficient matrix for the recurrence. Since in these families convolution operators (i.e. matrix representations of multiplication by a function) are banded for polynomials, we are able to obtain a banded representation for linear differential operators with rational coefficients. This leads to a method of solution of initial or boundary value problems that, besides having an operation count that scales linearly with the order of truncation N, is computationally well conditioned. Among the applications considered is the use of rational maps for the resolution of sharp interior layers.

  15. Kirchhoff index of linear hexagonal chains

    NASA Astrophysics Data System (ADS)

    Yang, Yujun; Zhang, Heping

    The resistance distance rij between vertices i and j of a connected (molecular) graph G is computed as the effective resistance between nodes i and j in the corresponding network constructed from G by replacing each edge of G with a unit resistor. The Kirchhoff index Kf(G) is the sum of resistance distances between all pairs of vertices. In this work, according to the decomposition theorem of Laplacian polynomial, we obtain that the Laplacian spectrum of linear hexagonal chain Ln consists of the Laplacian spectrum of path P2n+1 and eigenvalues of a symmetric tridiagonal matrix of order 2n + 1. By applying the relationship between roots and coefficients of the characteristic polynomial of the above matrix, explicit closed-form formula for Kirchhoff index of Ln is derived in terms of Laplacian spectrum. To our surprise, the Krichhoff index of Ln is approximately to one half of its Wiener index. Finally, we show that holds for all graphs G in a class of graphs including Ln.0

  16. Three dimensional iterative beam propagation method for optical waveguide devices

    NASA Astrophysics Data System (ADS)

    Ma, Changbao; Van Keuren, Edward

    2006-10-01

    The finite difference beam propagation method (FD-BPM) is an effective model for simulating a wide range of optical waveguide structures. The classical FD-BPMs are based on the Crank-Nicholson scheme, and in tridiagonal form can be solved using the Thomas method. We present a different type of algorithm for 3-D structures. In this algorithm, the wave equation is formulated into a large sparse matrix equation which can be solved using iterative methods. The simulation window shifting scheme and threshold technique introduced in our earlier work are utilized to overcome the convergence problem of iterative methods for large sparse matrix equation and wide-angle simulations. This method enables us to develop higher-order 3-D wide-angle (WA-) BPMs based on Pade approximant operators and the multistep method, which are commonly used in WA-BPMs for 2-D structures. Simulations using the new methods will be compared to the analytical results to assure its effectiveness and applicability.

  17. Lossless compression algorithm for REBL direct-write e-beam lithography system

    NASA Astrophysics Data System (ADS)

    Cramer, George; Liu, Hsin-I.; Zakhor, Avideh

    2010-03-01

    Future lithography systems must produce microchips with smaller feature sizes, while maintaining throughputs comparable to those of today's optical lithography systems. This places stringent constraints on the effective data throughput of any maskless lithography system. In recent years, we have developed a datapath architecture for direct-write lithography systems, and have shown that compression plays a key role in reducing throughput requirements of such systems. Our approach integrates a low complexity hardware-based decoder with the writers, in order to decompress a compressed data layer in real time on the fly. In doing so, we have developed a spectrum of lossless compression algorithms for integrated circuit layout data to provide a tradeoff between compression efficiency and hardware complexity, the latest of which is Block Golomb Context Copy Coding (Block GC3). In this paper, we present a modified version of Block GC3 called Block RGC3, specifically tailored to the REBL direct-write E-beam lithography system. Two characteristic features of the REBL system are a rotary stage resulting in arbitrarily-rotated layout imagery, and E-beam corrections prior to writing the data, both of which present significant challenges to lossless compression algorithms. Together, these effects reduce the effectiveness of both the copy and predict compression methods within Block GC3. Similar to Block GC3, our newly proposed technique Block RGC3, divides the image into a grid of two-dimensional "blocks" of pixels, each of which copies from a specified location in a history buffer of recently-decoded pixels. However, in Block RGC3 the number of possible copy locations is significantly increased, so as to allow repetition to be discovered along any angle of orientation, rather than horizontal or vertical. Also, by copying smaller groups of pixels at a time, repetition in layout patterns is easier to find and take advantage of. As a side effect, this increases the total number of copy locations to transmit; this is combated with an extra region-growing step, which enforces spatial coherence among neighboring copy locations, thereby improving compression efficiency. We characterize the performance of Block RGC3 in terms of compression efficiency and encoding complexity on a number of rotated Metal 1, Poly, and Via layouts at various angles, and show that Block RGC3 provides higher compression efficiency than existing lossless compression algorithms, including JPEG-LS, ZIP, BZIP2, and Block GC3.

  18. Coastal protection using topological interlocking blocks

    NASA Astrophysics Data System (ADS)

    Pasternak, Elena; Dyskin, Arcady; Pattiaratchi, Charitha; Pelinovsky, Efim

    2013-04-01

    The coastal protection systems mainly rely on the self-weight of armour blocks to ensure its stability. We propose a system of interlocking armour blocks, which form plate-shape assemblies. The shape and the position of the blocks are chosen in such a way as to impose kinematic constraints that prevent the blocks from being removed from the assembly. The topological interlocking shapes include simple convex blocks such as platonic solids, the most practical being tetrahedra, cubes and octahedra. Another class of topological interlocking blocks is so-called osteomorphic blocks, which form plate-like assemblies tolerant to random block removal (almost 25% of blocks need to be removed for the assembly to loose integrity). Both classes require peripheral constraint, which can be provided either by the weight of the blocks or post-tensioned internal cables. The interlocking assemblies provide increased stability because lifting one block involves lifting (and bending) the whole assembly. We model the effect of interlocking by introducing an equivalent additional self-weight of the armour blocks. This additional self-weight is proportional to the critical pressure needed to cause bending of the interlocking assembly when it loses stability. Using beam approximation we find an equivalent stability coefficient for interlocking. It is found to be greater than the stability coefficient of a structure with similar blocks without interlocking. In the case when the peripheral constraint is provided by the weight of the blocks and for the slope angle of 45o, the effective stability coefficient for a structure of 100 blocks is 33% higher than the one for a similar structure without interlocking. Further increase in the stability coefficient can be reached by a specially constructed peripheral constraint system, for instance by using post-tension cables.

  19. Clustering of GPS velocities in the Mojave Block, southeastern California

    NASA Astrophysics Data System (ADS)

    Savage, J. C.; Simpson, R. W.

    2013-04-01

    find subdivisions within the Mojave Block using cluster analysis to identify groupings in the velocities observed at GPS stations there. The clusters are represented on a fault map by symbols located at the positions of the GPS stations, each symbol representing the cluster to which the velocity of that GPS station belongs. Fault systems that separate the clusters are readily identified on such a map. The most significant representation as judged by the gap test involves 4 clusters within the Mojave Block. The fault systems bounding the clusters from east to west are 1) the faults defining the eastern boundary of the Northeast Mojave Domain extended southward to connect to the Hector Mine rupture, 2) the Calico-Paradise fault system, 3) the Landers-Blackwater fault system, and 4) the Helendale-Lockhart fault system. This division of the Mojave Block is very similar to that proposed by Meade and Hager []. However, no cluster boundary coincides with the Garlock Fault, the northern boundary of the Mojave Block. Rather, the clusters appear to continue without interruption from the Mojave Block north into the southern Walker Lane Belt, similar to the continuity across the Garlock Fault of the shear zone along the Blackwater-Little Lake fault system observed by Peltzer et al. []. Mapped traces of individual faults in the Mojave Block terminate within the block and do not continue across the Garlock Fault [Dokka and Travis, ].

  20. Software Defined Radio with Parallelized Software Architecture

    NASA Technical Reports Server (NTRS)

    Heckler, Greg

    2013-01-01

    This software implements software-defined radio procession over multicore, multi-CPU systems in a way that maximizes the use of CPU resources in the system. The software treats each processing step in either a communications or navigation modulator or demodulator system as an independent, threaded block. Each threaded block is defined with a programmable number of input or output buffers; these buffers are implemented using POSIX pipes. In addition, each threaded block is assigned a unique thread upon block installation. A modulator or demodulator system is built by assembly of the threaded blocks into a flow graph, which assembles the processing blocks to accomplish the desired signal processing. This software architecture allows the software to scale effortlessly between single CPU/single-core computers or multi-CPU/multi-core computers without recompilation. NASA spaceflight and ground communications systems currently rely exclusively on ASICs or FPGAs. This software allows low- and medium-bandwidth (100 bps to approx.50 Mbps) software defined radios to be designed and implemented solely in C/C++ software, while lowering development costs and facilitating reuse and extensibility.

  1. Software Defined Radio with Parallelized Software Architecture

    NASA Technical Reports Server (NTRS)

    Heckler, Greg

    2013-01-01

    This software implements software-defined radio procession over multi-core, multi-CPU systems in a way that maximizes the use of CPU resources in the system. The software treats each processing step in either a communications or navigation modulator or demodulator system as an independent, threaded block. Each threaded block is defined with a programmable number of input or output buffers; these buffers are implemented using POSIX pipes. In addition, each threaded block is assigned a unique thread upon block installation. A modulator or demodulator system is built by assembly of the threaded blocks into a flow graph, which assembles the processing blocks to accomplish the desired signal processing. This software architecture allows the software to scale effortlessly between single CPU/single-core computers or multi-CPU/multi-core computers without recompilation. NASA spaceflight and ground communications systems currently rely exclusively on ASICs or FPGAs. This software allows low- and medium-bandwidth (100 bps to .50 Mbps) software defined radios to be designed and implemented solely in C/C++ software, while lowering development costs and facilitating reuse and extensibility.

  2. Phase noise suppression for coherent optical block transmission systems: a unified framework.

    PubMed

    Yang, Chuanchuan; Yang, Feng; Wang, Ziyu

    2011-08-29

    A unified framework for phase noise suppression is proposed in this paper, which could be applied in any coherent optical block transmission systems, including coherent optical orthogonal frequency-division multiplexing (CO-OFDM), coherent optical single-carrier frequency-domain equalization block transmission (CO-SCFDE), etc. Based on adaptive modeling of phase noise, unified observation equations for different coherent optical block transmission systems are constructed, which lead to unified phase noise estimation and suppression. Numerical results demonstrate that the proposal is powerful in mitigating laser phase noise.

  3. Assessment of apical transportation caused by nickel-titanium rotary systems with full rotation and reciprocating movements using extracted teeth and resin blocks with simulated root canals: A comparative study.

    PubMed

    Alrahabi, M; Zafar, M S

    2018-06-01

    : We compared apical transportation in the WaveOne and ProTaper Next systems, which are rotary nickel-titanium systems with reciprocating and continuous rotation movements, respectively, using manual measurements obtained from resin blocks with simulated root canals and double digital radiographs of extracted teeth. : We used 30 resin blocks with simulated root canals and 30 extracted teeth for this study. The same endodontist performed root canal shaping using the WaveOne or ProTaper Next system. We assessed apical transportation by measuring the amounts (in mm) of material lost 1 mm from the apical foramen in the resin blocks and by using double digital radiography for the extracted teeth. Significant differences between groups were assessed using t-tests. P < 0.05 was considered statistically significant. : The amount of apical transportation differed significantly between the two systems when resin blocks were used for assessment (P < 0.05), but there were no significant differences when extracted teeth were used (P < 0.05). In the current study, there was no significant difference in apical transportation between natural teeth prepared using WaveOne and those prepared using ProTaper Next. However, significant differences were observed between the two systems with resin blocks. These findings indicate that the use of resin blocks is not an accurate method for apical transportation evaluation.

  4. System and method for crystalline sheet growth using a cold block and gas jet

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

    Kellerman, Peter L.; Mackintosh, Brian; Carlson, Frederick M.

    A crystallizer for growing a crystalline sheet from a melt may include a cold block having a cold block surface that faces an exposed surface of the melt, the cold block configured to generate a cold block temperature at the cold block surface that is lower than a melt temperature of the melt at the exposed surface. The system may also include a nozzle disposed within the cold block and configured to deliver a gas jet to the exposed surface, wherein the gas jet and the cold block are interoperative to generate a process zone that removes heat from themore » exposed surface at a first heat removal rate that is greater than a second heat removal rate from the exposed surface in outer regions outside of the process zone.« less

  5. INS3D - NUMERICAL SOLUTION OF THE INCOMPRESSIBLE NAVIER-STOKES EQUATIONS IN THREE-DIMENSIONAL GENERALIZED CURVILINEAR COORDINATES (DEC RISC ULTRIX VERSION)

    NASA Technical Reports Server (NTRS)

    Biyabani, S. R.

    1994-01-01

    INS3D computes steady-state solutions to the incompressible Navier-Stokes equations. The INS3D approach utilizes pseudo-compressibility combined with an approximate factorization scheme. This computational fluid dynamics (CFD) code has been verified on problems such as flow through a channel, flow over a backwardfacing step and flow over a circular cylinder. Three dimensional cases include flow over an ogive cylinder, flow through a rectangular duct, wind tunnel inlet flow, cylinder-wall juncture flow and flow through multiple posts mounted between two plates. INS3D uses a pseudo-compressibility approach in which a time derivative of pressure is added to the continuity equation, which together with the momentum equations form a set of four equations with pressure and velocity as the dependent variables. The equations' coordinates are transformed for general three dimensional applications. The equations are advanced in time by the implicit, non-iterative, approximately-factored, finite-difference scheme of Beam and Warming. The numerical stability of the scheme depends on the use of higher-order smoothing terms to damp out higher-frequency oscillations caused by second-order central differencing. The artificial compressibility introduces pressure (sound) waves of finite speed (whereas the speed of sound would be infinite in an incompressible fluid). As the solution converges, these pressure waves die out, causing the derivation of pressure with respect to time to approach zero. Thus, continuity is satisfied for the incompressible fluid in the steady state. Computational efficiency is achieved using a diagonal algorithm. A block tri-diagonal option is also available. When a steady-state solution is reached, the modified continuity equation will satisfy the divergence-free velocity field condition. INS3D is capable of handling several different types of boundaries encountered in numerical simulations, including solid-surface, inflow and outflow, and far-field boundaries. Three machine versions of INS3D are available. INS3D for the CRAY is written in CRAY FORTRAN for execution on a CRAY X-MP under COS, INS3D for the IBM is written in FORTRAN 77 for execution on an IBM 3090 under the VM or MVS operating system, and INS3D for DEC RISC-based systems is written in RISC FORTRAN for execution on a DEC workstation running RISC ULTRIX 3.1 or later. The CRAY version has a central memory requirement of 730279 words. The central memory requirement for the IBM is 150Mb. The memory requirement for the DEC RISC ULTRIX version is 3Mb of main memory. INS3D was developed in 1987. The port to the IBM was done in 1990. The port to the DECstation 3100 was done in 1991. CRAY is a registered trademark of Cray Research Inc. IBM is a registered trademark of International Business Machines. DEC, DECstation, and ULTRIX are trademarks of the Digital Equipment Corporation.

  6. INS3D - NUMERICAL SOLUTION OF THE INCOMPRESSIBLE NAVIER-STOKES EQUATIONS IN THREE-DIMENSIONAL GENERALIZED CURVILINEAR COORDINATES (CRAY VERSION)

    NASA Technical Reports Server (NTRS)

    Rogers, S. E.

    1994-01-01

    INS3D computes steady-state solutions to the incompressible Navier-Stokes equations. The INS3D approach utilizes pseudo-compressibility combined with an approximate factorization scheme. This computational fluid dynamics (CFD) code has been verified on problems such as flow through a channel, flow over a backwardfacing step and flow over a circular cylinder. Three dimensional cases include flow over an ogive cylinder, flow through a rectangular duct, wind tunnel inlet flow, cylinder-wall juncture flow and flow through multiple posts mounted between two plates. INS3D uses a pseudo-compressibility approach in which a time derivative of pressure is added to the continuity equation, which together with the momentum equations form a set of four equations with pressure and velocity as the dependent variables. The equations' coordinates are transformed for general three dimensional applications. The equations are advanced in time by the implicit, non-iterative, approximately-factored, finite-difference scheme of Beam and Warming. The numerical stability of the scheme depends on the use of higher-order smoothing terms to damp out higher-frequency oscillations caused by second-order central differencing. The artificial compressibility introduces pressure (sound) waves of finite speed (whereas the speed of sound would be infinite in an incompressible fluid). As the solution converges, these pressure waves die out, causing the derivation of pressure with respect to time to approach zero. Thus, continuity is satisfied for the incompressible fluid in the steady state. Computational efficiency is achieved using a diagonal algorithm. A block tri-diagonal option is also available. When a steady-state solution is reached, the modified continuity equation will satisfy the divergence-free velocity field condition. INS3D is capable of handling several different types of boundaries encountered in numerical simulations, including solid-surface, inflow and outflow, and far-field boundaries. Three machine versions of INS3D are available. INS3D for the CRAY is written in CRAY FORTRAN for execution on a CRAY X-MP under COS, INS3D for the IBM is written in FORTRAN 77 for execution on an IBM 3090 under the VM or MVS operating system, and INS3D for DEC RISC-based systems is written in RISC FORTRAN for execution on a DEC workstation running RISC ULTRIX 3.1 or later. The CRAY version has a central memory requirement of 730279 words. The central memory requirement for the IBM is 150Mb. The memory requirement for the DEC RISC ULTRIX version is 3Mb of main memory. INS3D was developed in 1987. The port to the IBM was done in 1990. The port to the DECstation 3100 was done in 1991. CRAY is a registered trademark of Cray Research Inc. IBM is a registered trademark of International Business Machines. DEC, DECstation, and ULTRIX are trademarks of the Digital Equipment Corporation.

  7. Thermal transport in dimerized harmonic lattices: Exact solution, crossover behavior, and extended reservoirs

    NASA Astrophysics Data System (ADS)

    Chien, Chih-Chun; Kouachi, Said; Velizhanin, Kirill A.; Dubi, Yonatan; Zwolak, Michael

    2017-01-01

    We present a method for calculating analytically the thermal conductance of a classical harmonic lattice with both alternating masses and nearest-neighbor couplings when placed between individual Langevin reservoirs at different temperatures. The method utilizes recent advances in analytic diagonalization techniques for certain classes of tridiagonal matrices. It recovers the results from a previous method that was applicable for alternating on-site parameters only, and extends the applicability to realistic systems in which masses and couplings alternate simultaneously. With this analytic result in hand, we show that the thermal conductance is highly sensitive to the modulation of the couplings. This is due to the existence of topologically induced edge modes at the lattice-reservoir interface and is also a reflection of the symmetries of the lattice. We make a connection to a recent work that demonstrates thermal transport is analogous to chemical reaction rates in solution given by Kramers' theory [Velizhanin et al., Sci. Rep. 5, 17506 (2015)], 10.1038/srep17506. In particular, we show that the turnover behavior in the presence of edge modes prevents calculations based on single-site reservoirs from coming close to the natural—or intrinsic—conductance of the lattice. Obtaining the correct value of the intrinsic conductance through simulation of even a small lattice where ballistic effects are important requires quite large extended reservoir regions. Our results thus offer a route for both the design and proper simulation of thermal conductance of nanoscale devices.

  8. Linear algebra of the permutation invariant Crow-Kimura model of prebiotic evolution.

    PubMed

    Bratus, Alexander S; Novozhilov, Artem S; Semenov, Yuri S

    2014-10-01

    A particular case of the famous quasispecies model - the Crow-Kimura model with a permutation invariant fitness landscape - is investigated. Using the fact that the mutation matrix in the case of a permutation invariant fitness landscape has a special tridiagonal form, a change of the basis is suggested such that in the new coordinates a number of analytical results can be obtained. In particular, using the eigenvectors of the mutation matrix as the new basis, we show that the quasispecies distribution approaches a binomial one and give simple estimates for the speed of convergence. Another consequence of the suggested approach is a parametric solution to the system of equations determining the quasispecies. Using this parametric solution we show that our approach leads to exact asymptotic results in some cases, which are not covered by the existing methods. In particular, we are able to present not only the limit behavior of the leading eigenvalue (mean population fitness), but also the exact formulas for the limit quasispecies eigenvector for special cases. For instance, this eigenvector has a geometric distribution in the case of the classical single peaked fitness landscape. On the biological side, we propose a mathematical definition, based on the closeness of the quasispecies to the binomial distribution, which can be used as an operational definition of the notorious error threshold. Using this definition, we suggest two approximate formulas to estimate the critical mutation rate after which the quasispecies delocalization occurs. Copyright © 2014 Elsevier Inc. All rights reserved.

  9. Measuring health systems strength and its impact: experiences from the African Health Initiative.

    PubMed

    Sherr, Kenneth; Fernandes, Quinhas; Kanté, Almamy M; Bawah, Ayaga; Condo, Jeanine; Mutale, Wilbroad

    2017-12-21

    Health systems are essential platforms for accessible, quality health services, and population health improvements. Global health initiatives have dramatically increased health resources; however, funding to strengthen health systems has not increased commensurately, partially due to concerns about health system complexity and evidence gaps demonstrating health outcome improvements. In 2009, the African Health Initiative of the Doris Duke Charitable Foundation began supporting Population Health Implementation and Training Partnership projects in five sub-Saharan African countries (Ghana, Mozambique, Rwanda, Tanzania, and Zambia) to catalyze significant advances in strengthening health systems. This manuscript reflects on the experience of establishing an evaluation framework to measure health systems strength, and associate measures with health outcomes, as part of this Initiative. Using the World Health Organization's health systems building block framework, the Partnerships present novel approaches to measure health systems building blocks and summarize data across and within building blocks to facilitate analytic procedures. Three Partnerships developed summary measures spanning the building blocks using principal component analysis (Ghana and Tanzania) or the balanced scorecard (Zambia). Other Partnerships developed summary measures to simplify multiple indicators within individual building blocks, including health information systems (Mozambique), and service delivery (Rwanda). At the end of the project intervention period, one to two key informants from each Partnership's leadership team were asked to list - in rank order - the importance of the six building blocks in relation to their intervention. Though there were differences across Partnerships, service delivery and information systems were reported to be the most common focus of interventions, followed by health workforce and leadership and governance. Medical products, vaccines and technologies, and health financing, were the building blocks reported to be of lower focus. The African Health Initiative experience furthers the science of evaluation for health systems strengthening, highlighting areas for further methodological development - including the development of valid, feasible measures sensitive to interventions in multiple contexts (particularly in leadership and governance) and describing interactions across building blocks; in developing summary statistics to facilitate testing intervention effects on health systems and associations with health status; and designing appropriate analytic models for complex, multi-level open health systems.

  10. Systems thinking in practice: the current status of the six WHO building blocks for health system strengthening in three BHOMA intervention districts of Zambia: a baseline qualitative study.

    PubMed

    Mutale, Wilbroad; Bond, Virginia; Mwanamwenge, Margaret Tembo; Mlewa, Susan; Balabanova, Dina; Spicer, Neil; Ayles, Helen

    2013-08-01

    The primary bottleneck to achieving the MDGs in low-income countries is health systems that are too fragile to deliver the volume and quality of services to those in need. Strong and effective health systems are increasingly considered a prerequisite to reducing the disease burden and to achieving the health MDGs. Zambia is one of the countries that are lagging behind in achieving millennium development targets. Several barriers have been identified as hindering the progress towards health related millennium development goals. Designing an intervention that addresses these barriers was crucial and so the Better Health Outcomes through Mentorship (BHOMA) project was designed to address the challenges in the Zambia's MOH using a system wide approach. We applied systems thinking approach to describe the baseline status of the Six WHO building blocks for health system strengthening. A qualitative study was conducted looking at the status of the Six WHO building blocks for health systems strengthening in three BHOMA districts. We conducted Focus group discussions with community members and In-depth Interviews with key informants. Data was analyzed using Nvivo version 9. The study showed that building block specific weaknesses had cross cutting effect in other health system building blocks which is an essential element of systems thinking. Challenges noted in service delivery were linked to human resources, medical supplies, information flow, governance and finance building blocks either directly or indirectly. Several barriers were identified as hindering access to health services by the local communities. These included supply side barriers: Shortage of qualified health workers, bad staff attitude, poor relationships between community and health staff, long waiting time, confidentiality and the gender of health workers. Demand side barriers: Long distance to health facility, cost of transport and cultural practices. Participating communities seemed to lack the capacity to hold health workers accountable for the drugs and services. The study has shown that building block specific weaknesses had cross cutting effect in other health system building blocks. These linkages emphasised the need to use system wide approaches in assessing the performance of health system strengthening interventions.

  11. 14 CFR 25.1325 - Static pressure systems.

    Code of Federal Regulations, 2010 CFR

    2010-01-01

    ... installation of the static pressure system must be such that— (1) Positive drainage of moisture is provided..., the other is blocked off; and (2) Both sources cannot be blocked off simultaneously. (h) For... other static pressure source being open or blocked. [Doc. No. 5066, 29 FR 18291, Dec. 24, 1964, as...

  12. KNBD: A Remote Kernel Block Server for Linux

    NASA Technical Reports Server (NTRS)

    Becker, Jeff

    1999-01-01

    I am developing a prototype of a Linux remote disk block server whose purpose is to serve as a lower level component of a parallel file system. Parallel file systems are an important component of high performance supercomputers and clusters. Although supercomputer vendors such as SGI and IBM have their own custom solutions, there has been a void and hence a demand for such a system on Beowulf-type PC Clusters. Recently, the Parallel Virtual File System (PVFS) project at Clemson University has begun to address this need (1). Although their system provides much of the functionality of (and indeed was inspired by) the equivalent file systems in the commercial supercomputer market, their system is all in user-space. Migrating their 10 services to the kernel could provide a performance boost, by obviating the need for expensive system calls. Thanks to Pavel Machek, the Linux kernel has provided the network block device (2) with kernels 2.1.101 and later. You can configure this block device to redirect reads and writes to a remote machine's disk. This can be used as a building block for constructing a striped file system across several nodes.

  13. Application of Sensor Technology for the Efficient Positioningand Assembling of Ship Blocks

    NASA Astrophysics Data System (ADS)

    Lee, Sangdon; SeongbaeEun; Jung, Jai Jin; Song, Hacheol

    2010-09-01

    This paper proposes the application of sensor technology to assemble ship blocks efficiently. A sensor-based monitoring system is designed and implemented to improve shipbuilding productivity by reducing the labor cost for the adjustment of adequate positioning between ship blocks during pre-erection or erection stage. For the real-time remote monitoring of relative distances between two ship blocks, sensor nodes are applied to measure the distances between corresponding target points on the blocks. Highly precise positioning data can be transferred to a monitoring server via wireless network, and analyzed to support the decision making which needs to determine the next construction process; further adjustment or seam welding between the ship blocks. The developed system is expected to put to practical use, and increase the productivity during ship blocks assembly.

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

    He Yongzhou; Zhang Jidong; Zhou Qiaogen

    Two in-vacuum undulators IVU25s and one elliptically polarized undulator EPU100 have been developed for SSRF. Two IVU25s with the same hybrid design contain about 640 Sm{sub 2}Co{sub 17} magnet blocks and the dimension of blocks is 65 Wx25 Hx9 D. The EPU100 of the APPLE-II type contains about 690 NdFeB magnet blocks with the dimension of 35 Wx35 Hx25 D. This paper describes the magnetic measurements of these magnet blocks with the Helmholtz coil measurement system for IVU25 magnet blocks and the Hall probe measurement system for EPU100 magnet blocks. The measured maximum magnetic moment deviation and the maximum anglemore » deviation are less than {+-}1.0% and 1.1 deg. respectively both for Sm{sub 2}Co{sub 17} blocks and NdFeB blocks and satisfy the specifications of undulators.« less

  15. Performance analysis of a generalized upset detection procedure

    NASA Technical Reports Server (NTRS)

    Blough, Douglas M.; Masson, Gerald M.

    1987-01-01

    A general procedure for upset detection in complex systems, called the data block capture and analysis upset monitoring process is described and analyzed. The process consists of repeatedly recording a fixed amount of data from a set of predetermined observation lines of the system being monitored (i.e., capturing a block of data), and then analyzing the captured block in an attempt to determine whether the system is functioning correctly. The algorithm which analyzes the data blocks can be characterized in terms of the amount of time it requires to examine a given length data block to ascertain the existence of features/conditions that have been predetermined to characterize the upset-free behavior of the system. The performance of linear, quadratic, and logarithmic data analysis algorithms is rigorously characterized in terms of three performance measures: (1) the probability of correctly detecting an upset; (2) the expected number of false alarms; and (3) the expected latency in detecting upsets.

  16. Universal block diagram based modeling and simulation schemes for fractional-order control systems.

    PubMed

    Bai, Lu; Xue, Dingyü

    2017-05-08

    Universal block diagram based schemes are proposed for modeling and simulating the fractional-order control systems in this paper. A fractional operator block in Simulink is designed to evaluate the fractional-order derivative and integral. Based on the block, the fractional-order control systems with zero initial conditions can be modeled conveniently. For modeling the system with nonzero initial conditions, the auxiliary signal is constructed in the compensation scheme. Since the compensation scheme is very complicated, therefore the integrator chain scheme is further proposed to simplify the modeling procedures. The accuracy and effectiveness of the schemes are assessed in the examples, the computation results testify the block diagram scheme is efficient for all Caputo fractional-order ordinary differential equations (FODEs) of any complexity, including the implicit Caputo FODEs. Copyright © 2017 ISA. Published by Elsevier Ltd. All rights reserved.

  17. Validation of 31 of the most commonly used immunohistochemical antibodies in cytology prepared using the Cellient(®) automated cell block system.

    PubMed

    Montgomery, Eric; Gao, Chen; de Luca, Julie; Bower, Jessie; Attwood, Kristropher; Ylagan, Lourdes

    2014-12-01

    The Cellient(®) cell block system has become available as an alternative, partially automated method to create cell blocks in cytology. We sought to show a validation method for immunohistochemical (IHC) staining on the Cellient cell block system (CCB) in comparison with the formalin fixed paraffin embedded traditional cell block (TCB). Immunohistochemical staining was performed using 31 antibodies on 38 patient samples for a total of 326 slides. Split samples were processed using both methods by following the Cellient(®) manufacturer's recommendations for the Cellient cell block (CCB) and the Histogel method for preparing the traditional cell block (TCB). Interpretation was performed by three pathologists and two cytotechnologists. Immunohistochemical stains were scored as: 0/1+ (negative) and 2/3+ (positive). Inter-rater agreement for each antibody was evaluated for CCB and TCB, as well as the intra-rater agreement between TCB and CCB between observers. Interobserver staining concordance for the TCB was obtained with statistical significance (P < 0.05) in 24 of 31 antibodies. Interobserver staining concordance for the CCB was obtained with statistical significance in 27 of 31 antibodies. Intra-observer staining concordance between TCB and CCB was obtained with statistical significance in 24 of 31 antibodies tested. In conclusions, immunohistochemical stains on cytologic specimens processed by the Cellient system are reliable and concordant with stains performed on the same split samples processed via a formalin fixed-paraffin embedded (FFPE) block. The Cellient system is a welcome adjunct to cytology work-flow by producing cell block material of sufficient quality to allow the use of routine IHC. © 2014 Wiley Periodicals, Inc.

  18. Joint Service Chemical and Biological Defense Program. FY00-02 Overview

    DTIC Science & Technology

    2001-09-01

    Development. Contractors: 12 BI DS Biological Integrated Detection System (BIDS) Lead Service Bio Road HERCULES, CA Bruker Analytical Systems BILLERICA, MA...Dynamics Land Systems Division DETROIT, MI Henschel Wehrtechnik GERMANY Bruker -Franzen GERMANY Block II – TBD Milestones Block I MS III (2QFY94) Block...ground. Accessories include hoses and hose reels, two trigger-controlled spray wands , and two electrical-powered scrub brush assemblies. The M22

  19. A review on past and present development on the interlocking loadbearing hollow block (ILHB) system

    NASA Astrophysics Data System (ADS)

    Bosro, M. Z. M.; Samad, A. A. A.; Mohamad, N.; Goh, W. I.; Tambichik, M. A.; Iman, M. A.

    2018-04-01

    Massive migration and increasing population in Malaysia has contributed to the increasing demand of quality and affordable housing. Over the past 50 years, the Malaysian housing industry has seen the growth of using conventional construction system such as reinforced concrete frame structures and bricks. The conventional system, as agreed by many researchers, causes delays and other disadvantages in some of the construction projects. Thus, the utilization of interlocking loadbearing hollow block (ILHB) system is needed to address these issues. This system has been identified as an alternative and sustainable building system for the construction industry in Malaysia which the PUTRA block system is the latest example of the ILHB developed. The system offers various advantages in terms of speed and cost in construction, strength, environmentally friendly and aesthetic qualities. Despite these advantages, this system has not been practically applied and develop in Malaysia. Therefore, this paper aims to review the past and present development of the interlocking loadbearing hollow block (ILHB) system that available locally and globally.

  20. Fuel System: Automotive Mechanics Instructional Program. Block 4.

    ERIC Educational Resources Information Center

    O'Brien, Ralph D.

    The fourth of six instructional blocks in automotive mechanics, the lessons and supportive information in the document provide a guide for teachers in planning an instructional program in automotive fuel systems at the secondary and post secondary level. The material, as organized, is a suggested sequence of instruction within each block. Each…

  1. Cooling System: Automotive Mechanics Instructional Program. Block 6.

    ERIC Educational Resources Information Center

    O'Brien, Ralph D.

    The last of six instructional blocks in automotive mechanics, the lessons and supportive information in the document provide a guide for teachers in planning an instructional program in the automotive cooling system at the secondary and post secondary level. The material, as organized, is a suggested sequence of instruction within each block. Each…

  2. Blocking Student Performance in High School?

    ERIC Educational Resources Information Center

    Hughes, Woodrow, W., Jr.

    2004-01-01

    Block schedules have been used in several different high schools in various areas of the United States. Reasons for their use vary from better preparing students for college work to fewer disruptions of the school day. Several studies have examined the impact of changing from a semester system to a block system on the academic performance in…

  3. Influence of additional heat exchanger block on directional solidification system for growing multi-crystalline silicon ingot - A simulation investigation

    NASA Astrophysics Data System (ADS)

    Nagarajan, S. G.; Srinivasan, M.; Aravinth, K.; Ramasamy, P.

    2018-04-01

    Transient simulation has been carried out for analyzing the heat transfer properties of Directional Solidification (DS) furnace. The simulation results revealed that the additional heat exchanger block under the bottom insulation on the DS furnace has enhanced the control of solidification of the silicon melt. Controlled Heat extraction rate during the solidification of silicon melt is requisite for growing good quality ingots which has been achieved by the additional heat exchanger block. As an additional heat exchanger block, the water circulating plate has been placed under the bottom insulation. The heat flux analysis of DS system and the temperature distribution studies of grown ingot confirm that the established additional heat exchanger block on the DS system gives additional benefit to the mc-Si ingot.

  4. Control analysis of lipid biosynthesis in tissue cultures from oil crops shows that flux control is shared between fatty acid synthesis and lipid assembly.

    PubMed Central

    Ramli, Umi S; Baker, Darren S; Quant, Patti A; Harwood, John L

    2002-01-01

    Top-Down (Metabolic) Control Analysis (TDCA) was used to examine, quantitatively, lipid biosynthesis in tissue cultures from two commercially important oil crops, olive (Olea europaea L.) and oil palm (Elaeis guineensis Jacq.). A conceptually simplified system was defined comprising two blocks of reactions: fatty acid synthesis (Block A) and lipid assembly (Block B), which produced and consumed, respectively, a common and unique system intermediate, cytosolic acyl-CoA. We manipulated the steady-state levels of the system intermediate by adding exogenous oleic acid and, using two independent assays, measured the effect of the addition on the system fluxes (J(A) and J(B)). These were the rate of incorporation of radioactivity: (i) through Block A from [1-(14)C]acetate into fatty acids and (ii) via Block B from [U-(14)C]glycerol into complex lipids respectively. The data showed that fatty acid formation (Block A) exerted higher control than lipid assembly (Block B) in both tissues with the following group flux control coefficients (C):(i) Oil palm: *C(J(TL))(BlkA)=0.64+/-0.05 and *C(J(TL))(BlkB)=0.36+/-0.05(ii) Olive: *C(J(TL))(BlkA)=0.57+/-0.10 and *C(J(TL))(BlkB)=0.43+/-0.10where *C indicates the group flux control coefficient over the lipid biosynthesis flux (J(TL)) and the subscripts BlkA and BlkB refer to defined blocks of the system, Block A and Block B. Nevertheless, because both parts of the lipid biosynthetic pathway exert significant flux control, we suggest strongly that manipulation of single enzyme steps will not affect product yield appreciably. The present study represents the first use of TDCA to examine the overall lipid biosynthetic pathway in any tissue, and its findings are of immediate academic and economic relevance to the yield and nutritional quality of oil crops. PMID:12023882

  5. A Block Iterative Finite Element Model for Nonlinear Leaky Aquifer Systems

    NASA Astrophysics Data System (ADS)

    Gambolati, Giuseppe; Teatini, Pietro

    1996-01-01

    A new quasi three-dimensional finite element model of groundwater flow is developed for highly compressible multiaquifer systems where aquitard permeability and elastic storage are dependent on hydraulic drawdown. The model is solved by a block iterative strategy, which is naturally suggested by the geological structure of the porous medium and can be shown to be mathematically equivalent to a block Gauss-Seidel procedure. As such it can be generalized into a block overrelaxation procedure and greatly accelerated by the use of the optimum overrelaxation factor. Results for both linear and nonlinear multiaquifer systems emphasize the excellent computational performance of the model and indicate that convergence in leaky systems can be improved up to as much as one order of magnitude.

  6. Signal-Conditioning Block of a 1 × 200 CMOS Detector Array for a Terahertz Real-Time Imaging System

    PubMed Central

    Yang, Jong-Ryul; Lee, Woo-Jae; Han, Seong-Tae

    2016-01-01

    A signal conditioning block of a 1 × 200 Complementary Metal-Oxide-Semiconductor (CMOS) detector array is proposed to be employed with a real-time 0.2 THz imaging system for inspecting large areas. The plasmonic CMOS detector array whose pixel size including an integrated antenna is comparable to the wavelength of the THz wave for the imaging system, inevitably carries wide pixel-to-pixel variation. To make the variant outputs from the array uniform, the proposed signal conditioning block calibrates the responsivity of each pixel by controlling the gate bias of each detector and the voltage gain of the lock-in amplifiers in the block. The gate bias of each detector is modulated to 1 MHz to improve the signal-to-noise ratio of the imaging system via the electrical modulation by the conditioning block. In addition, direct current (DC) offsets of the detectors in the array are cancelled by initializing the output voltage level from the block. Real-time imaging using the proposed signal conditioning block is demonstrated by obtaining images at the rate of 19.2 frame-per-sec of an object moving on the conveyor belt with a scan width of 20 cm and a scan speed of 25 cm/s. PMID:26950128

  7. Signal-Conditioning Block of a 1 × 200 CMOS Detector Array for a Terahertz Real-Time Imaging System.

    PubMed

    Yang, Jong-Ryul; Lee, Woo-Jae; Han, Seong-Tae

    2016-03-02

    A signal conditioning block of a 1 × 200 Complementary Metal-Oxide-Semiconductor (CMOS) detector array is proposed to be employed with a real-time 0.2 THz imaging system for inspecting large areas. The plasmonic CMOS detector array whose pixel size including an integrated antenna is comparable to the wavelength of the THz wave for the imaging system, inevitably carries wide pixel-to-pixel variation. To make the variant outputs from the array uniform, the proposed signal conditioning block calibrates the responsivity of each pixel by controlling the gate bias of each detector and the voltage gain of the lock-in amplifiers in the block. The gate bias of each detector is modulated to 1 MHz to improve the signal-to-noise ratio of the imaging system via the electrical modulation by the conditioning block. In addition, direct current (DC) offsets of the detectors in the array are cancelled by initializing the output voltage level from the block. Real-time imaging using the proposed signal conditioning block is demonstrated by obtaining images at the rate of 19.2 frame-per-sec of an object moving on the conveyor belt with a scan width of 20 cm and a scan speed of 25 cm/s.

  8. Porous block nanofiber composite filters

    DOEpatents

    Ginley, David S.; Curtis, Calvin J.; Miedaner, Alexander; Weiss, Alan J.; Paddock, Arnold

    2016-08-09

    Porous block nano-fiber composite (110), a filtration system (10) and methods of using the same are disclosed. An exemplary porous block nano-fiber composite (110) includes a porous block (100) having one or more pores (200). The porous block nano-fiber composite (110) also includes a plurality of inorganic nano-fibers (211) formed within at least one of the pores (200).

  9. 49 CFR 236.504 - Operation interconnected with automatic block-signal system.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... GOVERNING THE INSTALLATION, INSPECTION, MAINTENANCE, AND REPAIR OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Automatic Train Stop, Train Control and Cab Signal Systems Standards § 236.504... or train control system shall operate in connection with an automatic block signal system and shall...

  10. Systems thinking in practice: the current status of the six WHO building blocks for health system strengthening in three BHOMA intervention districts of Zambia: a baseline qualitative study

    PubMed Central

    2013-01-01

    Background The primary bottleneck to achieving the MDGs in low-income countries is health systems that are too fragile to deliver the volume and quality of services to those in need. Strong and effective health systems are increasingly considered a prerequisite to reducing the disease burden and to achieving the health MDGs. Zambia is one of the countries that are lagging behind in achieving millennium development targets. Several barriers have been identified as hindering the progress towards health related millennium development goals. Designing an intervention that addresses these barriers was crucial and so the Better Health Outcomes through Mentorship (BHOMA) project was designed to address the challenges in the Zambia’s MOH using a system wide approach. We applied systems thinking approach to describe the baseline status of the Six WHO building blocks for health system strengthening. Methods A qualitative study was conducted looking at the status of the Six WHO building blocks for health systems strengthening in three BHOMA districts. We conducted Focus group discussions with community members and In-depth Interviews with key informants. Data was analyzed using Nvivo version 9. Results The study showed that building block specific weaknesses had cross cutting effect in other health system building blocks which is an essential element of systems thinking. Challenges noted in service delivery were linked to human resources, medical supplies, information flow, governance and finance building blocks either directly or indirectly. Several barriers were identified as hindering access to health services by the local communities. These included supply side barriers: Shortage of qualified health workers, bad staff attitude, poor relationships between community and health staff, long waiting time, confidentiality and the gender of health workers. Demand side barriers: Long distance to health facility, cost of transport and cultural practices. Participating communities seemed to lack the capacity to hold health workers accountable for the drugs and services. Conclusion The study has shown that building block specific weaknesses had cross cutting effect in other health system building blocks. These linkages emphasised the need to use system wide approaches in assessing the performance of health system strengthening interventions. PMID:23902601

  11. 49 CFR 236.401 - Automatic block signal system and interlocking standards applicable to traffic control systems.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Traffic Control Systems Standards § 236.401 Automatic... 49 Transportation 4 2011-10-01 2011-10-01 false Automatic block signal system and interlocking standards applicable to traffic control systems. 236.401 Section 236.401 Transportation Other Regulations...

  12. FunBlocks. A modular framework for AmI system development.

    PubMed

    Baquero, Rafael; Rodríguez, José; Mendoza, Sonia; Decouchant, Dominique; Papis, Alfredo Piero Mateos

    2012-01-01

    The last decade has seen explosive growth in the technologies required to implement Ambient Intelligence (AmI) systems. Technologies such as facial and speech recognition, home networks, household cleaning robots, to name a few, have become commonplace. However, due to the multidisciplinary nature of AmI systems and the distinct requirements of different user groups, integrating these developments into full-scale systems is not an easy task. In this paper we propose FunBlocks, a minimalist modular framework for the development of AmI systems based on the function module abstraction used in the IEC 61499 standard for distributed control systems. FunBlocks provides a framework for the development of AmI systems through the integration of modules loosely joined by means of an event-driven middleware and a module and sensor/actuator catalog. The modular design of the FunBlocks framework allows the development of AmI systems which can be customized to a wide variety of usage scenarios.

  13. FunBlocks. A Modular Framework for AmI System Development

    PubMed Central

    Baquero, Rafael; Rodríguez, José; Mendoza, Sonia; Decouchant, Dominique; Papis, Alfredo Piero Mateos

    2012-01-01

    The last decade has seen explosive growth in the technologies required to implement Ambient Intelligence (AmI) systems. Technologies such as facial and speech recognition, home networks, household cleaning robots, to name a few, have become commonplace. However, due to the multidisciplinary nature of AmI systems and the distinct requirements of different user groups, integrating these developments into full-scale systems is not an easy task. In this paper we propose FunBlocks, a minimalist modular framework for the development of AmI systems based on the function module abstraction used in the IEC 61499 standard for distributed control systems. FunBlocks provides a framework for the development of AmI systems through the integration of modules loosely joined by means of an event-driven middleware and a module and sensor/actuator catalog. The modular design of the FunBlocks framework allows the development of AmI systems which can be customized to a wide variety of usage scenarios. PMID:23112599

  14. Development of the Functional Flow Block Diagram for the J-2X Rocket Engine System

    NASA Technical Reports Server (NTRS)

    White, Thomas; Stoller, Sandra L.; Greene, WIlliam D.; Christenson, Rick L.; Bowen, Barry C.

    2007-01-01

    The J-2X program calls for the upgrade of the Apollo-era Rocketdyne J-2 engine to higher power levels, using new materials and manufacturing techniques, and with more restrictive safety and reliability requirements than prior human-rated engines in NASA history. Such requirements demand a comprehensive systems engineering effort to ensure success. Pratt & Whitney Rocketdyne system engineers performed a functional analysis of the engine to establish the functional architecture. J-2X functions were captured in six major operational blocks. Each block was divided into sub-blocks or states. In each sub-block, functions necessary to perform each state were determined. A functional engine schematic consistent with the fidelity of the system model was defined for this analysis. The blocks, sub-blocks, and functions were sequentially numbered to differentiate the states in which the function were performed and to indicate the sequence of events. The Engine System was functionally partitioned, to provide separate and unique functional operators. Establishing unique functional operators as work output of the System Architecture process is novel in Liquid Propulsion Engine design. Each functional operator was described such that its unique functionality was identified. The decomposed functions were then allocated to the functional operators both of which were the inputs to the subsystem or component performance specifications. PWR also used a novel approach to identify and map the engine functional requirements to customer-specified functions. The final result was a comprehensive Functional Flow Block Diagram (FFBD) for the J-2X Engine System, decomposed to the component level and mapped to all functional requirements. This FFBD greatly facilitates component specification development, providing a well-defined trade space for functional trades at the subsystem and component level. It also provides a framework for function-based failure modes and effects analysis (FMEA), and a rigorous baseline for the functional architecture.

  15. Characterizing permanent magnet blocks with Helmholtz coils

    NASA Astrophysics Data System (ADS)

    Carnegie, D. W.; Timpf, J.

    1992-08-01

    Most of the insertion devices to be installed at the Advanced Photon Source will utilize permanent magnets in their magnetic structures. The quality of the spectral output is sensitive to the errors in the field of the device which are related to variations in the magnetic properties of the individual blocks. The Advanced Photon Source will have a measurement facility to map the field in the completed insertion devices and equipment to test and modify the magnetic strength of the individual magnet blocks. One component of the facility, the Helmholtz coil permanent magnet block measurement system, has been assembled and tested. This system measures the total magnetic moment vector of a block with a precision better than 0.01% and a directional resolution of about 0.05°. The design and performance of the system will be presented.

  16. Phase response curves for models of earthquake fault dynamics

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

    Franović, Igor, E-mail: franovic@ipb.ac.rs; Kostić, Srdjan; Perc, Matjaž

    We systematically study effects of external perturbations on models describing earthquake fault dynamics. The latter are based on the framework of the Burridge-Knopoff spring-block system, including the cases of a simple mono-block fault, as well as the paradigmatic complex faults made up of two identical or distinct blocks. The blocks exhibit relaxation oscillations, which are representative for the stick-slip behavior typical for earthquake dynamics. Our analysis is carried out by determining the phase response curves of first and second order. For a mono-block fault, we consider the impact of a single and two successive pulse perturbations, further demonstrating how themore » profile of phase response curves depends on the fault parameters. For a homogeneous two-block fault, our focus is on the scenario where each of the blocks is influenced by a single pulse, whereas for heterogeneous faults, we analyze how the response of the system depends on whether the stimulus is applied to the block having a shorter or a longer oscillation period.« less

  17. Comparison of the Cellient(™) automated cell block system and agar cell block method.

    PubMed

    Kruger, A M; Stevens, M W; Kerley, K J; Carter, C D

    2014-12-01

    To compare the Cellient(TM) automated cell block system with the agar cell block method in terms of quantity and quality of diagnostic material and morphological, histochemical and immunocytochemical features. Cell blocks were prepared from 100 effusion samples using the agar method and Cellient system, and routinely sectioned and stained for haematoxylin and eosin and periodic acid-Schiff with diastase (PASD). A preliminary immunocytochemical study was performed on selected cases (27/100 cases). Sections were evaluated using a three-point grading system to compare a set of morphological parameters. Statistical analysis was performed using Fisher's exact test. Parameters assessing cellularity, presence of single cells and definition of nuclear membrane, nucleoli, chromatin and cytoplasm showed a statistically significant improvement on Cellient cell blocks compared with agar cell blocks (P < 0.05). No significant difference was seen for definition of cell groups, PASD staining or the intensity or clarity of immunocytochemical staining. A discrepant immunocytochemistry (ICC) result was seen in 21% (13/63) of immunostains. The Cellient technique is comparable with the agar method, with statistically significant results achieved for important morphological features. It demonstrates potential as an alternative cell block preparation method which is relevant for the rapid processing of fine needle aspiration samples, malignant effusions and low-cellularity specimens, where optimal cell morphology and architecture are essential. Further investigation is required to optimize immunocytochemical staining using the Cellient method. © 2014 John Wiley & Sons Ltd.

  18. A Library of Rad Hard Mixed-Voltage/Mixed-Signal Building Blocks for Integration of Avionics Systems for Deep Space

    NASA Technical Reports Server (NTRS)

    Mojarradi, M. M.; Blaes, B.; Kolawa, E. A.; Blalock, B. J.; Li, H. W.; Buck, K.; Houge, D.

    2001-01-01

    To build the sensor intensive system-on-a-chip for the next generation spacecrafts for deep space, Center for Integration of Space Microsystems at JPL (CISM) takes advantage of the lower power rating and inherent radiation resistance of Silicon on Insulator technology (SOI). We are developing a suite of mixed-voltage and mixed-signal building blocks in Honeywell's SOI process that can enable the rapid integration of the next generation avionics systems with lower power rating, higher reliability, longer life, and enhanced radiation tolerance for spacecrafts such as the Europa Orbiter and Europa Lander. The mixed-voltage building blocks are predominantly for design of adaptive power management systems. Their design centers around an LDMOS structure that is being developed by Honeywell, Boeing Corp, and the University of Idaho. The mixed-signal building blocks are designed to meet the low power, extreme radiation requirement of deep space applications. These building blocks are predominantly used to interface analog sensors to the digital CPU of the next generation avionics system on a chip. Additional information is contained in the original extended abstract.

  19. Non-invasive health status detection system using Gabor filters based on facial block texture features.

    PubMed

    Shu, Ting; Zhang, Bob

    2015-04-01

    Blood tests allow doctors to check for certain diseases and conditions. However, using a syringe to extract the blood can be deemed invasive, slightly painful, and its analysis time consuming. In this paper, we propose a new non-invasive system to detect the health status (Healthy or Diseased) of an individual based on facial block texture features extracted using the Gabor filter. Our system first uses a non-invasive capture device to collect facial images. Next, four facial blocks are located on these images to represent them. Afterwards, each facial block is convolved with a Gabor filter bank to calculate its texture value. Classification is finally performed using K-Nearest Neighbor and Support Vector Machines via a Library for Support Vector Machines (with four kernel functions). The system was tested on a dataset consisting of 100 Healthy and 100 Diseased (with 13 forms of illnesses) samples. Experimental results show that the proposed system can detect the health status with an accuracy of 93 %, a sensitivity of 94 %, a specificity of 92 %, using a combination of the Gabor filters and facial blocks.

  20. 49 CFR 236.804 - Signal, block.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... 49 Transportation 4 2011-10-01 2011-10-01 false Signal, block. 236.804 Section 236.804..., MAINTENANCE, AND REPAIR OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Definitions § 236.804 Signal, block. A roadway signal operated either automatically or manually at the entrance to a block. ...

  1. 49 CFR 236.804 - Signal, block.

    Code of Federal Regulations, 2014 CFR

    2014-10-01

    ... 49 Transportation 4 2014-10-01 2014-10-01 false Signal, block. 236.804 Section 236.804..., MAINTENANCE, AND REPAIR OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Definitions § 236.804 Signal, block. A roadway signal operated either automatically or manually at the entrance to a block. ...

  2. 49 CFR 236.804 - Signal, block.

    Code of Federal Regulations, 2013 CFR

    2013-10-01

    ... 49 Transportation 4 2013-10-01 2013-10-01 false Signal, block. 236.804 Section 236.804..., MAINTENANCE, AND REPAIR OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Definitions § 236.804 Signal, block. A roadway signal operated either automatically or manually at the entrance to a block. ...

  3. 49 CFR 236.804 - Signal, block.

    Code of Federal Regulations, 2012 CFR

    2012-10-01

    ... 49 Transportation 4 2012-10-01 2012-10-01 false Signal, block. 236.804 Section 236.804..., MAINTENANCE, AND REPAIR OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Definitions § 236.804 Signal, block. A roadway signal operated either automatically or manually at the entrance to a block. ...

  4. Polymer-based platform for microfluidic systems

    DOEpatents

    Benett, William [Livermore, CA; Krulevitch, Peter [Pleasanton, CA; Maghribi, Mariam [Livermore, CA; Hamilton, Julie [Tracy, CA; Rose, Klint [Boston, MA; Wang, Amy W [Oakland, CA

    2009-10-13

    A method of forming a polymer-based microfluidic system platform using network building blocks selected from a set of interconnectable network building blocks, such as wire, pins, blocks, and interconnects. The selected building blocks are interconnectably assembled and fixedly positioned in precise positions in a mold cavity of a mold frame to construct a three-dimensional model construction of a microfluidic flow path network preferably having meso-scale dimensions. A hardenable liquid, such as poly (dimethylsiloxane) is then introduced into the mold cavity and hardened to form a platform structure as well as to mold the microfluidic flow path network having channels, reservoirs and ports. Pre-fabricated elbows, T's and other joints are used to interconnect various building block elements together. After hardening the liquid the building blocks are removed from the platform structure to make available the channels, cavities and ports within the platform structure. Microdevices may be embedded within the cast polymer-based platform, or bonded to the platform structure subsequent to molding, to create an integrated microfluidic system. In this manner, the new microfluidic platform is versatile and capable of quickly generating prototype systems, and could easily be adapted to a manufacturing setting.

  5. A Paradigmatic Example of an Artificially Intelligent Instructional System.

    ERIC Educational Resources Information Center

    Brown, John Seely; Burton, Richard R.

    This paper describes the philosophy of intelligent instructional systems and presents an example of one such system in the domain of manipulative mathematics--BLOCKS. The notion of BLOCKS as a paradigmatic system is explicated from both the system development and educational viewpoints. From a developmental point of view, the modular design of…

  6. Long-Term Follow-Up of Children with Heart Block Born from Mothers with Systemic Lupus Erythematosus: A Retrospective Study from the Database Pediatric and Congenital Heart Disease in University Hospitals Leuven.

    PubMed

    DE Caluwé, Eva; VAN DE Bruaene, Alexander; Willems, Rik; Troost, Els; Gewillig, Marc; Rega, Filip; Budts, Werner

    2016-09-01

    Children from mothers with systemic lupus erythematosus are frequently born with congenital heart block. This study aimed at evaluating long-term outcome because long-term data are scarce. In the database of pediatric and congenital heart disease (University Hospitals Leuven), 19 children from systemic lupus erythematosus mothers and who were born with or developed atrioventricular block were identified. All records were reviewed for disease course and outcome. Median follow-up time was 7 years (interquartile ranges [IQR] 4.5-13 years). One child had no heart block at birth and developed only a first-degree block during follow-up. One had a second-degree heart block and developed a complete heart block. Seventeen patients (89%) were born with a complete heart block. Seventeen patients (89%) needed a definitive pacemaker. In all, epicardial leads were used at first implantation. Eighty-two percent received their pacemaker in the first year of life. The first battery had a median lifetime of 5 years (IQR 3.5-5 years), the second 6 years (IQR 4.5-6.3 years), and the third 5 years (IQR 5-6 years). Note that 47% of patients needed a lead replacement due to lead problems. Only one pericardial tamponade after pacemaker implantation. No device or lead infections occurred. The left ventricular systolic function at latest follow-up was normal for all. No patients died. In children with heart block born from systemic lupus erythematosus mothers, an early need for pacemaker implantation was documented. The overall battery life was acceptable, but there was a high need for lead replacement. Complication rate was low. Late outcome was good. © 2016 Wiley Periodicals, Inc.

  7. 49 CFR 236.708 - Block.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... 49 Transportation 4 2010-10-01 2010-10-01 false Block. 236.708 Section 236.708 Transportation... OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Definitions § 236.708 Block. A length of track of defined limits, the use of which by trains is governed by block signals, cab signals, or both. ...

  8. 49 CFR 236.502 - Automatic brake application, initiation by restrictive block conditions stopping distance in...

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... restrictive block conditions stopping distance in advance. 236.502 Section 236.502 Transportation Other... Cab Signal Systems Standards § 236.502 Automatic brake application, initiation by restrictive block... initiate an automatic brake application at least stopping distance from the entrance to a block, wherein...

  9. Novel High Efficient Organic Photovoltaic Materials

    NASA Technical Reports Server (NTRS)

    Sun, Sam; Haliburton, James; Fan, Zben; Taft, Charles; Wang, Yi-Qing; Maaref, Shahin; Mackey, Willie R. (Technical Monitor)

    2001-01-01

    In man's mission to the outer space or a remote site, the most abundant, renewable, nonpolluting, and unlimited external energy source is light. Photovoltaic (PV) materials can convert light into electrical power. In order to generate appreciable electrical power in space or on the Earth, it is necessary to collect sunlight from large areas due to the low density of sunlight, and this would be very costly using current commercially available inorganic solar cells. Future organic or polymer based solar cells seemed very attractive due to several reasons. These include lightweight, flexible shape, ultra-fast optoelectronic response time (this also makes organic PV materials attractive for developing ultra-fast photo detectors), tunability of energy band-gaps via molecular design, versatile materials synthesis and device fabrication schemes, and much lower cost on large-scale industrial production. It has been predicted that nano-phase separated block copolymer systems containing electron rich donor blocks and electron deficient acceptor blocks will facilitate the charge separation and migration due to improved electronic ultrastructure and morphology in comparison to current polymer composite photovoltaic system. This presentation will describe our recent progress in the design, synthesis and characterization of a novel donor-bridge-acceptor block copolymer system for potential high-efficient organic optoelectronic applications. Specifically, the donor block contains an electron donating alkyloxy derivatized polyphenylenevinylene, the acceptor block contains an electron withdrawing alkyl-sulfone derivatized polyphenylenevinylene, and the bridge block contains an electronically neutral non-conjugated aliphatic hydrocarbon chain. The key synthetic strategy includes the synthesis of each individual block first, then couple the blocks together. While the donor block stabilizes the holes, the acceptor block stabilizes the electrons. The bridge block is designed to hinder the electron-hole recombination. Thus, improved charge separation is expected. In addition, charge migration will also be facilitated due to the expected nano-phase separated and highly ordered block copolymer ultrastructural. The combination of all these factors will result in significant overall enhancement of photovoltaic power conversion efficiency.

  10. Multi-scaling in the critical phenomena in the quenched disordered systems

    NASA Astrophysics Data System (ADS)

    Wu, X. T.

    2018-04-01

    The Landau-Ginzburg-Wilson Hamiltonian with random temperature for the phase transition in disordered systems from the Griffiths phase to ordered phase is reexamined. From the saddle point solutions, especially the excited state solutions, it is shown that the system self-organizes into blocks coupled with their neighbors like superspins, which are emergent variables. Taking the fluctuation around these saddle point solutions into account, we get an effective Hamiltonian, including the emergent superspins of the blocks, the fluctuation around the saddle point solutions, and their couplings. Applying Stratonovich-Hubbard transformation to the part of superspins, we get a Landau-Ginzburg-Wilson Hamiltonian for the blocks. From the saddle point equations for the blocks, we can get the second generation blocks, of which sizes are much larger than the first generation blocks. Repeating this procedure again and again, we get many generations of blocks to describe the asymptotic behavior. If a field is applied, the effective field on the superspins is multiplied greatly and proportional to the block size. For a very small field, the effective field on the higher generation superspins can be so strong to cause the superspins polarized radically. This can explain the extra large critical isotherm exponent discovered in the experiments. The phase space of reduced temperature vs. field is divided into many layers , in which different generation blocks dominate the critical behavior. The sizes of the different generation emergent blocks are new relevant length scales. This can explain a lot of puzzles in the experiments and the Monte Carlo simulation.

  11. Flight control systems properties and problems. Volume 2: Block diagram compendium

    NASA Technical Reports Server (NTRS)

    Johnston, D. E.

    1975-01-01

    A compendium of stability augmentation system and autopilot block diagrams is presented. Descriptive materials for 48 different types of aircraft systems are provided. A broad representation of the many mechanical approaches which have been used for aircraft control is developed.

  12. Safety performance evaluation of the non-blocked Midwest Guardrail System (MGS).

    DOT National Transportation Integrated Search

    2013-01-01

    The roadway width required to install a guardrail system with a 12-in. (305-mm) blockout is not always available. In : response, proprietary non-blocked W-beam guardrail systems were developed and successfully crash tested. However, the : use of prop...

  13. Catheter ablation as a treatment of atrioventricular block.

    PubMed

    Tuohy, Stephen; Saliba, Walid; Pai, Manjunath; Tchou, Patrick

    2018-01-01

    Symptomatic second-degree atrioventricular (AV) block is typically treated by implantation of a pacemaker. An otherwise healthy AV conduction system can nevertheless develop AV block due to interference from junctional extrasystoles. When present with a high burden, these can produce debilitating symptoms from AV block despite an underlying normal AV node and His-Purkinje system properties. The purpose of this study was to describe a catheter ablation approach for alleviating symptomatic AV block due to a ventricular nodal pathway interfering with AV conduction. Common clinical monitoring techniques such as Holter and event recorders were used. Standard electrophysiological study techniques using multipolar recording and ablation catheters were utilized during procedures. A 55-year-old woman presented with highly symptomatic, high-burden second-degree AV block due to concealed and manifest junctional premature beats. Electrophysiological characteristics indicated interference of AV conduction due to a concealed ventricular nodal pathway as the cause of the AV block. The patient's AV nodal and His-Purkinje system conduction characteristics were otherwise normal. Radiofrequency catheter ablation of the pathway was successful in restoring normal AV conduction and eliminating her clinical symptoms. Pathways inserting into the AV junction can interfere with AV conduction. When present at a high burden, this type of AV block can be highly symptomatic. Catheter ablation techniques can be used to alleviate this type of AV block and restore normal AV conduction. Copyright © 2017 Heart Rhythm Society. Published by Elsevier Inc. All rights reserved.

  14. A system architecture for a planetary rover

    NASA Technical Reports Server (NTRS)

    Smith, D. B.; Matijevic, J. R.

    1989-01-01

    Each planetary mission requires a complex space vehicle which integrates several functions to accomplish the mission and science objectives. A Mars Rover is one of these vehicles, and extends the normal spacecraft functionality with two additional functions: surface mobility and sample acquisition. All functions are assembled into a hierarchical and structured format to understand the complexities of interactions between functions during different mission times. It can graphically show data flow between functions, and most importantly, the necessary control flow to avoid unambiguous results. Diagrams are presented organizing the functions into a structured, block format where each block represents a major function at the system level. As such, there are six blocks representing telecomm, power, thermal, science, mobility and sampling under a supervisory block called Data Management/Executive. Each block is a simple collection of state machines arranged into a hierarchical order very close to the NASREM model for Telerobotics. Each layer within a block represents a level of control for a set of state machines that do the three primary interface functions: command, telemetry, and fault protection. This latter function is expanded to include automatic reactions to the environment as well as internal faults. Lastly, diagrams are presented that trace the system operations involved in moving from site to site after site selection. The diagrams clearly illustrate both the data and control flows. They also illustrate inter-block data transfers and a hierarchical approach to fault protection. This systems architecture can be used to determine functional requirements, interface specifications and be used as a mechanism for grouping subsystems (i.e., collecting groups of machines, or blocks consistent with good and testable implementations).

  15. A computerized system based on an alternative pulse echo immersion technique for acoustic characterization of non-porous solid tissue mimicking materials

    NASA Astrophysics Data System (ADS)

    Nazihah Mat Daud, Anis; Jaafar, Rosly; Kadri Ayop, Shahrul; Supar Rohani, Md

    2018-04-01

    This paper discusses the development of a computerized acoustic characterization system of non-porous solid tissue mimicking materials. This system employs an alternative pulse echo immersion technique and consists of a pulser/receiver generator, a transducer used as both a transmitter and a receiver, a digital oscilloscope, and a personal computer with a custom-developed program installed. The program was developed on the LabVIEW 2012 platform and comprises two main components, a user interface and a block diagram. The user interface consists of three panels: a signal acquisition and selection panel, a display panel, and a calculation panel. The block diagram comprises four blocks: a signal acquisition block, a peak signal analysis block, an acoustic properties calculation and display block, and an additional block. Interestingly, the system can be operated in both online and offline modes. For the online mode, the measurements are performed by connecting the system with a Rigol DS2000 Series digital oscilloscope. In contrast, the measurements are carried out by processing the saved data on the computer for the offline mode. The accuracy and consistency of the developed system was validated by a KB-Aerotech Alpha Series transducer with 5 MHz center frequency and a Rigol DS2202 two-channel 200 MHz 2 GSa s-1 digital oscilloscope, based on the measurement of the acoustic properties of three poly(methyl methacrylate) samples immersed in a medium at a temperature of (24.0  ±  0.1) °C. The findings indicated that the accuracy and consistency of the developed system was exceptionally high, within a 1.04% margin of error compared to the reference values. As such, this computerized system can be efficiently used for the acoustic characterization of non-porous solid tissues, given its spontaneous display of results, user-friendly interface, and convenient hardware connection.

  16. The modeling of an automotive electronic control system and the application of optimizing methods

    NASA Astrophysics Data System (ADS)

    Zhang, Yansheng; Yang, Zhigang; Zhang, Xiang

    2005-12-01

    Now, MATLAB/SIMULINK software is popularly used by automotive electronic control designers to develop automotive electronic control systems and perform numerical simulations. But they will face problems, such as value initialization in the "integrator" block, conversion among different data types, selection of "if" block and "switch" block, realization of the "if-clause" under multiple options and the auto-switching control, etc. Taking as an example the designing of an Automated Mechanical Transmission (AMT) system, this paper discusses some techniques and methods for modeling the automotive electronic control system with MATLAB/SIMULINK, offering designers some successful examples.

  17. Program structure-based blocking

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

    Bertolli, Carlo; Eichenberger, Alexandre E.; O'Brien, John K.

    2017-09-26

    Embodiments relate to program structure-based blocking. An aspect includes receiving source code corresponding to a computer program by a compiler of a computer system. Another aspect includes determining a prefetching section in the source code by a marking module of the compiler. Yet another aspect includes performing, by a blocking module of the compiler, blocking of instructions located in the prefetching section into instruction blocks, such that the instruction blocks of the prefetching section only contain instructions that are located in the prefetching section.

  18. Non-Markovianity in the collision model with environmental block

    NASA Astrophysics Data System (ADS)

    Jin, Jiasen; Yu, Chang-shui

    2018-05-01

    We present an extended collision model to simulate the dynamics of an open quantum system. In our model, the unit to represent the environment is, instead of a single particle, a block which consists of a number of environment particles. The introduced blocks enable us to study the effects of different strategies of system–environment interactions and states of the blocks on the non-Markovianities. We demonstrate our idea in the Gaussian channels of an all-optical system and derive a necessary and sufficient condition of non-Markovianity for such channels. Moreover, we show the equivalence of our criterion to the non-Markovian quantum jump in the simulation of the pure damping process of a single-mode field. We also show that the non-Markovianity of the channel working in the strategy that the system collides with environmental particles in each block in a certain order will be affected by the size of the block and the embedded entanglement and the effects of heating and squeezing the vacuum environmental state will quantitatively enhance the non-Markovianity.

  19. 49 CFR 236.512 - Cab signal indication when locomotive enters block where restrictive conditions obtain.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... 49 Transportation 4 2010-10-01 2010-10-01 false Cab signal indication when locomotive enters block... Systems Standards § 236.512 Cab signal indication when locomotive enters block where restrictive... within a block, wherein any condition described in § 236.205 obtains, the cab signals shall indicate...

  20. Paroxysmal atrioventricular block: Electrophysiological mechanism of phase 4 conduction block in the His-Purkinje system: A comparison with phase 3 block.

    PubMed

    Shenasa, Mohammad; Josephson, Mark E; Wit, Andrew L

    2017-11-01

    Paroxysmal atrioventricular (A-V) block is relatively rare, and due to its transient nature, it is often under recognized. It is often triggered by atrial, junctional, or ventricular premature beats, and occurs in the presence of a diseased His-Purkinje system (HPS). Here, we present a 45-year-old white male who was admitted for observation due to recurrent syncope and near-syncope, who had paroxysmal A-V block. The likely cellular electrophysiological mechanisms(s) of paroxysmal A-V block and its differential diagnosis and management are discussed. Continuous electrocardiographic monitoring was done while the patient was in the cardiac unit. Multiple episodes of paroxysmal A-V block were documented in this case. All episodes were initiated and terminated with atrial/junctional premature beats. The patient underwent permanent pacemaker implantation and has remained asymptomatic since then. Paroxysmal A-V block is rare and often causes syncope or near-syncope. Permanent pacemaker implantation is indicated according to the current guidelines. Paroxysmal A-V block occurs in the setting of diseased HPS and is bradycardia-dependent. The detailed electrophysiological mechanisms, which involve phase 4 diastolic depolarization, and differential diagnosis are discussed. © 2017 Wiley Periodicals, Inc.

  1. Synthesis and Characterization of a Novel -D-B-A-B- Block Copolymer System for Light Harvesting Applications

    NASA Technical Reports Server (NTRS)

    Sun, Sam-Shajing; Fan, Zhen; Wang, Yiqing; Taft, Charles; Haliburton, James; Maaref, Shahin

    2002-01-01

    Supra-molecular or nano-structured electro-active polymers are potentially useful for developing variety inexpensive and flexible shaped opto-electronic devices. In the case of organic photovoltaic materials or devices, for instance, photo induced electrons and holes need to be separated and transported in organic acceptor (A) and donor (D) phases respectively. In this paper, preliminary results of synthesis and characterizations of a coupled block copolymers containing a conjugated donor block RO-PPV and a conjugated acceptor block SF-PPV and some of their electronic/optical properties are presented. While the donor block film has a strong PL emission at around 570 nm, and acceptor block film has a strong PL emission at around 590 nm, the PL emissions of final -B-D-B-A- block copolymer films were quenched over 99%. Experimental results demonstrated an effective photo induced electron transfer and charge separation due to the interfaces of donor and acceptor blocks. The system is very promising for variety light harvesting applications, including "plastic" photovoltaic devices.

  2. Radiation tolerant combinational logic cell

    NASA Technical Reports Server (NTRS)

    Maki, Gary R. (Inventor); Whitaker, Sterling (Inventor); Gambles, Jody W. (Inventor)

    2009-01-01

    A system has a reduced sensitivity to Single Event Upset and/or Single Event Transient(s) compared to traditional logic devices. In a particular embodiment, the system includes an input, a logic block, a bias stage, a state machine, and an output. The logic block is coupled to the input. The logic block is for implementing a logic function, receiving a data set via the input, and generating a result f by applying the data set to the logic function. The bias stage is coupled to the logic block. The bias stage is for receiving the result from the logic block and presenting it to the state machine. The state machine is coupled to the bias stage. The state machine is for receiving, via the bias stage, the result generated by the logic block. The state machine is configured to retain a state value for the system. The state value is typically based on the result generated by the logic block. The output is coupled to the state machine. The output is for providing the value stored by the state machine. Some embodiments of the invention produce dual rail outputs Q and Q'. The logic block typically contains combinational logic and is similar, in size and transistor configuration, to a conventional CMOS combinational logic design. However, only a very small portion of the circuits of these embodiments, is sensitive to Single Event Upset and/or Single Event Transients.

  3. PERTS: A Prototyping Environment for Real-Time Systems

    NASA Technical Reports Server (NTRS)

    Liu, Jane W. S.; Lin, Kwei-Jay; Liu, C. L.

    1991-01-01

    We discuss an ongoing project to build a Prototyping Environment for Real-Time Systems, called PERTS. PERTS is a unique prototyping environment in that it has (1) tools and performance models for the analysis and evaluation of real-time prototype systems, (2) building blocks for flexible real-time programs and the support system software, (3) basic building blocks of distributed and intelligent real time applications, and (4) an execution environment. PERTS will make the recent and future theoretical advances in real-time system design and engineering readily usable to practitioners. In particular, it will provide an environment for the use and evaluation of new design approaches, for experimentation with alternative system building blocks and for the analysis and performance profiling of prototype real-time systems.

  4. Second-degree atrioventricular block.

    PubMed

    Zipes, D P

    1979-09-01

    1) While it is possible only one type of second-degree AV block exists electrophysiologically, the available data do not justify such a conclusion and it would seem more appropriate to remain a "splitter," and advocate separation and definition of multiple mechanisms, than to be a "lumper," and embrace a unitary concept. 2) The clinical classification of type I and type II AV block, based on present scalar electrocardiographic criteria, for the most part accurately differentiates clinically important categories of patients. Such a classification is descriptive, but serves a useful function and should be preserved, taking into account the caveats mentioned above. The site of block generally determines the clinical course for the patient. For most examples of AV block, the type I and type II classification in present use is based on the site of block. Because block in the His-Purkinje system is preceded by small or nonmeasurable increments, it is called type II AV block; but the very fact that it is preceded by small increments is because it occurs in the His-Purkinje system. Similar logic can be applied to type I AV block in the AV node. Exceptions do occur. If the site of AV block cannot be distinguished with certainity from the scalar ECG, an electrophysiologic study will generally reveal the answer.

  5. Hierarchical Nanostructures Self-Assembled from a Mixture System Containing Rod-Coil Block Copolymers and Rigid Homopolymers

    PubMed Central

    Li, Yongliang; Jiang, Tao; Lin, Shaoliang; Lin, Jiaping; Cai, Chunhua; Zhu, Xingyu

    2015-01-01

    Self-assembly behavior of a mixture system containing rod-coil block copolymers and rigid homopolymers was investigated by using Brownian dynamics simulations. The morphologies of formed hierarchical self-assemblies were found to be dependent on the Lennard-Jones (LJ) interaction εRR between rod blocks, lengths of rod and coil blocks in copolymer, and mixture ratio of block copolymers to homopolymers. As the εRR value decreases, the self-assembled structures of mixtures are transformed from an abacus-like structure to a helical structure, to a plain fiber, and finally are broken into unimers. The order parameter of rod blocks was calculated to confirm the structure transition. Through varying the length of rod and coil blocks, the regions of thermodynamic stability of abacus, helix, plain fiber, and unimers were mapped. Moreover, it was discovered that two levels of rod block ordering exist in the helices. The block copolymers are helically wrapped on the homopolymer bundles to form helical string, while the rod blocks are twistingly packed inside the string. In addition, the simulation results are in good agreement with experimental observations. The present work reveals the mechanism behind the formation of helical (experimentally super-helical) structures and may provide useful information for design and preparation of the complex structures. PMID:25965726

  6. Channel Estimation and Pilot Design for Massive MIMO Systems with Block-Structured Compressive Sensing

    NASA Astrophysics Data System (ADS)

    Lv, ZhuoKai; Yang, Tiejun; Zhu, Chunhua

    2018-03-01

    Through utilizing the technology of compressive sensing (CS), the channel estimation methods can achieve the purpose of reducing pilots and improving spectrum efficiency. The channel estimation and pilot design scheme are explored during the correspondence under the help of block-structured CS in massive MIMO systems. The block coherence property of the aggregate system matrix can be minimized so that the pilot design scheme based on stochastic search is proposed. Moreover, the block sparsity adaptive matching pursuit (BSAMP) algorithm under the common sparsity model is proposed so that the channel estimation can be caught precisely. Simulation results are to be proved the proposed design algorithm with superimposed pilots design and the BSAMP algorithm can provide better channel estimation than existing methods.

  7. Seismic imaging using finite-differences and parallel computers

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

    Ober, C.C.

    1997-12-31

    A key to reducing the risks and costs of associated with oil and gas exploration is the fast, accurate imaging of complex geologies, such as salt domes in the Gulf of Mexico and overthrust regions in US onshore regions. Prestack depth migration generally yields the most accurate images, and one approach to this is to solve the scalar wave equation using finite differences. As part of an ongoing ACTI project funded by the US Department of Energy, a finite difference, 3-D prestack, depth migration code has been developed. The goal of this work is to demonstrate that massively parallel computersmore » can be used efficiently for seismic imaging, and that sufficient computing power exists (or soon will exist) to make finite difference, prestack, depth migration practical for oil and gas exploration. Several problems had to be addressed to get an efficient code for the Intel Paragon. These include efficient I/O, efficient parallel tridiagonal solves, and high single-node performance. Furthermore, to provide portable code the author has been restricted to the use of high-level programming languages (C and Fortran) and interprocessor communications using MPI. He has been using the SUNMOS operating system, which has affected many of his programming decisions. He will present images created from two verification datasets (the Marmousi Model and the SEG/EAEG 3D Salt Model). Also, he will show recent images from real datasets, and point out locations of improved imaging. Finally, he will discuss areas of current research which will hopefully improve the image quality and reduce computational costs.« less

  8. Calculating a checksum with inactive networking components in a computing system

    DOEpatents

    Aho, Michael E; Chen, Dong; Eisley, Noel A; Gooding, Thomas M; Heidelberger, Philip; Tauferner, Andrew T

    2014-12-16

    Calculating a checksum utilizing inactive networking components in a computing system, including: identifying, by a checksum distribution manager, an inactive networking component, wherein the inactive networking component includes a checksum calculation engine for computing a checksum; sending, to the inactive networking component by the checksum distribution manager, metadata describing a block of data to be transmitted by an active networking component; calculating, by the inactive networking component, a checksum for the block of data; transmitting, to the checksum distribution manager from the inactive networking component, the checksum for the block of data; and sending, by the active networking component, a data communications message that includes the block of data and the checksum for the block of data.

  9. Calculating a checksum with inactive networking components in a computing system

    DOEpatents

    Aho, Michael E; Chen, Dong; Eisley, Noel A; Gooding, Thomas M; Heidelberger, Philip; Tauferner, Andrew T

    2015-01-27

    Calculating a checksum utilizing inactive networking components in a computing system, including: identifying, by a checksum distribution manager, an inactive networking component, wherein the inactive networking component includes a checksum calculation engine for computing a checksum; sending, to the inactive networking component by the checksum distribution manager, metadata describing a block of data to be transmitted by an active networking component; calculating, by the inactive networking component, a checksum for the block of data; transmitting, to the checksum distribution manager from the inactive networking component, the checksum for the block of data; and sending, by the active networking component, a data communications message that includes the block of data and the checksum for the block of data.

  10. Updated optical read/write memory system components

    NASA Technical Reports Server (NTRS)

    1973-01-01

    The fabrication of an updated block data composer and holographic storage array for a breadboard holographic read/write memory system is described. System considerations such as transform optics and controlled aberration lens design are described along with the block data composer, photoplastic recording materials, and material development.

  11. DLMS Voice Data Entry.

    DTIC Science & Technology

    1980-06-01

    34 LIST OF ILLUSTRATIONS FIGURE PAGE 1 Block Diagram of DLMS Voice Recognition System .............. S 2 Flowchart of DefaulV...particular are a speech preprocessor and a minicomputer. In the VRS, as shown in the block diagram of Fig. 1, the preprocessor is a TTI model 8040 and...Data General 6026 Magnetic Zo 4 Tape Unit Display L-- - Equipment Cabinet Fig. 1 block Diagram of DIMS Voice Recognition System qS 2. Flexible Disk

  12. Chemical Interactions and Their Role in the Microphase Separation of Block Copolymer Thin Films

    PubMed Central

    Farrell, Richard A.; Fitzgerald, Thomas G.; Borah, Dipu; Holmes, Justin D.; Morris, Michael A.

    2009-01-01

    The thermodynamics of self-assembling systems are discussed in terms of the chemical interactions and the intermolecular forces between species. It is clear that there are both theoretical and practical limitations on the dimensions and the structural regularity of these systems. These considerations are made with reference to the microphase separation that occurs in block copolymer (BCP) systems. BCP systems self-assemble via a thermodynamic driven process where chemical dis-affinity between the blocks driving them part is balanced by a restorative force deriving from the chemical bond between the blocks. These systems are attracting much interest because of their possible role in nanoelectronic fabrication. This form of self-assembly can obtain highly regular nanopatterns in certain circumstances where the orientation and alignment of chemically distinct blocks can be guided through molecular interactions between the polymer and the surrounding interfaces. However, for this to be possible, great care must be taken to properly engineer the interactions between the surfaces and the polymer blocks. The optimum methods of structure directing are chemical pre-patterning (defining regions on the substrate of different chemistry) and graphoepitaxy (topographical alignment) but both centre on generating alignment through favourable chemical interactions. As in all self-assembling systems, the problems of defect formation must be considered and the origin of defects in these systems is explored. It is argued that in these nanostructures equilibrium defects are relatively few and largely originate from kinetic effects arising during film growth. Many defects also arise from the confinement of the systems when they are ‘directed’ by topography. The potential applications of these materials in electronics are discussed. PMID:19865513

  13. Quantum integrable systems from conformal blocks

    NASA Astrophysics Data System (ADS)

    Chen, Heng-Yu; Qualls, Joshua D.

    2017-05-01

    In this note, we extend the striking connections between quantum integrable systems and conformal blocks recently found in [M. Isachenkov and V. Schomerus, Phys. Rev. Lett. 117, 071602 (2016), 10.1103/PhysRevLett.117.071602] in several directions. First, we explicitly demonstrate that the action of the quartic conformal Casimir operator on general d-dimensional scalar conformal blocks can be expressed in terms of certain combinations of commuting integrals of motions of the two particle hyperbolic BC2 Calogero-Sutherland system. The permutation and reflection properties of the underlying Dunkl operators play crucial roles in establishing such a connection. Next, we show that the scalar superconformal blocks in superconformal field theories (SCFTs) with four and eight supercharges and suitable chirality constraints can also be identified with the eigenfunctions of the same Calogero-Sutherland system; this demonstrates the universality of such a connection. Finally, we observe that the so-called "seed" conformal blocks for constructing four point functions for operators with arbitrary space-time spins in four-dimensional CFTs can also be linearly expanded in terms of Calogero-Sutherland eigenfunctions.

  14. The seasonal predictability of blocking frequency in two seasonal prediction systems (CMCC, Met-Office) and the associated representation of low-frequency variability.

    NASA Astrophysics Data System (ADS)

    Athanasiadis, Panos; Gualdi, Silvio; Scaife, Adam A.; Bellucci, Alessio; Hermanson, Leon; MacLachlan, Craig; Arribas, Alberto; Materia, Stefano; Borelli, Andrea

    2014-05-01

    Low-frequency variability is a fundamental component of the atmospheric circulation. Extratropical teleconnections, the occurrence of blocking and the slow modulation of the jet streams and storm tracks are all different aspects of low-frequency variability. Part of the latter is attributed to the chaotic nature of the atmosphere and is inherently unpredictable. On the other hand, primarily as a response to boundary forcings, tropospheric low-frequency variability includes components that are potentially predictable. Seasonal forecasting faces the difficult task of predicting these components. Particularly referring to the extratropics, the current generation of seasonal forecasting systems seem to be approaching this target by realistically initializing most components of the climate system, using higher resolution and utilizing large ensemble sizes. Two seasonal prediction systems (Met-Office GloSea and CMCC-SPS-v1.5) are analyzed in terms of their representation of different aspects of extratropical low-frequency variability. The current operational Met-Office system achieves unprecedented high scores in predicting the winter-mean phase of the North Atlantic Oscillation (NAO, corr. 0.74 at 500 hPa) and the Pacific-N. American pattern (PNA, corr. 0.82). The CMCC system, considering its small ensemble size and course resolution, also achieves good scores (0.42 for NAO, 0.51 for PNA). Despite these positive features, both models suffer from biases in low-frequency variance, particularly in the N. Atlantic. Consequently, it is found that their intrinsic variability patterns (sectoral EOFs) differ significantly from the observed, and the known teleconnections are underrepresented. Regarding the representation of N. hemisphere blocking, after bias correction both systems exhibit a realistic climatology of blocking frequency. In this assessment, instantaneous blocking and large-scale persistent blocking events are identified using daily geopotential height fields at 500 hPa. Given a documented strong relationship between high-latitude N. Atlantic blocking and the NAO, one would expect a predictive skill for the seasonal frequency of blocking comparable to that of the NAO. However, this remains elusive. Future efforts should be in the direction of reducing model biases not only in the mean but also in variability (band-passed variances).

  15. Layout-aware text extraction from full-text PDF of scientific articles.

    PubMed

    Ramakrishnan, Cartic; Patnia, Abhishek; Hovy, Eduard; Burns, Gully Apc

    2012-05-28

    The Portable Document Format (PDF) is the most commonly used file format for online scientific publications. The absence of effective means to extract text from these PDF files in a layout-aware manner presents a significant challenge for developers of biomedical text mining or biocuration informatics systems that use published literature as an information source. In this paper we introduce the 'Layout-Aware PDF Text Extraction' (LA-PDFText) system to facilitate accurate extraction of text from PDF files of research articles for use in text mining applications. Our paper describes the construction and performance of an open source system that extracts text blocks from PDF-formatted full-text research articles and classifies them into logical units based on rules that characterize specific sections. The LA-PDFText system focuses only on the textual content of the research articles and is meant as a baseline for further experiments into more advanced extraction methods that handle multi-modal content, such as images and graphs. The system works in a three-stage process: (1) Detecting contiguous text blocks using spatial layout processing to locate and identify blocks of contiguous text, (2) Classifying text blocks into rhetorical categories using a rule-based method and (3) Stitching classified text blocks together in the correct order resulting in the extraction of text from section-wise grouped blocks. We show that our system can identify text blocks and classify them into rhetorical categories with Precision1 = 0.96% Recall = 0.89% and F1 = 0.91%. We also present an evaluation of the accuracy of the block detection algorithm used in step 2. Additionally, we have compared the accuracy of the text extracted by LA-PDFText to the text from the Open Access subset of PubMed Central. We then compared this accuracy with that of the text extracted by the PDF2Text system, 2commonly used to extract text from PDF. Finally, we discuss preliminary error analysis for our system and identify further areas of improvement. LA-PDFText is an open-source tool for accurately extracting text from full-text scientific articles. The release of the system is available at http://code.google.com/p/lapdftext/.

  16. Layout-aware text extraction from full-text PDF of scientific articles

    PubMed Central

    2012-01-01

    Background The Portable Document Format (PDF) is the most commonly used file format for online scientific publications. The absence of effective means to extract text from these PDF files in a layout-aware manner presents a significant challenge for developers of biomedical text mining or biocuration informatics systems that use published literature as an information source. In this paper we introduce the ‘Layout-Aware PDF Text Extraction’ (LA-PDFText) system to facilitate accurate extraction of text from PDF files of research articles for use in text mining applications. Results Our paper describes the construction and performance of an open source system that extracts text blocks from PDF-formatted full-text research articles and classifies them into logical units based on rules that characterize specific sections. The LA-PDFText system focuses only on the textual content of the research articles and is meant as a baseline for further experiments into more advanced extraction methods that handle multi-modal content, such as images and graphs. The system works in a three-stage process: (1) Detecting contiguous text blocks using spatial layout processing to locate and identify blocks of contiguous text, (2) Classifying text blocks into rhetorical categories using a rule-based method and (3) Stitching classified text blocks together in the correct order resulting in the extraction of text from section-wise grouped blocks. We show that our system can identify text blocks and classify them into rhetorical categories with Precision1 = 0.96% Recall = 0.89% and F1 = 0.91%. We also present an evaluation of the accuracy of the block detection algorithm used in step 2. Additionally, we have compared the accuracy of the text extracted by LA-PDFText to the text from the Open Access subset of PubMed Central. We then compared this accuracy with that of the text extracted by the PDF2Text system, 2commonly used to extract text from PDF. Finally, we discuss preliminary error analysis for our system and identify further areas of improvement. Conclusions LA-PDFText is an open-source tool for accurately extracting text from full-text scientific articles. The release of the system is available at http://code.google.com/p/lapdftext/. PMID:22640904

  17. Tutorial on Managing the Blocked List in the EPA Moderated Transaction System (EMTS)

    EPA Pesticide Factsheets

    A tutorial describing how to manage the blocked list in EMTS, which allows you to block transactions that contain Renewable Identification Numbers (RINs) generated by a specific fuel producer or importer.

  18. Heparan sulfate storage in the cardiac conduction system triggers atrioventricular block.

    PubMed

    Kato, Rie; Miyahara, Hiroaki; Kawano, Tatsuya; Matsuzuka, Atsuko; Noda, Kimiko; Izumi, Tatsuro

    2017-05-01

    To elucidate the novel biological functions of heparan sulfate (HS) by clinic-pathologically studying a patient with paroxysmal atrioventricular (AV) block. A long-surviving male patient with Sanfilippo syndrome type A presented with paroxysmal AV block at age 33years. He then survived another 2.5years after the onset of paroxysmal AV block and pacemaker implantation. His cardiac histopathological examination at autopsy showed HS storage in the cardiac conduction system (CCS), especially in the atrioventricular node (AVN)-His bundle branches. HS storage in the CCS might trigger AV block, arising from below the AVN-His bundle branches. This is the first description to indicate that HS might be an essential constituent of life-long CCS plasticity and that its storage in the CCS results in AV block. Copyright © 2017 The Japanese Society of Child Neurology. Published by Elsevier B.V. All rights reserved.

  19. Incorporating GIS building data and census housing statistics for sub-block-level population estimation

    USGS Publications Warehouse

    Wu, S.-S.; Wang, L.; Qiu, X.

    2008-01-01

    This article presents a deterministic model for sub-block-level population estimation based on the total building volumes derived from geographic information system (GIS) building data and three census block-level housing statistics. To assess the model, we generated artificial blocks by aggregating census block areas and calculating the respective housing statistics. We then applied the model to estimate populations for sub-artificial-block areas and assessed the estimates with census populations of the areas. Our analyses indicate that the average percent error of population estimation for sub-artificial-block areas is comparable to those for sub-census-block areas of the same size relative to associated blocks. The smaller the sub-block-level areas, the higher the population estimation errors. For example, the average percent error for residential areas is approximately 0.11 percent for 100 percent block areas and 35 percent for 5 percent block areas.

  20. ["Habitual" left branch block alternating with 2 "disguised" bracnch block].

    PubMed

    Lévy, S; Jullien, G; Mathieu, P; Mostefa, S; Gérard, R

    1976-10-01

    Two cases of alternating left bundle branch block and "masquerading block" (with left bundle branch morphology in the stnadard leads and right bundle branch block morphology in the precordial leads) were studied by serial tracings and his bundle electrocardiography. In case 1 "the masquerading" block was associated with a first degree AV block related to a prolongation of HV interval. This case is to our knowledge the first cas of alternating bundle branch block in which his bundle activity was recorded in man. In case 2, the patient had atrial fibrilation and His bundle recordings were performed while differents degrees of left bundle branch block were present: The mechanism of the alternation and the concept of "masquerading" block are discussed. It is suggested that this type of block represents a right bundle branch block associated with severe lesions of the "left system".

  1. Phase-Quantized Block Noncoherent Communication

    DTIC Science & Technology

    2013-07-01

    2828 IEEE TRANSACTIONS ON COMMUNICATIONS, VOL. 61, NO. 7, JULY 2013 Phase-Quantized Block Noncoherent Communication Jaspreet Singh and Upamanyu...in a carrier asynchronous system. Specifically, we consider transmission over the block noncoherent additive white Gaussian noise channel, and...block noncoherent channel. Several results, based on the symmetry inherent in the channel model, are provided to characterize this transition density

  2. Integrated geometry and grid generation system for complex configurations

    NASA Technical Reports Server (NTRS)

    Akdag, Vedat; Wulf, Armin

    1992-01-01

    A grid generation system was developed that enables grid generation for complex configurations. The system called ICEM/CFD is described and its role in computational fluid dynamics (CFD) applications is presented. The capabilities of the system include full computer aided design (CAD), grid generation on the actual CAD geometry definition using robust surface projection algorithms, interfacing easily with known CAD packages through common file formats for geometry transfer, grid quality evaluation of the volume grid, coupling boundary condition set-up for block faces with grid topology generation, multi-block grid generation with or without point continuity and block to block interface requirement, and generating grid files directly compatible with known flow solvers. The interactive and integrated approach to the problem of computational grid generation not only substantially reduces manpower time but also increases the flexibility of later grid modifications and enhancements which is required in an environment where CFD is integrated into a product design cycle.

  3. Propofol-induced increase in vascular capacitance is due to inhibition of sympathetic vasoconstrictive activity.

    PubMed

    Hoka, S; Yamaura, K; Takenaka, T; Takahashi, S

    1998-12-01

    Venodilation is thought to be one of the mechanisms underlying propofol-induced hypotension. The purpose of this study is to test two hypotheses: (1) propofol increases systemic vascular capacitance, and (2) the capacitance change produced by propofol is a result of an inhibition of sympathetic vasoconstrictor activity. In 33 Wistar rats previously anesthetized with urethane and ketamine, vascular capacitance was examined before and after propofol infusion by measuring mean circulatory filling pressure (Pmcf). The Pmcf was measured during a brief period of circulatory arrest produced by inflating an indwelling balloon in the right atrium. Rats were assigned into four groups: an intact group, a sympathetic nervous system (SNS)-block group produced by hexamethonium infusion, a SNS-block + noradrenaline (NA) group, and a hypovolemic group. The Pmcf was measured at a control state and 2 min after a bolus administration of 2, 10, and 20 mg/kg of propofol. The mean arterial pressure (MAP) was decreased by propofol dose-dependently in intact, hypovolemic, and SNS-block groups, but the decrease in MAP was less in the SNS-block group (-25%) than in the intact (-50%) and hypovolemic (-61%) groups. In the SNS-block + NA group, MAP decreased only at 20 mg/kg of propofol (-18%). The Pmcf decreased in intact and hypovolemic groups in a dose-dependent fashion but was unchanged in the SNS-block and SNS-block + NA groups. The results have provided two principal findings: (1) propofol decreases Pmcf dose-dependently, and (2) the decrease in Pmcf by propofol is elicited only when the sympathetic nervous system is intact, suggesting that propofol increases systemic vascular capacitance as a result of an inhibition of sympathetic nervous system.

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

    Lockwood, Jr., Neil; McLellan, Jason G; Crossley, Brian

    The Resident Fish Stock Status above Chief Joseph and Grand Coulee Dams Project, commonly known as the Joint Stock Assessment Project (JSAP) is a management tool using ecosystem principles to manage artificial fish assemblages and native fish in altered environments existing in the Columbia River System above Chief Joseph and Grand Coulee Dams (blocked area). The three-phase approach of this project will enhance the fisheries resources of the blocked area by identifying data gaps, filling data gaps with research, and implementing management recommendations based on research results. The Blocked Area fisheries information housed in a central location will allow managersmore » to view the entire system while making decisions, rather than basing management decisions on isolated portions of the system. The JSAP (NWPPC program measure 10.8B.26) is designed and guided jointly by fisheries managers in the blocked area and the Columbia Basin blocked area management plan (1998). The initial year of the project (1997) identified the need for a central data storage and analysis facility, coordination with the StreamNet project, compilation of blocked area fisheries information, and a report on the ecological condition of the Spokane River System. These needs were addressed in 1998 by acquiring a central location with a data storage and analysis system, coordinating a pilot project with StreamNet, compiling fisheries distribution data throughout the blocked area, identifying data gaps based on compiled information, and researching the ecological condition of the Spokane River. In order to ensure that any additional information collected throughout the life of this project will be easily stored and manipulated by the central storage facility, it was necessary to develop standardized methodologies between the JSAP fisheries managers. The use of common collection and analytical tools is essential to the process of streamlining joint management decisions. In 1999 and 2000 the project began to address some of the identified data gaps, throughout the blocked area, with a variety of newly developed sampling projects, as well as, continuing with ongoing data collection of established projects.« less

  5. Thermoset coatings from epoxidized sucrose soyate and blocked, bio-based dicarboxylic acids.

    PubMed

    Kovash, Curtiss S; Pavlacky, Erin; Selvakumar, Sermadurai; Sibi, Mukund P; Webster, Dean C

    2014-08-01

    A new 100% bio-based thermosetting coating system was developed from epoxidized sucrose soyate crosslinked with blocked bio-based dicarboxylic acids. A solvent-free, green method was used to block the carboxylic acid groups and render the acids miscible with the epoxy resin. The thermal reversibility of this blocking allowed for the formulation of epoxy-acid thermoset coatings that are 100% bio-based. This was possible due to the volatility of the vinyl ethers under curing conditions. These systems have good adhesion to metal substrates and perform well under chemical and physical stress. Additionally, the hardness of the coating system is dependent on the chain length of the diacid used, making it tunable. © 2014 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  6. A PILOT STUDY COMPARING THE BLOCK SYSTEM AND THE INTERMITTENT SYSTEM OF SCHEDULING SPEECH CORRECTION CASES IN THE PUBLIC SCHOOLS.

    ERIC Educational Resources Information Center

    WEAVER, JOHN B.; WOLLERSHEIM, JANET P.

    TO DETERMINE THE MOST EFFICIENT USES OF THE PUBLIC SCHOOL SPEECH CORRECTIONIST'S SKILLS AND TIME, A STUDY WAS UNDERTAKEN TO INVESTIGATE THE EFFECTIVENESS OF THE INTERMITTENT SYSTEM AND THE BLOCK SYSTEM OF SCHEDULING SPEECH CASES. WITH THE INTERMITTENT SYSTEM THE CORRECTIONIST IS ASSIGNED TO A NUMBER OF SCHOOLS AND GENERALLY SEES CHILDREN TWICE A…

  7. Amphiphilic Polysaccharide Block Copolymers for pH-Responsive Micellar Nanoparticles.

    PubMed

    Breitenbach, Benjamin B; Schmid, Ira; Wich, Peter R

    2017-09-11

    A full polysaccharide amphiphilic block copolymer was prepared from end group-functionalized dextrans using copper-mediated azide-alkyne click chemistry. Sufficient modification of the reducing end in both blocks was achieved by microwave-enhanced reductive amination in a borate-buffer/methanol solvent system. The combination of a hydrophilic dextran block with a hydrophobic acetalated dextran block results in an amphiphilic structure that turns water-soluble upon acid treatment. The material has a low critical micelle concentration and self-assembles in water to spherical micellar nanoparticles. The formed nanoparticles have a narrow size distribution below 70 nm in diameter and disassemble in slightly acidic conditions. The amphiphilic polysaccharide system shows low toxicity and can stabilize the hydrophobic model drug curcumin in aqueous solutions over extended time periods.

  8. Mechanics of distributed fault and block rotation

    NASA Technical Reports Server (NTRS)

    Nur, A.; Scotti, O.; Ron, H.

    1989-01-01

    Paleomagnetic data, structural geology, and rock mechanics are used to explore the validity and significance of the block rotation concept. The analysis is based on data from Northern Israel, where fault slip and spacing are used to predict block rotation; the Mojave Desert, with well documented strike-slip sets; the Lake Mead, Nevada fault system with well-defined sets of strike-slip faults; and the San Gabriel Mountains domain with a multiple set of strike-slip faults. The results of the analysis indicate that block rotations can have a profound influence on the interpretation of geodetic measurments and the inversion of geodetic data. Furthermore, the block rotations and domain boundaries may be involved in creating the heterogeneities along active fault systems which may be responsible for the initiation and termination of earthquake rupture.

  9. PEG Enhancement for EM1 and EM2+ Missions

    NASA Technical Reports Server (NTRS)

    Von der Porten, Paul; Ahmad, Naeem; Hawkins, Matt

    2018-01-01

    NASA is currently building the Space Launch System (SLS) Block-1 launch vehicle for the Exploration Mission 1 (EM-1) test flight. The next evolution of SLS, the Block-1B Exploration Mission 2 (EM-2), is currently being designed. The Block-1 and Block-1B vehicles will use the Powered Explicit Guidance (PEG) algorithm. Due to the relatively low thrust-to-weight ratio of the Exploration Upper Stage (EUS), certain enhancements to the Block-1 PEG algorithm are needed to perform Block-1B missions. In order to accommodate mission design for EM-2 and beyond, PEG has been significantly improved since its use on the Space Shuttle program. The current version of PEG has the ability to switch to different targets during Core Stage (CS) or EUS flight, and can automatically reconfigure for a single Engine Out (EO) scenario, loss of communication with the Launch Abort System (LAS), and Inertial Navigation System (INS) failure. The Thrust Factor (TF) algorithm uses measured state information in addition to a priori parameters, providing PEG with an improved estimate of propulsion information. This provides robustness against unknown or undetected engine failures. A loft parameter input allows LAS jettison while maximizing payload mass. The current PEG algorithm is now able to handle various classes of missions with burn arcs much longer than were seen in the shuttle program. These missions include targeting a circular LEO orbit with a low-thrust, long-burn-duration upper stage, targeting a highly eccentric Trans-Lunar Injection (TLI) orbit, targeting a disposal orbit using the low-thrust Reaction Control System (RCS), and targeting a hyperbolic orbit. This paper will describe the design and implementation of the TF algorithm, the strategy to handle EO in various flight regimes, algorithms to cover off-nominal conditions, and other enhancements to the Block-1 PEG algorithm. This paper illustrates challenges posed by the Block-1B vehicle, and results show that the improved PEG algorithm is capable for use on the SLS Block 1-B vehicle as part of the Guidance, Navigation, and Control System.

  10. Thin sheet casting with electromagnetic pressurization

    DOEpatents

    Walk, Steven R.; Slepian, R. Michael; Nathenson, Richard D.; Williams, Robert S.

    1991-01-01

    An apparatus, method and system for the casting of thin strips or strips of metal upon a moving chill block that includes an electromagnet located so that molten metal poured from a reservoir onto the chill block passes into the magnetic field produced by the electromagnet. The electromagnet produces a force on the molten metal on said chill block in the direction toward said chill block in order to enhance thermal contact between the molten metal and the chill block.

  11. Comparing blends and blocks: Synthesis of partially fluorinated diblock polythiophene copolymers to investigate the thermal stability of optical and morphological properties

    PubMed Central

    Boufflet, Pierre; Wood, Sebastian; Wade, Jessica; Fei, Zhuping; Kim, Ji-Seon

    2016-01-01

    Summary The microstructure of the active blend layer has been shown to be a critically important factor in the performance of organic solar devices. Block copolymers provide a potentially interesting avenue for controlling this active layer microstructure in solar cell blends. Here we explore the impact of backbone fluorination in block copolymers of poly(3-octyl-4-fluorothiophene)s and poly(3-octylthiophene) (F-P3OT-b-P3OT). Two block co-polymers with varying block lengths were prepared via sequential monomer addition under Kumada catalyst transfer polymerisation (KCTP) conditions. We compare the behavior of the block copolymer to that of the corresponding homopolymer blends. In both types of system, we find the fluorinated segments tend to dominate the UV–visible absorption and molecular vibrational spectral features, as well as the thermal behavior. In the block copolymer case, non-fluorinated segments appear to slightly frustrate the aggregation of the more fluorinated block. However, in situ temperature dependent Raman spectroscopy shows that the intramolecular order is more thermally stable in the block copolymer than in the corresponding blend, suggesting that such materials may be interesting for enhanced thermal stability of organic photovoltaic active layers based on similar systems. PMID:27829922

  12. Advanced information processing system: Local system services

    NASA Technical Reports Server (NTRS)

    Burkhardt, Laura; Alger, Linda; Whittredge, Roy; Stasiowski, Peter

    1989-01-01

    The Advanced Information Processing System (AIPS) is a multi-computer architecture composed of hardware and software building blocks that can be configured to meet a broad range of application requirements. The hardware building blocks are fault-tolerant, general-purpose computers, fault-and damage-tolerant networks (both computer and input/output), and interfaces between the networks and the computers. The software building blocks are the major software functions: local system services, input/output, system services, inter-computer system services, and the system manager. The foundation of the local system services is an operating system with the functions required for a traditional real-time multi-tasking computer, such as task scheduling, inter-task communication, memory management, interrupt handling, and time maintenance. Resting on this foundation are the redundancy management functions necessary in a redundant computer and the status reporting functions required for an operator interface. The functional requirements, functional design and detailed specifications for all the local system services are documented.

  13. Novel High Efficient Organic Photovoltaic Materials: Final Summary of Research

    NASA Technical Reports Server (NTRS)

    Sun, Sam

    2002-01-01

    The objectives and goals of this project were to investigate and develop high efficient, lightweight, and cost effective materials for potential photovoltaic applications, such as solar energy conversion or photo detector devices. Specifically, as described in the original project proposal, the target material to be developed was a block copolymer system containing an electron donating (or p-type) conjugated polymer block coupled to an electron withdrawing (or n-type) conjugated polymer block through a non-conjugated bridge unit. Due to several special requirements of the targeted block copolymer systems, such as electron donating and withdrawing substituents, conjugated block structures, processing requirement, stability requirement, size controllability, phase separation and self ordering requirement, etc., many traditional or commonly used block copolymer synthetic schemes are not suitable for this system. Therefore, the investigation and development of applicable and effective synthetic protocols became the most critical and challenging part of this project. During the entire project period, and despite the lack of a proposed synthetic polymer postdoctoral research associate due to severe shortage of qualified personnel in the field, several important accomplishments were achieved in this project and are briefly listed and elaborated. A more detailed research and experimental data is listed in the Appendix.

  14. Formation and Characterization of Anisotropic Block Copolymer Gels

    NASA Astrophysics Data System (ADS)

    Liaw, Chya Yan; Joester, Derk; Burghardt, Wesley; Shull, Kenneth

    2012-02-01

    Cylindrical micelles formed from block copolymer solutions closely mimic biological fibers that are presumed to guide mineral formation during biosynthesis of hard tissues like bone. The goal of our work is to use acrylic block copolymers as oriented templates for studying mineral formation reactions in model systems where the structure of the underlying template is well characterized and reproducible. Self-consistent mean field theory is first applied to investigate the thermodynamically stable micellar morphologies as a function of temperature and block copolymer composition. Small-angle x-ray scattering, optical birefringence and shear rheometry are used to study the morphology development during thermal processing. Initial experiments are based on a thermally-reversible alcohol-soluble system that can be converted to an aqueous gel by hydrolysis of a poly(t-butyl methacrylate) block to a poly(methacrylic acid) block. Aligned cylindrical domains are formed in the alcohol-based system when shear is applied in an appropriate temperature regime, which is below the critical micelle temperature but above the temperature at which the relaxation time of the gels becomes too large. Processing strategies for producing the desired cylindrical morphologies are being developed that account for both thermodynamic and kinetic effects.

  15. 49 CFR 236.1029 - PTC system use and en route failures.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... system component fails to perform its intended function, the cause must be determined and the faulty... advance of the train in accordance with the following: (i) Where no block signal system is in use, the... location where an absolute block has been established in advance of the train, as referenced in paragraph...

  16. 49 CFR 236.502 - Automatic brake application, initiation by restrictive block conditions stopping distance in...

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... OF SIGNAL AND TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Automatic Train Stop, Train Control and Cab Signal Systems Standards § 236.502 Automatic brake application, initiation by restrictive block conditions stopping distance in advance. An automatic train-stop or train-control system shall operate to...

  17. 49 CFR 236.512 - Cab signal indication when locomotive enters block where restrictive conditions obtain.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... TRAIN CONTROL SYSTEMS, DEVICES, AND APPLIANCES Automatic Train Stop, Train Control and Cab Signal Systems Standards § 236.512 Cab signal indication when locomotive enters block where restrictive conditions obtain. The automatic cab signal system shall be arranged so that when a locomotive enters or is...

  18. Selective molecular annealing: in situ small angle X-ray scattering study of microwave-assisted annealing of block copolymers.

    PubMed

    Toolan, Daniel T W; Adlington, Kevin; Isakova, Anna; Kalamiotis, Alexis; Mokarian-Tabari, Parvaneh; Dimitrakis, Georgios; Dodds, Christopher; Arnold, Thomas; Terrill, Nick J; Bras, Wim; Hermida Merino, Daniel; Topham, Paul D; Irvine, Derek J; Howse, Jonathan R

    2017-08-09

    Microwave annealing has emerged as an alternative to traditional thermal annealing approaches for optimising block copolymer self-assembly. A novel sample environment enabling small angle X-ray scattering to be performed in situ during microwave annealing is demonstrated, which has enabled, for the first time, the direct study of the effects of microwave annealing upon the self-assembly behavior of a model, commercial triblock copolymer system [polystyrene-block-poly(ethylene-co-butylene)-block-polystyrene]. Results show that the block copolymer is a poor microwave absorber, resulting in no change in the block copolymer morphology upon application of microwave energy. The block copolymer species may only indirectly interact with the microwave energy when a small molecule microwave-interactive species [diethylene glycol dibenzoate (DEGDB)] is incorporated directly into the polymer matrix. Then significant morphological development is observed at DEGDB loadings ≥6 wt%. Through spatial localisation of the microwave-interactive species, we demonstrate targeted annealing of specific regions of a multi-component system, opening routes for the development of "smart" manufacturing methodologies.

  19. Feasibility of blocking detection in observations from radio occultation

    NASA Astrophysics Data System (ADS)

    Brunner, Lukas; Steiner, Andrea Karin; Scherllin-Pirscher, Barbara; Jury, Martin

    2015-04-01

    Blocking describes an atmospheric situation in which the climatological westerly flow at mid latitudes is weakened or reversed. This is caused by a persistent high pressure system which can be stationary for several days to weeks. In the Northern Hemisphere blocking preferably occurs over the Atlantic/European and the Pacific regions. In recent years blocking has been under close scientific investigation due to its effect on weather extremes, triggering heat waves in summer and cold spells in winter. So far, scientific literature mainly focused on the investigation of blocking in reanalysis and global climate model data sets. However, blocking is underestimated in most climate models due to small-scale processes involved in its evolution. For a detection of blocking, most commonly applied methods are based on the computation of meridional geopotential height gradients at the 500 hPa level. Therefore measurements with adequate vertical, horizontal, and temporal resolution and coverage are required. We use an observational data set based on Global Positioning System (GPS) Radio Occultation (RO) measurements fulfilling these requirements. RO is a relatively new, satellite based remote sensing technique, delivering profiles of atmospheric parameters such as geopotential height, pressure, and temperature. It is characterized by favorable properties like long-term stability, global coverage, and high vertical resolution. Our data set is based on the most recent WEGC RO retrieval. Here we report on a feasibility study for blocking detection and analysis in RO data for two exemplary blocking events: the blocking over Russia in summer 2010 and the blocking over Greenland in late winter 2013. For these two events about 700 RO measurements per day are available in the Northern Hemisphere. We will show that the measurement density and quality of RO observations are favorable for blocking analysis and can therefore contribute to blocking research.

  20. 40 CFR 65.114 - Standards: Open-ended valves or lines.

    Code of Federal Regulations, 2010 CFR

    2010-07-01

    ... closed. (3) When a double block and bleed system is being used, the bleed valve or line may remain open... block and bleed system as specified in paragraph (b) of this section are exempt from the requirements of...

  1. Textual blocks rectification method based on fast Hough transform analysis in identity documents recognition

    NASA Astrophysics Data System (ADS)

    Bezmaternykh, P. V.; Nikolaev, D. P.; Arlazarov, V. L.

    2018-04-01

    Textual blocks rectification or slant correction is an important stage of document image processing in OCR systems. This paper considers existing methods and introduces an approach for the construction of such algorithms based on Fast Hough Transform analysis. A quality measurement technique is proposed and obtained results are shown for both printed and handwritten textual blocks processing as a part of an industrial system of identity documents recognition on mobile devices.

  2. Evidence that spinal segmental nitric oxide mediates tachyphylaxis to peripheral local anesthetic nerve block.

    PubMed

    Wang, C; Sholas, M G; Berde, C B; DiCanzio, J; Zurakowski, D; Wilder, R T

    2001-09-01

    Tachyphylaxis to sciatic nerve blockade in rats correlates with hyperalgesia. Spinal inhibition of nitric oxide synthase with N(G)nitro-L-arginine methyl ester (L-NAME) has been shown to prevent hyperalgesia. Given systemically, L-NAME also prevents tachyphylaxis. The action of L-NAME in preventing tachyphylaxis therefore may be mediated at spinal sites. We compared systemic versus intrathecal potency of L-NAME in modulating tachyphylaxis to sciatic nerve block. Rats were prepared with intrathecal catheters. Three sequential sciatic nerve blocks were placed. Duration of block of thermal nocifensive, proprioceptive and motor responses was recorded. We compared spinal versus systemic dose-response to L-NAME, and examined effects of intrathecal arginine on tachyphylaxis. An additional group of rats underwent testing after T10 spinal cord transection. In these rats duration of sciatic nerve block was assessed by determining the heat-induced flexion withdrawal reflex. L-NAME was 25-fold more potent in preventing tachyphylaxis given intrathecally than intraperitoneally. Intrathecal arginine augmented tachyphylaxis. Spinalized rats exhibited tachyphylaxis to sciatic block. The increased potency of intrathecal versus systemic L-NAME suggests a spinal site of action in inhibiting tachyphylaxis. Descending pathways are not necessary for the development of tachyphylaxis since it occurs even after T10 spinal cord transection. Thus tachyphylaxis, like hyperalgesia, is mediated at least in part by a spinal site of action.

  3. Effective System for Automatic Bundle Block Adjustment and Ortho Image Generation from Multi Sensor Satellite Imagery

    NASA Astrophysics Data System (ADS)

    Akilan, A.; Nagasubramanian, V.; Chaudhry, A.; Reddy, D. Rajesh; Sudheer Reddy, D.; Usha Devi, R.; Tirupati, T.; Radhadevi, P. V.; Varadan, G.

    2014-11-01

    Block Adjustment is a technique for large area mapping for images obtained from different remote sensingsatellites.The challenge in this process is to handle huge number of satellite imageries from different sources with different resolution and accuracies at the system level. This paper explains a system with various tools and techniques to effectively handle the end-to-end chain in large area mapping and production with good level of automation and the provisions for intuitive analysis of final results in 3D and 2D environment. In addition, the interface for using open source ortho and DEM references viz., ETM, SRTM etc. and displaying ESRI shapes for the image foot-prints are explained. Rigorous theory, mathematical modelling, workflow automation and sophisticated software engineering tools are included to ensure high photogrammetric accuracy and productivity. Major building blocks like Georeferencing, Geo-capturing and Geo-Modelling tools included in the block adjustment solution are explained in this paper. To provide optimal bundle block adjustment solution with high precision results, the system has been optimized in many stages to exploit the full utilization of hardware resources. The robustness of the system is ensured by handling failure in automatic procedure and saving the process state in every stage for subsequent restoration from the point of interruption. The results obtained from various stages of the system are presented in the paper.

  4. Island custom blocking technique

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

    Carabetta, R.J.

    The technique of Island blocking is being used more frequently since the advent of our new head and neck blocking techniques and the implementation of a newly devised lung protocol. The system presented affords the mould room personnel a quick and accurate means of island block fabrication without the constant remeasuring or subtle shifting to approximate correct placement. The cookie cutter is easily implemented into any department's existing block cutting techniques. The device is easily and inexpensively made either in a machine shop or acquired by contacting the author.

  5. Possible mechanism of polyspermy block in human oocytes observed by time-lapse cinematography.

    PubMed

    Mio, Yasuyuki; Iwata, Kyoko; Yumoto, Keitaro; Kai, Yoshiteru; Sargant, Haruka C; Mizoguchi, Chizuru; Ueda, Minako; Tsuchie, Yuka; Imajo, Akifumi; Iba, Yumiko; Nishikori, Kyoko

    2012-09-01

    To analyze the fertilization process related to polyspermy block in human oocytes using an in vitro culturing system for time-lapse cinematography. We had 122 oocytes donated for this study from couples that provided informed consent. We recorded human oocytes at 2,000 to 2,800 frames every 10 s during the fertilization process and thereafter every 2 min using a new in vitro culture system originally developed by the authors for time-lapse cinematography. We displayed 30 frames per second for analysis of the polyspermy block during fertilization. Three oocytes showed the leading and following sperm within the zona pellucida in the same microscopic field. The dynamic images obtained during the fertilization process using this new system revealed that once a leading sperm penetrated the zona pellucida and attached to the oocyte membrane, a following sperm was arrested from further penetration into the zona pellucida within 10 s. The present results strongly suggest the existence of a novel mechanism of polyspermy block that takes place at the zona pellucida immediately after fertilization. These findings are clearly different from previous mechanisms describing polyspermy block as the oocyte membrane block to sperm penetration and the zona reaction. The finding presented herein thus represents a novel discovery about the highly complicated polyspermy block mechanism occurring in human oocytes.

  6. Bioregenerative technologies for waste processing and resource recovery in advanced space life support system

    NASA Technical Reports Server (NTRS)

    Chamberland, Dennis

    1991-01-01

    The Controlled Ecological Life Support System (CELSS) for producing oxygen, water, and food in space will require an interactive facility to process and return wastes as resources to the system. This paper examines the bioregenerative techologies for waste processing and resource recovery considered for a CELSS Resource Recovery system. The components of this system consist of a series of biological reactors to treat the liquid and solid material fractions, in which the aerobic and anaerobic reactors are combined in a block called the Combined Reactor Equipment (CORE) block. The CORE block accepts the human wastes, kitchen wastes, inedible refractory plant materials, grey waters from the CELLS system, and aquaculture solids and processes these materials in either aerobic or anaerobic reactors depending on the desired product and the rates required by the integrated system.

  7. The Use of Liposomal Bupivacaine in Erector Spinae Plane Block to Minimize Opioid Consumption for Breast Surgery: A Case Report.

    PubMed

    Kumar, Amanda; Hulsey, Alina; Martinez-Wilson, Hector; Kim, James; Gadsden, Jeff

    2018-05-01

    The erector spinae plane block is a novel interfascial plane block that can provide thoracic and abdominal analgesia. We describe a patient with opioid intolerance scheduled for breast surgery who received an erector spinae plane block with liposomal bupivacaine as well as a supplemental T1 paravertebral block resulting in profound analgesia throughout her postoperative course. This case report demonstrates that use of liposomal bupivacaine in the erector spinae plane block can be successful in providing extended duration postoperative analgesia and minimizing systemic opioid requirements.

  8. The Use of Liposomal Bupivacaine in Erector Spinae Plane Block to Minimize Opioid Consumption for Breast Surgery: A Case Report.

    PubMed

    Kumar, Amanda; Hulsey, Alina; Martinez-Wilson, Hector; Kim, James; Gadsden, Jeff

    2017-11-16

    The erector spinae plane block is a novel interfascial plane block that can provide thoracic and abdominal analgesia. We describe a patient with opioid intolerance scheduled for breast surgery who received an erector spinae plane block with liposomal bupivacaine as well as a supplemental T1 paravertebral block resulting in profound analgesia throughout her postoperative course. This case report demonstrates that use of liposomal bupivacaine in the erector spinae plane block can be successful in providing extended duration postoperative analgesia and minimizing systemic opioid requirements.

  9. Memory hierarchy using row-based compression

    DOEpatents

    Loh, Gabriel H.; O'Connor, James M.

    2016-10-25

    A system includes a first memory and a device coupleable to the first memory. The device includes a second memory to cache data from the first memory. The second memory includes a plurality of rows, each row including a corresponding set of compressed data blocks of non-uniform sizes and a corresponding set of tag blocks. Each tag block represents a corresponding compressed data block of the row. The device further includes decompression logic to decompress data blocks accessed from the second memory. The device further includes compression logic to compress data blocks to be stored in the second memory.

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

    Not Available

    The final design, performance analysis, and economic analysis of a solar hot water system for curing concrete blocks at the new Rotoclave block fabricating plant being built by the York Building Products Co. Inc. at Harrisburg, Pa. are presented. The system will use AAI Corporation's 24/1 concentrating collectors. (WHK)

  11. 47 CFR 90.663 - MTA-based SMR system operations.

    Code of Federal Regulations, 2013 CFR

    2013-10-01

    ... stations using any frequency identified in their spectrum block anywhere within their authorized MTA... rules and international agreements that restrict use of frequencies identified in their spectrum block... for a previously authorized co-channel station within the MTA licensee's authorized spectrum block is...

  12. 47 CFR 90.663 - MTA-based SMR system operations.

    Code of Federal Regulations, 2012 CFR

    2012-10-01

    ... stations using any frequency identified in their spectrum block anywhere within their authorized MTA... rules and international agreements that restrict use of frequencies identified in their spectrum block... for a previously authorized co-channel station within the MTA licensee's authorized spectrum block is...

  13. 47 CFR 90.663 - MTA-based SMR system operations.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... stations using any frequency identified in their spectrum block anywhere within their authorized MTA... rules and international agreements that restrict use of frequencies identified in their spectrum block... for a previously authorized co-channel station within the MTA licensee's authorized spectrum block is...

  14. 47 CFR 90.663 - MTA-based SMR system operations.

    Code of Federal Regulations, 2014 CFR

    2014-10-01

    ... stations using any frequency identified in their spectrum block anywhere within their authorized MTA... rules and international agreements that restrict use of frequencies identified in their spectrum block... for a previously authorized co-channel station within the MTA licensee's authorized spectrum block is...

  15. Rate-Compatible LDPC Codes with Linear Minimum Distance

    NASA Technical Reports Server (NTRS)

    Divsalar, Dariush; Jones, Christopher; Dolinar, Samuel

    2009-01-01

    A recently developed method of constructing protograph-based low-density parity-check (LDPC) codes provides for low iterative decoding thresholds and minimum distances proportional to block sizes, and can be used for various code rates. A code constructed by this method can have either fixed input block size or fixed output block size and, in either case, provides rate compatibility. The method comprises two submethods: one for fixed input block size and one for fixed output block size. The first mentioned submethod is useful for applications in which there are requirements for rate-compatible codes that have fixed input block sizes. These are codes in which only the numbers of parity bits are allowed to vary. The fixed-output-blocksize submethod is useful for applications in which framing constraints are imposed on the physical layers of affected communication systems. An example of such a system is one that conforms to one of many new wireless-communication standards that involve the use of orthogonal frequency-division modulation

  16. Development of Test Article Building Block (TABB) for deployable platform systems

    NASA Technical Reports Server (NTRS)

    Greenberg, H. S.; Barbour, R. T.

    1984-01-01

    The concept of a Test Article Building Block (TABB) is described. The TABB is a ground test article that is representative of a future building block that can be used to construct LEO and GEO deployable space platforms for communications and scientific payloads. This building block contains a main housing within which the entire structure, utilities, and deployment/retraction mechanism are stowed during launch. The end adapter secures the foregoing components to the housing during launch. The main housing and adapter provide the necessary building-block-to-building-block attachments for automatically deployable platforms. Removal from the shuttle cargo bay can be accomplished with the remote manipulator system (RMS) and/or the handling and positioning aid (HAPA). In this concept, all the electrical connections are in place prior to launch with automatic latches for payload attachment provided on either the end adapters or housings. The housings also can contain orbiter docking ports for payload installation and maintenance.

  17. Combustion Processes in Solid Propellant Cracks

    DTIC Science & Technology

    1981-06-01

    Ignition at the Closed End of an Inert Ctack . . ......................... 38 12. Block Diagram of Remotely-Controlled Ignition and Photography System ...41 13. Block Diagram of Data Acquisition System ... ........ .. 42 14. Measured Pressure-Time Traces for Crack...ignition system has been designed and fabricated. 5. Experimental firings with single-pore propellant grain have been conducted to study the effects of

  18. Efficient Distribution of Triggered Synchronous Block Diagrams

    DTIC Science & Technology

    2011-10-21

    corresponding FFP processes, from P to P ′. The sizes of the queues are as in [23]. In particular, if M is not Moore, a queue of size 1 suffices; ifM is Moore...computer systems. Real-Time Systems, 14(3):219–250, 1998. [23] S . Tripakis, C. Pinello, A . Benveniste, A . Sangiovanni-Vincent, P. Caspi, and M . Di...of connections: a data connection connects some output port of a block M to some input port of another block M ′; a trigger connection connects some

  19. PERTS: A Prototyping Environment for Real-Time Systems

    NASA Technical Reports Server (NTRS)

    Liu, Jane W. S.; Lin, Kwei-Jay; Liu, C. L.

    1993-01-01

    PERTS is a prototyping environment for real-time systems. It is being built incrementally and will contain basic building blocks of operating systems for time-critical applications, tools, and performance models for the analysis, evaluation and measurement of real-time systems and a simulation/emulation environment. It is designed to support the use and evaluation of new design approaches, experimentations with alternative system building blocks, and the analysis and performance profiling of prototype real-time systems.

  20. How do blockings relate to heavy precipitation events in Europe?

    NASA Astrophysics Data System (ADS)

    Lenggenhager, Sina; Romppainen, Olivia; Brönnimann, Stefan; Croci-Maspoli, Mischa

    2017-04-01

    Atmospheric blockings are quasi-stationary high pressure systems that persist for several days. Due to their longevity, blockings can be key features for extreme weather events. While several studies have shown their relevant role for temperatures extremes, the link between blockings and extreme precipitation and floods is still poorly understood. A case study of a Swiss lake flood event in the year 2000 reveals how different processes connected to blockings can favour the development of a flood. First upstream blocks helped to form strongly elongated troughs that are known to be associated with heavy precipitation events south of the Alps. Second recurrent precipitation events upstream of a block led to a moistening of the catchment and an increase of the lake level. Third the progression of the upstream weather systems was slowed and thereby the precipitation period over a catchment prolonged. Additionally, cloud diabatic processes in the flood region contributed to the establishment and maintenance of blocking anticyclones. Based on this case study we extend our analysis to all of Europe. Focusing on flood relevant precipitation events, i.e. extreme precipitation events that last for several days and affect larger areas, we show that different regions in Europe have very distinct seasonal precipitation patterns. Hence there is a strong seasonality in the occurrence of extreme events, depending on the geographical region. We further suggest that for different precipitation regimes, the preferred location of blockings varies strongly. Heavy precipitation events in southern France, for example, are often observed during Scandinavian blockings, while heavy precipitation events in south-eastern Europe coincide more often with eastern North-Atlantic blockings.

  1. Congenital complete heart block in the newborn associated with maternal systemic lupus erythematosus and other connective tissue disorders.

    PubMed Central

    Hardy, J D; Solomon, S; Banwell, G S; Beach, R; Wright, V; Howard, F M

    1979-01-01

    Four babies with complete heart block associated with maternal systemic lupus erythematosus (SLE) are described, together with a 5th baby whose mother had serological abnormalities only. One baby had a rapidly fatal outcome, one has required digoxin for heart failure, and the remaining 3 are asymptomatic but remain in complete heart block. Additional manifestations were present in 2 of them. The spectrum of neonatal abnormalities that may occur in association with maternal SLE and related connective tissue disorders is discussed, together with the possible causes and the prognosis. We conclude that congenital heart block is more common than had previously been appreciated. Images Figure PMID:420526

  2. Addiction is a Reward Deficit and Stress Surfeit Disorder

    PubMed Central

    Koob, George F.

    2013-01-01

    Drug addiction can be defined by a three-stage cycle – binge/intoxication, withdrawal/negative affect, and preoccupation/anticipation – that involves allostatic changes in the brain reward and stress systems. Two primary sources of reinforcement, positive and negative reinforcement, have been hypothesized to play a role in this allostatic process. The negative emotional state that drives negative reinforcement is hypothesized to derive from dysregulation of key neurochemical elements involved in the brain reward and stress systems. Specific neurochemical elements in these structures include not only decreases in reward system function (within-system opponent processes) but also recruitment of the brain stress systems mediated by corticotropin-releasing factor (CRF) and dynorphin-κ opioid systems in the ventral striatum, extended amygdala, and frontal cortex (both between-system opponent processes). CRF antagonists block anxiety-like responses associated with withdrawal, block increases in reward thresholds produced by withdrawal from drugs of abuse, and block compulsive-like drug taking during extended access. Excessive drug taking also engages the activation of CRF in the medial prefrontal cortex, paralleled by deficits in executive function that may facilitate the transition to compulsive-like responding. Neuropeptide Y, a powerful anti-stress neurotransmitter, has a profile of action on compulsive-like responding for ethanol similar to a CRF1 antagonist. Blockade of the κ opioid system can also block dysphoric-like effects associated with withdrawal from drugs of abuse and block the development of compulsive-like responding during extended access to drugs of abuse, suggesting another powerful brain stress system that contributes to compulsive drug seeking. The loss of reward function and recruitment of brain systems provide a powerful neurochemical basis that drives the compulsivity of addiction. PMID:23914176

  3. 47 CFR 90.683 - EA-based SMR system operations.

    Code of Federal Regulations, 2012 CFR

    2012-10-01

    ... operate base stations using any of the base station frequencies identified in their spectrum block... use of frequencies identified in their spectrum block, including the provisions of § 90.619 relating... authorization for a previously authorized co-channel station within the EA licensee's spectrum block is...

  4. 47 CFR 90.683 - EA-based SMR system operations.

    Code of Federal Regulations, 2013 CFR

    2013-10-01

    ... operate base stations using any of the base station frequencies identified in their spectrum block... use of frequencies identified in their spectrum block, including the provisions of § 90.619 relating... authorization for a previously authorized co-channel station within the EA licensee's spectrum block is...

  5. 47 CFR 90.683 - EA-based SMR system operations.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... operate base stations using any of the base station frequencies identified in their spectrum block... use of frequencies identified in their spectrum block, including the provisions of § 90.619 relating... authorization for a previously authorized co-channel station within the EA licensee's spectrum block is...

  6. Improving Metrological Reliability of Information-Measuring Systems Using Mathematical Modeling of Their Metrological Characteristics

    NASA Astrophysics Data System (ADS)

    Kurnosov, R. Yu; Chernyshova, T. I.; Chernyshov, V. N.

    2018-05-01

    The algorithms for improving the metrological reliability of analogue blocks of measuring channels and information-measuring systems are developed. The proposed algorithms ensure the optimum values of their metrological reliability indices for a given analogue circuit block solution.

  7. A scalable block-preconditioning strategy for divergence-conforming B-spline discretizations of the Stokes problem

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

    Cortes, Adriano M.; Dalcin, Lisandro; Sarmiento, Adel F.

    The recently introduced divergence-conforming B-spline discretizations allow the construction of smooth discrete velocity–pressure pairs for viscous incompressible flows that are at the same time inf–sup stable and pointwise divergence-free. When applied to the discretized Stokes problem, these spaces generate a symmetric and indefinite saddle-point linear system. The iterative method of choice to solve such system is the Generalized Minimum Residual Method. This method lacks robustness, and one remedy is to use preconditioners. For linear systems of saddle-point type, a large family of preconditioners can be obtained by using a block factorization of the system. In this paper, we show howmore » the nesting of “black-box” solvers and preconditioners can be put together in a block triangular strategy to build a scalable block preconditioner for the Stokes system discretized by divergence-conforming B-splines. Lastly, besides the known cavity flow problem, we used for benchmark flows defined on complex geometries: an eccentric annulus and hollow torus of an eccentric annular cross-section.« less

  8. A scalable block-preconditioning strategy for divergence-conforming B-spline discretizations of the Stokes problem

    DOE PAGES

    Cortes, Adriano M.; Dalcin, Lisandro; Sarmiento, Adel F.; ...

    2016-10-19

    The recently introduced divergence-conforming B-spline discretizations allow the construction of smooth discrete velocity–pressure pairs for viscous incompressible flows that are at the same time inf–sup stable and pointwise divergence-free. When applied to the discretized Stokes problem, these spaces generate a symmetric and indefinite saddle-point linear system. The iterative method of choice to solve such system is the Generalized Minimum Residual Method. This method lacks robustness, and one remedy is to use preconditioners. For linear systems of saddle-point type, a large family of preconditioners can be obtained by using a block factorization of the system. In this paper, we show howmore » the nesting of “black-box” solvers and preconditioners can be put together in a block triangular strategy to build a scalable block preconditioner for the Stokes system discretized by divergence-conforming B-splines. Lastly, besides the known cavity flow problem, we used for benchmark flows defined on complex geometries: an eccentric annulus and hollow torus of an eccentric annular cross-section.« less

  9. An interactive multi-block grid generation system

    NASA Technical Reports Server (NTRS)

    Kao, T. J.; Su, T. Y.; Appleby, Ruth

    1992-01-01

    A grid generation procedure combining interactive and batch grid generation programs was put together to generate multi-block grids for complex aircraft configurations. The interactive section provides the tools for 3D geometry manipulation, surface grid extraction, boundary domain construction for 3D volume grid generation, and block-block relationships and boundary conditions for flow solvers. The procedure improves the flexibility and quality of grid generation to meet the design/analysis requirements.

  10. SHERLOCK 3CG™ Diamond Tip Confirmation System

    ClinicalTrials.gov

    2018-05-15

    Indication for Peripheral Intravenous Catheterization; Atrial Flutter; Premature Atrial Contraction; Premature Ventricular Contraction; Premature Junctional Contraction; Tachycardia; Atrioventricular Block; Bundle-Branch Block

  11. Brownian dynamics simulation of amphiphilic block copolymers with different tail lengths, comparison with theory and comicelles.

    PubMed

    Hafezi, Mohammad-Javad; Sharif, Farhad

    2015-11-01

    Study on the effect of amphiphilic copolymers structure on their self assembly is an interesting subject, with important applications in the area of drug delivery and biological system treatments. Brownian dynamics simulations were performed to study self-assembly of the linear amphiphilic block copolymers with the same hydrophilic head, but hydrophobic tails of different lengths. Critical micelle concentration (CMC), gyration radius distribution, micelle size distribution, density profiles of micelles, shape anisotropy, and dynamics of micellization were investigated as a function of tail length. Simulation results were compared with predictions from theory and simulation for mixed systems of block copolymers with long and short hydrophobic tail, reported in our previous work. Interestingly, the equilibrium structural and dynamic parameters of pure and mixed block copolymers were similarly dependant on the intrinsic/apparent hydrophobic block length. Log (CMC) was, however; proportional to the tail length and had a different behavior compared to the mixed system. The power law scaling relation of equilibrium structural parameters for amphiphilic block copolymers predicts the same dependence for similar hydrophobic tail lengths, but the power law prediction of CMC is different, which is due to its simplifying assumptions as discussed here. Copyright © 2015 Elsevier Inc. All rights reserved.

  12. DSN system performance test software

    NASA Technical Reports Server (NTRS)

    Martin, M.

    1978-01-01

    The system performance test software is currently being modified to include additional capabilities and enhancements. Additional software programs are currently being developed for the Command Store and Forward System and the Automatic Total Recall System. The test executive is the main program. It controls the input and output of the individual test programs by routing data blocks and operator directives to those programs. It also processes data block dump requests from the operator.

  13. Digital tanlock loop architecture with no delay

    NASA Astrophysics Data System (ADS)

    Al-Kharji AL-Ali, Omar; Anani, Nader; Al-Araji, Saleh; Al-Qutayri, Mahmoud; Ponnapalli, Prasad

    2012-02-01

    This article proposes a new architecture for a digital tanlock loop which eliminates the time-delay block. The ? (rad) phase shift relationship between the two channels, which is generated by the delay block in the conventional time-delay digital tanlock loop (TDTL), is preserved using two quadrature sampling signals for the loop channels. The proposed system outperformed the original TDTL architecture, when both systems were tested with frequency shift keying input signal. The new system demonstrated better linearity and acquisition speed as well as improved noise performance compared with the original TDTL architecture. Furthermore, the removal of the time-delay block enables all processing to be digitally performed, which reduces the implementation complexity. Both the original TDTL and the new architecture without the delay block were modelled and simulated using MATLAB/Simulink. Implementation issues, including complexity and relation to simulation of both architectures, are also addressed.

  14. Arterial and venous plasma levels of bupivacaine following peripheral nerve blocks.

    PubMed

    Moore, D C; Mather, L E; Bridenbaugh, L D; Balfour, R I; Lysons, D F; Horton, W G

    1976-01-01

    Mean arterial plasma (MAP) and peripheral mean venous plasma (MVP) levels of bupivacaine were ascertained in 3 groups of 10 patients each for: (1) intercostal nerve block, 400 mg; (2) block of the sciatic, femoral, and lateral femoral cutaneous nerves, with or without block of the obturator nerve, 400 mg; and (3) supraclavicular brachial plexus block, 300 mg. MAP levels were consistently higher than simultaneously sampled MVP levels, the highest levels occurring from bilateral intercostal nerve block. No evidence of systemic toxicity was observed. The results suggest that bupivacaine has a much wider margin of safety in humans than is now stated.

  15. Robotic follow system and method

    DOEpatents

    Bruemmer, David J [Idaho Falls, ID; Anderson, Matthew O [Idaho Falls, ID

    2007-05-01

    Robot platforms, methods, and computer media are disclosed. The robot platform includes perceptors, locomotors, and a system controller, which executes instructions for a robot to follow a target in its environment. The method includes receiving a target bearing and sensing whether the robot is blocked front. If the robot is blocked in front, then the robot's motion is adjusted to avoid the nearest obstacle in front. If the robot is not blocked in front, then the method senses whether the robot is blocked toward the target bearing and if so, sets the rotational direction opposite from the target bearing, and adjusts the rotational velocity and translational velocity. If the robot is not blocked toward the target bearing, then the rotational velocity is adjusted proportional to an angle of the target bearing and the translational velocity is adjusted proportional to a distance to the nearest obstacle in front.

  16. Interactive Implementation of the Optimal Systems Control Design Program (OPTSYSX) on the IBM 3033.

    DTIC Science & Technology

    1984-03-01

    DAS A44 159 INTERACTIVE IMPLEMENTATION OF THE OPTIMAL SYSTEMS I CONTROL DESIGN PROGRAM (OPTSYSX) ON THE 1DM 3033(U NAVAL POSTGRADUATE SCHOOL MONTEREY...noesear end idswtif’r b block number) Optimal Systems Control Systems Control Control Systems 10.; ABSTRACT (Continu an reveree side ff Roe684v ad Id yI...34 by block number) .- This thesis discusses the modification of an existing Optimal Systems Control FORTRAN program (OPTSYS) originally obtained from

  17. Radio-tracer techniques for the study of flow in saturated porous materials

    USGS Publications Warehouse

    Skibitzke, H.E.; Chapman, H.T.; Robinson, G.M.; McCullough, Richard A.

    1961-01-01

    An experiment was conducted by the U.S. Geological Survey to determine the feasibility of using a radioactive substance as a tracer in the study of microscopic flow in a saturated porous solid. A radioactive tracer was chosen in preference to dye or other chemical in order to eliminate effects of the tracer itself on the flow system such as those relating to density, viscosity and surface tension. The porous solid was artificial "sandstone" composed of uniform fine grains of sand bonded together with an epoxy adhesive. The sides of the block thus made were sealed with an epoxy coating compound to insure water-tightness. Because of the chemical inertness of the block it was possible to use radioactive phosphorus (P32). Ion-exchange equilibrium was created between the block and nonradioactive phosphoric acid. Then a tracer tagged with P32 was injected into the block in the desired geometric configuration, in this case, a line source. After equilibrium in isotopic exchange was reached between the block and the line source, the block was rinsed, drained and sawn into slices. It was found that a quantitative analysis of the flow system may be made by assaying the dissected block. ?? 1961.

  18. Maximum volume cuboids for arbitrarily shaped in-situ rock blocks as determined by discontinuity analysis—A genetic algorithm approach

    NASA Astrophysics Data System (ADS)

    Ülker, Erkan; Turanboy, Alparslan

    2009-07-01

    The block stone industry is one of the main commercial use of rock. The economic potential of any block quarry depends on the recovery rate, which is defined as the total volume of useful rough blocks extractable from a fixed rock volume in relation to the total volume of moved material. The natural fracture system, the rock type(s) and the extraction method used directly influence the recovery rate. The major aims of this study are to establish a theoretical framework for optimising the extraction process in marble quarries for a given fracture system, and for predicting the recovery rate of the excavated blocks. We have developed a new approach by taking into consideration only the fracture structure for maximum block recovery in block quarries. The complete model uses a linear approach based on basic geometric features of discontinuities for 3D models, a tree structure (TS) for individual investigation and finally a genetic algorithm (GA) for the obtained cuboid volume(s). We tested our new model in a selected marble quarry in the town of İscehisar (AFYONKARAHİSAR—TURKEY).

  19. Preventive maintenance system for the photomultiplier detector blocks of PET scanners

    DOEpatents

    Levy, A.V.; Warner, D.

    1995-01-24

    A system including a method and apparatus for preventive maintenance of PET scanner photomultiplier detector blocks is disclosed. The qualitative comparisons used in the method of the present invention to provide an indication in the form of a display or printout advising the user that the photomultiplier block is stable, intermittently unstable, or drifting unstable, and also advising of the expected date of failure of a photomultiplier block in the PET scanner. The system alerts the user to replace the defective photomultiplier block prior to catastrophic failure in a scheduled preventative maintenance program, thus eliminating expensive and unscheduled downtime of the PET scanner due to photomultiplier failure. The apparatus for carrying out the method of the present invention preferably resides in the host computer controlling a PET scanner. It includes a memory adapted for storing a record of a number of iterative adjustments that are necessary to calibrate the gain of a photomultiplier detector block i at a time t[sub 0], a time t[sub 1] and a time T, where T>t[sub 1]>t[sub 0], which is designated as Histo(i,j(t)). The apparatus also includes a processor configured by a software program or a combination of programmed RAM and ROM devices to perform a number of calculations and operations on these values, and also includes a counter for analyzing each photomultiplier detector block i=1 through I of a PET scanner. 40 figures.

  20. Preventive maintenance system for the photomultiplier detector blocks of pet scanners

    DOEpatents

    Levy, Alejandro V.; Warner, Donald

    1995-01-24

    A system including a method and apparatus for preventive maintenance of PET scanner photomultiplier detector blocks is disclosed. The quantitive comparisons used in the method of the present invention to provide an indication in the form of a display or printout advising the user that the photomultiplier block is stable, intermittently unstable, or drifting unstable, and also advising of the expected date of failure of a photomultiplier block in the PET scanner. The system alerts the user to replace the defective photomultiplier block prior to catastrophic failure in a scheduled preventative maintenance program, thus eliminating expensive and unscheduled downtime of the PET scanner due to photomultiplier failure. The apparatus for carrying out the method of the present invention preferably resides in the host computer controlling a PET scanner. It includes a memory adapted for storing a record of a number of iterative adjustments that are necessary to calibrate the gain of a photomultiplier detector block i at a time t.sub.0, a time t.sub.1 and a time T, where T>t.sub.1 >t.sub.0, which is designated as Histo(i,j(t)). The apparatus also includes a processor configured by a software program or a combination of programmed RAM and ROM devices to perform a number of calculations and operations on these values, and also includes a counter for analyzing each photomultiplier detector block i=1 through I of a PET scanner.

  1. Resilient self-assembling hydrogels from block copolypeptide amphiphiles

    NASA Astrophysics Data System (ADS)

    Nowak, Andrew Paul

    The ability to produce well defined synthetic polypeptides has been greatly improved by the discovery of transition metal species that mediate the controlled polymerization of N-carboxyanhydrides (NCAs). These metal species create a living polymerization system by producing control over chain length, low polydispersities, and the ability to form complex block architectures. We have applied this system to the synthesis of block copolypeptide amphiphiles. Initial block copolymers synthesized were composed of hydrophilic, cationic poly(L-Lysine) combined with hydrophobic, alpha-helical poly(L-Leucine). These Lysine- block-Leucine copolypeptides were found to form stiff, clear hydrogels at low concentration (˜1 wt%) in low ionic strength water. Based on this unexpected result we used the flexibility of our transition metal polymerization chemistry to better understand the nature and mechanisms of gel formation in these materials. Systematic changes to the original Lysine-block-Leucine copolypeptides were made by altering overall chain size, relative block length, polyelectrolyte charge, and hydrophobic secondary structure. Rheological characterization revealed that the strength of these hydrogels was primarily dependent on degree of polymerization, relative block length, and a well ordered secondary structure in the hydrophobic segment. The Lysine-block-Leucine hydrogels were formed by direct addition of water to dry polypeptide material which swelled to homogeneously fill the entire volume of liquid with no special processing. CryoTEM showed a percolating cellular network at ˜100nm that appears to be comprised of both membranes and fibers. Larger length scales studied with Laser Scanning Confocal Microscopy revealed a spontaneously formed microporous network with large (˜10mum) water rich voids. These hydrogels also displayed interesting mechanical properties including rapid recovery of solid like behavior after being sheared to a liquid and mechanical stability with increased temperature (˜90°C). The behavior of the Lysine- block-Leucine system with salt was also thoroughly investigated. With proper tuning of the relative block composition it was found that hydrogels could be optimized to possess good solubility and mechanical strength in many useful ionic solutions (˜100--200mM) such as pH buffers and cell culture media.

  2. Peculiarities of the atmospheric blocking events over the Siberia and Russian Far East region during summertime

    NASA Astrophysics Data System (ADS)

    Antokhina, Olga Yu.; Devjatova, Elena V.; Mordvinov, Vladimir I.

    2017-11-01

    We study the atmospheric blocking event evolution peculiarities over the Siberia and Far Eastern region (Russia) during summertime. Compared are two methods to identify blockings: from the 500 hPa (Z500) isobaric surface height distribution, and from the potential temperature at the dynamic tropopause (PV-θ) for every July 1979 through 2016. We revealed the situations, where blockings are identified only in one of the characteristics. Blocking identification by the PV-θ characteristics is complicated in the cases, when its cyclonic part appears to be filled with air masses of the southern origin, due to which there is no meridional gradient reversal in the PV-θ region. In the Z500 region, the difficulties to identify blocking events may arise in those cases, when the baric field fails to adapt to rapid changes in the temperature field associated with the air mass advection. For example, such events often occur over the ocean surface. We performed a synoptic analysis for several blocking events from the data on the velocity field dynamics at 850 hPa and PV-θ supplemented by the analysis of the observational rainfall data at the stations during those events. Distinguished were several stages of the blocking evolution over the Siberia and Far Eastern region that involved air masses from the East Asian summer monsoon region: 1. The formation of a blocking over Western Siberia; 2. Cold inflow on the blocking eastern periphery, the East Asian summer monsoon front activation, and a cyclone formation (east of Lake Baikal), in whose system the monsoon air was actively involved. Such monsoon cyclones, as a rule, are deep long-living formations, and they bring abnormal precipitations; 3. The formation of a ridge or anticyclone east of the monsoon cyclone, caused by the advection of the same monsoon flow, whose part is involved in a cyclone system. In general, the East Asian summer monsoon influence comes to the effects of regeneration and intensification of the blocking circulating systems. Those effects are often accompanied by strong droughts in some regions and floods in others.

  3. A ranking system for prescribed burn prioritization in Table Mountain National Park, South Africa.

    PubMed

    Cowell, Carly Ruth; Cheney, Chad

    2017-04-01

    To aid prescribed burn decision making in Table Mountain National Park, in South Africa a priority ranking system was tested. Historically a wildfire suppression strategy was adopted due to wildfires threatening urban areas close to the park, with few prescribed burns conducted. A large percentage of vegetation across the park exceeded the ecological threshold of 15 years. We held a multidisciplinary workshop, to prioritize areas for prescribed burning. Fire Management Blocks were mapped and assessed using the following seven categories: (1) ecological, (2) management, (3) tourism, (4) infrastructure, (5) invasive alien vegetation, (6) wildland-urban interface and (7) heritage. A priority ranking system was used to score each block. The oldest or most threatened vegetation types were not necessarily the top priority blocks. Selected blocks were burnt and burning fewer large blocks proved more effective economically, ecologically and practically due to the limited burning days permitted. The prioritization process was efficient as it could be updated annually following prescribed burns and wildfire incidents. Integration of prescribed burn planning and wildfire suppression strategies resulted in a reduction in operational costs. We recommend protected areas make use of a priority ranking system developed with expert knowledge and stakeholder engagement to determine objective prescribed burn plans. Copyright © 2017 Elsevier Ltd. All rights reserved.

  4. Vibration and stress analysis of soft-bonded shuttle insulation tiles. Modal analysis with compact widely space stringers

    NASA Technical Reports Server (NTRS)

    Ojalvo, I. U.; Austin, F.; Levy, A.

    1974-01-01

    An efficient iterative procedure is described for the vibration and modal stress analysis of reusable surface insulation (RSI) of multi-tiled space shuttle panels. The method, which is quite general, is rapidly convergent and highly useful for this application. A user-oriented computer program based upon this procedure and titled RESIST (REusable Surface Insulation Stresses) has been prepared for the analysis of compact, widely spaced, stringer-stiffened panels. RESIST, which uses finite element methods, obtains three dimensional tile stresses in the isolator, arrestor (if any) and RSI materials. Two dimensional stresses are obtained in the tile coating and the stringer-stiffened primary structure plate. A special feature of the program is that all the usual detailed finite element grid data is generated internally from a minimum of input data. The program can accommodate tile idealizations with up to 850 nodes (2550 degrees-of-freedom) and primary structure idealizations with a maximum of 10,000 degrees-of-freedom. The primary structure vibration capability is achieved through the development of a new rapid eigenvalue program named ALARM (Automatic LArge Reduction of Matrices to tridiagonal form).

  5. Sensitivity of mRNA Translation

    PubMed Central

    Poker, Gilad; Margaliot, Michael; Tuller, Tamir

    2015-01-01

    Using the dynamic mean-field approximation of the totally asymmetric simple exclusion process (TASEP), we investigate the effect of small changes in the initiation, elongation, and termination rates along the mRNA strand on the steady-state protein translation rate. We show that the sensitivity of mRNA translation is equal to the sensitivity of the maximal eigenvalue of a symmetric, nonnegative, tridiagonal, and irreducible matrix. This leads to new analytical results as well as efficient numerical schemes that are applicable for large-scale models. Our results show that in the usual endogenous case, when initiation is more rate-limiting than elongation, the sensitivity of the translation rate to small mutations rapidly increases towards the 5′ end of the ORF. When the initiation rate is high, as may be the case for highly expressed and/or heterologous optimized genes, the maximal sensitivity is with respect to the elongation rates at the middle of the mRNA strand. We also show that the maximal possible effect of a small increase/decrease in any of the rates along the mRNA is an increase/decrease of the same magnitude in the translation rate. These results are in agreement with previous molecular evolutionary and synthetic biology experimental studies. PMID:26238363

  6. Energy Systems Integration News | Energy Systems Integration Facility |

    Science.gov Websites

    NREL January 2018 Blockchain concept demonstrated Blockchain to Enable Energy Market in BlockCypher Partnership NREL is partnering with BlockCypher, a blockchain Web services provider, to demonstrate how blockchain technology can support distributed energy markets. For some, the language and

  7. Seismic geomorphology of the Lobed-channel System of Upper Miocene Huangliu Formation, Yinggehai Basin, Northwestern South China Sea

    NASA Astrophysics Data System (ADS)

    Liu, H.

    2016-02-01

    Three-dimensional seismic data have been widely used in interpreting ancient river systems and their associated sediment deposits. Thin-bed reservoirs of lobed-channel system in lithostratigraphic units of Dongfang (DF) area are one of the major study areas for reservoir growth in the Yinggehai basin of northwestern South China Sea. Although it is understood that the transport mechanics of parent substrate and alluvium determine the morphology of channel for lobed-channel system, the transport mechanism and regional gradient are relatively poorly understood. This study is focused on the application of various techniques in seismic geomorphology to the Yinggehai Basin at paleo-water-depth of 120m to assess influences of regional gradient and relative sea level change on lobed-channel palaeogeomorphology in shallow-water environments. The Vietnam paleo-Blue River, which located at south of modern Red River, flowed through DF area and transported turbidity deposit to DF area in the coastal environment. In 3-D seismic survey area, four fifth-order sequences in first member of upper Miocene Huangliu formation were identified using well and seismic data. Seismic inversion and 90° phasing of seismic data were used to convert seismic traces to pseudolithologic logs. Stratal slicing made it possible to interpolate and extrapolate well-data-derived sequence and identify submarine fan, channel fill, lobes and overbank deposit. Strata slices suggested that sea-floor slopes exerted main influence on channel morphology. Specifically, DF13-1 block had high gradient, which mainly distributed mud-sand-rich lobes. However, DF13-2 block established low gradient, which mostly indicated sand-rich braided channels. The values of sinuosity, channel widths, meander-belt widths in DF13-2 block are all greater than these in DF13-1 block. In addition, results of carbon isotope measurements and foraminiferal research of two blocks suggest that paleo sea level in DF13-2 block (30m 150m) was higher than that of DF13-1 block (20m 90m). It also deciphered why channels in DF13-2 incised deeply because of the stronger hydrodynamic energy in the shallow-water environments. Thus DF13-2 block was formed in a lobed-channel and sand rich system, compared with DF13-1 of channelized-lobes and mud-sand rich system.

  8. Approaching the design of a failsafe turbine monitor with simple microcontroller blocks

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

    Zapolin, R.E.

    1995-12-31

    The proper approach to early instrumentation design for tasks like failsafe turbine monitoring permits meeting requirements without resorting to traditional complex special-purpose electronics. Instead a small network of basic microcontroller building blocks can split the effort with each block optimized for its portion of the overall system. This paper discusses approaching design by partitioning intricate system specifications to permit each block to be optimized to the safety level appropriate for its portion of the overall task while retaining and production and reliability advantages of having common simple modules. It illustrates that approach with a modular microcontroller-based speed monitor which metmore » user needs for the latest in power plant monitoring equipment.« less

  9. Stability analysis of Eulerian-Lagrangian methods for the one-dimensional shallow-water equations

    USGS Publications Warehouse

    Casulli, V.; Cheng, R.T.

    1990-01-01

    In this paper stability and error analyses are discussed for some finite difference methods when applied to the one-dimensional shallow-water equations. Two finite difference formulations, which are based on a combined Eulerian-Lagrangian approach, are discussed. In the first part of this paper the results of numerical analyses for an explicit Eulerian-Lagrangian method (ELM) have shown that the method is unconditionally stable. This method, which is a generalized fixed grid method of characteristics, covers the Courant-Isaacson-Rees method as a special case. Some artificial viscosity is introduced by this scheme. However, because the method is unconditionally stable, the artificial viscosity can be brought under control either by reducing the spatial increment or by increasing the size of time step. The second part of the paper discusses a class of semi-implicit finite difference methods for the one-dimensional shallow-water equations. This method, when the Eulerian-Lagrangian approach is used for the convective terms, is also unconditionally stable and highly accurate for small space increments or large time steps. The semi-implicit methods seem to be more computationally efficient than the explicit ELM; at each time step a single tridiagonal system of linear equations is solved. The combined explicit and implicit ELM is best used in formulating a solution strategy for solving a network of interconnected channels. The explicit ELM is used at channel junctions for each time step. The semi-implicit method is then applied to the interior points in each channel segment. Following this solution strategy, the channel network problem can be reduced to a set of independent one-dimensional open-channel flow problems. Numerical results support properties given by the stability and error analyses. ?? 1990.

  10. Analysis of load monitoring system in hydraulic mobile cranes

    NASA Astrophysics Data System (ADS)

    Kalairassan, G.; Boopathi, M.; Mohan, Rijo Mathew

    2017-11-01

    Load moment limiters or safe load control systems or are very important in crane safety. The system detects the moment of lifting load and compares this actual moment with the rated moment. The system uses multiple sensors such as boom angle sensor, boom length sensor for telescopic booms, pressure transducers for measuring the load, anti-two block switch and roller switches. The system works both on rubber and on outriggers. The sensors measure the boom extension, boom angle and load to give as inputs to the central processing, which calculate the safe working load range for that particular configuration of the crane and compare it with the predetermined safe load. If the load exceeds the safe load, actions will be taken which will reduce the load moment, which is boom telescopic retraction and boom lifting. Anti-two block switch is used to prevent the two blocking condition. The system is calibrated and load tested for at most precision.

  11. A wide bandwidth CCD buffer memory system

    NASA Technical Reports Server (NTRS)

    Siemens, K.; Wallace, R. W.; Robinson, C. R.

    1978-01-01

    A prototype system was implemented to demonstrate that CCD's can be applied advantageously to the problem of low power digital storage and particularly to the problem of interfacing widely varying data rates. CCD shift register memories (8K bit) were used to construct a feasibility model 128 K-bit buffer memory system. Serial data that can have rates between 150 kHz and 4.0 MHz can be stored in 4K-bit, randomly-accessible memory blocks. Peak power dissipation during a data transfer is less than 7 W, while idle power is approximately 5.4 W. The system features automatic data input synchronization with the recirculating CCD memory block start address. System expansion to accommodate parallel inputs or a greater number of memory blocks can be performed in a modular fashion. Since the control logic does not increase proportionally to increase in memory capacity, the power requirements per bit of storage can be reduced significantly in a larger system.

  12. SU-C-19A-01: A Simple Deep Inspiration Breath Hold System

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

    Rasmussen, B; Kaznowski, L; Blackburn, J

    2014-06-15

    Purpose: Deep Inspiration Breath Hold (DIBH) Radiation therapy for left sided breast can reduce dose to the lungs and heart. The purpose of this work is to illustrate how to implement a simple method of DIBH for simulation and treatment using equipment readily available in most radiation oncology clinics. Methods: For simulation and treatment, a foam block is placed on the patient's abdomen or chest and a horizontal laser mounted on a movable slide is aimed at the center of the foam block. After a coaching session the block is marked at the average free breathing position and average DIBHmore » position. The position of block relative to laser can be seen by the patient via prism glasses as well as the radiation therapists via a video camera system. Simulation CT scans and treatment delivery are performed under DIBH conditions. Imaging and treatment are performed by manually turning the beam on once the patient has achieved DIBH after being given verbal instructions. Results: Manually triggered imaging was used daily to verify DIBH reproducibility for all patients treated using this system. Sets of before and during port images were used to ensure patient position was appropriate for treatment. Results of the laser on block method were compared to a sister facility using surface mapping techniques for DIBH and the two methods were found to have clinically equivalent reproducibility. Conclusion: The laser and block system was found to be simple to implement and robust during patient treatment. This system can be created from readily available materials at low cost and provides adequate feedback to patient and therapists. During treatment images document the reproducibility of setup and give confidence to clinicians that this method is reproducible from day to day.« less

  13. Development of measurement system for gauge block interferometer

    NASA Astrophysics Data System (ADS)

    Chomkokard, S.; Jinuntuya, N.; Wongkokua, W.

    2017-09-01

    We developed a measurement system for collecting and analyzing the fringe pattern images from a gauge block interferometer. The system was based on Raspberry Pi which is an open source system with python programming and opencv image manipulation library. The images were recorded by the Raspberry Pi camera with five-megapixel capacity. The noise of images was suppressed for the best result in analyses. The low noise images were processed to find the edge of fringe patterns using the contour technique for the phase shift analyses. We tested our system with the phase shift patterns between a gauge block and a reference plate. The phase shift patterns were measured by a Twyman-Green type of interferometer using the He-Ne laser with the temperature controlled at 20.0 °C. The results of the measurement will be presented and discussed.

  14. 48 CFR 52.247-58 - Loading, Blocking, and Bracing of Freight Car Shipments.

    Code of Federal Regulations, 2014 CFR

    2014-10-01

    ... Bracing of Freight Car Shipments. 52.247-58 Section 52.247-58 Federal Acquisition Regulations System... Text of Provisions and Clauses 52.247-58 Loading, Blocking, and Bracing of Freight Car Shipments. As... be shipped in carload lots by rail: Loading, Blocking, and Bracing of Freight Car Shipments (APR 1984...

  15. 48 CFR 52.247-58 - Loading, Blocking, and Bracing of Freight Car Shipments.

    Code of Federal Regulations, 2011 CFR

    2011-10-01

    ... Bracing of Freight Car Shipments. 52.247-58 Section 52.247-58 Federal Acquisition Regulations System... Text of Provisions and Clauses 52.247-58 Loading, Blocking, and Bracing of Freight Car Shipments. As... be shipped in carload lots by rail: Loading, Blocking, and Bracing of Freight Car Shipments (APR 1984...

  16. 48 CFR 52.247-58 - Loading, Blocking, and Bracing of Freight Car Shipments.

    Code of Federal Regulations, 2013 CFR

    2013-10-01

    ... Bracing of Freight Car Shipments. 52.247-58 Section 52.247-58 Federal Acquisition Regulations System... Text of Provisions and Clauses 52.247-58 Loading, Blocking, and Bracing of Freight Car Shipments. As... be shipped in carload lots by rail: Loading, Blocking, and Bracing of Freight Car Shipments (APR 1984...

  17. 48 CFR 52.247-58 - Loading, Blocking, and Bracing of Freight Car Shipments.

    Code of Federal Regulations, 2012 CFR

    2012-10-01

    ... Bracing of Freight Car Shipments. 52.247-58 Section 52.247-58 Federal Acquisition Regulations System... Text of Provisions and Clauses 52.247-58 Loading, Blocking, and Bracing of Freight Car Shipments. As... be shipped in carload lots by rail: Loading, Blocking, and Bracing of Freight Car Shipments (APR 1984...

  18. A transformation booster sequence (TBS) from Petunia hybrida functions as an enhancer-blocking insulator in Arabidopsis thaliana

    USDA-ARS?s Scientific Manuscript database

    While a great deal of research has been dedicated towards the identification and characterization of enhancer-blocking insulators in animal systems, there is a paucity of information concerning these elements in plants. Because there appears to be some overlap in the properties of enhancer-blocking...

  19. 48 CFR 52.247-58 - Loading, Blocking, and Bracing of Freight Car Shipments.

    Code of Federal Regulations, 2010 CFR

    2010-10-01

    ... be shipped in carload lots by rail: Loading, Blocking, and Bracing of Freight Car Shipments (APR 1984... Bracing of Freight Car Shipments. 52.247-58 Section 52.247-58 Federal Acquisition Regulations System... Text of Provisions and Clauses 52.247-58 Loading, Blocking, and Bracing of Freight Car Shipments. As...

  20. 29 CFR 1926.1501 - Cranes and derricks.

    Code of Federal Regulations, 2011 CFR

    2011-07-01

    ..., chains, or other reciprocating, rotating, or other moving parts or equipment shall be guarded if such... more than one hoisting unit, each hoist shall have its rated load marked on it or its load block, and... contact between the load block or overhaul ball and the boom tip (anti-two-blocking device), or a system...

  1. 76 FR 312 - Notice of Funds Availability (NOFA) Inviting Applications for the Specialty Crop Block Grant...

    Federal Register 2010, 2011, 2012, 2013, 2014

    2011-01-04

    ... Specialty Crop Block Grant Program-Farm Bill (SCBGP-FB) AGENCY: Agricultural Marketing Service, USDA. ACTION... systems; assisting all entities in the specialty crop distribution chain in developing ``Good Agricultural... Crop Block Grant Program (SCBGP). Identify by project title if an award was made to either a socially...

  2. Field Emission Cold Cathode Devices Based on Eutectic Systems

    DTIC Science & Technology

    1981-07-01

    8217RADC-TR-811-170 ’,Final Technical Report July 1981 FIELD EMISSION COLD CATHODE DEVICES BASED ON EUTECTIC SYSTEMS Fulmer Research Institute Ltd...and identify by block numrber) Field Emission Eutectic Systems Cold Cathode Rod Eutectics Electron Emitter Array Directionally Solidified Eutectics...Identify by block number) A survey has been made of the performance as field emission cold cathodes of selected refractory materials fabricated as

  3. Personal Identification Using Fingernail Image Based on Correlation of Density Block

    NASA Astrophysics Data System (ADS)

    Noda, Mayumi; Saitoh, Fumihiko

    This paper proposes an authentication using fingernail images by using the block segmentation matching. A fingernail is assumed to be a new physical character that is used for biometrics authentication. The proposed system is more effective than fingerprint authentication where psychological resistance and conformability are required. Since the block segmentation matching is useful for occlusion of an object, it is assumed to be robust to a partial change of fingernail. It is expected to enhance the difference of fingernails between persons. The experimental images of various lengths of fingernail and painted manicure were used for evaluation of system performance. The experimental results show that the proposed system obtains the sufficient accuracy to certificate individuals.

  4. The JPL near-real-time VLBI system and its application to clock synchronization and earth orientation measurements

    NASA Technical Reports Server (NTRS)

    Callahan, P. S.; Eubanks, T. M.; Roth, M. G.; Steppe, J. A.; Esposito, P. B.

    1983-01-01

    The JPL near-real-time VLBI system called Block I is discussed. The hardware and software of the system are described, and the Time and Earth Motion Precision Observations (TEMPO) which utilize Block I are discussed. These observations are designed to provide interstation clock synchronization to 10 nsec and to determine earth orientation (UT1 and polar motion - UTPM) to 30 cm or better in each component. TEMPO results for clock synchronization and UTPM are presented with data from the July 1980-August 1981 analyzed using the most recent JPL solution software and source catalog. Future plans for TEMPO and Block I are discussed.

  5. Truncal blocks for perioperative pain management: a review of the literature and evolving techniques.

    PubMed

    Go, Ramon; Huang, Yolanda Y; Weyker, Paul D; Webb, Christopher Aj

    2016-10-01

    As the American healthcare system continues to evolve and reimbursement becomes tied to value-based incentive programs, perioperative pain management will become increasingly important. Regional anesthetic techniques are only one component of a successful multimodal pain regimen. In recent years, the use of peripheral and paraneuraxial blocks to provide chest wall and abdominal analgesia has gained popularity. When used within a multimodal regimen, truncal blocks may provide similar analgesia when compared with other regional anesthetic techniques. While there are other reviews that cover this topic, our review will also highlight the emerging role for serratus plane blocks, pectoral nerve blocks and quadratus lumborum blocks in providing thoracic and abdominal analgesia.

  6. NANOSTRUCTURED METAL OXIDE CATALYSTS VIA BUILDING BLOCK SYNTHESES

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

    Craig E. Barnes

    2013-03-05

    A broadly applicable methodology has been developed to prepare new single site catalysts on silica supports. This methodology requires of three critical components: a rigid building block that will be the main structural and compositional component of the support matrix; a family of linking reagents that will be used to insert active metals into the matrix as well as cross link building blocks into a three dimensional matrix; and a clean coupling reaction that will connect building blocks and linking agents together in a controlled fashion. The final piece of conceptual strategy at the center of this methodology involves dosingmore » the building block with known amounts of linking agents so that the targeted connectivity of a linking center to surrounding building blocks is obtained. Achieving targeted connectivities around catalytically active metals in these building block matrices is a critical element of the strategy by which single site catalysts are obtained. This methodology has been demonstrated with a model system involving only silicon and then with two metal-containing systems (titanium and vanadium). The effect that connectivity has on the reactivity of atomically dispersed titanium sites in silica building block matrices has been investigated in the selective oxidation of phenols to benezoquinones. 2-connected titanium sites are found to be five times as active (i.e. initial turnover frequencies) than 4-connected titanium sites (i.e. framework titanium sites).« less

  7. Ice/water slurry blocking phenomenon at a tube orifice.

    PubMed

    Hirochi, Takero; Yamada, Shuichi; Shintate, Tuyoshi; Shirakashi, Masataka

    2002-10-01

    The phenomenon of ice-particle/water mixture blocking flow through a pipeline is a problem that needs to be solved before mixture flow can be applied for practical use in cold energy transportation in a district cooling system. In this work, the blocking mechanism of ice-particle slurry at a tube orifice is investigated and a criterion for blocking is presented. The cohesive nature of ice particles is shown to cause compressed plug type blocking and the compressive yield stress of a particle cluster is presented as a measure for the cohesion strength of ice particles.

  8. Domain modeling and grid generation for multi-block structured grids with application to aerodynamic and hydrodynamic configurations

    NASA Technical Reports Server (NTRS)

    Spekreijse, S. P.; Boerstoel, J. W.; Vitagliano, P. L.; Kuyvenhoven, J. L.

    1992-01-01

    About five years ago, a joint development was started of a flow simulation system for engine-airframe integration studies on propeller as well as jet aircraft. The initial system was based on the Euler equations and made operational for industrial aerodynamic design work. The system consists of three major components: a domain modeller, for the graphical interactive subdivision of flow domains into an unstructured collection of blocks; a grid generator, for the graphical interactive computation of structured grids in blocks; and a flow solver, for the computation of flows on multi-block grids. The industrial partners of the collaboration and NLR have demonstrated that the domain modeller, grid generator and flow solver can be applied to simulate Euler flows around complete aircraft, including propulsion system simulation. Extension to Navier-Stokes flows is in progress. Delft Hydraulics has shown that both the domain modeller and grid generator can also be applied successfully for hydrodynamic configurations. An overview is given about the main aspects of both domain modelling and grid generation.

  9. Local temperature in quantum thermal states

    NASA Astrophysics Data System (ADS)

    García-Saez, Artur; Ferraro, Alessandro; Acín, Antonio

    2009-05-01

    We consider blocks of quantum spins in a chain at thermal equilibrium, focusing on their properties from a thermodynamical perspective. In a classical system the temperature behaves as an intensive magnitude, above a certain block size, regardless of the actual value of the temperature itself. However, a deviation from this behavior is expected in quantum systems. In particular, we see that under some conditions the description of the blocks as thermal states with the same global temperature as the whole chain fails. We analyze this issue by employing the quantum fidelity as a figure of merit, singling out in detail the departure from the classical behavior. As it may be expected, we see that quantum features are more prominent at low temperatures and are affected by the presence of zero-temperature quantum phase transitions. Interestingly, we show that the blocks can be considered indeed as thermal states with a high fidelity, provided an effective local temperature is properly identified. Such a result may originate from typical properties of reduced subsystems of energy-constrained Hilbert spaces. Finally, the relation between local and global temperatures is analyzed as a function of the size of the blocks and the system parameters.

  10. A Fully Implanted Drug Delivery System for Peripheral Nerve Blocks in Behaving Animals

    PubMed Central

    Pohlmeyer, Eric A.; Jordon, Luke R.; Kim, Peter; Miller, Lee E.

    2009-01-01

    Inhibiting peripheral nerve function can be useful for many studies of the nervous system or motor control. Accomplishing this in a temporary fashion in animal models by using peripheral nerve blocks permits studies of the immediate effects of the loss, and/or any resulting short-term changes and adaptations in behavior or motor control, while avoiding the complications commonly associated with permanent lesions, such as sores or self-mutilation. We have developed a method of quickly and repeatedly inducing temporary, controlled motor deficits in rhesus macaque monkeys via a chronically implanted drug delivery system. This assembly consists of a nerve cuff and a subdermal injection dome, and has proved effective for delivering local anesthetics directly to peripheral nerves for many months. Using this assembly for median and ulnar nerve blocks routinely resulted in over 80% losses in hand and wrist strength for rhesus monkeys. The assembly was also effective for inducing ambulatory motor deficits in rabbits through blocks of the sciatic nerve. Interestingly, while standard anesthetics were sufficient for the rabbit nerve blocks, the inclusion of epinephrine was essential for achieving significant motor blockade in the monkeys. PMID:19524613

  11. Block correlated second order perturbation theory with a generalized valence bond reference function.

    PubMed

    Xu, Enhua; Li, Shuhua

    2013-11-07

    The block correlated second-order perturbation theory with a generalized valence bond (GVB) reference (GVB-BCPT2) is proposed. In this approach, each geminal in the GVB reference is considered as a "multi-orbital" block (a subset of spin orbitals), and each occupied or virtual spin orbital is also taken as a single block. The zeroth-order Hamiltonian is set to be the summation of the individual Hamiltonians of all blocks (with explicit two-electron operators within each geminal) so that the GVB reference function and all excited configuration functions are its eigenfunctions. The GVB-BCPT2 energy can be directly obtained without iteration, just like the second order Mo̸ller-Plesset perturbation method (MP2), both of which are size consistent. We have applied this GVB-BCPT2 method to investigate the equilibrium distances and spectroscopic constants of 7 diatomic molecules, conformational energy differences of 8 small molecules, and bond-breaking potential energy profiles in 3 systems. GVB-BCPT2 is demonstrated to have noticeably better performance than MP2 for systems with significant multi-reference character, and provide reasonably accurate results for some systems with large active spaces, which are beyond the capability of all CASSCF-based methods.

  12. High-performance serial block-face SEM of nonconductive biological samples enabled by focal gas injection-based charge compensation.

    PubMed

    Deerinck, T J; Shone, T M; Bushong, E A; Ramachandra, R; Peltier, S T; Ellisman, M H

    2018-05-01

    A longstanding limitation of imaging with serial block-face scanning electron microscopy is specimen surface charging. This charging is largely due to the difficulties in making biological specimens and the resins in which they are embedded sufficiently conductive. Local accumulation of charge on the specimen surface can result in poor image quality and distortions. Even minor charging can lead to misalignments between sequential images of the block-face due to image jitter. Typically, variable-pressure SEM is used to reduce specimen charging, but this results in a significant reduction to spatial resolution, signal-to-noise ratio and overall image quality. Here we show the development and application of a simple system that effectively mitigates specimen charging by using focal gas injection of nitrogen over the sample block-face during imaging. A standard gas injection valve is paired with a precisely positioned but retractable application nozzle, which is mechanically coupled to the reciprocating action of the serial block-face ultramicrotome. This system enables the application of nitrogen gas precisely over the block-face during imaging while allowing the specimen chamber to be maintained under high vacuum to maximise achievable SEM image resolution. The action of the ultramicrotome drives the nozzle retraction, automatically moving it away from the specimen area during the cutting cycle of the knife. The device described was added to a Gatan 3View system with minimal modifications, allowing high-resolution block-face imaging of even the most charge prone of epoxy-embedded biological samples. © 2017 The Authors Journal of Microscopy © 2017 Royal Microscopical Society.

  13. Complete modeling for systems of a marine diesel engine

    NASA Astrophysics Data System (ADS)

    Nahim, Hassan Moussa; Younes, Rafic; Nohra, Chadi; Ouladsine, Mustapha

    2015-03-01

    This paper presents a simulator model of a marine diesel engine based on physical, semi-physical, mathematical and thermodynamic equations, which allows fast predictive simulations. The whole engine system is divided into several functional blocks: cooling, lubrication, air, injection, combustion and emissions. The sub-models and dynamic characteristics of individual blocks are established according to engine working principles equations and experimental data collected from a marine diesel engine test bench for SIMB Company under the reference 6M26SRP1. The overall engine system dynamics is expressed as a set of simultaneous algebraic and differential equations using sub-blocks and S-Functions of Matlab/Simulink. The simulation of this model, implemented on Matlab/Simulink has been validated and can be used to obtain engine performance, pressure, temperature, efficiency, heat release, crank angle, fuel rate, emissions at different sub-blocks. The simulator will be used, in future work, to study the engine performance in faulty conditions, and can be used to assist marine engineers in fault diagnosis and estimation (FDI) as well as designers to predict the behavior of the cooling system, lubrication system, injection system, combustion, emissions, in order to optimize the dimensions of different components. This program is a platform for fault simulator, to investigate the impact on sub-blocks engine's output of changing values for faults parameters such as: faulty fuel injector, leaky cylinder, worn fuel pump, broken piston rings, a dirty turbocharger, dirty air filter, dirty air cooler, air leakage, water leakage, oil leakage and contamination, fouling of heat exchanger, pumps wear, failure of injectors (and many others).

  14. Comparison of success rates, learning curves, and inter-subject performance variability of robot-assisted and manual ultrasound-guided nerve block needle guidance in simulation.

    PubMed

    Morse, J; Terrasini, N; Wehbe, M; Philippona, C; Zaouter, C; Cyr, S; Hemmerling, T M

    2014-06-01

    This study focuses on a recently developed robotic nerve block system and its impact on learning regional anaesthesia skills. We compared success rates, learning curves, performance times, and inter-subject performance variability of robot-assisted vs manual ultrasound (US)-guided nerve block needle guidance. The hypothesis of this study is that robot assistance will result in faster skill acquisition than manual needle guidance. Five co-authors with different experience with nerve blocks and the robotic system performed both manual and robot-assisted, US-guided nerve blocks on two different nerves of a nerve phantom. Ten trials were performed for each of the four procedures. Time taken to move from a shared starting position till the needle was inserted into the target nerve was defined as the performance time. A successful block was defined as the insertion of the needle into the target nerve. Average performance times were compared using analysis of variance. P<0.05 was considered significant. Data presented as mean (standard deviation). All blocks were successful. There were significant differences in performance times between co-authors to perform the manual blocks, either superficial (P=0.001) or profound (P=0.0001); no statistical difference between co-authors was noted for the robot-assisted blocks. Linear regression indicated that the average decrease in time between consecutive trials for robot-assisted blocks of 1.8 (1.6) s was significantly (P=0.007) greater than the decrease for manual blocks of 0.3 (0.3) s. Robot assistance of nerve blocks allows for faster learning of needle guidance over manual positioning and reduces inter-subject performance variability. © The Author [2014]. Published by Oxford University Press on behalf of the British Journal of Anaesthesia. All rights reserved. For Permissions, please email: journals.permissions@oup.com.

  15. Using Systems Thinking to Evaluate Formative Feedback in UK Higher Education: The Case of Classroom Response Technology

    ERIC Educational Resources Information Center

    Pagano, Rosane; Paucar-Caceres, Alberto

    2013-01-01

    Providing high quality formative feedback to large and very diverse cohorts of students taking short intensive blocks of teaching (block release) has become crucial in management education provision. The paper proposes the exploitation of classroom response technology (CRT) to evaluate learning activities of students taking block release modules.…

  16. Interscalene brachial plexus blocks under general anesthesia in children: is this safe practice?: A report from the Pediatric Regional Anesthesia Network (PRAN).

    PubMed

    Taenzer, Andreas; Walker, Benjamin J; Bosenberg, Adrian T; Krane, Elliot J; Martin, Lynn D; Polaner, David M; Wolf, Christie; Suresh, Santhanam

    2014-01-01

    A practice advisory on regional anesthesia in children in 2008, published in this journal, supported the placement of regional blocks in children under general anesthesia (GA). Interscalene brachial plexus (IS) blocks were specifically excluded, based on case reports (level 3 evidence) of injury, which occurred predominantly in heavily sedated or anesthetized adult patients. Apart from case reports, there is a paucity of data that explore the safety of IS blocks placed in patients under GA, and the level of evidence available on which to base recommendations is limited. Querying the database of the Pediatric Regional Anesthesia Network (PRAN), we report on the incidence of postoperative neurological symptoms, local anesthetic systemic toxicity, and other reported adverse events in children receiving IS blocks under GA or sedated. A total of 518 interscalene blocks were performed, 390 under GA and 123 with the patient sedated or awake (5 cases had missing status); 472 of these were single injection, and 46 involved the placement of infusion catheters. Eighty-eight percent of blocks were placed with ultrasound guidance, 7.7% with no location device, and 2.5% with a nerve stimulator. No local anesthetic systemic toxicity, postoperative neurological symptoms, cardiovascular complications, or dural puncture was reported in this cohort. There were 1 vascular puncture and 1 postoperative infection. These negative results are compatible with 0 to 7.7/1000 events for each of these complications for IS blocks placed under GA. There was no paralysis, motor block, or sensory deficit beyond the expected block duration time. Analyzing interscalene blocks in children placed under GA, we identified no serious adverse events. The upper limit of the confidence interval for these events is similar to that in awake or sedated adults receiving IS blocks. Based on these prospectively collected data, placement of IS blocks under GA in children is no less safe than placement in awake adults, calling into question the American Society of Regional Anesthesia and Pain Medicine advisory proscribing GA during IS block in pediatric patients.

  17. Error Propagation in a System Model

    NASA Technical Reports Server (NTRS)

    Schloegel, Kirk (Inventor); Bhatt, Devesh (Inventor); Oglesby, David V. (Inventor); Madl, Gabor (Inventor)

    2015-01-01

    Embodiments of the present subject matter can enable the analysis of signal value errors for system models. In an example, signal value errors can be propagated through the functional blocks of a system model to analyze possible effects as the signal value errors impact incident functional blocks. This propagation of the errors can be applicable to many models of computation including avionics models, synchronous data flow, and Kahn process networks.

  18. The Changeable Block Distance System Analysis

    NASA Astrophysics Data System (ADS)

    Lewiński, Andrzej; Toruń, Andrzej

    The paper treats about efficiency analysis in Changeable Block Distance (CBD) System connected with wireless positioning and control of train. The analysis is based on modeling of typical ERTMS line and comparison with actual and future traffic. The calculations are related to assumed parameters of railway traffic corresponding to real time - table of distance Psary - Góra Włodowska from CMK line equipped in classic, ETCS Level 1 and ETCS with CBD systems.

  19. Novel Noninvasive Brain Disease Detection System Using a Facial Image Sensor

    PubMed Central

    Shu, Ting; Zhang, Bob; Tang, Yuan Yan

    2017-01-01

    Brain disease including any conditions or disabilities that affect the brain is fast becoming a leading cause of death. The traditional diagnostic methods of brain disease are time-consuming, inconvenient and non-patient friendly. As more and more individuals undergo examinations to determine if they suffer from any form of brain disease, developing noninvasive, efficient, and patient friendly detection systems will be beneficial. Therefore, in this paper, we propose a novel noninvasive brain disease detection system based on the analysis of facial colors. The system consists of four components. A facial image is first captured through a specialized sensor, where four facial key blocks are next located automatically from the various facial regions. Color features are extracted from each block to form a feature vector for classification via the Probabilistic Collaborative based Classifier. To thoroughly test the system and its performance, seven facial key block combinations were experimented. The best result was achieved using the second facial key block, where it showed that the Probabilistic Collaborative based Classifier is the most suitable. The overall performance of the proposed system achieves an accuracy −95%, a sensitivity −94.33%, a specificity −95.67%, and an average processing time (for one sample) of <1 min at brain disease detection. PMID:29292716

  20. Communications Effects Server (CES) Model for Systems Engineering Research

    DTIC Science & Technology

    2012-01-31

    Visualization Tool Interface «logical» HLA Tool Interface «logical» DIS Tool Interface «logical» STK Tool Interface «module» Execution Kernels «logical...interoperate with STK when running simulations. GUI Components  Architect – The Architect represents the main network design and visualization ...interest» CES «block» Third Party Visualization Tool «block» Third Party Analysis Tool «block» Third Party Text Editor «block» HLA Tools Analyst User Army

  1. Experimental scheme and restoration algorithm of block compression sensing

    NASA Astrophysics Data System (ADS)

    Zhang, Linxia; Zhou, Qun; Ke, Jun

    2018-01-01

    Compressed Sensing (CS) can use the sparseness of a target to obtain its image with much less data than that defined by the Nyquist sampling theorem. In this paper, we study the hardware implementation of a block compression sensing system and its reconstruction algorithms. Different block sizes are used. Two algorithms, the orthogonal matching algorithm (OMP) and the full variation minimum algorithm (TV) are used to obtain good reconstructions. The influence of block size on reconstruction is also discussed.

  2. ETARA PC version 3.3 user's guide: Reliability, availability, maintainability simulation model

    NASA Technical Reports Server (NTRS)

    Hoffman, David J.; Viterna, Larry A.

    1991-01-01

    A user's manual describing an interactive, menu-driven, personal computer based Monte Carlo reliability, availability, and maintainability simulation program called event time availability reliability (ETARA) is discussed. Given a reliability block diagram representation of a system, ETARA simulates the behavior of the system over a specified period of time using Monte Carlo methods to generate block failure and repair intervals as a function of exponential and/or Weibull distributions. Availability parameters such as equivalent availability, state availability (percentage of time as a particular output state capability), continuous state duration and number of state occurrences can be calculated. Initial spares allotment and spares replenishment on a resupply cycle can be simulated. The number of block failures are tabulated both individually and by block type, as well as total downtime, repair time, and time waiting for spares. Also, maintenance man-hours per year and system reliability, with or without repair, at or above a particular output capability can be calculated over a cumulative period of time or at specific points in time.

  3. New database for improving virtual system “body-dress”

    NASA Astrophysics Data System (ADS)

    Yan, J. Q.; Zhang, S. C.; Kuzmichev, V. E.; Adolphe, D. C.

    2017-10-01

    The aim of this exploration is to develop a new database of solid algorithms and relations between the dress fit and the fabric mechanical properties, the pattern block construction for improving the reality of virtual system “body-dress”. In virtual simulation, the system “body-clothing” sometimes shown distinct results with reality, especially when important changes in pattern block and fabrics were involved. In this research, to enhance the simulation process, diverse fit parameters were proposed: bottom height of dress, angle of front center contours, air volume and its distribution between dress and dummy. Measurements were done and optimized by ruler, camera, 3D body scanner image processing software and 3D modeling software. In the meantime, pattern block indexes were measured and fabric properties were tested by KES. Finally, the correlation and linear regression equations between indexes of fabric properties, pattern blocks and fit parameters were investigated. In this manner, new database could be extended in programming modules of virtual design for more realistic results.

  4. MedBlock: Efficient and Secure Medical Data Sharing Via Blockchain.

    PubMed

    Fan, Kai; Wang, Shangyang; Ren, Yanhui; Li, Hui; Yang, Yintang

    2018-06-21

    With the development of electronic information technology, electronic medical records (EMRs) have been a common way to store the patients' data in hospitals. They are stored in different hospitals' databases, even for the same patient. Therefore, it is difficult to construct a summarized EMR for one patient from multiple hospital databases due to the security and privacy concerns. Meanwhile, current EMRs systems lack a standard data management and sharing policy, making it difficult for pharmaceutical scientists to develop precise medicines based on data obtained under different policies. To solve the above problems, we proposed a blockchain-based information management system, MedBlock, to handle patients' information. In this scheme, the distributed ledger of MedBlock allows the efficient EMRs access and EMRs retrieval. The improved consensus mechanism achieves consensus of EMRs without large energy consumption and network congestion. In addition, MedBlock also exhibits high information security combining the customized access control protocols and symmetric cryptography. MedBlock can play an important role in the sensitive medical information sharing.

  5. Kinematics and mechanics of tectonic block rotations

    NASA Technical Reports Server (NTRS)

    Nur, Amos; Scotti, Oona; Ron, Hagai

    1989-01-01

    Paleomagnetic, structural geology, and rock mechanics data are combined to explore the validity of the block rotation concept and its significance. The analysis is based on data from (1) Northern Israel, where fault slip and spacing are used to predict block rotation; (2) the Mojave Desert, with well-documented strike-slip fault sets, organized in at least three major domains; (3) the Lake Mead, Nevada, fault system with well-defined sets of strike-slip faults, which, in contrast to the Mojave region, are surrounded with domains of normal faults; and (4) the San Gabriel Mountains domain with a multiple set of strike-slip faults. It is found that block rotations can have a profound influence on the interpretation of geodetic measurements and the inversion of geodetic data, especially the type collected in GPS surveys. Furthermore, block rotations and domain boundaries may be involved in creating the heterogeneities along active fault systems which are responsible for the initiation and termination of earthquake rupture.

  6. Influence of Nanostructure on the Exciton Dynamics of Multichromophore Donor–Acceptor Block Copolymers

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

    Xia, Jianlong; Busby, Erik; Sanders, Samuel N.

    Here, we explore the synthesis and photophysics of nanostructured block copolymers that mimic light-harvesting complexes. We find that the combination of a polar and electron-rich boron dipyrromethene (BODIPY) block with a nonpolar electron-poor perylene diimide (PDI) block yields a polymer that self-assembles into ordered “nanoworms”. Numerical simulations are used to determine optimal compositions to achieve robust self-assembly. Photoluminescence spectroscopy is used to probe the rich exciton dynamics in these systems. Using controls, such as homopolymers and random copolymers, we analyze the mechanisms of the photoluminescence from these polymers. With this understanding it allows us to probe in detail the photophysicsmore » of the block copolymers, including the effects of their self-assembly into nanostructures on their excited-state properties. Similar to natural systems, ordered nanostructures result in properties that are starkly different than the properties of free polymers in solution, such as enhanced rates of electronic energy transfer and elimination of excitonic emission from disordered PDI trap states.« less

  7. Influence of Nanostructure on the Exciton Dynamics of Multichromophore Donor–Acceptor Block Copolymers

    DOE PAGES

    Xia, Jianlong; Busby, Erik; Sanders, Samuel N.; ...

    2017-03-27

    Here, we explore the synthesis and photophysics of nanostructured block copolymers that mimic light-harvesting complexes. We find that the combination of a polar and electron-rich boron dipyrromethene (BODIPY) block with a nonpolar electron-poor perylene diimide (PDI) block yields a polymer that self-assembles into ordered “nanoworms”. Numerical simulations are used to determine optimal compositions to achieve robust self-assembly. Photoluminescence spectroscopy is used to probe the rich exciton dynamics in these systems. Using controls, such as homopolymers and random copolymers, we analyze the mechanisms of the photoluminescence from these polymers. With this understanding it allows us to probe in detail the photophysicsmore » of the block copolymers, including the effects of their self-assembly into nanostructures on their excited-state properties. Similar to natural systems, ordered nanostructures result in properties that are starkly different than the properties of free polymers in solution, such as enhanced rates of electronic energy transfer and elimination of excitonic emission from disordered PDI trap states.« less

  8. Expansion and improvements of the FORMA system for response and load analysis. Volume 1: Programming manual

    NASA Technical Reports Server (NTRS)

    Wohlen, R. L.

    1976-01-01

    Techniques are presented for the solution of structural dynamic systems on an electronic digital computer using FORMA (FORTRAN Matrix Analysis). FORMA is a library of subroutines coded in FORTRAN 4 for the efficient solution of structural dynamics problems. These subroutines are in the form of building blocks that can be put together to solve a large variety of structural dynamics problems. The obvious advantage of the building block approach is that programming and checkout time are limited to that required for putting the blocks together in the proper order.

  9. A review of the paleomagnetic data from Cretaceous to lower Tertiary rocks from Vietnam, Indochina and South China, and their implications for Cenozoic tectonism in Vietnam and adjacent areas

    NASA Astrophysics Data System (ADS)

    Cung, Thu'ọ'ng Chí; Geissman, John W.

    2013-09-01

    Available paleomagnetic data from rock formations of Cretaceous age from Vietnam, Indochina and South China are compiled and reviewed in the context of their tectonic importance in a common reference frame with respect to Eurasia's coeval paleopoles. Key factors that play an important role in determining the reliability of a paleomagnetic result for utilization in tectonic studies have been taken into consideration and include the absence of evidence of remagnetization, which is a feature common to many rocks in this region. Overall, the Cretaceous paleomagnetic data from the South China Block show that the present geographic position of the South China Block has been relatively stable with respect to Eurasia since the mid-Cretaceous and that the paleomagnetically detected motion of a coherent lithospheric block must be based on the representative data obtained from different specific localities across the block in order to separate more localized, smaller scale deformation from true lithosphere scale motion (translation and/or rotation) of a tectonic block. Cretaceous to early Tertiary paleomagnetic data from the Indochina-Shan Thai Block reveal complex patterns of intra-plate deformation in response to the India-Eurasia collision. Paleomagnetically detected motions from the margins of tectonic blocks are interpreted to mainly reflect displacement of upper crustal blocks due to folding and faulting processes. Rigid, lithosphere scale block rotation is not necessarily supported by the paleomagnetic data. The paleomagnetic results from areas east and south of the Red River fault system suggest that this major transcurrent fault system has had a complicated slip history through much of the Cenozoic and that it does not demarcate completely non-rotated and significantly rotated parts of the crust in this area. However, most paleomagnetic results from areas east and south of the Red River fault system at the latitude of Yunnan Province are consistent with a very modest (about 800 km+-), yet paleomagnetically resolvable southward component of latitudinal translation. Accordingly, given the difficulty in separating actual lithosphere-scale plate motions from those of relatively thin, upper crustal blocks, we advocate extreme caution in interpreting paleomagnetic data from regions such as Indochina where block interaction and strong deformation are known to have occurred.

  10. Block Oriented Simulation System (BOSS)

    NASA Technical Reports Server (NTRS)

    Ratcliffe, Jaimie

    1988-01-01

    Computer simulation is assuming greater importance as a flexible and expedient approach to modeling system and subsystem behavior. Simulation has played a key role in the growth of complex, multiple access space communications such as those used by the space shuttle and the TRW-built Tracking and Data Relay Satellites (TDRS). A powerful new simulator for use in designing and modeling the communication system of NASA's planned Space Station is being developed. Progress to date on the Block (Diagram) Oriented Simulation System (BOSS) is described.

  11. Plumbing Specialist II & III, 3-22. Military Curriculum Materials for Vocational and Technical Education.

    ERIC Educational Resources Information Center

    Ohio State Univ., Columbus. National Center for Research in Vocational Education.

    These military-developed curriculum materials consist of a course description, course chart, plan of instruction, lesson plans, study guides, and workbooks for use in training plumbing specialists II and III. Covered in the course blocks are building waste systems and exterior and interior supply systems. Course block II, on building waste…

  12. Block Transfer: A Private Career College Student's Ladder into the BC Transfer System. Special Report

    ERIC Educational Resources Information Center

    McIvor, Raili

    2010-01-01

    In June 2008 the British Columbia Council on Admissions and Transfer (BCCAT) approved a new policy to publish in the BC Transfer Guide block transfer agreements (BTAs) between BC Transfer System member institutions and private post-secondary institutions accredited by the Private Career Training Institutions Agency (PCTIA). This new policy was…

  13. The Blocking Flap for Ulnar Nerve Instability After In Situ Release: Technique and a Grading System of Ulnar Nerve Instability to Guide Treatment.

    PubMed

    Tang, Peter

    2017-12-01

    In situ ulnar nerve release has been gaining popularity as a simple, effective, and low-morbidity procedure for the treatment of cubital tunnel syndrome. One concern with the technique is how to manage the unstable ulnar nerve after release. It is unclear how much nerve subluxation will lead to problems and surprisingly there is no grading system to assess ulnar nerve instability. I propose such a grading system, as well as a new technique to stabilize the unstable ulnar nerve. The blocking flap technique consists of raising a rectangular flap off the flexor/pronator fascia and attaching it to the posterior subcutaneous flap so that it blocks the nerve from subluxation/dislocation.

  14. Canal Aberration Assessment in Simulated Root Canals: a Comparative Study

    PubMed Central

    Jakupovic, Selma; Konjhodzic, Alma; Brankovic, Lajla Hasic; Korac, Samra; Tahmiscija, Irmina; Dzankovic, Aida; Glamoc, Alma Gavranovic

    2017-01-01

    Aim: The aim of this study was to compare time of preparation and canal aberrations in a simulated root canals after using three different rotary systems: Endostar E5, Endostar E3 and T One File Gold. Materials and Methods: A total of 90 endodontic training blocks were used in this study and divided into three groups consisting of 30 each (n = 30). Blocks processing was performed by thirty dentists without any prior experience in rotary instrumentation techniques. In the first group blocks were prepared using Endostar E5, in second one with Endostar E3 and in third one with T One File Gold system. The preparation time was measured. The postoperative image of each block was taken by stereomicroscope and canal aberrations (ledge and instrument fracture) was recorded. Statistical analysis was done by SPSS software. Results: Instrumentation with T One File Gold system is significantly faster compared to instrumentation with Endostar E5 and Endostar E3 systems (p <0.05). There are no statistically significant differences in the type and number of procedural errors between Endostar E5, Endostar E3 and T One File Gold systems when the operators have no previous experience in rotary instrumentation techniques. Conclusion: Under the conditions of this study, the incidence of examined canal aberrations were similar for all tested systems. The preparation time was significantly shorter with single file system. PMID:28974834

  15. Cryogenic Insulation System

    NASA Technical Reports Server (NTRS)

    Davis, Randall C. (Inventor); Taylor, Allan H. (Inventor); Jackson, L. Robert (Inventor); Mcauliffe, Patrick S. (Inventor)

    1988-01-01

    This invention relates to reusable, low density, high temperature cryogenic foam insulation systems and the process for their manufacture. A pacing technology for liquid hydrogen fueled, high speed aircraft is the development of a fully reusable, flight weight cryogenic insulation system for propellant tank structures. In the invention cryogenic foam insulation is adhesively bonded to the outer wall of the fuel tank structure. The cryogenic insulation consists of square sheets fabricated from an array of abutting square blocks. Each block consists of a sheet of glass cloth adhesively bonded between two layers of polymethacrylimide foam. Each block is wrapped in a vapor impermeable membrane, such as Kapton(R) aluminum Kapton(R), to provide a vapor barrier. Very beneficial results can be obtained by employing the present invention in conjunction with fibrous insulation and an outer aeroshell, a hot fuselage structure with an internal thermal protection system.

  16. Fault-tolerant computer study. [logic designs for building block circuits

    NASA Technical Reports Server (NTRS)

    Rennels, D. A.; Avizienis, A. A.; Ercegovac, M. D.

    1981-01-01

    A set of building block circuits is described which can be used with commercially available microprocessors and memories to implement fault tolerant distributed computer systems. Each building block circuit is intended for VLSI implementation as a single chip. Several building blocks and associated processor and memory chips form a self checking computer module with self contained input output and interfaces to redundant communications buses. Fault tolerance is achieved by connecting self checking computer modules into a redundant network in which backup buses and computer modules are provided to circumvent failures. The requirements and design methodology which led to the definition of the building block circuits are discussed.

  17. A geologic and morphological description of Ishtar terra (Venus)

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

    Sukhanov, A.L.; Kotel'nikov, V.A.; Ostrovskii, M.V.

    The main part of Ishtar Terra east of Maxwell Montes is covered by systems of area dislocations in several directions that are called ''parquet.'' From the structural pictures, 1) a stable central block, 2) smaller peripheral blocks separated from the central block by faults and grabens, 3) zones of mobilized parquet, the matter of which spread down below the slope in a direction away from the central block in the form of plastic flows, and 4) partially ''parquetized'' lava rock masses are distinguished here. The Maxwell Montes were formed as the result of the collision of the central block andmore » the Lakshmi Planum.« less

  18. Photoconductivity enhancement and charge transport properties in ruthenium-containing block copolymer/carbon nanotube hybrids.

    PubMed

    Lo, Kin Cheung; Hau, King In; Chan, Wai Kin

    2018-04-05

    Functional polymer/carbon nanotube (CNT) hybrid materials can serve as a good model for light harvesting systems based on CNTs. This paper presents the synthesis of block copolymer/CNT hybrids and the characterization of their photocurrent responses by both experimental and computational approaches. A series of functional diblock copolymers was synthesized by reversible addition-fragmentation chain transfer polymerizations for the dispersion and functionalization of CNTs. The block copolymers contain photosensitizing ruthenium complexes and modified pyrene-based anchoring units. The photocurrent responses of the polymer/CNT hybrids were measured by photoconductive atomic force microscopy (PCAFM), from which the experimental data were analyzed by vigorous statistical models. The difference in photocurrent response among different hybrids was correlated to the conformations of the hybrids, which were elucidated by molecular dynamics simulations, and the electronic properties of polymers. The photoresponse of the block copolymer/CNT hybrids can be enhanced by introducing an electron-accepting block between the photosensitizing block and the CNT. We have demonstrated that the application of a rigorous statistical methodology can unravel the charge transport properties of these hybrid materials and provide general guidelines for the design of molecular light harvesting systems.

  19. A randomized trial comparing surgeon-administered intraoperative transversus abdominis plane block with anesthesiologist-administered transcutaneous block.

    PubMed

    Narasimhulu, D M; Scharfman, L; Minkoff, H; George, B; Homel, P; Tyagaraj, K

    2018-04-27

    Injection of local anesthetic into the transversus abdominis plane (TAP block) decreases systemic morphine requirements after abdominal surgery. We compared intraoperative surgeon-administered TAP block (surgical TAP) to anesthesiologist-administered transcutaneous ultrasound-guided TAP block (conventional TAP) for post-cesarean analgesia. We hypothesized that surgical TAP blocks would take less time to perform than conventional TAP blocks. We performed a randomized trial, recruiting 41 women undergoing cesarean delivery under neuraxial anesthesia, assigning them to either surgical TAP block (n=20) or conventional TAP block (n=21). Time taken to perform the block was the primary outcome, while postoperative pain scores and 24-hour opioid requirements were secondary outcomes. Student's t-test was used to compare block time and Kruskal-Wallis test opioid consumption and pain-scores. Time taken to perform the block (2.4 vs 12.1 min, P <0.001), and time spent in the operating room after delivery (55.3 vs 77.9 min, P <0.001) were significantly less for surgical TAP. The 24 h morphine consumption (P=0.17) and postoperative pain scores at 4, 8, 24 and 48 h were not significantly different between the groups. Surgical TAP blocks are feasible and less time consuming than conventional TAP blocks, while providing comparable analgesia after cesarean delivery. Copyright © 2018 Elsevier Ltd. All rights reserved.

  20. Adaptive neural control of MIMO nonlinear systems with a block-triangular pure-feedback control structure.

    PubMed

    Chen, Zhenfeng; Ge, Shuzhi Sam; Zhang, Yun; Li, Yanan

    2014-11-01

    This paper presents adaptive neural tracking control for a class of uncertain multiinput-multioutput (MIMO) nonlinear systems in block-triangular form. All subsystems within these MIMO nonlinear systems are of completely nonaffine pure-feedback form and allowed to have different orders. To deal with the nonaffine appearance of the control variables, the mean value theorem is employed to transform the systems into a block-triangular strict-feedback form with control coefficients being couplings among various inputs and outputs. A systematic procedure is proposed for the design of a new singularity-free adaptive neural tracking control strategy. Such a design procedure can remove the couplings among subsystems and hence avoids the possible circular control construction problem. As a consequence, all the signals in the closed-loop system are guaranteed to be semiglobally uniformly ultimately bounded. Moreover, the outputs of the systems are ensured to converge to a small neighborhood of the desired trajectories. Simulation studies verify the theoretical findings revealed in this paper.

  1. Monitoring Thermal Performance of Hollow Bricks with Different Cavity Fillers in Difference Climate Conditions

    NASA Astrophysics Data System (ADS)

    Pavlík, Zbyšek; Jerman, Miloš; Fořt, Jan; Černý, Robert

    2015-03-01

    Hollow brick blocks have found widespread use in the building industry during the last decades. The increasing requirements to the thermal insulation properties of building envelopes given by the national standards in Europe led the brick producers to reduce the production of common solid bricks. Brick blocks with more or less complex systems of internal cavities replaced the traditional bricks and became dominant on the building ceramics market. However, contrary to the solid bricks where the thermal conductivity can easily be measured by standard methods, the complex geometry of hollow brick blocks makes the application of common techniques impossible. In this paper, a steady-state technique utilizing a system of two climatic chambers separated by a connecting tunnel for sample positioning is used for the determination of the thermal conductivity, thermal resistance, and thermal transmittance ( U value) of hollow bricks with the cavities filled by air, two different types of mineral wool, polystyrene balls, and foam polyurethane. The particular brick block is provided with the necessary temperature- and heat-flux sensors and thermally insulated in the tunnel. In the climatic chambers, different temperatures are set. After steady-state conditions are established in the measuring system, the effective thermal properties of the brick block are calculated using the measured data. Experimental results show that the best results are achieved with hydrophilic mineral wool as a cavity filler; the worst performance exhibits the brick block with air-filled cavities.

  2. Bridge effects on light harvesting of a DBfA type polymer system

    NASA Astrophysics Data System (ADS)

    Sun, Sam-Shajing; Hasib, Muhammad; Gavrilenko, Alexander V.; Devan, Joshua; Gavrilenko, Vladimir

    2016-09-01

    Plastic optoelectronic materials and thin film devices are very attractive in future optical sensor and solar energy applications due to their lightweight, flexible shape, high photon absorption coefficients, low cost, and environmental benefits. In this study, optoelectronic properties of D, D/fA blend, DfA, and a series of DBfA type of conjugated block copolymers has been investigated, where D is a donor type PPV conjugated block, B is a non-conjugated and flexible aliphatic hydrocarbon bridge chain containing different number of aliphatic methylene units, and fA is a fluorinated acceptor type PPV conjugated block. The optical absorptions of the D/fA blend, DfA, and DBfAs are typical overlaps of individual absorptions of D and fA blocks, while the solution steady state photoluminescence (PL) emission of D were quenched to different levels in blends and block copolymers, with DBfAs containing one methylene unit bridge (DB1fA) quenched most. This could be attributed to an intra-molecular photo induced electron transfer or charge separation in DBfA systems. Theoretical first principles study of the equilibrium atomic configuration of DfA reveals the existence of twisting angles between the D and fA blocks in DfA stable states which may account for a less PL quenching of DfA as compared to DB1fA. These results are important for designing and developing high efficiency polymer based optoelectronic systems.

  3. Closed Loop Guidance Trade Study for Space Launch System Block-1B Vehicle

    NASA Technical Reports Server (NTRS)

    Von der Porten, Paul; Ahmad, Naeem; Hawkins, Matt

    2018-01-01

    NASA is currently building the Space Launch System (SLS) Block-1 launch vehicle for the Exploration Mission 1 (EM-1) test flight. The design of the next evolution of SLS, Block-1B, is well underway. The Block-1B vehicle is more capable overall than Block-1; however, the relatively low thrust-to-weight ratio of the Exploration Upper Stage (EUS) presents a challenge to the Powered Explicit Guidance (PEG) algorithm used by Block-1. To handle the long burn durations (on the order of 1000 seconds) of EUS missions, two algorithms were examined. An alternative algorithm, OPGUID, was introduced, while modifications were made to PEG. A trade study was conducted to select the guidance algorithm for future SLS vehicles. The chosen algorithm needs to support a wide variety of mission operations: ascent burns to LEO, apogee raise burns, trans-lunar injection burns, hyperbolic Earth departure burns, and contingency disposal burns using the Reaction Control System (RCS). Additionally, the algorithm must be able to respond to a single engine failure scenario. Each algorithm was scored based on pre-selected criteria, including insertion accuracy, algorithmic complexity and robustness, extensibility for potential future missions, and flight heritage. Monte Carlo analysis was used to select the final algorithm. This paper covers the design criteria, approach, and results of this trade study, showing impacts and considerations when adapting launch vehicle guidance algorithms to a broader breadth of in-space operations.

  4. Apollo experience report guidance and control systems: Primary guidance, navigation, and control system development

    NASA Technical Reports Server (NTRS)

    Holley, M. D.; Swingle, W. L.; Bachman, S. L.; Leblanc, C. J.; Howard, H. T.; Biggs, H. M.

    1976-01-01

    The primary guidance, navigation, and control systems for both the lunar module and the command module are described. Development of the Apollo primary guidance systems is traced from adaptation of the Polaris Mark II system through evolution from Block I to Block II configurations; the discussion includes design concepts used, test and qualification programs performed, and major problems encountered. The major subsystems (inertial, computer, and optical) are covered. Separate sections on the inertial components (gyroscopes and accelerometers) are presented because these components represent a major contribution to the success of the primary guidance, navigation, and control system.

  5. The quaternary lidocaine derivative QX-314 in combination with bupivacaine for long-lasting nerve block: Efficacy, toxicity, and the optimal formulation in rats

    PubMed Central

    Zheng, Qingshan; Yang, Xiaolin; Lv, Rong; Ma, Longxiang; Liu, Jin; Zhu, Tao; Zhang, Wensheng

    2017-01-01

    Objective The quaternary lidocaine derivative (QX-314) in combination with bupivacaine can produce long-lasting nerve blocks in vivo, indicating potential clinical application. The aim of the study was to investigate the efficacy, safety, and the optimal formulation of this combination. Methods QX-314 and bupivacaine at different concentration ratios were injected in the vicinity of the sciatic nerve in rats; bupivacaine and saline served as controls (n = 6~10). Rats were inspected for durations of effective sensory and motor nerve blocks, systemic adverse effects, and histological changes of local tissues. Mathematical models were established to reveal drug-interaction, concentration-effect relationships, and the optimal ratio of QX-314 to bupivacaine. Results 0.2~1.5% QX-314 with 0.03~0.5% bupivacaine produced 5.8~23.8 h of effective nerve block; while 0.5% bupivacaine alone was effective for 4 h. No systemic side effects were observed; local tissue reactions were similar to those caused by 0.5% bupivacaine if QX-314 were used < 1.2%. The weighted modification model was successfully established, which revealed that QX-314 was the main active ingredient while bupivacaine was the synergist. The formulation, 0.9% QX-314 plus 0.5% bupivacaine, resulted in 10.1 ± 0.8 h of effective sensory and motor nerve blocks. Conclusion The combination of QX-314 and bupivacaine facilitated prolonged sciatic nerve block in rats with a satisfactory safety profile, maximizing the duration of nerve block without clinically important systemic and local tissue toxicity. It may emerge as an alternative approach to post-operative pain treatment. PMID:28334014

  6. The quaternary lidocaine derivative QX-314 in combination with bupivacaine for long-lasting nerve block: Efficacy, toxicity, and the optimal formulation in rats.

    PubMed

    Yin, Qinqin; Li, Jun; Zheng, Qingshan; Yang, Xiaolin; Lv, Rong; Ma, Longxiang; Liu, Jin; Zhu, Tao; Zhang, Wensheng

    2017-01-01

    The quaternary lidocaine derivative (QX-314) in combination with bupivacaine can produce long-lasting nerve blocks in vivo, indicating potential clinical application. The aim of the study was to investigate the efficacy, safety, and the optimal formulation of this combination. QX-314 and bupivacaine at different concentration ratios were injected in the vicinity of the sciatic nerve in rats; bupivacaine and saline served as controls (n = 6~10). Rats were inspected for durations of effective sensory and motor nerve blocks, systemic adverse effects, and histological changes of local tissues. Mathematical models were established to reveal drug-interaction, concentration-effect relationships, and the optimal ratio of QX-314 to bupivacaine. 0.2~1.5% QX-314 with 0.03~0.5% bupivacaine produced 5.8~23.8 h of effective nerve block; while 0.5% bupivacaine alone was effective for 4 h. No systemic side effects were observed; local tissue reactions were similar to those caused by 0.5% bupivacaine if QX-314 were used < 1.2%. The weighted modification model was successfully established, which revealed that QX-314 was the main active ingredient while bupivacaine was the synergist. The formulation, 0.9% QX-314 plus 0.5% bupivacaine, resulted in 10.1 ± 0.8 h of effective sensory and motor nerve blocks. The combination of QX-314 and bupivacaine facilitated prolonged sciatic nerve block in rats with a satisfactory safety profile, maximizing the duration of nerve block without clinically important systemic and local tissue toxicity. It may emerge as an alternative approach to post-operative pain treatment.

  7. Effects of Grafting Density on Block Polymer Self-Assembly: From Linear to Bottlebrush.

    PubMed

    Lin, Tzu-Pin; Chang, Alice B; Luo, Shao-Xiong; Chen, Hsiang-Yun; Lee, Byeongdu; Grubbs, Robert H

    2017-11-28

    Grafting density is an important structural parameter that exerts significant influences over the physical properties of architecturally complex polymers. In this report, the physical consequences of varying the grafting density (z) were studied in the context of block polymer self-assembly. Well-defined block polymers spanning the linear, comb, and bottlebrush regimes (0 ≤ z ≤ 1) were prepared via grafting-through ring-opening-metathesis polymerization. ω-Norbornenyl poly(d,l-lactide) and polystyrene macromonomers were copolymerized with discrete comonomers in different feed ratios, enabling precise control over both the grafting density and molecular weight. Small-angle X-ray scattering experiments demonstrate that these graft block polymers self-assemble into long-range-ordered lamellar structures. For 17 series of block polymers with variable z, the scaling of the lamellar period with the total backbone degree of polymerization (d* ∼ N bb α ) was studied. The scaling exponent α monotonically decreases with decreasing z and exhibits an apparent transition at z ≈ 0.2, suggesting significant changes in the chain conformations. Comparison of two block polymer systems, one that is strongly segregated for all z (System I) and one that experiences weak segregation at low z (System II), indicates that the observed trends are primarily caused by the polymer architectures, not segregation effects. A model is proposed in which the characteristic ratio (C ∞ ), a proxy for the backbone stiffness, scales with N bb as a function of the grafting density: C ∞ ∼ N bb f(z) . The scaling behavior disclosed herein provides valuable insights into conformational changes with grafting density, thus introducing opportunities for block polymer and material design.

  8. Vibration Analysis of Beam and Block Precast Slab System due to Human Vibrations

    NASA Astrophysics Data System (ADS)

    Chik, T. N. T.; Kamil, M. R. H.; Yusoff, N. A.

    2018-04-01

    Beam and block precast slabs system are very efficient which generally give maximum structural performance where their voids based on the design of the unit soffit block allow a significant reduction of the whole slab self-weight. Initially for some combinations of components or the joint connection of the structural slab, this structural system may be susceptible to excessive vibrations that could effects the performance and also serviceability. Dynamic forces are excited from people walking and jumping which produced vibrations to the slab system in the buildings. Few studies concluded that human induced vibration on precast slabs system may be harmful to structural performance and mitigate the human comfort level. This study will investigate the vibration analysis of beam and block precast slab by using finite element method at the school building. Human activities which are excited from jumping and walking will induce the vibrations signal to the building. Laser Doppler Vibrometer (LDV) was used to measure the dynamic responses of slab towards the vibration sources. Five different points were assigned specifically where each of location will determine the behaviour of the entire slabs. The finite element analyses were developed in ABAQUS software and the data was further processed in MATLAB ModalV to assess the vibration criteria. The results indicated that the beam and block precast systems adequate enough to the vibration serviceability and human comfort criteria. The overall vibration level obtained was fell under VC-E curve which it is generally under the maximum permissible level of vibrations. The vibration level on the slab is acceptable within the limit that have been used by Gordon.

  9. Scale problems in assessment of hydrogeological parameters of groundwater flow models

    NASA Astrophysics Data System (ADS)

    Nawalany, Marek; Sinicyn, Grzegorz

    2015-09-01

    An overview is presented of scale problems in groundwater flow, with emphasis on upscaling of hydraulic conductivity, being a brief summary of the conventional upscaling approach with some attention paid to recently emerged approaches. The focus is on essential aspects which may be an advantage in comparison to the occasionally extremely extensive summaries presented in the literature. In the present paper the concept of scale is introduced as an indispensable part of system analysis applied to hydrogeology. The concept is illustrated with a simple hydrogeological system for which definitions of four major ingredients of scale are presented: (i) spatial extent and geometry of hydrogeological system, (ii) spatial continuity and granularity of both natural and man-made objects within the system, (iii) duration of the system and (iv) continuity/granularity of natural and man-related variables of groundwater flow system. Scales used in hydrogeology are categorised into five classes: micro-scale - scale of pores, meso-scale - scale of laboratory sample, macro-scale - scale of typical blocks in numerical models of groundwater flow, local-scale - scale of an aquifer/aquitard and regional-scale - scale of series of aquifers and aquitards. Variables, parameters and groundwater flow equations for the three lowest scales, i.e., pore-scale, sample-scale and (numerical) block-scale, are discussed in detail, with the aim to justify physically deterministic procedures of upscaling from finer to coarser scales (stochastic issues of upscaling are not discussed here). Since the procedure of transition from sample-scale to block-scale is physically well based, it is a good candidate for upscaling block-scale models to local-scale models and likewise for upscaling local-scale models to regional-scale models. Also the latest results in downscaling from block-scale to sample scale are briefly referred to.

  10. Effects of Grafting Density on Block Polymer Self-Assembly: From Linear to Bottlebrush

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

    Lin, Tzu-Pin; Chang, Alice B.; Luo, Shao-Xiong

    Grafting density is an important structural parameter that imparts significant influences over the physical properties of architecturally complex polymers. In this paper, the physical consequences of varying the grafting density (z) were studied in the context of block polymer self-assembly. Well-defined block polymers spanning the linear, comb, and bottlebrush regimes (0 ≤ z ≤ 1) were prepared via grafting-through ring-opening-metathesis polymerization (ROMP). ω-norbornenyl poly(D,L-lactide) (PLA) and polystyrene (PS) macromonomers were copolymerized with discrete co-monomers in different feed ratios, enabling precise control over the grafting density. Small-angle X-ray scattering (SAXS) experiments demonstrate that these graft block polymers can self-assemble into long-range-orderedmore » lamellar structures. For seventeen series of block polymers with variable z, the scaling of the lamellar period with the total backbone degree of polymerization (d* ~ N bb α) was studied. The scaling exponent α monotonically decreases with decreasing z and exhibits an apparent transition at z ≈ 0.2, suggesting significant changes in the chain conformations. Comparison of two block polymer systems, one that is strongly segregated for all z (System I) and one that experiences weak segregation at low z (System II), indicates that the observed trends are primarily caused by the polymer architectures, instead of segregation strengths. A model is pro-posed in which the characteristic ratio (C ∞), a proxy for the backbone stiffness, scales with N bb as a function of the grafting density: C ∞ ~ N bb f(z). To the best of our knowledge, this report represents the first study of scaling behavior for the self-assembly of block polymers with variable grafting density. Lastly, the relationships disclosed herein provide valuable insights into conformational changes with grafting density, thus introducing new opportunities for future block polymer design.« less

  11. Effects of Grafting Density on Block Polymer Self-Assembly: From Linear to Bottlebrush

    DOE PAGES

    Lin, Tzu-Pin; Chang, Alice B.; Luo, Shao-Xiong; ...

    2017-10-26

    Grafting density is an important structural parameter that imparts significant influences over the physical properties of architecturally complex polymers. In this paper, the physical consequences of varying the grafting density (z) were studied in the context of block polymer self-assembly. Well-defined block polymers spanning the linear, comb, and bottlebrush regimes (0 ≤ z ≤ 1) were prepared via grafting-through ring-opening-metathesis polymerization (ROMP). ω-norbornenyl poly(D,L-lactide) (PLA) and polystyrene (PS) macromonomers were copolymerized with discrete co-monomers in different feed ratios, enabling precise control over the grafting density. Small-angle X-ray scattering (SAXS) experiments demonstrate that these graft block polymers can self-assemble into long-range-orderedmore » lamellar structures. For seventeen series of block polymers with variable z, the scaling of the lamellar period with the total backbone degree of polymerization (d* ~ N bb α) was studied. The scaling exponent α monotonically decreases with decreasing z and exhibits an apparent transition at z ≈ 0.2, suggesting significant changes in the chain conformations. Comparison of two block polymer systems, one that is strongly segregated for all z (System I) and one that experiences weak segregation at low z (System II), indicates that the observed trends are primarily caused by the polymer architectures, instead of segregation strengths. A model is pro-posed in which the characteristic ratio (C ∞), a proxy for the backbone stiffness, scales with N bb as a function of the grafting density: C ∞ ~ N bb f(z). To the best of our knowledge, this report represents the first study of scaling behavior for the self-assembly of block polymers with variable grafting density. Lastly, the relationships disclosed herein provide valuable insights into conformational changes with grafting density, thus introducing new opportunities for future block polymer design.« less

  12. Soil heating and evaporation under extreme conditions: Forest fires and slash pile burns

    NASA Astrophysics Data System (ADS)

    Massman, W. J.

    2011-12-01

    Heating any soil during a sufficiently intense wild fire or prescribed burn can alter soil irreversibly, resulting in many significant and well known, long term biological, chemical, and hydrological effects. To better understand how fire impacts soil, especially considering the increasing probability of wildfires that is being driven by climate change and the increasing use of prescribe burns by land managers, it is important to better understand the dynamics of the coupled heat and moisture transport in soil during these extreme heating events. Furthermore, improving understanding of heat and mass transport during such extreme conditions should also provide insights into the associated transport mechanisms under more normal conditions as well. Here I describe the development of a new model designed to simulate soil heat and moisture transport during fires where the surface heating often ranges between 10,000 and 100,000 Wm-2 for several minutes to several hours. Model performance is tested against laboratory measurements of soil temperature and moisture changes at several depths during controlled heating events created with an extremely intense radiant heater. The laboratory tests employed well described soils with well known physical properties. The model, on the other hand, is somewhat unusual in that it employs formulations for temperature dependencies of the soil specific heat, thermal conductivity, and the water retention curve (relation between soil moisture and soil moisture potential). It also employs a new formulation for the surface evaporation rate as a component of the upper boundary condition, as well as the Newton-Raphson method and the generalized Thomas algorithm for inverting block tri-diagonal matrices to solve for soil temperature and soil moisture potential. Model results show rapid evaporation rates with significant vapor transfer not only to the free atmosphere above the soil, but to lower depths of the soil, where the vapor re-condenses ahead of the heating front. Consequently the trajectory of the solution (soil volumetric water content versus soil temperature) is very unusual and highly nonlinear, which may explain why more traditional methods (i.e., those based on finite difference or finite element approaches) tend to show more numerical instabilities than the Newton-Raphson method when used to model these extreme conditions. But, despite the intuitive and qualitative appeal of the model's numerical solution, it underestimates the rate of soil moisture loss observed during the laboratory trials, although the soil temperatures are reasonably well simulated.

  13. Unexpected delayed complete atrioventricular block after Cardioband implantation.

    PubMed

    Sorini Dini, Carlotta; Landi, Daniele; Meucci, Francesco; Di Mario, Carlo

    2018-03-06

    The Cardioband system is a transcatheter direct annuloplasty device that is implanted in patients with severe symptomatic functional mitral regurgitation (MR) due to annulus dilatation and high surgical risk. This device covers the posterior two-thirds of the annulus, from the anterolateral to the posteromedial commissure, implanted in close proximity of the left circumflex artery, atrioventricular (AV) conduction system, and coronary sinus. We present the case of an 80-year-old-gentleman with prohibitive surgical risk, treated with Cardioband implantation for functional MR with an evident P1-P2 cleft and P2-P3 indentation, a relative contraindication to MitraClip implantation. We achieved procedural success with significative mitral annulus reduction (30% anteroposterior reduction from 37 to 26 mm) and MR reduction (from grade 4 to grade 1-2). A late onset Mobitz 2 AV block developed after 26 hr and evolved to complete AV block in the following day, requiring definitive biventricular pacemaker (PM). Less than 200 Cardioband implantations have been performed but, to our knowledge, this is the first reported AV block, possibly facilitated by the pre-existing bifascicular block, suggesting the opportunity of prolonged ECG monitoring after Cardioband like any other mechanical transcatheter structural intervention possibly affecting the AV conduction system. © 2018 Wiley Periodicals, Inc.

  14. [Analysis of natural diversity of symbiotic relationships in the Paramecium bursaria--Holospora curviuscula system].

    PubMed

    Skoblo, I I; Makarov, S V; Osipov, D V

    2001-01-01

    Bacteria of the genus Holospora belong to obligatory endonucleobionts of ciliates of the genus Paramecium. The bacteria show specificity towards the particular host species and the types of nuclei they infect: macro- or micronuclei. During a long-term screening of P. bursaria clones, belonging to three different syngens, Holospora inhibited cells of two syngens only. Using the number of host clones and symbiont isolates, it was shown that H. curviuscula was unable to pass successfully through the syngen barrier even under experimental infection. Considering the species level of specificity in Holospora associations of P. caudatum we suggest the existence of a greater evolutionary divergence in P. bursaria syngens than in syngens of P. caudatum. We have revealed that in incompatible combinations "host clone--symbionts isolate" the complicated bacterial life cycle may be blocked at definite stages depending on genetic features of both partners. Thus, the recognition of the full block spectrum could break the continuous infection process down to independently controlled steps. The block spectrum revealed in the system of P. bursaria--H. curviuscula demonstrates its significant similarity to block spectra of other systems within the Holospora--Paramecium complex. A block of transverse binding formation has been first revealed in Holospora dividing in the nucleus.

  15. Kinetic control of block copolymer self-assembly into multicompartment and novel geometry nanoparticles

    NASA Astrophysics Data System (ADS)

    Chen, Yingchao; Wang, Xiaojun; Zhang, Ke; Wooley, Karen; Mays, Jimmy; Percec, Virgil; Pochan, Darrin

    2012-02-01

    Micelles with the segregation of hydrophobic blocks trapped in the same nanoparticle core have been produced through co-self-assembly of two block copolymers in THF/water dilute solution. The dissolution of two block copolymer sharing the same polyacrylic acid PAA blocks in THF undergoes consequent aggregation and phase separation through either slow water titration or quick water addition that triggers the micellar formation. The combination and comparison of the two water addition kinetic pathways are the keys of forming multicompartment structures at high water content. Importantly, the addition of organic diamine provides for acid-base complexation with the PAA side chains which, in turn, plays the key role of trapping unlike hydrophobic blocks from different block copolymers into one nanoparticle core. The kinetic control of solution assembly can be applied to other molecular systems such as dendrimers as well as other block copolymer molecules. Transmission electron microscopy, cryogenic transmission electron microscopy, light scattering have been applied to characterize the micelle structures.

  16. Study of mathematical modeling of communication systems transponders and receivers

    NASA Technical Reports Server (NTRS)

    Walsh, J. R.

    1972-01-01

    The modeling of communication receivers is described at both the circuit detail level and at the block level. The largest effort was devoted to developing new models at the block modeling level. The available effort did not permit full development of all of the block modeling concepts envisioned, but idealized blocks were developed for signal sources, a variety of filters, limiters, amplifiers, mixers, and demodulators. These blocks were organized into an operational computer simulation of communications receiver circuits identified as the frequency and time circuit analysis technique (FATCAT). The simulation operates in both the time and frequency domains, and permits output plots or listings of either frequency spectra or time waveforms from any model block. Transfer between domains is handled with a fast Fourier transform algorithm.

  17. RECALL: A Management Information Retrieval System for the Wang 2200

    DTIC Science & Technology

    1976-11-01

    B-5. APPENDIX B TABLE B-l. VARIABLE DEFINITIONS Name Meaning Data base format R$(l-60) Page of blocks R1 Present block index within page RO...Present page index in memory R2 Number of blocks allowed in memory (60) R3 Last-used character index in present block R1* Number of sectors per page...5) Rl(l- 5) General CO BS(1- 15) L0 LS15 C csd- 12) Cl$(l -12) FOR cond i t ion Number of range pairs Starting record index Ending

  18. Next Generation Operational Control System (OCX)

    DTIC Science & Technology

    2015-12-01

    Operations ( RTO ) and Block 2 RTO in the October 2015 APB. On December 23, 2015 the Program Manager signed a Program Deviation Report declaring a 24-month...slip past the current APB objectives of Milestone C, Block 1 RTO , and 2 RTO . The Air Force is in the process of completing an excursion to the December...Oct 2015 Jul 2018 Jan 2019 Jul 20201 (Ch-2) Block 1 RTO Oct 2016 Jul 2019 Jul 2020 Jul 20211 (Ch-2) Block 2 RTO Jun 2017 Jul 2020 Jul 2021 Jul 20221

  19. Ground standoff mine detection system (GSTAMIDS) engineering, manufacturing, and development (EMD) Block 0

    NASA Astrophysics Data System (ADS)

    Pressley, Jackson R.; Pabst, Donald; Sower, Gary D.; Nee, Larry; Green, Brian; Howard, Peter

    2001-10-01

    The United States Army has contracted EG&G Technical Services to build the GSTAMIDS EMD Block 0. This system autonomously detects and marks buried anti-tank land mines from an unmanned vehicle. It consists of a remotely operated host vehicle, standard teleoperation system (STS) control, mine detection system (MDS) and a control vehicle. Two complete systems are being fabricated, along with a third MDS. The host vehicle for Block 0 is the South African Meerkat that has overpass capability for anti-tank mines, as well as armor anti-mine blast protection and ballistic protection. It is operated via the STS radio link from within the control vehicle. The Main Computer System (MCS), located in the control vehicle, receives sensor data from the MDS via a high speed radio link, processes and fuses the data to make a decision of a mine detection, and sends the information back to the host vehicle for a mark to be placed on the mine location. The MCS also has the capability to interface into the FBCB2 system via SINGARS radio. The GSTAMIDS operator station and the control vehicle communications system also connect to the MCS. The MDS sensors are mounted on the host vehicle and include Ground Penetrating Radar (GPR), Pulsed Magnetic Induction (PMI) metal detector, and (as an option) long-wave infrared (LWIR). A distributed processing architecture is used so that pre-processing is performed on data at the sensor level before transmission to the MCS, minimizing required throughput. Nine (9) channels each of GPR and PMI are mounted underneath the meerkat to provide a three-meter detection swath. Two IR cameras are mounted on the upper sides of the Meerkat, providing a field of view of the required swath with overlap underneath the vehicle. Also included on the host vehicle are an Internal Navigation System (INS), Global Positioning System (GPS), and radio communications for remote control and data transmission. The GSTAMIDS Block 0 is designed as a modular, expandable system with sufficient bandwidth and processing capability for incorporation of additional sensor systems in future Blocks. It is also designed to operate in adverse weather conditions and to be transportable around the world.

  20. Analytical Approaches for Identification and Representation of Critical Protection Systems in Transient Stability Studies

    NASA Astrophysics Data System (ADS)

    Hedman, Mojdeh Khorsand

    After a major disturbance, the power system response is highly dependent on protection schemes and system dynamics. Improving power systems situational awareness requires proper and simultaneous modeling of both protection schemes and dynamic characteristics in power systems analysis tools. Historical information and ex-post analysis of blackouts reaffirm the critical role of protective devices in cascading events, thereby confirming the necessity to represent protective functions in transient stability studies. This dissertation is aimed at studying the importance of representing protective relays in power system dynamic studies. Although modeling all of the protective relays within transient stability studies may result in a better estimation of system behavior, representing, updating, and maintaining the protection system data becomes an insurmountable task. Inappropriate or outdated representation of the relays may result in incorrect assessment of the system behavior. This dissertation presents a systematic method to determine essential relays to be modeled in transient stability studies. The desired approach should identify protective relays that are critical for various operating conditions and contingencies. The results of the transient stability studies confirm that modeling only the identified critical protective relays is sufficient to capture system behavior for various operating conditions and precludes the need to model all of the protective relays. Moreover, this dissertation proposes a method that can be implemented to determine the appropriate location of out-of-step blocking relays. During unstable power swings, a generator or group of generators may accelerate or decelerate leading to voltage depression at the electrical center along with generator tripping. This voltage depression may cause protective relay mis-operation and unintentional separation of the system. In order to avoid unintentional islanding, the potentially mis-operating relays should be blocked from tripping with the use of out-of-step blocking schemes. Blocking these mis-operating relays, combined with an appropriate islanding scheme, help avoid a system wide collapse. The proposed method is tested on data from the Western Electricity Coordinating Council. A triple line outage of the California-Oregon Intertie is studied. The results show that the proposed method is able to successfully identify proper locations of out-of-step blocking scheme.

  1. Light extraction block with curved surface

    DOEpatents

    Levermore, Peter; Krall, Emory; Silvernail, Jeffrey; Rajan, Kamala; Brown, Julia J.

    2016-03-22

    Light extraction blocks, and OLED lighting panels using light extraction blocks, are described, in which the light extraction blocks include various curved shapes that provide improved light extraction properties compared to parallel emissive surface, and a thinner form factor and better light extraction than a hemisphere. Lighting systems described herein may include a light source with an OLED panel. A light extraction block with a three-dimensional light emitting surface may be optically coupled to the light source. The three-dimensional light emitting surface of the block may includes a substantially curved surface, with further characteristics related to the curvature of the surface at given points. A first radius of curvature corresponding to a maximum principal curvature k.sub.1 at a point p on the substantially curved surface may be greater than a maximum height of the light extraction block. A maximum height of the light extraction block may be less than 50% of a maximum width of the light extraction block. Surfaces with cross sections made up of line segments and inflection points may also be fit to approximated curves for calculating the radius of curvature.

  2. Automatic Blocking Of QR and LU Factorizations for Locality

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

    Yi, Q; Kennedy, K; You, H

    2004-03-26

    QR and LU factorizations for dense matrices are important linear algebra computations that are widely used in scientific applications. To efficiently perform these computations on modern computers, the factorization algorithms need to be blocked when operating on large matrices to effectively exploit the deep cache hierarchy prevalent in today's computer memory systems. Because both QR (based on Householder transformations) and LU factorization algorithms contain complex loop structures, few compilers can fully automate the blocking of these algorithms. Though linear algebra libraries such as LAPACK provides manually blocked implementations of these algorithms, by automatically generating blocked versions of the computations, moremore » benefit can be gained such as automatic adaptation of different blocking strategies. This paper demonstrates how to apply an aggressive loop transformation technique, dependence hoisting, to produce efficient blockings for both QR and LU with partial pivoting. We present different blocking strategies that can be generated by our optimizer and compare the performance of auto-blocked versions with manually tuned versions in LAPACK, both using reference BLAS, ATLAS BLAS and native BLAS specially tuned for the underlying machine architectures.« less

  3. INFERENCE BUILDING BLOCKS

    DTIC Science & Technology

    2018-02-15

    address the problem that probabilistic inference algorithms are diÿcult and tedious to implement, by expressing them in terms of a small number of...building blocks, which are automatic transformations on probabilistic programs. On one hand, our curation of these building blocks reflects the way human...reasoning with low-level computational optimization, so the speed and accuracy of the generated solvers are competitive with state-of-the-art systems. 15

  4. Integration of an Apple II Plus Computer into an Existing Dual Axis Sun Tracker System.

    DTIC Science & Technology

    1984-06-01

    Identify by block number) S, tpec l Sun Tracker System Solar Energy Apple II Plus Computer 20. ABSTRACT (’ ntlnue on reveree ide If neceesery end...14 4. Dual Axis Sun Tracker (Side View) ----------------- 15 5. Solar Tracker System Block Diagram ---------------- 17 6. Plug Wiring Diagram for Top...sources will be competitive. Already many homes have solar collectors and other devices designed to decrease the consumption of gas, oil, and

  5. Modeling and prototyping of biometric systems using dataflow programming

    NASA Astrophysics Data System (ADS)

    Minakova, N.; Petrov, I.

    2018-01-01

    The development of biometric systems is one of the labor-intensive processes. Therefore, the creation and analysis of approaches and techniques is an urgent task at present. This article presents a technique of modeling and prototyping biometric systems based on dataflow programming. The technique includes three main stages: the development of functional blocks, the creation of a dataflow graph and the generation of a prototype. A specially developed software modeling environment that implements this technique is described. As an example of the use of this technique, an example of the implementation of the iris localization subsystem is demonstrated. A variant of modification of dataflow programming is suggested to solve the problem related to the undefined order of block activation. The main advantage of the presented technique is the ability to visually display and design the model of the biometric system, the rapid creation of a working prototype and the reuse of the previously developed functional blocks.

  6. Emulation of rocket trajectory based on a six degree of freedom model

    NASA Astrophysics Data System (ADS)

    Zhang, Wenpeng; Li, Fan; Wu, Zhong; Li, Rong

    2008-10-01

    In this paper, a 6-DOF motion mathematical model is discussed. It is consisted of body dynamics and kinematics block, aero dynamics block and atmosphere block. Based on Simulink, the whole rocket trajectory mathematical model is developed. In this model, dynamic system simulation becomes easy and visual. The method of modularization design gives more convenience to transplant. At last, relevant data is given to be validated by Monte Carlo means. Simulation results show that the flight trajectory of the rocket can be simulated preferably by means of this model, and it also supplies a necessary simulating tool for the development of control system.

  7. Microfluidic assembly blocks.

    PubMed

    Rhee, Minsoung; Burns, Mark A

    2008-08-01

    An assembly approach for microdevice construction using prefabricated microfluidic components is presented. Although microfluidic systems are convenient platforms for biological assays, their use in the life sciences is still limited mainly due to the high-level fabrication expertise required for construction. This approach involves prefabrication of individual microfluidic assembly blocks (MABs) in PDMS that can be readily assembled to form microfluidic systems. Non-expert users can assemble the blocks on glass slides to build their devices in minutes without any fabrication steps. In this paper, we describe the construction and assembly of the devices using the MAB methodology, and demonstrate common microfluidic applications including laminar flow development, valve control, and cell culture.

  8. A Block Preconditioned Conjugate Gradient-type Iterative Solver for Linear Systems in Thermal Reservoir Simulation

    NASA Astrophysics Data System (ADS)

    Betté, Srinivas; Diaz, Julio C.; Jines, William R.; Steihaug, Trond

    1986-11-01

    A preconditioned residual-norm-reducing iterative solver is described. Based on a truncated form of the generalized-conjugate-gradient method for nonsymmetric systems of linear equations, the iterative scheme is very effective for linear systems generated in reservoir simulation of thermal oil recovery processes. As a consequence of employing an adaptive implicit finite-difference scheme to solve the model equations, the number of variables per cell-block varies dynamically over the grid. The data structure allows for 5- and 9-point operators in the areal model, 5-point in the cross-sectional model, and 7- and 11-point operators in the three-dimensional model. Block-diagonal-scaling of the linear system, done prior to iteration, is found to have a significant effect on the rate of convergence. Block-incomplete-LU-decomposition (BILU) and block-symmetric-Gauss-Seidel (BSGS) methods, which result in no fill-in, are used as preconditioning procedures. A full factorization is done on the well terms, and the cells are ordered in a manner which minimizes the fill-in in the well-column due to this factorization. The convergence criterion for the linear (inner) iteration is linked to that of the nonlinear (Newton) iteration, thereby enhancing the efficiency of the computation. The algorithm, with both BILU and BSGS preconditioners, is evaluated in the context of a variety of thermal simulation problems. The solver is robust and can be used with little or no user intervention.

  9. Automatic Orientation of Large Blocks of Oblique Images

    NASA Astrophysics Data System (ADS)

    Rupnik, E.; Nex, F.; Remondino, F.

    2013-05-01

    Nowadays, multi-camera platforms combining nadir and oblique cameras are experiencing a revival. Due to their advantages such as ease of interpretation, completeness through mitigation of occluding areas, as well as system accessibility, they have found their place in numerous civil applications. However, automatic post-processing of such imagery still remains a topic of research. Configuration of cameras poses a challenge on the traditional photogrammetric pipeline used in commercial software and manual measurements are inevitable. For large image blocks it is certainly an impediment. Within theoretical part of the work we review three common least square adjustment methods and recap on possible ways for a multi-camera system orientation. In the practical part we present an approach that successfully oriented a block of 550 images acquired with an imaging system composed of 5 cameras (Canon Eos 1D Mark III) with different focal lengths. Oblique cameras are rotated in the four looking directions (forward, backward, left and right) by 45° with respect to the nadir camera. The workflow relies only upon open-source software: a developed tool to analyse image connectivity and Apero to orient the image block. The benefits of the connectivity tool are twofold: in terms of computational time and success of Bundle Block Adjustment. It exploits the georeferenced information provided by the Applanix system in constraining feature point extraction to relevant images only, and guides the concatenation of images during the relative orientation. Ultimately an absolute transformation is performed resulting in mean re-projection residuals equal to 0.6 pix.

  10. The performance of three vacuum-mixing cement guns--a comparison of the fatigue properties of simplex P cement.

    PubMed

    Yau, W P; Ng, T P; Chiu, K Y; Poon, K C; Ho, W Y; Luk, D K

    2001-01-01

    We tested three commercially available cement-mixing systems (Howmedica, Summit and Stryker). After mixing the cement was allowed to cure in metal moulds under standard conditions. Sixty-nine cement blocks were produced. The fatigue behavior of the blocks was tested until failure. A wide scattering of results was observed in all the three systems. Uneven mixing of the polymer and monomer was observed in the Howmedica system. A significantly stronger cement (P=0.018) was produced with the Stryker system.

  11. FPGA-based firmware model for extended measurement systems with data quality monitoring

    NASA Astrophysics Data System (ADS)

    Wojenski, A.; Pozniak, K. T.; Mazon, D.; Chernyshova, M.

    2017-08-01

    Modern physics experiments requires construction of advanced, modular measurement systems for data processing and registration purposes. Components are often designed in one of the common mechanical and electrical standards, e.g. VME or uTCA. The paper is focused on measurement systems using FPGAs as data processing blocks, especially for plasma diagnostics using GEM detectors with data quality monitoring aspects. In the article is proposed standardized model of HDL FPGA firmware implementation, for use in a wide range of different measurement system. The effort was made in term of flexible implementation of data quality monitoring along with source data dynamic selection. In the paper is discussed standard measurement system model followed by detailed model of FPGA firmware for modular measurement systems. Considered are both: functional blocks and data buses. In the summary, necessary blocks and signal lines are described. Implementation of firmware following the presented rules should provide modular design, with ease of change different parts of it. The key benefit is construction of universal, modular HDL design, that can be applied in different measurement system with simple adjustments.

  12. Isoelectric Bovine Serum Albumin: Robust Blocking Agent for Enhanced Performance in Optical-Fiber Based DNA Sensing.

    PubMed

    Wang, Ruoyu; Zhou, Xiaohong; Zhu, Xiyu; Yang, Chao; Liu, Lanhua; Shi, Hanchang

    2017-02-24

    Surface blocking is a well-known process for reducing unwanted nonspecific adsorption in sensor fabrication, especially important in the emerging field where DNA/RNA applied. Bovine serum albumin (BSA) is one of the most popular blocking agents with an isoelectric point at pH 4.6. Although it is widely recognized that the adsorption of a blocking agent is strongly affected by its net charge and the maximum adsorption is often observed under its isoelectric form, BSA has long been perfunctorily used for blocking merely in neutral solution, showing poor blocking performances in the optical-fiber evanescent wave (OFEW) based sensing toward DNA target. To meet this challenge, we first put forward the view that isoelectric BSA (iep-BSA) has the best blocking performance and use an OFEW sensor platform to demonstrate this concept. An optical-fiber was covalently modified with amino-DNA, and further coupled with the optical system to detect fluorophore labeled complementary DNA within the evanescent field. A dramatic improvement in the reusability of this DNA modified sensing surface was achieved with 120 stable detection cycles, which ensured accurate quantitative bioassay. As expected, the iep-BSA blocked OFEW system showed enhanced sensing performance toward target DNA with a detection limit of 125 pM. To the best of our knowledge, this is the highest number of regeneration cycles ever reported for a DNA immobilized optical-fiber surface. This study can also serve as a good reference and provide important implications for developing similar DNA-directed surface biosensors.

  13. A method of the up or down layer development of class II oil reservoirs

    NASA Astrophysics Data System (ADS)

    Wang, Fulin; Zhao, Yunfei; Fang, Yanjun; Yang, Tao; Gui, Dongxu; Wang, Gang; Feng, Chengcheng

    2018-06-01

    During the 13th five-year period, class II reservoirs of DaQing Oilfield first layer series development will be fully completed, secondary up or down layer development is facing new well drilling or the use of old we ll pattern network method chosen, need to determine development mode of oil block. In this paper, the system economy model is established, the up and down oil layer of the block is considered as one system, and through the comparison of the two models that new well drilling or the use of old well pattern, we can determine the development mode of the block. And take b1ddd block as an example, determine the block need to use what method to develop in different oil prices. Result show when the oil price is 40/bbl, using exiting well to production, when oil price is 70/bbl., using new drilling development model. The method to fill the theory and methodology on selection about reservoir development mode, can provide technical support for DaQing Oilfield the 14th five-year planning and long-term planning.

  14. Understanding the scabbling of concrete using microwave energy

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

    Buttress, A.J., E-mail: adam.buttress@nottingham.ac.uk; Jones, D.A.; Dodds, C.

    2015-09-15

    Concrete blocks supplied by the UK Sellafield nuclear site were treated with microwave energy using a 15 kW system operating at 2.45 GHz. The effect of aggregate type (Whinstone, Gravel and Limestone); standoff distance; and effect of surface coating were studied to determine their influence on the systems performance in terms of mass and area removal rates and evaluate the controllability of the process. All blocks were scabbled successfully, with mass and area removal rates averaging 11.3 g s{sup −} {sup 1} and 3 cm s{sup −} {sup 1} respectively on treating large areas to a depth of 25 mm.more » The use of a Kevlar barrier between the block and applicator was found to significantly reduce the generation of dust as only 1.6% of the scabbled mass was in the < 106 μm — that generally considered to be airborne. Importantly Brazilian disc testing of the scabbled block showed that the process did not adversely affect structural properties of the test blocks after treatment.« less

  15. Interaction of Curcumin with PEO-PPO-PEO block copolymers: a molecular dynamics study.

    PubMed

    Samanta, Susruta; Roccatano, Danilo

    2013-03-21

    Curcumin, a naturally occurring drug molecule, has been extensively investigated for its various potential usages in medicine. Its water insolubility and high metabolism rate require the use of drug delivery systems to make it effective in the human body. Among various types of nanocarriers, block copolymer based ones are the most effective. These polymers are broadly used as drug-delivery systems, but the nature of this process is poorly understood. In this paper, we propose a molecular dynamics simulation study of the interaction of Curcumin with block copolymer based on polyethylene oxide (PEO) and polypropylene oxide (PPO). The study has been conducted considering the smallest PEO and PPO oligomers and multiple chains of the block copolymer Pluronic P85. Our study shows that the more hydrophobic 1,2-dimethoxypropane (DMP) molecules and PPO block preferentially coat the Curcumin molecule. In the case of the Pluronic P85, simulation shows formation of a drug-polymer aggregate within 50 ns. This process leaves exposed the PEO part of the polymers, resulting in better solvation and stability of the drug in water.

  16. Thermal Performance of Aircraft Polyurethane Seat Cushions

    NASA Technical Reports Server (NTRS)

    Kourtides, D. A.; Parker, J. A.

    1982-01-01

    Aircraft seat materials were evaluated in terms of their thermal performance. The materials were evaluated using (a) thermogravimetric analysis, (b) differential scanning calorimetry, (c) a modified NBS smoke chamber to determine the rate of mass loss and (d) the NASA T-3 apparatus to determine the thermal efficiency. In this paper, the modified NBS smoke chamber will be described in detail since it provided the most conclusive results. The NBS smoke chamber was modified to measure the weight loss of material when exposed to a radiant heat source over the range of 2.5 to 7.5 W/sq cm. This chamber has been utilized to evaluate the thermal performance of various heat blocking layers utilized to protect the polyurethane cushioning foam used in aircraft seats. Various kinds of heat blocking layers were evaluated by monitoring the weight loss of miniature seat cushions when exposed to the radiant heat. The effectiveness of aluminized heat blocking systems was demonstrated when compared to conventional heat blocking layers such as neoprene. All heat blocking systems showed good fire protection capabilities when compared to the state-of-the-art, i.e., wool-nylon over polyurethane foam.

  17. Controlling block copolymer phase behavior using ionic surfactant

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

    Ray, D.; Aswal, V. K.

    2016-05-23

    The phase behavior of poly(ethylene oxide)-poly(propylene oxide-poly(ethylene oxide) PEO-PPO-PEO triblock copolymer [P85 (EO{sub 26}PO{sub 39}EO{sub 26})] in presence of anionic surfactant sodium dodecyl sulfate (SDS) in aqueous solution as a function of temperature has been studied using dynamic light scattering (DLS) and small-angle neutron scattering (SANS). The measurements have been carried out for fixed concentrations (1 wt%) of block copolymer and surfactants. Each of the individual components (block copolymer and surfactant) and the nanoparticle–surfactant mixed system have been examined at varying temperature. The block copolymer P85 forms spherical micelles at room temperature whereas shows sphere-to-rod like micelle transition at highermore » temperatures. On the other hand, SDS surfactant forms ellipsoidal micelles over a wide temperature range. Interestingly, it is found that phase behavior of mixed micellar system (P85 + SDS) as a function of temperature is drastically different from that of P85, giving the control over the temperature-dependent phase behavior of block copolymers.« less

  18. Position feedback system for volume holographic storage media

    DOEpatents

    Hays, Nathan J [San Francisco, CA; Henson, James A [Morgan Hill, CA; Carpenter, Christopher M [Sunnyvale, CA; Akin, Jr William R. [Morgan Hill, CA; Ehrlich, Richard M [Saratoga, CA; Beazley, Lance D [San Jose, CA

    1998-07-07

    A method of holographic recording in a photorefractive medium wherein stored holograms may be retrieved with maximum signal-to noise ratio (SNR) is disclosed. A plurality of servo blocks containing position feedback information is recorded in the crystal and made non-erasable by heating the crystal. The servo blocks are recorded at specific increments, either angular or frequency, depending whether wavelength or angular multiplexing is applied, and each servo block is defined by one of five patterns. Data pages are then recorded at positions or wavelengths enabling each data page to be subsequently reconstructed with servo patterns which provide position feedback information. The method of recording data pages and servo blocks is consistent with conventional practices. In addition, the recording system also includes components (e.g. voice coil motor) which respond to position feedback information and adjust the angular position of the reference angle of a reference beam to maximize SNR by reducing crosstalk, thereby improving storage capacity.

  19. Synthesis and Self-Assembly of Block Copolymers Containing Temperature Sensitive and Degradable Chain Segments.

    PubMed

    Gong, Hong-Liang; Lei, Lei; Shi, Shu-Xian; Xia, Yu-Zheng; Chen, Xiao-Nong

    2018-05-01

    In this work, polylactide-b-poly(N-isopropylacrylamide) were synthesized by the combination of controlled ring-opening polymerization and reversible addition fragmentation chain transfer polymerization. These block copolymers with molecular weight range from 7,900 to 12,000 g/mol and narrow polydispersity (≤1.19) can self-assemble into micelles (polylactide core, poly(N-isopropylacrylamide) shell) in water at certain temperature range, which have been evidenced by laser particle size analyzer proton nuclear magnetic resonance and transmission electron microscopy. Such micelles exhibit obvious thermo-responsive properties: (1) Poly(N-isopropylacrylamide) blocks collapse on the polylactide core as system temperature increase, leading to reduce of micelle size. (2) Micelles with short poly(N-isopropylacrylamide) blocks tend to aggregate together when temperature increased, which is resulted from the reduction of the system hydrophilicity and the decreased repulsive force between micelles.

  20. Photo-responsive block copolymer micelles: design and behavior.

    PubMed

    Gohy, Jean-François; Zhao, Yue

    2013-09-07

    Stimuli-responsive block copolymer micelles are the topic of intense research since they are able to show sharp and eventually reversible responses to various environmental changes and find applications in various fields including controlled drug delivery. Among all the available stimuli, light has recently attracted much attention since it can be localized in time and space, and it can also be triggered from outside of the system. In this tutorial review, we highlight the progress realized in recent years. More precisely, we provide some guidelines towards the rational design of photo-responsive block copolymers and we present the different photo-responsive moieties that have been used so far. We also discuss the different types of irreversible and reversible responses encountered by photo-responsive block copolymer micelles. Finally, we suggest possible future developments including the design of biocompatible systems operating at excitation wavelengths compatible for biomedical applications.

  1. Block Preconditioning to Enable Physics-Compatible Implicit Multifluid Plasma Simulations

    NASA Astrophysics Data System (ADS)

    Phillips, Edward; Shadid, John; Cyr, Eric; Miller, Sean

    2017-10-01

    Multifluid plasma simulations involve large systems of partial differential equations in which many time-scales ranging over many orders of magnitude arise. Since the fastest of these time-scales may set a restrictively small time-step limit for explicit methods, the use of implicit or implicit-explicit time integrators can be more tractable for obtaining dynamics at time-scales of interest. Furthermore, to enforce properties such as charge conservation and divergence-free magnetic field, mixed discretizations using volume, nodal, edge-based, and face-based degrees of freedom are often employed in some form. Together with the presence of stiff modes due to integrating over fast time-scales, the mixed discretization makes the required linear solves for implicit methods particularly difficult for black box and monolithic solvers. This work presents a block preconditioning strategy for multifluid plasma systems that segregates the linear system based on discretization type and approximates off-diagonal coupling in block diagonal Schur complement operators. By employing multilevel methods for the block diagonal subsolves, this strategy yields algorithmic and parallel scalability which we demonstrate on a range of problems.

  2. Military Curriculum Materials for Vocational and Technical Education. Avionics Instrument Systems Specialist. POI C3ABR32531 000. Classroom Course 2-7.

    ERIC Educational Resources Information Center

    Ohio State Univ., Columbus. National Center for Research in Vocational Education.

    This high school-postsecondary-level course for avionics instrument systems specialist is one of a number of military-developed curriculum packages selected for adaptation to vocational instruction and curriculum development in a civilian setting. A plan of instruction outlines five blocks of instruction (281 hours of instruction). Block 1,…

  3. NASA Docking System (NDS) Interface Definitions Document (IDD)

    NASA Technical Reports Server (NTRS)

    Tabakman, Alexander; England, Warren

    2013-01-01

    The contents of this document define the integrated performance and interface design for NASA Docking System (NDS) Block 1 and the International Docking Adapter. The intent of this IDD is to provide the interface design for using, installing, and interfacing to the NDS Block 1 that will enable successful docking to the IDA. This document is under the control of the ISS Development Projects Office (OG).

  4. Updated optical read/write memory system components

    NASA Technical Reports Server (NTRS)

    1974-01-01

    A survey of the building blocks of the electro-optic read/write system was made. Critical areas and alternate paths are discussed. The latest PLZT block data composer is analyzed. Stricter controls in the production and fabrication of PLZT are implied by the performance of the BDC. A reverse charge before erase has eliminated several problems observed in the parallel plane charging process for photoconductor-thermoplastic hologram storage.

  5. Anomaly-Based Intrusion Detection Systems Utilizing System Call Data

    DTIC Science & Technology

    2012-03-01

    Functionality Description Persistence mechanism Mimicry technique Camouflage malware image: • renaming its image • appending its image to victim...particular industrial plant . Exactly which one was targeted still remains unknown, however a majority of the attacks took place in Iran [24]. Due... plant to unstable phase and eventually physical damage. It is interesting to note that a particular block of code - block DB8061 is automatically

  6. A Distributed Operating System Design and Dictionary/Directory for the Stock Point Logistics Integrated Communications Environment.

    DTIC Science & Technology

    1983-11-01

    transmission, FM(R) will only have to hold one message. 3. Program Control Block (PCB) The PCB ( Deitel 82] will be maintained by the Executive in...and Use of Kernel to Process Interrupts 35 10. Layered Operating System Design 38 11. Program Control Block Table 43 12. Ready List Data Structure 45 13...examples of fully distributed systems in operation. An objective of the NPS research program for SPLICE is to advance our knowledge of distributed

  7. A Needs Assessment of Air Force Systems Command Buying Activity Acquisition Management Information System (AMIS) Users

    DTIC Science & Technology

    1989-09-01

    Guidelines Generation #2 b. Electronic Submission of Commerce Business Daily ( CBD ) Notices #6 c. On-line Debarred/Suspended List #5 d. On-Line Contract...a number of years. Reality of system differs from manual. One reference - easy to follow, block by block - is needed. -Imaging and CBD electronic...milestones are tracked - and those milestones should be monitored as a natural outcome of thc process - e.g. A milestone is noted when the RFP is

  8. "Non-equilibrium" block copolymer micelles with glassy cores: a predictive approach based on theory of equilibrium micelles.

    PubMed

    Nagarajan, Ramanathan

    2015-07-01

    Micelles generated in water from most amphiphilic block copolymers are widely recognized to be non-equilibrium structures. Typically, the micelles are prepared by a kinetic process, first allowing molecular scale dissolution of the block copolymer in a common solvent that likes both the blocks and then gradually replacing the common solvent by water to promote the hydrophobic blocks to aggregate and create the micelles. The non-equilibrium nature of the micelle originates from the fact that dynamic exchange between the block copolymer molecules in the micelle and the singly dispersed block copolymer molecules in water is suppressed, because of the glassy nature of the core forming polymer block and/or its very large hydrophobicity. Although most amphiphilic block copolymers generate such non-equilibrium micelles, no theoretical approach to a priori predict the micelle characteristics currently exists. In this work, we propose a predictive approach for non-equilibrium micelles with glassy cores by applying the equilibrium theory of micelles in two steps. In the first, we calculate the properties of micelles formed in the mixed solvent while true equilibrium prevails, until the micelle core becomes glassy. In the second step, we freeze the micelle aggregation number at this glassy state and calculate the corona dimension from the equilibrium theory of micelles. The condition when the micelle core becomes glassy is independently determined from a statistical thermodynamic treatment of diluent effect on polymer glass transition temperature. The predictions based on this "non-equilibrium" model compare reasonably well with experimental data for polystyrene-polyethylene oxide diblock copolymer, which is the most extensively studied system in the literature. In contrast, the application of the equilibrium model to describe such a system significantly overpredicts the micelle core and corona dimensions and the aggregation number. The non-equilibrium model suggests ways to obtain different micelle sizes for the same block copolymer, by the choices we can make of the common solvent and the mode of solvent substitution. Published by Elsevier Inc.

  9. LUMIS Interactive graphics operating instructions and system specifications

    NASA Technical Reports Server (NTRS)

    Bryant, N. A.; Yu, T. C.; Landini, A. J.

    1976-01-01

    The LUMIS program has designed an integrated geographic information system to assist program managers and planning groups in metropolitan regions. Described is the system designed to interactively interrogate a data base, display graphically a portion of the region enclosed in the data base, and perform cross tabulations of variables within each city block, block group, or census tract. The system is designed to interface with U. S. Census DIME file technology, but can accept alternative districting conventions. The system is described on three levels: (1) introduction to the systems's concept and potential applications; (2) the method of operating the system on an interactive terminal; and (3) a detailed system specification for computer facility personnel.

  10. Electrical-power-system data base for consumables analysis. Volume 1: Electrical equipment list, activity blocks, and time lines

    NASA Technical Reports Server (NTRS)

    Pipher, M. D.; Green, P. A.; Wolfgram, D. F.

    1975-01-01

    A standardized data base is described which consists of a space shuttle electrical equipment list, activity blocks defining electrical equipment utilization, and activity-block time lines for specific mission analyses. Information is presented to facilitate utilization of the data base, to provide the basis for the electrical equipment utilization to enable interpretation of analyses based on the data contained herein.

  11. 15. Detail of 1946 chain rack alot for moving blocks ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    15. Detail of 1946 chain rack alot for moving blocks on floor of drydock in far SE corner of South Section. In 1994 theme chain rack alots and accompanying blocking mechanisms were no longer in use and were extremely deteriorated. For view of system as originally installed, see 1946 historic copy photograph WA-116-E-33. - Puget Sound Naval Shipyard, Drydock No. 3, Farragut Avenue, Bremerton, Kitsap County, WA

  12. Anatomy of a Silicon Compiler

    DTIC Science & Technology

    1994-10-04

    Recognition 321 Anton StOWz*e 21.1. ALGORITHM AND ARCHITECTURE ............... 322 21.2. SYSTEM ARCHITECTURE .................... 325 213. CHIP ARCHiTECTURES...age controlled switch. The second is a linear model where each transistor is mod- eled by a voltage controlled switch in series with a resistor, and...the blocks being co- linear . Routing channels separate blocks which are adjacent. Channels are also placed along the top edge of each block in order to

  13. Kinematics and 40Ar/ 39Ar geochronology of the Gaoligong and Chongshan shear systems, western Yunnan, China: Implications for early Oligocene tectonic extrusion of SE Asia

    NASA Astrophysics Data System (ADS)

    Wang, Yuejun; Fan, Weiming; Zhang, Yanhua; Peng, Touping; Chen, Xinyue; Xu, Yigang

    2006-06-01

    The Gaoligong and Chongshan shear systems (GLSS and CSSS) in western Yunnan, China, have similar tectonic significance to the Ailaoshan-Red River shear system (ASRRSS) during the Cenozoic tectonic development of the southeastern Tibetan syntaxis. To better understand their kinematics and the Cenozoic tectonic evolution of SE Asia, this paper presents new kinematic and 40Ar/ 39Ar geochronological data for these shear systems. All the structural and microstructural evidence indicate that the GLSS is a dextral strike-slip shear system while the CSSS is a sinistral strike-slip shear system, and both were developed under amphibolite- to greenschist-grade conditions. The 40Ar/ 39Ar dating of synkinematic minerals revealed that the strike-slip shearing on the GLSS and CSSS at least began at ˜ 32 Ma, possibly coeval with the onset of other major shear systems in SE Asia. The late-stage shearing on the GLSS and CSSS is dated at ˜ 27-29 Ma by the biotite 40Ar/ 39Ar ages, consistent with that of the Wang Chao shear zone (WCSZ), but ˜ 10 Ma earlier than that of the ASRRSS. The dextral Gaoligong shear zone within the GLSS may have separated the India plate from the Indochina Block during early Oligocene. Combined with other data in western Yunnan, we propose that the Baoshan/Southern Indochina Block escaped faster southeastward along the CSSS to the east and the GLSS to the west than the Northern Indochina Block along the ASRRSS, accompanying with the obliquely northward motion of the India plate during early Oligocene (28-36 Ma). During 28-17 Ma, the Northern Indochina Block was rotationally extruded along the ASRRSS relative to the South China Block as a result of continuously impinging of the India plate.

  14. NASA's Space Launch System: An Evolving Capability for Exploration

    NASA Technical Reports Server (NTRS)

    Creech, Stephen D.; Robinson, Kimberly F.

    2016-01-01

    A foundational capability for international human deep-space exploration, NASA's Space Launch System (SLS) vehicle represents a new spaceflight infrastructure asset, creating opportunities for mission profiles and space systems that cannot currently be executed. While the primary purpose of SLS, which is making rapid progress towards initial launch readiness in two years, will be to support NASA's Journey to Mars, discussions are already well underway regarding other potential utilization of the vehicle's unique capabilities. In its initial Block 1 configuration, capable of launching 70 metric tons (t) to low Earth orbit (LEO), SLS will propel the Orion crew vehicle to cislunar space, while also delivering small CubeSat-class spacecraft to deep-space destinations. With the addition of a more powerful upper stage, the Block 1B configuration of SLS will be able to deliver 105 t to LEO and enable more ambitious human missions into the proving ground of space. This configuration offers opportunities for launching co-manifested payloads with the Orion crew vehicle, and a class of secondary payloads, larger than today's CubeSats. Further upgrades to the vehicle, including advanced boosters, will evolve its performance to 130 t in its Block 2 configuration. Both Block 1B and Block 2 also offer the capability to carry 8.4- or 10-m payload fairings, larger than any contemporary launch vehicle. With unmatched mass-lift capability, payload volume, and C3, SLS not only enables spacecraft or mission designs currently impossible with contemporary EELVs, it also offers enhancing benefits, such as reduced risk, operational costs and/or complexity, shorter transit time to destination or launching large systems either monolithically or in fewer components. This paper will discuss both the performance and capabilities of Space Launch System as it evolves, and the current state of SLS utilization planning.

  15. Bond strength of the porcelain repair system to all-ceramic copings and porcelain.

    PubMed

    Lee, Sang J; Cheong, Chan Wook; Wright, Robert F; Chang, Brian M

    2014-02-01

    The purpose of this study was to investigate the shear bond strength of the porcelain repair system on alumina and zirconia core ceramics, comparing this strength with that of veneering porcelain. Veneering ceramic (n = 12), alumina core (n = 24), and zirconia core (n = 24) blocks measuring 10 × 5 × 5 mm(3) were fabricated. Veneering ceramic blocks were used as the control. Alumina and zirconia core blocks were divided into 2 groups (n = 12 each), and a slot (2 × 2 × 4 mm(3)) filled with veneering ceramics was prepared into one of the alumina and zirconia core groups (n = 12). Followed by surface treatments of micro-abrasion with 30 μm alumina particles, etching with 35% phosphoric acid and silane primer and bond, composite resin blocks (2 × 2 × 2 mm(3)) were built up and light polymerized onto the treated surfaces by 3 configurations: (a) composite blocks bonded onto veneering ceramic surface alone, (b) composite blocks bonded onto alumina core or zirconia core surfaces, (c) a 50% surface area of the composite blocks bonded to veneering ceramics and the other 50% surface area of the composite blocks to alumina core or zirconia core surfaces. The shear bond strength of the composite to each specimen was tested by a universal testing machine at a 0.5 mm/min crosshead speed. The shear bond strength was analyzed by unpaired t-tests for within the configuration groups and ANOVA for among the different configuration groups. When the mean shear bond strength was compared within groups of the same configuration, there were no statistically significant differences. Comparison of the shear bond strength among groups of different configurations revealed statistically significant differences. The mean shear bond strength of composite onto 100% veneering ceramic surface and composite onto 50% veneering 50% all-ceramic cores was statistically higher than that of composite onto 100% all-ceramic cores; however, the differences of the shear bond strength of composite bonded only onto the veneering ceramic surface were not statistically significant from those of 50% surface area of composite bonded onto all-ceramic cores. No statistically significant differences in the bond strength of a porcelain repair system to alumina and zirconia copings were observed. Increasing the surface of veneering ceramics to a porcelain repair system improved the repair material's bond strength. © 2013 by the American College of Prosthodontists.

  16. Text block identification in restoration process of Javanese script damage

    NASA Astrophysics Data System (ADS)

    Himamunanto, A. R.; Setyowati, E.

    2018-05-01

    Generally, in a sheet of documents there are two objects of information, namely text and image. A text block area in the sheet of manuscript is a vital object because the restoration process would be done only in this object. Text block or text area identification becomes an important step before. This paper describes the steps leading to the restoration of Java script destruction. The process stages are: pre-processing, identification of text block, segmentation, damage identification, restoration. The test result based on the input manuscript “Hamong Tani” show that the system works with a success rate of 82.07%

  17. Atrioventricular and intraventricular block after transcatheter aortic valve implantation.

    PubMed

    Lee, Jane J; Goldschlager, Nora; Mahadevan, Vaikom S

    2018-06-24

    Aortic stenosis is the most common valvular heart disease in industrialized countries and the most common cause of left ventricular outflow tract (LVOT) obstruction. Transcatheter aortic valve replacement (TAVR) is an alternative to surgical aortic valve replacement for intermediate to high-risk surgical candidates with symptomatic severe aortic stenosis. Conduction system abnormalities, including atrioventricular (AV) and intraventricular (IV) block, are the most common complication of TAVR. In this review, we aim to explore the anatomical issues relevant to atrioventricular block, the relevant clinical and procedural aspects, and the management and long-term implications of AV and IV block.

  18. ULTRA-SHARP nonoscillatory convection schemes for high-speed steady multidimensional flow

    NASA Technical Reports Server (NTRS)

    Leonard, B. P.; Mokhtari, Simin

    1990-01-01

    For convection-dominated flows, classical second-order methods are notoriously oscillatory and often unstable. For this reason, many computational fluid dynamicists have adopted various forms of (inherently stable) first-order upwinding over the past few decades. Although it is now well known that first-order convection schemes suffer from serious inaccuracies attributable to artificial viscosity or numerical diffusion under high convection conditions, these methods continue to enjoy widespread popularity for numerical heat transfer calculations, apparently due to a perceived lack of viable high accuracy alternatives. But alternatives are available. For example, nonoscillatory methods used in gasdynamics, including currently popular TVD schemes, can be easily adapted to multidimensional incompressible flow and convective transport. This, in itself, would be a major advance for numerical convective heat transfer, for example. But, as is shown, second-order TVD schemes form only a small, overly restrictive, subclass of a much more universal, and extremely simple, nonoscillatory flux-limiting strategy which can be applied to convection schemes of arbitrarily high order accuracy, while requiring only a simple tridiagonal ADI line-solver, as used in the majority of general purpose iterative codes for incompressible flow and numerical heat transfer. The new universal limiter and associated solution procedures form the so-called ULTRA-SHARP alternative for high resolution nonoscillatory multidimensional steady state high speed convective modelling.

  19. A bispectral q-hypergeometric basis for a class of quantum integrable models

    NASA Astrophysics Data System (ADS)

    Baseilhac, Pascal; Martin, Xavier

    2018-01-01

    For the class of quantum integrable models generated from the q-Onsager algebra, a basis of bispectral multivariable q-orthogonal polynomials is exhibited. In the first part, it is shown that the multivariable Askey-Wilson polynomials with N variables and N + 3 parameters introduced by Gasper and Rahman [Dev. Math. 13, 209 (2005)] generate a family of infinite dimensional modules for the q-Onsager algebra, whose fundamental generators are realized in terms of the multivariable q-difference and difference operators proposed by Iliev [Trans. Am. Math. Soc. 363, 1577 (2011)]. Raising and lowering operators extending those of Sahi [SIGMA 3, 002 (2007)] are also constructed. In the second part, finite dimensional modules are constructed and studied for a certain class of parameters and if the N variables belong to a discrete support. In this case, the bispectral property finds a natural interpretation within the framework of tridiagonal pairs. In the third part, eigenfunctions of the q-Dolan-Grady hierarchy are considered in the polynomial basis. In particular, invariant subspaces are identified for certain conditions generalizing Nepomechie's relations. In the fourth part, the analysis is extended to the special case q = 1. This framework provides a q-hypergeometric formulation of quantum integrable models such as the open XXZ spin chain with generic integrable boundary conditions (q ≠ 1).

  20. Computational analysis of non-Newtonian boundary layer flow of nanofluid past a semi-infinite vertical plate with partial slip

    NASA Astrophysics Data System (ADS)

    Amanulla, C. H.; Nagendra, N.; Suryanarayana Reddy, M.

    2018-03-01

    An analysis of this paper is examined, two-dimensional, laminar with heat and mass transfer of natural convective nanofluid flow past a semi-infinite vertical plate surface with velocity and thermal slip effects are studied theoretically. The coupled governing partial differential equations are transformed to ordinary differential equations by using non-similarity transformations. The obtained ordinary differential equations are solved numerically by a well-known method named as Keller Box Method (KBM). The influences of the emerging parameters i.e. Casson fluid parameter (β), Brownian motion parameter (Nb), thermophoresis parameter (Nt), Buoyancy ratio parameter (N), Lewis number (Le), Prandtl number (Pr), Velocity slip factor (Sf) and Thermal slip factor (ST) on velocity, temperature and nano-particle concentration distributions is illustrated graphically and interpreted at length. The major sources of nanoparticle migration in Nanofluids are Thermophoresis and Brownian motion. A suitable agreement with existing published literature is made and an excellent agreement is observed for the limiting case and also validation of solutions with a Nakamura tridiagonal method has been included. It is observed that nanoparticle concentrations on surface decreases with an increase in slip parameter. The study is relevant to enrobing processes for electric-conductive nano-materials, of potential use in aerospace and other industries.

  1. Time integration algorithms for the two-dimensional Euler equations on unstructured meshes

    NASA Technical Reports Server (NTRS)

    Slack, David C.; Whitaker, D. L.; Walters, Robert W.

    1994-01-01

    Explicit and implicit time integration algorithms for the two-dimensional Euler equations on unstructured grids are presented. Both cell-centered and cell-vertex finite volume upwind schemes utilizing Roe's approximate Riemann solver are developed. For the cell-vertex scheme, a four-stage Runge-Kutta time integration, a fourstage Runge-Kutta time integration with implicit residual averaging, a point Jacobi method, a symmetric point Gauss-Seidel method and two methods utilizing preconditioned sparse matrix solvers are presented. For the cell-centered scheme, a Runge-Kutta scheme, an implicit tridiagonal relaxation scheme modeled after line Gauss-Seidel, a fully implicit lower-upper (LU) decomposition, and a hybrid scheme utilizing both Runge-Kutta and LU methods are presented. A reverse Cuthill-McKee renumbering scheme is employed for the direct solver to decrease CPU time by reducing the fill of the Jacobian matrix. A comparison of the various time integration schemes is made for both first-order and higher order accurate solutions using several mesh sizes, higher order accuracy is achieved by using multidimensional monotone linear reconstruction procedures. The results obtained for a transonic flow over a circular arc suggest that the preconditioned sparse matrix solvers perform better than the other methods as the number of elements in the mesh increases.

  2. MHSS: a material handling system simulator

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

    Pomernacki, L.; Hollstien, R.B.

    1976-04-07

    A Material Handling System Simulator (MHSS) program is described that provides specialized functional blocks for modeling and simulation of nuclear material handling systems. Models of nuclear fuel fabrication plants may be built using functional blocks that simulate material receiving, storage, transport, inventory, processing, and shipping operations as well as the control and reporting tasks of operators or on-line computers. Blocks are also provided that allow the user to observe and gather statistical information on the dynamic behavior of simulated plants over single or replicated runs. Although it is currently being developed for the nuclear materials handling application, MHSS can bemore » adapted to other industries in which material accountability is important. In this paper, emphasis is on the simulation methodology of the MHSS program with application to the nuclear material safeguards problem. (auth)« less

  3. A new testing station about full-scale testing for rockfall protection systems

    NASA Astrophysics Data System (ADS)

    Bost, Marion; Dubois, Laurent; Rocher-Lacoste, Frédéric

    2010-05-01

    Rock blocks which detach from slopes overhanging urban areas, roads, railways and other infrastructures create one of the most frequent hazards in mountainous areas. Some of protection systems against rockfalls are designed to mitigate the effects of a foreseen movement by intercepting and stopping falling rock blocks. Despite the worldwide application of this kind of protections, the global behaviour of such a system has been poorly investigated, for the time being, and only at a reduced scale. The behaviour of these protection systems at real scale has been widely extrapolated, however these theories have still not been investigated by performing relating test at scale 1. The French Public Work Laboratory (LCPC) has decided to build a new testing station to work on that topic. This new testing station located in French Alps is able to drop heavy loads (up to 20 tons) from the top of a cliff down to structural systems in order to test their resistance to big shocks and study their dynamical behaviour at this high energy level. As the fall height can reach near 70m, the impact velocity can actually reach 35 metres per second and the energy released during the impact can be as large as 13 500 kilojoules. The experimental area at the bottom of the cliff which can be impacted by a block is 12 metres wide. This allows to test not only rockfall protection systems at scale 1 but also some parts of building structures too. To avoid damaging test-structure during a block drop due to dynamical effects, the dropping hook was designed with a special system. This one consists of a reversed mass which can be adapted to the dropped block and dropped together with the block. Moreover, it is very important to pay attention on repeatability of results concerning new devices for experiments. Whatever fall height the impact point is hit so with a precision of 50 centimetres. Such an experimental facility needs to be equipped with a relevant instrumentation. High capacity stress sensors, accelerometers and high speed cameras are available for experiments. They have been chosen for their capacity to work with an important length of cables. The monitoring with these experimental devices is performed at a high sample frequency suitable and for a very short load like an impact. A radio controlled system allows triggering monitoring and dropping at the same time. Due to bounce risk with the dropped block the safety of personal is ensured by strict operating rules. An observation platform has been located on an embankment along the test-site in order to follow experiments without risk. Two years were necessary for the test-site construction and its equipment. First tests on rockfall nets fences were performed at the end of 2009.

  4. Structural design principles for delivery of bioactive components in nutraceuticals and functional foods.

    PubMed

    McClements, David Julian; Decker, Eric Andrew; Park, Yeonhwa; Weiss, Jochen

    2009-06-01

    There have been major advances in the design and fabrication of structured delivery systems for the encapsulation of nutraceutical and functional food components. A wide variety of delivery systems is now available, each with its own advantages and disadvantages for particular applications. This review begins by discussing some of the major nutraceutical and functional food components that need to be delivered and highlights the main limitations to their current utilization within the food industry. It then discusses the principles underpinning the rational design of structured delivery systems: the structural characteristics of the building blocks; the nature of the forces holding these building blocks together; and, the different ways of assembling these building blocks into structured delivery systems. Finally, we review the major types of structured delivery systems that are currently available to food scientists: lipid-based (simple, multiple, multilayer, and solid lipid particle emulsions); surfactant-based (simple micelles, mixed micelles, vesicles, and microemulsions) and biopolymer-based (soluble complexes, coacervates, hydrogel droplets, and particles). For each type of delivery system we describe its preparation, properties, advantages, and limitations.

  5. Fully automated three-dimensional microscopy system

    NASA Astrophysics Data System (ADS)

    Kerschmann, Russell L.

    2000-04-01

    Tissue-scale structures such as vessel networks are imaged at micron resolution with the Virtual Tissue System (VT System). VT System imaging of cubic millimeters of tissue and other material extends the capabilities of conventional volumetric techniques such as confocal microscopy, and allows for the first time the integrated 2D and 3D analysis of important tissue structural relationships. The VT System eliminates the need for glass slide-mounted tissue sections and instead captures images directly from the surface of a block containing a sample. Tissues are en bloc stained with fluorochrome compounds, embedded in an optically conditioned polymer that suppresses image signals form dep within the block , and serially sectioned for imaging. Thousands of fully registered 2D images are automatically captured digitally to completely convert tissue samples into blocks of high-resolution information. The resulting multi gigabyte data sets constitute the raw material for precision visualization and analysis. Cellular function may be seen in a larger anatomical context. VT System technology makes tissue metrics, accurate cell enumeration and cell cycle analyses possible while preserving full histologic setting.

  6. Autoblocker: a system for detecting and blocking of network scanning based on analysis of netflow data

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

    Bobyshev, A.; Lamore, D.; Demar, P.

    2004-12-01

    In a large campus network, such at Fermilab, with tens of thousands of nodes, scanning initiated from either outside of or within the campus network raises security concerns. This scanning may have very serious impact on network performance, and even disrupt normal operation of many services. In this paper we introduce a system for detecting and automatic blocking excessive traffic of different kinds of scanning, DoS attacks, virus infected computers. The system, called AutoBlocker, is a distributed computing system based on quasi-real time analysis of network flow data collected from the border router and core switches. AutoBlocker also has anmore » interface to accept alerts from IDS systems (e.g. BRO, SNORT) that are based on other technologies. The system has multiple configurable alert levels for the detection of anomalous behavior and configurable trigger criteria for automated blocking of scans at the core or border routers. It has been in use at Fermilab for about 2 years, and has become a very valuable tool to curtail scan activity within the Fermilab campus network.« less

  7. Dynamically reassigning a connected node to a block of compute nodes for re-launching a failed job

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

    Budnik, Thomas A; Knudson, Brant L; Megerian, Mark G

    Methods, systems, and products for dynamically reassigning a connected node to a block of compute nodes for re-launching a failed job that include: identifying that a job failed to execute on the block of compute nodes because connectivity failed between a compute node assigned as at least one of the connected nodes for the block of compute nodes and its supporting I/O node; and re-launching the job, including selecting an alternative connected node that is actively coupled for data communications with an active I/O node; and assigning the alternative connected node as the connected node for the block of computemore » nodes running the re-launched job.« less

  8. Study on a novel laser target detection system based on software radio technique

    NASA Astrophysics Data System (ADS)

    Song, Song; Deng, Jia-hao; Wang, Xue-tian; Gao, Zhen; Sun, Ji; Sun, Zhi-hui

    2008-12-01

    This paper presents that software radio technique is applied to laser target detection system with the pseudo-random code modulation. Based on the theory of software radio, the basic framework of the system, hardware platform, and the implementation of the software system are detailed. Also, the block diagram of the system, DSP circuit, block diagram of the pseudo-random code generator, and soft flow diagram of signal processing are designed. Experimental results have shown that the application of software radio technique provides a novel method to realize the modularization, miniaturization and intelligence of the laser target detection system, and the upgrade and improvement of the system will become simpler, more convenient, and cheaper.

  9. Two-dimensional phase separated structures of block copolymers on solids

    NASA Astrophysics Data System (ADS)

    Sen, Mani; Jiang, Naisheng; Endoh, Maya; Koga, Tadanori; Ribbe, Alexander

    The fundamental, yet unsolved question in block copolymer (BCP) thin films is the self-organization process of BCPs at the solid-polymer melt interface. We here focus on the self-organization processes of cylinder-forming polystyrene-block-poly (4-vinylpyridine) diblock copolymer and lamellar-forming poly (styrene-block-butadiene-block-styrene) triblock copolymer on Si substrates as model systems. In order to reveal the buried interfacial structures, the following experimental protocols were utilized: the BCP monolayer films were annealed under vacuum at T>Tg of the blocks (to equilibrate the melts); vitrification of the annealed BCP films via rapid quench to room temperature; subsequent intensive solvent leaching (to remove unadsorbed chains) with chloroform, a non-selective good solvent for the blocks. The strongly bound BCP layers were then characterized by using atomic force microscopy, scanning electron microscopy, grazing incidence small angle X-ray scattering, and X-ray reflectivity. The results showed that both blocks lie flat on the substrate, forming the two-dimensional, randomly phase-separated structure irrespective of their microdomain structures and interfacial energetics. Acknowledgement of financial support from NSF Grant (CMMI -1332499).

  10. In Vitro Comparative Analysis of Fracture Resistance in Inlay Restoration Prepared with CAD-CAM and Different Systems in the Primary Teeth

    PubMed Central

    Derelioglu, Sera

    2016-01-01

    Objective. The aim of this study was to compare to fracture resistance test of inlay restorations prepared using direct inlay technique (Gradia® Direct Composite) and Indirect Restoration System® (Gradia Indirect Composite) and CAD/CAD system (Vita Enamic® Block). Study Design. 48 noncarious extracted maxillary second primary molars were randomly divided into 4 groups with 12 in each group. All the teeth were prepared based on inlay class II preparations except for the control group. Other groups were restored with Gradia Direct Composite, Gradia Indirect Composite, and Vita Enamic Block, respectively. All restorations were cemented self-adhesive dual cure resin (3M Espe, RelyX™ Unicem Aplicap). A fracture test was performed using a compressive load. Results were analyzed using one-way analysis of variance and Duncan's post hoc multiple comparison tests (α = 0.05). Results. Vita Enamic Block and Gradia Indirect Composite showed significantly higher fracture resistance than Gradia Direct Composite (p < 0.05). There was no significant difference fracture resistance between Vita Enamic Block and Gradia Indirect Composite (p > 0.05). All restorations tested led to a significant reduction in fracture resistance (p < 0.05). Conclusion. In inlay restorations, Indirect Restoration Systems and CAD/CAM systems were applied successfully together with the self-adhesive dual cure resin cements in primary molars. PMID:27830145

  11. Complications with the MICRA TPS Pacemaker System: Persistent Complete Heart Block and Late Capture Failure.

    PubMed

    Holm, Niels; Müller, Andreas; Zbinden, Rainer

    2017-04-01

    A Medtronic MICRA transcatheter pacing system (Medtronic, Minneapolis, MN, USA) was implanted in an 86-year-old patient with sick sinus syndrome and left bundle branch block after transfemoral aortic valve implantation. During implantation she developed a persistent complete heart block due to manipulation with the large-bore delivery catheter. Two weeks later, acute pacemaker dysfunction occurred due to massive increase of pacing threshold and impedance without obvious pacemaker dislocation or myocardial perforation. Recurrent capture failure was seen with pacing output set at 5 V/1.0 ms. Hence, microdislocation or fixation of the tines in the right ventricular trabeculae has to be assumed. © 2016 Wiley Periodicals, Inc.

  12. Expediting analog design retargeting by design knowledge re-use and circuit synthesis: a practical example on a Delta-Sigma modulator

    NASA Astrophysics Data System (ADS)

    Webb, Matthew; Tang, Hua

    2016-08-01

    In the past decade or two, due to constant and rapid technology changes, analog design re-use or design retargeting to newer technologies has been brought to the table in order to expedite the design process and improve time-to-market. If properly conducted, analog design retargeting could significantly cut down design cycle compared to designs starting from the scratch. In this article, we present an empirical and general method for efficient analog design retargeting by design knowledge re-use and circuit synthesis (CS). The method first identifies circuit blocks that compose the source system and extracts the performance parameter specifications of each circuit block. Then, for each circuit block, it scales the values of design variables (DV) from the source design to derive an initial design in the target technology. Depending on the performance of this initial target design, a design space is defined for synthesis. Subsequently, each circuit block is automatically synthesised using state-of-art analog synthesis tools based on a combination of global and local optimisation techniques to achieve comparable performance specifications to those extracted from the source system. Finally, the overall system is composed of those synthesised circuit blocks in the target technology. We illustrate the method using a practical example of a complex Delta-Sigma modulator (DSM) circuit.

  13. Tunable Encapsulation Structure of Block Copolymer Coated Single-Walled Carbon Nanotubes in Aqueous Solution

    DOE PAGES

    Han, Youngkyu; Ahn, Suk-Kyun; Zhang, Zhe; ...

    2015-05-15

    The nano-sized and shape-tunable molecular building blocks can provide great opportunities for the fabrication of precisely controlled nanostructures. In this work, we have fabricated a molecular building block of single-walled carbon nanotubes (SWNTs) coated by PPO-PEO-PPO block copolymers whose encapsulation structure can be controlled via temperature or addition of small molecules. The structure and optical properties of SWNT-block copolymers have been investigated by small angle neutron scattering (SANS), ultraviolet-visible (UV-vis) spectroscopy, atomic force microscopy (AFM), and molecular dynamics (MD) simulation. The structure of the hydrated block copolymer layer surrounding SWNT can be controlled reversibly by varying temperature as well asmore » by irreversibly adding 5-methylsalicylic acid (5MS). Increasing hydrophobicity of the polymers with temperature and strong tendency of 5MS to interact with both block copolymers and orbitals of the SWNTs are likely to be responsible for the significant structural change of the block copolymer encapsulation layer, from loose corona shell to tightly encapsulating compact shell. These result shows an efficient and simple way to fabricate and manipulate carbon-based nano building blocks in aqueous systems with tunable structure.« less

  14. Preparation and development of block copolypeptide vesicles and hydrogels for biological and medical applications.

    PubMed

    Deming, Timothy J

    2014-01-01

    There have been many recent advances in the controlled polymerization of α-amino acid-N-carboxyanhydride (NCA) monomers into well-defined block copolypeptides. Transition metal initiating systems allow block copolypeptide synthesis with excellent control over number and lengths of block segments, chain length distribution, and chain-end functionality. Using this and other methods, block copolypeptides of controlled dimensions have been prepared and their self-assembly into organized structures studied by many research groups. The ability of well-defined block copolypeptides to assemble into supramolecular copolypeptide vesicles and hydrogels has led to the development of these materials for use in biological and medical applications. These assemblies have been found to possess unique properties that are derived from the amino acid building blocks and ordered conformations of the polypeptide segments. Recent work on the incorporation of active and stimulus-responsive functionality in these materials has tremendously increased their potential for use in biological and medical studies. © 2014 Wiley Periodicals, Inc.

  15. Access block in NSW hospitals, 1999-2001: does the definition matter?

    PubMed

    Forero, Roberto; Mohsin, Mohammed; Bauman, Adrian E; Ieraci, Sue; Young, Lis; Phung, Hai N; Hillman, Kenneth M; McCarthy, Sally M; Hugelmeyer, C David

    2004-01-19

    To estimate the magnitude of access block and its trend over time in New South Wales hospitals, using different definitions of access block, and to explore its association with clinical and non-clinical factors. An epidemiological study using the Emergency Department Information System datasets (1 January 1999 to 31 December 2001) from a sample of 55 NSW hospitals. Prevalence of access block measured by four different definitions; strength of association between access block, type of hospital, year of presentation, mode and time of arrival, triage category (an indicator of urgency), age and sex. Rates of access block (for all four definitions) increased between 1999 and 2001 by 1%-2% per year. There were increases across all regions of NSW, but urban regions in particular. Patients presenting to Principal Referral hospitals and those who arrived at night were more likely to experience access block. After adjusting for triage category and year of presentation, the mode of arrival, time of arrival, type of hospital, age and sex were significantly associated with access block. Access block continues to increase across NSW, whatever the definition used. We recommend that hospitals in NSW and Australia move to the use of one standard definition of access block, as our study suggests there is no significant additional information emerging from the use of multiple definitions.

  16. The Building Blocks for JWST I and T (Integrations and Test) to Operations - From Simulator to Flight Units

    NASA Technical Reports Server (NTRS)

    Fatig, Curtis; Ochs, William; Johns, Alan; Seaton, Bonita; Adams, Cynthia; Wasiak, Francis; Jones, Ronald; Jackson, Wallace

    2012-01-01

    The James Webb Space Telescope (JWST) Project has an extended integration and test (I&T) phase due to long procurement and development times of various components as well as recent launch delays. The JWST Ground Segment and Operations group has developed a roadmap of the various ground and flight elements and their use in the various JWST I&T test programs. The JWST Project s building block approach to the eventual operational systems, while not new, is complex and challenging; a large-scale mission like JWST involves international partners, many vendors across the United States, and competing needs for the same systems. One of the challenges is resource balancing so simulators and flight products for various elements congeal into integrated systems used for I&T and flight operations activities. This building block approach to an incremental buildup provides for early problem identification with simulators and exercises the flight operations systems, products, and interfaces during the JWST I&T test programs. The JWST Project has completed some early I&T with the simulators, engineering models and some components of the operational ground system. The JWST Project is testing the various flight units as they are delivered and will continue to do so for the entire flight and operational system. The JWST Project has already and will continue to reap the value of the building block approach on the road to launch and flight operations.

  17. Communication Module for the Micro-Based Small Purchase Contracting Program

    DTIC Science & Technology

    1992-03-01

    SUISISTUCI 2 3 SANDWICH COOKIES 3 CREAM FILLING, CHOCOLATE FLAVOR, VANILLA FLAVOR, OR 3 COM INATION BASE CAKES , ADCOP. 2 2 VARIATION PROVISIONS SAE AS CLII...SUBJECT TERMS (continue on reverse if necessary and identify by block number) FIELD I GROUP SUBGROUP Procurement Automation Telecommunications System...Information Management System 19 ABSTRACT (continue on reverse if necessary and identify by block number) This thesis conducted research and development of

  18. Electrical control of superparamagnetism

    NASA Astrophysics Data System (ADS)

    Yamada, Kihiro T.; Koyama, Tomohiro; Kakizakai, Haruka; Miwa, Kazumoto; Ando, Fuyuki; Ishibashi, Mio; Kim, Kab-Jin; Moriyama, Takahiro; Ono, Shimpei; Chiba, Daichi; Ono, Teruo

    2017-01-01

    The electric field control of superparamagnetism is realized using a Cu/Ni system, in which the deposited Ni shows superparamagnetic behavior above the blocking temperature. An electric double-layer capacitor (EDLC) with the Cu/Ni electrode and a nonmagnetic counter electrode is fabricated to examine the electric field effect on magnetism in the magnetic electrode. By changing the voltage applied to the EDLC, the blocking temperature of the system is clearly modulated.

  19. LUMIS: A Land Use Management Information System for urban planning

    NASA Technical Reports Server (NTRS)

    Paul, C. K.

    1975-01-01

    The Land Use Management Information System (LUMIS) consists of a methodology of compiling land use maps by means of air photo interpretation techniques, digitizing these and other maps into machine-readable form, and numerically overlaying these various maps in two computer software routines to provide land use and natural resource data files referenced to the individual census block. The two computer routines are the Polygon Intersection Overlay System (PIOS) and an interactive graphics APL program. A block referenced file of land use, natural resources, geology, elevation, slope, and fault-line items has been created and supplied to the Los Angeles Department of City Planning for the City's portion of the Santa Monica Mountains. In addition, the interactive system contains one hundred and seventy-three socio-economic data items created by merging the Third Count U.S. Census Bureau tapes and the Los Angeles County Secured Assessor File. This data can be graphically displayed for each and every block, block group, or tract for six test tracts in Woodland Hills, California. Other benefits of LUMIS are the knowledge of air photo availability, flight pattern coverage and frequencies, and private photogrammetry companies flying Southern California, as well as a formal Delphi study of relevant land use informational needs in the Santa Monicas.

  20. Block copolymer libraries: modular versatility of the macromolecular Lego system.

    PubMed

    Lohmeijer, Bas G G; Wouters, Daan; Yin, Zhihui; Schubert, Ulrich S

    2004-12-21

    The synthesis and characterization of a new 4 x 4 library of block copolymers based on polystyrene and poly(ethylene oxide) connected by an asymmetrical octahedral bis(terpyridine) ruthenium complex at the block junction are described, while initial studies on the thin film morphology of the components of the library are presented by the use of Atomic Force Microscopy, demonstrating the impact of a library approach to derive structure-property relationships.

  1. Uav Photogrammetry: Block Triangulation Comparisons

    NASA Astrophysics Data System (ADS)

    Gini, R.; Pagliari, D.; Passoni, D.; Pinto, L.; Sona, G.; Dosso, P.

    2013-08-01

    UAVs systems represent a flexible technology able to collect a big amount of high resolution information, both for metric and interpretation uses. In the frame of experimental tests carried out at Dept. ICA of Politecnico di Milano to validate vector-sensor systems and to assess metric accuracies of images acquired by UAVs, a block of photos taken by a fixed wing system is triangulated with several software. The test field is a rural area included in an Italian Park ("Parco Adda Nord"), useful to study flight and imagery performances on buildings, roads, cultivated and uncultivated vegetation. The UAV SenseFly, equipped with a camera Canon Ixus 220HS, flew autonomously over the area at a height of 130 m yielding a block of 49 images divided in 5 strips. Sixteen pre-signalized Ground Control Points, surveyed in the area through GPS (NRTK survey), allowed the referencing of the block and accuracy analyses. Approximate values for exterior orientation parameters (positions and attitudes) were recorded by the flight control system. The block was processed with several software: Erdas-LPS, EyeDEA (Univ. of Parma), Agisoft Photoscan, Pix4UAV, in assisted or automatic way. Results comparisons are given in terms of differences among digital surface models, differences in orientation parameters and accuracies, when available. Moreover, image and ground point coordinates obtained by the various software were independently used as initial values in a comparative adjustment made by scientific in-house software, which can apply constraints to evaluate the effectiveness of different methods of point extraction and accuracies on ground check points.

  2. [Immunotherapy: Activation of a system not a pathway].

    PubMed

    Bernichon, Emilie; Rancoule, Chloé; Vallard, Alexis; Langrand-Escure, Julien; Mery, Benoîte; Guy, Jean-Baptiste; Magné, Nicolas

    2017-05-01

    Immunotherapy is on the roll. After revolutionary effects in melanoma, immunotherapy is invading other locations. If current treatments, chemotherapies or targeted therapies block one pathway, immunotherapy should be understood as the activation of a whole system. Indeed, oncogenesis process is defined as an escape of the immune system and the stimulation of this system can block the carcinogenic process. The aim of the present review is to describe the place of immunotherapy in the treatment of solid cancers. Copyright © 2017 Société Française du Cancer. Published by Elsevier Masson SAS. All rights reserved.

  3. A casemix model for estimating the impact of hospital access block on the emergency department.

    PubMed

    Stuart, Peter

    2004-06-01

    To determine the ED activity and costs resulting from access block. A casemix model (AWOOS) was developed to measure activity due to access block. Using data from four hospitals between 1998 and 2002, ED activity was measured using the urgency and disposition group (UDG) casemix model and the AWOOS model with the purpose of determining the change in ED activity due to access block. Whilst the mean length of stay in ED (admitted patients) increased by 93% between 1998 and 2002, mean UDG activity increased by 0.63% compared to a mean increase in AWOOS activity of 24.5%. The 23.9% difference between UDG and AWOOS activity represents the (unmeasured) increase in ED activity and costs for the period 1998-2002 resulting from access block. The UDG system significantly underestimates the activity in EDs experiencing marked access block.

  4. Markov prior-based block-matching algorithm for superdimension reconstruction of porous media

    NASA Astrophysics Data System (ADS)

    Li, Yang; He, Xiaohai; Teng, Qizhi; Feng, Junxi; Wu, Xiaohong

    2018-04-01

    A superdimension reconstruction algorithm is used for the reconstruction of three-dimensional (3D) structures of a porous medium based on a single two-dimensional image. The algorithm borrows the concepts of "blocks," "learning," and "dictionary" from learning-based superresolution reconstruction and applies them to the 3D reconstruction of a porous medium. In the neighborhood-matching process of the conventional superdimension reconstruction algorithm, the Euclidean distance is used as a criterion, although it may not really reflect the structural correlation between adjacent blocks in an actual situation. Hence, in this study, regular items are adopted as prior knowledge in the reconstruction process, and a Markov prior-based block-matching algorithm for superdimension reconstruction is developed for more accurate reconstruction. The algorithm simultaneously takes into consideration the probabilistic relationship between the already reconstructed blocks in three different perpendicular directions (x , y , and z ) and the block to be reconstructed, and the maximum value of the probability product of the blocks to be reconstructed (as found in the dictionary for the three directions) is adopted as the basis for the final block selection. Using this approach, the problem of an imprecise spatial structure caused by a point simulation can be overcome. The problem of artifacts in the reconstructed structure is also addressed through the addition of hard data and by neighborhood matching. To verify the improved reconstruction accuracy of the proposed method, the statistical and morphological features of the results from the proposed method and traditional superdimension reconstruction method are compared with those of the target system. The proposed superdimension reconstruction algorithm is confirmed to enable a more accurate reconstruction of the target system while also eliminating artifacts.

  5. Cellient™ automated cell block versus traditional cell block preparation: a comparison of morphologic features and immunohistochemical staining.

    PubMed

    Wagner, David G; Russell, Donna K; Benson, Jenna M; Schneider, Ashley E; Hoda, Rana S; Bonfiglio, Thomas A

    2011-10-01

    Traditional cell block (TCB) sections serve as an important diagnostic adjunct to cytologic smears but are also used today as a reliable preparation for immunohistochemical (IHC) studies. There are many ways to prepare a cell block and the methods continue to be revised. In this study, we compare the TCB with the Cellient™ automated cell block system. Thirty-five cell blocks were obtained from 16 benign and 19 malignant nongynecologic cytology specimens at a large university teaching hospital and prepared according to TCB and Cellient protocols. Cell block sections from both methods were compared for possible differences in various morphologic features and immunohistochemical staining patterns. In the 16 benign cases, no significant morphologic differences were found between the TCB and Cellient cell block sections. For the 19 malignant cases, some noticeable differences in the nuclear chromatin and cellularity were identified, although statistical significance was not attained. Immunohistochemical or special stains were performed on 89% of the malignant cases (17/19). Inadequate cellularity precluded full evaluation in 23% of Cellient cell block IHC preparations (4/17). Of the malignant cases with adequate cellularity (13/17), the immunohistochemical staining patterns from the different methods were identical in 53% of cases. The traditional and Cellient cell block sections showed similar morphologic and immunohistochemical staining patterns. The only significant difference between the two methods concerned the lower overall cell block cellularity identified during immunohistochemical staining in the Cellient cell block sections. Copyright © 2010 Wiley-Liss, Inc.

  6. NASA'S Space Launch System: Progress Toward the Proving Ground

    NASA Technical Reports Server (NTRS)

    Jackman, Angie; Johnson, Les

    2017-01-01

    With significant and substantial progress being accomplished toward readying the Space Launch System (SLS) rocket for its first test flight, work is already also underway on preparations for the second flight – using an upgraded version of the vehicle – and beyond. Designed to support human missions into deep space, Space Launch System (SLS), is the most powerful human-rated launch vehicle the United States has ever undertaken, and together with the Orion spacecraft will support human exploration missions into the proving ground of cislunar space and ultimately to Mars. For its first flight, SLS will deliver a near-term heavy-lift capability for the nation with its 70-metric-ton Block 1 configuration. Each element of the vehicle now has flight hardware in production in support of the initial flight of the SLS, which will propel Orion around the moon and back. For its second flight, SLS will be upgraded to the more-capable Block 1B configuration. While the Block 1 configuration is capable of delivering more than 70 metric tons to low Earth orbit, the Block 1B vehicle will increase that capability to 105 metric tons. For that flight, the new configuration introduces two major new elements to the vehicle – an Exploration Upper Stage (EUS) that will be used for both ascent and in-space propulsion, and a Universal Stage Adapter (USA) that serves as a “payload bay” for the rocket, allowing the launch of large exploration systems along with the Orion spacecraft. Already, flight hardware is being prepared for the Block 1B vehicle. Beyond the second flight, additional upgrades will be made to the vehicle. The Block 1B vehicle will also be able to launch 8.4-meter-diameter payload fairings, larger than any previously flown, and the Spacecraft Payload Integration and Evolution (SPIE) Element will oversee development and production of those fairings. Ultimately, SLS will be evolved to a Block 2 configuration, which will replace the solid rocket boosters on the Block 1 and 1B vehicles with more powerful boosters, and will be capable of delivering at least 130 metric tons to LEO. The Block 2 vehicle will be capable of launching even larger 10-meter diameter fairings, which will enable human mission of Mars. With these fairings, the Block 1B and 2 configurations of SLS will also be enabling for a wide variety of other payloads. For robotic science probes to the outer solar system, for example, SLS can cut transit times to less than half that of currently available vehicles, producing earlier data return, enhancing iterative exploration, and reducing mission cost and risk. In the field of astrophysics, SLS’ high payload volume, in the form of payload fairings with a diameter of up to 10 meters, creates the opportunity for launch of large-aperture telescopes providing an unprecedented look at our universe, and offers the ability to conduct crewed servicing missions to observatories stationed at locations beyond low Earth orbit. This paper will provide a description of the SLS vehicle, and an overview of the vehicle’s capabilities and utilization potential.

  7. SYSTID - A flexible tool for the analysis of communication systems.

    NASA Technical Reports Server (NTRS)

    Dawson, C. T.; Tranter, W. H.

    1972-01-01

    Description of the System Time Domain Simulation (SYSTID) computer-aided analysis program which is specifically structured for communication systems analysis. The SYSTID program is user oriented so that very little knowledge of computer techniques and very little programming ability are required for proper application. The program is designed so that the user can go from a system block diagram to an accurate simulation by simply programming a single English language statement for each block in the system. The mathematical and functional models available in the SYSTID library are presented. An example problem is given which illustrates the ease of modeling communication systems. Examples of the outputs available are presented, and proposed improvements are summarized.

  8. The use of open and machine vision technologies for development of gesture recognition intelligent systems

    NASA Astrophysics Data System (ADS)

    Cherkasov, Kirill V.; Gavrilova, Irina V.; Chernova, Elena V.; Dokolin, Andrey S.

    2018-05-01

    The article is devoted to reflection of separate aspects of intellectual system gesture recognition development. The peculiarity of the system is its intellectual block which completely based on open technologies: OpenCV library and Microsoft Cognitive Toolkit (CNTK) platform. The article presents the rationale for the choice of such set of tools, as well as the functional scheme of the system and the hierarchy of its modules. Experiments have shown that the system correctly recognizes about 85% of images received from sensors. The authors assume that the improvement of the algorithmic block of the system will increase the accuracy of gesture recognition up to 95%.

  9. 78 FR 24987 - Regulated Navigation Area, Gulf of Mexico; Mississippi Canyon Block 20, South of New Orleans, LA

    Federal Register 2010, 2011, 2012, 2013, 2014

    2013-04-29

    ... establishing a Regulated Navigation Area (RNA) in the Mississippi Canyon Block 20 in the Gulf of Mexico. This RNA is needed to protect the subsurface monitoring and collection dome system [[Page 24988

  10. Systematic review of the effects of fascia iliaca compartment block on hip fracture patients before operation.

    PubMed

    Steenberg, J; Møller, A M

    2018-06-01

    Fascia iliaca compartment block is used for hip fractures in order to reduce pain, the need for systemic analgesia, and prevent delirium, on this basis. This systematic review was conducted to investigate the analgesic and adverse effects of fascia iliaca block on hip fracture in adults when applied before operation. Nine databases were searched from inception until July 2016 yielding 11 randomised and quasi-randomised controlled trials, all using loss of resistance fascia iliaca compartment block, with a total population of 1062 patients. Meta-analyses were conducted comparing the analgesic effect of fascia iliaca compartment block on nonsteroidal anti-inflammatory drugs (NSAIDs), opioids and other nerve blocks, preoperative analgesia consumption, and time to perform spinal anaesthesia compared with opioids and time for block placement. The analgesic effect of fascia iliaca compartment block was superior to that of opioids during movement, resulted in lower preoperative analgesia consumption and a longer time for first request, and reduced time to perform spinal anaesthesia. Block success rate was high and there were very few adverse effects. There is insufficient evidence to conclude anything on preoperative analgesic consumption or first request thereof compared with NSAIDs and other nerve blocks, postoperative analgesic consumption for preoperatively applied fascia iliaca compartment block compared with NSAIDs, opioids and other nerve blocks, incidence and severity of delirium, and length of stay or mortality. Fascia iliaca compartment block is an effective and relatively safe supplement in the preoperative pain management of hip fracture patients. Copyright © 2018 British Journal of Anaesthesia. Published by Elsevier Ltd. All rights reserved.

  11. Basement and cover-rock deformation during Laramide contraction in the northern Madison Range (Montana) and its influence on Cenozoic basin formation

    USGS Publications Warehouse

    Kellogg, K.S.; Schmidt, C.J.; Young, S.W.

    1995-01-01

    Two major Laramide fault systems converge in the northwestern Madison Range: the northwest-striking, southwest-vergent Spanish Peaks reverse fault and the north-striking, east-vergent Hilgard thrust system. Analysis of foliation attitudes in basement gneiss north and south of the Spanish Peaks fault indicates that the basement in thrusted blocks of the Hilgard thrust system have been rotated by an amount similar to that of the basement-cover contact. Steeply dipping, north-striking breccia zones enclosing domains of relatively undeformed basement may have permitted domino-style rotation of basement blocks during simple shear between pairs of thrusts. No hydrocarbon discoveries have been made in this unique structural province. However, petroleum exploration here has focused on basement-cored anticlines, both surface and subthrust, related to the two major Laramide fault systems and on the fault-bounded blocks of Tertiary rocks within the post-Laramide extensional basins. -from Authors

  12. Fuel-Mediated Transient Clustering of Colloidal Building Blocks.

    PubMed

    van Ravensteijn, Bas G P; Hendriksen, Wouter E; Eelkema, Rienk; van Esch, Jan H; Kegel, Willem K

    2017-07-26

    Fuel-driven assembly operates under the continuous influx of energy and results in superstructures that exist out of equilibrium. Such dissipative processes provide a route toward structures and transient behavior unreachable by conventional equilibrium self-assembly. Although perfected in biological systems like microtubules, this class of assembly is only sparsely used in synthetic or colloidal analogues. Here, we present a novel colloidal system that shows transient clustering driven by a chemical fuel. Addition of fuel causes an increase in hydrophobicity of the building blocks by actively removing surface charges, thereby driving their aggregation. Depletion of fuel causes reappearance of the charged moieties and leads to disassembly of the formed clusters. This reassures that the system returns to its initial, equilibrium state. By taking advantage of the cyclic nature of our system, we show that clustering can be induced several times by simple injection of new fuel. The fuel-mediated assembly of colloidal building blocks presented here opens new avenues to the complex landscape of nonequilibrium colloidal structures, guided by biological design principles.

  13. Effectiveness of base-of-skull immobilization system in a compact proton therapy setting.

    PubMed

    Shafai-Erfani, Ghazal; Willoughby, Twyla; Ramakrishna, Naren; Meeks, Sanford; Kelly, Patrick; Zeidan, Omar

    2018-05-01

    The purpose of this study was to investigate daily repositioning accuracy by analyzing inter- and intra-fractional uncertainties associated with patients treated for intracranial or base of skull tumors in a compact proton therapy system with 6 degrees of freedom (DOF) robotic couch and a thermoplastic head mask indexed to a base of skull (BoS) frame. Daily orthogonal kV alignment images at setup position before and after daily treatments were analyzed for 33 patients. The system was composed of a new type of thermoplastic mask, a bite block, and carbon-fiber BoS couch-top insert specifically designed for proton therapy treatments. The correctional shifts in robotic treatment table with 6 DOF were evaluated and recorded based on over 1500 planar kV image pairs. Correctional shifts for patients with and without bite blocks were compared. Systematic and random errors were evaluated for all 6 DOF coordinates available for daily vector corrections. Uncertainties associated with geometrical errors and their sources, in addition to robustness analysis of various combinations of immobilization components were presented. Analysis of 644 fractions including patients with and without a bite block shows that the BoS immobilization system is capable of maintaining intra-fraction localization with submillimeter accuracy (in nearly 83%, 86%, 95% of cases along SI, LAT, and PA, respectively) in translational coordinates and subdegree precision (in 98.85%, 98.85%, and 96.4% of cases for roll, pitch, and yaw respectively) in rotational coordinates. The system overall fares better in intra-fraction localization precision compared to previously reported particle therapy immobilization systems. The use of a mask-attached type bite block has marginal impact on inter- or intra-fraction uncertainties compared to no bite block. © 2018 The Authors. Journal of Applied Clinical Medical Physics published by Wiley Periodicals, Inc. on behalf of American Association of Physicists in Medicine.

  14. A 2d Block Model For Landslide Simulation: An Application To The 1963 Vajont Case

    NASA Astrophysics Data System (ADS)

    Tinti, S.; Zaniboni, F.; Manucci, A.; Bortolucci, E.

    A 2D block model to study the motion of a sliding mass is presented. The slide is par- titioned into a matrix of blocks the basis of which are quadrilaterals. The blocks move on a specified sliding surface and follow a trajectory that is computed by the model. The forces acting on the blocks are gravity, basal friction, buoyancy in case of under- water motion, and interaction with neighbouring blocks. At any time step, the position of the blocks on the sliding surface is determined in curvilinear (local) co-ordinates by computing the position of the vertices of the quadrilaterals and the position of the block centre of mass. Mathematically, the topology of the system is invariant during the motion, which means that the number of blocks is constant and that each block has always the same neighbours. Physically, this means that blocks are allowed to change form, but not to penetrate into each other, not to coalesce, not to split. The change of form is compensated by the change of height, under the computational assumption that the block volume is constant during motion: consequently lateral expansion or contraction yield respectively height reduction or increment of the blocks. This model is superior to the analogous 1D model where the mass is partitioned into a chain of interacting blocks. 1D models require the a-priori specification of the sliding path, that is of the trajectory of the blocks, which the 2D block model supplies as one of its output. In continuation of previous studies on the catastrophic slide of Vajont that occurred in 1963 in northern Italy and caused more than 2000 victims, the 2D block model has been applied to the Vajont case. The results are compared to the outcome of the 1D model, and more importantly to the observational data concerning the deposit position and morphology. The agreement between simulation and data is found to be quite good.

  15. Block iterative restoration of astronomical images with the massively parallel processor

    NASA Technical Reports Server (NTRS)

    Heap, Sara R.; Lindler, Don J.

    1987-01-01

    A method is described for algebraic image restoration capable of treating astronomical images. For a typical 500 x 500 image, direct algebraic restoration would require the solution of a 250,000 x 250,000 linear system. The block iterative approach is used to reduce the problem to solving 4900 121 x 121 linear systems. The algorithm was implemented on the Goddard Massively Parallel Processor, which can solve a 121 x 121 system in approximately 0.06 seconds. Examples are shown of the results for various astronomical images.

  16. Variable Coded Modulation software simulation

    NASA Astrophysics Data System (ADS)

    Sielicki, Thomas A.; Hamkins, Jon; Thorsen, Denise

    This paper reports on the design and performance of a new Variable Coded Modulation (VCM) system. This VCM system comprises eight of NASA's recommended codes from the Consultative Committee for Space Data Systems (CCSDS) standards, including four turbo and four AR4JA/C2 low-density parity-check codes, together with six modulations types (BPSK, QPSK, 8-PSK, 16-APSK, 32-APSK, 64-APSK). The signaling protocol for the transmission mode is based on a CCSDS recommendation. The coded modulation may be dynamically chosen, block to block, to optimize throughput.

  17. A simple theory of molecular organization in fullerene-containing liquid crystals

    NASA Astrophysics Data System (ADS)

    Peroukidis, S. D.; Vanakaras, A. G.; Photinos, D. J.

    2005-10-01

    Systematic efforts to synthesize fullerene-containing liquid crystals have produced a variety of successful model compounds. We present a simple molecular theory, based on the interconverting shape approach [Vanakaras and Photinos, J. Mater. Chem. 15, 2002 (2005)], that relates the self-organization observed in these systems to their molecular structure. The interactions are modeled by dividing each molecule into a number of submolecular blocks to which specific interactions are assigned. Three types of blocks are introduced, corresponding to fullerene units, mesogenic units, and nonmesogenic linkage units. The blocks are constrained to move on a cubic three-dimensional lattice and molecular flexibility is allowed by retaining a number of representative conformations within the block representation of the molecule. Calculations are presented for a variety of molecular architectures including twin mesogenic branch monoadducts of C60, twin dendromesogenic branch monoadducts, and conical (badminton shuttlecock) multiadducts of C60. The dependence of the phase diagrams on the interaction parameters is explored. In spite of its many simplifications and the minimal molecular modeling used (three types of chemically distinct submolecular blocks with only repulsive interactions), the theory accounts remarkably well for the phase behavior of these systems.

  18. Ultraviolet radiation-blocking characteristics of contact lenses: relevance to eye protection for psoralen-sensitised patients.

    PubMed

    Anstey, A; Taylor, D; Chalmers, I; Ansari, E

    1999-10-01

    Nine brands of contact lens marketed as "UV protective" were tested for ultraviolet (UV) transmission in order to assess potential suitability for psoralen-sensitised patients. UV-transmission characteristics of hydrated lenses was tested with a Bentham monochromator spectro-radiometer system. All lenses showed minimal transmission loss in the visible band. The performance of the nine lenses was uniform for ultraviolet B radiation with negligible transmission, but showed variation in transmission for ultraviolet A radiation. None of the lenses complied with UV-transmission criteria used previously to assess UV-blocking spectacles. Only two lenses had UV-blocking characteristics which came close to the arbitrary criteria used. The performance of ordinary soft and hard lenses was very similar, with negligible blocking of UV radiation. None of the nine contact lenses marketed as "UV protective" excluded sufficient UVA to comply with criteria in current use to assess UV protection in spectacles for psoralen-sensitised patients. However, the improved UV-blocking characteristics of contact lenses identified in this paper compared to previous studies suggests that such a contact lens will soon become available. Meanwhile, contact lens-wearing systemically sensitised PUVA patients should continue to wear approved spectacles for eye protection whilst photosensitised with psoralen.

  19. Nesting in an Object Oriented Language is NOT for the Birds

    NASA Astrophysics Data System (ADS)

    Buhr, P. A.; Zarnke, C. R.

    The notion of nested blocks has come into disfavour or has been ignored in recent program language design. Many of the current object oriented programming languages use subclassing as the sole mechanism to establish relationships between classes and have no general notion of nesting. We argue that nesting (and, more generally, hierarchical organization) is a powerful mechanism that provides facilities that are not otherwise possible in a class based programming language. We agree that traditional block structure and its associated nesting have severe problems, and we suggest several extensions to the notion of blocks and block structure that indirectly make nesting a useful and powerful mechanism, particularly in an object oriented programming system. The main extension is to allow references to definitions from outside of the containing block, thereby making the contained definitions available in a larger scope. References are made using either the name of the containing entity or an instance of the containing entity. The extensions suggest a way to organize the programming environment for a large, multi-user system. These facilities are not available with subclassing, and subclassing provides facilities not available by nesting; hence, an object oriented language can benefit by providing nesting as well.

  20. Simulation requirements for the Large Deployable Reflector (LDR)

    NASA Technical Reports Server (NTRS)

    Soosaar, K.

    1984-01-01

    Simulation tools for the large deployable reflector (LDR) are discussed. These tools are often the transfer function variety equations. However, transfer functions are inadequate to represent time-varying systems for multiple control systems with overlapping bandwidths characterized by multi-input, multi-output features. Frequency domain approaches are the useful design tools, but a full-up simulation is needed. Because of the need for a dedicated computer for high frequency multi degree of freedom components encountered, non-real time smulation is preferred. Large numerical analysis software programs are useful only to receive inputs and provide output to the next block, and should be kept out of the direct loop of simulation. The following blocks make up the simulation. The thermal model block is a classical heat transfer program. It is a non-steady state program. The quasistatic block deals with problems associated with rigid body control of reflector segments. The steady state block assembles data into equations of motion and dynamics. A differential raytrace is obtained to establish a change in wave aberrations. The observation scene is described. The focal plane module converts the photon intensity impinging on it into electron streams or into permanent film records.

  1. The influence of polarity of additive molecules on micelle structures of polystyrene-block-poly(4-vinylpyridine) in the fabrication of nano-porous templates.

    PubMed

    Chua, Kee Sze; Koh, Ai Peng; Lam, Yeng Ming

    2010-11-01

    Block copolymers are useful for in situ synthesis of nanoparticles as well as producing nanoporous templates. As such, the effects of precursors on the block copolymer micelle structure is important. In this study, we investigate the effects of polarity of molecules introduced into block copolymer micelle cores on the micelle structure. The molecular dipole moment of the additive molecules has been evaluated and their effects on the block copolymer micelles investigated using light scattering spectroscopy, small-angle X-ray scattering, transmission electron microscopy and atomic force microscopy. The molecule with the largest dipole moment resulted in spherical structures with a polydispersity of less than 0.06 in a fully translational diffusion system. Surprisingly, the less polar additive molecules produced elongated micelles and the aspect ratio increases with decreasing polarity. The change in structure from spherical to elongated structure was attributed to P4VP chain extension, where compounds with polarity most similar to P4VP induce the most chain extension. The second virial coefficients of the solutions with elongated micelles are lower than that for spherical micelle systems by up to one order in magnitude, indicating a strong tendency for micelles to coalesce. On rinsing the spin-cast films, pores were obtained from spherical micelles and ridges from elongated micelles, suggesting a viable alternative for morphology modification using mild conditions where external annealing treatments to the film are not preferred. The knowledge of polarity effects of additive molecules on micelle structure has wider implications for supramolecular block copolymer systems where, depending on the application requirements, changes to the shape of the micelle structure can be induced or avoided. Copyright 2010 Elsevier Inc. All rights reserved.

  2. Specification/Verification of Temporal Properties for Distributed Systems: Issues and Approaches. Volume 1

    DTIC Science & Technology

    1990-02-01

    copies Pl ,...,P. of a multiple module fp resolve nondeterminism (local or global) in an identical manner. 5. The copies PI,...,P, axe physically...recovery block. A recovery block consists of a conventional block (like in ALGOL or PL /I) which is provided with a means of error detection, called an...improved failures model for communicating processes. In Proceeding. NSF- SERC Seminar on Concurrency, volume 197 of Lecture Notes in Computer Science

  3. Sustainability and Long Term-Tenure: Lion Trophy Hunting in Tanzania

    PubMed Central

    Brink, Henry; Skinner, Kirsten; Leader-Williams, Nigel

    2016-01-01

    It is argued that trophy hunting of large, charismatic mammal species can have considerable conservation benefits but only if undertaken sustainably. Social-ecological theory suggests such sustainability only results from developing governance systems that balance financial and biological requirements. Here we use lion (Panthera leo) trophy hunting data from Tanzania to investigate how resource ownership patterns influence hunting revenue and offtake levels. Tanzania contains up to half of the global population of free-ranging lions and is also the main location for lion trophy hunting in Africa. However, there are concerns that current hunting levels are unsustainable. The lion hunting industry in Tanzania is run by the private sector, although the government leases each hunting block to companies, enforces hunting regulation, and allocates them a species-specific annual quota per block. The length of these leases varies and theories surrounding property rights and tenure suggest hunting levels would be less sustainable in blocks experiencing a high turnover of short-term leases. We explored this issue using lion data collected from 1996 to 2008 in the Selous Game Reserve (SGR), the most important trophy hunting destination in Tanzania. We found that blocks in SGR with the highest lion hunting offtake were also those that experienced the steepest declines in trophy offtake. In addition, we found this high hunting offtake and the resultant offtake decline tended to be in blocks under short-term tenure. In contrast, lion hunting levels in blocks under long-term tenure matched more closely the recommended sustainable offtake of 0.92 lions per 1000 km2. However, annual financial returns were higher from blocks under short-term tenure, providing $133 per km2 of government revenue as compared to $62 per km2 from long-term tenure blocks. Our results provide evidence for the importance of property rights in conservation, and support calls for an overhaul of the system in Tanzania by developing competitive market-based approaches for block allocation based on long-term tenure of ten years. PMID:27648566

  4. Sustainability and Long Term-Tenure: Lion Trophy Hunting in Tanzania.

    PubMed

    Brink, Henry; Smith, Robert J; Skinner, Kirsten; Leader-Williams, Nigel

    2016-01-01

    It is argued that trophy hunting of large, charismatic mammal species can have considerable conservation benefits but only if undertaken sustainably. Social-ecological theory suggests such sustainability only results from developing governance systems that balance financial and biological requirements. Here we use lion (Panthera leo) trophy hunting data from Tanzania to investigate how resource ownership patterns influence hunting revenue and offtake levels. Tanzania contains up to half of the global population of free-ranging lions and is also the main location for lion trophy hunting in Africa. However, there are concerns that current hunting levels are unsustainable. The lion hunting industry in Tanzania is run by the private sector, although the government leases each hunting block to companies, enforces hunting regulation, and allocates them a species-specific annual quota per block. The length of these leases varies and theories surrounding property rights and tenure suggest hunting levels would be less sustainable in blocks experiencing a high turnover of short-term leases. We explored this issue using lion data collected from 1996 to 2008 in the Selous Game Reserve (SGR), the most important trophy hunting destination in Tanzania. We found that blocks in SGR with the highest lion hunting offtake were also those that experienced the steepest declines in trophy offtake. In addition, we found this high hunting offtake and the resultant offtake decline tended to be in blocks under short-term tenure. In contrast, lion hunting levels in blocks under long-term tenure matched more closely the recommended sustainable offtake of 0.92 lions per 1000 km2. However, annual financial returns were higher from blocks under short-term tenure, providing $133 per km2 of government revenue as compared to $62 per km2 from long-term tenure blocks. Our results provide evidence for the importance of property rights in conservation, and support calls for an overhaul of the system in Tanzania by developing competitive market-based approaches for block allocation based on long-term tenure of ten years.

  5. Computationally efficient algorithm for high sampling-frequency operation of active noise control

    NASA Astrophysics Data System (ADS)

    Rout, Nirmal Kumar; Das, Debi Prasad; Panda, Ganapati

    2015-05-01

    In high sampling-frequency operation of active noise control (ANC) system the length of the secondary path estimate and the ANC filter are very long. This increases the computational complexity of the conventional filtered-x least mean square (FXLMS) algorithm. To reduce the computational complexity of long order ANC system using FXLMS algorithm, frequency domain block ANC algorithms have been proposed in past. These full block frequency domain ANC algorithms are associated with some disadvantages such as large block delay, quantization error due to computation of large size transforms and implementation difficulties in existing low-end DSP hardware. To overcome these shortcomings, the partitioned block ANC algorithm is newly proposed where the long length filters in ANC are divided into a number of equal partitions and suitably assembled to perform the FXLMS algorithm in the frequency domain. The complexity of this proposed frequency domain partitioned block FXLMS (FPBFXLMS) algorithm is quite reduced compared to the conventional FXLMS algorithm. It is further reduced by merging one fast Fourier transform (FFT)-inverse fast Fourier transform (IFFT) combination to derive the reduced structure FPBFXLMS (RFPBFXLMS) algorithm. Computational complexity analysis for different orders of filter and partition size are presented. Systematic computer simulations are carried out for both the proposed partitioned block ANC algorithms to show its accuracy compared to the time domain FXLMS algorithm.

  6. Extinction hazards in experimental Daphnia magna populations: effects of genotype diversity and environmental variation

    PubMed Central

    Robinson, John D; Wares, John P; Drake, John M

    2013-01-01

    Extinction is ubiquitous in natural systems and the ultimate fate of all biological populations. However, the factors that contribute to population extinction are still poorly understood, particularly genetic diversity and composition. A laboratory experiment was conducted to examine the influences of environmental variation and genotype diversity on persistence in experimental Daphnia magna populations. Populations were initiated in two blocks with one, two, three, or six randomly selected and equally represented genotypes, fed and checked for extinction daily, and censused twice weekly over a period of 170 days. Our results show no evidence for an effect of the number of genotypes in a population on extinction hazard. Environmental variation had a strong effect on hazards in both experimental blocks, but the direction of the effect differed between blocks. In the first block, variable environments hastened extinction, while in the second block, hazards were reduced under variable food input. This occurred despite greater fluctuations in population size in variable environments in the second block of our experiment. Our results conflict with previous studies, where environmental variation consistently increased extinction risk. They are also at odds with previous studies in other systems that documented significant effects of genetic diversity on population persistence. We speculate that the lack of sexual reproduction, or the phenotypic similarity among our experimental lines, might underlie the lack of a significant effect of genotype diversity in our study. PMID:23467276

  7. Effect of poly(ethylene oxide) homopolymer and two different poly(ethylene oxide-b-poly(propylene oxide)-b-poly(ethylene oxide) triblock copolymers on morphological, optical, and mechanical properties of nanostructured unsaturated polyester.

    PubMed

    Builes, Daniel H; Hernández-Ortiz, Juan P; Corcuera, Ma Angeles; Mondragon, Iñaki; Tercjak, Agnieszka

    2014-01-22

    Novel nanostructured unsaturated polyester resin-based thermosets, modified with poly(ethylene oxide) (PEO), poly(propylene oxide) (PPO), and two poly(ethylene oxide-b-propylene oxide-b-ethylene oxide) block copolymers (BCP), were developed and analyzed. The effects of molecular weights, blocks ratio, and curing temperatures on the final morphological, optical, and mechanical properties were reported. The block influence on the BCP miscibility was studied through uncured and cured mixtures of unsaturated polyester (UP) resins with PEO and PPO homopolymers having molecular weights similar to molecular weights of the blocks of BCP. The final morphology of the nanostructured thermosetting systems, containing BCP or homopolymers, was investigated, and multiple mechanisms of nanostructuration were listed and explained. By considering the miscibility of each block before and after curing, it was determined that the formation of the nanostructured matrices followed a self-assembly mechanism or a polymerization-induced phase separation mechanism. The miscibility between PEO or PPO blocks with one of two phases of UP matrix was highlighted due to its importance in the final thermoset properties. Relationships between the final morphology and thermoset optical and mechanical properties were examined. The mechanisms and physics behind the morphologies lead toward the design of highly transparent, nanostructured, and toughened thermosetting UP systems.

  8. Molecular origin of photovoltaic performance in donor- block-acceptor all-conjugated block copolymers

    DOE PAGES

    Smith, Kendall A.; Lin, Yen -Hao; Mok, Jorge W.; ...

    2015-11-03

    All-conjugated block copolymers may be an effective route to self-assembled photovoltaic devices, but we lack basic information on the relationship between molecular characteristics and photovoltaic performance. Here, we synthesize a library of poly(3-hexylthiophene) (P3HT) block poly((9,9-dialkylfluorene)-2,7-diyl-alt-[4,7-bis(alkylthiophen-5-yl)-2,1,3-benzothiadiazole]-2',2''-diyl) (PFTBT) donor- block-acceptor all-conjugated block copolymers and carry out a comprehensive study of processing conditions, crystallinity, domain sizes, and side-chain structure on photovoltaic device performance. We find that all block copolymers studied exhibit an out-of-plane crystal orientation after deposition, and on thermal annealing at high temperatures the crystal orientation flips to an in-plane orientation. By varying processing conditions on polymer photovoltaic devices, we showmore » that the crystal orientation has only a modest effect (15-20%) on photovoltaic performance. The addition of side-chains to the PFTBT block is found to decrease photovoltaic power conversion efficiencies by at least an order of magnitude. Through grazing-incidence X-ray measurements we find that the addition of side-chains to the PFTBT acceptor block results in weak segregation and small (< 10 nm) block copolymer self-assembled donor and acceptor domains. This work is the most comprehensive to date on all-conjugated block copolymer systems and suggests that photovoltaic performance of block copolymers depends strongly on the miscibility of donor and acceptor blocks, which impacts donor and acceptor domain sizes and purity. Lastly, strategies for improving the device performance of block copolymer photovoltaics should seek to increase segregation between donor and acceptor polymer domains.« less

  9. Molecular origin of photovoltaic performance in donor- block-acceptor all-conjugated block copolymers

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

    Smith, Kendall A.; Lin, Yen -Hao; Mok, Jorge W.

    All-conjugated block copolymers may be an effective route to self-assembled photovoltaic devices, but we lack basic information on the relationship between molecular characteristics and photovoltaic performance. Here, we synthesize a library of poly(3-hexylthiophene) (P3HT) block poly((9,9-dialkylfluorene)-2,7-diyl-alt-[4,7-bis(alkylthiophen-5-yl)-2,1,3-benzothiadiazole]-2',2''-diyl) (PFTBT) donor- block-acceptor all-conjugated block copolymers and carry out a comprehensive study of processing conditions, crystallinity, domain sizes, and side-chain structure on photovoltaic device performance. We find that all block copolymers studied exhibit an out-of-plane crystal orientation after deposition, and on thermal annealing at high temperatures the crystal orientation flips to an in-plane orientation. By varying processing conditions on polymer photovoltaic devices, we showmore » that the crystal orientation has only a modest effect (15-20%) on photovoltaic performance. The addition of side-chains to the PFTBT block is found to decrease photovoltaic power conversion efficiencies by at least an order of magnitude. Through grazing-incidence X-ray measurements we find that the addition of side-chains to the PFTBT acceptor block results in weak segregation and small (< 10 nm) block copolymer self-assembled donor and acceptor domains. This work is the most comprehensive to date on all-conjugated block copolymer systems and suggests that photovoltaic performance of block copolymers depends strongly on the miscibility of donor and acceptor blocks, which impacts donor and acceptor domain sizes and purity. Lastly, strategies for improving the device performance of block copolymer photovoltaics should seek to increase segregation between donor and acceptor polymer domains.« less

  10. Phase Calibration for the Block 1 VLBI System

    NASA Technical Reports Server (NTRS)

    Roth, M. G.; Runge, T. F.

    1983-01-01

    Very Long Baseline Interferometry (VLBI) in the DSN provides support for spacecraft navigation, Earth orientation measurements, and synchronization of network time and frequency standards. An improved method for calibrating instrumental phase shifts has recently been implemented as a computer program in the Block 1 system. The new calibration program, called PRECAL, performs calibrations over intervals as small as 0.4 seconds and greatly reduces the amount of computer processing required to perform phase calibration.

  11. Managing Security in FPGA-Based Embedded Systems

    DTIC Science & Technology

    2008-01-01

    Trans. De- sign Automation of Electronic Systems (TODAES), vol. 13, no. 3, July 2008, article 44. c©2008 ACM with permission.5) of the function would need...in the finished design. In addition, the life cycle can be subverted when engineers inject unintended functionality, some of which might be malicious...cores and a moat size of two. There are several different drawbridge configurations between the cores. (IOB: I/O block; CLB: configuration logic block

  12. Analgesic efficacy of transversus abdominis plane block in neonates and early infants for colostomy and reversal of colostomy.

    PubMed

    Chen, Chee Kean; Teo, Shu Ching; Phui, Vui Eng; Saman, Mat Ariffin

    2015-01-01

    The application of ultrasound-guided transversus abdominis plane (TAP) block in paediatric population is gaining popularity among anaesthetists. We present a case series of ultrasound-guided TAP block in ten neonate and infants undergoing colostomy and reversal of stoma. Classical TAP as described by Hebbard was carried out and a maximum dosage of 1ml/kg of 0.25% levobupivacaine was injected. Pain score was assessed using Neonatal Infant Pain Scale for 24 hours. In all patients, the block was successful with minimal hemodynamic changes intraoperatively and no additional systemic analgesia was needed intraoperative and immediate postoperatively. Ultrasound-guided TAP block has an important role in providing safe and effective analgesia for colostomy creation and reversal of stoma surgeries in paediatric population.

  13. Chain end distribution of block copolymer in two-dimensional microphase-separated structure studied by scanning near-field optical microscopy.

    PubMed

    Sekine, Ryojun; Aoki, Hiroyuki; Ito, Shinzaburo

    2009-10-01

    The chain end distribution of a block copolymer in a two-dimensional microphase-separated structure was studied by scanning near-field optical microscopy (SNOM). In the monolayer of poly(octadecyl methacrylate)-block-poly(isobutyl methacrylate) (PODMA-b-PiBMA), the free end of the PiBMA subchain was directly observed by SNOM, and the spatial distributions of the whole block and the chain end are examined and compared with the convolution of the point spread function of the microscope and distribution function of the model structures. It was found that the chain end distribution of the block copolymer confined in two dimensions has a peak near the domain center, being concentrated in the narrower region, as compared with three-dimensional systems.

  14. Reading handprinted addresses on IRS tax forms

    NASA Astrophysics Data System (ADS)

    Ramanaprasad, Vemulapati; Shin, Yong-Chul; Srihari, Sargur N.

    1996-03-01

    The hand-printed address recognition system described in this paper is a part of the Name and Address Block Reader (NABR) system developed by the Center of Excellence for Document Analysis and Recognition (CEDAR). NABR is currently being used by the IRS to read address blocks (hand-print as well as machine-print) on fifteen different tax forms. Although machine- print address reading was relatively straightforward, hand-print address recognition has posed some special challenges due to demands on processing speed (with an expected throughput of 8450 forms/hour) and recognition accuracy. We discuss various subsystems involved in hand- printed address recognition, including word segmentation, word recognition, digit segmentation, and digit recognition. We also describe control strategies used to make effective use of these subsystems to maximize recognition accuracy. We present system performance on 931 address blocks in recognizing various fields, such as city, state, ZIP Code, street number and name, and personal names.

  15. Versatile plasmid-based expression systems for Gram-negative bacteria--General essentials exemplified with the bacterium Ralstonia eutropha H16.

    PubMed

    Gruber, Steffen; Schwab, Helmut; Koefinger, Petra

    2015-12-25

    The Gram-negative bacterium Escherichia coli is currently the most efficient and widely used prokaryotic host for recombinant protein and metabolite production. However, due to some limitations and to various interesting features of other Gram-negative bacteria efficient vector systems applicable to a broad range are desired. Basic building blocks for plasmid-based vectors include besides the need for a suitable selection marker in the first line a proper replication and maintenance system. In addition to these basic requirements, further elements are needed for Gram-negative bacteria beyond E. coli, such as Pseudomonas pudita, Ralstonia eutropha, Burkholderia glumae or Acinetobacter sp.. Established building blocks have to be adapted and new building blocks providing the desired functions need to be identified and exploited. This minireview addresses so far described and used genetic elements for broad host range replication, efficient plasmid maintenance, and conjugative plasmid transfer as well as expression elements and protein secretion signals. The industrially important bacterium R. eutropha H16 was chosen as a model organism to provide specific data on the effectivity and utility of building blocks based on such genetic elements. Copyright © 2015 Elsevier B.V. All rights reserved.

  16. Joint Polar Satellite System (JPSS) Common Ground System (CGS) Technical Performance Measures of the Block 2 Architecture

    NASA Astrophysics Data System (ADS)

    Grant, K. D.; Panas, M.

    2016-12-01

    NOAA and NASA are jointly acquiring the next-generation civilian weather satellite system: the Joint Polar Satellite System (JPSS). JPSS replaced the afternoon orbit component and ground processing of NOAA's old POES system. JPSS satellites carry sensors that collect meteorological, oceanographic, climatological, and solar-geophysical observations of the earth, atmosphere, and space. The ground processing system for JPSS is known as the JPSS Common Ground System (JPSS CGS). Developed and maintained by Raytheon Intelligence, Information and Services (IIS), the CGS is a globally distributed, multi-mission system serving NOAA, NASA and their national and international partners. The CGS has demonstrated its scalability and flexibility to incorporate multiple missions efficiently and with minimal cost, schedule and risk, while strengthening global partnerships in weather and environmental monitoring. The CGS architecture has been upgraded to Block 2.0 to satisfy several key objectives, including: "operationalizing" the first satellite, Suomi NPP, which originally was a risk reduction mission; leveraging lessons learned in multi-mission support, taking advantage of newer, more reliable and efficient technologies and satisfying constraints due of the continually evolving budgetary environment. To ensure the CGS meets these needs, we have developed 48 Technical Performance Measures (TPMs) across 9 categories: Data Availability, Data Latency, Operational Availability, Margin, Scalability, Situational Awareness, Transition (between environments and sites), WAN Efficiency, and Data Recovery Processing. This paper will provide an overview of the CGS Block 2.0 architecture, with particular focus on the 9 TPM categories listed above. We will describe how we ensure the deployed architecture meets these TPMs to satisfy our multi-mission objectives with the deployment of Block 2.0.

  17. A joint encryption/watermarking system for verifying the reliability of medical images.

    PubMed

    Bouslimi, Dalel; Coatrieux, Gouenou; Cozic, Michel; Roux, Christian

    2012-09-01

    In this paper, we propose a joint encryption/water-marking system for the purpose of protecting medical images. This system is based on an approach which combines a substitutive watermarking algorithm, the quantization index modulation, with an encryption algorithm: a stream cipher algorithm (e.g., the RC4) or a block cipher algorithm (e.g., the AES in cipher block chaining (CBC) mode of operation). Our objective is to give access to the outcomes of the image integrity and of its origin even though the image is stored encrypted. If watermarking and encryption are conducted jointly at the protection stage, watermark extraction and decryption can be applied independently. The security analysis of our scheme and experimental results achieved on 8-bit depth ultrasound images as well as on 16-bit encoded positron emission tomography images demonstrate the capability of our system to securely make available security attributes in both spatial and encrypted domains while minimizing image distortion. Furthermore, by making use of the AES block cipher in CBC mode, the proposed system is compliant with or transparent to the DICOM standard.

  18. Multiple-block grid adaption for an airplane geometry

    NASA Technical Reports Server (NTRS)

    Abolhassani, Jamshid Samareh; Smith, Robert E.

    1988-01-01

    Grid-adaption methods are developed with the capability of moving grid points in accordance with several variables for a three-dimensional multiple-block grid system. These methods are algebraic, and they are implemented for the computation of high-speed flow over an airplane configuration.

  19. A Study on Markerless AR-Based Infant Education System Using CBIR

    NASA Astrophysics Data System (ADS)

    Lim, Ji-Hoon; Kim, Seoksoo

    Block play is widely known to be effective to help a child develop emotionally and physically based on learning by a sense of sight and touch. But block play can not expect to have learning effects through a sense of hearing. Therefore, in this study, such limitations are overcome by a method that recognizes an object made up of blocks, not a marker-based method generally used for an AR environment, a matching technology enabling an object to be perceived in every direction, and a technology combining images of the real world with 2D/3D images/pictures/sounds of a similar object. Also, an education system for children aged 3~5 is designed to implement markerless AR with the CBIR method.

  20. Transportable Payload Operations Control Center reusable software: Building blocks for quality ground data systems

    NASA Technical Reports Server (NTRS)

    Mahmot, Ron; Koslosky, John T.; Beach, Edward; Schwarz, Barbara

    1994-01-01

    The Mission Operations Division (MOD) at Goddard Space Flight Center builds Mission Operations Centers which are used by Flight Operations Teams to monitor and control satellites. Reducing system life cycle costs through software reuse has always been a priority of the MOD. The MOD's Transportable Payload Operations Control Center development team established an extensive library of 14 subsystems with over 100,000 delivered source instructions of reusable, generic software components. Nine TPOCC-based control centers to date support 11 satellites and achieved an average software reuse level of more than 75 percent. This paper shares experiences of how the TPOCC building blocks were developed and how building block developer's, mission development teams, and users are all part of the process.

  1. Multi-purpose wind tunnel reaction control model block

    NASA Technical Reports Server (NTRS)

    Dresser, H. S.; Daileda, J. J. (Inventor)

    1978-01-01

    A reaction control system nozzle block is provided for testing the response characteristics of space vehicles to a variety of reaction control thruster configurations. A pressurized air system is connected with the supply lines which lead to the individual jet nozzles. Each supply line terminates in a compact cylindrical plenum volume, axially perpendicular and adjacent to the throat of the jet nozzle. The volume of the cylindrical plenum is sized to provide uniform thrust characteristics from each jet nozzle irrespective of the angle of approach of the supply line to the plenum. Each supply line may be plugged or capped to stop the air supply to selected jet nozzles, thereby enabling a variety of nozzle configurations to be obtained from a single model nozzle block.

  2. Refining the GPS Space Service Volume (SSV) and Building a Multi-GNSS SSV

    NASA Technical Reports Server (NTRS)

    Parker, Joel J. K.

    2017-01-01

    The GPS (Global Positioning System) Space Service Volume (SSV) was first defined to protect the GPS main lobe signals from changes from block to block. First developed as a concept by NASA in 2000, it has been adopted for the GPS III block of satellites, and is being used well beyond the current specification to enable increased navigation performance for key missions like GOES-R. NASA has engaged the US IFOR (Interagency Forum Operational Requirements) process to adopt a revised requirement to protect this increased and emerging use. Also, NASA is working through the UN International Committee on GNSS (Global Navigation Satellite System) to develop an interoperable multi-GNSS SSV in partnership with all of the foreign GNSS providers.

  3. Processing of IN-718 Lattice Block Castings

    NASA Technical Reports Server (NTRS)

    Hebsur, Mohan G.

    2002-01-01

    Recently a low cost casting method known as lattice block casting has been developed by JAM Corporation, Wilmington, Massachusetts for engineering materials such as aluminum and stainless steels that has shown to provide very high stiffness and strength with only a fraction of density of the alloy. NASA Glenn Research Center has initiated research to investigate lattice block castings of high temperature Ni-base superalloys such as the model system Inconel-718 (IN-718) for lightweight nozzle applications. Although difficulties were encountered throughout the manufacturing process , a successful investment casting procedure was eventually developed. Wax formulation and pattern assembly, shell mold processing, and counter gravity casting techniques were developed. Ten IN-718 lattice block castings (each measuring 15-cm wide by 30-cm long by 1.2-cm thick) have been successfully produced by Hitchiner Gas Turbine Division, Milford, New Hampshire, using their patented counter gravity casting techniques. Details of the processing and resulting microstructures are discussed in this paper. Post casting processing and evaluation of system specific mechanical properties of these specimens are in progress.

  4. Reducing Backups by Utilizing DMF

    NASA Technical Reports Server (NTRS)

    Cardo, Nicholas P.; Woodrow, Thomas (Technical Monitor)

    1994-01-01

    Although a filesystem may be migratable, for a period of time the data blocks are on disk only. When performing system dumps, these data blocks are backed up to tape. If the data blocks are offline or dual resident, then only the inode is backed up. If all online files are made dual resident prior to performing system dumps, the dump time and the amount of resources required can be significantly reduced. The High Speed Processors group at the Numerical Aerodynamics Simulation (NAS) Facility at NASA Ames Research Center developed a tool to make all online files dual resident. The result is that a file whose data blocks are on DMF tape and still assigned to the original inode. Our 150GB filesystem used to take 8 to 12 hours to backup and used 50 to 60 tapes. Now the backup is typically under 10 tapes and completes in under 2 hours. This paper discusses this new tool and advantages gained by using it.

  5. Wavelength assignment algorithm considering the state of neighborhood links for OBS networks

    NASA Astrophysics Data System (ADS)

    Tanaka, Yu; Hirota, Yusuke; Tode, Hideki; Murakami, Koso

    2005-10-01

    Recently, Optical WDM technology is introduced into backbone networks. On the other hand, as the future optical switching scheme, Optical Burst Switching (OBS) systems become a realistic solution. OBS systems do not consider buffering in intermediate nodes. Thus, it is an important issue to avoid overlapping wavelength reservation between partially interfered paths. To solve this problem, so far, the wavelength assignment scheme which has priority management tables has been proposed. This method achieves the reduction of burst blocking probability. However, this priority management table requires huge memory space. In this paper, we propose a wavelength assignment algorithm that reduces both the number of priority management tables and burst blocking probability. To reduce priority management tables, we allocate and manage them for each link. To reduce burst blocking probability, our method announces information about the change of their priorities to intermediate nodes. We evaluate its performance in terms of the burst blocking probability and the reduction rate of priority management tables.

  6. An unrecognized major collision of the Okhotomorsk Block with East Asia during the Late Cretaceous, constraints on the plate reorganization of the Northwest Pacific

    NASA Astrophysics Data System (ADS)

    Yang, Yong-Tai

    2013-11-01

    Interactions at plate boundaries induce stresses that constitute critical controls on the structural evolution of intraplate regions. However, the traditional tectonic model for the East Asian margin during the Mesozoic, invoking successive episodes of paleo-Pacific oceanic subduction, does not provide an adequate context for important Late Cretaceous dynamics across East Asia, including: continental-scale orogenic processes, significant sinistral strike-slip faulting, and several others. The integration of numerous documented field relations requires a new tectonic model, as proposed here. The Okhotomorsk continental block, currently residing below the Okhotsk Sea in Northeast Asia, was located in the interior of the Izanagi Plate before the Late Cretaceous. It moved northwestward with the Izanagi Plate and collided with the South China Block at about 100 Ma. The indentation of the Okhotomorsk Block within East Asia resulted in the formation of a sinistral strike-slip fault system in South China, formation of a dextral strike-slip fault system in North China, and regional northwest-southeast shortening and orogenic uplift in East Asia. Northeast-striking mountain belts over 500 km wide extended from Southeast China to Southwest Japan and South Korea. The peak metamorphism at about 89 Ma of the Sanbagawa high-pressure metamorphic belt in Southwest Japan was probably related to the continental subduction of the Okhotomorsk Block beneath the East Asian margin. Subsequently, the north-northwestward change of motion direction of the Izanagi Plate led to the northward movement of the Okhotomorsk Block along the East Asian margin, forming a significant sinistral continental transform boundary similar to the San Andreas fault system in California. Sanbagawa metamorphic rocks in Southwest Japan were rapidly exhumed through the several-kilometer wide ductile shear zone at the lower crust and upper mantle level. Accretionary complexes successively accumulated along the East Asian margin during the Jurassic-Early Cretaceous were subdivided into narrow and subparallel belts by the upper crustal strike-slip fault system. The departure of the Okhotomorsk Block from the northeast-striking Asian margin resulted in the occurrence of an extensional setting and formation of a wide magmatic belt to the west of the margin. In the Campanian, the block collided with the Siberian margin, in Northeast Asia. At about 77 Ma, a new oceanic subduction occurred to the south of the Okhotomorsk Block, ending its long-distance northward motion. Based on the new tectonic model, the abundant Late Archean to Early Proterozoic detrital zircons in the Cretaceous sandstones in Kamchatka, Southwest Japan, and Taiwan are interpreted to have been sourced from the Okhotomorsk Block basement which possibly formed during the Late Archean and Early Proterozoic. The new model suggests a rapidly northward-moving Okhotomorsk Block at an average speed of 22.5 cm/yr during 89-77 Ma. It is hypothesized that the Okhotomorsk-East Asia collision during 100-89 Ma slowed down the northwestward motion of the Izanagi Plate, while slab pull forces produced from the subducting Izanagi Plate beneath the Siberian margin redirected the plate from northwestward to north-northwestward motion at about 90-89 Ma.

  7. [Case of Leriche's syndrome treated with safe and effective analgesia after laparotomy by transversus abdominis plane block, rectus sheath block, and continuous wound infusion with ropivacaine].

    PubMed

    Hotta, Arisa; Yagi, Yuuki; Hakata, Saaya; Tsumura, Yae; Shimizu, Motoko; Kukida, Ayako; Nakamoto, Ai; Yoshikawa, Noriko; Oohira, Naoko; Tatekawa, Shigeki

    2013-12-01

    Ultrasound-guided peripheral nerve blocks in the abdominal wall, such as transversus abdominis plane block (TAP block) and rectus sheath block, are now widely used. We report a case of Leriche's syndrome treated with safe and effective analgesia after laparotomy by abdominal wall block and continuous infusion. A 61-year-old man diagnosed with Leriche's syndrome underwent Y-graft replacement for an abdominal aortic aneurysm. Preoperative enhanced and 3-dimensional CTs showed many collateral arterial systems, especially in the right abdominal wall. It was suggested that the right internal iliac artery had been completely occluded, and the left one showed severe stenosis. After the induction of general anesthesia, we recognized collateral arteries through an ultrasound view as on preoperative CTs. We lowered the pulse repetition frequency more than usual in order not to injure them. We injected 0.1875% ropivacaine 60 ml as TAP block, and 20 ml as rectus sheath block. When the wound was closed, a catheter was passed through an 18-gauge Tuohy needle placed above the fascia along the supraumbilical site. After the operation, 0.2% ropivacaine was continuously delivered at a rate of 6 ml hr-1 through the catheter. We could provide the patient with effective analgesia after surgery.

  8. New self-assembly strategies for next generation lithography

    NASA Astrophysics Data System (ADS)

    Schwartz, Evan L.; Bosworth, Joan K.; Paik, Marvin Y.; Ober, Christopher K.

    2010-04-01

    Future demands of the semiconductor industry call for robust patterning strategies for critical dimensions below twenty nanometers. The self assembly of block copolymers stands out as a promising, potentially lower cost alternative to other technologies such as e-beam or nanoimprint lithography. One approach is to use block copolymers that can be lithographically patterned by incorporating a negative-tone photoresist as the majority (matrix) phase of the block copolymer, paired with photoacid generator and a crosslinker moiety. In this system, poly(α-methylstyrene-block-hydroxystyrene)(PαMS-b-PHOST), the block copolymer is spin-coated as a thin film, processed to a desired microdomain orientation with long-range order, and then photopatterned. Therefore, selfassembly of the block copolymer only occurs in select areas due to the crosslinking of the matrix phase, and the minority phase polymer can be removed to produce a nanoporous template. Using bulk TEM analysis, we demonstrate how the critical dimension of this block copolymer is shown to scale with polymer molecular weight using a simple power law relation. Enthalpic interactions such as hydrogen bonding are used to blend inorganic additives in order to enhance the etch resistance of the PHOST block. We demonstrate how lithographically patternable block copolymers might fit in to future processing strategies to produce etch-resistant self-assembled features at length scales impossible with conventional lithography.

  9. Novel Self-Assembling Amino Acid-Derived Block Copolymer with Changeable Polymer Backbone Structure.

    PubMed

    Koga, Tomoyuki; Aso, Eri; Higashi, Nobuyuki

    2016-11-29

    Block copolymers have attracted much attention as potentially interesting building blocks for the development of novel nanostructured materials in recent years. Herein, we report a new type of self-assembling block copolymer with changeable polymer backbone structure, poly(Fmoc-Ser) ester -b-PSt, which was synthesized by combining the polycondensation of 9-fluorenylmethoxycarbonyl-serine (Fmoc-Ser) with the reversible addition-fragmentation chain transfer (RAFT) polymerization of styrene (St). This block copolymer showed the direct conversion of the backbone structure from polyester to polypeptide through a multi O,N-acyl migration triggered by base-induced deprotection of Fmoc groups in organic solvent. Such polymer-to-polymer conversion was found to occur quantitatively without decrease in degree of polymerization and to cause a drastic change in self-assembling property of the block copolymer. On the basis of several morphological analyses using FTIR spectroscopy, atomic force, and transmission and scanning electron microscopies, the resulting peptide block copolymer was found to self-assemble into a vesicle-like hollow nanosphere with relatively uniform diameter of ca. 300 nm in toluene. In this case, the peptide block generated from polyester formed β-sheet structure, indicating the self-assembly via peptide-guided route. We believe the findings presented in this study offer a new concept for the development of self-assembling block copolymer system.

  10. Microplate model for the present-day deformation of Tibet

    USGS Publications Warehouse

    Thatcher, W.

    2007-01-01

    Site velocities from 349 Global Positioning System (GPS) stations are used to construct an 11-element quasi-rigid block model of the Tibetan Plateau and its surroundings. Rigid rotations of five major blocks are well determined, and average translation velocities of six smaller blocks can be constrained. Where data are well distributed the velocity field can be explained well by rigid block motion and fault slip across block boundaries. Residual misfits average 1.6 mm/yr compared to typical one standard deviation velocity uncertainties of 1.3 mm/yr. Any residual internal straining of the blocks is small and heterogeneous. However, residual substructure might well represent currently unresolved motions of smaller blocks. Although any smaller blocks must move at nearly the same rate as the larger blocks within which they lie, undetected relative motions between them could be significant, particularly where there are gaps in GPS coverage. Predicted relative motions between major blocks agree with the observed sense of slip and along-strike partitioning of motion across major faults. However, predicted slip rates across Tibet's major strike-slip faults are low, only 5-12 mm/yr, a factor of 2-3 smaller than most rates estimated from fault offset features dated by radiometric methods as ???2000 to ???100,000 year old. Previous work has suggested that both GPS data and low fault slip rates are incompatible with rigid block motions of Tibet. The results reported here overcome these objections.

  11. Fluvial entrainment of low density peat blocks (block carbon)

    NASA Astrophysics Data System (ADS)

    Warburton, Jeff

    2014-05-01

    In many fluvial environments low density materials are transported in significant quantities and these form an important part of the stream load and /or have a distinct impact on sedimentation in these environments. However, there are significant gaps in understanding of how these materials are entrained and transported by streams and rivers. Eroding upland peatland environments in particular, frequently have fluvial systems in which large eroded peat blocks, often exceeding 1 m in length; form an important component of the stream material flux. Transport of this material is significant in determining rates of erosion but also has important impacts in terms of damage to infrastructure and carbon loss. This paper describes a field experiment designed to establish for the first time the conditions under which large peat blocks (c. > 0.1 m b axis) are initially entrained from a rough gravel bed. The field site is Trout Beck, in the North Pennines, Northern England which is an upland wandering river channel with occasional lateral and mid channel bars. Mean low flow stage is typically 0.2 m but during flood can rapidly rise, in one to two hours, to over 1.5 m. To study peat block entrainment a bespoke data acquisition system consisting of two pressure transducers, four release triggers and time lapse camera was set up. The pressure transducers provided a record of local depth and the release triggers were embedded in peat blocks to record initial motion and arranged on the rough stream bed. The time lapse camera provided verification of timing of block entrainment (during daylight hours) and also provided information on the mechanism of initial movement. Peat blocks were cut from a local source and were equidimensional, ranging in size from 0.1 to 0.7 m. The derived entrainment function is related to a critical depth of entrainment. Results demonstrate that peat blocks are entrained when the local depth approximates the height of the peat block. Blocks frequently shift position prior to entrainment but once entrained are rapidly transported downstream. Because of the rough stream bed local depth, measured on the four sides of the block varies markedly and needs to be considered in developing an appropriate entrainment function and; is useful in explaining initial movement prior to entrainment. In some experiments a small accelerometer (HOBO Pendant G data logger) was used to investigate transport dynamics following entrainment. Further work will seek to improve the entrainment function by extending the size range of tests, developing a shear stress related function and investigating the importance of block shape (rounding) on entrainment.

  12. Quantum Correlation Properties in Composite Parity-Conserved Matrix Product States

    NASA Astrophysics Data System (ADS)

    Zhu, Jing-Min

    2016-09-01

    We give a new thought for constructing long-range quantum correlation in quantum many-body systems. Our proposed composite parity-conserved matrix product state has long-range quantum correlation only for two spin blocks where their spin-block length larger than 1 compared to any subsystem only having short-range quantum correlation, and we investigate quantum correlation properties of two spin blocks varying with environment parameter and spacing spin number. We also find that the geometry quantum discords of two nearest-neighbor spin blocks and two next-nearest-neighbor spin blocks become smaller and for other conditions the geometry quantum discord becomes larger than that in any subcomponent, i.e., the increase or the production of the long-range quantum correlation is at the cost of reducing the short-range quantum correlation compared to the corresponding classical correlation and total correlation having no any characteristic of regulation. For nearest-neighbor and next-nearest-neighbor all the correlations take their maximal values at the same points, while for other conditions no whether for spacing same spin number or for different spacing spin numbers all the correlations taking their maximal values are respectively at different points which are very close. We believe that our work is helpful to comprehensively and deeply understand the organization and structure of quantum correlation especially for long-range quantum correlation of quantum many-body systems; and further helpful for the classification, the depiction and the measure of quantum correlation of quantum many-body systems.

  13. Response prediction techniques and case studies of a path blocking system based on Global Transmissibility Direct Transmissibility method

    NASA Astrophysics Data System (ADS)

    Wang, Zengwei; Zhu, Ping; Zhao, Jianxuan

    2017-02-01

    In this paper, the prediction capabilities of the Global Transmissibility Direct Transmissibility (GTDT) method are further developed. Two path blocking techniques solely using the easily measured variables of the original system to predict the response of a path blocking system are generalized to finite element models of continuous systems. The proposed techniques are derived theoretically in a general form for the scenarios of setting the response of a subsystem to zero and of removing the link between two directly connected subsystems. The objective of this paper is to verify the reliability of the proposed techniques by finite element simulations. Two typical cases, the structural vibration transmission case and the structure-borne sound case, in two different configurations are employed to illustrate the validity of proposed techniques. The points of attention for each case have been discussed, and conclusions are given. It is shown that for the two cases of blocking a subsystem the proposed techniques are able to predict the new response using measured variables of the original system, even though operational forces are unknown. For the structural vibration transmission case of removing a connector between two components, the proposed techniques are available only when the rotational component responses of the connector are very small. The proposed techniques offer relative path measures and provide an alternative way to deal with NVH problems. The work in this paper provides guidance and reference for the engineering application of the GTDT prediction techniques.

  14. Global health initiative investments and health systems strengthening: a content analysis of global fund investments

    PubMed Central

    2013-01-01

    Background Millions of dollars are invested annually under the umbrella of national health systems strengthening. Global health initiatives provide funding for low- and middle-income countries through disease-oriented programmes while maintaining that the interventions simultaneously strengthen systems. However, it is as yet unclear which, and to what extent, system-level interventions are being funded by these initiatives, nor is it clear how much funding they allocate to disease-specific activities – through conventional ‘vertical-programming’ approach. Such funding can be channelled to one or more of the health system building blocks while targeting disease(s) or explicitly to system-wide activities. Methods We operationalized the World Health Organization health system framework of the six building blocks to conduct a detailed assessment of Global Fund health system investments. Our application of this framework framework provides a comprehensive quantification of system-level interventions. We applied this systematically to a random subset of 52 of the 139 grants funded in Round 8 of the Global Fund to Fight AIDS, Tuberculosis and Malaria (totalling approximately US$1 billion). Results According to the analysis, 37% (US$ 362 million) of the Global Fund Round 8 funding was allocated to health systems strengthening. Of that, 38% (US$ 139 million) was for generic system-level interventions, rather than disease-specific system support. Around 82% of health systems strengthening funding (US$ 296 million) was allocated to service delivery, human resources, and medicines & technology, and within each of these to two to three interventions. Governance, financing, and information building blocks received relatively low funding. Conclusions This study shows that a substantial portion of Global Fund’s Round 8 funds was devoted to health systems strengthening. Dramatic skewing among the health system building blocks suggests opportunities for more balanced investments with regard to governance, financing, and information system related interventions. There is also a need for agreement, by researchers, recipients, and donors, on keystone interventions that have the greatest system-level impacts for the cost-effective use of funds. Effective health system strengthening depends on inter-agency collaboration and country commitment along with concerted partnership among all the stakeholders working in the health system. PMID:23889824

  15. Global health initiative investments and health systems strengthening: a content analysis of global fund investments.

    PubMed

    Warren, Ashley E; Wyss, Kaspar; Shakarishvili, George; Atun, Rifat; de Savigny, Don

    2013-07-26

    Millions of dollars are invested annually under the umbrella of national health systems strengthening. Global health initiatives provide funding for low- and middle-income countries through disease-oriented programmes while maintaining that the interventions simultaneously strengthen systems. However, it is as yet unclear which, and to what extent, system-level interventions are being funded by these initiatives, nor is it clear how much funding they allocate to disease-specific activities - through conventional 'vertical-programming' approach. Such funding can be channelled to one or more of the health system building blocks while targeting disease(s) or explicitly to system-wide activities. We operationalized the World Health Organization health system framework of the six building blocks to conduct a detailed assessment of Global Fund health system investments. Our application of this framework framework provides a comprehensive quantification of system-level interventions. We applied this systematically to a random subset of 52 of the 139 grants funded in Round 8 of the Global Fund to Fight AIDS, Tuberculosis and Malaria (totalling approximately US$1 billion). According to the analysis, 37% (US$ 362 million) of the Global Fund Round 8 funding was allocated to health systems strengthening. Of that, 38% (US$ 139 million) was for generic system-level interventions, rather than disease-specific system support. Around 82% of health systems strengthening funding (US$ 296 million) was allocated to service delivery, human resources, and medicines & technology, and within each of these to two to three interventions. Governance, financing, and information building blocks received relatively low funding. This study shows that a substantial portion of Global Fund's Round 8 funds was devoted to health systems strengthening. Dramatic skewing among the health system building blocks suggests opportunities for more balanced investments with regard to governance, financing, and information system related interventions. There is also a need for agreement, by researchers, recipients, and donors, on keystone interventions that have the greatest system-level impacts for the cost-effective use of funds. Effective health system strengthening depends on inter-agency collaboration and country commitment along with concerted partnership among all the stakeholders working in the health system.

  16. Method and apparatus for removing unwanted reflections from an interferometer

    NASA Technical Reports Server (NTRS)

    Steimle, Lawrence J. (Inventor); Thiessen, David L. (Inventor)

    1994-01-01

    A device for eliminating unwanted reflections from refractive optical elements in an optical system is provided. The device operates to prevent desired multiple fringe patterns from being obscured by reflections from refractive elements positioned in proximity to a focal plane of the system. The problem occurs when an optical beam is projected into, and reflected back out of, the optical system. Surfaces of the refractive elements reflect portions of the beam which interfere with portions of the beam which are transmitted through the refractive elements. Interference between the reflected and transmitted portions of the beam produce multiple fringe sets which tend to obscure desired interference fringes. With the refractive optical element in close proximity to the focal plane of the system, the undesired reflected light reflects at an angle 180 degrees opposite from the desired transmitted beam. The device exploits the 180-degree offset, or rotational shear, of the undesired reflected light by providing an optical stop for blocking one-half of the cross-section of the test beam. By blocking one-half of the test beam, the undesired offset beam is blocked, while the returning transmitted beam passes into the optical system unaffected. An image is thereby produced from only the desired transmitted beam. In one configuration, the blocking device includes a semicircular aperture which is caused to rotate about the axis of the test beam. By rotating, all portions of the test beam are cyclically projected into the optical system to thereby produce a complete test image. The rotating optical stop is preferably caused to rotate rapidly to eliminate flicker in the resulting image.

  17. Systemic morphine blocks the seizures induced by intracerebroventricular (i.c.v.) injections of opiates and opioid peptides.

    PubMed

    Urca, G; Frenk, H

    1982-08-19

    Intracerebroventricular (i.c.v.) injections of the endorphins and of morphine in rats produce highly characteristic, naloxone sensitive, electrographic seizures. In contrast, systemic injections of morphine have been shown to exert a marked anticonvulsant effect. The present study demonstrates that systemic morphine pretreatment can prevent the occurrence of electrographic seizures injected by i.c.v. morphine, Leu-enkephalin and beta-endorphin and that the anti-epileptic effect of morphine can be reversed by naloxone. Male albino rats, previously prepared for chronic i.c.v. injections and EEG recordings, were pretreated with 0--100 mg/kg of intraperitoneal (i.p.) morphine. Thirty five minutes later morphine (520 nmol), Leu-enkephalin (80 nmol) or beta-endorphin (5 nmol) were injected i.c.v. Pretreatment with i.p. morphine blocked the occurrence of seizures induced by morphine and both endogenous opioids. Lower doses of systemic morphine (50 mg/kg) were necessary to block i.c.v. morphine seizures than the dose (100 mg/kg) necessary to block seizures induced by i.c.v. Leu-enkephalin and beta-endorphin. Naloxone (1 mg/kg) administered 25 min following 50 mg/kg of i.p. morphine and preceding the injections of i.c.v. morphine reversed the antiepileptic effect of systemic morphine. These results demonstrate the possible existence of two opiate sensitive systems, one with excitatory-epileptogenic effects and the other possessing inhibitory-antiepileptic properties. The possible relationship between these findings and the known heterogeneity of opiate receptors and opiate actions is discussed.

  18. Energetics and crystal chemistry of Ruddlesden-Popper type structures in high T(sub c) ceramic superconductors

    NASA Technical Reports Server (NTRS)

    Dwivedi, Anurag; Cormack, A. N.

    1990-01-01

    The formation of Ruddlesden-Popper type layers (alternating slabs of rocksalt and perovskite structures) is seen in these oxides which is similar in many respects to what is seen in the system Sr-Ti-O. However, it was observed that there are some significant differences, for example the rocksalt and perovskite blocks in new superconducting compounds are not necessarily electrically, unlike in Sr-Ti-O systems. This will certainly render an additional coulombic bonding energy between two different types of blocks and may well lead to significant differences in their structural chemistry. In the higher order members of the various homologous series, additional Cu-O planes are inserted in the perovskite blocks. In order for the unit cell to electrically neutral the net positive charge on rocksalt block (which remains constant throughout the homologous series) should be balanced by an equal negative charge on perovskite block. It, thus becomes necessary to create oxygen vacancies in the basic perovskite structure, when width of the perovskite slab changes on addition of extra Cu-O planes. Results of atomistic simulations suggest that these missing oxygen ions allow the Cu-O planes to buckle in these compounds. This is also supported by the absence of buckling in the first member of Bi-containing compounds in which there are no missing oxygen ions and the Sr-Ti-O series of compounds. Additional results are presented on the phase stability of polytypoid structures in these crystal chemically complex systems. The studies will focus on the determination of the location of Cu(3+) in the structures of higher order members of the La-Cu-O system and whether Cu(3+) ions or oxygen vacancies are energetically more favorable charge compensating mechanism.

  19. Using colloidal silica as isolator, diverter and blocking agent for subsurface geological applications

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

    Bourcier, William L.; Roberts, Sarah K.; Roberts, Jeffery J.

    A system for blocking fast flow paths in geological formations includes preparing a solution of colloidal silica having a nonviscous phase and a solid gel phase. The solution of colloidal silica is injected into the geological formations while the solution of colloidal silica is in the nonviscous phase. The solution of colloidal silica is directed into the fast flow paths and reaches the solid gel phase in the fast flow paths thereby blocking flow of fluid in the fast paths.

  20. Arterial and venous plasma levels of bupivacaine following epidural and intercostal nerve blocks.

    PubMed

    Moore, D C; Mather, L E; Bridenbaugh, P O; Bridenbaugh, L D; Balfour, R I; Lysons, D F; Horton, W G

    1976-07-01

    Arterial and peripheral venous plasma levels of bupivacaine were determined in 30 patients following epidural anesthesia using 150 and 225 mg, as well as following intercostal nerve block with 400 mg. Arterial levels were consistently higher than levels in simultaneously sampled venous blood, and the highest levels occurred with bilateral intercostal nerve block. No evidence of systemic toxicity was observed. The results suggest that bupivacaine may have a wider margin of safety in man than is now stated.

Top