Sample records for kendall square multiprocessor

  1. Generic Software for Emulating Multiprocessor Architectures.

    DTIC Science & Technology

    1985-05-01

    RD-A157 662 GENERIC SOFTWARE FOR EMULATING MULTIPROCESSOR 1/2 AlRCHITECTURES(J) MASSACHUSETTS INST OF TECH CAMBRIDGE U LRS LAB FOR COMPUTER SCIENCE R...AREA & WORK UNIT NUMBERS MIT Laboratory for Computer Science 545 Technology Square Cambridge, MA 02139 ____________ I I. CONTROLLING OFFICE NAME AND...aide If neceeasy end Identify by block number) Computer architecture, emulation, simulation, dataf low 20. ABSTRACT (Continue an reverse slde It

  2. Validation of multiprocessor systems

    NASA Technical Reports Server (NTRS)

    Siewiorek, D. P.; Segall, Z.; Kong, T.

    1982-01-01

    Experiments that can be used to validate fault free performance of multiprocessor systems in aerospace systems integrating flight controls and avionics are discussed. Engineering prototypes for two fault tolerant multiprocessors are tested.

  3. High Performance, Dependable Multiprocessor

    NASA Technical Reports Server (NTRS)

    Ramos, Jeremy; Samson, John R.; Troxel, Ian; Subramaniyan, Rajagopal; Jacobs, Adam; Greco, James; Cieslewski, Grzegorz; Curreri, John; Fischer, Michael; Grobelny, Eric; hide

    2006-01-01

    With the ever increasing demand for higher bandwidth and processing capacity of today's space exploration, space science, and defense missions, the ability to efficiently apply commercial-off-the-shelf (COTS) processors for on-board computing is now a critical need. In response to this need, NASA's New Millennium Program office has commissioned the development of Dependable Multiprocessor (DM) technology for use in payload and robotic missions. The Dependable Multiprocessor technology is a COTS-based, power efficient, high performance, highly dependable, fault tolerant cluster computer. To date, Honeywell has successfully demonstrated a TRL4 prototype of the Dependable Multiprocessor [I], and is now working on the development of a TRLS prototype. For the present effort Honeywell has teamed up with the University of Florida's High-performance Computing and Simulation (HCS) Lab, and together the team has demonstrated major elements of the Dependable Multiprocessor TRLS system.

  4. Embedded Multiprocessor Technology for VHSIC Insertion

    NASA Technical Reports Server (NTRS)

    Hayes, Paul J.

    1990-01-01

    Viewgraphs on embedded multiprocessor technology for VHSIC insertion are presented. The objective was to develop multiprocessor system technology providing user-selectable fault tolerance, increased throughput, and ease of application representation for concurrent operation. The approach was to develop graph management mapping theory for proper performance, model multiprocessor performance, and demonstrate performance in selected hardware systems.

  5. Multiprocessor architectural study

    NASA Technical Reports Server (NTRS)

    Kosmala, A. L.; Stanten, S. F.; Vandever, W. H.

    1972-01-01

    An architectural design study was made of a multiprocessor computing system intended to meet functional and performance specifications appropriate to a manned space station application. Intermetrics, previous experience, and accumulated knowledge of the multiprocessor field is used to generate a baseline philosophy for the design of a future SUMC* multiprocessor. Interrupts are defined and the crucial questions of interrupt structure, such as processor selection and response time, are discussed. Memory hierarchy and performance is discussed extensively with particular attention to the design approach which utilizes a cache memory associated with each processor. The ability of an individual processor to approach its theoretical maximum performance is then analyzed in terms of a hit ratio. Memory management is envisioned as a virtual memory system implemented either through segmentation or paging. Addressing is discussed in terms of various register design adopted by current computers and those of advanced design.

  6. Shared versus distributed memory multiprocessors

    NASA Technical Reports Server (NTRS)

    Jordan, Harry F.

    1991-01-01

    The question of whether multiprocessors should have shared or distributed memory has attracted a great deal of attention. Some researchers argue strongly for building distributed memory machines, while others argue just as strongly for programming shared memory multiprocessors. A great deal of research is underway on both types of parallel systems. Special emphasis is placed on systems with a very large number of processors for computation intensive tasks and considers research and implementation trends. It appears that the two types of systems will likely converge to a common form for large scale multiprocessors.

  7. Shared performance monitor in a multiprocessor system

    DOEpatents

    Chiu, George; Gara, Alan G; Salapura, Valentina

    2014-12-02

    A performance monitoring unit (PMU) and method for monitoring performance of events occurring in a multiprocessor system. The multiprocessor system comprises a plurality of processor devices units, each processor device for generating signals representing occurrences of events in the processor device, and, a single shared counter resource for performance monitoring. The performance monitor unit is shared by all processor cores in the multiprocessor system. The PMU is further programmed to monitor event signals issued from non-processor devices.

  8. File-System Workload on a Scientific Multiprocessor

    NASA Technical Reports Server (NTRS)

    Kotz, David; Nieuwejaar, Nils

    1995-01-01

    Many scientific applications have intense computational and I/O requirements. Although multiprocessors have permitted astounding increases in computational performance, the formidable I/O needs of these applications cannot be met by current multiprocessors a their I/O subsystems. To prevent I/O subsystems from forever bottlenecking multiprocessors and limiting the range of feasible applications, new I/O subsystems must be designed. The successful design of computer systems (both hardware and software) depends on a thorough understanding of their intended use. A system designer optimizes the policies and mechanisms for the cases expected to most common in the user's workload. In the case of multiprocessor file systems, however, designers have been forced to build file systems based only on speculation about how they would be used, extrapolating from file-system characterizations of general-purpose workloads on uniprocessor and distributed systems or scientific workloads on vector supercomputers (see sidebar on related work). To help these system designers, in June 1993 we began the Charisma Project, so named because the project sought to characterize 1/0 in scientific multiprocessor applications from a variety of production parallel computing platforms and sites. The Charisma project is unique in recording individual read and write requests-in live, multiprogramming, parallel workloads (rather than from selected or nonparallel applications). In this article, we present the first results from the project: a characterization of the file-system workload an iPSC/860 multiprocessor running production, parallel scientific applications at NASA's Ames Research Center.

  9. Multiprocessor smalltalk: Implementation, performance, and analysis

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

    Pallas, J.I.

    1990-01-01

    Multiprocessor Smalltalk demonstrates the value of object-oriented programming on a multiprocessor. Its implementation and analysis shed light on three areas: concurrent programming in an object oriented language without special extensions, implementation techniques for adapting to multiprocessors, and performance factors in the resulting system. Adding parallelism to Smalltalk code is easy, because programs already use control abstractions like iterators. Smalltalk's basic control and concurrency primitives (lambda expressions, processes and semaphores) can be used to build parallel control abstractions, including parallel iterators, parallel objects, atomic objects, and futures. Language extensions for concurrency are not required. This implementation demonstrates that it is possiblemore » to build an efficient parallel object-oriented programming system and illustrates techniques for doing so. Three modification tools-serialization, replication, and reorganization-adapted the Berkeley Smalltalk interpreter to the Firefly multiprocessor. Multiprocessor Smalltalk's performance shows that the combination of multiprocessing and object-oriented programming can be effective: speedups (relative to the original serial version) exceed 2.0 for five processors on all the benchmarks; the median efficiency is 48%. Analysis shows both where performance is lost and how to improve and generalize the experimental results. Changes in the interpreter to support concurrency add at most 12% overhead; better access to per-process variables could eliminate much of that. Changes in the user code to express concurrency add as much as 70% overhead; this overhead could be reduced to 54% if blocks (lambda expressions) were reentrant. Performance is also lost when the program cannot keep all five processors busy.« less

  10. Multiprocessor computer overset grid method and apparatus

    DOEpatents

    Barnette, Daniel W.; Ober, Curtis C.

    2003-01-01

    A multiprocessor computer overset grid method and apparatus comprises associating points in each overset grid with processors and using mapped interpolation transformations to communicate intermediate values between processors assigned base and target points of the interpolation transformations. The method allows a multiprocessor computer to operate with effective load balance on overset grid applications.

  11. VME rollback hardware for time warp multiprocessor systems

    NASA Technical Reports Server (NTRS)

    Robb, Michael J.; Buzzell, Calvin A.

    1992-01-01

    The purpose of the research effort is to develop and demonstrate innovative hardware to implement specific rollback and timing functions required for efficient queue management and precision timekeeping in multiprocessor discrete event simulations. The previously completed phase 1 effort demonstrated the technical feasibility of building hardware modules which eliminate the state saving overhead of the Time Warp paradigm used in distributed simulations on multiprocessor systems. The current phase 2 effort will build multiple pre-production rollback hardware modules integrated with a network of Sun workstations, and the integrated system will be tested by executing a Time Warp simulation. The rollback hardware will be designed to interface with the greatest number of multiprocessor systems possible. The authors believe that the rollback hardware will provide for significant speedup of large scale discrete event simulation problems and allow multiprocessors using Time Warp to dramatically increase performance.

  12. Insertion of coherence requests for debugging a multiprocessor

    DOEpatents

    Blumrich, Matthias A.; Salapura, Valentina

    2010-02-23

    A method and system are disclosed to insert coherence events in a multiprocessor computer system, and to present those coherence events to the processors of the multiprocessor computer system for analysis and debugging purposes. The coherence events are inserted in the computer system by adding one or more special insert registers. By writing into the insert registers, coherence events are inserted in the multiprocessor system as if they were generated by the normal coherence protocol. Once these coherence events are processed, the processing of coherence events can continue in the normal operation mode.

  13. Shared performance monitor in a multiprocessor system

    DOEpatents

    Chiu, George; Gara, Alan G.; Salapura, Valentina

    2012-07-24

    A performance monitoring unit (PMU) and method for monitoring performance of events occurring in a multiprocessor system. The multiprocessor system comprises a plurality of processor devices units, each processor device for generating signals representing occurrences of events in the processor device, and, a single shared counter resource for performance monitoring. The performance monitor unit is shared by all processor cores in the multiprocessor system. The PMU comprises: a plurality of performance counters each for counting signals representing occurrences of events from one or more the plurality of processor units in the multiprocessor system; and, a plurality of input devices for receiving the event signals from one or more processor devices of the plurality of processor units, the plurality of input devices programmable to select event signals for receipt by one or more of the plurality of performance counters for counting, wherein the PMU is shared between multiple processing units, or within a group of processors in the multiprocessing system. The PMU is further programmed to monitor event signals issued from non-processor devices.

  14. Queueing analysis of a canonical model of real-time multiprocessors

    NASA Technical Reports Server (NTRS)

    Krishna, C. M.; Shin, K. G.

    1983-01-01

    A logical classification of multiprocessor structures from the point of view of control applications is presented. A computation of the response time distribution for a canonical model of a real time multiprocessor is presented. The multiprocessor is approximated by a blocking model. Two separate models are derived: one created from the system's point of view, and the other from the point of view of an incoming task.

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

  16. Compiler-directed cache management in multiprocessors

    NASA Technical Reports Server (NTRS)

    Cheong, Hoichi; Veidenbaum, Alexander V.

    1990-01-01

    The necessity of finding alternatives to hardware-based cache coherence strategies for large-scale multiprocessor systems is discussed. Three different software-based strategies sharing the same goals and general approach are presented. They consist of a simple invalidation approach, a fast selective invalidation scheme, and a version control scheme. The strategies are suitable for shared-memory multiprocessor systems with interconnection networks and a large number of processors. Results of trace-driven simulations conducted on numerical benchmark routines to compare the performance of the three schemes are presented.

  17. A cache-aided multiprocessor rollback recovery scheme

    NASA Technical Reports Server (NTRS)

    Wu, Kun-Lung; Fuchs, W. Kent

    1989-01-01

    This paper demonstrates how previous uniprocessor cache-aided recovery schemes can be applied to multiprocessor architectures, for recovering from transient processor failures, utilizing private caches and a global shared memory. As with cache-aided uniprocessor recovery, the multiprocessor cache-aided recovery scheme of this paper can be easily integrated into standard bus-based snoopy cache coherence protocols. A consistent shared memory state is maintained without the necessity of global check-pointing.

  18. Programmable partitioning for high-performance coherence domains in a multiprocessor system

    DOEpatents

    Blumrich, Matthias A [Ridgefield, CT; Salapura, Valentina [Chappaqua, NY

    2011-01-25

    A multiprocessor computing system and a method of logically partitioning a multiprocessor computing system are disclosed. The multiprocessor computing system comprises a multitude of processing units, and a multitude of snoop units. Each of the processing units includes a local cache, and the snoop units are provided for supporting cache coherency in the multiprocessor system. Each of the snoop units is connected to a respective one of the processing units and to all of the other snoop units. The multiprocessor computing system further includes a partitioning system for using the snoop units to partition the multitude of processing units into a plurality of independent, memory-consistent, adjustable-size processing groups. Preferably, when the processor units are partitioned into these processing groups, the partitioning system also configures the snoop units to maintain cache coherency within each of said groups.

  19. Regional Kendall test for trend

    USGS Publications Warehouse

    Helsel, D.R.; Frans, L.M.

    2006-01-01

    Trends in environmental variables are often investigated within a study region at more than one site. At each site, a trend analysis determines whether a trend has occurred. Yet often also of interest is whether a consistent trend is evident throughout the entire region. This paper adapts the Seasonal Kendall trend test to determine whether a consistent regional trend occurs in environmental variables.

  20. A simple modern correctness condition for a space-based high-performance multiprocessor

    NASA Technical Reports Server (NTRS)

    Probst, David K.; Li, Hon F.

    1992-01-01

    A number of U.S. national programs, including space-based detection of ballistic missile launches, envisage putting significant computing power into space. Given sufficient progress in low-power VLSI, multichip-module packaging and liquid-cooling technologies, we will see design of high-performance multiprocessors for individual satellites. In very high speed implementations, performance depends critically on tolerating large latencies in interprocessor communication; without latency tolerance, performance is limited by the vastly differing time scales in processor and data-memory modules, including interconnect times. The modern approach to tolerating remote-communication cost in scalable, shared-memory multiprocessors is to use a multithreaded architecture, and alter the semantics of shared memory slightly, at the price of forcing the programmer either to reason about program correctness in a relaxed consistency model or to agree to program in a constrained style. The literature on multiprocessor correctness conditions has become increasingly complex, and sometimes confusing, which may hinder its practical application. We propose a simple modern correctness condition for a high-performance, shared-memory multiprocessor; the correctness condition is based on a simple interface between the multiprocessor architecture and a high-performance, shared-memory multiprocessor; the correctness condition is based on a simple interface between the multiprocessor architecture and the parallel programming system.

  1. Parallel and fault-tolerant algorithms for hypercube multiprocessors

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

    Aykanat, C.

    1988-01-01

    Several techniques for increasing the performance of parallel algorithms on distributed-memory message-passing multi-processor systems are investigated. These techniques are effectively implemented for the parallelization of the Scaled Conjugate Gradient (SCG) algorithm on a hypercube connected message-passing multi-processor. Significant performance improvement is achieved by using these techniques. The SCG algorithm is used for the solution phase of an FE modeling system. Almost linear speed-up is achieved, and it is shown that hypercube topology is scalable for an FE class of problem. The SCG algorithm is also shown to be suitable for vectorization, and near supercomputer performance is achieved on a vectormore » hypercube multiprocessor by exploiting both parallelization and vectorization. Fault-tolerance issues for the parallel SCG algorithm and for the hypercube topology are also addressed.« less

  2. Realtime multiprocessor for mobile ad hoc networks

    NASA Astrophysics Data System (ADS)

    Jungeblut, T.; Grünewald, M.; Porrmann, M.; Rückert, U.

    2008-05-01

    This paper introduces a real-time Multiprocessor System-On-Chip (MPSoC) for low power wireless applications. The multiprocessor is based on eight 32bit RISC processors that are connected via an Network-On-Chip (NoC). The NoC follows a novel approach with guaranteed bandwidth to the application that meets hard realtime requirements. At a clock frequency of 100 MHz the total power consumption of the MPSoC that has been fabricated in 180 nm UMC standard cell technology is 772 mW.

  3. Multiprocessor programming environment

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

    Smith, M.B.; Fornaro, R.

    Programming tools and techniques have been well developed for traditional uniprocessor computer systems. The focus of this research project is on the development of a programming environment for a high speed real time heterogeneous multiprocessor system, with special emphasis on languages and compilers. The new tools and techniques will allow a smooth transition for programmers with experience only on single processor systems.

  4. Computer program for the Kendall family of trend tests

    USGS Publications Warehouse

    Helsel, Dennis R.; Mueller, David K.; Slack, James R.

    2006-01-01

    The Seasonal Kendall (SK) test for trend was developed by the U.S. Geological Survey and has become the most frequently used test for trend in the environmental sciences. Recently the test was modified to form the Regional Kendall (RK) test for trend. In this form, trends at numerous locations within a region are tested to determine whether the direction of trend is consistent across the entire region. Computer code developed at the USGS in the 1980s to perform the SK test is no longer widely available. Other versions written by other scientists may or may not be easily available, and may require commercial software in order to be run. These other versions do not explicitly compute the RK test. Therefore, the original code for computing the SK test has been repackaged into a program that runs under the Windows operating system. This program may be used to verify that other implementations of the test give the same results as the original. The program also provides a means for computing the RK test and the simpler Mann-Kendall test for trend.

  5. A fault-tolerant multiprocessor architecture for aircraft, volume 1. [autopilot configuration

    NASA Technical Reports Server (NTRS)

    Smith, T. B.; Hopkins, A. L.; Taylor, W.; Ausrotas, R. A.; Lala, J. H.; Hanley, L. D.; Martin, J. H.

    1978-01-01

    A fault-tolerant multiprocessor architecture is reported. This architecture, together with a comprehensive information system architecture, has important potential for future aircraft applications. A preliminary definition and assessment of a suitable multiprocessor architecture for such applications is developed.

  6. Modelling parallel programs and multiprocessor architectures with AXE

    NASA Technical Reports Server (NTRS)

    Yan, Jerry C.; Fineman, Charles E.

    1991-01-01

    AXE, An Experimental Environment for Parallel Systems, was designed to model and simulate for parallel systems at the process level. It provides an integrated environment for specifying computation models, multiprocessor architectures, data collection, and performance visualization. AXE is being used at NASA-Ames for developing resource management strategies, parallel problem formulation, multiprocessor architectures, and operating system issues related to the High Performance Computing and Communications Program. AXE's simple, structured user-interface enables the user to model parallel programs and machines precisely and efficiently. Its quick turn-around time keeps the user interested and productive. AXE models multicomputers. The user may easily modify various architectural parameters including the number of sites, connection topologies, and overhead for operating system activities. Parallel computations in AXE are represented as collections of autonomous computing objects known as players. Their use and behavior is described. Performance data of the multiprocessor model can be observed on a color screen. These include CPU and message routing bottlenecks, and the dynamic status of the software.

  7. Modeling and measurement of fault-tolerant multiprocessors

    NASA Technical Reports Server (NTRS)

    Shin, K. G.; Woodbury, M. H.; Lee, Y. H.

    1985-01-01

    The workload effects on computer performance are addressed first for a highly reliable unibus multiprocessor used in real-time control. As an approach to studing these effects, a modified Stochastic Petri Net (SPN) is used to describe the synchronous operation of the multiprocessor system. From this model the vital components affecting performance can be determined. However, because of the complexity in solving the modified SPN, a simpler model, i.e., a closed priority queuing network, is constructed that represents the same critical aspects. The use of this model for a specific application requires the partitioning of the workload into job classes. It is shown that the steady state solution of the queuing model directly produces useful results. The use of this model in evaluating an existing system, the Fault Tolerant Multiprocessor (FTMP) at the NASA AIRLAB, is outlined with some experimental results. Also addressed is the technique of measuring fault latency, an important microscopic system parameter. Most related works have assumed no or a negligible fault latency and then performed approximate analyses. To eliminate this deficiency, a new methodology for indirectly measuring fault latency is presented.

  8. ATAMM enhancement and multiprocessor performance evaluation

    NASA Technical Reports Server (NTRS)

    Stoughton, John W.; Mielke, Roland R.; Som, Sukhamoy; Obando, Rodrigo; Malekpour, Mahyar R.; Jones, Robert L., III; Mandala, Brij Mohan V.

    1991-01-01

    ATAMM (Algorithm To Architecture Mapping Model) enhancement and multiprocessor performance evaluation is discussed. The following topics are included: the ATAMM model; ATAMM enhancement; ADM (Advanced Development Model) implementation of ATAMM; and ATAMM support tools.

  9. Surface-Water and Ground-Water Resources of Kendall County, Illinois

    USGS Publications Warehouse

    Kay, Robert T.; Mills, Patrick C.; Hogan, Jennifer L.; Arnold, Terri L.

    2005-01-01

    Water-supply needs in Kendall County, in northern Illinois, are met exclusively from ground water derived from glacial drift aquifers and bedrock aquifers open to Silurian, Ordovician, and Cambrian System units. As a result of population growth in Kendall County and the surrounding area, water use has increased from about 1.2 million gallons per day in 1957 to more than 5 million gallons per day in 2000. The purpose of this report is to characterize the surface-water and ground-water resources of Kendall County. The report presents a compilation of available information on geology, surface-water and ground-water hydrology, water quality, and water use. The Fox River is the primary surface-water body in Kendall County and is used for both wastewater disposal and as a drinking-water supply upstream of the county. Water from the Fox River requires pretreatment for use as drinking water, but the river is a potentially viable additional source of water for the county. Glacial drift aquifers capable of yielding sufficient water for municipal supply are expected to be present in northern Kendall County, along the Fox River, and in the Newark Valley and its tributaries. Glacial drift aquifers capable of yielding sufficient water for residential supply are present in most of the county, with the exception of the southeastern portion. Volatile organic compounds and select trace metals and pesticides have been detected at low concentrations in glacial drift aquifers near waste-disposal sites. Agricultural-related constituents have been detected infrequently in glacial drift aquifers near agricultural areas. However, on the basis of the available data, widespread, consistent problems with water quality are not apparent in these aquifers. These aquifers are a viable source for additional water supply, but would require further characterization prior to full development. The shallow bedrock aquifer is composed of the sandstone units of the Ancell Group, the Prairie du Chien

  10. A multiprocessor operating system simulator

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

    Johnston, G.M.; Campbell, R.H.

    1988-01-01

    This paper describes a multiprocessor operating system simulator that was developed by the authors in the Fall of 1987. The simulator was built in response to the need to provide students with an environment in which to build and test operating system concepts as part of the coursework of a third-year undergraduate operating systems course. Written in C++, the simulator uses the co-routine style task package that is distributed with the AT and T C++ Translator to provide a hierarchy of classes that represents a broad range of operating system software and hardware components. The class hierarchy closely follows thatmore » of the Choices family of operating systems for loosely and tightly coupled multiprocessors. During an operating system course, these classes are refined and specialized by students in homework assignments to facilitate experimentation with different aspects of operating system design and policy decisions. The current implementation runs on the IBM RT PC under 4.3bsd UNIX.« less

  11. A Multiprocessor Operating System Simulator

    NASA Technical Reports Server (NTRS)

    Johnston, Gary M.; Campbell, Roy H.

    1988-01-01

    This paper describes a multiprocessor operating system simulator that was developed by the authors in the Fall semester of 1987. The simulator was built in response to the need to provide students with an environment in which to build and test operating system concepts as part of the coursework of a third-year undergraduate operating systems course. Written in C++, the simulator uses the co-routine style task package that is distributed with the AT&T C++ Translator to provide a hierarchy of classes that represents a broad range of operating system software and hardware components. The class hierarchy closely follows that of the 'Choices' family of operating systems for loosely- and tightly-coupled multiprocessors. During an operating system course, these classes are refined and specialized by students in homework assignments to facilitate experimentation with different aspects of operating system design and policy decisions. The current implementation runs on the IBM RT PC under 4.3bsd UNIX.

  12. Assessing the Priority Area of Mountainous Tourism Using Geospatial Approach in Kendal Regency, Central Java

    NASA Astrophysics Data System (ADS)

    Riwayatiningsih; Purnaweni, Hartuti

    2018-02-01

    Kendal is one of 35 regencies in Central Java which has diverse topographies, from low land, hilly, to mountainous areas. Mountainous area of Kendal with numerous unique and distinct natural environments, supported by various unique and distinct culture of its community can be used for tourism activities. Kendal has natural and sociocultural resources for developing tourism that must be considered by the local government. Therefore, nature based tourism resources assessment is important in order to determine the appropriate area in the planning of sustainable tourism destination. The objectives of this study are to assess and prioritize the potential area of mountainous tourism object in Kendal using geospatial approach based on criteria attractiveness, accessibility and amenity of the tourism object. Those criteria are modification of ADO-ODTWA guidelines and condition of the study location. There are 16 locations of tourism object that will be assessed. The result will be processed using ArcMap 10.3. The result will show the most potential tourism object that could become priority for mountainous tourism development in Kendal.

  13. Operating system for a real-time multiprocessor propulsion system simulator. User's manual

    NASA Technical Reports Server (NTRS)

    Cole, G. L.

    1985-01-01

    The NASA Lewis Research Center is developing and evaluating experimental hardware and software systems to help meet future needs for real-time, high-fidelity simulations of air-breathing propulsion systems. Specifically, the real-time multiprocessor simulator project focuses on the use of multiple microprocessors to achieve the required computing speed and accuracy at relatively low cost. Operating systems for such hardware configurations are generally not available. A real time multiprocessor operating system (RTMPOS) that supports a variety of multiprocessor configurations was developed at Lewis. With some modification, RTMPOS can also support various microprocessors. RTMPOS, by means of menus and prompts, provides the user with a versatile, user-friendly environment for interactively loading, running, and obtaining results from a multiprocessor-based simulator. The menu functions are described and an example simulation session is included to demonstrate the steps required to go from the simulation loading phase to the execution phase.

  14. Real-Time Multiprocessor Programming Language (RTMPL) user's manual

    NASA Technical Reports Server (NTRS)

    Arpasi, D. J.

    1985-01-01

    A real-time multiprocessor programming language (RTMPL) has been developed to provide for high-order programming of real-time simulations on systems of distributed computers. RTMPL is a structured, engineering-oriented language. The RTMPL utility supports a variety of multiprocessor configurations and types by generating assembly language programs according to user-specified targeting information. Many programming functions are assumed by the utility (e.g., data transfer and scaling) to reduce the programming chore. This manual describes RTMPL from a user's viewpoint. Source generation, applications, utility operation, and utility output are detailed. An example simulation is generated to illustrate many RTMPL features.

  15. Considerations for Multiprocessor Topologies

    NASA Technical Reports Server (NTRS)

    Byrd, Gregory T.; Delagi, Bruce A.

    1987-01-01

    Choosing a multiprocessor interconnection topology may depend on high-level considerations, such as the intended application domain and the expected number of processors. It certainly depends on low-level implementation details, such as packaging and communications protocols. The authors first use rough measures of cost and performance to characterize several topologies. They then examine how implementation details can affect the realizable performance of a topology.

  16. Experimental evaluation of multiprocessor cache-based error recovery

    NASA Technical Reports Server (NTRS)

    Janssens, Bob; Fuchs, W. K.

    1991-01-01

    Several variations of cache-based checkpointing for rollback error recovery in shared-memory multiprocessors have been recently developed. By modifying the cache replacement policy, these techniques use the inherent redundancy in the memory hierarchy to periodically checkpoint the computation state. Three schemes, different in the manner in which they avoid rollback propagation, are evaluated. By simulation with address traces from parallel applications running on an Encore Multimax shared-memory multiprocessor, the performance effect of integrating the recovery schemes in the cache coherence protocol are evaluated. The results indicate that the cache-based schemes can provide checkpointing capability with low performance overhead but uncontrollable high variability in the checkpoint interval.

  17. Cache-based error recovery for shared memory multiprocessor systems

    NASA Technical Reports Server (NTRS)

    Wu, Kun-Lung; Fuchs, W. Kent; Patel, Janak H.

    1989-01-01

    A multiprocessor cache-based checkpointing and recovery scheme for of recovering from transient processor errors in a shared-memory multiprocessor with private caches is presented. New implementation techniques that use checkpoint identifiers and recovery stacks to reduce performance degradation in processor utilization during normal execution are examined. This cache-based checkpointing technique prevents rollback propagation, provides for rapid recovery, and can be integrated into standard cache coherence protocols. An analytical model is used to estimate the relative performance of the scheme during normal execution. Extensions that take error latency into account are presented.

  18. Power-Aware Compiler Controllable Chip Multiprocessor

    NASA Astrophysics Data System (ADS)

    Shikano, Hiroaki; Shirako, Jun; Wada, Yasutaka; Kimura, Keiji; Kasahara, Hironori

    A power-aware compiler controllable chip multiprocessor (CMP) is presented and its performance and power consumption are evaluated with the optimally scheduled advanced multiprocessor (OSCAR) parallelizing compiler. The CMP is equipped with power control registers that change clock frequency and power supply voltage to functional units including processor cores, memories, and an interconnection network. The OSCAR compiler carries out coarse-grain task parallelization of programs and reduces power consumption using architectural power control support and the compiler's power saving scheme. The performance evaluation shows that MPEG-2 encoding on the proposed CMP with four CPUs results in 82.6% power reduction in real-time execution mode with a deadline constraint on its sequential execution time. Furthermore, MP3 encoding on a heterogeneous CMP with four CPUs and four accelerators results in 53.9% power reduction at 21.1-fold speed-up in performance against its sequential execution in the fastest execution mode.

  19. Neural networks and MIMD-multiprocessors

    NASA Technical Reports Server (NTRS)

    Vanhala, Jukka; Kaski, Kimmo

    1990-01-01

    Two artificial neural network models are compared. They are the Hopfield Neural Network Model and the Sparse Distributed Memory model. Distributed algorithms for both of them are designed and implemented. The run time characteristics of the algorithms are analyzed theoretically and tested in practice. The storage capacities of the networks are compared. Implementations are done using a distributed multiprocessor system.

  20. Shared Versus Distributed Memory Multiprocessors

    DTIC Science & Technology

    1991-01-01

    multiprocessors should hawe shared or dis.trimuted meieo-% ha~ trr ~ g ’’~ de~i c4~accio;, S Cm teaicners argue S trongly tor Outiding (li15 tri huted...Applications, MIT Press (1985). 161 D. Gajski et el., "Cedar," Proc. Compcon, pp. 306-309 (Spring 19S9). 171 S. Ahuja, N. Carriero and D. Gelernter, "Linda

  1. Design and implementation of a modulator-based free-space optical backplane for multiprocessor applications

    NASA Astrophysics Data System (ADS)

    Kirk, Andrew G.; Plant, David V.; Szymanski, Ted H.; Vranesic, Zvonko G.; Tooley, Frank A. P.; Rolston, David R.; Ayliffe, Michael H.; Lacroix, Frederic K.; Robertson, Brian; Bernier, Eric; Brosseau, Daniel F.

    2003-05-01

    Design and implementation of a free-space optical backplane for multiprocessor applications is presented. The system is designed to interconnect four multiprocessor nodes that communicate by using multiplexed 32-bit packets. Each multiprocessor node is electrically connected to an optoelectronic VLSI chip which implements the hyperplane interconnection architecture. The chips each contain 256 optical transmitters (implemented as dual-rail multiple quantum-well modulators) and 256 optical receivers. A rigid free-space microoptical interconnection system that interconnects the transceiver chips in a 512-channel unidirectional ring is implemented. Full design, implementation, and operational details are provided.

  2. Design and implementation of a modulator-based free-space optical backplane for multiprocessor applications.

    PubMed

    Kirk, Andrew G; Plant, David V; Szymanski, Ted H; Vranesic, Zvonko G; Tooley, Frank A P; Rolston, David R; Ayliffe, Michael H; Lacroix, Frederic K; Robertson, Brian; Bernier, Eric; Brosseau, Daniel F

    2003-05-10

    Design and implementation of a free-space optical backplane for multiprocessor applications is presented. The system is designed to interconnect four multiprocessor nodes that communicate by using multiplexed 32-bit packets. Each multiprocessor node is electrically connected to an optoelectronic VLSI chip which implements the hyperplane interconnection architecture. The chips each contain 256 optical transmitters (implemented as dual-rail multiple quantum-well modulators) and 256 optical receivers. A rigid free-space microoptical interconnection system that interconnects the transceiver chips in a 512-channel unidirectional ring is implemented. Full design, implementation, and operational details are provided.

  3. A large-grain mapping approach for multiprocessor systems through data flow model. Ph.D. Thesis

    NASA Technical Reports Server (NTRS)

    Kim, Hwa-Soo

    1991-01-01

    A large-grain level mapping method is presented of numerical oriented applications onto multiprocessor systems. The method is based on the large-grain data flow representation of the input application and it assumes a general interconnection topology of the multiprocessor system. The large-grain data flow model was used because such representation best exhibits inherited parallelism in many important applications, e.g., CFD models based on partial differential equations can be presented in large-grain data flow format, very effectively. A generalized interconnection topology of the multiprocessor architecture is considered, including such architectural issues as interprocessor communication cost, with the aim to identify the 'best matching' between the application and the multiprocessor structure. The objective is to minimize the total execution time of the input algorithm running on the target system. The mapping strategy consists of the following: (1) large-grain data flow graph generation from the input application using compilation techniques; (2) data flow graph partitioning into basic computation blocks; and (3) physical mapping onto the target multiprocessor using a priority allocation scheme for the computation blocks.

  4. 75 FR 61479 - Kendall Head Tidal Energy Project; Notice of Preliminary Permit Application Accepted for Filing...

    Federal Register 2010, 2011, 2012, 2013, 2014

    2010-10-05

    ... DEPARTMENT OF ENERGY Federal Energy Regulatory Commission [Project No. 13801-000] Kendall Head Tidal Energy Project; Notice of Preliminary Permit Application Accepted for Filing and Soliciting... Federal Power Act, proposing to study the feasibility of the Kendall Head Tidal Energy Project, located in...

  5. Spaceborne VHSIC multiprocessor system for AI applications

    NASA Technical Reports Server (NTRS)

    Lum, Henry, Jr.; Shrobe, Howard E.; Aspinall, John G.

    1988-01-01

    A multiprocessor system, under design for space-station applications, makes use of the latest generation symbolic processor and packaging technology. The result will be a compact, space-qualified system two to three orders of magnitude more powerful than present-day symbolic processing systems.

  6. Method and apparatus for single-stepping coherence events in a multiprocessor system under software control

    DOEpatents

    Blumrich, Matthias A.; Salapura, Valentina

    2010-11-02

    An apparatus and method are disclosed for single-stepping coherence events in a multiprocessor system under software control in order to monitor the behavior of a memory coherence mechanism. Single-stepping coherence events in a multiprocessor system is made possible by adding one or more step registers. By accessing these step registers, one or more coherence requests are processed by the multiprocessor system. The step registers determine if the snoop unit will operate by proceeding in a normal execution mode, or operate in a single-step mode.

  7. A multiprocessor airborne lidar data system

    NASA Technical Reports Server (NTRS)

    Wright, C. W.; Bailey, S. A.; Heath, G. E.; Piazza, C. R.

    1988-01-01

    A new multiprocessor data acquisition system was developed for the existing Airborne Oceanographic Lidar (AOL). This implementation simultaneously utilizes five single board 68010 microcomputers, the UNIX system V operating system, and the real time executive VRTX. The original data acquisition system was implemented on a Hewlett Packard HP 21-MX 16 bit minicomputer using a multi-tasking real time operating system and a mixture of assembly and FORTRAN languages. The present collection of data sources produce data at widely varied rates and require varied amounts of burdensome real time processing and formatting. It was decided to replace the aging HP 21-MX minicomputer with a multiprocessor system. A new and flexible recording format was devised and implemented to accommodate the constantly changing sensor configuration. A central feature of this data system is the minimization of non-remote sensing bus traffic. Therefore, it is highly desirable that each micro be capable of functioning as much as possible on-card or via private peripherals. The bus is used primarily for the transfer of remote sensing data to or from the buffer queue.

  8. Reproducibility in a multiprocessor system

    DOEpatents

    Bellofatto, Ralph A; Chen, Dong; Coteus, Paul W; Eisley, Noel A; Gara, Alan; Gooding, Thomas M; Haring, Rudolf A; Heidelberger, Philip; Kopcsay, Gerard V; Liebsch, Thomas A; Ohmacht, Martin; Reed, Don D; Senger, Robert M; Steinmacher-Burow, Burkhard; Sugawara, Yutaka

    2013-11-26

    Fixing a problem is usually greatly aided if the problem is reproducible. To ensure reproducibility of a multiprocessor system, the following aspects are proposed; a deterministic system start state, a single system clock, phase alignment of clocks in the system, system-wide synchronization events, reproducible execution of system components, deterministic chip interfaces, zero-impact communication with the system, precise stop of the system and a scan of the system state.

  9. The Problems of Applying Student Centered Syllabus of English in Vocational High Schools in Kendal Regency

    ERIC Educational Resources Information Center

    Faridi, Abdurrachman; Bahri, Seful; Nurmasitah, Sita

    2016-01-01

    This study was descriptive qualitative study aimed to investigate the problems of applying student centered syllabus in vocational high schools in Kendal regency, Central Java, Indonesia. The subjects of the study were twenty English teacher in vocational high schools in Kendal. The data were collected through observations, questionnaires, and…

  10. Kendall Demonstration Elementary School: Mathematics Curriculum Guide. Second Edition.

    ERIC Educational Resources Information Center

    Mason, Virgyl

    This mathematics curriculum guide is one of a series developed by the Kendall Demonstration Elementary School (KDES), which serves hearing-impaired students in grades 1-8, to provide a clear representation of the school's programs in various subject areas. Essential classroom practices in the areas of planning, instruction, and evaluation are…

  11. C-MOS array design techniques: SUMC multiprocessor system study

    NASA Technical Reports Server (NTRS)

    Clapp, W. A.; Helbig, W. A.; Merriam, A. S.

    1972-01-01

    The current capabilities of LSI techniques for speed and reliability, plus the possibilities of assembling large configurations of LSI logic and storage elements, have demanded the study of multiprocessors and multiprocessing techniques, problems, and potentialities. Evaluated are three previous systems studies for a space ultrareliable modular computer multiprocessing system, and a new multiprocessing system is proposed that is flexibly configured with up to four central processors, four 1/0 processors, and 16 main memory units, plus auxiliary memory and peripheral devices. This multiprocessor system features a multilevel interrupt, qualified S/360 compatibility for ground-based generation of programs, virtual memory management of a storage hierarchy through 1/0 processors, and multiport access to multiple and shared memory units.

  12. AmeriFlux US-Wkg Walnut Gulch Kendall Grasslands

    DOE Data Explorer

    Scott, Russell [United States Department of Agriculture

    2016-01-01

    This is the AmeriFlux version of the carbon flux data for the site US-Wkg Walnut Gulch Kendall Grasslands. Site Description - This site is located in a small, intensively-studied, experimental watershed within USDA-ARS's Walnut Gulch Experimental Watershed. Eddy covariance measurements of energy, water and CO2 fluxes began in the spring of 2004, though meteorological (including Bowen ratio) and hydrological measurements are available much further back.

  13. FTMP - A highly reliable Fault-Tolerant Multiprocessor for aircraft

    NASA Technical Reports Server (NTRS)

    Hopkins, A. L., Jr.; Smith, T. B., III; Lala, J. H.

    1978-01-01

    The FTMP (Fault-Tolerant Multiprocessor) is a complex multiprocessor computer that employs a form of redundancy related to systems considered by Mathur (1971), in which each major module can substitute for any other module of the same type. Despite the conceptual simplicity of the redundancy form, the implementation has many intricacies owing partly to the low target failure rate, and partly to the difficulty of eliminating single-fault vulnerability. An extensive analysis of the computer through the use of such modeling techniques as Markov processes and combinatorial mathematics shows that for random hard faults the computer can meet its requirements. It is also shown that the maintenance scheduled at intervals of 200 hr or more can be adequate most of the time.

  14. Bibliography On Multiprocessors And Distributed Processing

    NASA Technical Reports Server (NTRS)

    Miya, Eugene N.

    1988-01-01

    Multiprocessor and Distributed Processing Bibliography package consists of large machine-readable bibliographic data base, which in addition to usual keyword searches, used for producing citations, indexes, and cross-references. Data base contains UNIX(R) "refer" -formatted ASCII data and implemented on any computer running under UNIX(R) operating system. Easily convertible to other operating systems. Requires approximately one megabyte of secondary storage. Bibliography compiled in 1985.

  15. Cedar-a large scale multiprocessor

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

    Gajski, D.; Kuck, D.; Lawrie, D.

    1983-01-01

    This paper presents an overview of Cedar, a large scale multiprocessor being designed at the University of Illinois. This machine is designed to accommodate several thousand high performance processors which are capable of working together on a single job, or they can be partitioned into groups of processors where each group of one or more processors can work on separate jobs. Various aspects of the machine are described including the control methodology, communication network, optimizing compiler and plans for construction. 13 references.

  16. Operating system for a real-time multiprocessor propulsion system simulator

    NASA Technical Reports Server (NTRS)

    Cole, G. L.

    1984-01-01

    The success of the Real Time Multiprocessor Operating System (RTMPOS) in the development and evaluation of experimental hardware and software systems for real time interactive simulation of air breathing propulsion systems was evaluated. The Real Time Multiprocessor Operating System (RTMPOS) provides the user with a versatile, interactive means for loading, running, debugging and obtaining results from a multiprocessor based simulator. A front end processor (FEP) serves as the simulator controller and interface between the user and the simulator. These functions are facilitated by the RTMPOS which resides on the FEP. The RTMPOS acts in conjunction with the FEP's manufacturer supplied disk operating system that provides typical utilities like an assembler, linkage editor, text editor, file handling services, etc. Once a simulation is formulated, the RTMPOS provides for engineering level, run time operations such as loading, modifying and specifying computation flow of programs, simulator mode control, data handling and run time monitoring. Run time monitoring is a powerful feature of RTMPOS that allows the user to record all actions taken during a simulation session and to receive advisories from the simulator via the FEP. The RTMPOS is programmed mainly in PASCAL along with some assembly language routines. The RTMPOS software is easily modified to be applicable to hardware from different manufacturers.

  17. Testing independence of bivariate interval-censored data using modified Kendall's tau statistic.

    PubMed

    Kim, Yuneung; Lim, Johan; Park, DoHwan

    2015-11-01

    In this paper, we study a nonparametric procedure to test independence of bivariate interval censored data; for both current status data (case 1 interval-censored data) and case 2 interval-censored data. To do it, we propose a score-based modification of the Kendall's tau statistic for bivariate interval-censored data. Our modification defines the Kendall's tau statistic with expected numbers of concordant and disconcordant pairs of data. The performance of the modified approach is illustrated by simulation studies and application to the AIDS study. We compare our method to alternative approaches such as the two-stage estimation method by Sun et al. (Scandinavian Journal of Statistics, 2006) and the multiple imputation method by Betensky and Finkelstein (Statistics in Medicine, 1999b). © 2015 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  18. Fault tree models for fault tolerant hypercube multiprocessors

    NASA Technical Reports Server (NTRS)

    Boyd, Mark A.; Tuazon, Jezus O.

    1991-01-01

    Three candidate fault tolerant hypercube architectures are modeled, their reliability analyses are compared, and the resulting implications of these methods of incorporating fault tolerance into hypercube multiprocessors are discussed. In the course of performing the reliability analyses, the use of HARP and fault trees in modeling sequence dependent system behaviors is demonstrated.

  19. Data traffic reduction schemes for Cholesky factorization on asynchronous multiprocessor systems

    NASA Technical Reports Server (NTRS)

    Naik, Vijay K.; Patrick, Merrell L.

    1989-01-01

    Communication requirements of Cholesky factorization of dense and sparse symmetric, positive definite matrices are analyzed. The communication requirement is characterized by the data traffic generated on multiprocessor systems with local and shared memory. Lower bound proofs are given to show that when the load is uniformly distributed the data traffic associated with factoring an n x n dense matrix using n to the alpha power (alpha less than or equal 2) processors is omega(n to the 2 + alpha/2 power). For n x n sparse matrices representing a square root of n x square root of n regular grid graph the data traffic is shown to be omega(n to the 1 + alpha/2 power), alpha less than or equal 1. Partitioning schemes that are variations of block assignment scheme are described and it is shown that the data traffic generated by these schemes are asymptotically optimal. The schemes allow efficient use of up to O(n to the 2nd power) processors in the dense case and up to O(n) processors in the sparse case before the total data traffic reaches the maximum value of O(n to the 3rd power) and O(n to the 3/2 power), respectively. It is shown that the block based partitioning schemes allow a better utilization of the data accessed from shared memory and thus reduce the data traffic than those based on column-wise wrap around assignment schemes.

  20. Scheduling for Locality in Shared-Memory Multiprocessors

    DTIC Science & Technology

    1993-05-01

    Submitted in Partial Fulfillment of the Requirements for the Degree ’)iIC Q(JALfryT INSPECTED 5 DOCTOR OF PHILOSOPHY I Accesion For Supervised by NTIS CRAM... architecture on parallel program performance, explain the implications of this trend on popular parallel programming models, and propose system software to 0...decomoosition and scheduling algorithms. I. SUIUECT TERMS IS. NUMBER OF PAGES shared-memory multiprocessors; architecture trends; loop 110 scheduling

  1. Analysis of a Multiprocessor Guidance Computer. Ph.D. Thesis

    NASA Technical Reports Server (NTRS)

    Maltach, E. G.

    1969-01-01

    The design of the next generation of spaceborne digital computers is described. It analyzes a possible multiprocessor computer configuration. For the analysis, a set of representative space computing tasks was abstracted from the Lunar Module Guidance Computer programs as executed during the lunar landing, from the Apollo program. This computer performs at this time about 24 concurrent functions, with iteration rates from 10 times per second to once every two seconds. These jobs were tabulated in a machine-independent form, and statistics of the overall job set were obtained. It was concluded, based on a comparison of simulation and Markov results, that the Markov process analysis is accurate in predicting overall trends and in configuration comparisons, but does not provide useful detailed information in specific situations. Using both types of analysis, it was determined that the job scheduling function is a critical one for efficiency of the multiprocessor. It is recommended that research into the area of automatic job scheduling be performed.

  2. Parallel block schemes for large scale least squares computations

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

    Golub, G.H.; Plemmons, R.J.; Sameh, A.

    1986-04-01

    Large scale least squares computations arise in a variety of scientific and engineering problems, including geodetic adjustments and surveys, medical image analysis, molecular structures, partial differential equations and substructuring methods in structural engineering. In each of these problems, matrices often arise which possess a block structure which reflects the local connection nature of the underlying physical problem. For example, such super-large nonlinear least squares computations arise in geodesy. Here the coordinates of positions are calculated by iteratively solving overdetermined systems of nonlinear equations by the Gauss-Newton method. The US National Geodetic Survey will complete this year (1986) the readjustment ofmore » the North American Datum, a problem which involves over 540 thousand unknowns and over 6.5 million observations (equations). The observation matrix for these least squares computations has a block angular form with 161 diagnonal blocks, each containing 3 to 4 thousand unknowns. In this paper parallel schemes are suggested for the orthogonal factorization of matrices in block angular form and for the associated backsubstitution phase of the least squares computations. In addition, a parallel scheme for the calculation of certain elements of the covariance matrix for such problems is described. It is shown that these algorithms are ideally suited for multiprocessors with three levels of parallelism such as the Cedar system at the University of Illinois. 20 refs., 7 figs.« less

  3. Preliminary basic performance analysis of the Cedar multiprocessor memory system

    NASA Technical Reports Server (NTRS)

    Gallivan, K.; Jalby, W.; Turner, S.; Veidenbaum, A.; Wijshoff, H.

    1991-01-01

    Some preliminary basic results on the performance of the Cedar multiprocessor memory system are presented. Empirical results are presented and used to calibrate a memory system simulator which is then used to discuss the scalability of the system.

  4. Parallelising a molecular dynamics algorithm on a multi-processor workstation

    NASA Astrophysics Data System (ADS)

    Müller-Plathe, Florian

    1990-12-01

    The Verlet neighbour-list algorithm is parallelised for a multi-processor Hewlett-Packard/Apollo DN10000 workstation. The implementation makes use of memory shared between the processors. It is a genuine master-slave approach by which most of the computational tasks are kept in the master process and the slaves are only called to do part of the nonbonded forces calculation. The implementation features elements of both fine-grain and coarse-grain parallelism. Apart from three calls to library routines, two of which are standard UNIX calls, and two machine-specific language extensions, the whole code is written in standard Fortran 77. Hence, it may be expected that this parallelisation concept can be transfered in parts or as a whole to other multi-processor shared-memory computers. The parallel code is routinely used in production work.

  5. A general model for memory interference in a multiprocessor system with memory hierarchy

    NASA Technical Reports Server (NTRS)

    Taha, Badie A.; Standley, Hilda M.

    1989-01-01

    The problem of memory interference in a multiprocessor system with a hierarchy of shared buses and memories is addressed. The behavior of the processors is represented by a sequence of memory requests with each followed by a determined amount of processing time. A statistical queuing network model for determining the extent of memory interference in multiprocessor systems with clusters of memory hierarchies is presented. The performance of the system is measured by the expected number of busy memory clusters. The results of the analytic model are compared with simulation results, and the correlation between them is found to be very high.

  6. Energy-efficient fault tolerance in multiprocessor real-time systems

    NASA Astrophysics Data System (ADS)

    Guo, Yifeng

    The recent progress in the multiprocessor/multicore systems has important implications for real-time system design and operation. From vehicle navigation to space applications as well as industrial control systems, the trend is to deploy multiple processors in real-time systems: systems with 4 -- 8 processors are common, and it is expected that many-core systems with dozens of processing cores will be available in near future. For such systems, in addition to general temporal requirement common for all real-time systems, two additional operational objectives are seen as critical: energy efficiency and fault tolerance. An intriguing dimension of the problem is that energy efficiency and fault tolerance are typically conflicting objectives, due to the fact that tolerating faults (e.g., permanent/transient) often requires extra resources with high energy consumption potential. In this dissertation, various techniques for energy-efficient fault tolerance in multiprocessor real-time systems have been investigated. First, the Reliability-Aware Power Management (RAPM) framework, which can preserve the system reliability with respect to transient faults when Dynamic Voltage Scaling (DVS) is applied for energy savings, is extended to support parallel real-time applications with precedence constraints. Next, the traditional Standby-Sparing (SS) technique for dual processor systems, which takes both transient and permanent faults into consideration while saving energy, is generalized to support multiprocessor systems with arbitrary number of identical processors. Observing the inefficient usage of slack time in the SS technique, a Preference-Oriented Scheduling Framework is designed to address the problem where tasks are given preferences for being executed as soon as possible (ASAP) or as late as possible (ALAP). A preference-oriented earliest deadline (POED) scheduler is proposed and its application in multiprocessor systems for energy-efficient fault tolerance is

  7. Benchmarking GNU Radio Kernels and Multi-Processor Scheduling

    DTIC Science & Technology

    2013-01-14

    AMD E350 APU , comparable to Atom • ARM Cortex A8 running on a Gumstix Overo on an Ettus USRP E110 The general testing procedure consists of • Build...Intel Atom, and the AMD E350 APU . 3.2 Multi-Processor Scheduling Figure 1: GFLOPs per second through an FFT array on an Intel i7. Example output from

  8. Safe and Efficient Support for Embeded Multi-Processors in ADA

    NASA Astrophysics Data System (ADS)

    Ruiz, Jose F.

    2010-08-01

    New software demands increasing processing power, and multi-processor platforms are spreading as the answer to achieve the required performance. Embedded real-time systems are also subject to this trend, but in the case of real-time mission-critical systems, the properties of reliability, predictability and analyzability are also paramount. The Ada 2005 language defined a subset of its tasking model, the Ravenscar profile, that provides the basis for the implementation of deterministic and time analyzable applications on top of a streamlined run-time system. This Ravenscar tasking profile, originally designed for single processors, has proven remarkably useful for modelling verifiable real-time single-processor systems. This paper proposes a simple extension to the Ravenscar profile to support multi-processor systems using a fully partitioned approach. The implementation of this scheme is simple, and it can be used to develop applications amenable to schedulability analysis.

  9. Scalable Multiprocessor for High-Speed Computing in Space

    NASA Technical Reports Server (NTRS)

    Lux, James; Lang, Minh; Nishimoto, Kouji; Clark, Douglas; Stosic, Dorothy; Bachmann, Alex; Wilkinson, William; Steffke, Richard

    2004-01-01

    A report discusses the continuing development of a scalable multiprocessor computing system for hard real-time applications aboard a spacecraft. "Hard realtime applications" signifies applications, like real-time radar signal processing, in which the data to be processed are generated at "hundreds" of pulses per second, each pulse "requiring" millions of arithmetic operations. In these applications, the digital processors must be tightly integrated with analog instrumentation (e.g., radar equipment), and data input/output must be synchronized with analog instrumentation, controlled to within fractions of a microsecond. The scalable multiprocessor is a cluster of identical commercial-off-the-shelf generic DSP (digital-signal-processing) computers plus generic interface circuits, including analog-to-digital converters, all controlled by software. The processors are computers interconnected by high-speed serial links. Performance can be increased by adding hardware modules and correspondingly modifying the software. Work is distributed among the processors in a parallel or pipeline fashion by means of a flexible master/slave control and timing scheme. Each processor operates under its own local clock; synchronization is achieved by broadcasting master time signals to all the processors, which compute offsets between the master clock and their local clocks.

  10. Development and evaluation of a fault-tolerant multiprocessor (FTMP) computer. Volume 1: FTMP principles of operation

    NASA Technical Reports Server (NTRS)

    Smith, T. B., Jr.; Lala, J. H.

    1983-01-01

    The basic organization of the fault tolerant multiprocessor, (FTMP) is that of a general purpose homogeneous multiprocessor. Three processors operate on a shared system (memory and I/O) bus. Replication and tight synchronization of all elements and hardware voting is employed to detect and correct any single fault. Reconfiguration is then employed to repair a fault. Multiple faults may be tolerated as a sequence of single faults with repair between fault occurrences.

  11. Performances of multiprocessor multidisk architectures for continuous media storage

    NASA Astrophysics Data System (ADS)

    Gennart, Benoit A.; Messerli, Vincent; Hersch, Roger D.

    1996-03-01

    Multimedia interfaces increase the need for large image databases, capable of storing and reading streams of data with strict synchronicity and isochronicity requirements. In order to fulfill these requirements, we consider a parallel image server architecture which relies on arrays of intelligent disk nodes, each disk node being composed of one processor and one or more disks. This contribution analyzes through bottleneck performance evaluation and simulation the behavior of two multi-processor multi-disk architectures: a point-to-point architecture and a shared-bus architecture similar to current multiprocessor workstation architectures. We compare the two architectures on the basis of two multimedia algorithms: the compute-bound frame resizing by resampling and the data-bound disk-to-client stream transfer. The results suggest that the shared bus is a potential bottleneck despite its very high hardware throughput (400Mbytes/s) and that an architecture with addressable local memories located closely to their respective processors could partially remove this bottleneck. The point- to-point architecture is scalable and able to sustain high throughputs for simultaneous compute- bound and data-bound operations.

  12. Design and evaluation of a fault-tolerant multiprocessor using hardware recovery blocks

    NASA Technical Reports Server (NTRS)

    Lee, Y. H.; Shin, K. G.

    1982-01-01

    A fault-tolerant multiprocessor with a rollback recovery mechanism is discussed. The rollback mechanism is based on the hardware recovery block which is a hardware equivalent to the software recovery block. The hardware recovery block is constructed by consecutive state-save operations and several state-save units in every processor and memory module. When a fault is detected, the multiprocessor reconfigures itself to replace the faulty component and then the process originally assigned to the faulty component retreats to one of the previously saved states in order to resume fault-free execution. A mathematical model is proposed to calculate both the coverage of multi-step rollback recovery and the risk of restart. A performance evaluation in terms of task execution time is also presented.

  13. Optical RAM-enabled cache memory and optical routing for chip multiprocessors: technologies and architectures

    NASA Astrophysics Data System (ADS)

    Pleros, Nikos; Maniotis, Pavlos; Alexoudi, Theonitsa; Fitsios, Dimitris; Vagionas, Christos; Papaioannou, Sotiris; Vyrsokinos, K.; Kanellos, George T.

    2014-03-01

    The processor-memory performance gap, commonly referred to as "Memory Wall" problem, owes to the speed mismatch between processor and electronic RAM clock frequencies, forcing current Chip Multiprocessor (CMP) configurations to consume more than 50% of the chip real-estate for caching purposes. In this article, we present our recent work spanning from Si-based integrated optical RAM cell architectures up to complete optical cache memory architectures for Chip Multiprocessor configurations. Moreover, we discuss on e/o router subsystems with up to Tb/s routing capacity for cache interconnection purposes within CMP configurations, currently pursued within the FP7 PhoxTrot project.

  14. Distributed parallel messaging for multiprocessor systems

    DOEpatents

    Chen, Dong; Heidelberger, Philip; Salapura, Valentina; Senger, Robert M; Steinmacher-Burrow, Burhard; Sugawara, Yutaka

    2013-06-04

    A method and apparatus for distributed parallel messaging in a parallel computing system. The apparatus includes, at each node of a multiprocessor network, multiple injection messaging engine units and reception messaging engine units, each implementing a DMA engine and each supporting both multiple packet injection into and multiple reception from a network, in parallel. The reception side of the messaging unit (MU) includes a switch interface enabling writing of data of a packet received from the network to the memory system. The transmission side of the messaging unit, includes switch interface for reading from the memory system when injecting packets into the network.

  15. Instrumentation, performance visualization, and debugging tools for multiprocessors

    NASA Technical Reports Server (NTRS)

    Yan, Jerry C.; Fineman, Charles E.; Hontalas, Philip J.

    1991-01-01

    The need for computing power has forced a migration from serial computation on a single processor to parallel processing on multiprocessor architectures. However, without effective means to monitor (and visualize) program execution, debugging, and tuning parallel programs becomes intractably difficult as program complexity increases with the number of processors. Research on performance evaluation tools for multiprocessors is being carried out at ARC. Besides investigating new techniques for instrumenting, monitoring, and presenting the state of parallel program execution in a coherent and user-friendly manner, prototypes of software tools are being incorporated into the run-time environments of various hardware testbeds to evaluate their impact on user productivity. Our current tool set, the Ames Instrumentation Systems (AIMS), incorporates features from various software systems developed in academia and industry. The execution of FORTRAN programs on the Intel iPSC/860 can be automatically instrumented and monitored. Performance data collected in this manner can be displayed graphically on workstations supporting X-Windows. We have successfully compared various parallel algorithms for computational fluid dynamics (CFD) applications in collaboration with scientists from the Numerical Aerodynamic Simulation Systems Division. By performing these comparisons, we show that performance monitors and debuggers such as AIMS are practical and can illuminate the complex dynamics that occur within parallel programs.

  16. Static Scheduler for Hard Real-Time Tasks on Multiprocessor Systems

    DTIC Science & Technology

    1992-09-01

    Foundation of Computer Science, 1980 . [SIM83] Simons, B., "Multiprocessor Scheduling of Unit-Time Jobs with Arbitrary Release Times and Deadlines", SIAM...Research Office Attn: Dr. David Hislop P. O. Box 12211 Research Triangle Park, NC 27709-2211 31. Persistent Data Systems 75 W. Chapel Ridge Road Attn: Dr

  17. A Multiprocessor SoC Architecture with Efficient Communication Infrastructure and Advanced Compiler Support for Easy Application Development

    NASA Astrophysics Data System (ADS)

    Urfianto, Mohammad Zalfany; Isshiki, Tsuyoshi; Khan, Arif Ullah; Li, Dongju; Kunieda, Hiroaki

    This paper presentss a Multiprocessor System-on-Chips (MPSoC) architecture used as an execution platform for the new C-language based MPSoC design framework we are currently developing. The MPSoC architecture is based on an existing SoC platform with a commercial RISC core acting as the host CPU. We extend the existing SoC with a multiprocessor-array block that is used as the main engine to run parallel applications modeled in our design framework. Utilizing several optimizations provided by our compiler, an efficient inter-communication between processing elements with minimum overhead is implemented. A host-interface is designed to integrate the existing RISC core to the multiprocessor-array. The experimental results show that an efficacious integration is achieved, proving that the designed communication module can be used to efficiently incorporate off-the-shelf processors as a processing element for MPSoC architectures designed using our framework.

  18. Cache as point of coherence in multiprocessor system

    DOEpatents

    Blumrich, Matthias A.; Ceze, Luis H.; Chen, Dong; Gara, Alan; Heidelberger, Phlip; Ohmacht, Martin; Steinmacher-Burow, Burkhard; Zhuang, Xiaotong

    2016-11-29

    In a multiprocessor system, a conflict checking mechanism is implemented in the L2 cache memory. Different versions of speculative writes are maintained in different ways of the cache. A record of speculative writes is maintained in the cache directory. Conflict checking occurs as part of directory lookup. Speculative versions that do not conflict are aggregated into an aggregated version in a different way of the cache. Speculative memory access requests do not go to main memory.

  19. Multiprocessor Real-Time Locking Protocols for Replicated Resources

    DTIC Science & Technology

    2016-07-01

    circular buffer of slots, each representing a discrete segment of time . For example, if the maintenance of a timing wheel occurs af- ter an interrupt ...Experimental Evaluation To evaluate Algs. 2, 3, and 4, we conducted a series of ex- periments in which we measured relevant overheads and blocking times . We...Multiprocessor Real- Time Locking Protocols for Replicated Resources ∗ Catherine E. Jarrett1, Kecheng Yang1, Ming Yang1, Pontus Ekberg2, and James H

  20. Validation of fault-free behavior of a reliable multiprocessor system - FTMP: A case study. [Fault-Tolerant Multi-Processor avionics

    NASA Technical Reports Server (NTRS)

    Clune, E.; Segall, Z.; Siewiorek, D.

    1984-01-01

    A program of experiments has been conducted at NASA-Langley to test the fault-free performance of a Fault-Tolerant Multiprocessor (FTMP) avionics system for next-generation aircraft. Baseline measurements of an operating FTMP system were obtained with respect to the following parameters: instruction execution time, frame size, and the variation of clock ticks. The mechanisms of frame stretching were also investigated. The experimental results are summarized in a table. Areas of interest for future tests are identified, with emphasis given to the implementation of a synthetic workload generation mechanism on FTMP.

  1. Multiprocessor shared-memory information exchange

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

    Santoline, L.L.; Bowers, M.D.; Crew, A.W.

    1989-02-01

    In distributed microprocessor-based instrumentation and control systems, the inter-and intra-subsystem communication requirements ultimately form the basis for the overall system architecture. This paper describes a software protocol which addresses the intra-subsystem communications problem. Specifically the protocol allows for multiple processors to exchange information via a shared-memory interface. The authors primary goal is to provide a reliable means for information to be exchanged between central application processor boards (masters) and dedicated function processor boards (slaves) in a single computer chassis. The resultant Multiprocessor Shared-Memory Information Exchange (MSMIE) protocol, a standard master-slave shared-memory interface suitable for use in nuclear safety systems, ismore » designed to pass unidirectional buffers of information between the processors while providing a minimum, deterministic cycle time for this data exchange.« less

  2. Multiprocessor Neural Network in Healthcare.

    PubMed

    Godó, Zoltán Attila; Kiss, Gábor; Kocsis, Dénes

    2015-01-01

    A possible way of creating a multiprocessor artificial neural network is by the use of microcontrollers. The RISC processors' high performance and the large number of I/O ports mean they are greatly suitable for creating such a system. During our research, we wanted to see if it is possible to efficiently create interaction between the artifical neural network and the natural nervous system. To achieve as much analogy to the living nervous system as possible, we created a frequency-modulated analog connection between the units. Our system is connected to the living nervous system through 128 microelectrodes. Two-way communication is provided through A/D transformation, which is even capable of testing psychopharmacons. The microcontroller-based analog artificial neural network can play a great role in medical singal processing, such as ECG, EEG etc.

  3. On the appropriateness of applying chi-square distribution based confidence intervals to spectral estimates of helicopter flyover data

    NASA Technical Reports Server (NTRS)

    Rutledge, Charles K.

    1988-01-01

    The validity of applying chi-square based confidence intervals to far-field acoustic flyover spectral estimates was investigated. Simulated data, using a Kendall series and experimental acoustic data from the NASA/McDonnell Douglas 500E acoustics test, were analyzed. Statistical significance tests to determine the equality of distributions of the simulated and experimental data relative to theoretical chi-square distributions were performed. Bias and uncertainty errors associated with the spectral estimates were easily identified from the data sets. A model relating the uncertainty and bias errors to the estimates resulted, which aided in determining the appropriateness of the chi-square distribution based confidence intervals. Such confidence intervals were appropriate for nontonally associated frequencies of the experimental data but were inappropriate for tonally associated estimate distributions. The appropriateness at the tonally associated frequencies was indicated by the presence of bias error and noncomformity of the distributions to the theoretical chi-square distribution. A technique for determining appropriate confidence intervals at the tonally associated frequencies was suggested.

  4. Automatic Data Partitioning on Distributed Memory Multiprocessors

    DTIC Science & Technology

    1990-10-01

    DISTRIBUTED MEMORY MULTIPROCESSORS D 1"’ 1 C . Manish Gupta NOV,1 41990.NOV 1 41990m Prithviraj Banerjee D Coordinated Science Laboratory College of...developed on the partitioning of arrays can as well be applied to other programming languages, such as C . 3 The rest of this paper is organized as follows...value 1, as in Fortran. a) N= 4, N 2 = 1: f(i) = J,(j) = 03 b) =Ni 1, N 2 =4: fA(i) =, f() - c ) NI 2, X) 2: f()=[., f2(j) = [L-.j d) N 1 , N 2 =4: fA(i

  5. Experience with a Genetic Algorithm Implemented on a Multiprocessor Computer

    NASA Technical Reports Server (NTRS)

    Plassman, Gerald E.; Sobieszczanski-Sobieski, Jaroslaw

    2000-01-01

    Numerical experiments were conducted to find out the extent to which a Genetic Algorithm (GA) may benefit from a multiprocessor implementation, considering, on one hand, that analyses of individual designs in a population are independent of each other so that they may be executed concurrently on separate processors, and, on the other hand, that there are some operations in a GA that cannot be so distributed. The algorithm experimented with was based on a gaussian distribution rather than bit exchange in the GA reproductive mechanism, and the test case was a hub frame structure of up to 1080 design variables. The experimentation engaging up to 128 processors confirmed expectations of radical elapsed time reductions comparing to a conventional single processor implementation. It also demonstrated that the time spent in the non-distributable parts of the algorithm and the attendant cross-processor communication may have a very detrimental effect on the efficient utilization of the multiprocessor machine and on the number of processors that can be used effectively in a concurrent manner. Three techniques were devised and tested to mitigate that effect, resulting in efficiency increasing to exceed 99 percent.

  6. The MIT Alewife Machine: A Large-Scale Distributed-Memory Multiprocessor

    DTIC Science & Technology

    1991-06-01

    Symposium on Compiler Construction, June 1986. [14] Daniel Gajski , David Kuck, Duncan Lawrie, and Ahmed Saleh. Cedar - A Large Scale Multiprocessor. In...Directory Methods. In Proceedings 17th Annual International Symposium on Computer Architecture, June 1990. [31] G . M. Papadopoulos and D.E. Culler...Monsoon: An Explicit Token-Store Ar- chitecture. In Proceedings 17th Annual International Symposium on Computer Architecture, June 1990. [32] G . F

  7. Multiprocessor system with multiple concurrent modes of execution

    DOEpatents

    Ahn, Daniel; Ceze, Luis H; Chen, Dong; Gara, Alan; Heidelberger, Philip; Ohmacht, Martin

    2013-12-31

    A multiprocessor system supports multiple concurrent modes of speculative execution. Speculation identification numbers (IDs) are allocated to speculative threads from a pool of available numbers. The pool is divided into domains, with each domain being assigned to a mode of speculation. Modes of speculation include TM, TLS, and rollback. Allocation of the IDs is carried out with respect to a central state table and using hardware pointers. The IDs are used for writing different versions of speculative results in different ways of a set in a cache memory.

  8. Multiprocessor system with multiple concurrent modes of execution

    DOEpatents

    Ahn, Daniel; Ceze, Luis H.; Chen, Dong Chen; Gara, Alan; Heidelberger, Philip; Ohmacht, Martin

    2016-11-22

    A multiprocessor system supports multiple concurrent modes of speculative execution. Speculation identification numbers (IDs) are allocated to speculative threads from a pool of available numbers. The pool is divided into domains, with each domain being assigned to a mode of speculation. Modes of speculation include TM, TLS, and rollback. Allocation of the IDs is carried out with respect to a central state table and using hardware pointers. The IDs are used for writing different versions of speculative results in different ways of a set in a cache memory.

  9. Satisfiability Test with Synchronous Simulated Annealing on the Fujitsu AP1000 Massively-Parallel Multiprocessor

    NASA Technical Reports Server (NTRS)

    Sohn, Andrew; Biswas, Rupak

    1996-01-01

    Solving the hard Satisfiability Problem is time consuming even for modest-sized problem instances. Solving the Random L-SAT Problem is especially difficult due to the ratio of clauses to variables. This report presents a parallel synchronous simulated annealing method for solving the Random L-SAT Problem on a large-scale distributed-memory multiprocessor. In particular, we use a parallel synchronous simulated annealing procedure, called Generalized Speculative Computation, which guarantees the same decision sequence as sequential simulated annealing. To demonstrate the performance of the parallel method, we have selected problem instances varying in size from 100-variables/425-clauses to 5000-variables/21,250-clauses. Experimental results on the AP1000 multiprocessor indicate that our approach can satisfy 99.9 percent of the clauses while giving almost a 70-fold speedup on 500 processors.

  10. Efficient partitioning and assignment on programs for multiprocessor execution

    NASA Technical Reports Server (NTRS)

    Standley, Hilda M.

    1993-01-01

    The general problem studied is that of segmenting or partitioning programs for distribution across a multiprocessor system. Efficient partitioning and the assignment of program elements are of great importance since the time consumed in this overhead activity may easily dominate the computation, effectively eliminating any gains made by the use of the parallelism. In this study, the partitioning of sequentially structured programs (written in FORTRAN) is evaluated. Heuristics, developed for similar applications are examined. Finally, a model for queueing networks with finite queues is developed which may be used to analyze multiprocessor system architectures with a shared memory approach to the problem of partitioning. The properties of sequentially written programs form obstacles to large scale (at the procedure or subroutine level) parallelization. Data dependencies of even the minutest nature, reflecting the sequential development of the program, severely limit parallelism. The design of heuristic algorithms is tied to the experience gained in the parallel splitting. Parallelism obtained through the physical separation of data has seen some success, especially at the data element level. Data parallelism on a grander scale requires models that accurately reflect the effects of blocking caused by finite queues. A model for the approximation of the performance of finite queueing networks is developed. This model makes use of the decomposition approach combined with the efficiency of product form solutions.

  11. Content, Structure, and Sequence of the Detailing Discipline at Kendall College of Art and Design.

    ERIC Educational Resources Information Center

    Mulder, Bruce E.

    A study identified the appropriate general content, structure, and sequence for a detailing discipline that promoted student achievement to professional levels. Its focus was the detailing discipline, a sequence of studio courses within the furniture design program at Kendall College of Art and Design, Grand Rapids, Michigan. (Detailing, an…

  12. Analysis of Photonic Networks for a Chip Multiprocessor Using Scientific Applications

    DTIC Science & Technology

    2009-05-01

    Analysis of Photonic Networks for a Chip Multiprocessor Using Scientific Applications Gilbert Hendry†, Shoaib Kamil‡?, Aleksandr Biberman†, Johnnie...electronic networks -on-chip warrants investigating real application traces on functionally compa- rable photonic and electronic network designs. We... network can achieve 75× improvement in energy ef- ficiency for synthetic benchmarks and up to 37× improve- ment for real scientific applications

  13. Method for wiring allocation and switch configuration in a multiprocessor environment

    DOEpatents

    Aridor, Yariv [Zichron Ya'akov, IL; Domany, Tamar [Kiryat Tivon, IL; Frachtenberg, Eitan [Jerusalem, IL; Gal, Yoav [Haifa, IL; Shmueli, Edi [Haifa, IL; Stockmeyer, legal representative, Robert E.; Stockmeyer, Larry Joseph [San Jose, CA

    2008-07-15

    A method for wiring allocation and switch configuration in a multiprocessor computer, the method including employing depth-first tree traversal to determine a plurality of paths among a plurality of processing elements allocated to a job along a plurality of switches and wires in a plurality of D-lines, and selecting one of the paths in accordance with at least one selection criterion.

  14. 77 FR 76065 - Endangered and Threatened Wildlife and Plants; Draft Revised Recovery Plan for Kendall Warm...

    Federal Register 2010, 2011, 2012, 2013, 2014

    2012-12-26

    ..., exotic species, grazing, hydrologic changes, invasive plants, pollution, and energy resource exploration... revised recovery plan for the Kendall Warm Springs dace (Rhinichthys osculus thermalis). This species is federally listed as endangered under the Endangered Species Act of 1973, as amended (ESA). The Service...

  15. MPI implementation of PHOENICS: A general purpose computational fluid dynamics code

    NASA Astrophysics Data System (ADS)

    Simunovic, S.; Zacharia, T.; Baltas, N.; Spalding, D. B.

    1995-03-01

    PHOENICS is a suite of computational analysis programs that are used for simulation of fluid flow, heat transfer, and dynamical reaction processes. The parallel version of the solver EARTH for the Computational Fluid Dynamics (CFD) program PHOENICS has been implemented using Message Passing Interface (MPI) standard. Implementation of MPI version of PHOENICS makes this computational tool portable to a wide range of parallel machines and enables the use of high performance computing for large scale computational simulations. MPI libraries are available on several parallel architectures making the program usable across different architectures as well as on heterogeneous computer networks. The Intel Paragon NX and MPI versions of the program have been developed and tested on massively parallel supercomputers Intel Paragon XP/S 5, XP/S 35, and Kendall Square Research, and on the multiprocessor SGI Onyx computer at Oak Ridge National Laboratory. The preliminary testing results of the developed program have shown scalable performance for reasonably sized computational domains.

  16. MPI implementation of PHOENICS: A general purpose computational fluid dynamics code

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

    Simunovic, S.; Zacharia, T.; Baltas, N.

    1995-04-01

    PHOENICS is a suite of computational analysis programs that are used for simulation of fluid flow, heat transfer, and dynamical reaction processes. The parallel version of the solver EARTH for the Computational Fluid Dynamics (CFD) program PHOENICS has been implemented using Message Passing Interface (MPI) standard. Implementation of MPI version of PHOENICS makes this computational tool portable to a wide range of parallel machines and enables the use of high performance computing for large scale computational simulations. MPI libraries are available on several parallel architectures making the program usable across different architectures as well as on heterogeneous computer networks. Themore » Intel Paragon NX and MPI versions of the program have been developed and tested on massively parallel supercomputers Intel Paragon XP/S 5, XP/S 35, and Kendall Square Research, and on the multiprocessor SGI Onyx computer at Oak Ridge National Laboratory. The preliminary testing results of the developed program have shown scalable performance for reasonably sized computational domains.« less

  17. Analysis and prediction of rainfall trends over Bangladesh using Mann-Kendall, Spearman's rho tests and ARIMA model

    NASA Astrophysics Data System (ADS)

    Rahman, Mohammad Atiqur; Yunsheng, Lou; Sultana, Nahid

    2017-08-01

    In this study, 60-year monthly rainfall data of Bangladesh were analysed to detect trends. Modified Mann-Kendall, Spearman's rho tests and Sen's slope estimators were applied to find the long-term annual, dry season and monthly trends. Sequential Mann-Kendall analysis was applied to detect the potential trend turning points. Spatial variations of the trends were examined using inverse distance weighting (IDW) interpolation. AutoRegressive integrated moving average (ARIMA) model was used for the country mean rainfall and for other two stations data which depicted the highest and the lowest trend in the Mann-Kendall and Spearman's rho tests. Results showed that there is no significant trend in annual rainfall pattern except increasing trends for Cox's Bazar, Khulna, Satkhira and decreasing trend for Srimagal areas. For the dry season, only Bogra area represented significant decreasing trend. Long-term monthly trends demonstrated a mixed pattern; both negative and positive changes were found from February to September. Comilla area showed a significant decreasing trend for consecutive 3 months while Rangpur and Khulna stations confirmed the significant rising trends for three different months in month-wise trends analysis. Rangpur station data gave a maximum increasing trend in April whereas a maximum decreasing trend was found in August for Comilla station. ARIMA models predict +3.26, +8.6 and -2.30 mm rainfall per year for the country, Cox's Bazar and Srimangal areas, respectively. However, all the test results and predictions revealed a good agreement among them in the study.

  18. Study of Thread Level Parallelism in a Video Encoding Application for Chip Multiprocessor Design

    NASA Astrophysics Data System (ADS)

    Debes, Eric; Kaine, Greg

    2002-11-01

    In media applications there is a high level of available thread level parallelism (TLP). In this paper we study the intra TLP in a video encoder. We show that a well-distributed highly optimized encoder running on a symmetric multiprocessor (SMP) system can run 3.2 faster on a 4-way SMP machine than on a single processor. The multithreaded encoder running on an SMP system is then used to understand the requirements of a chip multiprocessor (CMP) architecture, which is one possible architectural direction to better exploit TLP. In the framework of this study, we use a software approach to evaluate the dataflow between processors for the video encoder running on an SMP system. An estimation of the dataflow is done with L2 cache miss event counters using Intel® VTuneTM performance analyzer. The experimental measurements are compared to theoretical results.

  19. Dynamic programming on a shared-memory multiprocessor

    NASA Technical Reports Server (NTRS)

    Edmonds, Phil; Chu, Eleanor; George, Alan

    1993-01-01

    Three new algorithms for solving dynamic programming problems on a shared-memory parallel computer are described. All three algorithms attempt to balance work load, while keeping synchronization cost low. In particular, for a multiprocessor having p processors, an analysis of the best algorithm shows that the arithmetic cost is O(n-cubed/6p) and that the synchronization cost is O(absolute value of log sub C n) if p much less than n, where C = (2p-1)/(2p + 1) and n is the size of the problem. The low synchronization cost is important for machines where synchronization is expensive. Analysis and experiments show that the best algorithm is effective in balancing the work load and producing high efficiency.

  20. A Low-Cost and Energy-Efficient Multiprocessor System-on-Chip for UWB MAC Layer

    NASA Astrophysics Data System (ADS)

    Xiao, Hao; Isshiki, Tsuyoshi; Khan, Arif Ullah; Li, Dongju; Kunieda, Hiroaki; Nakase, Yuko; Kimura, Sadahiro

    Ultra-wideband (UWB) technology has attracted much attention recently due to its high data rate and low emission power. Its media access control (MAC) protocol, WiMedia MAC, promises a lot of facilities for high-speed and high-quality wireless communication. However, these benefits in turn involve a large amount of computational load, which challenges the traditional uniprocessor architecture based implementation method to provide the required performance. However, the constrained cost and power budget, on the other hand, makes using commercial multiprocessor solutions unrealistic. In this paper, a low-cost and energy-efficient multiprocessor system-on-chip (MPSoC), which tackles at once the aspects of system design, software migration and hardware architecture, is presented for the implementation of UWB MAC layer. Experimental results show that the proposed MPSoC, based on four simple RISC processors and shared-memory infrastructure, achieves up to 45% performance improvement and 65% power saving, but takes 15% less area than the uniprocessor implementation.

  1. Solution of large nonlinear quasistatic structural mechanics problems on distributed-memory multiprocessor computers

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

    Blanford, M.

    1997-12-31

    Most commercially-available quasistatic finite element programs assemble element stiffnesses into a global stiffness matrix, then use a direct linear equation solver to obtain nodal displacements. However, for large problems (greater than a few hundred thousand degrees of freedom), the memory size and computation time required for this approach becomes prohibitive. Moreover, direct solution does not lend itself to the parallel processing needed for today`s multiprocessor systems. This talk gives an overview of the iterative solution strategy of JAS3D, the nonlinear large-deformation quasistatic finite element program. Because its architecture is derived from an explicit transient-dynamics code, it does not ever assemblemore » a global stiffness matrix. The author describes the approach he used to implement the solver on multiprocessor computers, and shows examples of problems run on hundreds of processors and more than a million degrees of freedom. Finally, he describes some of the work he is presently doing to address the challenges of iterative convergence for ill-conditioned problems.« less

  2. Backend Control Processor for a Multi-Processor Relational Database Computer System.

    DTIC Science & Technology

    1984-12-01

    SCHOOL OF ENGI. UNCRSIFID MPONTIFF DEC 84 AFXT/GCS/ENG/84D-22 F/O 9/2 L ommhhhhmhhml mhhhommhhhhhm i-2 8 -- U0. 11111= Q. 2 111.8IIII- 1111111..6...THESIS Presented to the Faculty of the School of Engineering of the Air Force Institute of Technology Air University In Partial Fulfillment of the...development of a Backend Multi-Processor Relational Database Computer System. This thesis addresses a single component of this system, the Backend Control

  3. Performance Evaluation of Parallel Algorithms and Architectures in Concurrent Multiprocessor Systems

    DTIC Science & Technology

    1988-09-01

    HEP and Other Parallel processors, Report no. ANL-83-97, Argonne National Laboratory, Argonne, Ill. 1983. [19] Davidson, G . S. A Practical Paradigm for...IEEE Comp. Soc., 1986. [241 Peir, Jih-kwon, and D. Gajski , "CAMP: A Programming Aide For Multiprocessors," Proc. 1986 ICPP, IEEE Comp. Soc., pp475...482. [251 Pfister, G . F., and V. A. Norton, "Hot Spot Contention and Combining in Multistage Interconnection Networks,"IEEE Trans. Comp., C-34, Oct

  4. Relative abundance and lengths of Kendall Warm Springs dace captured from different habitats in a specially designed trap

    USGS Publications Warehouse

    Gryska, A.D.; Hubert, W.A.; Gerow, K.G.

    1998-01-01

    A trap was designed to capture endangered Kendall Warm Springs dace Rhinichthys osculus thermalis (a subspecies of speckled dace Rhinichthys osculus) without being destructive to the habitat of the fish in Kendall Warm Springs Creek, Wyoming. Four experiments were conducted to determine differences in catch per unit effort (CPUE) and length frequencies of fish among differing habitat types. The CPUE was highest in channel habitats with current, and one experiment indicated that it was particularly high at vertical interfaces with vegetation. Longer fish were captured in channel habitats away from vegetation than in vegetated areas. The CPUE was significantly greater during the day than at night during one experiment, but no significant differences were observed among the other three experiments. The traps were easy and inexpensive to construct, could be used in a variety of stream habitats, and may have applications in other small streams for sampling small, benthic fishes.

  5. The existence of High Conservation Value Forest (HCVF) in Perum Perhutani KPH Kendal to support Implementation of FSC Certification

    NASA Astrophysics Data System (ADS)

    Sulistyowati, Sri; Hadi, Sudharto P.

    2018-02-01

    High Conservation Value Forest (HCVF) is the identification of High Conservation Values that are important and need to be protected. Under FSC certification mechanism, HCVF becomes one of Principles and Criteria to attain certification. In this study, we identify the existence of HCVF in Perum Perhutani KPH Kendal to support implementation process of FSC certification. Qualitative method was conducted through observation and secondary data from Perum Perhutani KPH Kendal. Data analysis showed through ecolabel certification, Perum Perhutani KPH Kendal has been identified HCVF area covering 2,715.5 hectares consists of HCV 1 until 6. Secondary Natural Forest (HAS) Subah and Kaliwungu for Ulolanang and Pagerwunung Nature Reserve buffer zone include as HCV 1.1, conservation area of leopard (Panthera pardus melas) and Pangolin (Manis javanica).for HCV 1.2, conservation area of lutung (Trachypiyhecus auratus) as endemic species for CITES App I and Critically Endangered species include as HCV 1.3, Goa kiskendo for bats species habitat include as HCV 1.4, regions of interest species for Deer (Cervus timorensis) and Kepodang (Oriolus chinensis) as HCV 2.3, Germplasm Protection Region/ KPPN area with high biodiversity include as HCV 3, river border area and water springs for HCV 4. While, utilization of firewood, grass for cattle fodder include as HCV 5 and 14 cultural sites include as HCV 6. From monitoring and evaluation of HCVF data, showed that in 2011-2015 the level of diversity for flora and fauna were increased.

  6. Multiprocessor and memory architecture of the neurocomputer SYNAPSE-1.

    PubMed

    Ramacher, U; Raab, W; Anlauf, J; Hachmann, U; Beichter, J; Brüls, N; Wesseling, M; Sicheneder, E; Männer, R; Glass, J

    1993-12-01

    A general purpose neurocomputer, SYNAPSE-1, which exhibits a multiprocessor and memory architecture is presented. It offers wide flexibility with respect to neural algorithms and a speed-up factor of several orders of magnitude--including learning. The computational power is provided by a 2-dimensional systolic array of neural signal processors. Since the weights are stored outside these NSPs, memory size and processing power can be adapted individually to the application needs. A neural algorithms programming language, embedded in C(+2) has been defined for the user to cope with the neurocomputer. In a benchmark test, the prototype of SYNAPSE-1 was 8000 times as fast as a standard workstation.

  7. A measurement-based performability model for a multiprocessor system

    NASA Technical Reports Server (NTRS)

    Ilsueh, M. C.; Iyer, Ravi K.; Trivedi, K. S.

    1987-01-01

    A measurement-based performability model based on real error-data collected on a multiprocessor system is described. Model development from the raw errror-data to the estimation of cumulative reward is described. Both normal and failure behavior of the system are characterized. The measured data show that the holding times in key operational and failure states are not simple exponential and that semi-Markov process is necessary to model the system behavior. A reward function, based on the service rate and the error rate in each state, is then defined in order to estimate the performability of the system and to depict the cost of different failure types and recovery procedures.

  8. Kendall-Theil Robust Line (KTRLine--version 1.0)-A Visual Basic Program for Calculating and Graphing Robust Nonparametric Estimates of Linear-Regression Coefficients Between Two Continuous Variables

    USGS Publications Warehouse

    Granato, Gregory E.

    2006-01-01

    The Kendall-Theil Robust Line software (KTRLine-version 1.0) is a Visual Basic program that may be used with the Microsoft Windows operating system to calculate parameters for robust, nonparametric estimates of linear-regression coefficients between two continuous variables. The KTRLine software was developed by the U.S. Geological Survey, in cooperation with the Federal Highway Administration, for use in stochastic data modeling with local, regional, and national hydrologic data sets to develop planning-level estimates of potential effects of highway runoff on the quality of receiving waters. The Kendall-Theil robust line was selected because this robust nonparametric method is resistant to the effects of outliers and nonnormality in residuals that commonly characterize hydrologic data sets. The slope of the line is calculated as the median of all possible pairwise slopes between points. The intercept is calculated so that the line will run through the median of input data. A single-line model or a multisegment model may be specified. The program was developed to provide regression equations with an error component for stochastic data generation because nonparametric multisegment regression tools are not available with the software that is commonly used to develop regression models. The Kendall-Theil robust line is a median line and, therefore, may underestimate total mass, volume, or loads unless the error component or a bias correction factor is incorporated into the estimate. Regression statistics such as the median error, the median absolute deviation, the prediction error sum of squares, the root mean square error, the confidence interval for the slope, and the bias correction factor for median estimates are calculated by use of nonparametric methods. These statistics, however, may be used to formulate estimates of mass, volume, or total loads. The program is used to read a two- or three-column tab-delimited input file with variable names in the first row and

  9. Characterizing parallel file-access patterns on a large-scale multiprocessor

    NASA Technical Reports Server (NTRS)

    Purakayastha, Apratim; Ellis, Carla Schlatter; Kotz, David; Nieuwejaar, Nils; Best, Michael

    1994-01-01

    Rapid increases in the computational speeds of multiprocessors have not been matched by corresponding performance enhancements in the I/O subsystem. To satisfy the large and growing I/O requirements of some parallel scientific applications, we need parallel file systems that can provide high-bandwidth and high-volume data transfer between the I/O subsystem and thousands of processors. Design of such high-performance parallel file systems depends on a thorough grasp of the expected workload. So far there have been no comprehensive usage studies of multiprocessor file systems. Our CHARISMA project intends to fill this void. The first results from our study involve an iPSC/860 at NASA Ames. This paper presents results from a different platform, the CM-5 at the National Center for Supercomputing Applications. The CHARISMA studies are unique because we collect information about every individual read and write request and about the entire mix of applications running on the machines. The results of our trace analysis lead to recommendations for parallel file system design. First the file system should support efficient concurrent access to many files, and I/O requests from many jobs under varying load conditions. Second, it must efficiently manage large files kept open for long periods. Third, it should expect to see small requests predominantly sequential access patterns, application-wide synchronous access, no concurrent file-sharing between jobs appreciable byte and block sharing between processes within jobs, and strong interprocess locality. Finally, the trace data suggest that node-level write caches and collective I/O request interfaces may be useful in certain environments.

  10. Abnormal fault-recovery characteristics of the fault-tolerant multiprocessor uncovered using a new fault-injection methodology

    NASA Technical Reports Server (NTRS)

    Padilla, Peter A.

    1991-01-01

    An investigation was made in AIRLAB of the fault handling performance of the Fault Tolerant MultiProcessor (FTMP). Fault handling errors detected during fault injection experiments were characterized. In these fault injection experiments, the FTMP disabled a working unit instead of the faulted unit once in every 500 faults, on the average. System design weaknesses allow active faults to exercise a part of the fault management software that handles Byzantine or lying faults. Byzantine faults behave such that the faulted unit points to a working unit as the source of errors. The design's problems involve: (1) the design and interface between the simplex error detection hardware and the error processing software, (2) the functional capabilities of the FTMP system bus, and (3) the communication requirements of a multiprocessor architecture. These weak areas in the FTMP's design increase the probability that, for any hardware fault, a good line replacement unit (LRU) is mistakenly disabled by the fault management software.

  11. A multiprocessor computer simulation model employing a feedback scheduler/allocator for memory space and bandwidth matching and TMR processing

    NASA Technical Reports Server (NTRS)

    Bradley, D. B.; Irwin, J. D.

    1974-01-01

    A computer simulation model for a multiprocessor computer is developed that is useful for studying the problem of matching multiprocessor's memory space, memory bandwidth and numbers and speeds of processors with aggregate job set characteristics. The model assumes an input work load of a set of recurrent jobs. The model includes a feedback scheduler/allocator which attempts to improve system performance through higher memory bandwidth utilization by matching individual job requirements for space and bandwidth with space availability and estimates of bandwidth availability at the times of memory allocation. The simulation model includes provisions for specifying precedence relations among the jobs in a job set, and provisions for specifying precedence execution of TMR (Triple Modular Redundant and SIMPLEX (non redundant) jobs.

  12. Pearson's chi-square test and rank correlation inferences for clustered data.

    PubMed

    Shih, Joanna H; Fay, Michael P

    2017-09-01

    Pearson's chi-square test has been widely used in testing for association between two categorical responses. Spearman rank correlation and Kendall's tau are often used for measuring and testing association between two continuous or ordered categorical responses. However, the established statistical properties of these tests are only valid when each pair of responses are independent, where each sampling unit has only one pair of responses. When each sampling unit consists of a cluster of paired responses, the assumption of independent pairs is violated. In this article, we apply the within-cluster resampling technique to U-statistics to form new tests and rank-based correlation estimators for possibly tied clustered data. We develop large sample properties of the new proposed tests and estimators and evaluate their performance by simulations. The proposed methods are applied to a data set collected from a PET/CT imaging study for illustration. Published 2017. This article is a U.S. Government work and is in the public domain in the USA.

  13. Development and evaluation of a Fault-Tolerant Multiprocessor (FTMP) computer. Volume 3: FTMP test and evaluation

    NASA Technical Reports Server (NTRS)

    Lala, J. H.; Smith, T. B., III

    1983-01-01

    The experimental test and evaluation of the Fault-Tolerant Multiprocessor (FTMP) is described. Major objectives of this exercise include expanding validation envelope, building confidence in the system, revealing any weaknesses in the architectural concepts and in their execution in hardware and software, and in general, stressing the hardware and software. To this end, pin-level faults were injected into one LRU of the FTMP and the FTMP response was measured in terms of fault detection, isolation, and recovery times. A total of 21,055 stuck-at-0, stuck-at-1 and invert-signal faults were injected in the CPU, memory, bus interface circuits, Bus Guardian Units, and voters and error latches. Of these, 17,418 were detected. At least 80 percent of undetected faults are estimated to be on unused pins. The multiprocessor identified all detected faults correctly and recovered successfully in each case. Total recovery time for all faults averaged a little over one second. This can be reduced to half a second by including appropriate self-tests.

  14. Parallel processing of real-time dynamic systems simulation on OSCAR (Optimally SCheduled Advanced multiprocessoR)

    NASA Technical Reports Server (NTRS)

    Kasahara, Hironori; Honda, Hiroki; Narita, Seinosuke

    1989-01-01

    Parallel processing of real-time dynamic systems simulation on a multiprocessor system named OSCAR is presented. In the simulation of dynamic systems, generally, the same calculation are repeated every time step. However, we cannot apply to Do-all or the Do-across techniques for parallel processing of the simulation since there exist data dependencies from the end of an iteration to the beginning of the next iteration and furthermore data-input and data-output are required every sampling time period. Therefore, parallelism inside the calculation required for a single time step, or a large basic block which consists of arithmetic assignment statements, must be used. In the proposed method, near fine grain tasks, each of which consists of one or more floating point operations, are generated to extract the parallelism from the calculation and assigned to processors by using optimal static scheduling at compile time in order to reduce large run time overhead caused by the use of near fine grain tasks. The practicality of the scheme is demonstrated on OSCAR (Optimally SCheduled Advanced multiprocessoR) which has been developed to extract advantageous features of static scheduling algorithms to the maximum extent.

  15. MPF: A portable message passing facility for shared memory multiprocessors

    NASA Technical Reports Server (NTRS)

    Malony, Allen D.; Reed, Daniel A.; Mcguire, Patrick J.

    1987-01-01

    The design, implementation, and performance evaluation of a message passing facility (MPF) for shared memory multiprocessors are presented. The MPF is based on a message passing model conceptually similar to conversations. Participants (parallel processors) can enter or leave a conversation at any time. The message passing primitives for this model are implemented as a portable library of C function calls. The MPF is currently operational on a Sequent Balance 21000, and several parallel applications were developed and tested. Several simple benchmark programs are presented to establish interprocess communication performance for common patterns of interprocess communication. Finally, performance figures are presented for two parallel applications, linear systems solution, and iterative solution of partial differential equations.

  16. Multitasking runtime systems for the Cedar Multiprocessor

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

    Guzzi, M.D.

    1986-07-01

    The programming of a MIMD machine is more complex than for SISD and SIMD machines. The multiple computational resources of the machine must be made available to the programming language compiler and to the programmer so that multitasking programs may be written. This thesis will explore the additional complexity of programming a MIMD machine, the Cedar Multiprocessor specifically, and the multitasking runtime system necessary to provide multitasking resources to the user. First, the problem will be well defined: the Cedar machine, its operating system, the programming language, and multitasking concepts will be described. Second, a solution to the problem, calledmore » macrotasking, will be proposed. This solution provides multitasking facilities to the programmer at a very coarse level with many visible machine dependencies. Third, an alternate solution, called microtasking, will be proposed. This solution provides multitasking facilities of a much finer grain. This solution does not depend so rigidly on the specific architecture of the machine. Finally, the two solutions will be compared for effectiveness. 12 refs., 16 figs.« less

  17. Prefetching in file systems for MIMD multiprocessors

    NASA Technical Reports Server (NTRS)

    Kotz, David F.; Ellis, Carla Schlatter

    1990-01-01

    The question of whether prefetching blocks on the file into the block cache can effectively reduce overall execution time of a parallel computation, even under favorable assumptions, is considered. Experiments have been conducted with an interleaved file system testbed on the Butterfly Plus multiprocessor. Results of these experiments suggest that (1) the hit ratio, the accepted measure in traditional caching studies, may not be an adequate measure of performance when the workload consists of parallel computations and parallel file access patterns, (2) caching with prefetching can significantly improve the hit ratio and the average time to perform an I/O (input/output) operation, and (3) an improvement in overall execution time has been observed in most cases. In spite of these gains, prefetching sometimes results in increased execution times (a negative result, given the optimistic nature of the study). The authors explore why it is not trivial to translate savings on individual I/O requests into consistently better overall performance and identify the key problems that need to be addressed in order to improve the potential of prefetching techniques in the environment.

  18. Generation-based memory synchronization in a multiprocessor system with weakly consistent memory accesses

    DOEpatents

    Ohmacht, Martin

    2017-08-15

    In a multiprocessor system, a central memory synchronization module coordinates memory synchronization requests responsive to memory access requests in flight, a generation counter, and a reclaim pointer. The central module communicates via point-to-point communication. The module includes a global OR reduce tree for each memory access requesting device, for detecting memory access requests in flight. An interface unit is implemented associated with each processor requesting synchronization. The interface unit includes multiple generation completion detectors. The generation count and reclaim pointer do not pass one another.

  19. Generation-based memory synchronization in a multiprocessor system with weakly consistent memory accesses

    DOEpatents

    Ohmacht, Martin

    2014-09-09

    In a multiprocessor system, a central memory synchronization module coordinates memory synchronization requests responsive to memory access requests in flight, a generation counter, and a reclaim pointer. The central module communicates via point-to-point communication. The module includes a global OR reduce tree for each memory access requesting device, for detecting memory access requests in flight. An interface unit is implemented associated with each processor requesting synchronization. The interface unit includes multiple generation completion detectors. The generation count and reclaim pointer do not pass one another.

  20. Process Management and Exception Handling in Multiprocessor Operating Systems Using Object-Oriented Design Techniques. Revised Sep. 1988

    NASA Technical Reports Server (NTRS)

    Russo, Vincent; Johnston, Gary; Campbell, Roy

    1988-01-01

    The programming of the interrupt handling mechanisms, process switching primitives, scheduling mechanism, and synchronization primitives of an operating system for a multiprocessor require both efficient code in order to support the needs of high- performance or real-time applications and careful organization to facilitate maintenance. Although many advantages have been claimed for object-oriented class hierarchical languages and their corresponding design methodologies, the application of these techniques to the design of the primitives within an operating system has not been widely demonstrated. To investigate the role of class hierarchical design in systems programming, the authors have constructed the Choices multiprocessor operating system architecture the C++ programming language. During the implementation, it was found that many operating system design concerns can be represented advantageously using a class hierarchical approach, including: the separation of mechanism and policy; the organization of an operating system into layers, each of which represents an abstract machine; and the notions of process and exception management. In this paper, we discuss an implementation of the low-level primitives of this system and outline the strategy by which we developed our solution.

  1. Characterizing parallel file-access patterns on a large-scale multiprocessor

    NASA Technical Reports Server (NTRS)

    Purakayastha, A.; Ellis, Carla; Kotz, David; Nieuwejaar, Nils; Best, Michael L.

    1995-01-01

    High-performance parallel file systems are needed to satisfy tremendous I/O requirements of parallel scientific applications. The design of such high-performance parallel file systems depends on a comprehensive understanding of the expected workload, but so far there have been very few usage studies of multiprocessor file systems. This paper is part of the CHARISMA project, which intends to fill this void by measuring real file-system workloads on various production parallel machines. In particular, we present results from the CM-5 at the National Center for Supercomputing Applications. Our results are unique because we collect information about nearly every individual I/O request from the mix of jobs running on the machine. Analysis of the traces leads to various recommendations for parallel file-system design.

  2. Parallel algorithm of VLBI software correlator under multiprocessor environment

    NASA Astrophysics Data System (ADS)

    Zheng, Weimin; Zhang, Dong

    2007-11-01

    The correlator is the key signal processing equipment of a Very Lone Baseline Interferometry (VLBI) synthetic aperture telescope. It receives the mass data collected by the VLBI observatories and produces the visibility function of the target, which can be used to spacecraft position, baseline length measurement, synthesis imaging, and other scientific applications. VLBI data correlation is a task of data intensive and computation intensive. This paper presents the algorithms of two parallel software correlators under multiprocessor environments. A near real-time correlator for spacecraft tracking adopts the pipelining and thread-parallel technology, and runs on the SMP (Symmetric Multiple Processor) servers. Another high speed prototype correlator using the mixed Pthreads and MPI (Massage Passing Interface) parallel algorithm is realized on a small Beowulf cluster platform. Both correlators have the characteristic of flexible structure, scalability, and with 10-station data correlating abilities.

  3. FTMP (Fault Tolerant Multiprocessor) programmer's manual

    NASA Technical Reports Server (NTRS)

    Feather, F. E.; Liceaga, C. A.; Padilla, P. A.

    1986-01-01

    The Fault Tolerant Multiprocessor (FTMP) computer system was constructed using the Rockwell/Collins CAPS-6 processor. It is installed in the Avionics Integration Research Laboratory (AIRLAB) of NASA Langley Research Center. It is hosted by AIRLAB's System 10, a VAX 11/750, for the loading of programs and experimentation. The FTMP support software includes a cross compiler for a high level language called Automated Engineering Design (AED) System, an assembler for the CAPS-6 processor assembly language, and a linker. Access to this support software is through an automated remote access facility on the VAX which relieves the user of the burden of learning how to use the IBM 4381. This manual is a compilation of information about the FTMP support environment. It explains the FTMP software and support environment along many of the finer points of running programs on FTMP. This will be helpful to the researcher trying to run an experiment on FTMP and even to the person probing FTMP with fault injections. Much of the information in this manual can be found in other sources; we are only attempting to bring together the basic points in a single source. If the reader should need points clarified, there is a list of support documentation in the back of this manual.

  4. Multiprocessor architecture: Synthesis and evaluation

    NASA Technical Reports Server (NTRS)

    Standley, Hilda M.

    1990-01-01

    Multiprocessor computed architecture evaluation for structural computations is the focus of the research effort described. Results obtained are expected to lead to more efficient use of existing architectures and to suggest designs for new, application specific, architectures. The brief descriptions given outline a number of related efforts directed toward this purpose. The difficulty is analyzing an existing architecture or in designing a new computer architecture lies in the fact that the performance of a particular architecture, within the context of a given application, is determined by a number of factors. These include, but are not limited to, the efficiency of the computation algorithm, the programming language and support environment, the quality of the program written in the programming language, the multiplicity of the processing elements, the characteristics of the individual processing elements, the interconnection network connecting processors and non-local memories, and the shared memory organization covering the spectrum from no shared memory (all local memory) to one global access memory. These performance determiners may be loosely classified as being software or hardware related. This distinction is not clear or even appropriate in many cases. The effect of the choice of algorithm is ignored by assuming that the algorithm is specified as given. Effort directed toward the removal of the effect of the programming language and program resulted in the design of a high-level parallel programming language. Two characteristics of the fundamental structure of the architecture (memory organization and interconnection network) are examined.

  5. Fault recovery characteristics of the fault tolerant multi-processor

    NASA Technical Reports Server (NTRS)

    Padilla, Peter A.

    1990-01-01

    The fault handling performance of the fault tolerant multiprocessor (FTMP) was investigated. Fault handling errors detected during fault injection experiments were characterized. In these fault injection experiments, the FTMP disabled a working unit instead of the faulted unit once every 500 faults, on the average. System design weaknesses allow active faults to exercise a part of the fault management software that handles byzantine or lying faults. It is pointed out that these weak areas in the FTMP's design increase the probability that, for any hardware fault, a good LRU (line replaceable unit) is mistakenly disabled by the fault management software. It is concluded that fault injection can help detect and analyze the behavior of a system in the ultra-reliable regime. Although fault injection testing cannot be exhaustive, it has been demonstrated that it provides a unique capability to unmask problems and to characterize the behavior of a fault-tolerant system.

  6. Testing and operating a multiprocessor chip with processor redundancy

    DOEpatents

    Bellofatto, Ralph E; Douskey, Steven M; Haring, Rudolf A; McManus, Moyra K; Ohmacht, Martin; Schmunkamp, Dietmar; Sugavanam, Krishnan; Weatherford, Bryan J

    2014-10-21

    A system and method for improving the yield rate of a multiprocessor semiconductor chip that includes primary processor cores and one or more redundant processor cores. A first tester conducts a first test on one or more processor cores, and encodes results of the first test in an on-chip non-volatile memory. A second tester conducts a second test on the processor cores, and encodes results of the second test in an external non-volatile storage device. An override bit of a multiplexer is set if a processor core fails the second test. In response to the override bit, the multiplexer selects a physical-to-logical mapping of processor IDs according to one of: the encoded results in the memory device or the encoded results in the external storage device. On-chip logic configures the processor cores according to the selected physical-to-logical mapping.

  7. System architecture for asynchronous multi-processor robotic control system

    NASA Technical Reports Server (NTRS)

    Steele, Robert D.; Long, Mark; Backes, Paul

    1993-01-01

    The architecture for the Modular Telerobot Task Execution System (MOTES) as implemented in the Supervisory Telerobotics (STELER) Laboratory is described. MOTES is the software component of the remote site of a local-remote telerobotic system which is being developed for NASA for space applications, in particular Space Station Freedom applications. The system is being developed to provide control and supervised autonomous control to support both space based operation and ground-remote control with time delay. The local-remote architecture places task planning responsibilities at the local site and task execution responsibilities at the remote site. This separation allows the remote site to be designed to optimize task execution capability within a limited computational environment such as is expected in flight systems. The local site task planning system could be placed on the ground where few computational limitations are expected. MOTES is written in the Ada programming language for a multiprocessor environment.

  8. A Review on Climate Change in Weather Stations of Guilan Province Using Mann-Kendal Methodand GIS

    NASA Astrophysics Data System (ADS)

    Behzadi, Jalal

    2016-07-01

    Climate has always been changing during the life time of the earth, and has appeared in the form of ice age, hurricanes, severe and sudden temperature changes, precipitation and other climatic elements, and has dramatically influenced the environment, and in some cases has caused severe changes and even destructions. Some of the most important aspects of climate changes can be found in precipitation types of different regions in the world and especially Guilan, which is influenced by drastic land conversions and greenhouse gases. Also, agriculture division, industrial activities and unnecessary land conversions are thought to have a huge influence on climate change. Climate change is a result of abnormalcies of metorologyl parameters. Generally, the element of precipitation is somehow included in most theories about climate change. The present study aims to reveal precipitation abnormalcies in Guilan which lead to climate change, and possible deviations of precipitation parameter based on annual, seasonal and monthly series have been evaluated. The Mann-Kendal test has been used to reveal likely deviations leading to climate change. The trend of precipitation changes in long-term has been identifiedusing this method. Also, the beginning and end of these changes have been studied in five stations as representatives of all the thirteen weather stations. Then,the areas which have experienced climate change have been identified using the GIS software along with the severity of the changes with an emphasis on drought. These results can be used in planning and identifying the effects of these changes on the environment. Keywords: Climate Change, Guilan, Mann-Kendal, GIS

  9. Performance and economy of a fault-tolerant multiprocessor

    NASA Technical Reports Server (NTRS)

    Lala, J. H.; Smith, C. J.

    1979-01-01

    The FTMP (Fault-Tolerant Multiprocessor) is one of two central aircraft fault-tolerant architectures now in the prototype phase under NASA sponsorship. The intended application of the computer includes such critical real-time tasks as 'fly-by-wire' active control and completely automatic Category III landings of commercial aircraft. The FTMP architecture is briefly described and it is shown that it is a viable solution to the multi-faceted problems of safety, speed, and cost. Three job dispatch strategies are described, and their results with respect to job-starting delay are presented. The first strategy is a simple First-Come-First-Serve (FCFS) job dispatch executive. The other two schedulers are an adaptive FCFS and an interrupt driven scheduler. Three failure modes are discussed, and the FTMP survival probability in the face of random hard failures is evaluated. It is noted that the hourly cost of operating two FTMPs in a transport aircraft can be as little as one-to-two percent of the total flight-hour cost of the aircraft.

  10. Parallelization of NAS Benchmarks for Shared Memory Multiprocessors

    NASA Technical Reports Server (NTRS)

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

    1998-01-01

    This paper presents our experiences of parallelizing the sequential implementation of NAS benchmarks using compiler directives on SGI Origin2000 distributed shared memory (DSM) system. Porting existing applications to new high performance parallel and distributed computing platforms is a challenging task. Ideally, a user develops a sequential version of the application, leaving the task of porting to new generations of high performance computing systems to parallelization tools and compilers. Due to the simplicity of programming shared-memory multiprocessors, compiler developers have provided various facilities to allow the users to exploit parallelism. Native compilers on SGI Origin2000 support multiprocessing directives to allow users to exploit loop-level parallelism in their programs. Additionally, supporting tools can accomplish this process automatically and present the results of parallelization to the users. We experimented with these compiler directives and supporting tools by parallelizing sequential implementation of NAS benchmarks. Results reported in this paper indicate that with minimal effort, the performance gain is comparable with the hand-parallelized, carefully optimized, message-passing implementations of the same benchmarks.

  11. High-performance multiprocessor architecture for a 3-D lattice gas model

    NASA Technical Reports Server (NTRS)

    Lee, F.; Flynn, M.; Morf, M.

    1991-01-01

    The lattice gas method has recently emerged as a promising discrete particle simulation method in areas such as fluid dynamics. We present a very high-performance scalable multiprocessor architecture, called ALGE, proposed for the simulation of a realistic 3-D lattice gas model, Henon's 24-bit FCHC isometric model. Each of these VLSI processors is as powerful as a CRAY-2 for this application. ALGE is scalable in the sense that it achieves linear speedup for both fixed and increasing problem sizes with more processors. The core computation of a lattice gas model consists of many repetitions of two alternating phases: particle collision and propagation. Functional decomposition by symmetry group and virtual move are the respective keys to efficient implementation of collision and propagation.

  12. Probabilistic evaluation of on-line checks in fault-tolerant multiprocessor systems

    NASA Technical Reports Server (NTRS)

    Nair, V. S. S.; Hoskote, Yatin V.; Abraham, Jacob A.

    1992-01-01

    The analysis of fault-tolerant multiprocessor systems that use concurrent error detection (CED) schemes is much more difficult than the analysis of conventional fault-tolerant architectures. Various analytical techniques have been proposed to evaluate CED schemes deterministically. However, these approaches are based on worst-case assumptions related to the failure of system components. Often, the evaluation results do not reflect the actual fault tolerance capabilities of the system. A probabilistic approach to evaluate the fault detecting and locating capabilities of on-line checks in a system is developed. The various probabilities associated with the checking schemes are identified and used in the framework of the matrix-based model. Based on these probabilistic matrices, estimates for the fault tolerance capabilities of various systems are derived analytically.

  13. USC orthogonal multiprocessor for image processing with neural networks

    NASA Astrophysics Data System (ADS)

    Hwang, Kai; Panda, Dhabaleswar K.; Haddadi, Navid

    1990-07-01

    This paper presents the architectural features and imaging applications of the Orthogonal MultiProcessor (OMP) system, which is under construction at the University of Southern California with research funding from NSF and assistance from several industrial partners. The prototype OMP is being built with 16 Intel i860 RISC microprocessors and 256 parallel memory modules using custom-designed spanning buses, which are 2-D interleaved and orthogonally accessed without conflicts. The 16-processor OMP prototype is targeted to achieve 430 MIPS and 600 Mflops, which have been verified by simulation experiments based on the design parameters used. The prototype OMP machine will be initially applied for image processing, computer vision, and neural network simulation applications. We summarize important vision and imaging algorithms that can be restructured with neural network models. These algorithms can efficiently run on the OMP hardware with linear speedup. The ultimate goal is to develop a high-performance Visual Computer (Viscom) for integrated low- and high-level image processing and vision tasks.

  14. Job-mix modeling and system analysis of an aerospace multiprocessor.

    NASA Technical Reports Server (NTRS)

    Mallach, E. G.

    1972-01-01

    An aerospace guidance computer organization, consisting of multiple processors and memory units attached to a central time-multiplexed data bus, is described. A job mix for this type of computer is obtained by analysis of Apollo mission programs. Multiprocessor performance is then analyzed using: 1) queuing theory, under certain 'limiting case' assumptions; 2) Markov process methods; and 3) system simulation. Results of the analyses indicate: 1) Markov process analysis is a useful and efficient predictor of simulation results; 2) efficient job execution is not seriously impaired even when the system is so overloaded that new jobs are inordinately delayed in starting; 3) job scheduling is significant in determining system performance; and 4) a system having many slow processors may or may not perform better than a system of equal power having few fast processors, but will not perform significantly worse.

  15. A robot arm simulation with a shared memory multiprocessor machine

    NASA Technical Reports Server (NTRS)

    Kim, Sung-Soo; Chuang, Li-Ping

    1989-01-01

    A parallel processing scheme for a single chain robot arm is presented for high speed computation on a shared memory multiprocessor. A recursive formulation that is derived from a virtual work form of the d'Alembert equations of motion is utilized for robot arm dynamics. A joint drive system that consists of a motor rotor and gears is included in the arm dynamics model, in order to take into account gyroscopic effects due to the spinning of the rotor. The fine grain parallelism of mechanical and control subsystem models is exploited, based on independent computation associated with bodies, joint drive systems, and controllers. Efficiency and effectiveness of the parallel scheme are demonstrated through simulations of a telerobotic manipulator arm. Two different mechanical subsystem models, i.e., with and without gyroscopic effects, are compared, to show the trade-off between efficiency and accuracy.

  16. Trends analysis of rainfall and rainfall extremes in Sarawak, Malaysia using modified Mann-Kendall test

    NASA Astrophysics Data System (ADS)

    Sa'adi, Zulfaqar; Shahid, Shamsuddin; Ismail, Tarmizi; Chung, Eun-Sung; Wang, Xiao-Jun

    2017-11-01

    This study assesses the spatial pattern of changes in rainfall extremes of Sarawak in recent years (1980-2014). The Mann-Kendall (MK) test along with modified Mann-Kendall (m-MK) test, which can discriminate multi-scale variability of unidirectional trend, was used to analyze the changes at 31 stations. Taking account of the scaling effect through eliminating the effect of autocorrelation, m-MK was employed to discriminate multi-scale variability of the unidirectional trends of the annual rainfall in Sarawak. It can confirm the significance of the MK test. The annual rainfall trend from MK test showed significant changes at 95% confidence level at five stations. The seasonal trends from MK test indicate an increasing rate of rainfall during the Northeast monsoon and a decreasing trend during the Southwest monsoon in some region of Sarawak. However, the m-MK test detected an increasing trend in annual rainfall only at one station and no significant trend in seasonal rainfall at any stations. The significant increasing trends of the 1-h maximum rainfall from the MK test are detected mainly at the stations located in the urban area giving concern to the occurrence of the flash flood. On the other hand, the m-MK test detected no significant trend in 1- and 3-h maximum rainfalls at any location. On the contrary, it detected significant trends in 6- and 72-h maximum rainfalls at a station located in the Lower Rajang basin area which is an extensive low-lying agricultural area and prone to stagnant flood. These results indicate that the trends in rainfall and rainfall extremes reported in Malaysia and surrounding region should be verified with m-MK test as most of the trends may result from scaling effect.

  17. Sequoia: A fault-tolerant tightly coupled multiprocessor for transaction processing

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

    Bernstein, P.A.

    1988-02-01

    The Sequoia computer is a tightly coupled multiprocessor, and thus attains the performance advantages of this style of architecture. It avoids most of the fault-tolerance disadvantages of tight coupling by using a new fault-tolerance design. The Sequoia architecture is similar to other multimicroprocessor architectures, such as those of Encore and Sequent, in that it gives dozens of microprocessors shared access to a large main memory. It resembles the Stratus architecture in its extensive use of hardware fault-detection techniques. It resembles Stratus and Auragen in its ability to quickly recover all processes after a single point failure, transparently to the user.more » However, Sequoia is unique in its combination of a large-scale tightly coupled architecture with a hardware approach to fault tolerance. This article gives an overview of how the hardware architecture and operating systems (OS) work together to provide a high degree of fault tolerance with good system performance.« less

  18. The Diversity of Vibrios Associated with Vibriosis in Pacific White Shrimp (Litopenaeus vannamei) from Extensive Shrimp Pond in Kendal District, Indonesia

    NASA Astrophysics Data System (ADS)

    Sarjito; Harjuno Condro Haditomo, Alfabetian; Desrina; Djunaedi, Ali; Budi Prayitno, Slamet

    2018-02-01

    Vibriosis out breaks frequently occur in extensive shrimps farming. The study were commenced to find out the clinical signs of white shrimp that was infected by the Vibrio and to identify the bacterial associated with vibriosis in the pacific white shrimp, Litopenaeus vannamei. Bacterial isolates were gained from hepatopancreas and telson of moribund shrimps that were collected from extensive shrimp ponds of Kendal District, Indonesia and cultured on Thiosulfate Citrate Bile Salts Sucrose Agar (TCBSA). Isolates were clustered and identified using repetitive sequence-based polymerase chain reaction (rep-PCR). Three representative isolates (SJV 03, SJV 05 and SJV 19) were amplified with PCR using primers for 16S rRNA, and sequence for further identification. The clinical signs of shrimps affected by vibrio were pale hepatopancreas, weak of telson, dark and reddish coloration of smouth, patches of red colour in part of the body on the carapace, periopods, pleuopods, and telson. A total of 19 isolates were obtained and belong to three groups of genus Vibrios. Result of the 16S DNA sequence analysis, the vibrio found in this study related to vibriosis in white shrimps from extensive shrimp ponds of Kendal were closely related to Vibrio harveyi (SJV 03); V. parahaemolyticus (SJV 05) and V. alginolyticus (SJV 19).

  19. PANDA: A distributed multiprocessor operating system

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

    Chubb, P.

    1989-01-01

    PANDA is a design for a distributed multiprocessor and an operating system. PANDA is designed to allow easy expansion of both hardware and software. As such, the PANDA kernel provides only message passing and memory and process management. The other features needed for the system (device drivers, secondary storage management, etc.) are provided as replaceable user tasks. The thesis presents PANDA's design and implementation, both hardware and software. PANDA uses multiple 68010 processors sharing memory on a VME bus, each such node potentially connected to others via a high speed network. The machine is completely homogeneous: there are no differencesmore » between processors that are detectable by programs running on the machine. A single two-processor node has been constructed. Each processor contains memory management circuits designed to allow processors to share page tables safely. PANDA presents a programmers' model similar to the hardware model: a job is divided into multiple tasks, each having its own address space. Within each task, multiple processes share code and data. Tasks can send messages to each other, and set up virtual circuits between themselves. Peripheral devices such as disc drives are represented within PANDA by tasks. PANDA divides secondary storage into volumes, each volume being accessed by a volume access task, or VAT. All knowledge about the way that data is stored on a disc is kept in its volume's VAT. The design is such that PANDA should provide a useful testbed for file systems and device drivers, as these can be installed without recompiling PANDA itself, and without rebooting the machine.« less

  20. Algorithms and architecture for multiprocessor based circuit simulation

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

    Deutsch, J.T.

    Accurate electrical simulation is critical to the design of high performance integrated circuits. Logic simulators can verify function and give first-order timing information. Switch level simulators are more effective at dealing with charge sharing than standard logic simulators, but cannot provide accurate timing information or discover DC problems. Delay estimation techniques and cell level simulation can be used in constrained design methods, but must be tuned for each application, and circuit simulation must still be used to generate the cell models. None of these methods has the guaranteed accuracy that many circuit designers desire, and none can provide detailed waveformmore » information. Detailed electrical-level simulation can predict circuit performance if devices and parasitics are modeled accurately. However, the computational requirements of conventional circuit simulators make it impractical to simulate current large circuits. In this dissertation, the implementation of Iterated Timing Analysis (ITA), a relaxation-based technique for accurate circuit simulation, on a special-purpose multiprocessor is presented. The ITA method is an SOR-Newton, relaxation-based method which uses event-driven analysis and selective trace to exploit the temporal sparsity of the electrical network. Because event-driven selective trace techniques are employed, this algorithm lends itself to implementation on a data-driven computer.« less

  1. Creating Magic Squares.

    ERIC Educational Resources Information Center

    Lyon, Betty Clayton

    1990-01-01

    One method of making magic squares using a prolongated square is illustrated. Discussed are third-order magic squares, fractional magic squares, fifth-order magic squares, decimal magic squares, and even magic squares. (CW)

  2. MULTIPROCESSOR AND DISTRIBUTED PROCESSING BIBLIOGRAPHIC DATA BASE SOFTWARE SYSTEM

    NASA Technical Reports Server (NTRS)

    Miya, E. N.

    1994-01-01

    Multiprocessors and distributed processing are undergoing increased scientific scrutiny for many reasons. It is more and more difficult to keep track of the existing research in these fields. This package consists of a large machine-readable bibliographic data base which, in addition to the usual keyword searches, can be used for producing citations, indexes, and cross-references. The data base is compiled from smaller existing multiprocessing bibliographies, and tables of contents from journals and significant conferences. There are approximately 4,000 entries covering topics such as parallel and vector processing, networks, supercomputers, fault-tolerant computers, and cellular automata. Each entry is represented by 21 fields including keywords, author, referencing book or journal title, volume and page number, and date and city of publication. The data base contains UNIX 'refer' formatted ASCII data and can be implemented on any computer running under the UNIX operating system. The data base requires approximately one megabyte of secondary storage. The documentation for this program is included with the distribution tape, although it can be purchased for the price below. This bibliography was compiled in 1985 and updated in 1988.

  3. Closed-form solutions of performability. [modeling of a degradable buffer/multiprocessor system

    NASA Technical Reports Server (NTRS)

    Meyer, J. F.

    1981-01-01

    Methods which yield closed form performability solutions for continuous valued variables are developed. The models are similar to those employed in performance modeling (i.e., Markovian queueing models) but are extended so as to account for variations in structure due to faults. In particular, the modeling of a degradable buffer/multiprocessor system is considered whose performance Y is the (normalized) average throughput rate realized during a bounded interval of time. To avoid known difficulties associated with exact transient solutions, an approximate decomposition of the model is employed permitting certain submodels to be solved in equilibrium. These solutions are then incorporated in a model with fewer transient states and by solving the latter, a closed form solution of the system's performability is obtained. In conclusion, some applications of this solution are discussed and illustrated, including an example of design optimization.

  4. Partitioning strategy for efficient nonlinear finite element dynamic analysis on multiprocessor computers

    NASA Technical Reports Server (NTRS)

    Noor, Ahmed K.; Peters, Jeanne M.

    1989-01-01

    A computational procedure is presented for the nonlinear dynamic analysis of unsymmetric structures on vector multiprocessor systems. The procedure is based on a novel hierarchical partitioning strategy in which the response of the unsymmetric and antisymmetric response vectors (modes), each obtained by using only a fraction of the degrees of freedom of the original finite element model. The three key elements of the procedure which result in high degree of concurrency throughout the solution process are: (1) mixed (or primitive variable) formulation with independent shape functions for the different fields; (2) operator splitting or restructuring of the discrete equations at each time step to delineate the symmetric and antisymmetric vectors constituting the response; and (3) two level iterative process for generating the response of the structure. An assessment is made of the effectiveness of the procedure on the CRAY X-MP/4 computers.

  5. Using Squares to Sum Squares

    ERIC Educational Resources Information Center

    DeTemple, Duane

    2010-01-01

    Purely combinatorial proofs are given for the sum of squares formula, 1[superscript 2] + 2[superscript 2] + ... + n[superscript 2] = n(n + 1) (2n + 1) / 6, and the sum of sums of squares formula, 1[superscript 2] + (1[superscript 2] + 2[superscript 2]) + ... + (1[superscript 2] + 2[superscript 2] + ... + n[superscript 2]) = n(n + 1)[superscript 2]…

  6. Development and evaluation of a fault-tolerant multiprocessor (FTMP) computer. Volume 4: FTMP executive summary

    NASA Technical Reports Server (NTRS)

    Smith, T. B., III; Lala, J. H.

    1984-01-01

    The FTMP architecture is a high reliability computer concept modeled after a homogeneous multiprocessor architecture. Elements of the FTMP are operated in tight synchronism with one another and hardware fault-detection and fault-masking is provided which is transparent to the software. Operating system design and user software design is thus greatly simplified. Performance of the FTMP is also comparable to that of a simplex equivalent due to the efficiency of fault handling hardware. The FTMP project constructed an engineering module of the FTMP, programmed the machine and extensively tested the architecture through fault injection and other stress testing. This testing confirmed the soundness of the FTMP concepts.

  7. Solving Partial Differential Equations in a data-driven multiprocessor environment

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

    Gaudiot, J.L.; Lin, C.M.; Hosseiniyar, M.

    1988-12-31

    Partial differential equations can be found in a host of engineering and scientific problems. The emergence of new parallel architectures has spurred research in the definition of parallel PDE solvers. Concurrently, highly programmable systems such as data-how architectures have been proposed for the exploitation of large scale parallelism. The implementation of some Partial Differential Equation solvers (such as the Jacobi method) on a tagged token data-flow graph is demonstrated here. Asynchronous methods (chaotic relaxation) are studied and new scheduling approaches (the Token No-Labeling scheme) are introduced in order to support the implementation of the asychronous methods in a data-driven environment.more » New high-level data-flow language program constructs are introduced in order to handle chaotic operations. Finally, the performance of the program graphs is demonstrated by a deterministic simulation of a message passing data-flow multiprocessor. An analysis of the overhead in the data-flow graphs is undertaken to demonstrate the limits of parallel operations in dataflow PDE program graphs.« less

  8. Fault-free behavior of reliable multiprocessor systems: FTMP experiments in AIRLAB

    NASA Technical Reports Server (NTRS)

    Clune, E.; Segall, Z.; Siewiorek, D.

    1985-01-01

    This report describes a set of experiments which were implemented on the Fault tolerant Multi-Processor (FTMP) at NASA/Langley's AIRLAB facility. These experiments are part of an effort to formulate and evaluate validation methodologies for fault-tolerant computers. This report deals with the measurement of single parameters (baselines) of a fault free system. The initial set of baseline experiments lead to the following conclusions: (1) The system clock is constant and independent of workload in the tested cases; (2) the instruction execution times are constant; (3) the R4 frame size is 40mS with some variation; (4) the frame stretching mechanism has some flaws in its implementation that allow the possibility of an infinite stretching of frame duration. Future experiments are planned. Some will broaden the results of these initial experiments. Others will measure the system more dynamically. The implementation of a synthetic workload generation mechanism for FTMP is planned to enhance the experimental environment of the system.

  9. Multi-processor including data flow accelerator module

    DOEpatents

    Davidson, George S.; Pierce, Paul E.

    1990-01-01

    An accelerator module for a data flow computer includes an intelligent memory. The module is added to a multiprocessor arrangement and uses a shared tagged memory architecture in the data flow computer. The intelligent memory module assigns locations for holding data values in correspondence with arcs leading to a node in a data dependency graph. Each primitive computation is associated with a corresponding memory cell, including a number of slots for operands needed to execute a primitive computation, a primitive identifying pointer, and linking slots for distributing the result of the cell computation to other cells requiring that result as an operand. Circuitry is provided for utilizing tag bits to determine automatically when all operands required by a processor are available and for scheduling the primitive for execution in a queue. Each memory cell of the module may be associated with any of the primitives, and the particular primitive to be executed by the processor associated with the cell is identified by providing an index, such as the cell number for the primitive, to the primitive lookup table of starting addresses. The module thus serves to perform functions previously performed by a number of sections of data flow architectures and coexists with conventional shared memory therein. A multiprocessing system including the module operates in a hybrid mode, wherein the same processing modules are used to perform some processing in a sequential mode, under immediate control of an operating system, while performing other processing in a data flow mode.

  10. The Effectiveness of Building Permit Regulation for Green Open Space at Housing Estates: Case Study of Kendal Regency, Central Java, Indonesia

    NASA Astrophysics Data System (ADS)

    Yulianti, Wiwik; Hadi, Sudharto P.

    2018-02-01

    Increasing demand for settlements steamed by population growth declines the quality of the environment specifically at urban area. The existing spatial planning could not able to prevent the change of land use for settlement and other infrastructures. The Act no. 26 of 2007 on spatial planning stipulates that green open space must reach 30% of the total area, consisting of 20% public open space and 10% private open space. The existing condition of urban area at Kendal Regency reach 245,6 million m2 with 88.145,5 m2 green open space or 0,036% out of total area. An effort to increase green open space in urban areas taken by the Government of Kendal Regency is by promulgating a local regulation stipulating that each housing developer request a building permit is obliged to provide a green open space at least 10 percent of the total housing area. This paper reviews the effectiveness of building permit regulation, the problems encountered and the concept proposed to make the local regulation work. The area of sample taken is three urban districts out of five urban districts, the resource persons chosen are those from relevant offices (Dinas) involved at the implementation of the local regulation. The data collection techniques employed are the Analytical Hierarchy Process (AHP), Geographic Information System (GIS) technology, social observation and informal interview. The data gathered will be analyzed quantitatively and qualitatively.

  11. Software Coherence in Multiprocessor Memory Systems. Ph.D. Thesis

    NASA Technical Reports Server (NTRS)

    Bolosky, William Joseph

    1993-01-01

    Processors are becoming faster and multiprocessor memory interconnection systems are not keeping up. Therefore, it is necessary to have threads and the memory they access as near one another as possible. Typically, this involves putting memory or caches with the processors, which gives rise to the problem of coherence: if one processor writes an address, any other processor reading that address must see the new value. This coherence can be maintained by the hardware or with software intervention. Systems of both types have been built in the past; the hardware-based systems tended to outperform the software ones. However, the ratio of processor to interconnect speed is now so high that the extra overhead of the software systems may no longer be significant. This issue is explored both by implementing a software maintained system and by introducing and using the technique of offline optimal analysis of memory reference traces. It finds that in properly built systems, software maintained coherence can perform comparably to or even better than hardware maintained coherence. The architectural features necessary for efficient software coherence to be profitable include a small page size, a fast trap mechanism, and the ability to execute instructions while remote memory references are outstanding.

  12. HyperForest: A high performance multi-processor architecture for real-time intelligent systems

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

    Garcia, P. Jr.; Rebeil, J.P.; Pollard, H.

    1997-04-01

    Intelligent Systems are characterized by the intensive use of computer power. The computer revolution of the last few years is what has made possible the development of the first generation of Intelligent Systems. Software for second generation Intelligent Systems will be more complex and will require more powerful computing engines in order to meet real-time constraints imposed by new robots, sensors, and applications. A multiprocessor architecture was developed that merges the advantages of message-passing and shared-memory structures: expendability and real-time compliance. The HyperForest architecture will provide an expandable real-time computing platform for computationally intensive Intelligent Systems and open the doorsmore » for the application of these systems to more complex tasks in environmental restoration and cleanup projects, flexible manufacturing systems, and DOE`s own production and disassembly activities.« less

  13. Overlap Areas of a Square Box on a Square Mesh

    DTIC Science & Technology

    2017-04-01

    ARL-TN-0818 ● APR 2017 US Army Research Laboratory Overlap Areas of a Square Box on a Square Mesh by James U Cazamias...originator. ARL-TN-0818 ● APR 2017 US Army Research Laboratory Overlap Areas of a Square Box on a Square Mesh by James U Cazamias...

  14. Development and evaluation of a Fault-Tolerant Multiprocessor (FTMP) computer. Volume 2: FTMP software

    NASA Technical Reports Server (NTRS)

    Lala, J. H.; Smith, T. B., III

    1983-01-01

    The software developed for the Fault-Tolerant Multiprocessor (FTMP) is described. The FTMP executive is a timer-interrupt driven dispatcher that schedules iterative tasks which run at 3.125, 12.5, and 25 Hz. Major tasks which run under the executive include system configuration control, flight control, and display. The flight control task includes autopilot and autoland functions for a jet transport aircraft. System Displays include status displays of all hardware elements (processors, memories, I/O ports, buses), failure log displays showing transient and hard faults, and an autopilot display. All software is in a higher order language (AED, an ALGOL derivative). The executive is a fully distributed general purpose executive which automatically balances the load among available processor triads. Provisions for graceful performance degradation under processing overload are an integral part of the scheduling algorithms.

  15. Principles for problem aggregation and assignment in medium scale multiprocessors

    NASA Technical Reports Server (NTRS)

    Nicol, David M.; Saltz, Joel H.

    1987-01-01

    One of the most important issues in parallel processing is the mapping of workload to processors. This paper considers a large class of problems having a high degree of potential fine grained parallelism, and execution requirements that are either not predictable, or are too costly to predict. The main issues in mapping such a problem onto medium scale multiprocessors are those of aggregation and assignment. We study a method of parameterized aggregation that makes few assumptions about the workload. The mapping of aggregate units of work onto processors is uniform, and exploits locality of workload intensity to balance the unknown workload. In general, a finer aggregate granularity leads to a better balance at the price of increased communication/synchronization costs; the aggregation parameters can be adjusted to find a reasonable granularity. The effectiveness of this scheme is demonstrated on three model problems: an adaptive one-dimensional fluid dynamics problem with message passing, a sparse triangular linear system solver on both a shared memory and a message-passing machine, and a two-dimensional time-driven battlefield simulation employing message passing. Using the model problems, the tradeoffs are studied between balanced workload and the communication/synchronization costs. Finally, an analytical model is used to explain why the method balances workload and minimizes the variance in system behavior.

  16. Ordered fast fourier transforms on a massively parallel hypercube multiprocessor

    NASA Technical Reports Server (NTRS)

    Tong, Charles; Swarztrauber, Paul N.

    1989-01-01

    Design alternatives for ordered Fast Fourier Transformation (FFT) algorithms were examined on massively parallel hypercube multiprocessors such as the Connection Machine. Particular emphasis is placed on reducing communication which is known to dominate the overall computing time. To this end, the order and computational phases of the FFT were combined, and the sequence to processor maps that reduce communication were used. The class of ordered transforms is expanded to include any FFT in which the order of the transform is the same as that of the input sequence. Two such orderings are examined, namely, standard-order and A-order which can be implemented with equal ease on the Connection Machine where orderings are determined by geometries and priorities. If the sequence has N = 2 exp r elements and the hypercube has P = 2 exp d processors, then a standard-order FFT can be implemented with d + r/2 + 1 parallel transmissions. An A-order sequence can be transformed with 2d - r/2 parallel transmissions which is r - d + 1 fewer than the standard order. A parallel method for computing the trigonometric coefficients is presented that does not use trigonometric functions or interprocessor communication. A performance of 0.9 GFLOPS was obtained for an A-order transform on the Connection Machine.

  17. Compilation time analysis to minimize run-time overhead in preemptive scheduling on multiprocessors

    NASA Astrophysics Data System (ADS)

    Wauters, Piet; Lauwereins, Rudy; Peperstraete, J.

    1994-10-01

    This paper describes a scheduling method for hard real-time Digital Signal Processing (DSP) applications, implemented on a multi-processor. Due to the very high operating frequencies of DSP applications (typically hundreds of kHz) runtime overhead should be kept as small as possible. Because static scheduling introduces very little run-time overhead it is used as much as possible. Dynamic pre-emption of tasks is allowed if and only if it leads to better performance in spite of the extra run-time overhead. We essentially combine static scheduling with dynamic pre-emption using static priorities. Since we are dealing with hard real-time applications we must be able to guarantee at compile-time that all timing requirements will be satisfied at run-time. We will show that our method performs at least as good as any static scheduling method. It also reduces the total amount of dynamic pre-emptions compared with run time methods like deadline monotonic scheduling.

  18. Avoiding and tolerating latency in large-scale next-generation shared-memory multiprocessors

    NASA Technical Reports Server (NTRS)

    Probst, David K.

    1993-01-01

    A scalable solution to the memory-latency problem is necessary to prevent the large latencies of synchronization and memory operations inherent in large-scale shared-memory multiprocessors from reducing high performance. We distinguish latency avoidance and latency tolerance. Latency is avoided when data is brought to nearby locales for future reference. Latency is tolerated when references are overlapped with other computation. Latency-avoiding locales include: processor registers, data caches used temporally, and nearby memory modules. Tolerating communication latency requires parallelism, allowing the overlap of communication and computation. Latency-tolerating techniques include: vector pipelining, data caches used spatially, prefetching in various forms, and multithreading in various forms. Relaxing the consistency model permits increased use of avoidance and tolerance techniques. Each model is a mapping from the program text to sets of partial orders on program operations; it is a convention about which temporal precedences among program operations are necessary. Information about temporal locality and parallelism constrains the use of avoidance and tolerance techniques. Suitable architectural primitives and compiler technology are required to exploit the increased freedom to reorder and overlap operations in relaxed models.

  19. Dynamic modelling and estimation of the error due to asynchronism in a redundant asynchronous multiprocessor system

    NASA Technical Reports Server (NTRS)

    Huynh, Loc C.; Duval, R. W.

    1986-01-01

    The use of Redundant Asynchronous Multiprocessor System to achieve ultrareliable Fault Tolerant Control Systems shows great promise. The development has been hampered by the inability to determine whether differences in the outputs of redundant CPU's are due to failures or to accrued error built up by slight differences in CPU clock intervals. This study derives an analytical dynamic model of the difference between redundant CPU's due to differences in their clock intervals and uses this model with on-line parameter identification to idenitify the differences in the clock intervals. The ability of this methodology to accurately track errors due to asynchronisity generate an error signal with the effect of asynchronisity removed and this signal may be used to detect and isolate actual system failures.

  20. View of Corto Square Road from Corto Square. Buildings No. ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    View of Corto Square Road from Corto Square. Buildings No. 27 at left, Building No. 25 at rear, and Building No. 26 at right. Parking areas on left and right, looking north - Easter Hill Village, Bordered by South Twenty-sixth Street, South Twenty-eighth Street, Hinkley Avenue, Foothill Avenue & Corto Square, Richmond, Contra Costa County, CA

  1. An efficient 3-dim FFT for plane wave electronic structure calculations on massively parallel machines composed of multiprocessor nodes

    NASA Astrophysics Data System (ADS)

    Goedecker, Stefan; Boulet, Mireille; Deutsch, Thierry

    2003-08-01

    Three-dimensional Fast Fourier Transforms (FFTs) are the main computational task in plane wave electronic structure calculations. Obtaining a high performance on a large numbers of processors is non-trivial on the latest generation of parallel computers that consist of nodes made up of a shared memory multiprocessors. A non-dogmatic method for obtaining high performance for such 3-dim FFTs in a combined MPI/OpenMP programming paradigm will be presented. Exploiting the peculiarities of plane wave electronic structure calculations, speedups of up to 160 and speeds of up to 130 Gflops were obtained on 256 processors.

  2. All Square Chiliagonal Numbers

    ERIC Educational Resources Information Center

    A?iru, Muniru A.

    2016-01-01

    A square chiliagonal number is a number which is simultaneously a chiliagonal number and a perfect square (just as the well-known square triangular number is both triangular and square). In this work, we determine which of the chiliagonal numbers are perfect squares and provide the indices of the corresponding chiliagonal numbers and square…

  3. Discrete square root smoothing.

    NASA Technical Reports Server (NTRS)

    Kaminski, P. G.; Bryson, A. E., Jr.

    1972-01-01

    The basic techniques applied in the square root least squares and square root filtering solutions are applied to the smoothing problem. Both conventional and square root solutions are obtained by computing the filtered solutions, then modifying the results to include the effect of all measurements. A comparison of computation requirements indicates that the square root information smoother (SRIS) is more efficient than conventional solutions in a large class of fixed interval smoothing problems.

  4. Understanding of social capital condition among red guava farmers in Tambahrejo Village, Pageruyung District, Kendal Regency

    NASA Astrophysics Data System (ADS)

    Gayatri, S.; Sumarjono, D.; Satmoko, S.

    2018-01-01

    The aim of the study was to explore the potential of social capital and growing income of red guava farmers in Tambahrejo Village, Pageruyung District, Kendal Regency. Interview and observation were used for data collection. Set of Questionnaire was developed to answer research’ goal. All member of farmer group I ACC (Kelompok Tani Makmur I ACC) were chosen as respondents in this research. Data were analyzed using multiple regressions. The result shows that there was significant relationship between social capital in community and the income of the red guava farmers. Farmer’ group was found as a media to improve farmers’ knowledge and networking. Farmers group facilitated farmers to market red guava product. Moreover, wife of the farmers established women group or KWT (Kelompok Wanita Tani). The result found that KWT contributed to improve family’s income. KWT also promote activities to help product’s diversification of red guava. Both farmer group and KWT provided activities such as saving and loans, it means there was trust among member of farmer group.

  5. K2 and K2*: efficient alignment-free sequence similarity measurement based on Kendall statistics.

    PubMed

    Lin, Jie; Adjeroh, Donald A; Jiang, Bing-Hua; Jiang, Yue

    2018-05-15

    Alignment-free sequence comparison methods can compute the pairwise similarity between a huge number of sequences much faster than sequence-alignment based methods. We propose a new non-parametric alignment-free sequence comparison method, called K2, based on the Kendall statistics. Comparing to the other state-of-the-art alignment-free comparison methods, K2 demonstrates competitive performance in generating the phylogenetic tree, in evaluating functionally related regulatory sequences, and in computing the edit distance (similarity/dissimilarity) between sequences. Furthermore, the K2 approach is much faster than the other methods. An improved method, K2*, is also proposed, which is able to determine the appropriate algorithmic parameter (length) automatically, without first considering different values. Comparative analysis with the state-of-the-art alignment-free sequence similarity methods demonstrates the superiority of the proposed approaches, especially with increasing sequence length, or increasing dataset sizes. The K2 and K2* approaches are implemented in the R language as a package and is freely available for open access (http://community.wvu.edu/daadjeroh/projects/K2/K2_1.0.tar.gz). yueljiang@163.com. Supplementary data are available at Bioinformatics online.

  6. SQUARE WAVE AMPLIFIER

    DOEpatents

    Leavitt, M.A.; Lutz, I.C.

    1958-08-01

    An amplifier circuit is described for amplifying sigmals having an alternating current component superimposed upon a direct current component, without loss of any segnnent of the alternating current component. The general circuit arrangement includes a vibrator, two square wave amplifiers, and recombination means. The amplifier input is connected to the vibrating element of the vibrator and is thereby alternately applied to the input of each square wave amplifier. The detailed circuitry of the recombination means constitutes the novelty of the annplifier and consists of a separate, dual triode amplifier coupled to the output of each square wave amplifier with a recombination connection from the plate of one amplifier section to a grid of one section of the other amplifier. The recombination circuit has provisions for correcting distortion caused by overlapping of the two square wave voltages from the square wave amplifiers.

  7. Magic with Magic Squares.

    ERIC Educational Resources Information Center

    Wills, Herbert III

    1989-01-01

    Describes ways to make magic squares of 4 by 4 matrices. Presents two handouts: (1) Sets of 4 Numbers from 1 to 16 Whose Sum is 34; and (2) The Durer Square. Shows patterns which appeared in the magic squares, such as squares, chevrons, rhomboids, and trapezoids. (YP)

  8. Scheduling for energy and reliability management on multiprocessor real-time systems

    NASA Astrophysics Data System (ADS)

    Qi, Xuan

    Scheduling algorithms for multiprocessor real-time systems have been studied for years with many well-recognized algorithms proposed. However, it is still an evolving research area and many problems remain open due to their intrinsic complexities. With the emergence of multicore processors, it is necessary to re-investigate the scheduling problems and design/develop efficient algorithms for better system utilization, low scheduling overhead, high energy efficiency, and better system reliability. Focusing cluster schedulings with optimal global schedulers, we study the utilization bound and scheduling overhead for a class of cluster-optimal schedulers. Then, taking energy/power consumption into consideration, we developed energy-efficient scheduling algorithms for real-time systems, especially for the proliferating embedded systems with limited energy budget. As the commonly deployed energy-saving technique (e.g. dynamic voltage frequency scaling (DVFS)) will significantly affect system reliability, we study schedulers that have intelligent mechanisms to recuperate system reliability to satisfy the quality assurance requirements. Extensive simulation is conducted to evaluate the performance of the proposed algorithms on reduction of scheduling overhead, energy saving, and reliability improvement. The simulation results show that the proposed reliability-aware power management schemes could preserve the system reliability while still achieving substantial energy saving.

  9. Solutions and debugging for data consistency in multiprocessors with noncoherent caches

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

    Bernstein, D.; Mendelson, B.; Breternitz, M. Jr.

    1995-02-01

    We analyze two important problems that arise in shared-memory multiprocessor systems. The stale data problem involves ensuring that data items in local memory of individual processors are current, independent of writes done by other processors. False sharing occurs when two processors have copies of the same shared data block but update different portions of the block. The false sharing problem involves guaranteeing that subsequent writes are properly combined. In modern architectures these problems are usually solved in hardware, by exploiting mechanisms for hardware controlled cache consistency. This leads to more expensive and nonscalable designs. Therefore, we are concentrating on softwaremore » methods for ensuring cache consistency that would allow for affordable and scalable multiprocessing systems. Unfortunately, providing software control is nontrivial, both for the compiler writer and for the application programmer. For this reason we are developing a debugging environment that will facilitate the development of compiler-based techniques and will help the programmer to tune his or her application using explicit cache management mechanisms. We extend the notion of a race condition for IBM Shared Memory System POWER/4, taking into consideration its noncoherent caches, and propose techniques for detection of false sharing problems. Identification of the stale data problem is discussed as well, and solutions are suggested.« less

  10. Weighted Least Squares Fitting Using Ordinary Least Squares Algorithms.

    ERIC Educational Resources Information Center

    Kiers, Henk A. L.

    1997-01-01

    A general approach for fitting a model to a data matrix by weighted least squares (WLS) is studied. The approach consists of iteratively performing steps of existing algorithms for ordinary least squares fitting of the same model and is based on maximizing a function that majorizes WLS loss function. (Author/SLD)

  11. Sparse Gaussian elimination with controlled fill-in on a shared memory multiprocessor

    NASA Technical Reports Server (NTRS)

    Alaghband, Gita; Jordan, Harry F.

    1989-01-01

    It is shown that in sparse matrices arising from electronic circuits, it is possible to do computations on many diagonal elements simultaneously. A technique for obtaining an ordered compatible set directly from the ordered incompatible table is given. The ordering is based on the Markowitz number of the pivot candidates. This technique generates a set of compatible pivots with the property of generating few fills. A novel heuristic algorithm is presented that combines the idea of an order-compatible set with a limited binary tree search to generate several sets of compatible pivots in linear time. An elimination set for reducing the matrix is generated and selected on the basis of a minimum Markowitz sum number. The parallel pivoting technique presented is a stepwise algorithm and can be applied to any submatrix of the original matrix. Thus, it is not a preordering of the sparse matrix and is applied dynamically as the decomposition proceeds. Parameters are suggested to obtain a balance between parallelism and fill-ins. Results of applying the proposed algorithms on several large application matrices using the HEP multiprocessor (Kowalik, 1985) are presented and analyzed.

  12. Fast Algorithms for Structured Least Squares and Total Least Squares Problems

    PubMed Central

    Kalsi, Anoop; O’Leary, Dianne P.

    2006-01-01

    We consider the problem of solving least squares problems involving a matrix M of small displacement rank with respect to two matrices Z1 and Z2. We develop formulas for the generators of the matrix M HM in terms of the generators of M and show that the Cholesky factorization of the matrix M HM can be computed quickly if Z1 is close to unitary and Z2 is triangular and nilpotent. These conditions are satisfied for several classes of matrices, including Toeplitz, block Toeplitz, Hankel, and block Hankel, and for matrices whose blocks have such structure. Fast Cholesky factorization enables fast solution of least squares problems, total least squares problems, and regularized total least squares problems involving these classes of matrices. PMID:27274922

  13. Fast Algorithms for Structured Least Squares and Total Least Squares Problems.

    PubMed

    Kalsi, Anoop; O'Leary, Dianne P

    2006-01-01

    We consider the problem of solving least squares problems involving a matrix M of small displacement rank with respect to two matrices Z 1 and Z 2. We develop formulas for the generators of the matrix M (H) M in terms of the generators of M and show that the Cholesky factorization of the matrix M (H) M can be computed quickly if Z 1 is close to unitary and Z 2 is triangular and nilpotent. These conditions are satisfied for several classes of matrices, including Toeplitz, block Toeplitz, Hankel, and block Hankel, and for matrices whose blocks have such structure. Fast Cholesky factorization enables fast solution of least squares problems, total least squares problems, and regularized total least squares problems involving these classes of matrices.

  14. Operating experience with a VMEbus multiprocessor system for data acquisition and reduction in nuclear physics

    NASA Astrophysics Data System (ADS)

    Kutt, P. H.; Balamuth, D. P.

    1989-10-01

    Summary form only given, as follows. A multiprocessor system based on commercially available VMEbus components has been developed for the acquisition and reduction of event-mode data in nuclear physics experiments. The system contains seven 68000 CPUs and 14 Mbyte of memory. A minimal operating system handles data transfer and task allocation, and a compiler for a specially designed event analysis language produces code for the processors. The system has been in operation for four years at the University of Pennsylvania Tandem Accelerator Laboratory. Computation rates over three times that of a MicroVAX II have been achieved at a fraction of the cost. The use of WORM optical disks for event recording allows the processing of gigabyte data sets without operator intervention. A more powerful system is being planned which will make use of recently developed RISC (reduced instruction set computer) processors to obtain an order of magnitude increase in computing power per node.

  15. Chandrasekhar-Kendall modes and Taylor relaxation in an axisymmetric torus

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

    Tang, X.Z.; Boozer, A.H.; Department of Applied Physics and Applied Mathematics, Columbia University, New York, New York 10027

    2005-10-01

    The helicity-conserving Taylor relaxation of a plasma in a toroidal chamber to a force-free configuration, which means j=(j{sub parallel})/B)B with j{sub parallel}/B independent of position, can be generalized to include the external injection of magnetic helicity. When this is done, j{sub parallel}/B has resonant values, which can be understood using the eigenmodes of Taylor-relaxed plasmas enclosed by a perfectly conducting toroidal shell. These eigenmodes include a toroidal generalization of those found by Chandrasekhar and Kendall (CK) [Astrophys. J. 126, 457 (1957)] for a spherical chamber, which has no externally produced magnetic flux. It is shown that the CK modes inmore » an axisymmetric torus are of three types: (1) helical modes as well as axisymmetric modes that have (2) and have no (3) net toroidal flux. Yoshida and Giga (YG) [Math. Z. 204, 235 (1990)] published a fourth class of modes: axisymmetric modes that have no net toroidal flux in the chamber due to toroidal flux produced by a net poloidal current in the shell canceling the net toroidal flux from the plasma currents. Jensen and Chu [Phys. Fluids 27, 2881 (1984)], as well as Taylor [Rev. Mod. Phys. 58, 741 (1986)], considered modes in which the vector potential was zero on the axisymmetric toroidal chamber. It is shown that these Jensen-Chu-Taylor modes include only the CK helical modes and the CK axisymmetric modes without net toroidal flux. If the toroidal chamber is perfectly conducting except for a cut that prevents a net poloidal current from flowing, resonances in j{sub parallel}/B occur at the eigenvalues of the axisymmetric CK modes. Jensen and Chu studied this type of resonance. Without the cut, so a poloidal current flows to conserve the net toroidal flux, it is shown that j{sub parallel}/B resonances occur at the eigenvalues of the CK modes that have no net toroidal flux and at the eigenvalues of the YG modes, which are upshifted from the eigenvalues of the axisymmetric CK modes

  16. Controlled replication: reduce the capacity occupied by redundant replicas in tiled chip multiprocessors

    NASA Astrophysics Data System (ADS)

    Li, Hao; Xie, Lunguo

    2013-03-01

    The design of cache system for Chip Multiprocessor (CMP) face many challenges because future CMPs will have more cores and greater on-chip cache capacity. There are two base design schemes about L2 cache: private scheme in which each L2 slice is treated as a private L2 cache and shared scheme in which all L2 slices are treated as a large L2 cache shared by all cores. Private caches provide the lowest hit latency but reduce the total effective cache capacity. A shared L2 cache increases the effective cache capacity but has long hit latencies when data is on a remote tile. This paper present a new Controlled Replication (CR) policy to reduce the capacities occupied by redundant shared replicas. the new CR policy increases the effective capacity than victim replication scheme and has lower hit latency than shared scheme. We evaluate the various schemes using full-system simulation of parallel applications. Results show that CR reduces the average memory access latency of shared scheme by an average of 13%, providing better overall performance than victim replication and shared schemes.

  17. Latin and Magic Squares

    ERIC Educational Resources Information Center

    Emanouilidis, Emanuel

    2005-01-01

    Latin squares have existed for hundreds of years but it wasn't until rather recently that Latin squares were used in other areas such as statistics, graph theory, coding theory and the generation of random numbers as well as in the design and analysis of experiments. This note describes Latin and diagonal Latin squares, a method of constructing…

  18. Eta Squared, Partial Eta Squared, and Misreporting of Effect Size in Communication Research.

    ERIC Educational Resources Information Center

    Levine, Timothy R.; Hullett, Craig R.

    2002-01-01

    Alerts communication researchers to potential errors stemming from the use of SPSS (Statistical Package for the Social Sciences) to obtain estimates of eta squared in analysis of variance (ANOVA). Strives to clarify issues concerning the development and appropriate use of eta squared and partial eta squared in ANOVA. Discusses the reporting of…

  19. Least Squares Procedures.

    ERIC Educational Resources Information Center

    Hester, Yvette

    Least squares methods are sophisticated mathematical curve fitting procedures used in all classical parametric methods. The linear least squares approximation is most often associated with finding the "line of best fit" or the regression line. Since all statistical analyses are correlational and all classical parametric methods are least…

  20. Irrational Square Roots

    ERIC Educational Resources Information Center

    Misiurewicz, Michal

    2013-01-01

    If students are presented the standard proof of irrationality of [square root]2, can they generalize it to a proof of the irrationality of "[square root]p", "p" a prime if, instead of considering divisibility by "p", they cling to the notions of even and odd used in the standard proof?

  1. 9 Square in the Air: Not Your Parents' Traditional Four Square Game

    ERIC Educational Resources Information Center

    Hanson, Amber Hall; Barney, David

    2018-01-01

    Physical educators are constantly looking for new ideas and activities that will quickly grab the interest of their students. 9 Square in the Air is a game that does just this. The game was developed as a way to integrate students who enjoy volleyball and those who like Four Square. 9 Square in the Air provides the opportunity for students to use…

  2. Mapping of H.264 decoding on a multiprocessor architecture

    NASA Astrophysics Data System (ADS)

    van der Tol, Erik B.; Jaspers, Egbert G.; Gelderblom, Rob H.

    2003-05-01

    Due to the increasing significance of development costs in the competitive domain of high-volume consumer electronics, generic solutions are required to enable reuse of the design effort and to increase the potential market volume. As a result from this, Systems-on-Chip (SoCs) contain a growing amount of fully programmable media processing devices as opposed to application-specific systems, which offered the most attractive solutions due to a high performance density. The following motivates this trend. First, SoCs are increasingly dominated by their communication infrastructure and embedded memory, thereby making the cost of the functional units less significant. Moreover, the continuously growing design costs require generic solutions that can be applied over a broad product range. Hence, powerful programmable SoCs are becoming increasingly attractive. However, to enable power-efficient designs, that are also scalable over the advancing VLSI technology, parallelism should be fully exploited. Both task-level and instruction-level parallelism can be provided by means of e.g. a VLIW multiprocessor architecture. To provide the above-mentioned scalability, we propose to partition the data over the processors, instead of traditional functional partitioning. An advantage of this approach is the inherent locality of data, which is extremely important for communication-efficient software implementations. Consequently, a software implementation is discussed, enabling e.g. SD resolution H.264 decoding with a two-processor architecture, whereas High-Definition (HD) decoding can be achieved with an eight-processor system, executing the same software. Experimental results show that the data communication considerably reduces up to 65% directly improving the overall performance. Apart from considerable improvement in memory bandwidth, this novel concept of partitioning offers a natural approach for optimally balancing the load of all processors, thereby further improving the

  3. Comparison of Mann-Kendall and innovative trend method for water quality parameters of the Kizilirmak River, Turkey

    NASA Astrophysics Data System (ADS)

    Kisi, Ozgur; Ay, Murat

    2014-05-01

    Low, medium and high values of a parameter are very important issues in climatological, meteorological and hydrological events. Moreover these values are used to decide various design parameters based on scientific aspects and real applications everywhere in the world. With this concept, a new trend method recently proposed by Şen was used for water parameters, pH, T, EC, Na+, K+, CO3-2, HCO3-, Cl-, SO4-2, B+3 and Q recorded at five different stations (station numbers and locations: 1535-Sogutluhan (Sivas), 1501-Yamula (Kayseri), 1546-Tuzkoy (Kayseri), 1503-Yahsihan (Kirsehir), and 1533-Inozu (Samsun)) selected from the Kizilirmak River in Turkey. Low, medium and high values of the parameters were graphically evaluated with this method. For comparison purposes, the Mann-Kendall trend test was also applied to the same data. Differences of the two trend tests were also emphasised. It was found that the Şen trend test compared with the MK trend test had several advantages. The results also revealed that the Şen trend test could be successfully used for trend analysis of water parameters especially in terms of evaluation of low, medium and high values of data.

  4. Least-Squares Curve-Fitting Program

    NASA Technical Reports Server (NTRS)

    Kantak, Anil V.

    1990-01-01

    Least Squares Curve Fitting program, AKLSQF, easily and efficiently computes polynomial providing least-squares best fit to uniformly spaced data. Enables user to specify tolerable least-squares error in fit or degree of polynomial. AKLSQF returns polynomial and actual least-squares-fit error incurred in operation. Data supplied to routine either by direct keyboard entry or via file. Written for an IBM PC X/AT or compatible using Microsoft's Quick Basic compiler.

  5. Mechanical Circle-Squaring

    ERIC Educational Resources Information Center

    Wagon, Stan; Cox, Barry

    2009-01-01

    A technique discovered in 1939 can be used to build a device that is driven by standard circular motion (as in a drill press) and drills exact square holes. This device is quite different from the classic design by Watts, which uses a Reuleaux triangle and drills a hole that is almost, but not exactly, square. We describe the device in detail,…

  6. Magnetic propulsion of a magnetic device using three square-Helmholtz coils and a square-Maxwell coil.

    PubMed

    Ha, Yong H; Han, Byung H; Lee, Soo Y

    2010-02-01

    We introduce a square coil system for remote magnetic navigation of a magnetic device without any physical movements of the coils. We used three square-Helmholtz coils and a square-Maxwell coil for magnetic propulsion of a small magnet along the desired path. All the square coils are mountable on a cubic frame that has an opening to accommodate a living subject. The square-Helmholtz coils control the magnetic propulsion direction by generating uniform magnetic field along the desired direction while the square-Maxwell coil controls the propulsion force by generating magnetic gradient field. We performed magnetic propulsion experiments with a down-scaled coil set and a three-channel coil driver. Experimental results demonstrate that we can use the square coil set for magnetic navigation of a magnetic device without any physical movements of the coils.

  7. Acceleration of linear stationary iterative processes in multiprocessor computers. II

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

    Romm, Ya.E.

    1982-05-01

    For pt.I, see Kibernetika, vol.18, no.1, p.47 (1982). For pt.I, see Cybernetics, vol.18, no.1, p.54 (1982). Considers a reduced system of linear algebraic equations x=ax+b, where a=(a/sub ij/) is a real n*n matrix; b is a real vector with common euclidean norm >>>. It is supposed that the existence and uniqueness of solution det (0-a) not equal to e is given, where e is a unit matrix. The linear iterative process converging to x x/sup (k+1)/=fx/sup (k)/, k=0, 1, 2, ..., where the operator f translates r/sup n/ into r/sup n/. In considering implementation of the iterative process (ip) inmore » a multiprocessor system, it is assumed that the number of processors is constant, and are various values of the latter investigated; it is assumed in addition, that the processors perform elementary binary arithmetic operations of addition and multiestimates only include the time of execution of arithmetic operations. With any paralleling of individual iteration, the execution time of the ip is proportional to the number of sequential steps k+1. The author sets the task of reducing the number of sequential steps in the ip so as to execute it in a time proportional to a value smaller than k+1. He also sets the goal of formulating a method of accelerated bit serial-parallel execution of each successive step of the ip, with, in the modification sought, a reduced number of steps in a time comparable to the operation time of logical elements. 6 references.« less

  8. The Versatile Magic Square.

    ERIC Educational Resources Information Center

    Watson, Gale A.

    2003-01-01

    Demonstrates the transformations that are possible to construct a variety of magic squares, including modifications to challenge students from elementary grades through algebra. Presents an example of using magic squares with students who have special needs. (YDS)

  9. On estimating gravity anomalies: A comparison of least squares collocation with least squares techniques

    NASA Technical Reports Server (NTRS)

    Argentiero, P.; Lowrey, B.

    1976-01-01

    The least squares collocation algorithm for estimating gravity anomalies from geodetic data is shown to be an application of the well known regression equations which provide the mean and covariance of a random vector (gravity anomalies) given a realization of a correlated random vector (geodetic data). It is also shown that the collocation solution for gravity anomalies is equivalent to the conventional least-squares-Stokes' function solution when the conventional solution utilizes properly weighted zero a priori estimates. The mathematical and physical assumptions underlying the least squares collocation estimator are described, and its numerical properties are compared with the numerical properties of the conventional least squares estimator.

  10. Hydrologic, Hydraulic, and Flood Analyses of the Blackberry Creek Watershed, Kendall County, Illinois

    USGS Publications Warehouse

    Murphy, Elizabeth A.; Straub, Timothy D.; Soong, David T.; Hamblen, Christopher S.

    2007-01-01

    Results of the hydrologic model, flood-frequency, hydraulic model, and flood-hazard analysis of the Blackberry Creek watershed in Kendall County, Illinois, indicate that the 100-year and 500-year flood plains cover approximately 3,699 and 3,762 acres of land, respectively. On the basis of land-cover data for 2003, most of the land in the flood plains was cropland and residential land. Although many acres of residential land were included in the flood plain, this land was mostly lawns, with 25 homes within the 100-year flood plain, and 41 homes within the 500-year flood plain in the 2003 aerial photograph. This report describes the data collection activities to refine the hydrologic and hydraulic models used in an earlier study of the Kane County part of the Blackberry Creek watershed and to extend the flood-frequency analysis through water year 2003. The results of the flood-hazard analysis are presented in graphical and tabular form. The hydrologic model, Hydrological Simulation Program - FORTRAN (HSPF), was used to simulate continuous water movement through various land-use patterns in the watershed. Flood-frequency analysis was applied to an annual maximum series to determine flood quantiles in subbasins for flood-hazard analysis. The Hydrologic Engineering Center- River Analysis System (HEC-RAS) hydraulic model was used to determine the 100-year and 500-year flood elevations, and the 100-year floodway. The hydraulic model was calibrated and verified using observations during three storms at two crest-stage gages and the U.S. Geological Survey streamflowgaging station near Yorkville. Digital maps of the 100-year and 500-year flood plains and the 100-year floodway for each tributary and the main stem of Blackberry Creek were compiled.

  11. Understanding Kendal aquifer system: a baseline analysis for sustainable water management proposal

    NASA Astrophysics Data System (ADS)

    Lukman, A.; Aryanto, M. D.; Pramudito, A.; Andhika, A.; Irawan, D. E.

    2017-07-01

    North coast of Java has been grown as the center of economic activities and major connectivity hub for Sumatra and Bali. Sustainable water management must support such role. One of the basis is to understand the baseline of groundwater occurrences and potential. However the complex alluvium aquiver system has not been well-understood. A geoelectric measurements were performed to determine which rock layer has a good potential as groundwater aquifers in the northern coast of Kaliwungu Regency, Kendal District, Central Java province. Total of 10 vertical electrical sounding (VES) points has been performed, using a Schlumberger configuration with the current electrode spacing (AB/2) varies between 200 - 300 m and the potential difference electrode spacing (MN/2) varies between 0.5 to 20 m with depths target ranging between 150 - 200 m. Geoelectrical data processing is done using Ip2win software which generates resistivity value, thickness and depth of subsurface rock layers. Based on the correlation between resistivity value with regional geology, hydrogeology and local well data, we identify three aquifer layers. The first layer is silty clay with resistivity values vary between 0 - 10 ohm.m, then the second layer is tuffaceous claystone with resistivity value between 10 - 60 ohm.m. Both layers serve as impermeable layer. The third layer is sandy tuff with resistivity value between 60 - 100 ohm.m which serves as a confined aquifer layer located at 70 - 100 m below surface. Its thickness is vary between 70 to 110 m. The aquifer layer is a mixing of volcanic and alluvium sediment, which is a member of Damar Formation. The stratification of the aquifer system may change in short distance and depth. This natural setting prevent us to make a long continuous correlation between layers. Aquifer discharge is estimated between 5 - 71 L/s with the potential deep well locations lies in the west and southeast part of the study area. These hydrogeological settings should be used

  12. AKLSQF - LEAST SQUARES CURVE FITTING

    NASA Technical Reports Server (NTRS)

    Kantak, A. V.

    1994-01-01

    The Least Squares Curve Fitting program, AKLSQF, computes the polynomial which will least square fit uniformly spaced data easily and efficiently. The program allows the user to specify the tolerable least squares error in the fitting or allows the user to specify the polynomial degree. In both cases AKLSQF returns the polynomial and the actual least squares fit error incurred in the operation. The data may be supplied to the routine either by direct keyboard entry or via a file. AKLSQF produces the least squares polynomial in two steps. First, the data points are least squares fitted using the orthogonal factorial polynomials. The result is then reduced to a regular polynomial using Sterling numbers of the first kind. If an error tolerance is specified, the program starts with a polynomial of degree 1 and computes the least squares fit error. The degree of the polynomial used for fitting is then increased successively until the error criterion specified by the user is met. At every step the polynomial as well as the least squares fitting error is printed to the screen. In general, the program can produce a curve fitting up to a 100 degree polynomial. All computations in the program are carried out under Double Precision format for real numbers and under long integer format for integers to provide the maximum accuracy possible. AKLSQF was written for an IBM PC X/AT or compatible using Microsoft's Quick Basic compiler. It has been implemented under DOS 3.2.1 using 23K of RAM. AKLSQF was developed in 1989.

  13. Applications of square-related theorems

    NASA Astrophysics Data System (ADS)

    Srinivasan, V. K.

    2014-04-01

    The square centre of a given square is the point of intersection of its two diagonals. When two squares of different side lengths share the same square centre, there are in general four diagonals that go through the same square centre. The Two Squares Theorem developed in this paper summarizes some nice theoretical conclusions that can be obtained when two squares of different side lengths share the same square centre. These results provide the theoretical basis for two of the constructions given in the book of H.S. Hall and F.H. Stevens , 'A Shorter School Geometry, Part 1, Metric Edition'. In page 134 of this book, the authors present, in exercise 4, a practical construction which leads to a verification of the Pythagorean theorem. Subsequently in Theorems 29 and 30, the authors present the standard proofs of the Pythagorean theorem and its converse. In page 140, the authors present, in exercise 15, what amounts to a geometric construction, whose verification involves a simple algebraic identity. Both the constructions are of great importance and can be replicated by using the standard equipment provided in a 'geometry toolbox' carried by students in high schools. The author hopes that the results proved in this paper, in conjunction with the two constructions from the above-mentioned book, would provide high school students an appreciation of the celebrated theorem of Pythagoras. The diagrams that accompany this document are based on the free software GeoGebra. The author formally acknowledges his indebtedness to the creators of this free software at the end of this document.

  14. A New Class of Pandiagonal Squares

    ERIC Educational Resources Information Center

    Loly, P. D.; Steeds, M. J.

    2005-01-01

    An interesting class of purely pandiagonal, i.e. non-magic, whole number (integer) squares of orders (row/column dimension) of the powers of two which are related to Gray codes and square Karnaugh maps has been identified. Treated as matrices these squares possess just two non-zero eigenvalues. The construction of these squares has been automated…

  15. The Square Kilometre Array

    NASA Technical Reports Server (NTRS)

    Huynh, Minh; Lazio, Joseph

    2011-01-01

    The Square Kilometre Array (SKA) will be the premier instrument to study radiation at centimetre and metre wavelengths from the cosmos, and in particular neutral hydrogen, the most abundant element in the universe. The SKA will probe the dawn of galaxy formation as well as allow advances in many other areas of astronomy, such as fundamental physics, astro-biology and cosmology. The SKA will have a collecting area of up to one million square metres spread over at least 3000 km, providing a collecting area more than twenty times greater than the current largest radio telescope. Its field of view on the sky will be several tens of square degrees with potentially several large (100 square degrees) independent beams at the lower frequencies, providing a survey speed many thousands of times greater than current facilities. This paper summarises the key science drivers of the SKA and provides an update on the international project.

  16. A parallel row-based algorithm with error control for standard-cell replacement on a hypercube multiprocessor

    NASA Technical Reports Server (NTRS)

    Sargent, Jeff Scott

    1988-01-01

    A new row-based parallel algorithm for standard-cell placement targeted for execution on a hypercube multiprocessor is presented. Key features of this implementation include a dynamic simulated-annealing schedule, row-partitioning of the VLSI chip image, and two novel new approaches to controlling error in parallel cell-placement algorithms; Heuristic Cell-Coloring and Adaptive (Parallel Move) Sequence Control. Heuristic Cell-Coloring identifies sets of noninteracting cells that can be moved repeatedly, and in parallel, with no buildup of error in the placement cost. Adaptive Sequence Control allows multiple parallel cell moves to take place between global cell-position updates. This feedback mechanism is based on an error bound derived analytically from the traditional annealing move-acceptance profile. Placement results are presented for real industry circuits and the performance is summarized of an implementation on the Intel iPSC/2 Hypercube. The runtime of this algorithm is 5 to 16 times faster than a previous program developed for the Hypercube, while producing equivalent quality placement. An integrated place and route program for the Intel iPSC/2 Hypercube is currently being developed.

  17. XAFS study of copper(II) complexes with square planar and square pyramidal coordination geometries

    NASA Astrophysics Data System (ADS)

    Gaur, A.; Klysubun, W.; Nitin Nair, N.; Shrivastava, B. D.; Prasad, J.; Srivastava, K.

    2016-08-01

    X-ray absorption fine structure of six Cu(II) complexes, Cu2(Clna)4 2H2O (1), Cu2(ac)4 2H2O (2), Cu2(phac)4 (pyz) (3), Cu2(bpy)2(na)2 H2O (ClO4) (4), Cu2(teen)4(OH)2(ClO4)2 (5) and Cu2(tmen)4(OH)2(ClO4)2 (6) (where ac, phac, pyz, bpy, na, teen, tmen = acetate, phenyl acetate, pyrazole, bipyridine, nicotinic acid, tetraethyethylenediamine, tetramethylethylenediamine, respectively), which were supposed to have square pyramidal and square planar coordination geometries have been investigated. The differences observed in the X-ray absorption near edge structure (XANES) features of the standard compounds having four, five and six coordination geometry points towards presence of square planar and square pyramidal geometry around Cu centre in the studied complexes. The presence of intense pre-edge feature in the spectra of four complexes, 1-4, indicates square pyramidal coordination. Another important XANES feature, present in complexes 5 and 6, is prominent shoulder in the rising part of edge whose intensity decreases in the presence of axial ligands and thus indicates four coordination in these complexes. Ab initio calculations were carried out for square planar and square pyramidal Cu centres to observe the variation of 4p density of states in the presence and absence of axial ligands. To determine the number and distance of scattering atoms around Cu centre in the complexes, EXAFS analysis has been done using the paths obtained from Cu(II) oxide model and an axial Cu-O path from model of a square pyramidal complex. The results obtained from EXAFS analysis have been reported which confirmed the inference drawn from XANES features. Thus, it has been shown that these paths from model of a standard compound can be used to determine the structural parameters for complexes having unknown structure.

  18. Parallel implementation and evaluation of motion estimation system algorithms on a distributed memory multiprocessor using knowledge based mappings

    NASA Technical Reports Server (NTRS)

    Choudhary, Alok Nidhi; Leung, Mun K.; Huang, Thomas S.; Patel, Janak H.

    1989-01-01

    Several techniques to perform static and dynamic load balancing techniques for vision systems are presented. These techniques are novel in the sense that they capture the computational requirements of a task by examining the data when it is produced. Furthermore, they can be applied to many vision systems because many algorithms in different systems are either the same, or have similar computational characteristics. These techniques are evaluated by applying them on a parallel implementation of the algorithms in a motion estimation system on a hypercube multiprocessor system. The motion estimation system consists of the following steps: (1) extraction of features; (2) stereo match of images in one time instant; (3) time match of images from different time instants; (4) stereo match to compute final unambiguous points; and (5) computation of motion parameters. It is shown that the performance gains when these data decomposition and load balancing techniques are used are significant and the overhead of using these techniques is minimal.

  19. A design fix to supervisory control for fault-tolerant scheduling of real-time multiprocessor systems with aperiodic tasks

    NASA Astrophysics Data System (ADS)

    Devaraj, Rajesh; Sarkar, Arnab; Biswas, Santosh

    2015-11-01

    In the article 'Supervisory control for fault-tolerant scheduling of real-time multiprocessor systems with aperiodic tasks', Park and Cho presented a systematic way of computing a largest fault-tolerant and schedulable language that provides information on whether the scheduler (i.e., supervisor) should accept or reject a newly arrived aperiodic task. The computation of such a language is mainly dependent on the task execution model presented in their paper. However, the task execution model is unable to capture the situation when the fault of a processor occurs even before the task has arrived. Consequently, a task execution model that does not capture this fact may possibly be assigned for execution on a faulty processor. This problem has been illustrated with an appropriate example. Then, the task execution model of Park and Cho has been modified to strengthen the requirement that none of the tasks are assigned for execution on a faulty processor.

  20. 36 CFR 910.67 - Square guidelines.

    Code of Federal Regulations, 2010 CFR

    2010-07-01

    ... 36 Parks, Forests, and Public Property 3 2010-07-01 2010-07-01 false Square guidelines. 910.67 Section 910.67 Parks, Forests, and Public Property PENNSYLVANIA AVENUE DEVELOPMENT CORPORATION GENERAL... DEVELOPMENT AREA Glossary of Terms § 910.67 Square guidelines. Square Guidelines establish the Corporation's...

  1. 36 CFR 910.67 - Square guidelines.

    Code of Federal Regulations, 2014 CFR

    2014-07-01

    ... 36 Parks, Forests, and Public Property 3 2014-07-01 2014-07-01 false Square guidelines. 910.67 Section 910.67 Parks, Forests, and Public Property PENNSYLVANIA AVENUE DEVELOPMENT CORPORATION GENERAL... DEVELOPMENT AREA Glossary of Terms § 910.67 Square guidelines. Square Guidelines establish the Corporation's...

  2. 36 CFR 910.67 - Square guidelines.

    Code of Federal Regulations, 2012 CFR

    2012-07-01

    ... 36 Parks, Forests, and Public Property 3 2012-07-01 2012-07-01 false Square guidelines. 910.67 Section 910.67 Parks, Forests, and Public Property PENNSYLVANIA AVENUE DEVELOPMENT CORPORATION GENERAL... DEVELOPMENT AREA Glossary of Terms § 910.67 Square guidelines. Square Guidelines establish the Corporation's...

  3. 36 CFR 910.67 - Square guidelines.

    Code of Federal Regulations, 2011 CFR

    2011-07-01

    ... 36 Parks, Forests, and Public Property 3 2011-07-01 2011-07-01 false Square guidelines. 910.67 Section 910.67 Parks, Forests, and Public Property PENNSYLVANIA AVENUE DEVELOPMENT CORPORATION GENERAL... DEVELOPMENT AREA Glossary of Terms § 910.67 Square guidelines. Square Guidelines establish the Corporation's...

  4. A Note on Magic Squares

    ERIC Educational Resources Information Center

    Williams, Horace E.

    1974-01-01

    A method for generating 3x3 magic squares is developed. A series of questions relating to these magic squares is posed. An invesitgation using matrix methods is suggested with some questions for consideration. (LS)

  5. Infant perception of the rotating Kanizsa square.

    PubMed

    Yoshino, Daisuke; Idesawa, Masanori; Kanazawa, So; Yamaguchi, Masami K

    2010-04-01

    This study examined the perception of the rotating Kanizsa square by using a fixed-trial familiarization method. If the Kanizsa square is rotated across the pacmen, adult observers perceive not only a rotating illusory square, but also an illusory expansion/contraction motion of this square. The phenomenon is called a "rotational dynamic illusion". In experiments 1 and 2, we investigated whether infants perceived the rotational dynamic illusion, finding that 3-8-month-old infants perceived the rotational dynamic illusion as a simple rotation of the Kanizsa square. In experiment 3, we investigated whether infants perceived the rotational dynamic illusion as a rotation of the Kanizsa square or as a deformation of shape, finding that 3-4-month-old infants did perceive the rotational dynamic illusion as a rotation of the Kanizsa square. Our results show that while 3-8-month-old infants perceive the rotating Kanizsa square, however, it is difficult for the infants to extract expansion/contraction motion from the rotational dynamic illusion. Copyright 2010 Elsevier Inc. All rights reserved.

  6. Using Least Squares for Error Propagation

    ERIC Educational Resources Information Center

    Tellinghuisen, Joel

    2015-01-01

    The method of least-squares (LS) has a built-in procedure for estimating the standard errors (SEs) of the adjustable parameters in the fit model: They are the square roots of the diagonal elements of the covariance matrix. This means that one can use least-squares to obtain numerical values of propagated errors by defining the target quantities as…

  7. On estimating gravity anomalies - A comparison of least squares collocation with conventional least squares techniques

    NASA Technical Reports Server (NTRS)

    Argentiero, P.; Lowrey, B.

    1977-01-01

    The least squares collocation algorithm for estimating gravity anomalies from geodetic data is shown to be an application of the well known regression equations which provide the mean and covariance of a random vector (gravity anomalies) given a realization of a correlated random vector (geodetic data). It is also shown that the collocation solution for gravity anomalies is equivalent to the conventional least-squares-Stokes' function solution when the conventional solution utilizes properly weighted zero a priori estimates. The mathematical and physical assumptions underlying the least squares collocation estimator are described.

  8. Eta Squared and Partial Eta Squared as Measures of Effect Size in Educational Research

    ERIC Educational Resources Information Center

    Richardson, John T. E.

    2011-01-01

    Eta squared measures the proportion of the total variance in a dependent variable that is associated with the membership of different groups defined by an independent variable. Partial eta squared is a similar measure in which the effects of other independent variables and interactions are partialled out. The development of these measures is…

  9. Exploring the use of I/O nodes for computation in a MIMD multiprocessor

    NASA Technical Reports Server (NTRS)

    Kotz, David; Cai, Ting

    1995-01-01

    As parallel systems move into the production scientific-computing world, the emphasis will be on cost-effective solutions that provide high throughput for a mix of applications. Cost effective solutions demand that a system make effective use of all of its resources. Many MIMD multiprocessors today, however, distinguish between 'compute' and 'I/O' nodes, the latter having attached disks and being dedicated to running the file-system server. This static division of responsibilities simplifies system management but does not necessarily lead to the best performance in workloads that need a different balance of computation and I/O. Of course, computational processes sharing a node with a file-system service may receive less CPU time, network bandwidth, and memory bandwidth than they would on a computation-only node. In this paper we begin to examine this issue experimentally. We found that high performance I/O does not necessarily require substantial CPU time, leaving plenty of time for application computation. There were some complex file-system requests, however, which left little CPU time available to the application. (The impact on network and memory bandwidth still needs to be determined.) For applications (or users) that cannot tolerate an occasional interruption, we recommend that they continue to use only compute nodes. For tolerant applications needing more cycles than those provided by the compute nodes, we recommend that they take full advantage of both compute and I/O nodes for computation, and that operating systems should make this possible.

  10. Structural and dynamic characteristics in monolayer square ice.

    PubMed

    Zhu, YinBo; Wang, FengChao; Wu, HengAn

    2017-07-28

    When water is constrained between two sheets of graphene, it becomes an intriguing monolayer solid with a square pattern due to the ultrahigh van der Waals pressure. However, the square ice phase has become a matter of debate due to the insufficient experimental interpretation and the slightly rhomboidal feature in simulated monolayer square-like structures. Here, we performed classical molecular dynamics simulations to reveal monolayer square ice in graphene nanocapillaries from the perspective of structure and dynamic characteristics. Monolayer square-like ice (instantaneous snapshot), assembled square-rhombic units with stacking faults, is a long-range ordered structure, in which the square and rhombic units are assembled in an order of alternative distribution, and the other rhombic unit forms stacking faults (polarized water chains). Spontaneous flipping of water molecules in monolayer square-like ice is intrinsic and induces transformations among different elementary units, resulting in the structural evolution of monolayer square ice in dynamics. The existence of stacking faults should be attributed to the spontaneous flipping behavior of water molecules under ambient temperature. Statistical averaging results (thermal average positions) demonstrate the inherent square characteristic of monolayer square ice. The simulated data and insight obtained here might be significant for understanding the topological structure and dynamic behavior of monolayer square ice.

  11. A pipelined architecture for real time correction of non-uniformity in infrared focal plane arrays imaging system using multiprocessors

    NASA Astrophysics Data System (ADS)

    Zou, Liang; Fu, Zhuang; Zhao, YanZheng; Yang, JunYan

    2010-07-01

    This paper proposes a kind of pipelined electric circuit architecture implemented in FPGA, a very large scale integrated circuit (VLSI), which efficiently deals with the real time non-uniformity correction (NUC) algorithm for infrared focal plane arrays (IRFPA). Dual Nios II soft-core processors and a DSP with a 64+ core together constitute this image system. Each processor undertakes own systematic task, coordinating its work with each other's. The system on programmable chip (SOPC) in FPGA works steadily under the global clock frequency of 96Mhz. Adequate time allowance makes FPGA perform NUC image pre-processing algorithm with ease, which has offered favorable guarantee for the work of post image processing in DSP. And at the meantime, this paper presents a hardware (HW) and software (SW) co-design in FPGA. Thus, this systematic architecture yields an image processing system with multiprocessor, and a smart solution to the satisfaction with the performance of the system.

  12. Combinatorics of least-squares trees.

    PubMed

    Mihaescu, Radu; Pachter, Lior

    2008-09-09

    A recurring theme in the least-squares approach to phylogenetics has been the discovery of elegant combinatorial formulas for the least-squares estimates of edge lengths. These formulas have proved useful for the development of efficient algorithms, and have also been important for understanding connections among popular phylogeny algorithms. For example, the selection criterion of the neighbor-joining algorithm is now understood in terms of the combinatorial formulas of Pauplin for estimating tree length. We highlight a phylogenetically desirable property that weighted least-squares methods should satisfy, and provide a complete characterization of methods that satisfy the property. The necessary and sufficient condition is a multiplicative four-point condition that the variance matrix needs to satisfy. The proof is based on the observation that the Lagrange multipliers in the proof of the Gauss-Markov theorem are tree-additive. Our results generalize and complete previous work on ordinary least squares, balanced minimum evolution, and the taxon-weighted variance model. They also provide a time-optimal algorithm for computation.

  13. Catalytic N 2 Reduction to Silylamines and Thermodynamics of N 2 Binding at Square Planar Fe

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

    Prokopchuk, Demyan E.; Wiedner, Eric S.; Walter, Eric D.

    The geometric constraints imposed by a tetradentate P 4N 2 ligand play an essential role in stabilizing square planar Fe complexes with changes in metal oxidation state. A combination of high-pressure electrochemistry and variable temperature UV-vis spectroscopy were used to obtain these thermodynamic measurements, while X-ray crystallography, 57Fe Mössbauer spectroscopy, and EPR spectroscopy were used to fully characterize these new compounds. Analysis of Fe 0, FeI, and FeII complexes reveals that the free energy of N 2 binding across three oxidation states spans more than 37 kcal mol -1. The square pyramidal Fe0(N 2)(P 4N 2) complex catalyzes the conversionmore » of N 2 to N(SiR 3) 3 (R = Me, Et) at room temperature, representing the highest turnover number (TON) of any Fe-based N 2 silylation catalyst to date (up to 65 equiv N(SiMe 3) 3 per Fe center). Elevated N 2 pressures (> 1 atm) have a dramatic effect on catalysis, increasing N 2 solubility and the thermodynamic N 2 binding affinity at Fe0(N 2)(P 4N 2). Acknowledgment. This research was supported as part of the Center for Molecular Electrocatalysis, an Energy Frontier Research Center funded by the U.S. Department of Energy (DOE), Office of Science, Office of Basic Energy Sciences. EPR experiments were performed using EMSL, a national scientific user facility sponsored by the DOE’s Office of Biological and Environmental Research and located at Pacific Northwest National Laboratory (PNNL). PNNL is operated by Battelle for the U.S. DOE. Computational resources were provided by the National Energy Research Scientific Computing Center (NERSC) at Lawrence Berkeley National Laboratory. The authors thank Prof. Yisong Alex Guo at Carnegie Mellon University for recording Mössbauer data for some complexes and Emma Wellington and Kaye Kuphal for their assistance with the collection of Mössbauer data at Colgate University, Dr. Katarzyna Grubel for X-ray assistance, and Dr. Rosalie Chu for mass spectrometry

  14. Least-squares model-based halftoning

    NASA Astrophysics Data System (ADS)

    Pappas, Thrasyvoulos N.; Neuhoff, David L.

    1992-08-01

    A least-squares model-based approach to digital halftoning is proposed. It exploits both a printer model and a model for visual perception. It attempts to produce an 'optimal' halftoned reproduction, by minimizing the squared error between the response of the cascade of the printer and visual models to the binary image and the response of the visual model to the original gray-scale image. Conventional methods, such as clustered ordered dither, use the properties of the eye only implicitly, and resist printer distortions at the expense of spatial and gray-scale resolution. In previous work we showed that our printer model can be used to modify error diffusion to account for printer distortions. The modified error diffusion algorithm has better spatial and gray-scale resolution than conventional techniques, but produces some well known artifacts and asymmetries because it does not make use of an explicit eye model. Least-squares model-based halftoning uses explicit eye models and relies on printer models that predict distortions and exploit them to increase, rather than decrease, both spatial and gray-scale resolution. We have shown that the one-dimensional least-squares problem, in which each row or column of the image is halftoned independently, can be implemented with the Viterbi's algorithm. Unfortunately, no closed form solution can be found in two dimensions. The two-dimensional least squares solution is obtained by iterative techniques. Experiments show that least-squares model-based halftoning produces more gray levels and better spatial resolution than conventional techniques. We also show that the least- squares approach eliminates the problems associated with error diffusion. Model-based halftoning can be especially useful in transmission of high quality documents using high fidelity gray-scale image encoders. As we have shown, in such cases halftoning can be performed at the receiver, just before printing. Apart from coding efficiency, this approach

  15. Generalized adjustment by least squares ( GALS).

    USGS Publications Warehouse

    Elassal, A.A.

    1983-01-01

    The least-squares principle is universally accepted as the basis for adjustment procedures in the allied fields of geodesy, photogrammetry and surveying. A prototype software package for Generalized Adjustment by Least Squares (GALS) is described. The package is designed to perform all least-squares-related functions in a typical adjustment program. GALS is capable of supporting development of adjustment programs of any size or degree of complexity. -Author

  16. Investigating bias in squared regression structure coefficients

    PubMed Central

    Nimon, Kim F.; Zientek, Linda R.; Thompson, Bruce

    2015-01-01

    The importance of structure coefficients and analogs of regression weights for analysis within the general linear model (GLM) has been well-documented. The purpose of this study was to investigate bias in squared structure coefficients in the context of multiple regression and to determine if a formula that had been shown to correct for bias in squared Pearson correlation coefficients and coefficients of determination could be used to correct for bias in squared regression structure coefficients. Using data from a Monte Carlo simulation, this study found that squared regression structure coefficients corrected with Pratt's formula produced less biased estimates and might be more accurate and stable estimates of population squared regression structure coefficients than estimates with no such corrections. While our findings are in line with prior literature that identified multicollinearity as a predictor of bias in squared regression structure coefficients but not coefficients of determination, the findings from this study are unique in that the level of predictive power, number of predictors, and sample size were also observed to contribute bias in squared regression structure coefficients. PMID:26217273

  17. Collinearity in Least-Squares Analysis

    ERIC Educational Resources Information Center

    de Levie, Robert

    2012-01-01

    How useful are the standard deviations per se, and how reliable are results derived from several least-squares coefficients and their associated standard deviations? When the output parameters obtained from a least-squares analysis are mutually independent, as is often assumed, they are reliable estimators of imprecision and so are the functions…

  18. Latin and Cross Latin Squares

    ERIC Educational Resources Information Center

    Emanouilidis, Emanuel

    2008-01-01

    Latin squares were first introduced and studied by the famous mathematician Leonhard Euler in the 1700s. Through the years, Latin squares have been used in areas such as statistics, graph theory, coding theory, the generation of random numbers as well as in the design and analysis of experiments. Recently, with the international popularity of…

  19. 2015 RECS Square Footage Methodology

    EIA Publications

    2017-01-01

    The square footage, or size, of a home is an important characteristic in understanding its energy use. The amounts of energy used for major end uses such as space heating and air conditioning are strongly related to the size of the home. The Residential Energy Consumption Survey (RECS), conducted by the U.S. Energy Information Administration (EIA), collects information about the size of the responding housing units as part of the data collection protocol. The methods used to collect data on housing unit size produce square footage estimates that are unique to RECS because they are designed to capture the energy-consuming space within a home. This document discusses how the 2015 RECS square footage estimates were produced.

  20. From Square Dance to Mathematics

    ERIC Educational Resources Information Center

    Bremer, Zoe

    2010-01-01

    In this article, the author suggests a cross-curricular idea that can link with PE, dance, music and history. Teacher David Schmitz, a maths teacher in Illinois who was also a square dance caller, had developed a maths course that used the standard square dance syllabus to teach mathematical principles. He presents an intensive, two-week course…

  1. Efficient mapping algorithms for scheduling robot inverse dynamics computation on a multiprocessor system

    NASA Technical Reports Server (NTRS)

    Lee, C. S. G.; Chen, C. L.

    1989-01-01

    Two efficient mapping algorithms for scheduling the robot inverse dynamics computation consisting of m computational modules with precedence relationship to be executed on a multiprocessor system consisting of p identical homogeneous processors with processor and communication costs to achieve minimum computation time are presented. An objective function is defined in terms of the sum of the processor finishing time and the interprocessor communication time. The minimax optimization is performed on the objective function to obtain the best mapping. This mapping problem can be formulated as a combination of the graph partitioning and the scheduling problems; both have been known to be NP-complete. Thus, to speed up the searching for a solution, two heuristic algorithms were proposed to obtain fast but suboptimal mapping solutions. The first algorithm utilizes the level and the communication intensity of the task modules to construct an ordered priority list of ready modules and the module assignment is performed by a weighted bipartite matching algorithm. For a near-optimal mapping solution, the problem can be solved by the heuristic algorithm with simulated annealing. These proposed optimization algorithms can solve various large-scale problems within a reasonable time. Computer simulations were performed to evaluate and verify the performance and the validity of the proposed mapping algorithms. Finally, experiments for computing the inverse dynamics of a six-jointed PUMA-like manipulator based on the Newton-Euler dynamic equations were implemented on an NCUBE/ten hypercube computer to verify the proposed mapping algorithms. Computer simulation and experimental results are compared and discussed.

  2. 36 CFR § 910.67 - Square guidelines.

    Code of Federal Regulations, 2013 CFR

    2013-07-01

    ... 36 Parks, Forests, and Public Property 3 2013-07-01 2012-07-01 true Square guidelines. § 910.67 Section § 910.67 Parks, Forests, and Public Property PENNSYLVANIA AVENUE DEVELOPMENT CORPORATION GENERAL... DEVELOPMENT AREA Glossary of Terms § 910.67 Square guidelines. Square Guidelines establish the Corporation's...

  3. Evict on write, a management strategy for a prefetch unit and/or first level cache in a multiprocessor system with speculative execution

    DOEpatents

    Gara, Alan; Ohmacht, Martin

    2014-09-16

    In a multiprocessor system with at least two levels of cache, a speculative thread may run on a core processor in parallel with other threads. When the thread seeks to do a write to main memory, this access is to be written through the first level cache to the second level cache. After the write though, the corresponding line is deleted from the first level cache and/or prefetch unit, so that any further accesses to the same location in main memory have to be retrieved from the second level cache. The second level cache keeps track of multiple versions of data, where more than one speculative thread is running in parallel, while the first level cache does not have any of the versions during speculation. A switch allows choosing between modes of operation of a speculation blind first level cache.

  4. A New Take on an Old Square

    ERIC Educational Resources Information Center

    Richardson, Janessa; Bachman, Rachel M.

    2017-01-01

    This article describes a preservice teacher's imaginative exploration of completing the square through a process of reasoning and sense making. She recounts historical perspectives and her own discoveries in the process of completing the square. Through this process of sense making, she engaged with the content standard of completing the square to…

  5. Mathematical Construction of Magic Squares Utilizing Base-N Arithmetic

    ERIC Educational Resources Information Center

    O'Brien, Thomas D.

    2006-01-01

    Magic squares have been of interest as a source of recreation for over 4,500 years. A magic square consists of a square array of n[squared] positive and distinct integers arranged so that the sum of any column, row, or main diagonal is the same. In particular, an array of consecutive integers from 1 to n[squared] forming an nxn magic square is…

  6. Orthogonalizing EM: A design-based least squares algorithm

    PubMed Central

    Xiong, Shifeng; Dai, Bin; Huling, Jared; Qian, Peter Z. G.

    2016-01-01

    We introduce an efficient iterative algorithm, intended for various least squares problems, based on a design of experiments perspective. The algorithm, called orthogonalizing EM (OEM), works for ordinary least squares and can be easily extended to penalized least squares. The main idea of the procedure is to orthogonalize a design matrix by adding new rows and then solve the original problem by embedding the augmented design in a missing data framework. We establish several attractive theoretical properties concerning OEM. For the ordinary least squares with a singular regression matrix, an OEM sequence converges to the Moore-Penrose generalized inverse-based least squares estimator. For ordinary and penalized least squares with various penalties, it converges to a point having grouping coherence for fully aliased regression matrices. Convergence and the convergence rate of the algorithm are examined. Finally, we demonstrate that OEM is highly efficient for large-scale least squares and penalized least squares problems, and is considerably faster than competing methods when n is much larger than p. Supplementary materials for this article are available online. PMID:27499558

  7. Orthogonalizing EM: A design-based least squares algorithm.

    PubMed

    Xiong, Shifeng; Dai, Bin; Huling, Jared; Qian, Peter Z G

    We introduce an efficient iterative algorithm, intended for various least squares problems, based on a design of experiments perspective. The algorithm, called orthogonalizing EM (OEM), works for ordinary least squares and can be easily extended to penalized least squares. The main idea of the procedure is to orthogonalize a design matrix by adding new rows and then solve the original problem by embedding the augmented design in a missing data framework. We establish several attractive theoretical properties concerning OEM. For the ordinary least squares with a singular regression matrix, an OEM sequence converges to the Moore-Penrose generalized inverse-based least squares estimator. For ordinary and penalized least squares with various penalties, it converges to a point having grouping coherence for fully aliased regression matrices. Convergence and the convergence rate of the algorithm are examined. Finally, we demonstrate that OEM is highly efficient for large-scale least squares and penalized least squares problems, and is considerably faster than competing methods when n is much larger than p . Supplementary materials for this article are available online.

  8. BIOMECHANICS. Why the seahorse tail is square.

    PubMed

    Porter, Michael M; Adriaens, Dominique; Hatton, Ross L; Meyers, Marc A; McKittrick, Joanna

    2015-07-03

    Whereas the predominant shapes of most animal tails are cylindrical, seahorse tails are square prisms. Seahorses use their tails as flexible grasping appendages, in spite of a rigid bony armor that fully encases their bodies. We explore the mechanics of two three-dimensional-printed models that mimic either the natural (square prism) or hypothetical (cylindrical) architecture of a seahorse tail to uncover whether or not the square geometry provides any functional advantages. Our results show that the square prism is more resilient when crushed and provides a mechanism for preserving articulatory organization upon extensive bending and twisting, as compared with its cylindrical counterpart. Thus, the square architecture is better than the circular one in the context of two integrated functions: grasping ability and crushing resistance. Copyright © 2015, American Association for the Advancement of Science.

  9. Recommendation of LightSquared Subsidiary LLC

    DOT National Transportation Integrated Search

    2011-01-01

    After a five-month effort, LightSquared, in cooperation with interested federal agencies and the commercial GPS device industry, has issued a Report on the results of intensive testing of the interaction between LightSquareds planned terrestrial o...

  10. FCC Conditional Waiver for LightSquared

    DOT National Transportation Integrated Search

    2011-01-26

    In this Order and Authorization (Order), we grant LightSquared Subsidiary LLC : (LightSquared), a Mobile Satellite Service (MSS)1 licensee in the L-Band,2 a conditional waiver of the : Ancillary Terrestrial Component (ATC) integrated service ru...

  11. Delayed ripple counter simplifies square-root computation

    NASA Technical Reports Server (NTRS)

    Cliff, R.

    1965-01-01

    Ripple subtract technique simplifies the logic circuitry required in a binary computing device to derive the square root of a number. Successively higher numbers are subtracted from a register containing the number out of which the square root is to be extracted. The last number subtracted will be the closest integer to the square root of the number.

  12. Going Off-the-Pegs: Revisiting Geoboard Squares

    ERIC Educational Resources Information Center

    Canada, Daniel L.; Ciancetta, Matthew A.; Blair, Stephen D.

    2014-01-01

    How many squares can be found on a typical 5 × 5 geoboard? Teachers who are unfamiliar with this question may wish to stop here and reflect a bit. The question can lead to wonderful student discourse: How can someone tell if something is a square? Should squares be counted that are the same size (but in a different location) or just different…

  13. A spectral mimetic least-squares method

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

    Bochev, Pavel; Gerritsma, Marc

    We present a spectral mimetic least-squares method for a model diffusion–reaction problem, which preserves key conservation properties of the continuum problem. Casting the model problem into a first-order system for two scalar and two vector variables shifts material properties from the differential equations to a pair of constitutive relations. We also use this system to motivate a new least-squares functional involving all four fields and show that its minimizer satisfies the differential equations exactly. Discretization of the four-field least-squares functional by spectral spaces compatible with the differential operators leads to a least-squares method in which the differential equations are alsomore » satisfied exactly. Additionally, the latter are reduced to purely topological relationships for the degrees of freedom that can be satisfied without reference to basis functions. Furthermore, numerical experiments confirm the spectral accuracy of the method and its local conservation.« less

  14. A spectral mimetic least-squares method

    DOE PAGES

    Bochev, Pavel; Gerritsma, Marc

    2014-09-01

    We present a spectral mimetic least-squares method for a model diffusion–reaction problem, which preserves key conservation properties of the continuum problem. Casting the model problem into a first-order system for two scalar and two vector variables shifts material properties from the differential equations to a pair of constitutive relations. We also use this system to motivate a new least-squares functional involving all four fields and show that its minimizer satisfies the differential equations exactly. Discretization of the four-field least-squares functional by spectral spaces compatible with the differential operators leads to a least-squares method in which the differential equations are alsomore » satisfied exactly. Additionally, the latter are reduced to purely topological relationships for the degrees of freedom that can be satisfied without reference to basis functions. Furthermore, numerical experiments confirm the spectral accuracy of the method and its local conservation.« less

  15. The chi-square test of independence.

    PubMed

    McHugh, Mary L

    2013-01-01

    The Chi-square statistic is a non-parametric (distribution free) tool designed to analyze group differences when the dependent variable is measured at a nominal level. Like all non-parametric statistics, the Chi-square is robust with respect to the distribution of the data. Specifically, it does not require equality of variances among the study groups or homoscedasticity in the data. It permits evaluation of both dichotomous independent variables, and of multiple group studies. Unlike many other non-parametric and some parametric statistics, the calculations needed to compute the Chi-square provide considerable information about how each of the groups performed in the study. This richness of detail allows the researcher to understand the results and thus to derive more detailed information from this statistic than from many others. The Chi-square is a significance statistic, and should be followed with a strength statistic. The Cramer's V is the most common strength test used to test the data when a significant Chi-square result has been obtained. Advantages of the Chi-square include its robustness with respect to distribution of the data, its ease of computation, the detailed information that can be derived from the test, its use in studies for which parametric assumptions cannot be met, and its flexibility in handling data from both two group and multiple group studies. Limitations include its sample size requirements, difficulty of interpretation when there are large numbers of categories (20 or more) in the independent or dependent variables, and tendency of the Cramer's V to produce relative low correlation measures, even for highly significant results.

  16. Squared eigenfunctions for the Sasa-Satsuma equation

    NASA Astrophysics Data System (ADS)

    Yang, Jianke; Kaup, D. J.

    2009-02-01

    Squared eigenfunctions are quadratic combinations of Jost functions and adjoint Jost functions which satisfy the linearized equation of an integrable equation. They are needed for various studies related to integrable equations, such as the development of its soliton perturbation theory. In this article, squared eigenfunctions are derived for the Sasa-Satsuma equation whose spectral operator is a 3×3 system, while its linearized operator is a 2×2 system. It is shown that these squared eigenfunctions are sums of two terms, where each term is a product of a Jost function and an adjoint Jost function. The procedure of this derivation consists of two steps: First is to calculate the variations of the potentials via variations of the scattering data by the Riemann-Hilbert method. The second one is to calculate the variations of the scattering data via the variations of the potentials through elementary calculations. While this procedure has been used before on other integrable equations, it is shown here, for the first time, that for a general integrable equation, the functions appearing in these variation relations are precisely the squared eigenfunctions and adjoint squared eigenfunctions satisfying, respectively, the linearized equation and the adjoint linearized equation of the integrable system. This proof clarifies this procedure and provides a unified explanation for previous results of squared eigenfunctions on individual integrable equations. This procedure uses primarily the spectral operator of the Lax pair. Thus two equations in the same integrable hierarchy will share the same squared eigenfunctions (except for a time-dependent factor). In the Appendix, the squared eigenfunctions are presented for the Manakov equations whose spectral operator is closely related to that of the Sasa-Satsuma equation.

  17. The Square Light Clock and Special Relativity

    ERIC Educational Resources Information Center

    Galli, J. Ronald; Amiri, Farhang

    2012-01-01

    A thought experiment that includes a square light clock is similar to the traditional vertical light beam and mirror clock, except it is made up of four mirrors placed at a 45[degree] angle at each corner of a square of length L[subscript 0], shown in Fig. 1. Here we have shown the events as measured in the rest frame of the square light clock. By…

  18. Three Perspectives on Teaching Least Squares

    ERIC Educational Resources Information Center

    Scariano, Stephen M.; Calzada, Maria

    2004-01-01

    The method of Least Squares is the most widely used technique for fitting a straight line to data, and it is typically discussed in several undergraduate courses. This article focuses on three developmentally different approaches for solving the Least Squares problem that are suitable for classroom exposition.

  19. On roots and squares - estimation, intuition and creativity

    NASA Astrophysics Data System (ADS)

    Patkin, Dorit; Gazit, Avikam

    2013-12-01

    The paper presents findings of a small scale study of a few items related to problem solving with squares and roots, for different teacher groups (pre-service and in-service mathematics teachers: elementary and junior high school). The research participants were asked to explain what would be the units digit of a natural number to be squared in order to obtain a certain units digit as a result. They were also asked to formulate a rule - an algorithm for calculating the square of a 2-digit number which is a multiple of 5. Based on this knowledge and estimation capability, they were required to find, without using calculators, the square roots of given natural numbers. The findings show that most of the participants had only partial intuition regarding the units' digit of a number which is squared when the units' digit of the square is known. At the same time, the participants manifested some evidence of creativity and flow of ideas in identifying the rule for calculating the square of a natural number whose units digit is 5. However, when asked to identify, by means of estimation and based on knowledge from previous items, the square roots of three natural numbers, only few of them managed to find the three roots by estimation.

  20. Quantized kernel least mean square algorithm.

    PubMed

    Chen, Badong; Zhao, Songlin; Zhu, Pingping; Príncipe, José C

    2012-01-01

    In this paper, we propose a quantization approach, as an alternative of sparsification, to curb the growth of the radial basis function structure in kernel adaptive filtering. The basic idea behind this method is to quantize and hence compress the input (or feature) space. Different from sparsification, the new approach uses the "redundant" data to update the coefficient of the closest center. In particular, a quantized kernel least mean square (QKLMS) algorithm is developed, which is based on a simple online vector quantization method. The analytical study of the mean square convergence has been carried out. The energy conservation relation for QKLMS is established, and on this basis we arrive at a sufficient condition for mean square convergence, and a lower and upper bound on the theoretical value of the steady-state excess mean square error. Static function estimation and short-term chaotic time-series prediction examples are presented to demonstrate the excellent performance.

  1. Elmo bumpy square plasma confinement device

    DOEpatents

    Owen, L.W.

    1985-01-01

    The invention is an Elmo bumpy type plasma confinement device having a polygonal configuration of closed magnet field lines for improved plasma confinement. In the preferred embodiment, the device is of a square configuration which is referred to as an Elmo bumpy square (EBS). The EBS is formed by four linear magnetic mirror sections each comprising a plurality of axisymmetric assemblies connected in series and linked by 90/sup 0/ sections of a high magnetic field toroidal solenoid type field generating coils. These coils provide corner confinement with a minimum of radial dispersion of the confined plasma to minimize the detrimental effects of the toroidal curvature of the magnetic field. Each corner is formed by a plurality of circular or elliptical coils aligned about the corner radius to provide maximum continuity in the closing of the magnetic field lines about the square configuration confining the plasma within a vacuum vessel located within the various coils forming the square configuration confinement geometry.

  2. Sets of Mutually Orthogonal Sudoku Latin Squares

    ERIC Educational Resources Information Center

    Vis, Timothy; Petersen, Ryan M.

    2009-01-01

    A Latin square of order "n" is an "n" x "n" array using n symbols, such that each symbol appears exactly once in each row and column. A set of Latin squares is c ordered pairs of symbols appearing in the cells of the array are distinct. The popular puzzle Sudoku involves Latin squares with n = 9, along with the added condition that each of the 9…

  3. 2-D weighted least-squares phase unwrapping

    DOEpatents

    Ghiglia, Dennis C.; Romero, Louis A.

    1995-01-01

    Weighted values of interferometric signals are unwrapped by determining the least squares solution of phase unwrapping for unweighted values of the interferometric signals; and then determining the least squares solution of phase unwrapping for weighted values of the interferometric signals by preconditioned conjugate gradient methods using the unweighted solutions as preconditioning values. An output is provided that is representative of the least squares solution of phase unwrapping for weighted values of the interferometric signals.

  4. Multiplier less high-speed squaring circuit for binary numbers

    NASA Astrophysics Data System (ADS)

    Sethi, Kabiraj; Panda, Rutuparna

    2015-03-01

    The squaring operation is important in many applications in signal processing, cryptography etc. In general, squaring circuits reported in the literature use fast multipliers. A novel idea of a squaring circuit without using multipliers is proposed in this paper. Ancient Indian method used for squaring decimal numbers is extended here for binary numbers. The key to our success is that no multiplier is used. Instead, one squaring circuit is used. The hardware architecture of the proposed squaring circuit is presented. The design is coded in VHDL and synthesised and simulated in Xilinx ISE Design Suite 10.1 (Xilinx Inc., San Jose, CA, USA). It is implemented in Xilinx Vertex 4vls15sf363-12 device (Xilinx Inc.). The results in terms of time delay and area is compared with both modified Booth's algorithm and squaring circuit using Vedic multipliers. Our proposed squaring circuit seems to have better performance in terms of both speed and area.

  5. 2-D weighted least-squares phase unwrapping

    DOEpatents

    Ghiglia, D.C.; Romero, L.A.

    1995-06-13

    Weighted values of interferometric signals are unwrapped by determining the least squares solution of phase unwrapping for unweighted values of the interferometric signals; and then determining the least squares solution of phase unwrapping for weighted values of the interferometric signals by preconditioned conjugate gradient methods using the unweighted solutions as preconditioning values. An output is provided that is representative of the least squares solution of phase unwrapping for weighted values of the interferometric signals. 6 figs.

  6. William Wilde and 1 Merrion Square.

    PubMed

    McEntegart, R

    2016-05-01

    William Wilde spent the final third of his life, from 1855 to 1876, in 1 Merrion Square. During the first half of his occupancy of the house his career blossomed to its fullest; the second decade, on the other hand, was marked by scandal, personal tragedy, and an unhappy professional and social decline. This paper considers the background to the development of Merrion Square, the architectural history of 1 Merrion Square from its building in 1762 to the arrival of the Wildes in 1855, the attractions and possibilities which the house offered for William Wilde, the major architectural expansion of the building which he commissioned in 1859, and aspects of his and his family's life in the house.

  7. Square One TV: Coding of Segments.

    ERIC Educational Resources Information Center

    McNeal, Betsy; Singer, Karen

    This report describes the system used to code each segment of Square One TV for content analysis of all four seasons of production. The analysis is intended to aid in the assessment of how well Square One is meeting its three goals: (1) to promote positive attitudes toward, and enthusiasm for, mathematics; (2) to encourage the use and application…

  8. Enhancing Students' Understanding of Square Roots

    ERIC Educational Resources Information Center

    Wiesman, Jeff L.

    2015-01-01

    Students enrolled in a middle school prealgebra or algebra course often struggle to conceptualize and understand the meaning of radical notation when it is introduced. For example, although it is important for students to approximate the decimal value of a number such as [square root of] 30 and estimate the value of a square root in the form of…

  9. A fast least-squares algorithm for population inference

    PubMed Central

    2013-01-01

    Background Population inference is an important problem in genetics used to remove population stratification in genome-wide association studies and to detect migration patterns or shared ancestry. An individual’s genotype can be modeled as a probabilistic function of ancestral population memberships, Q, and the allele frequencies in those populations, P. The parameters, P and Q, of this binomial likelihood model can be inferred using slow sampling methods such as Markov Chain Monte Carlo methods or faster gradient based approaches such as sequential quadratic programming. This paper proposes a least-squares simplification of the binomial likelihood model motivated by a Euclidean interpretation of the genotype feature space. This results in a faster algorithm that easily incorporates the degree of admixture within the sample of individuals and improves estimates without requiring trial-and-error tuning. Results We show that the expected value of the least-squares solution across all possible genotype datasets is equal to the true solution when part of the problem has been solved, and that the variance of the solution approaches zero as its size increases. The Least-squares algorithm performs nearly as well as Admixture for these theoretical scenarios. We compare least-squares, Admixture, and FRAPPE for a variety of problem sizes and difficulties. For particularly hard problems with a large number of populations, small number of samples, or greater degree of admixture, least-squares performs better than the other methods. On simulated mixtures of real population allele frequencies from the HapMap project, Admixture estimates sparsely mixed individuals better than Least-squares. The least-squares approach, however, performs within 1.5% of the Admixture error. On individual genotypes from the HapMap project, Admixture and least-squares perform qualitatively similarly and within 1.2% of each other. Significantly, the least-squares approach nearly always converges 1

  10. A fast least-squares algorithm for population inference.

    PubMed

    Parry, R Mitchell; Wang, May D

    2013-01-23

    Population inference is an important problem in genetics used to remove population stratification in genome-wide association studies and to detect migration patterns or shared ancestry. An individual's genotype can be modeled as a probabilistic function of ancestral population memberships, Q, and the allele frequencies in those populations, P. The parameters, P and Q, of this binomial likelihood model can be inferred using slow sampling methods such as Markov Chain Monte Carlo methods or faster gradient based approaches such as sequential quadratic programming. This paper proposes a least-squares simplification of the binomial likelihood model motivated by a Euclidean interpretation of the genotype feature space. This results in a faster algorithm that easily incorporates the degree of admixture within the sample of individuals and improves estimates without requiring trial-and-error tuning. We show that the expected value of the least-squares solution across all possible genotype datasets is equal to the true solution when part of the problem has been solved, and that the variance of the solution approaches zero as its size increases. The Least-squares algorithm performs nearly as well as Admixture for these theoretical scenarios. We compare least-squares, Admixture, and FRAPPE for a variety of problem sizes and difficulties. For particularly hard problems with a large number of populations, small number of samples, or greater degree of admixture, least-squares performs better than the other methods. On simulated mixtures of real population allele frequencies from the HapMap project, Admixture estimates sparsely mixed individuals better than Least-squares. The least-squares approach, however, performs within 1.5% of the Admixture error. On individual genotypes from the HapMap project, Admixture and least-squares perform qualitatively similarly and within 1.2% of each other. Significantly, the least-squares approach nearly always converges 1.5- to 6-times faster

  11. Vapor-liquid equilibrium and critical asymmetry of square well and short square well chain fluids.

    PubMed

    Li, Liyan; Sun, Fangfang; Chen, Zhitong; Wang, Long; Cai, Jun

    2014-08-07

    The critical behavior of square well fluids with variable interaction ranges and of short square well chain fluids have been investigated by grand canonical ensemble Monte Carlo simulations. The critical temperatures and densities were estimated by a finite-size scaling analysis with the help of histogram reweighting technique. The vapor-liquid coexistence curve in the near-critical region was determined using hyper-parallel tempering Monte Carlo simulations. The simulation results for coexistence diameters show that the contribution of |t|(1-α) to the coexistence diameter dominates the singular behavior in all systems investigated. The contribution of |t|(2β) to the coexistence diameter is larger for the system with a smaller interaction range λ. While for short square well chain fluids, longer the chain length, larger the contribution of |t|(2β). The molecular configuration greatly influences the critical asymmetry: a short soft chain fluid shows weaker critical asymmetry than a stiff chain fluid with same chain length.

  12. A Weighted Least Squares Approach To Robustify Least Squares Estimates.

    ERIC Educational Resources Information Center

    Lin, Chowhong; Davenport, Ernest C., Jr.

    This study developed a robust linear regression technique based on the idea of weighted least squares. In this technique, a subsample of the full data of interest is drawn, based on a measure of distance, and an initial set of regression coefficients is calculated. The rest of the data points are then taken into the subsample, one after another,…

  13. A Solution to Weighted Sums of Squares as a Square

    ERIC Educational Resources Information Center

    Withers, Christopher S.; Nadarajah, Saralees

    2012-01-01

    For n = 1, 2, ... , we give a solution (x[subscript 1], ... , x[subscript n], N) to the Diophantine integer equation [image omitted]. Our solution has N of the form n!, in contrast to other solutions in the literature that are extensions of Euler's solution for N, a sum of squares. More generally, for given n and given integer weights m[subscript…

  14. Understanding Least Squares through Monte Carlo Calculations

    ERIC Educational Resources Information Center

    Tellinghuisen, Joel

    2005-01-01

    The method of least squares (LS) is considered as an important data analysis tool available to physical scientists. The mathematics of linear least squares(LLS) is summarized in a very compact matrix rotation that renders it practically "formulaic".

  15. Square ice in graphene nanocapillaries.

    PubMed

    Algara-Siller, G; Lehtinen, O; Wang, F C; Nair, R R; Kaiser, U; Wu, H A; Geim, A K; Grigorieva, I V

    2015-03-26

    Bulk water exists in many forms, including liquid, vapour and numerous crystalline and amorphous phases of ice, with hexagonal ice being responsible for the fascinating variety of snowflakes. Much less noticeable but equally ubiquitous is water adsorbed at interfaces and confined in microscopic pores. Such low-dimensional water determines aspects of various phenomena in materials science, geology, biology, tribology and nanotechnology. Theory suggests many possible phases for adsorbed and confined water, but it has proved challenging to assess its crystal structure experimentally. Here we report high-resolution electron microscopy imaging of water locked between two graphene sheets, an archetypal example of hydrophobic confinement. The observations show that the nanoconfined water at room temperature forms 'square ice'--a phase having symmetry qualitatively different from the conventional tetrahedral geometry of hydrogen bonding between water molecules. Square ice has a high packing density with a lattice constant of 2.83 Å and can assemble in bilayer and trilayer crystallites. Molecular dynamics simulations indicate that square ice should be present inside hydrophobic nanochannels independently of their exact atomic nature.

  16. Square ice in graphene nanocapillaries

    NASA Astrophysics Data System (ADS)

    Algara-Siller, G.; Lehtinen, O.; Wang, F. C.; Nair, R. R.; Kaiser, U.; Wu, H. A.; Geim, A. K.; Grigorieva, I. V.

    2015-03-01

    Bulk water exists in many forms, including liquid, vapour and numerous crystalline and amorphous phases of ice, with hexagonal ice being responsible for the fascinating variety of snowflakes. Much less noticeable but equally ubiquitous is water adsorbed at interfaces and confined in microscopic pores. Such low-dimensional water determines aspects of various phenomena in materials science, geology, biology, tribology and nanotechnology. Theory suggests many possible phases for adsorbed and confined water, but it has proved challenging to assess its crystal structure experimentally. Here we report high-resolution electron microscopy imaging of water locked between two graphene sheets, an archetypal example of hydrophobic confinement. The observations show that the nanoconfined water at room temperature forms `square ice'--a phase having symmetry qualitatively different from the conventional tetrahedral geometry of hydrogen bonding between water molecules. Square ice has a high packing density with a lattice constant of 2.83 Å and can assemble in bilayer and trilayer crystallites. Molecular dynamics simulations indicate that square ice should be present inside hydrophobic nanochannels independently of their exact atomic nature.

  17. Quantum magnetic phase transition in square-octagon lattice.

    PubMed

    Bao, An; Tao, Hong-Shuai; Liu, Hai-Di; Zhang, XiaoZhong; Liu, Wu-Ming

    2014-11-05

    Quantum magnetic phase transition in square-octagon lattice was investigated by cellular dynamical mean field theory combining with continuous time quantum Monte Carlo algorithm. Based on the systematic calculation on the density of states, the double occupancy and the Fermi surface evolution of square-octagon lattice, we presented the phase diagrams of this splendid many particle system. The competition between the temperature and the on-site repulsive interaction in the isotropic square-octagon lattice has shown that both antiferromagnetic and paramagnetic order can be found not only in the metal phase, but also in the insulating phase. Antiferromagnetic metal phase disappeared in the phase diagram that consists of the anisotropic parameter λ and the on-site repulsive interaction U while the other phases still can be detected at T = 0.17. The results found in this work may contribute to understand well the properties of some consuming systems that have square-octagon structure, quasi square-octagon structure, such as ZnO.

  18. Anomalous structural transition of confined hard squares.

    PubMed

    Gurin, Péter; Varga, Szabolcs; Odriozola, Gerardo

    2016-11-01

    Structural transitions are examined in quasi-one-dimensional systems of freely rotating hard squares, which are confined between two parallel walls. We find two competing phases: one is a fluid where the squares have two sides parallel to the walls, while the second one is a solidlike structure with a zigzag arrangement of the squares. Using transfer matrix method we show that the configuration space consists of subspaces of fluidlike and solidlike phases, which are connected with low probability microstates of mixed structures. The existence of these connecting states makes the thermodynamic quantities continuous and precludes the possibility of a true phase transition. However, thermodynamic functions indicate strong tendency for the phase transition and our replica exchange Monte Carlo simulation study detects several important markers of the first order phase transition. The distinction of a phase transition from a structural change is practically impossible with simulations and experiments in such systems like the confined hard squares.

  19. Synthesis of square-planar aluminum(III) complexes.

    PubMed

    Thompson, Emily J; Myers, Thomas W; Berben, Louise A

    2014-12-15

    The synthesis of two four-coordinate and square planar (SP) complexes of aluminum(III) is presented. Reaction of a phenyl-substituted bis(imino)pyridine ligand that is reduced by two electrons, Na2((Ph)I2P(2-)), with AlCl3 afforded five-coordinate [((Ph)I2P(2-))Al(THF)Cl] (1). Square-planar [((Ph)I2P(2-))AlCl] (2) was obtained by performing the same reaction in diethyl ether followed by lyphilization of 2 from benzene. The four-coordinate geometry index for 2, τ4, is 0.22, where 0 would be a perfectly square-planar molecule. The analogous aluminum hydride complex, [((Ph)I2P(2-))AlH] (3), is also square-planar, and was characterized crystallographically and has τ4=0.13. Both 2 and 3 are Lewis acidic and bind 2,6-lutidine. © 2014 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  20. Square-core bundles for astronomical imaging

    NASA Astrophysics Data System (ADS)

    Bryant, Julia J.; Bland-Hawthorn, Joss

    2012-09-01

    Optical fibre imaging bundles (hexabundles) are proving to be the next logical step for large galaxy surveys as they offer spatially-resolved spectroscopy of galaxies and can be used with conventional fibre positioners. Hexabundles have been effectively demonstrated in the Sydney-AAO Multi-object IFS (SAMI) instrument at the Anglo- Australian Telescope[5]. Based on the success of hexabundles that have circular cores, we have characterised a bundle made instead from square-core fibres. Square cores naturally pack more evenly, which reduces the interstitial holes and can increase the covering, or filling fraction. Furthermore the regular packing simplifies the process of combining and dithering the final images. We discuss the relative issues of filling fraction, focal ratio degradation (FRD), and cross-talk, and find that square-core bundles perform well enough to warrant further development as a format for imaging fibre bundles.

  1. Redefining the magic square on numerical characters

    NASA Astrophysics Data System (ADS)

    Nasution, M. K. M.; Sawaluddin

    2018-02-01

    As a number system, the magic square is different from the others. Characteristic depends not only on size but also depends on numerical character in computation. This paper has redefined the term of magic square formally, by exposing the inductive general characteristics of cases to numerical ordering of numbers.

  2. Ion temperature gradient driven transport in tokamaks with square shaping

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

    Joiner, N.; Dorland, W.

    2010-06-15

    Advanced tokamak schemes which may offer significant improvement to plasma confinement on the usual large aspect ratio Dee-shaped flux surface configuration are of great interest to the fusion community. One possibility is to introduce square shaping to the flux surfaces. The gyrokinetic code GS2[Kotschenreuther et al., Comput. Phys. Commun. 88, 128 (1996)] is used to study linear stability and the resulting nonlinear thermal transport of the ion temperature gradient driven (ITG) mode in tokamak equilibria with square shaping. The maximum linear growth rate of ITG modes is increased by negative squareness (diamond shaping) and reduced by positive values (square shaping).more » The dependence of thermal transport produced by saturated ITG instabilities on squareness is not as clear. The overall trend follows that of the linear instability, heat and particle fluxes increase with negative squareness and decrease with positive squareness. This is contradictory to recent experimental results [Holcomb et al., Phys. Plasmas 16, 056116 (2009)] which show a reduction in transport with negative squareness. This may be reconciled as a reduction in transport (consistent with the experiment) is observed at small negative values of the squareness parameter.« less

  3. Computational design of RNA parts, devices, and transcripts with kinetic folding algorithms implemented on multiprocessor clusters.

    PubMed

    Thimmaiah, Tim; Voje, William E; Carothers, James M

    2015-01-01

    With progress toward inexpensive, large-scale DNA assembly, the demand for simulation tools that allow the rapid construction of synthetic biological devices with predictable behaviors continues to increase. By combining engineered transcript components, such as ribosome binding sites, transcriptional terminators, ligand-binding aptamers, catalytic ribozymes, and aptamer-controlled ribozymes (aptazymes), gene expression in bacteria can be fine-tuned, with many corollaries and applications in yeast and mammalian cells. The successful design of genetic constructs that implement these kinds of RNA-based control mechanisms requires modeling and analyzing kinetically determined co-transcriptional folding pathways. Transcript design methods using stochastic kinetic folding simulations to search spacer sequence libraries for motifs enabling the assembly of RNA component parts into static ribozyme- and dynamic aptazyme-regulated expression devices with quantitatively predictable functions (rREDs and aREDs, respectively) have been described (Carothers et al., Science 334:1716-1719, 2011). Here, we provide a detailed practical procedure for computational transcript design by illustrating a high throughput, multiprocessor approach for evaluating spacer sequences and generating functional rREDs. This chapter is written as a tutorial, complete with pseudo-code and step-by-step instructions for setting up a computational cluster with an Amazon, Inc. web server and performing the large numbers of kinefold-based stochastic kinetic co-transcriptional folding simulations needed to design functional rREDs and aREDs. The method described here should be broadly applicable for designing and analyzing a variety of synthetic RNA parts, devices and transcripts.

  4. Spacecraft inertia estimation via constrained least squares

    NASA Technical Reports Server (NTRS)

    Keim, Jason A.; Acikmese, Behcet A.; Shields, Joel F.

    2006-01-01

    This paper presents a new formulation for spacecraft inertia estimation from test data. Specifically, the inertia estimation problem is formulated as a constrained least squares minimization problem with explicit bounds on the inertia matrix incorporated as LMIs [linear matrix inequalities). The resulting minimization problem is a semidefinite optimization that can be solved efficiently with guaranteed convergence to the global optimum by readily available algorithms. This method is applied to data collected from a robotic testbed consisting of a freely rotating body. The results show that the constrained least squares approach produces more accurate estimates of the inertia matrix than standard unconstrained least squares estimation methods.

  5. Square tubing reduces cost of telescoping bridge crane hoist

    NASA Technical Reports Server (NTRS)

    Bernstein, G.; Graae, J.; Schraidt, J.

    1967-01-01

    Using standard square tubing in a telescoping arrangement reduces the cost of a bridge crane hoist. Because surface tolerances of square tubing need not be as accurate as the tubing used previously and because no spline is necessary, the square tubing is significantly less expensive than splined telescoping tubes.

  6. Optimal least-squares finite element method for elliptic problems

    NASA Technical Reports Server (NTRS)

    Jiang, Bo-Nan; Povinelli, Louis A.

    1991-01-01

    An optimal least squares finite element method is proposed for two dimensional and three dimensional elliptic problems and its advantages are discussed over the mixed Galerkin method and the usual least squares finite element method. In the usual least squares finite element method, the second order equation (-Delta x (Delta u) + u = f) is recast as a first order system (-Delta x p + u = f, Delta u - p = 0). The error analysis and numerical experiment show that, in this usual least squares finite element method, the rate of convergence for flux p is one order lower than optimal. In order to get an optimal least squares method, the irrotationality Delta x p = 0 should be included in the first order system.

  7. Simulated sawing of squares: a tool to improve wood utilization

    Treesearch

    R. Bruce Anderson; Hugh W. Reynolds

    1981-01-01

    Manufacturers of turning squares have had difficulty finding the best combination of bolt and square sizes for producing squares most efficiently. A computer simulation technique has been developed for inexpensively detemining the best combination of bolt and square size. Ranges of bolt dimeters to achieve a stated level of yield are given. The manufacturer can choose...

  8. Complete band gaps of phononic crystal plates with square rods.

    PubMed

    El-Naggar, Sahar A; Mostafa, Samia I; Rafat, Nadia H

    2012-04-01

    Much of previous work has been devoted in studying complete band gaps for bulk phononic crystal (PC). In this paper, we theoretically investigate the existence and widths of these gaps for PC plates. We focus our attention on steel rods of square cross sectional area embedded in epoxy matrix. The equations for calculating the dispersion relation for square rods in a square or a triangular lattice have been derived. Our analysis is based on super cell plane wave expansion (SC-PWE) method. The influence of inclusions filling factor and plate thickness on the existence and width of the phononic band gaps has been discussed. Our calculations show that there is a certain filling factor (f=0.55) below which arrangement of square rods in a triangular lattice is superior to the arrangement in a square lattice. A comparison between square and circular cross sectional rods reveals that the former has superior normalized gap width than the latter in case of a square lattice. This situation is switched in case of a triangular lattice. Moreover, a maximum normalized gap width of 0.7 can be achieved for PC plate of square rods embedded in a square lattice and having height 90% of the lattice constant. Copyright © 2011 Elsevier B.V. All rights reserved.

  9. Discrete square root filtering - A survey of current techniques.

    NASA Technical Reports Server (NTRS)

    Kaminskii, P. G.; Bryson, A. E., Jr.; Schmidt, S. F.

    1971-01-01

    Current techniques in square root filtering are surveyed and related by applying a duality association. Four efficient square root implementations are suggested, and compared with three common conventional implementations in terms of computational complexity and precision. It is shown that the square root computational burden should not exceed the conventional by more than 50% in most practical problems. An examination of numerical conditioning predicts that the square root approach can yield twice the effective precision of the conventional filter in ill-conditioned problems. This prediction is verified in two examples.

  10. Modulation bandwidth enhancement for coupled twin-square microcavity lasers.

    PubMed

    Xiao, Zhi-Xiong; Huang, Yong-Zhen; Yang, Yue-De; Tang, Min; Xiao, Jin-Long

    2017-08-15

    Modulation bandwidth enhancements are investigated for coupled twin-square microcavity lasers due to photon-photon resonance effect. For a coupled twin-square microcavity laser with the square side length of 20 μm, we demonstrate the increase of 3-dB modulation bandwidth from 9.6 GHz to 19.5 GHz, by adjusting the resonance mode wavelength interval between two square microcavities. The enhanced modulation bandwidth is explained by rate equation analysis, and numerical simulations are conducted for large signal modulation with improved eye-diagrams at 40 Gbit/s.

  11. On the Denesting of Nested Square Roots

    ERIC Educational Resources Information Center

    Gkioulekas, Eleftherios

    2017-01-01

    We present the basic theory of denesting nested square roots, from an elementary point of view, suitable for lower level coursework. Necessary and sufficient conditions are given for direct denesting, where the nested expression is rewritten as a sum of square roots of rational numbers, and for indirect denesting, where the nested expression is…

  12. Teaching Security Requirements Engineering Using SQUARE

    DTIC Science & Technology

    2011-02-01

    data to show the benefit of the approach we have discussed here. So far there have been some 300 downloads of the SQUARE educational material from the...CERT website. One of our goals this year is to conduct a sur- vey to find out about the usage of the material and its results. It is our hope that in...results. For exam- ple, SQUARE educational material was translated into Chinese and delivered at National Defence University in Taiwan. Feedback from

  13. Security Quality Requirements Engineering (SQUARE): Case Study Phase III

    DTIC Science & Technology

    2006-05-01

    Security Quality Requirements Engineering (SQUARE): Case Study Phase III Lydia Chung Frank Hung Eric Hough Don Ojoko-Adams Advisor...Engineering (SQUARE): Case Study Phase III CMU/SEI-2006-SR-003 Lydia Chung Frank Hung Eric Hough Don Ojoko-Adams Advisor Nancy R. Mead...1 1.1 The SQUARE Process ............................................................................... 1 1.2 Case Study Clients

  14. Measuring Differential Delays With Sine-Squared Pulses

    NASA Technical Reports Server (NTRS)

    Hurst, Robert N.

    1994-01-01

    Technique for measuring differential delays among red, green, and blue components of video signal transmitted on different parallel channels exploits sine-squared pulses that are parts of standard test signals transmitted during vertical blanking interval of frame period. Technique does not entail expense of test-signal generator. Also applicable to nonvideo signals including sine-squared pulses.

  15. Square Turing patterns in reaction-diffusion systems with coupled layers

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

    Li, Jing; Wang, Hongli, E-mail: hlwang@pku.edu.cn, E-mail: qi@pku.edu.cn; Center for Quantitative Biology, Peking University, Beijing 100871

    Square Turing patterns are usually unstable in reaction-diffusion systems and are rarely observed in corresponding experiments and simulations. We report here an example of spontaneous formation of square Turing patterns with the Lengyel-Epstein model of two coupled layers. The squares are found to be a result of the resonance between two supercritical Turing modes with an appropriate ratio. Besides, the spatiotemporal resonance of Turing modes resembles to the mode-locking phenomenon. Analysis of the general amplitude equations for square patterns reveals that the fixed point corresponding to square Turing patterns is stationary when the parameters adopt appropriate values.

  16. On squares of representations of compact Lie algebras

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

    Zeier, Robert, E-mail: robert.zeier@ch.tum.de; Zimborás, Zoltán, E-mail: zimboras@gmail.com

    We study how tensor products of representations decompose when restricted from a compact Lie algebra to one of its subalgebras. In particular, we are interested in tensor squares which are tensor products of a representation with itself. We show in a classification-free manner that the sum of multiplicities and the sum of squares of multiplicities in the corresponding decomposition of a tensor square into irreducible representations has to strictly grow when restricted from a compact semisimple Lie algebra to a proper subalgebra. For this purpose, relevant details on tensor products of representations are compiled from the literature. Since the summore » of squares of multiplicities is equal to the dimension of the commutant of the tensor-square representation, it can be determined by linear-algebra computations in a scenario where an a priori unknown Lie algebra is given by a set of generators which might not be a linear basis. Hence, our results offer a test to decide if a subalgebra of a compact semisimple Lie algebra is a proper one without calculating the relevant Lie closures, which can be naturally applied in the field of controlled quantum systems.« less

  17. Linear Least Squares for Correlated Data

    NASA Technical Reports Server (NTRS)

    Dean, Edwin B.

    1988-01-01

    Throughout the literature authors have consistently discussed the suspicion that regression results were less than satisfactory when the independent variables were correlated. Camm, Gulledge, and Womer, and Womer and Marcotte provide excellent applied examples of these concerns. Many authors have obtained partial solutions for this problem as discussed by Womer and Marcotte and Wonnacott and Wonnacott, which result in generalized least squares algorithms to solve restrictive cases. This paper presents a simple but relatively general multivariate method for obtaining linear least squares coefficients which are free of the statistical distortion created by correlated independent variables.

  18. A survey of various enhancement techniques for square rings antennas

    NASA Astrophysics Data System (ADS)

    Mumin, Abdul Rashid O.; Alias, Rozlan; Abdullah, Jiwa; Abdulhasan, Raed Abdulkareem; Ali, Jawad; Dahlan, Samsul Haimi; Awaleh, Abdisamad A.

    2017-09-01

    The square ring shape becomes a famous reconfiguration on antenna design. The researchers have been developed the square ring by different configurations. It has high efficiency and simple calculation method. The performance enhancement for an antenna is the main reason to use this setting. Furthermore, the multi-objectives for the antenna also are considered. In this paper, different studies of square ring shape are discussed. This shape is developed in five different techniques, which are the gain enhancement, dual band antenna, reconfigurable antenna, CSRR, and circularly polarization. Moreover, the validation between these configurations also demonstrates for square ring shapes. In particular, the square ring slot improved the gain by 4.3 dB, provide dual band resonance at 1.4 and 2.6 GHz while circular polarization at 1.54 GHz, and multi-mode antenna. However, square ring strip achieved an excellent band rejection on UWB antenna at 5.5 GHz. The square ring slot length is the most influential factor on the antenna performance, which refers to the free space wavelength. Finally, comparisons between these techniques are presented.

  19. Counting Triangles to Sum Squares

    ERIC Educational Resources Information Center

    DeMaio, Joe

    2012-01-01

    Counting complete subgraphs of three vertices in complete graphs, yields combinatorial arguments for identities for sums of squares of integers, odd integers, even integers and sums of the triangular numbers.

  20. Nonpreemptive run-time scheduling issues on a multitasked, multiprogrammed multiprocessor with dependencies, bidimensional tasks, folding and dynamic graphs

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

    Miller, Allan Ray

    1987-05-01

    Increases in high speed hardware have mandated studies in software techniques to exploit the parallel capabilities. This thesis examines the effects a run-time scheduler has on a multiprocessor. The model consists of directed, acyclic graphs, generated from serial FORTRAN benchmark programs by the parallel compiler Parafrase. A multitasked, multiprogrammed environment is created. Dependencies are generated by the compiler. Tasks are bidimensional, i.e., they may specify both time and processor requests. Processor requests may be folded into execution time by the scheduler. The graphs may arrive at arbitrary time intervals. The general case is NP-hard, thus, a variety of heuristics aremore » examined by a simulator. Multiprogramming demonstrates a greater need for a run-time scheduler than does monoprogramming for a variety of reasons, e.g., greater stress on the processors, a larger number of independent control paths, more variety in the task parameters, etc. The dynamic critical path series of algorithms perform well. Dynamic critical volume did not add much. Unfortunately, dynamic critical path maximizes turnaround time as well as throughput. Two schedulers are presented which balance throughput and turnaround time. The first requires classification of jobs by type; the second requires selection of a ratio value which is dependent upon system parameters. 45 refs., 19 figs., 20 tabs.« less

  1. Filter Tuning Using the Chi-Squared Statistic

    NASA Technical Reports Server (NTRS)

    Lilly-Salkowski, Tyler B.

    2017-01-01

    This paper examines the use of the Chi-square statistic as a means of evaluating filter performance. The goal of the process is to characterize the filter performance in the metric of covariance realism. The Chi-squared statistic is the value calculated to determine the realism of a covariance based on the prediction accuracy and the covariance values at a given point in time. Once calculated, it is the distribution of this statistic that provides insight on the accuracy of the covariance. The process of tuning an Extended Kalman Filter (EKF) for Aqua and Aura support is described, including examination of the measurement errors of available observation types, and methods of dealing with potentially volatile atmospheric drag modeling. Predictive accuracy and the distribution of the Chi-squared statistic, calculated from EKF solutions, are assessed.

  2. Highly Compact Circulators in Square-Lattice Photonic Crystal Waveguides

    PubMed Central

    Jin, Xin; Ouyang, Zhengbiao; Wang, Qiong; Lin, Mi; Wen, Guohua; Wang, Jingjing

    2014-01-01

    We propose, demonstrate and investigate highly compact circulators with ultra-low insertion loss in square-lattice- square-rod-photonic-crystal waveguides. Only a single magneto- optical square rod is required to be inserted into the cross center of waveguides, making the structure very compact and ultra efficient. The square rods around the center defect rod are replaced by several right-angled-triangle rods, reducing the insertion loss further and promoting the isolations as well. By choosing a linear-dispersion region and considering the mode patterns in the square magneto-optical rod, the operating mechanism of the circulator is analyzed. By applying the finite-element method together with the Nelder-Mead optimization method, an extremely low insertion loss of 0.02 dB for the transmitted wave and ultra high isolation of 46 dB∼48 dB for the isolated port are obtained. The idea presented can be applied to build circulators in different wavebands, e.g., microwave or Tera-Hertz. PMID:25415417

  3. Highly compact circulators in square-lattice photonic crystal waveguides.

    PubMed

    Jin, Xin; Ouyang, Zhengbiao; Wang, Qiong; Lin, Mi; Wen, Guohua; Wang, Jingjing

    2014-01-01

    We propose, demonstrate and investigate highly compact circulators with ultra-low insertion loss in square-lattice- square-rod-photonic-crystal waveguides. Only a single magneto- optical square rod is required to be inserted into the cross center of waveguides, making the structure very compact and ultra efficient. The square rods around the center defect rod are replaced by several right-angled-triangle rods, reducing the insertion loss further and promoting the isolations as well. By choosing a linear-dispersion region and considering the mode patterns in the square magneto-optical rod, the operating mechanism of the circulator is analyzed. By applying the finite-element method together with the Nelder-Mead optimization method, an extremely low insertion loss of 0.02 dB for the transmitted wave and ultra high isolation of 46 dB∼48 dB for the isolated port are obtained. The idea presented can be applied to build circulators in different wavebands, e.g., microwave or Tera-Hertz.

  4. Where Does RECS Square Footage Data Come From?

    EIA Publications

    2012-01-01

    The size of a home is a fixed characteristic strongly associated with the amount of energy consumed within it, particularly for space heating, air conditioning, lighting, and other appliances. As a part of the Residential Energy Consumption Survey (RECS), trained interviewers measure the square footage of each housing unit. RECS square footage data allow comparison of homes with varying characteristics. In-person measurements are vital because many alternate data sources, including property tax records, real estate listings, and, respondent estimates use varying definitions and under-estimate square footage as defined for the purposes of evaluating residential energy consumption.

  5. Phasing via pure crystallographic least squares: an unexpected feature.

    PubMed

    Burla, Maria Cristina; Carrozzini, Benedetta; Cascarano, Giovanni Luca; Giacovazzo, Carmelo; Polidori, Giampiero

    2018-03-01

    Crystallographic least-squares techniques, the main tool for crystal structure refinement of small and medium-size molecules, are for the first time used for ab initio phasing. It is shown that the chief obstacle to such use, the least-squares severe convergence limits, may be overcome by a multi-solution procedure able to progressively recognize and discard model atoms in false positions and to include in the current model new atoms sufficiently close to correct positions. The applications show that the least-squares procedure is able to solve many small structures without the use of important ancillary tools: e.g. no electron-density map is calculated as a support for the least-squares procedure.

  6. Spectral engineering for circular-side square microlasers.

    PubMed

    Weng, Hai-Zhong; Yang, Yue-De; Xiao, Jin-Long; Hao, You-Zeng; Huang, Yong-Zhen

    2018-04-16

    Spectral engineering has been demonstrated for the circular-side square microlasers with an output waveguide butt-coupled to one vertex. By carefully optimizing deformation parameter and waveguide connection angle, undesired high-order transverse modes are suppressed while the mode Q factors and the transverse-mode intervals are enhanced simultaneously for the low-order transverse modes. Dual-mode lasing with pure lasing spectra is realized experimentally for the circular-side square microlasers with side lengths of 16 μm, and the transverse mode intervals can be adjusted from 0.54 to 5.4 nm by changing the deformation parameter. Due to the enhanced mode confinement, single-mode lasing with a side-mode suppression-ratio of 36 dB is achieved for a 10μm-side-length circular-side square microlaser with a 1.5μm-wide waveguide.

  7. Distance-constrained orthogonal Latin squares for brain-computer interface.

    PubMed

    Luo, Gang; Min, Wanli

    2012-02-01

    The P300 brain-computer interface (BCI) using electroencephalogram (EEG) signals can allow amyotrophic lateral sclerosis (ALS) patients to instruct computers to perform tasks. To strengthen the P300 response and increase classification accuracy, we proposed an experimental design where characters are intensified according to orthogonal Latin square pairs. These orthogonal Latin square pairs satisfy certain distance constraint so that neighboring characters are not intensified simultaneously. However, it is unknown whether such distance-constrained, orthogonal Latin square pairs actually exist. In this paper, we show that for every matrix size commonly used in P300 BCI, thousands to millions of such distance-constrained, orthogonal Latin square pairs can be systematically and efficiently constructed and are sufficient for the purpose of being used in P300 BCI.

  8. Hinge specification for a square-faceted tetrahedral truss

    NASA Technical Reports Server (NTRS)

    Adams, L. R.

    1984-01-01

    A square-faceted tetrahedral truss is geometrically analyzed. Expressions are developed for single degree of freedom hinges which allow packaging of the structure into a configuration in which all members are parallel and closely packed in a square pattern. Deployment is sequential, thus providing control over the structure during deployment.

  9. C[squared] = Creative Coordinates

    ERIC Educational Resources Information Center

    McHugh, Shelley R.

    2007-01-01

    "C[squared] = Creative Coordinates" is an engaging group of tasks that fosters the integration of mathematics and art to create meaningful understanding. The project lets students illustrate of find an image, then plot points to map their design on a grid. The project usually takes about a week to complete. When it is finished, students who are…

  10. How-To-Do-It: Snails, Pill Bugs, Mealworms, and Chi-Square? Using Invertebrate Behavior to Illustrate Hypothesis Testing with Chi-Square.

    ERIC Educational Resources Information Center

    Biermann, Carol

    1988-01-01

    Described is a study designed to introduce students to the behavior of common invertebrate animals, and to use of the chi-square statistical technique. Discusses activities with snails, pill bugs, and mealworms. Provides an abbreviated chi-square table and instructions for performing the experiments and statistical tests. (CW)

  11. A Least-Squares Transport Equation Compatible with Voids

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

    Hansen, Jon; Peterson, Jacob; Morel, Jim

    Standard second-order self-adjoint forms of the transport equation, such as the even-parity, odd-parity, and self-adjoint angular flux equation, cannot be used in voids. Perhaps more important, they experience numerical convergence difficulties in near-voids. Here we present a new form of a second-order self-adjoint transport equation that has an advantage relative to standard forms in that it can be used in voids or near-voids. Our equation is closely related to the standard least-squares form of the transport equation with both equations being applicable in a void and having a nonconservative analytic form. However, unlike the standard least-squares form of the transportmore » equation, our least-squares equation is compatible with source iteration. It has been found that the standard least-squares form of the transport equation with a linear-continuous finite-element spatial discretization has difficulty in the thick diffusion limit. Here we extensively test the 1D slab-geometry version of our scheme with respect to void solutions, spatial convergence rate, and the intermediate and thick diffusion limits. We also define an effective diffusion synthetic acceleration scheme for our discretization. Our conclusion is that our least-squares S n formulation represents an excellent alternative to existing second-order S n transport formulations« less

  12. In Defense of the Chi-Square Continuity Correction.

    ERIC Educational Resources Information Center

    Veldman, Donald J.; McNemar, Quinn

    Published studies of the sampling distribution of chi-square with and without Yates' correction for continuity have been interpreted as discrediting the correction. Yates' correction actually produces a biased chi-square value which in turn yields a better estimate of the exact probability of the discrete event concerned when used in conjunction…

  13. A Stochastic Total Least Squares Solution of Adaptive Filtering Problem

    PubMed Central

    Ahmad, Noor Atinah

    2014-01-01

    An efficient and computationally linear algorithm is derived for total least squares solution of adaptive filtering problem, when both input and output signals are contaminated by noise. The proposed total least mean squares (TLMS) algorithm is designed by recursively computing an optimal solution of adaptive TLS problem by minimizing instantaneous value of weighted cost function. Convergence analysis of the algorithm is given to show the global convergence of the proposed algorithm, provided that the stepsize parameter is appropriately chosen. The TLMS algorithm is computationally simpler than the other TLS algorithms and demonstrates a better performance as compared with the least mean square (LMS) and normalized least mean square (NLMS) algorithms. It provides minimum mean square deviation by exhibiting better convergence in misalignment for unknown system identification under noisy inputs. PMID:24688412

  14. Square-lashing technique in segmental spinal instrumentation: a biomechanical study.

    PubMed

    Arlet, Vincent; Draxinger, Kevin; Beckman, Lorne; Steffen, Thomas

    2006-07-01

    Sublaminar wires have been used for many years for segmental spinal instrumentation in scoliosis surgery. More recently, stainless steel wires have been replaced by titanium cables. However, in rigid scoliotic curves, sublaminar wires or simple cables can either brake or pull out. The square-lashing technique was devised to avoid complications such as cable breakage or lamina cutout. The purpose of the study was therefore to test biomechanically the pull out and failure mode of simple sublaminar constructs versus the square-lashing technique. Individual vertebrae were subjected to pullout testing having one of two different constructs (single loop and square lashing) using either monofilament wire or multifilament cables. Four different methods of fixation were therefore tested: single wire construct, square-lashing wiring construct, single cable construct, and square-lashing cable construct. Ultimate failure load and failure mechanism were recorded. For the single wire the construct failed 12/16 times by wire breakage with an average ultimate failure load of 793 N. For the square-lashing wire the construct failed with pedicle fracture in 14/16, one bilateral lamina fracture, and one wire breakage. Ultimate failure load average was 1,239 N For the single cable the construct failed 12/16 times due to cable breakage (average force 1,162 N). 10/12 of these breakages were where the cable looped over the rod. For the square-lashing cable all of these constructs (16/16) failed by fracture of the pedicle with an average ultimate failure load of 1,388 N. The square-lashing construct had a higher pullout strength than the single loop and almost no cutting out from the lamina. The square-lashing technique with cables may therefore represent a new advance in segmental spinal instrumentation.

  15. Why square lattices are not seen on curved ionic membranes

    NASA Astrophysics Data System (ADS)

    Thomas, Creighton; Olvera de La Cruz, Monica

    2013-03-01

    Ionic crystalline membranes on curved surfaces are ubiquitous in nature, appearing for example on the membranes of halophilic organisms. Even when these membranes buckle into polyhedra with square or rectangular sides, the crystalline structure is seen to have hexagonal symmetry. Here, we theoretically and numerically investigate the effects of curvature on square lattices. Our model system consists of both positive and negative ions with a 1:1 charge ratio adsorbed onto the surface of a sphere. In flat space, the lowest-energy configuration of this system can be a square lattice. This bipartite arrangement is favored because there are two types of ions. It leads to a fundamentally different defect structure than what has been seen when triangular lattices are favored. We classify these defects and find that curvature disrupts long-range square symmetry in a crystal. Through numerical simulations, we see that small square regions are possible in some cases, but this phase coexists with other structures, limiting the scale of these square-lattice microstructures. Thus, at large length scales, curvature leads to triangular structures.

  16. Optical inverse-square displacement sensor

    DOEpatents

    Howe, R.D.; Kychakoff, G.

    1989-09-12

    This invention comprises an optical displacement sensor that uses the inverse-square attenuation of light reflected from a diffused surface to calculate the distance from the sensor to the reflecting surface. Light emerging from an optical fiber or the like is directed onto the surface whose distance is to be measured. The intensity I of reflected light is angle dependent, but within a sufficiently small solid angle it falls off as the inverse square of the distance from the surface. At least a pair of optical detectors are mounted to detect the reflected light within the small solid angle, their ends being at different distances R and R + [Delta]R from the surface. The distance R can then be found in terms of the ratio of the intensity measurements and the separation length as given in an equation. 10 figs.

  17. Optical inverse-square displacement sensor

    DOEpatents

    Howe, Robert D.; Kychakoff, George

    1989-01-01

    This invention comprises an optical displacement sensor that uses the inverse-square attenuation of light reflected from a diffused surface to calculate the distance from the sensor to the reflecting surface. Light emerging from an optical fiber or the like is directed onto the surface whose distance is to be measured. The intensity I of reflected light is angle dependent, but within a sufficiently small solid angle it falls off as the inverse square of the distance from the surface. At least a pair of optical detectors are mounted to detect the reflected light within the small solid angle, their ends being at different distances R and R+.DELTA.R from the surface. The distance R can then be found in terms of the ratio of the intensity measurements and the separation length as ##EQU1##

  18. Least Squares Moving-Window Spectral Analysis.

    PubMed

    Lee, Young Jong

    2017-08-01

    Least squares regression is proposed as a moving-windows method for analysis of a series of spectra acquired as a function of external perturbation. The least squares moving-window (LSMW) method can be considered an extended form of the Savitzky-Golay differentiation for nonuniform perturbation spacing. LSMW is characterized in terms of moving-window size, perturbation spacing type, and intensity noise. Simulation results from LSMW are compared with results from other numerical differentiation methods, such as single-interval differentiation, autocorrelation moving-window, and perturbation correlation moving-window methods. It is demonstrated that this simple LSMW method can be useful for quantitative analysis of nonuniformly spaced spectral data with high frequency noise.

  19. Analysis of Nonlinear Dynamics by Square Matrix Method

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

    Yu, Li Hua

    The nonlinear dynamics of a system with periodic structure can be analyzed using a square matrix. In this paper, we show that because the special property of the square matrix constructed for nonlinear dynamics, we can reduce the dimension of the matrix from the original large number for high order calculation to low dimension in the first step of the analysis. Then a stable Jordan decomposition is obtained with much lower dimension. The transformation to Jordan form provides an excellent action-angle approximation to the solution of the nonlinear dynamics, in good agreement with trajectories and tune obtained from tracking. Andmore » more importantly, the deviation from constancy of the new action-angle variable provides a measure of the stability of the phase space trajectories and their tunes. Thus the square matrix provides a novel method to optimize the nonlinear dynamic system. The method is illustrated by many examples of comparison between theory and numerical simulation. Finally, in particular, we show that the square matrix method can be used for optimization to reduce the nonlinearity of a system.« less

  20. Squares on a Checkerboard

    ERIC Educational Resources Information Center

    Schulman, Steven M.

    2014-01-01

    In this article the author describes a problem posed to his class, "How many squares are there on a checkerboard?" The problem is deliberately vague so that the teacher can get the students to begin asking questions. The first goal is to come to an agreement about what the problem means (Identify the problem). The second goal is to get…

  1. New broadband square-law detector

    NASA Technical Reports Server (NTRS)

    Reid, M. S.; Gardner, R. A.; Stelzried, C. T.

    1975-01-01

    Compact device has wide dynamic range, accurate square-law response, good thermal stability, high-level dc output with immunity to ground-loop problems, ability to insert known time constants for radiometric applications, and fast response times compatible with computer systems.

  2. Measuring the Hall weighting function for square and cloverleaf geometries

    NASA Astrophysics Data System (ADS)

    Scherschligt, Julia K.; Koon, Daniel W.

    2000-02-01

    We have directly measured the Hall weighting function—the sensitivity of a four-wire Hall measurement to the position of macroscopic inhomogeneities in Hall angle—for both a square shaped and a cloverleaf specimen. Comparison with the measured resistivity weighting function for a square geometry [D. W. Koon and W. K. Chan, Rev. Sci. Instrum. 69, 12 (1998)] proves that the two measurements sample the same specimen differently. For Hall measurements on both a square and a cloverleaf, the function is nonnegative with its maximum in the center and its minimum of zero at the edges of the square. Converting a square into a cloverleaf is shown to dramatically focus the measurement process onto a much smaller portion of the specimen. While our results agree qualitatively with theory, details are washed out, owing to the finite size of the magnetic probe used.

  3. On Roots and Squares--Estimation, Intuition and Creativity

    ERIC Educational Resources Information Center

    Patkin, Dorit; Gazit, Avikam

    2013-01-01

    The paper presents findings of a small scale study of a few items related to problem solving with squares and roots, for different teacher groups (pre-service and in-service mathematics teachers: elementary and junior high school). The research participants were asked to explain what would be the units digit of a natural number to be squared in…

  4. Sound field simulation and acoustic animation in urban squares

    NASA Astrophysics Data System (ADS)

    Kang, Jian; Meng, Yan

    2005-04-01

    Urban squares are important components of cities, and the acoustic environment is important for their usability. While models and formulae for predicting the sound field in urban squares are important for their soundscape design and improvement, acoustic animation tools would be of great importance for designers as well as for public participation process, given that below a certain sound level, the soundscape evaluation depends mainly on the type of sounds rather than the loudness. This paper first briefly introduces acoustic simulation models developed for urban squares, as well as empirical formulae derived from a series of simulation. It then presents an acoustic animation tool currently being developed. In urban squares there are multiple dynamic sound sources, so that the computation time becomes a main concern. Nevertheless, the requirements for acoustic animation in urban squares are relatively low compared to auditoria. As a result, it is important to simplify the simulation process and algorithms. Based on a series of subjective tests in a virtual reality environment with various simulation parameters, a fast simulation method with acceptable accuracy has been explored. [Work supported by the European Commission.

  5. Reconfigurable Wideband Circularly Polarized Stacked Square Patch Antenna for Cognitive Radios

    NASA Technical Reports Server (NTRS)

    Barbosa Kortright, Miguel A.; Waldstein, Seth W.; Simons, Rainee N.

    2017-01-01

    An almost square patch and a square patch with corner truncation for circularly polarized (CP) and a stacked CP square patch are researched and developed at X-band for cognitive devices. A draft set of presentation charts are attached.

  6. Retargeted Least Squares Regression Algorithm.

    PubMed

    Zhang, Xu-Yao; Wang, Lingfeng; Xiang, Shiming; Liu, Cheng-Lin

    2015-09-01

    This brief presents a framework of retargeted least squares regression (ReLSR) for multicategory classification. The core idea is to directly learn the regression targets from data other than using the traditional zero-one matrix as regression targets. The learned target matrix can guarantee a large margin constraint for the requirement of correct classification for each data point. Compared with the traditional least squares regression (LSR) and a recently proposed discriminative LSR models, ReLSR is much more accurate in measuring the classification error of the regression model. Furthermore, ReLSR is a single and compact model, hence there is no need to train two-class (binary) machines that are independent of each other. The convex optimization problem of ReLSR is solved elegantly and efficiently with an alternating procedure including regression and retargeting as substeps. The experimental evaluation over a range of databases identifies the validity of our method.

  7. Comment Deadlines Established Regarding the LightSquared Technical Working Group Report

    DOT National Transportation Integrated Search

    2011-06-30

    On June 30, 2011, LightSquared Subsidiary LLC (LightSquared) submitted a final report of the : technical working group co-chaired by LightSquared and the United States Global Positioning System : (GPS) Industry Council (USGIC)1 and organized in respo...

  8. A Simple Parameterization of 3 x 3 Magic Squares

    ERIC Educational Resources Information Center

    Trenkler, Gotz; Schmidt, Karsten; Trenkler, Dietrich

    2012-01-01

    In this article a new parameterization of magic squares of order three is presented. This parameterization permits an easy computation of their inverses, eigenvalues, eigenvectors and adjoints. Some attention is paid to the Luoshu, one of the oldest magic squares.

  9. Square sugars: challenges and synthetic strategies.

    PubMed

    Hazelard, Damien; Compain, Philippe

    2017-05-10

    Square sugars (4-membered ring carbohydrate mimetics) are at the intersection of several important topics concerning the recent emergence, in medicinal chemistry, of glycomimetic drugs and small ring systems. Monosaccharide mimetics containing oxetane, azetidine, thiethane or cyclobutane rings present a number of synthetic challenges that are a powerful driving force for innovation in organic synthesis. In addition to the inherent issues associated with 4-membered rings, the high density of functional groups and asymmetric centres found in glycomimetics further complicates the matter and requires efficient stereoselective methodologies. The purpose of this review is to present an overview of the elegant strategies that have been developed to synthesize the different types of square sugars.

  10. Note: A novel method for generating multichannel quasi-square-wave pulses.

    PubMed

    Mao, C; Zou, X; Wang, X

    2015-08-01

    A 21-channel quasi-square-wave nanosecond pulse generator was constructed. The generator consists of a high-voltage square-wave pulser and a channel divider. Using an electromagnetic relay as a switch and a 50-Ω polyethylene cable as a pulse forming line, the high-voltage pulser produces a 10-ns square-wave pulse of 1070 V. With a specially designed resistor-cable network, the channel divider divides the high-voltage square-wave pulse into 21 identical 10-ns quasi-square-wave pulses of 51 V, exactly equal to 1070 V/21. The generator can operate not only in a simultaneous mode but also in a delay mode if the cables in the channel divider are different in length.

  11. Reconfigurable wave band structure of an artificial square ice

    DOE PAGES

    lacocca, Ezio; Gliga, Sebastian; Stamps, Robert L.; ...

    2016-04-18

    Artificial square ices are structures composed of magnetic nanoelements arranged on the sites of a twodimensional square lattice, such that there are four interacting magnetic elements at each vertex, leading to geometrical frustration. Using a semianalytical approach, we show that square ices exhibit a rich spin-wave band structure that is tunable both by external magnetic fields and the magnetization configuration of individual elements. Internal degrees of freedom can give rise to equilibrium states with bent magnetization at the element edges leading to characteristic excitations; in the presence of magnetostatic interactions these form separate bands analogous to impurity bands in semiconductors.more » Full-scale micromagnetic simulations corroborate our semianalytical approach. Our results show that artificial square ices can be viewed as reconfigurable and tunable magnonic crystals that can be used as metamaterials for spin-wave-based applications at the nanoscale.« less

  12. Reconfigurable wave band structure of an artificial square ice

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

    lacocca, Ezio; Gliga, Sebastian; Stamps, Robert L.

    Artificial square ices are structures composed of magnetic nanoelements arranged on the sites of a twodimensional square lattice, such that there are four interacting magnetic elements at each vertex, leading to geometrical frustration. Using a semianalytical approach, we show that square ices exhibit a rich spin-wave band structure that is tunable both by external magnetic fields and the magnetization configuration of individual elements. Internal degrees of freedom can give rise to equilibrium states with bent magnetization at the element edges leading to characteristic excitations; in the presence of magnetostatic interactions these form separate bands analogous to impurity bands in semiconductors.more » Full-scale micromagnetic simulations corroborate our semianalytical approach. Our results show that artificial square ices can be viewed as reconfigurable and tunable magnonic crystals that can be used as metamaterials for spin-wave-based applications at the nanoscale.« less

  13. A note on the Drazin indices of square matrices.

    PubMed

    Yu, Lijun; Bu, Tianyi; Zhou, Jiang

    2014-01-01

    For a square matrix A, the smallest nonnegative integer k such that rank (A(k)) =rank (A(k+1)) is called the Drazin index of A. In this paper, we give some results on the Drazin indices of sum and product of square matrices.

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

  15. High-frequency matrix converter with square wave input

    DOEpatents

    Carr, Joseph Alexander; Balda, Juan Carlos

    2015-03-31

    A device for producing an alternating current output voltage from a high-frequency, square-wave input voltage comprising, high-frequency, square-wave input a matrix converter and a control system. The matrix converter comprises a plurality of electrical switches. The high-frequency input and the matrix converter are electrically connected to each other. The control system is connected to each switch of the matrix converter. The control system is electrically connected to the input of the matrix converter. The control system is configured to operate each electrical switch of the matrix converter converting a high-frequency, square-wave input voltage across the first input port of the matrix converter and the second input port of the matrix converter to an alternating current output voltage at the output of the matrix converter.

  16. An algorithm for propagating the square-root covariance matrix in triangular form

    NASA Technical Reports Server (NTRS)

    Tapley, B. D.; Choe, C. Y.

    1976-01-01

    A method for propagating the square root of the state error covariance matrix in lower triangular form is described. The algorithm can be combined with any triangular square-root measurement update algorithm to obtain a triangular square-root sequential estimation algorithm. The triangular square-root algorithm compares favorably with the conventional sequential estimation algorithm with regard to computation time.

  17. Child- and elder-friendly urban public places in Fatahillah Square Historical District

    NASA Astrophysics Data System (ADS)

    Srinaga, F.; LKatoppo, M.; Hidayat, J.

    2018-03-01

    Fatahillah square as an important historical urban square in Jakarta has problems in eye level area integrative processing. Visitors cannot enjoy their time while in the square regarding their visuals, feelings, space, and bodies comfort. These also lead to other problems in which the square is lack of friendly and convenient places for children, the elderly and also the disabled, especially people with limited moving space. The research will attempt in proposing design inception for the Fatahillah Square that is using inclusive user-centered design approach, while in the same time incorporate theoretical studies of children and elderly-design considerations. The first stage of this research was building inclusive design parameter; begin with a context-led research which assesses the quality of Fatahillah square through three basic components of urban space: hardware, software and orgware. The second stage of this research is to propose inclusive design inception for the Fatahillah square.

  18. Neither fixed nor random: weighted least squares meta-analysis.

    PubMed

    Stanley, T D; Doucouliagos, Hristos

    2015-06-15

    This study challenges two core conventional meta-analysis methods: fixed effect and random effects. We show how and explain why an unrestricted weighted least squares estimator is superior to conventional random-effects meta-analysis when there is publication (or small-sample) bias and better than a fixed-effect weighted average if there is heterogeneity. Statistical theory and simulations of effect sizes, log odds ratios and regression coefficients demonstrate that this unrestricted weighted least squares estimator provides satisfactory estimates and confidence intervals that are comparable to random effects when there is no publication (or small-sample) bias and identical to fixed-effect meta-analysis when there is no heterogeneity. When there is publication selection bias, the unrestricted weighted least squares approach dominates random effects; when there is excess heterogeneity, it is clearly superior to fixed-effect meta-analysis. In practical applications, an unrestricted weighted least squares weighted average will often provide superior estimates to both conventional fixed and random effects. Copyright © 2015 John Wiley & Sons, Ltd.

  19. Simple shear of deformable square objects

    NASA Astrophysics Data System (ADS)

    Treagus, Susan H.; Lan, Labao

    2003-12-01

    Finite element models of square objects in a contrasting matrix in simple shear show that the objects deform to a variety of shapes. For a range of viscosity contrasts, we catalogue the changing shapes and orientations of objects in progressive simple shear. At moderate simple shear ( γ=1.5), the shapes are virtually indistinguishable from those in equivalent pure shear models with the same bulk strain ( RS=4), examined in a previous study. In theory, differences would be expected, especially for very stiff objects or at very large strain. In all our simple shear models, relatively competent square objects become asymmetric barrel shapes with concave shortened edges, similar to some types of boudin. Incompetent objects develop shapes surprisingly similar to mica fish described in mylonites.

  20. A simple calculation method for determination of equivalent square field

    PubMed Central

    Shafiei, Seyed Ali; Hasanzadeh, Hadi; Shafiei, Seyed Ahmad

    2012-01-01

    Determination of the equivalent square fields for rectangular and shielded fields is of great importance in radiotherapy centers and treatment planning software. This is accomplished using standard tables and empirical formulas. The goal of this paper is to present a formula based on analysis of scatter reduction due to inverse square law to obtain equivalent field. Tables are published by different agencies such as ICRU (International Commission on Radiation Units and measurements), which are based on experimental data; but there exist mathematical formulas that yield the equivalent square field of an irregular rectangular field which are used extensively in computation techniques for dose determination. These processes lead to some complicated and time-consuming formulas for which the current study was designed. In this work, considering the portion of scattered radiation in absorbed dose at a point of measurement, a numerical formula was obtained based on which a simple formula was developed to calculate equivalent square field. Using polar coordinate and inverse square law will lead to a simple formula for calculation of equivalent field. The presented method is an analytical approach based on which one can estimate the equivalent square field of a rectangular field and may be used for a shielded field or an off-axis point. Besides, one can calculate equivalent field of rectangular field with the concept of decreased scatter radiation with inverse square law with a good approximation. This method may be useful in computing Percentage Depth Dose and Tissue-Phantom Ratio which are extensively used in treatment planning. PMID:22557801

  1. A simple calculation method for determination of equivalent square field.

    PubMed

    Shafiei, Seyed Ali; Hasanzadeh, Hadi; Shafiei, Seyed Ahmad

    2012-04-01

    Determination of the equivalent square fields for rectangular and shielded fields is of great importance in radiotherapy centers and treatment planning software. This is accomplished using standard tables and empirical formulas. The goal of this paper is to present a formula based on analysis of scatter reduction due to inverse square law to obtain equivalent field. Tables are published by different agencies such as ICRU (International Commission on Radiation Units and measurements), which are based on experimental data; but there exist mathematical formulas that yield the equivalent square field of an irregular rectangular field which are used extensively in computation techniques for dose determination. These processes lead to some complicated and time-consuming formulas for which the current study was designed. In this work, considering the portion of scattered radiation in absorbed dose at a point of measurement, a numerical formula was obtained based on which a simple formula was developed to calculate equivalent square field. Using polar coordinate and inverse square law will lead to a simple formula for calculation of equivalent field. The presented method is an analytical approach based on which one can estimate the equivalent square field of a rectangular field and may be used for a shielded field or an off-axis point. Besides, one can calculate equivalent field of rectangular field with the concept of decreased scatter radiation with inverse square law with a good approximation. This method may be useful in computing Percentage Depth Dose and Tissue-Phantom Ratio which are extensively used in treatment planning.

  2. Energy cost of square dancing.

    PubMed

    Jetté, M; Inglis, H

    1975-01-01

    This experiment was concerned with determining the energy cost of two popular Western square dancing routines: the "Mish-Mash," which is a relatively fast-moving dance with quick movements, and the "Singing" dance, which is a slower and more deliberate type of dance. The subjects were four middle-aged couples, veteran members of a local square dancing club. Sitting and standing pulmonary ventilations were determined through the use of the Tissot gasometer. Kofrańyi-Michaelis respirometers were employed for the dance routine ventilations. These apparatus were fitted with a Monoghan neoprene cushion plastic mask. Gas samples were collected in polyethylene metallized bags and analyzed for O2 and CO2 content. The net energy cost for the two dances was appropriately summarized. The results indicated that for the males the net average energy cost of the "Mish-Mash" dance was 0.085 and 0.077 kcal/min per kg for the "Singing" dance. For the females, the cost was 0.088 and 0.084 kcal/min per kg, respectively. A net average cost of these two dances yielded a caloric expenditure of 5.7 kcal/min for a 70-kg male and 5.2 kcal/min for a 60-kg female. It was indicated that during the course of a typical square dance evening, a 70-kg man would expend some 425 kcal. while a 60-kg female would burn some 390 kcal. The energy cost of the dances studied were determined to be within the permissible work load of a functional class 1 patient with diseases of the heart as determined by the American Heart Association.

  3. Reconfigurable Wideband Circularly Polarized Stacked Square Patch Antenna for Cognitive Radios

    NASA Technical Reports Server (NTRS)

    Barbosa Kortright, Miguel A.; Waldstein, Seth W.; Simons, Rainee N.

    2017-01-01

    An almost square patch, a square patch and a stacked square patch with corner truncation for circular polarization (CP) are researched and developed at X-band for cognitive radios. Experimental results indicate, first, that the impedance bandwidth of a CP almost square patch fed from the edge by a 50 ohm line is 1.70% and second, that of a CP square patch fed from the ground plane side by a surface launch connector is 1.87%. Third, the impedance bandwidth of a CP stacked square patch fed by a surface launch connector is 2.22%. The measured center frequency for the CP square patch fed by a surface launch connector without and with an identical stacked patch is 8.45 and 8.1017 GHz, respectively. By stacking a patch, separated by a fixed air gap of 0.254 mm, the center frequency is observed to shift by as much as 348.3 MHz. The shift in center frequency, brought about by the reconfiguring of the physical layer antenna, can be exploited in a cognitive system since it expands the usable frequency spectrum for software reconfiguration in the presence of interference. In addition, varying the fixed air gap in the stacked antenna geometry by increments of 0.254 mm further expands the usable frequency spectrum.

  4. Least-Squares Models to Correct for Rater Effects in Performance Assessment.

    ERIC Educational Resources Information Center

    Raymond, Mark R.; Viswesvaran, Chockalingam

    This study illustrates the use of three least-squares models to control for rater effects in performance evaluation: (1) ordinary least squares (OLS); (2) weighted least squares (WLS); and (3) OLS subsequent to applying a logistic transformation to observed ratings (LOG-OLS). The three models were applied to ratings obtained from four…

  5. Sparse partial least squares regression for simultaneous dimension reduction and variable selection

    PubMed Central

    Chun, Hyonho; Keleş, Sündüz

    2010-01-01

    Partial least squares regression has been an alternative to ordinary least squares for handling multicollinearity in several areas of scientific research since the 1960s. It has recently gained much attention in the analysis of high dimensional genomic data. We show that known asymptotic consistency of the partial least squares estimator for a univariate response does not hold with the very large p and small n paradigm. We derive a similar result for a multivariate response regression with partial least squares. We then propose a sparse partial least squares formulation which aims simultaneously to achieve good predictive performance and variable selection by producing sparse linear combinations of the original predictors. We provide an efficient implementation of sparse partial least squares regression and compare it with well-known variable selection and dimension reduction approaches via simulation experiments. We illustrate the practical utility of sparse partial least squares regression in a joint analysis of gene expression and genomewide binding data. PMID:20107611

  6. Least Squares Metric, Unidimensional Scaling of Multivariate Linear Models.

    ERIC Educational Resources Information Center

    Poole, Keith T.

    1990-01-01

    A general approach to least-squares unidimensional scaling is presented. Ordering information contained in the parameters is used to transform the standard squared error loss function into a discrete rather than continuous form. Monte Carlo tests with 38,094 ratings of 261 senators, and 1,258 representatives demonstrate the procedure's…

  7. Your Chi-Square Test Is Statistically Significant: Now What?

    ERIC Educational Resources Information Center

    Sharpe, Donald

    2015-01-01

    Applied researchers have employed chi-square tests for more than one hundred years. This paper addresses the question of how one should follow a statistically significant chi-square test result in order to determine the source of that result. Four approaches were evaluated: calculating residuals, comparing cells, ransacking, and partitioning. Data…

  8. A decentralized square root information filter/smoother

    NASA Technical Reports Server (NTRS)

    Bierman, G. J.; Belzer, M. R.

    1985-01-01

    A number of developments has recently led to a considerable interest in the decentralization of linear least squares estimators. The developments are partly related to the impending emergence of VLSI technology, the realization of parallel processing, and the need for algorithmic ways to speed the solution of dynamically decoupled, high dimensional estimation problems. A new method is presented for combining Square Root Information Filters (SRIF) estimates obtained from independent data sets. The new method involves an orthogonal transformation, and an information matrix filter 'homework' problem discussed by Schweppe (1973) is generalized. The employed SRIF orthogonal transformation methodology has been described by Bierman (1977).

  9. Chirality in distorted square planar Pd(O,N)2 compounds.

    PubMed

    Brunner, Henri; Bodensteiner, Michael; Tsuno, Takashi

    2013-10-01

    Salicylidenimine palladium(II) complexes trans-Pd(O,N)2 adopt step and bowl arrangements. A stereochemical analysis subdivides 52 compounds into 41 step and 11 bowl types. Step complexes with chiral N-substituents and all the bowl complexes induce chiral distortions in the square planar system, resulting in Δ/Λ configuration of the Pd(O,N)2 unit. In complexes with enantiomerically pure N-substituents ligand chirality entails a specific square chirality and only one diastereomer assembles in the lattice. Dimeric Pd(O,N)2 complexes with bridging N-substituents in trans-arrangement are inherently chiral. For dimers different chirality patterns for the Pd(O,N)2 square are observed. The crystals contain racemates of enantiomers. In complex two independent molecules form a tight pair. The (RC) configuration of the ligand induces the same Δ chirality in the Pd(O,N)2 units of both molecules with varying square chirality due to the different crystallographic location of the independent molecules. In complexes and atrop isomerism induces specific configurations in the Pd(O,N)2 bowl systems. The square chirality is largest for complex [(Diop)Rh(PPh3 )Cl)], a catalyst for enantioselective hydrogenation. In the lattice of two diastereomers with the same (RC ,RC) configuration in the ligand Diop but opposite Δ and Λ square configurations co-crystallize, a rare phenomenon in stereochemistry. © 2013 Wiley Periodicals, Inc.

  10. Self-organized chiral colloidal crystals of Brownian square crosses.

    PubMed

    Zhao, Kun; Mason, Thomas G

    2014-04-16

    We study aqueous Brownian dispersions of microscale, hard, monodisperse platelets, shaped as achiral square crosses, in two dimensions (2D). When slowly concentrated while experiencing thermal excitations, the crosses self-organize into fluctuating 2D colloidal crystals. As the particle area fraction φA is raised, an achiral rhombic crystal phase forms at φA ≈ 0.52. Above φA ≈ 0.56, the rhombic crystal gives way to a square crystal phase that exhibits long-range chiral symmetry breaking (CSB) via a crystal-crystal phase transition; the observed chirality in a particular square crystallite has either a positive or a negative enantiomeric sense. By contrast to triangles and rhombs, which exhibit weak CSB as a result of total entropy maximization, square crosses display robust long-range CSB that is primarily dictated by how they tile space at high densities. We measure the thermal distribution of orientation angles γ of the crosses' arms relative to the diagonal bisector of the local square crystal lattice as a function of φA, and the average measured γ (φA) agrees with a re-scaled model involving efficient packing of rotated cross shapes. Our findings imply that a variety of hard achiral shapes can be designed to form equilibrium chiral phases by considering their tiling at high densities.

  11. ON THE CONSTRUCTION OF LATIN SQUARES COUNTERBALANCED FOR IMMEDIATE SEQUENTIAL EFFECTS.

    ERIC Educational Resources Information Center

    HOUSTON, TOM R., JR.

    THIS REPORT IS ONE OF A SERIES DESCRIBING NEW DEVELOPMENTS IN THE AREA OF RESEARCH METHODOLOGY. IT DEALS WITH LATIN SQUARES AS A CONTROL FOR PROGRESSIVE AND ADJACENCY EFFECTS IN EXPERIMENTAL DESIGNS. THE HISTORY OF LATIN SQUARES IS ALSO REVIEWED, AND SEVERAL ALGORITHMS FOR THE CONSTRUCTION OF LATIN AND GRECO-LATIN SQUARES ARE PROPOSED. THE REPORT…

  12. Extrapolation of in situ data from 1-km squares to adjacent squares using remote sensed imagery and airborne lidar data for the assessment of habitat diversity and extent.

    PubMed

    Lang, M; Vain, A; Bunce, R G H; Jongman, R H G; Raet, J; Sepp, K; Kuusemets, V; Kikas, T; Liba, N

    2015-03-01

    Habitat surveillance and subsequent monitoring at a national level is usually carried out by recording data from in situ sample sites located according to predefined strata. This paper describes the application of remote sensing to the extension of such field data recorded in 1-km squares to adjacent squares, in order to increase sample number without further field visits. Habitats were mapped in eight central squares in northeast Estonia in 2010 using a standardized recording procedure. Around one of the squares, a special study site was established which consisted of the central square and eight surrounding squares. A Landsat-7 Enhanced Thematic Mapper Plus (ETM+) image was used for correlation with in situ data. An airborne light detection and ranging (lidar) vegetation height map was also included in the classification. A series of tests were carried out by including the lidar data and contrasting analytical techniques, which are described in detail in the paper. Training accuracy in the central square varied from 75 to 100 %. In the extrapolation procedure to the surrounding squares, accuracy varied from 53.1 to 63.1 %, which improved by 10 % with the inclusion of lidar data. The reasons for this relatively low classification accuracy were mainly inherent variability in the spectral signatures of habitats but also differences between the dates of imagery acquisition and field sampling. Improvements could therefore be made by better synchronization of the field survey and image acquisition as well as by dividing general habitat categories (GHCs) into units which are more likely to have similar spectral signatures. However, the increase in the number of sample kilometre squares compensates for the loss of accuracy in the measurements of individual squares. The methodology can be applied in other studies as the procedures used are readily available.

  13. Expedition 52 Red Square Visit

    NASA Image and Video Library

    2017-07-10

    Expedition 52 flight engineers Paolo Nespoli of ESA, left, Sergey Ryazanskiy of Roscosmos, center, and Randy Bresnik of NASA visit Red Square to lay roses at the site where Russian space icons are interred as part of traditional pre-launch ceremonies, Monday, July 10, 2017 in Moscow. Photo Credit: (NASA/Bill Ingalls)

  14. Expedition 50 Red Square Visit

    NASA Image and Video Library

    2016-10-26

    Expedition 50 NASA astronaut Peggy Whitson, left, Russian cosmonaut Oleg Novitskiy of Roscosmos, center, and ESA astronaut Thomas Pesquet visit Red Square to lay roses at the site where Russian space icons are interred as part of traditional pre-launch ceremonies, Wednesday, Oct. 26, 2016, in Moscow. Photo Credit: (NASA/Bill Ingalls)

  15. Expedition 52 Red Square Visit

    NASA Image and Video Library

    2017-07-10

    Expedition 52 flight engineers Paolo Nespoli of ESA, left, Sergey Ryazanskiy of Roscosmos, center, and Randy Bresnik of NASA visit Red Square prepare to lay roses at the site where Russian space icons are interred as part of traditional pre-launch ceremonies, Monday, July 10, 2017 in Moscow. Photo Credit: (NASA/Bill Ingalls)

  16. The Magic of Balanced Groups: Educational Applications of Magic Squares

    ERIC Educational Resources Information Center

    Bosse, Michael J.; Nandakumar, N. R.; Ore, Melanie L.

    2007-01-01

    This paper provides students with many interesting observations regarding the nature of magic squares, magic rectangles, and quasi-magic squares and provides tools for teachers to group students into ability-balanced cooperative learning groups.

  17. Application of least median of squared orthogonal distance (LMD) and LMD-based reweighted least squares (RLS) methods on the stock-recruitment relationship

    NASA Astrophysics Data System (ADS)

    Wang, Yan-Jun; Liu, Qun

    1999-03-01

    Analysis of stock-recruitment (SR) data is most often done by fitting various SR relationship curves to the data. Fish population dynamics data often have stochastic variations and measurement errors, which usually result in a biased regression analysis. This paper presents a robust regression method, least median of squared orthogonal distance (LMD), which is insensitive to abnormal values in the dependent and independent variables in a regression analysis. Outliers that have significantly different variance from the rest of the data can be identified in a residual analysis. Then, the least squares (LS) method is applied to the SR data with defined outliers being down weighted. The application of LMD and LMD-based Reweighted Least Squares (RLS) method to simulated and real fisheries SR data is explored.

  18. Reconfigurable Wideband Circularly Polarized Stacked Square Patch Antenna for Cognitive Radios

    NASA Technical Reports Server (NTRS)

    Barbosa Kortright, Miguel A.; Waldstein, Seth W.; Simons, Rainee N.

    2017-01-01

    An almost square patch, a square patch and a stacked square patch with corner truncation for circular polarization (CP) are researched and developed at X-band for cognitive radios. Experimental results indicate, first, that the impedance bandwidth of a CP almost square patch fed from the edge by a 50 ohm line is 1.70 percent and second, that of a CP square patch fed from the ground plane side by a surface launch connector is 1.87 percent. Third, the impedance bandwidth of a CP stacked square patch fed by a surface launch connector is 2.22 percent. The measured center frequency for the CP square patch fed by a surface launch connector without and with an identical stacked patch is 8.45 and 8.1017 GHz, respectively. By stacking a patch, separated by a fixed air gap of 0.254 mm, the center frequency is observed to shift by as much as 348.3 MHz. The shift in the center frequency can be exploited to reconfigure the operating frequency by mechanically increasing the air gap. The results indicate that a tuning bandwidth of about 100 MHz can be achieved when the distance of separation between the driven patch and the stacked patch is increased from its initial setting of 0.254 to 1.016 mm.

  19. 2D barrier in a superconducting niobium square

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

    Joya, Miryam R., E-mail: mrinconj@unal.edu.co; Barba-ortega, J., E-mail: jjbarbao@unal.edu.co; Sardella, Edson, E-mail: edsonsdl@gmail.com

    The presence of barriers changes the vortex structure in superconducting Nb square in presence of a uniform applied magnetic field. The Cooper pair configurations in a mesoscopics superconducting square of Nb with a barrier are calculated within the nonlinear Ginzburg Landau equations. We predict the nucleation of multi-vortex states into the sample and a soft entry of the magnetic field inside and around into the barrier. A novel and non-conventional vortex configurations occurs at determined magnetic field.

  20. Chi-Squared Test of Fit and Sample Size-A Comparison between a Random Sample Approach and a Chi-Square Value Adjustment Method.

    PubMed

    Bergh, Daniel

    2015-01-01

    Chi-square statistics are commonly used for tests of fit of measurement models. Chi-square is also sensitive to sample size, which is why several approaches to handle large samples in test of fit analysis have been developed. One strategy to handle the sample size problem may be to adjust the sample size in the analysis of fit. An alternative is to adopt a random sample approach. The purpose of this study was to analyze and to compare these two strategies using simulated data. Given an original sample size of 21,000, for reductions of sample sizes down to the order of 5,000 the adjusted sample size function works as good as the random sample approach. In contrast, when applying adjustments to sample sizes of lower order the adjustment function is less effective at approximating the chi-square value for an actual random sample of the relevant size. Hence, the fit is exaggerated and misfit under-estimated using the adjusted sample size function. Although there are big differences in chi-square values between the two approaches at lower sample sizes, the inferences based on the p-values may be the same.

  1. 43. East tile gauge on south pier. Each square tile ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    43. East tile gauge on south pier. Each square tile is 4' in size. Eagle itself in 4' square eagle section - Duluth Ship Canal, South Pier, North end of Minnesota Point & Canal Park, Duluth, St. Louis County, MN

  2. A Portable Parallel Implementation of the U.S. Navy Layered Ocean Model

    DTIC Science & Technology

    1995-01-01

    Wallcraft, PhD (I.C. 1981) Planning Systems Inc. & P. R. Moore, PhD (Camb. 1971) IC Dept. Math. DR Moore 1° Encontro de Metodos Numericos...Kendall Square, Hypercube, D R Moore 1 ° Encontro de Metodos Numericos para Equacöes de Derivadas Parciais A. J. Wallcraft IC Mathematics...chips: Chips Machine DEC Alpha CrayT3D/E SUN Sparc Fujitsu AP1000 Intel 860 Paragon D R Moore 1° Encontro de Metodos Numericos para Equacöes

  3. Applied Computational Electromagnetics Society Journal (ACES); Special Issue on Electromagnetics and High Performance Computing. Vol. 13, No. 2

    DTIC Science & Technology

    1998-07-01

    author’s responsibility to obtain written permission to reproduce such material. 1 " vssmwmato srÄmaöNfTT fWi««-ii|<.1iw »■■«. i-i...interesting to compare papers in the issue with previous special issues of other jour- nals and monographs, for example [ 1 , 2]. HPC issues first attracted...environment, in particular the Kendall Square Research KSR- 1 . Fast algorithms have attracted considerable atten- tion in the CEM community, since they

  4. Salt-induced square prism Pd microtubes and their ethanol electrocatalysis properties

    NASA Astrophysics Data System (ADS)

    Jiang, Kunpeng; Ma, Shenghua; Wang, Yinan; Zhang, Ying; Han, Xiaojun

    2017-05-01

    The synthesis of square prism tubes are always challenging due to their thermo and dynamical instability. We demonstrated a simple method using Pd2+ doped PoPD oligomers as building blocks to assemble into 1D square prism metal-organic microtubes, which consists of cataphracted nanosheets on the surfaces. After high temperature treatment, the microtubes became square prism Pd tubes with a cross section size of 3 μm. The pure Pd microtubes showed excellent catalyzing activity towards the electro oxidation of ethanol. Their electrochemically active surface area is 48.2 m2 g-1, which indicates the square prism Pd tubes have great potential in the field of fuel cell.

  5. 1. WASHINGTON SQUARE IN CENTER, LOOKING SOUTHWEST. CURTIS PUBLISHING COMPANY ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    1. WASHINGTON SQUARE IN CENTER, LOOKING SOUTHWEST. CURTIS PUBLISHING COMPANY IS AT RIGHT. THE BUILDING IN FRONT OF PHOTO IS THE PENN MUTUAL LIFE INSURANCE COMPANY - Washington Square Area Study, Sixth, Seventh, Walnut & Locust Streets, Philadelphia, Philadelphia County, PA

  6. 44. East tile gauge on south pier. Each square tile ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    44. East tile gauge on south pier. Each square tile is 4' in size. Top left section of 4' square eagle section - Duluth Ship Canal, South Pier, North end of Minnesota Point & Canal Park, Duluth, St. Louis County, MN

  7. 47. East tile gauge on south pier. Each square tile ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    47. East tile gauge on south pier. Each square tile is 4' in size. Middle right section of 4' square eagle section - Duluth Ship Canal, South Pier, North end of Minnesota Point & Canal Park, Duluth, St. Louis County, MN

  8. 46. East tile gauge on south pier. Each square tile ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    46. East tile gauge on south pier. Each square tile is 4' in size. Lower right section of 4' square eagle section - Duluth Ship Canal, South Pier, North end of Minnesota Point & Canal Park, Duluth, St. Louis County, MN

  9. 45. East tile gauge on south pier. Each square tile ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    45. East tile gauge on south pier. Each square tile is 4' in size. Lower left section of 4' square eagel section - Duluth Ship Canal, South Pier, North end of Minnesota Point & Canal Park, Duluth, St. Louis County, MN

  10. Least squares restoration of multichannel images

    NASA Technical Reports Server (NTRS)

    Galatsanos, Nikolas P.; Katsaggelos, Aggelos K.; Chin, Roland T.; Hillery, Allen D.

    1991-01-01

    Multichannel restoration using both within- and between-channel deterministic information is considered. A multichannel image is a set of image planes that exhibit cross-plane similarity. Existing optimal restoration filters for single-plane images yield suboptimal results when applied to multichannel images, since between-channel information is not utilized. Multichannel least squares restoration filters are developed using the set theoretic and the constrained optimization approaches. A geometric interpretation of the estimates of both filters is given. Color images (three-channel imagery with red, green, and blue components) are considered. Constraints that capture the within- and between-channel properties of color images are developed. Issues associated with the computation of the two estimates are addressed. A spatially adaptive, multichannel least squares filter that utilizes local within- and between-channel image properties is proposed. Experiments using color images are described.

  11. Historical and potential groundwater drawdown in the Bruneau area, Owyhee County, southwestern Idaho

    USGS Publications Warehouse

    Adkins, Candice B.; Bartolino, James R.

    2012-01-01

    Geothermal seeps and springs in the Bruneau area in southwestern Idaho provide a vital but disappearing habitat for the Bruneau hot springsnail (Pyrgulopsis bruneauensis). In order to aid in conservation efforts, a two-part study was conducted (1) to determine trends in groundwater levels over time and (2) to simulate drawdown in aquifers that contribute to the geothermal seeps and springs along the Bruneau River. Seasonal and Regional Kendall tests for trends were used to determine water-level trends over a 20-year monitoring (1990–2010) period. Seasonal Kendall tests were used to calculate trends in groundwater-levels in 22 monitoring wells and indicated statistically significant changes in water level with trends ranging from 0.21 to 1.0 feet per year. Regional Kendall tests were used to calculate drawdown in categories of wells based on five criteria (well depth, distance from Indian Bathtub Spring, geologic unit, regional topographic valley, and temperature). Results from Regional Kendall tests indicate that slope of the trend (in feet per year) increased as a function of well depth; trends in water level as a function of other categories did not exhibit an obvious pattern based on distance from Indian Bathtub Spring, geologic unit, topographic valley, or temperature. Analytical solutions were used to simulate drawdown and recovery in wells using the Theis equation and a range of hydraulic parameters. Drawdown effects were determined by changing the storativity, transmissivity, and flow values over a hypothetical timeline. For example, estimates projected that after 20 years of pumping (at an assumed storativity of 0.002, a transmissivity of 980,000 feet squared per day, and a flow of 100 acre-feet per year), 1 foot of drawdown in the volcanic-rock aquifers would not be detected; however, other estimates using the same time frame but different hydraulic parameters (storativity of 0.001, transmissivity of 13,000 feet squared per day, and 610 acre-feet per

  12. Kinematic dynamo action in square and hexagonal patterns.

    PubMed

    Favier, B; Proctor, M R E

    2013-11-01

    We consider kinematic dynamo action in rapidly rotating Boussinesq convection just above onset. The velocity is constrained to have either a square or a hexagonal pattern. For the square pattern, large-scale dynamo action is observed at onset, with most of the magnetic energy being contained in the horizontally averaged component. As the magnetic Reynolds number increases, small-scale dynamo action becomes possible, reducing the overall growth rate of the dynamo. For the hexagonal pattern, the breaking of symmetry between up and down flows results in an effective pumping velocity. For intermediate rotation rates, this additional effect can prevent the growth of any mean-field dynamo, so that only a small-scale dynamo is eventually possible at large enough magnetic Reynolds number. For very large rotation rates, this pumping term becomes negligible, and the dynamo properties of square and hexagonal patterns are qualitatively similar. These results hold for both perfectly conducting and infinite magnetic permeability boundary conditions.

  13. Organic light-emitting diodes from homoleptic square planar complexes

    DOEpatents

    Omary, Mohammad A

    2013-11-12

    Homoleptic square planar complexes [M(N.LAMBDA.N).sub.2], wherein two identical N.LAMBDA.N bidentate anionic ligands are coordinated to the M(II) metal center, including bidentate square planar complexes of triazolates, possess optical and electrical properties that make them useful for a wide variety of optical and electrical devices and applications. In particular, the complexes are useful for obtaining white or monochromatic organic light-emitting diodes ("OLEDs"). Improved white organic light emitting diode ("WOLED") designs have improved efficacy and/or color stability at high brightness in single- or two-emitter white or monochrome OLEDs that utilize homoleptic square planar complexes, including bis[3,5-bis(2-pyridyl)-1,2,4-triazolato]platinum(II) ("Pt(ptp).sub.2").

  14. Inverse-Square Orbits: A Geometric Approach.

    ERIC Educational Resources Information Center

    Rainwater, James C.; Weinstock, Robert

    1979-01-01

    Presents a derivation of Kepler's first law of planetary motion from Newtonian principles. Analogus derivations of the hyperbolic and parabolic orbits of nonreturning comets and the hyperbolic orbit for a particle in a repulsive inverse-square field are also presented. (HM)

  15. Coal-seismic, desktop computer programs in BASIC; Part 5, Perform X-square T-square analysis and plot normal moveout lines on seismogram overlay

    USGS Publications Warehouse

    Hasbrouck, W.P.

    1983-01-01

    Processing of data taken with the U.S. Geological Survey's coal-seismic system is done with a desktop, stand-alone computer. Programs for this computer are written in the extended BASIC language used by the Tektronix 4051 Graphic System. This report presents computer programs to perform X-square/T-square analyses and to plot normal moveout lines on a seismogram overlay.

  16. Domain Decomposition Algorithms for First-Order System Least Squares Methods

    NASA Technical Reports Server (NTRS)

    Pavarino, Luca F.

    1996-01-01

    Least squares methods based on first-order systems have been recently proposed and analyzed for second-order elliptic equations and systems. They produce symmetric and positive definite discrete systems by using standard finite element spaces, which are not required to satisfy the inf-sup condition. In this paper, several domain decomposition algorithms for these first-order least squares methods are studied. Some representative overlapping and substructuring algorithms are considered in their additive and multiplicative variants. The theoretical and numerical results obtained show that the classical convergence bounds (on the iteration operator) for standard Galerkin discretizations are also valid for least squares methods.

  17. Multi-element array signal reconstruction with adaptive least-squares algorithms

    NASA Technical Reports Server (NTRS)

    Kumar, R.

    1992-01-01

    Two versions of the adaptive least-squares algorithm are presented for combining signals from multiple feeds placed in the focal plane of a mechanical antenna whose reflector surface is distorted due to various deformations. Coherent signal combining techniques based on the adaptive least-squares algorithm are examined for nearly optimally and adaptively combining the outputs of the feeds. The performance of the two versions is evaluated by simulations. It is demonstrated for the example considered that both of the adaptive least-squares algorithms are capable of offsetting most of the loss in the antenna gain incurred due to reflector surface deformations.

  18. Two Enhancements of the Logarithmic Least-Squares Method for Analyzing Subjective Comparisons

    DTIC Science & Technology

    1989-03-25

    error term. 1 For this model, the total sum of squares ( SSTO ), defined as n 2 SSTO = E (yi y) i=1 can be partitioned into error and regression sums...of the regression line around the mean value. Mathematically, for the model given by equation A.4, SSTO = SSE + SSR (A.6) A-4 where SSTO is the total...sum of squares (i.e., the variance of the yi’s), SSE is error sum of squares, and SSR is the regression sum of squares. SSTO , SSE, and SSR are given

  19. Using Weighted Least Squares Regression for Obtaining Langmuir Sorption Constants

    USDA-ARS?s Scientific Manuscript database

    One of the most commonly used models for describing phosphorus (P) sorption to soils is the Langmuir model. To obtain model parameters, the Langmuir model is fit to measured sorption data using least squares regression. Least squares regression is based on several assumptions including normally dist...

  20. A Continuous Square Root in Formation Filter-Swoother with Discrete Data Update

    NASA Technical Reports Server (NTRS)

    Miller, J. K.

    1994-01-01

    A differential equation for the square root information matrix is derived and adapted to the problems of filtering and smoothing. The resulting continuous square root information filter (SRIF) performs the mapping of state and process noise by numerical integration of the SRIF matrix and admits data via a discrete least square update.

  1. Hierarchical Poly Tree Configurations for the Solution of Dynamically Refined Finte Element Models

    NASA Technical Reports Server (NTRS)

    Gute, G. D.; Padovan, J.

    1993-01-01

    This paper demonstrates how a multilevel substructuring technique, called the Hierarchical Poly Tree (HPT), can be used to integrate a localized mesh refinement into the original finite element model more efficiently. The optimal HPT configurations for solving isoparametrically square h-, p-, and hp-extensions on single and multiprocessor computers is derived. In addition, the reduced number of stiffness matrix elements that must be stored when employing this type of solution strategy is quantified. Moreover, the HPT inherently provides localize 'error-trapping' and a logical, efficient means with which to isolate physically anomalous and analytically singular behavior.

  2. Multicategory Composite Least Squares Classifiers

    PubMed Central

    Park, Seo Young; Liu, Yufeng; Liu, Dacheng; Scholl, Paul

    2010-01-01

    Classification is a very useful statistical tool for information extraction. In particular, multicategory classification is commonly seen in various applications. Although binary classification problems are heavily studied, extensions to the multicategory case are much less so. In view of the increased complexity and volume of modern statistical problems, it is desirable to have multicategory classifiers that are able to handle problems with high dimensions and with a large number of classes. Moreover, it is necessary to have sound theoretical properties for the multicategory classifiers. In the literature, there exist several different versions of simultaneous multicategory Support Vector Machines (SVMs). However, the computation of the SVM can be difficult for large scale problems, especially for problems with large number of classes. Furthermore, the SVM cannot produce class probability estimation directly. In this article, we propose a novel efficient multicategory composite least squares classifier (CLS classifier), which utilizes a new composite squared loss function. The proposed CLS classifier has several important merits: efficient computation for problems with large number of classes, asymptotic consistency, ability to handle high dimensional data, and simple conditional class probability estimation. Our simulated and real examples demonstrate competitive performance of the proposed approach. PMID:21218128

  3. ELMO Bumpy Square proposal

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

    Dory, R.A.; Uckan, N.A.; Ard, W.B.

    The ELMO Bumpy Square (EBS) concept consists of four straight magnetic mirror arrays linked by four high-field corner coils. Extensive calculations show that this configuration offers major improvements over the ELMO Bumpy Torus (EBT) in particle confinement, heating, transport, ring production, and stability. The components of the EBT device at Oak Ridge National Laboratory can be reconfigured into a square arrangement having straight sides composed of EBT coils, with new microwave cavities and high-field corners designed and built for this application. The elimination of neoclassical convection, identified as the dominant mechanism for the limited confinement in EBT, will give themore » EBS device substantially improved confinement and the flexibility to explore the concepts that produce this improvement. The primary goals of the EBS program are twofold: first, to improve the physics of confinement in toroidal systems by developing the concepts of plasma stabilization using the effects of energetic electrons and confinement optimization using magnetic field shaping and electrostatic potential control to limit particle drift, and second, to develop bumpy toroid devices as attractive candidates for fusion reactors. This report presents a brief review of the physics analyses that support the EBS concept, discussions of the design and expected performance of the EBS device, a description of the EBS experimental program, and a review of the reactor potential of bumpy toroid configurations. Detailed information is presented in the appendices.« less

  4. Aerial view southwest from center of square showing south portion ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    Aerial view southwest from center of square showing south portion of alley, rears of 1007 E Street, 1009 E Street, and the National Capital Press Building and alley (east) wall of 1101 E Street - Square 347 (Commercial Buildings), Tenth, Eleventh, E, & F Streets, Northwest, Washington, District of Columbia, DC

  5. Detail, squared cut stone masonry center pier, from northwest, showing ...

    Library of Congress Historic Buildings Survey, Historic Engineering Record, Historic Landscapes Survey

    Detail, squared cut stone masonry center pier, from northwest, showing original cut stone masonry, concrete-encased nose on upstream end, portion of squared cut stone masonry south abutment, and portion of truss superstructure - Castle Garden Bridge, Township Route 343 over Bennetts Branch of Sinnemahoning Creek, Driftwood, Cameron County, PA

  6. SUPPLEMENTARY COMPARISON: EUROMET.L-S10 Comparison of squareness measurements

    NASA Astrophysics Data System (ADS)

    Mokros, Jiri

    2005-01-01

    The idea of performing a comparison of squareness resulted from the need to review the MRA Appendix C, Category 90° square. At its meeting in October 1999 (in Prague) it was decided upon a first comparison of squareness measurements in the framework of EUROMET, numbered #570, starting in 2000, with the Slovak Institute of Metrology (SMU) as the pilot laboratory. During the preparation stage of the project, it was agreed that it should be submitted as a EUROMET supplementary comparison in the framework of the Mutual Recognition Arrangement (MRA) of the Metre Convention and would boost confidence in calibration and measurement certificates issued by the participating national metrology institutes. The aim of the comparison of squareness measurement was to compare and verify the declared calibration measurement capabilities of participating laboratories and to investigate the effect of systematic influences in the measurement process and their elimination. Eleven NMIs from the EUROMET region carried out this project. Two standards were calibrated: granite squareness standard of rectangular shape, cylindrical squareness standard of steel with marked positions for the profile lines. The following parameters had to be calibrated: granite squareness standard: interior angle γB between two lines AB and AC (envelope - LS regression) fitted through the measured profiles, and/or granite squareness standard: interior angle γLS between two LS regression lines AB and AC fitted through the measured profiles, cylindrical squareness standard: interior angles γ0°, γ90°, γ180°, γ270° between the LS regression line fitted through the measurement profiles at 0°, 90°, 180°, 270° and the envelope plane of the basis (resting on a surface plate), local LS straightness deviation for all measured profiles (2 and 4) of both standards. The results of the comparison are the deviations of profiles and angles measured by the individual NMIs from the reference values. These resulted

  7. Single-polarization hollow-core square photonic bandgap waveguide

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

    Eguchi, Masashi, E-mail: megu@ieee.org; Tsuji, Yasuhide, E-mail: y-tsuji@mmm.muroran-it.ac.jp

    Materials with a periodic structure have photonic bandgaps (PBGs), in which light can not be guided within certain wavelength ranges; thus light can be confined within a low-index region by the bandgap effect. In this paper, rectangular-shaped hollow waveguides having waveguide-walls (claddings) using the PBG have been discussed. The design principle for HE modes of hollow-core rectangular PBG waveguides with a Bragg cladding consisting of alternating high- and low-index layers, based on a 1D periodic multilayer approximation for the Bragg cladding, is established and then a novel single-polarization hollow-core square PBG waveguide using the bandgap difference between two polarized wavesmore » is proposed. Our results demonstrated that a single-polarization guiding can be achieved by using the square Bragg cladding structure with different layer thickness ratios in the mutually orthogonal directions and the transmission loss of the guided mode in a designed hollow-core square PBG waveguide is numerically estimated to be 0.04 dB/cm.« less

  8. Comparison of Precipitation from Gauge and Tropical Rainfall Measurement Mission (TRMM) for River Basins of India

    NASA Astrophysics Data System (ADS)

    Mondal, A.; Chandniha, S. K.; Lakshmi, V.; Kundu, S.; Hashemi, H.

    2017-12-01

    This study compares the monthly precipitation from the gridded rain gauge data collected by India Meteorological Department (IMD) and the retrievals from the Tropical Rainfall Measurement Mission (TRMM) for the river basins of India using the TRMM Multisatellite Precipitation Analysis (TMPA) version 7 (V7). The IMD and TMPA datasets have the same spatial resolution (0.25°×0.25°) and extend from 1998 to 2013. The TRMM data accuracy for the river basins is assessed by comparison with IMD using root mean square error (RMSE), normalized mean square error (NMSE), Nash-Sutcliffe coefficient (NASH) and correlation coefficient (CC) methods. The Mann-Kendall (MK) and modified Mann-Kendall (MMK) tests have been applied for analyzing the data trend, and the change has been detected by Sen's Slope using both data sets for annual and seasonal time periods. The change in intensity of precipitation is estimated by percentage for comparing actual differences in various river basins. Variation in precipitation is high (>100 mm represents >15% of average annual precipitation) in Brahmaputra, rivers draining into Myanmar (RDM), rivers draining into Bangladesh (RDB), east flowing rivers between Mahanadi and Godavari (EMG), east flowing rivers between Pennar and Cauvery (EPC), Cauvery and Tapi. The NASH and CC values vary between 0.80 to 0.98 and 0.87 to 0.99 in all river basins except area of north Ladakh not draining into Indus (NLI) and east flowing rivers south of Cauvery (ESC), while RMSE and NMSE vary from 15.95 to 101.68 mm and 2.66 to 58.38 mm, respectively. The trends for TMPA and IMD datasets from 1998 to 2013 are quite similar in MK (except 4 river basins) and MMK (except 3 river basins). The estimated results imply that the TMPA precipitation show good agreement and can be used in climate studies and hydrological simulations in locations/river basins where the number of rain gauge stations is not adequate to quantify the spatial variability of precipitation. Keywords

  9. Johnson square procedure for lentigo maligna and lentigo maligna melanoma.

    PubMed

    Patel, A N; Perkins, W; Leach, I H; Varma, S

    2014-07-01

    Lentigo maligna (LM) and lentigo maligna melanoma (LMM) can be difficult to manage surgically. Predetermined margins can be inadequate because of subclinical spread, or can affect function when margins are adjacent to the eye or mouth. To describe our 5-year experience in Nottingham of using the staged square procedure (Johnson square) in excising difficult facial LM and LMM. The square procedure is a staged technique useful for ill-defined lesions and for lesions that have a high recurrence rate due to subclinical spread. It uses paraffin wax-embedded peripheral vertical sections for margin control, ensuring complete clearance as the surgical margins are usually examined at distances of 2-5 mm from the periphery of the lesion. We treated 21 patients with LM or LMM with the staged square procedure over a 5-year period. Of the 21 patients, 10 needed only one stage of surgery, 6 needed two stages, 3 needed three stages and 2 needed four stages. To date, there has been only one recurrence, which was of an extensive lesion that crossed the medial canthus, making margin control impossible because of the anatomical limitations. The staged square procedure is an effective treatment for LM and LMM. It attempts to conserve tissue while ensuring a higher clearance rate. This offers favourable cosmetic outcomes and better prognosis, especially for facial LM and LMM. © 2014 British Association of Dermatologists.

  10. Monogamy Relations for Squared Entanglement Negativity

    NASA Astrophysics Data System (ADS)

    Liu, Feng

    2016-10-01

    This paper contains two main contents. In the first part, we provide two counterexamples of monogamy inequalities for the squared entanglement negativity: one three-qutrit pure state which violates of the He—Vidal monogamy conjecture, and one four-qubit pure state which disproves the squared-negativity-based Regula—Martino—Lee—Adesso-class strong monogamy conjecture. In the second part, we investigate the sharing of the entanglement negativity in a composite cavity-reservoir system using the corresponding multipartite entanglement scores, and then we find that there is no simple dominating relation between multipartite entanglement scores and the entanglement negativity in composite cavity-reservoir systems. As a by-product, we further validate that the entanglement of two cavity photons is a decreasing function of the evolution time, and the entanglement will suddenly disappear interacting with independent reservoirs. Supported by the National Natural Science Foundation of China under Grant No. 60973135 and Shandong Provincial Natural Science Foundation of China under Grant No. ZR2015FQ006

  11. Role of Square Flap in Post Burn Axillary Contractures.

    PubMed

    Karki, Durga; Narayan, Ravi Prakash

    2017-09-01

    Post-burn contractures are a commonly encountered problem and many techniques have been described in their treatment. Z-plasties are the commonest local flap procedure done for linear bands with adjacent healthy tissue. Our aim was to assess the use of square flap technique in axillary contractures. Ten patients with type I and II axillary contractures underwent release by the square flap technique. All cases were followed up for at least one year and analysed for range of motion and aesthetic outcome. All cases achieved full range of movement postoperatively with no recurrence during follow up period and a good cosmetic outcome. Square flap was shown to be a reliable technique for mild to moderate axillary contractures of the anterior or posterior axillary folds even when there is significant adjacent scarring of chest wall or back of types I and II.

  12. Photo-Induced Assembly of a Luminescent Tetraruthenium Square.

    PubMed

    Laramée-Milette, Baptiste; Nastasi, Francesco; Puntoriero, Fausto; Campagna, Sebastiano; Hanan, Garry S

    2017-11-21

    Self-assembly is a powerful synthetic tool that has led to the development of one-, two- and three-dimensional architectures. From MOFs to molecular flasks, self-assembled materials have proven to be of great interest to the scientific community. Here we describe a strategy for the construction and de-construction of a supramolecular structure through unprecedented photo-induced assembly and dis-assembly. The combination of two approaches, a [n×1]-directional bonding strategy and a ligand photo-dissociation strategy, allows the photo-induced assembly of a polypyridyl Ru II precursor into a discrete molecular square. Diffusion-ordered NMR spectroscopy confirmed the synthesis of a higher volume species, while the identity of the species was established by high-resolution mass spectrometry and single-crystal X-ray diffraction studies. The self-assembled square is not obtained by classical thermal techniques in similar conditions, but is obtained only by light-irradiation. The tetraruthenium square has an excited-state lifetime (135 ns), 40 times that of its mononuclear precursor and its luminescence quantum yield (1.0 %) is three orders of magnitude higher. These remarkable luminescence properties are closely related to the relatively rigid square structure of the tetraruthenium assembly, as suggested by slow radiationless decay and transient absorption spectroscopy. The results described herein are a rare example of photo-induced assembly and dis-assembly processes, and can open the way to a new avenue in supramolecular chemistry, leading to the preparation of structurally organized supermolecules by photochemical techniques. © 2017 Wiley-VCH Verlag GmbH & Co. KGaA, Weinheim.

  13. Two Fundamental Issues in Multiprocessing.

    DTIC Science & Technology

    1987-10-01

    Structural Model of a Multiprocessor 6 Figure 5: Operational Model of a Multiprocessor 7 Figure 6: The von Neumann Processor (from Gajski and Peir [201) 10...Computer Society, June, 1983. 20. Gajski , D. D. & J-K. Peir. "Essential Issues in Multiprocessor Systems". Computer 18, 6 (June 1985), 9-27. 21. Gurd

  14. Latin-square three-dimensional gage master

    DOEpatents

    Jones, L.

    1981-05-12

    A gage master for coordinate measuring machines has an nxn array of objects distributed in the Z coordinate utilizing the concept of a Latin square experimental design. Using analysis of variance techniques, the invention may be used to identify sources of error in machine geometry and quantify machine accuracy.

  15. Latin square three dimensional gage master

    DOEpatents

    Jones, Lynn L.

    1982-01-01

    A gage master for coordinate measuring machines has an nxn array of objects distributed in the Z coordinate utilizing the concept of a Latin square experimental design. Using analysis of variance techniques, the invention may be used to identify sources of error in machine geometry and quantify machine accuracy.

  16. A Limitation with Least Squares Predictions

    ERIC Educational Resources Information Center

    Bittner, Teresa L.

    2013-01-01

    Although researchers have documented that some data make larger contributions than others to predictions made with least squares models, it is relatively unknown that some data actually make no contribution to the predictions produced by these models. This article explores such noncontributory data. (Contains 1 table and 2 figures.)

  17. Expedition 52 Red Square Visit

    NASA Image and Video Library

    2017-07-10

    Expedition 52 backup crew members Norishige Kanai of the Japan Aerospace Exploration Agency (JAXA), left, Alexander Misurkin of Roscosmos, center, and Mark Vande Hei of NASA pose for a photograph in front of Saint Basil's Cathedral as they visited Red Square to lay roses at the site where Russian space icons are interred as part of traditional pre-launch ceremonies, Monday, July 10, 2017 in Moscow. Photo Credit: (NASA/Bill Ingalls)

  18. Tri-Squared Mean Cross Comparative Analysis: An Advanced Post Hoc Qualitative and Quantitative Metric for a More In-Depth Examination of the Initial Research Outcomes of the Tri-Square Test

    ERIC Educational Resources Information Center

    Osler, James Edward

    2013-01-01

    This monograph provides an epistemological rational for the design of an advanced novel analysis metric. The metric is designed to analyze the outcomes of the Tri-Squared Test. This methodology is referred to as: "Tri-Squared Mean Cross Comparative Analysis" (given the acronym TSMCCA). Tri-Squared Mean Cross Comparative Analysis involves…

  19. Parameter estimation of Monod model by the Least-Squares method for microalgae Botryococcus Braunii sp

    NASA Astrophysics Data System (ADS)

    See, J. J.; Jamaian, S. S.; Salleh, R. M.; Nor, M. E.; Aman, F.

    2018-04-01

    This research aims to estimate the parameters of Monod model of microalgae Botryococcus Braunii sp growth by the Least-Squares method. Monod equation is a non-linear equation which can be transformed into a linear equation form and it is solved by implementing the Least-Squares linear regression method. Meanwhile, Gauss-Newton method is an alternative method to solve the non-linear Least-Squares problem with the aim to obtain the parameters value of Monod model by minimizing the sum of square error ( SSE). As the result, the parameters of the Monod model for microalgae Botryococcus Braunii sp can be estimated by the Least-Squares method. However, the estimated parameters value obtained by the non-linear Least-Squares method are more accurate compared to the linear Least-Squares method since the SSE of the non-linear Least-Squares method is less than the linear Least-Squares method.

  20. Solution of a Complex Least Squares Problem with Constrained Phase.

    PubMed

    Bydder, Mark

    2010-12-30

    The least squares solution of a complex linear equation is in general a complex vector with independent real and imaginary parts. In certain applications in magnetic resonance imaging, a solution is desired such that each element has the same phase. A direct method for obtaining the least squares solution to the phase constrained problem is described.

  1. From direct-space discrepancy functions to crystallographic least squares.

    PubMed

    Giacovazzo, Carmelo

    2015-01-01

    Crystallographic least squares are a fundamental tool for crystal structure analysis. In this paper their properties are derived from functions estimating the degree of similarity between two electron-density maps. The new approach leads also to modifications of the standard least-squares procedures, potentially able to improve their efficiency. The role of the scaling factor between observed and model amplitudes is analysed: the concept of unlocated model is discussed and its scattering contribution is combined with that arising from the located model. Also, the possible use of an ancillary parameter, to be associated with the classical weight related to the variance of the observed amplitudes, is studied. The crystallographic discrepancy factors, basic tools often combined with least-squares procedures in phasing approaches, are analysed. The mathematical approach here described includes, as a special case, the so-called vector refinement, used when accurate estimates of the target phases are available.

  2. Least squares reverse time migration of controlled order multiples

    NASA Astrophysics Data System (ADS)

    Liu, Y.

    2016-12-01

    Imaging using the reverse time migration of multiples generates inherent crosstalk artifacts due to the interference among different order multiples. Traditionally, least-square fitting has been used to address this issue by seeking the best objective function to measure the amplitude differences between the predicted and observed data. We have developed an alternative objective function by decomposing multiples into different orders to minimize the difference between Born modeling predicted multiples and specific-order multiples from observational data in order to attenuate the crosstalk. This method is denoted as the least-squares reverse time migration of controlled order multiples (LSRTM-CM). Our numerical examples demonstrated that the LSRTM-CM can significantly improve image quality compared with reverse time migration of multiples and least-square reverse time migration of multiples. Acknowledgments This research was funded by the National Nature Science Foundation of China (Grant Nos. 41430321 and 41374138).

  3. Weighted linear least squares estimation of diffusion MRI parameters: strengths, limitations, and pitfalls.

    PubMed

    Veraart, Jelle; Sijbers, Jan; Sunaert, Stefan; Leemans, Alexander; Jeurissen, Ben

    2013-11-01

    Linear least squares estimators are widely used in diffusion MRI for the estimation of diffusion parameters. Although adding proper weights is necessary to increase the precision of these linear estimators, there is no consensus on how to practically define them. In this study, the impact of the commonly used weighting strategies on the accuracy and precision of linear diffusion parameter estimators is evaluated and compared with the nonlinear least squares estimation approach. Simulation and real data experiments were done to study the performance of the weighted linear least squares estimators with weights defined by (a) the squares of the respective noisy diffusion-weighted signals; and (b) the squares of the predicted signals, which are reconstructed from a previous estimate of the diffusion model parameters. The negative effect of weighting strategy (a) on the accuracy of the estimator was surprisingly high. Multi-step weighting strategies yield better performance and, in some cases, even outperformed the nonlinear least squares estimator. If proper weighting strategies are applied, the weighted linear least squares approach shows high performance characteristics in terms of accuracy/precision and may even be preferred over nonlinear estimation methods. Copyright © 2013 Elsevier Inc. All rights reserved.

  4. Hybrid least squares multivariate spectral analysis methods

    DOEpatents

    Haaland, David M.

    2002-01-01

    A set of hybrid least squares multivariate spectral analysis methods in which spectral shapes of components or effects not present in the original calibration step are added in a following estimation or calibration step to improve the accuracy of the estimation of the amount of the original components in the sampled mixture. The "hybrid" method herein means a combination of an initial classical least squares analysis calibration step with subsequent analysis by an inverse multivariate analysis method. A "spectral shape" herein means normally the spectral shape of a non-calibrated chemical component in the sample mixture but can also mean the spectral shapes of other sources of spectral variation, including temperature drift, shifts between spectrometers, spectrometer drift, etc. The "shape" can be continuous, discontinuous, or even discrete points illustrative of the particular effect.

  5. A Simple Introduction to Moving Least Squares and Local Regression Estimation

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

    Garimella, Rao Veerabhadra

    In this brief note, a highly simpli ed introduction to esimating functions over a set of particles is presented. The note starts from Global Least Squares tting, going on to Moving Least Squares estimation (MLS) and nally, Local Regression Estimation (LRE).

  6. Numerical modeling of the sound fields in urban squares

    NASA Astrophysics Data System (ADS)

    Kang, Jian

    2005-06-01

    This paper studies the basic characteristics of sound fields in urban squares surrounded by reflecting building façades and the effectiveness of architectural changes and urban design options. A radiosity model and an image source model are developed, and a parametric study is carried out in hypothetical squares. The results show that the reverberation time (RT) is rather even in a square, whereas the early decay time (EDT) is very low in the near field, and then becomes close to RT after a rapid increase. Compared to diffuse boundaries, with geometrical boundaries the RT and EDT are significantly longer and the sound pressure level (SPL) attenuation with distance is generally smaller unless the height/side ratio is high. With a boundary diffusion coefficient of 0.2, the sound field is already close to that resulting from purely diffusely reflecting boundaries. The SPL in far field is typically 6-9 dB lower if the square side is doubled; 8 dB lower if the height of building façades is decreased from 50 m to 6 m (diffuse boundaries); 5 dB (diffuse boundaries) or 2 dB (geometrical boundaries) lower if the length/width ratio is increased from 1 to 4; and 10-12 dB lower if the boundary absorption coefficient is increased from 0.1 to 0.9. .

  7. Numerical modeling of the sound fields in urban squares.

    PubMed

    Kang, Jian

    2005-06-01

    This paper studies the basic characteristics of sound fields in urban squares surrounded by reflecting building façades and the effectiveness of architectural changes and urban design options. A radiosity model and an image source model are developed, and a parametric study is carried out in hypothetical squares. The results show that the reverberation time (RT) is rather even in a square, whereas the early decay time (EDT) is very low in the near field, and then becomes close to RT after a rapid increase. Compared to diffuse boundaries, with geometrical boundaries the RT and EDT are significantly longer and the sound pressure level (SPL) attenuation with distance is generally smaller unless the height/side ratio is high. With a boundary diffusion coefficient of 0.2, the sound field is already close to that resulting from purely diffusely reflecting boundaries. The SPL in far field is typically 6-9 dB lower if the square side is doubled; 8 dB lower if the height of building façades is decreased from 50 m to 6 m (diffuse boundaries); 5 dB (diffuse boundaries) or 2 dB (geometrical boundaries) lower if the length/width ratio is increased from 1 to 4; and 10-12 dB lower if the boundary absorption coefficient is increased from 0.1 to 0.9.

  8. Comparative assessment of orthogonal polynomials for wavefront reconstruction over the square aperture.

    PubMed

    Ye, Jingfei; Gao, Zhishan; Wang, Shuai; Cheng, Jinlong; Wang, Wei; Sun, Wenqing

    2014-10-01

    Four orthogonal polynomials for reconstructing a wavefront over a square aperture based on the modal method are currently available, namely, the 2D Chebyshev polynomials, 2D Legendre polynomials, Zernike square polynomials and Numerical polynomials. They are all orthogonal over the full unit square domain. 2D Chebyshev polynomials are defined by the product of Chebyshev polynomials in x and y variables, as are 2D Legendre polynomials. Zernike square polynomials are derived by the Gram-Schmidt orthogonalization process, where the integration region across the full unit square is circumscribed outside the unit circle. Numerical polynomials are obtained by numerical calculation. The presented study is to compare these four orthogonal polynomials by theoretical analysis and numerical experiments from the aspects of reconstruction accuracy, remaining errors, and robustness. Results show that the Numerical orthogonal polynomial is superior to the other three polynomials because of its high accuracy and robustness even in the case of a wavefront with incomplete data.

  9. Simulation-Based Approach to Determining Electron Transfer Rates Using Square-Wave Voltammetry.

    PubMed

    Dauphin-Ducharme, Philippe; Arroyo-Currás, Netzahualcóyotl; Kurnik, Martin; Ortega, Gabriel; Li, Hui; Plaxco, Kevin W

    2017-05-09

    The efficiency with which square-wave voltammetry differentiates faradic and charging currents makes it a particularly sensitive electroanalytical approach, as evidenced by its ability to measure nanomolar or even picomolar concentrations of electroactive analytes. Because of the relative complexity of the potential sweep it uses, however, the extraction of detailed kinetic and mechanistic information from square-wave data remains challenging. In response, we demonstrate here a numerical approach by which square-wave data can be used to determine electron transfer rates. Specifically, we have developed a numerical approach in which we model the height and the shape of voltammograms collected over a range of square-wave frequencies and amplitudes to simulated voltammograms as functions of the heterogeneous rate constant and the electron transfer coefficient. As validation of the approach, we have used it to determine electron transfer kinetics in both freely diffusing and diffusionless surface-tethered species, obtaining electron transfer kinetics in all cases in good agreement with values derived using non-square-wave methods.

  10. Factor Analysis by Generalized Least Squares.

    ERIC Educational Resources Information Center

    Joreskog, Karl G.; Goldberger, Arthur S.

    Aitkin's generalized least squares (GLS) principle, with the inverse of the observed variance-covariance matrix as a weight matrix, is applied to estimate the factor analysis model in the exploratory (unrestricted) case. It is shown that the GLS estimates are scale free and asymptotically efficient. The estimates are computed by a rapidly…

  11. Non-Circular Wheels: Reuleaux and Squares

    ERIC Educational Resources Information Center

    Mills, Allan

    2011-01-01

    Circular wheels are so familiar on vehicles of all types that it is seldom realized that alternatives do exist. This short non-mathematical article describes Reuleaux and square wheels that, rolling along appropriate tracks, can maintain a moving platform at a constant height. Easily made working models lend themselves to demonstrations at science…

  12. Acoustophoretic particle motion in a square glass capillary

    NASA Astrophysics Data System (ADS)

    Barnkob, Rune; Marin, Alvaro; Rossi, Massimiliano; Kähler, Christian J.

    2014-11-01

    Acoustofluidics applications often use complex resonator geometries and complex acoustic actuation, which complicates the prediction of the acoustic resonances and the induced forces from the acoustic radiation and the acoustic streaming. Recently, it was shown that simultaneous actuation of two perpendicular half-wave resonances in a square channel can lead to acoustic streaming that will spiral small particles towards the pressure nodal center (Antfolk, Anal. Chem. 84, 2012). This we investigate in details experimentally by examining a square glass capillary with a 400- μm microchannel acoustically actuated around its 2-MHz half-wave transverse resonance. The acoustic actuation leads to the formation of a half-wave resonance in both the vertical and horizontal direction of the microchannel. Due to viscous and dissipative losses both resonances have finite widths, but are shifted in frequency due to asymmetric actuation and fabrication tolerances making the channel not perfectly square. We determine the resonance widths and shift by measuring the 3D3C trajectories of large particles whose motion is fully dominated by acoustic radiation forces, while the induced acoustic streaming is determined by measuring smaller particles weakly influenced by the acoustic radiation force. DFG KA 1808/16-1.

  13. Physicochemically Tunable Polyfunctionalized RNA Square Architecture with Fluorogenic and Ribozymatic Properties

    PubMed Central

    2015-01-01

    Recent advances in RNA nanotechnology allow the rational design of various nanoarchitectures. Previous methods utilized conserved angles from natural RNA motifs to form geometries with specific sizes. However, the feasibility of producing RNA architecture with variable sizes using native motifs featuring fixed sizes and angles is limited. It would be advantageous to display RNA nanoparticles of diverse shape and size derived from a given primary sequence. Here, we report an approach to construct RNA nanoparticles with tunable size and stability. Multifunctional RNA squares with a 90° angle were constructed by tuning the 60° angle of the three-way junction (3WJ) motif from the packaging RNA (pRNA) of the bacteriophage phi29 DNA packaging motor. The physicochemical properties and size of the RNA square were also easily tuned by modulating the “core” strand and adjusting the length of the sides of the square via predictable design. Squares of 5, 10, and 20 nm were constructed, each showing diverse thermodynamic and chemical stabilities. Four “arms” extending from the corners of the square were used to incorporate siRNA, ribozyme, and fluorogenic RNA motifs. Unique intramolecular contact using the pre-existing intricacy of the 3WJ avoids relatively weaker intermolecular interactions via kissing loops or sticky ends. Utilizing the 3WJ motif, we have employed a modular design technique to construct variable-size RNA squares with controllable properties and functionalities for diverse and versatile applications with engineering, pharmaceutical, and medical potential. This technique for simple design to finely tune physicochemical properties adds a new angle to RNA nanotechnology. PMID:24971772

  14. Least-squares sequential parameter and state estimation for large space structures

    NASA Technical Reports Server (NTRS)

    Thau, F. E.; Eliazov, T.; Montgomery, R. C.

    1982-01-01

    This paper presents the formulation of simultaneous state and parameter estimation problems for flexible structures in terms of least-squares minimization problems. The approach combines an on-line order determination algorithm, with least-squares algorithms for finding estimates of modal approximation functions, modal amplitudes, and modal parameters. The approach combines previous results on separable nonlinear least squares estimation with a regression analysis formulation of the state estimation problem. The technique makes use of sequential Householder transformations. This allows for sequential accumulation of matrices required during the identification process. The technique is used to identify the modal prameters of a flexible beam.

  15. Restoration and the City: The Role of Public Urban Squares

    PubMed Central

    San Juan, César; Subiza-Pérez, Mikel; Vozmediano, Laura

    2017-01-01

    Over recent decades, the study of psychological restoration has attracted a considerable amount of interest within and without the boundaries of environmental psychology, with most of the work focused on analyzing restoration in natural contexts. However, little attention has been paid to the (possible) restorative potential of urban settings, as they have usually been expected not to be restorative and to present some elements that might imply negative health outcomes in the short and long term. In this field study, our aim was to evaluate restoration in urban squares. To this end, we measured participants' attentional and affective states both before and after spending half an hour in an urban square. A sample of 46 subjects contemplated and walked through one of the two selected squares that differed in restorative potential (PRS). Analyses revealed a statistically significant increase in cognitive performance and a decrease in negative affect in both squares. They also showed that participants reported greater stress recovery rates in one of the settings. These results support the idea that cities can be potentially restorative and justify the relevance of a research area focused on the urban designs, which may offer psychological benefits to urban citizens. PMID:29270139

  16. Software For Least-Squares And Robust Estimation

    NASA Technical Reports Server (NTRS)

    Jeffreys, William H.; Fitzpatrick, Michael J.; Mcarthur, Barbara E.; Mccartney, James

    1990-01-01

    GAUSSFIT computer program includes full-featured programming language facilitating creation of mathematical models solving least-squares and robust-estimation problems. Programming language designed to make it easy to specify complex reduction models. Written in 100 percent C language.

  17. Polar and singular value decomposition of 3×3 magic squares

    NASA Astrophysics Data System (ADS)

    Trenkler, Götz; Schmidt, Karsten; Trenkler, Dietrich

    2013-07-01

    In this note, we find polar as well as singular value decompositions of a 3×3 magic square, i.e. a 3×3 matrix M with real elements where each row, column and diagonal adds up to the magic sum s of the magic square.

  18. On Least Squares Fitting Nonlinear Submodels.

    ERIC Educational Resources Information Center

    Bechtel, Gordon G.

    Three simplifying conditions are given for obtaining least squares (LS) estimates for a nonlinear submodel of a linear model. If these are satisfied, and if the subset of nonlinear parameters may be LS fit to the corresponding LS estimates of the linear model, then one attains the desired LS estimates for the entire submodel. Two illustrative…

  19. Revisiting the Least-squares Procedure for Gradient Reconstruction on Unstructured Meshes

    NASA Technical Reports Server (NTRS)

    Mavriplis, Dimitri J.; Thomas, James L. (Technical Monitor)

    2003-01-01

    The accuracy of the least-squares technique for gradient reconstruction on unstructured meshes is examined. While least-squares techniques produce accurate results on arbitrary isotropic unstructured meshes, serious difficulties exist for highly stretched meshes in the presence of surface curvature. In these situations, gradients are typically under-estimated by up to an order of magnitude. For vertex-based discretizations on triangular and quadrilateral meshes, and cell-centered discretizations on quadrilateral meshes, accuracy can be recovered using an inverse distance weighting in the least-squares construction. For cell-centered discretizations on triangles, both the unweighted and weighted least-squares constructions fail to provide suitable gradient estimates for highly stretched curved meshes. Good overall flow solution accuracy can be retained in spite of poor gradient estimates, due to the presence of flow alignment in exactly the same regions where the poor gradient accuracy is observed. However, the use of entropy fixes has the potential for generating large but subtle discretization errors.

  20. Formation mechanism of dot-line square superlattice pattern in dielectric barrier discharge

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

    Liu, Weibo; Dong, Lifang, E-mail: donglfhbu@163.com, E-mail: pyy1616@163.com; Wang, Yongjie

    We investigate the formation mechanism of the dot-line square superlattice pattern (DLSSP) in dielectric barrier discharge. The spatio-temporal structure studied by using the intensified-charge coupled device camera shows that the DLSSP is an interleaving of three different subpatterns in one half voltage cycle. The dot square lattice discharges first and, then, the two kinds of line square lattices, which form square grid structures discharge twice. When the gas pressure is varied, DLSSP can transform from square superlattice pattern (SSP). The spectral line profile method is used to compare the electron densities, which represent the amounts of surface charges qualitatively. Itmore » is found that the amount of surface charges accumulated by the first discharge of DLSSP is less than that of SSP, leading to a bigger discharge area of the following discharge (lines of DLSSP instead of halos of SSP). The spatial distribution of the electric field of the surface charges is simulated to explain the formation of DLSSP. This paper may provide a deeper understanding for the formation mechanism of complex superlattice patterns in DBD.« less

  1. Synchronization of tunable asymmetric square-wave pulses in delay-coupled optoelectronic oscillators.

    PubMed

    Martínez-Llinàs, Jade; Colet, Pere; Erneux, Thomas

    2015-03-01

    We consider a model for two delay-coupled optoelectronic oscillators under positive delayed feedback as prototypical to study the conditions for synchronization of asymmetric square-wave oscillations, for which the duty cycle is not half of the period. We show that the scenario arising for positive feedback is much richer than with negative feedback. First, it allows for the coexistence of multiple in- and out-of-phase asymmetric periodic square waves for the same parameter values. Second, it is tunable: The period of all the square-wave periodic pulses can be tuned with the ratio of the delays, and the duty cycle of the asymmetric square waves can be changed with the offset phase while the total period remains constant. Finally, in addition to the multiple in- and out-of-phase periodic square waves, low-frequency periodic asymmetric solutions oscillating in phase may coexist for the same values of the parameters. Our analytical results are in agreement with numerical simulations and bifurcation diagrams obtained by using continuation techniques.

  2. Cautionary Note on Reporting Eta-Squared Values from Multifactor ANOVA Designs

    ERIC Educational Resources Information Center

    Pierce, Charles A.; Block, Richard A.; Aguinis, Herman

    2004-01-01

    The authors provide a cautionary note on reporting accurate eta-squared values from multifactor analysis of variance (ANOVA) designs. They reinforce the distinction between classical and partial eta-squared as measures of strength of association. They provide examples from articles published in premier psychology journals in which the authors…

  3. Accurate human limb angle measurement: sensor fusion through Kalman, least mean squares and recursive least-squares adaptive filtering

    NASA Astrophysics Data System (ADS)

    Olivares, A.; Górriz, J. M.; Ramírez, J.; Olivares, G.

    2011-02-01

    Inertial sensors are widely used in human body motion monitoring systems since they permit us to determine the position of the subject's limbs. Limb angle measurement is carried out through the integration of the angular velocity measured by a rate sensor and the decomposition of the components of static gravity acceleration measured by an accelerometer. Different factors derived from the sensors' nature, such as the angle random walk and dynamic bias, lead to erroneous measurements. Dynamic bias effects can be reduced through the use of adaptive filtering based on sensor fusion concepts. Most existing published works use a Kalman filtering sensor fusion approach. Our aim is to perform a comparative study among different adaptive filters. Several least mean squares (LMS), recursive least squares (RLS) and Kalman filtering variations are tested for the purpose of finding the best method leading to a more accurate and robust limb angle measurement. A new angle wander compensation sensor fusion approach based on LMS and RLS filters has been developed.

  4. An information geometric approach to least squares minimization

    NASA Astrophysics Data System (ADS)

    Transtrum, Mark; Machta, Benjamin; Sethna, James

    2009-03-01

    Parameter estimation by nonlinear least squares minimization is a ubiquitous problem that has an elegant geometric interpretation: all possible parameter values induce a manifold embedded within the space of data. The minimization problem is then to find the point on the manifold closest to the origin. The standard algorithm for minimizing sums of squares, the Levenberg-Marquardt algorithm, also has geometric meaning. When the standard algorithm fails to efficiently find accurate fits to the data, geometric considerations suggest improvements. Problems involving large numbers of parameters, such as often arise in biological contexts, are notoriously difficult. We suggest an algorithm based on geodesic motion that may offer improvements over the standard algorithm for a certain class of problems.

  5. Least-Squares Self-Calibration of Imaging Array Data

    NASA Technical Reports Server (NTRS)

    Arendt, R. G.; Moseley, S. H.; Fixsen, D. J.

    2004-01-01

    When arrays are used to collect multiple appropriately-dithered images of the same region of sky, the resulting data set can be calibrated using a least-squares minimization procedure that determines the optimal fit between the data and a model of that data. The model parameters include the desired sky intensities as well as instrument parameters such as pixel-to-pixel gains and offsets. The least-squares solution simultaneously provides the formal error estimates for the model parameters. With a suitable observing strategy, the need for separate calibration observations is reduced or eliminated. We show examples of this calibration technique applied to HST NICMOS observations of the Hubble Deep Fields and simulated SIRTF IRAC observations.

  6. Radiation and viscous dissipation effect on square porous annulus

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

    Badruddin, Irfan Anjum; Quadir, G. A.

    The present study is carried out to investigate the effect of radiation and viscous dissipation in a square porous annulus subjected to outside hot T{sub h} and inside cold T{sub c} temperature. The square annulus has a hollow section of dimension D×D at the interior of annulus. The flow is assumed to obey Darcy law. The governing equations are non-dimensionalised and solved with the help of finite element method. Results are discussed with respect to viscous dissipation parameter, radiation parameter and size of the hollow section of annulus.

  7. First-Order System Least-Squares for Second-Order Elliptic Problems with Discontinuous Coefficients

    NASA Technical Reports Server (NTRS)

    Manteuffel, Thomas A.; McCormick, Stephen F.; Starke, Gerhard

    1996-01-01

    The first-order system least-squares methodology represents an alternative to standard mixed finite element methods. Among its advantages is the fact that the finite element spaces approximating the pressure and flux variables are not restricted by the inf-sup condition and that the least-squares functional itself serves as an appropriate error measure. This paper studies the first-order system least-squares approach for scalar second-order elliptic boundary value problems with discontinuous coefficients. Ellipticity of an appropriately scaled least-squares bilinear form of the size of the jumps in the coefficients leading to adequate finite element approximation results. The occurrence of singularities at interface corners and cross-points is discussed. and a weighted least-squares functional is introduced to handle such cases. Numerical experiments are presented for two test problems to illustrate the performance of this approach.

  8. Monogamy relation of multi-qubit systems for squared Tsallis-q entanglement

    PubMed Central

    Yuan, Guang-Ming; Song, Wei; Yang, Ming; Li, Da-Chuang; Zhao, Jun-Long; Cao, Zhuo-Liang

    2016-01-01

    Tsallis-q entanglement is a bipartite entanglement measure which is the generalization of entanglement of formation for q tending to 1. We first expand the range of q for the analytic formula of Tsallis-q entanglement. For , we prove the monogamy relation in terms of the squared Tsallis-q entanglement for an arbitrary multi-qubit systems. It is shown that the multipartite entanglement indicator based on squared Tsallis-q entanglement still works well even when the indicator based on the squared concurrence loses its efficacy. We also show that the μ-th power of Tsallis-q entanglement satisfies the monogamy or polygamy inequalities for any three-qubit state. PMID:27346605

  9. Reconnaissance On Chi-Square Test Procedure For Determining Two Species Association

    NASA Astrophysics Data System (ADS)

    Marisa, Hanifa

    2008-01-01

    Determining the assosiation of two species by using chi-square test has been published. Utility of this procedure to plants species at certain location, shows that the procedure could not find "ecologically" association. Tens sampling units have been made to record some weeds species in Indralaya, South Sumatera. Chi square test; Xt2 = N[|(ad)-(bc)|-(N/2)]2/mnrs (Eq:1) on two species (Cleome sp and Eleusine indica) of the weeds shows positive assosiation; while ecologically in nature, there is no relationship between them. Some alternatives are proposed to this problem; simplified chi-square test steps, make further study to find out ecologically association, or at last, ignore it.

  10. Monogamy relation of multi-qubit systems for squared Tsallis-q entanglement

    NASA Astrophysics Data System (ADS)

    Yuan, Guang-Ming; Song, Wei; Yang, Ming; Li, Da-Chuang; Zhao, Jun-Long; Cao, Zhuo-Liang

    2016-06-01

    Tsallis-q entanglement is a bipartite entanglement measure which is the generalization of entanglement of formation for q tending to 1. We first expand the range of q for the analytic formula of Tsallis-q entanglement. For , we prove the monogamy relation in terms of the squared Tsallis-q entanglement for an arbitrary multi-qubit systems. It is shown that the multipartite entanglement indicator based on squared Tsallis-q entanglement still works well even when the indicator based on the squared concurrence loses its efficacy. We also show that the μ-th power of Tsallis-q entanglement satisfies the monogamy or polygamy inequalities for any three-qubit state.

  11. Monogamy relation of multi-qubit systems for squared Tsallis-q entanglement.

    PubMed

    Yuan, Guang-Ming; Song, Wei; Yang, Ming; Li, Da-Chuang; Zhao, Jun-Long; Cao, Zhuo-Liang

    2016-06-27

    Tsallis-q entanglement is a bipartite entanglement measure which is the generalization of entanglement of formation for q tending to 1. We first expand the range of q for the analytic formula of Tsallis-q entanglement. For , we prove the monogamy relation in terms of the squared Tsallis-q entanglement for an arbitrary multi-qubit systems. It is shown that the multipartite entanglement indicator based on squared Tsallis-q entanglement still works well even when the indicator based on the squared concurrence loses its efficacy. We also show that the μ-th power of Tsallis-q entanglement satisfies the monogamy or polygamy inequalities for any three-qubit state.

  12. Analysis of the Latin Square Task with Linear Logistic Test Models

    ERIC Educational Resources Information Center

    Zeuch, Nina; Holling, Heinz; Kuhn, Jorg-Tobias

    2011-01-01

    The Latin Square Task (LST) was developed by Birney, Halford, and Andrews [Birney, D. P., Halford, G. S., & Andrews, G. (2006). Measuring the influence of cognitive complexity on relational reasoning: The development of the Latin Square Task. Educational and Psychological Measurement, 66, 146-171.] and represents a non-domain specific,…

  13. A Graphic Chi-Square Test For Two-Class Genetic Segregation Ratios

    Treesearch

    A.E. Squillace; D.J. Squillace

    1970-01-01

    A chart is presented for testing the goodness of fit of observed two-class genetic segregation ratios against hypothetical ratios, eliminating the need of computing chi-square. Although designed mainly for genetic studies, the chart can also be used for other types of studies involving two-class chi-square tests.

  14. Expedition 52 Red Square Visit

    NASA Image and Video Library

    2017-07-10

    Expedition 52 flight engineers Paolo Nespoli of ESA, left, Randy Bresnik of NASA, Sergey Ryazanskiy of Roscosmos, and backup crew members, Alexander Misurkin of Roscosmos, Mark Vande Hei of NASA, and Norishige Kanai of the Japan Aerospace Exploration Agency (JAXA), right, pose for a group photograph in Red Square after having laid roses at the site where Russian space icons are interred as part of traditional pre-launch ceremonies, Monday, July 10, 2017 in Moscow. Photo Credit: (NASA/Bill Ingalls)

  15. Least squares regression methods for clustered ROC data with discrete covariates.

    PubMed

    Tang, Liansheng Larry; Zhang, Wei; Li, Qizhai; Ye, Xuan; Chan, Leighton

    2016-07-01

    The receiver operating characteristic (ROC) curve is a popular tool to evaluate and compare the accuracy of diagnostic tests to distinguish the diseased group from the nondiseased group when test results from tests are continuous or ordinal. A complicated data setting occurs when multiple tests are measured on abnormal and normal locations from the same subject and the measurements are clustered within the subject. Although least squares regression methods can be used for the estimation of ROC curve from correlated data, how to develop the least squares methods to estimate the ROC curve from the clustered data has not been studied. Also, the statistical properties of the least squares methods under the clustering setting are unknown. In this article, we develop the least squares ROC methods to allow the baseline and link functions to differ, and more importantly, to accommodate clustered data with discrete covariates. The methods can generate smooth ROC curves that satisfy the inherent continuous property of the true underlying curve. The least squares methods are shown to be more efficient than the existing nonparametric ROC methods under appropriate model assumptions in simulation studies. We apply the methods to a real example in the detection of glaucomatous deterioration. We also derive the asymptotic properties of the proposed methods. © 2016 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.

  16. 1.9 μm square-wave passively Q-witched mode-locked fiber laser.

    PubMed

    Ma, Wanzhuo; Wang, Tianshu; Su, Qingchao; Wang, Furen; Zhang, Jing; Wang, Chengbo; Jiang, Huilin

    2018-05-14

    We propose and demonstrate the operation of Q-switched mode-locked square-wave pulses in a thulium-holmium co-doped fiber laser. By using a nonlinear amplifying loop mirror, continuous square-wave dissipative soliton resonance pulse is obtained with 4.4 MHz repetition rate. With the increasing pump power, square-wave pulse duration can be broadened from 1.7 ns to 3.2 ns. On such basis Q-switched mode-locked operation is achieved by properly setting the pump power and the polarization controllers. The internal mode-locked pulses in Q-switched envelope still keep square-wave type. The Q-switched repetition rate can be varied from 41.6 kHz to 74 kHz by increasing pump power. The corresponding average single-pulse energy increases from 2.67 nJ to 5.2 nJ. The average peak power is also improved from 0.6 W to 1.1 W when continuous square-wave operation is changed into Q-switched mode-locked operation. It indicates that Q-switched mode-locked operation is an effective method to increase the square-wave pulse energy and peak power.

  17. Application of Least Mean Square Algorithms to Spacecraft Vibration Compensation

    NASA Technical Reports Server (NTRS)

    Woodard , Stanley E.; Nagchaudhuri, Abhijit

    1998-01-01

    This paper describes the application of the Least Mean Square (LMS) algorithm in tandem with the Filtered-X Least Mean Square algorithm for controlling a science instrument's line-of-sight pointing. Pointing error is caused by a periodic disturbance and spacecraft vibration. A least mean square algorithm is used on-orbit to produce the transfer function between the instrument's servo-mechanism and error sensor. The result is a set of adaptive transversal filter weights tuned to the transfer function. The Filtered-X LMS algorithm, which is an extension of the LMS, tunes a set of transversal filter weights to the transfer function between the disturbance source and the servo-mechanism's actuation signal. The servo-mechanism's resulting actuation counters the disturbance response and thus maintains accurate science instrumental pointing. A simulation model of the Upper Atmosphere Research Satellite is used to demonstrate the algorithms.

  18. AB-stacked square-like bilayer ice in graphene nanocapillaries.

    PubMed

    Zhu, YinBo; Wang, FengChao; Bai, Jaeil; Zeng, Xiao Cheng; Wu, HengAn

    2016-08-10

    Water, when constrained between two graphene sheets and under ultrahigh pressure, can manifest dramatic differences from its bulk counterparts such as the van der Waals pressure induced water-to-ice transformation, known as the metastability limit of two-dimensional (2D) liquid. Here, we present result of a new crystalline structure of bilayer ice with the AB-stacking order, observed from molecular dynamics simulations of constrained water. This AB-stacked bilayer ice (BL-ABI) is transformed from the puckered monolayer square-like ice (pMSI) under higher lateral pressure in the graphene nanocapillary at ambient temperature. BL-ABI is a proton-ordered ice with square-like pattern. The transition from pMSI to BL-ABI is through crystal-to-amorphous-to-crystal pathway with notable hysteresis-loop in the potential energy during the compression/decompression process, reflecting the compression/tensile limit of the 2D monolayer/bilayer ice. In a superheating process, the BL-ABI transforms into the AB-stacked bilayer amorphous ice with the square-like pattern.

  19. A CPU benchmark for protein crystallographic refinement.

    PubMed

    Bourne, P E; Hendrickson, W A

    1990-01-01

    The CPU time required to complete a cycle of restrained least-squares refinement of a protein structure from X-ray crystallographic data using the FORTRAN codes PROTIN and PROLSQ are reported for 48 different processors, ranging from single-user workstations to supercomputers. Sequential, vector, VLIW, multiprocessor, and RISC hardware architectures are compared using both a small and a large protein structure. Representative compile times for each hardware type are also given, and the improvement in run-time when coding for a specific hardware architecture considered. The benchmarks involve scalar integer and vector floating point arithmetic and are representative of the calculations performed in many scientific disciplines.

  20. Criterion Predictability: Identifying Differences Between [r-squares

    ERIC Educational Resources Information Center

    Malgady, Robert G.

    1976-01-01

    An analysis of variance procedure for testing differences in r-squared, the coefficient of determination, across independent samples is proposed and briefly discussed. The principal advantage of the procedure is to minimize Type I error for follow-up tests of pairwise differences. (Author/JKS)

  1. Speckle evolution with multiple steps of least-squares phase removal

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

    Chen Mingzhou; Dainty, Chris; Roux, Filippus S.

    2011-08-15

    We study numerically the evolution of speckle fields due to the annihilation of optical vortices after the least-squares phase has been removed. A process with multiple steps of least-squares phase removal is carried out to minimize both vortex density and scintillation index. Statistical results show that almost all the optical vortices can be removed from a speckle field, which finally decays into a quasiplane wave after such an iterative process.

  2. 978-nm square-wave in an all-fiber single-mode ytterbium-doped fiber laser

    NASA Astrophysics Data System (ADS)

    Li, Shujie; Xu, Lixin; Gu, Chun

    2018-01-01

    A 978 nm single mode passively mode-locked all-fiber laser delivering square-wave pulses was demonstrated using a figure-8 cavity and a 75 cm commercial double-clad ytterbium-doped fiber. We found the three-level system near 978 nm was able to operate efficiently under clad pumping, simultaneously oscillation around 1030 nm well inhibited. The optimized nonlinear amplifying loop mirror made the mode locking stable and performed the square-pulses shaping. To the best of our knowledge, it is the first time to report the square-wave pulse fiber laser operating at 980 nm. The spectral width of the 978 mode-locked square pulses was about 4 nm, far greater than that of the mode-locked square pulses around 1060 nm reported before, which would be helpful to deeply understand the various square-wave pulses' natures and forming mechanisms. Compared with modulated single-mode or multimode 980 nm LDs, this kind of 980 nm square-wave sources having higher brightness, more steeper rising and falling edge and shorter pulse width, might have potential applications in pumping nanosecond ytterbium or erbium fiber lasers and amplifiers.

  3. Uncertainty based pressure reconstruction from velocity measurement with generalized least squares

    NASA Astrophysics Data System (ADS)

    Zhang, Jiacheng; Scalo, Carlo; Vlachos, Pavlos

    2017-11-01

    A method using generalized least squares reconstruction of instantaneous pressure field from velocity measurement and velocity uncertainty is introduced and applied to both planar and volumetric flow data. Pressure gradients are computed on a staggered grid from flow acceleration. The variance-covariance matrix of the pressure gradients is evaluated from the velocity uncertainty by approximating the pressure gradient error to a linear combination of velocity errors. An overdetermined system of linear equations which relates the pressure and the computed pressure gradients is formulated and then solved using generalized least squares with the variance-covariance matrix of the pressure gradients. By comparing the reconstructed pressure field against other methods such as solving the pressure Poisson equation, the omni-directional integration, and the ordinary least squares reconstruction, generalized least squares method is found to be more robust to the noise in velocity measurement. The improvement on pressure result becomes more remarkable when the velocity measurement becomes less accurate and more heteroscedastic. The uncertainty of the reconstructed pressure field is also quantified and compared across the different methods.

  4. Mode selection in square resonator microlasers for widely tunable single mode lasing.

    PubMed

    Tang, Ming-Ying; Sui, Shao-Shuai; Yang, Yue-De; Xiao, Jin-Long; Du, Yun; Huang, Yong-Zhen

    2015-10-19

    Mode selection in square resonator semiconductor microlasers is demonstrated by adjusting the width of the output waveguide coupled to the midpoint of one side. The simulation and experimental results reveal that widely tunable single mode lasing can be realized in square resonator microlasers. Through adjusting the width of the output waveguide, the mode interval of the high-Q modes can reach four times of the longitudinal mode interval. Therefore, mode hopping can be efficiently avoided and the lasing wavelength can be tuned continuously by tuning the injection current. For a 17.8-μm-side-length square microlaser with a 1.4-μm-width output waveguide, mode-hopping-free single-mode operation is achieved with a continuous tuning range of 9.2 nm. As a result, the control of the lasing mode is realized for the square microlasers.

  5. Square wave voltammetry at the dropping mercury electrode: Experimental

    USGS Publications Warehouse

    Turner, J.A.; Christie, J.H.; Vukovic, M.; Osteryoung, R.A.

    1977-01-01

    Experimental verification of earlier theoretical work for square wave voltammetry at the dropping mercury electrode is given. Experiments using ferric oxalate and cadmium(II) in HCl confirm excellent agreement with theory. Experimental peak heights and peak widths are found to be within 2% of calculated results. An example of trace analysis using square wave voltammetry at the DME is presented. The technique is shown to have the same order of sensitivity as differential pulse polarography but is much faster to perform. A detection limit for cadmium in 0.1 M HCl for the system used here was 7 ?? 10-8 M.

  6. Double asymptotics for the chi-square statistic.

    PubMed

    Rempała, Grzegorz A; Wesołowski, Jacek

    2016-12-01

    Consider distributional limit of the Pearson chi-square statistic when the number of classes m n increases with the sample size n and [Formula: see text]. Under mild moment conditions, the limit is Gaussian for λ = ∞, Poisson for finite λ > 0, and degenerate for λ = 0.

  7. Least squares estimation of avian molt rates

    USGS Publications Warehouse

    Johnson, D.H.

    1989-01-01

    A straightforward least squares method of estimating the rate at which birds molt feathers is presented, suitable for birds captured more than once during the period of molt. The date of molt onset can also be estimated. The method is applied to male and female mourning doves.

  8. Comparing the tensile strength of square and reversing half-hitch alternating post knots

    PubMed Central

    Wu, Vincent; Sykes, Edward A.; Mercer, Dale; Hopman, Wilma M.; Tang, Ephraim

    2017-01-01

    Background Square knots are the gold standard in hand-tie wound closure, but are difficult to reproduce in deep cavities, inadvertently resulting in slipknots. The reversing half-hitch alternating post (RHAP) knot has been suggested as an alternative owing to its nonslip nature and reproducibility in limited spaces. We explored whether the RHAP knot is noninferior to the square knot by assessing tensile strength. Methods We conducted 10 trials for each baseline and knot configuration, using 3–0 silk and 3–0 polyglactin 910 sutures. We compared tensile strength between knot configurations at the point of knot failure between slippage and breakage. Results Maximal failure strength (mean ± SD) in square knots was reached with 4-throw in both silk (30 ± 1.5 N) and polyglactin 910 (39 ± 12 N). For RHAP knots, maximal failure strength was reached at 5-throw for both silk (31 ± 1.5 N) and polyglactin 910 (41 ± 13 N). In both sutures, there were no strength differences between 3-throw square and 4-throw RHAP, between 4-throw square and 5-throw RHAP, or between 5-throw square and 6-throw RHAP knots. Polyglactin 910 sutures, in all knot configurations, were more prone to slippage than silk sutures (p < 0.001). Conclusion The difference in mean tensile strength could be attributed to the proportion of knot slippage versus breakage, which is material-dependent. Future studies can re-evaluate findings in monofilament sutures and objectively assess the reproducibility of square and RHAP knots in deep cavities. Our results indicate that RHAP knots composed of 1 extra throw provide equivalent strength to square knots and may be an alternative when performing hand-ties in limited cavities with either silk or polyglactin 910 sutures. PMID:28327276

  9. Comparing the tensile strength of square and reversing half-hitch alternating post knots.

    PubMed

    Wu, Vincent; Sykes, Edward A; Mercer, Dale; Hopman, Wilma M; Tang, Ephraim

    2017-06-01

    Square knots are the gold standard in hand-tie wound closure, but are difficult to reproduce in deep cavities, inadvertently resulting in slipknots. The reversing half-hitch alternating post (RHAP) knot has been suggested as an alternative owing to its nonslip nature and reproducibility in limited spaces. We explored whether the RHAP knot is noninferior to the square knot by assessing tensile strength. We conducted 10 trials for each baseline and knot configuration, using 3-0 silk and 3-0 polyglactin 910 sutures. We compared tensile strength between knot configurations at the point of knot failure between slippage and breakage. Maximal failure strength (mean ± SD) in square knots was reached with 4-throw in both silk (30 ± 1.5 N) and polyglactin 910 (39 ± 12 N). For RHAP knots, maximal failure strength was reached at 5-throw for both silk (31 ± 1.5 N) and polyglactin 910 (41 ± 13 N). In both sutures, there were no strength differences between 3-throw square and 4-throw RHAP, between 4-throw square and 5-throw RHAP, or between 5-throw square and 6-throw RHAP knots. Polyglactin 910 sutures, in all knot configurations, were more prone to slippage than silk sutures ( p < 0.001). The difference in mean tensile strength could be attributed to the proportion of knot slippage versus breakage, which is material-dependent. Future studies can re-evaluate findings in monofilament sutures and objectively assess the reproducibility of square and RHAP knots in deep cavities. Our results indicate that RHAP knots composed of 1 extra throw provide equivalent strength to square knots and may be an alternative when performing hand-ties in limited cavities with either silk or polyglactin 910 sutures.

  10. Modeling and control of non-square MIMO system using relay feedback.

    PubMed

    Kalpana, D; Thyagarajan, T; Gokulraj, N

    2015-11-01

    This paper proposes a systematic approach for the modeling and control of non-square MIMO systems in time domain using relay feedback. Conventionally, modeling, selection of the control configuration and controller design of non-square MIMO systems are performed using input/output information of direct loop, while the output of undesired responses that bears valuable information on interaction among the loops are not considered. However, in this paper, the undesired response obtained from relay feedback test is also taken into consideration to extract the information about the interaction between the loops. The studies are performed on an Air Path Scheme of Turbocharged Diesel Engine (APSTDE) model, which is a typical non-square MIMO system, with input and output variables being 3 and 2 respectively. From the relay test response, the generalized analytical expressions are derived and these analytical expressions are used to estimate unknown system parameters and also to evaluate interaction measures. The interaction is analyzed by using Block Relative Gain (BRG) method. The model thus identified is later used to design appropriate controller to carry out closed loop studies. Closed loop simulation studies were performed for both servo and regulatory operations. Integral of Squared Error (ISE) performance criterion is employed to quantitatively evaluate performance of the proposed scheme. The usefulness of the proposed method is demonstrated on a lab-scale Two-Tank Cylindrical Interacting System (TTCIS), which is configured as a non-square system. Copyright © 2015 ISA. Published by Elsevier Ltd. All rights reserved.

  11. Extensive degeneracy, Coulomb phase and magnetic monopoles in artificial square ice.

    PubMed

    Perrin, Yann; Canals, Benjamin; Rougemaille, Nicolas

    2016-12-15

    Artificial spin-ice systems are lithographically patterned arrangements of interacting magnetic nanostructures that were introduced as way of investigating the effects of geometric frustration in a controlled manner. This approach has enabled unconventional states of matter to be visualized directly in real space, and has triggered research at the frontier between nanomagnetism, statistical thermodynamics and condensed matter physics. Despite efforts to create an artificial realization of the square-ice model-a two-dimensional geometrically frustrated spin-ice system defined on a square lattice-no simple geometry based on arrays of nanomagnets has successfully captured the macroscopically degenerate ground-state manifold of the model. Instead, square lattices of nanomagnets are characterized by a magnetically ordered ground state that consists of local loop configurations with alternating chirality. Here we show that all of the characteristics of the square-ice model are observed in an artificial square-ice system that consists of two sublattices of nanomagnets that are vertically separated by a small distance. The spin configurations we image after demagnetizing our arrays reveal unambiguous signatures of a Coulomb phase and algebraic spin-spin correlations, which are characterized by the presence of 'pinch' points in the associated magnetic structure factor. Local excitations-the classical analogues of magnetic monopoles-are free to evolve in an extensively degenerate, divergence-free vacuum. We thus provide a protocol that could be used to investigate collective magnetic phenomena, including Coulomb phases and the physics of ice-like materials.

  12. Multilayer DNA Origami Packed on a Square Lattice

    PubMed Central

    Ke, Yonggang; Douglas, Shawn M.; Liu, Minghui; Sharma, Jaswinder; Cheng, Anchi; Leung, Albert; Liu, Yan; Shih, William M.; Yan, Hao

    2009-01-01

    Molecular self-assembly using DNA as a structural building block has proven to be an efficient route to the construction of nanoscale objects and arrays of increasing complexity. Using the remarkable “scaffolded DNA origami” strategy, Rothemund demonstrated that a long single-stranded DNA from a viral genome (M13) can be folded into a variety of custom two-dimensional (2D) shapes using hundreds of short synthetic DNA molecules as staple strands. More recently, we generalized a strategy to build custom-shaped, three-dimensional (3D) objects formed as pleated layers of helices constrained to a honeycomb lattice, with precisely controlled dimensions ranging from 10 to 100 nm. Here we describe a more compact design for 3D origami, with layers of helices packed on a square lattice, that can be folded successfully into structures of designed dimensions in a one-step annealing process, despite the increased density of DNA helices. A square lattice provides a more natural framework for designing rectangular structures, the option for a more densely packed architecture, and the ability to create surfaces that are more flat than is possible with the honeycomb lattice. Thus enabling the design and construction of custom 3D shapes from helices packed on a square lattice provides a general foundational advance for increasing the versatility and scope of DNA nanotechnology. PMID:19807088

  13. Spin configurations on a decorated square lattice

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

    Mert, Gülistan; Mert, H. Şevki

    Spin configurations on a decorated square lattice are investigated using Bertaut’s microscopic method. We have obtained collinear and non-collinear (canted) modes for the given wave vectors in the ground state. We have found ferromagnetic and antiferromagnetic commensurate spin configurations. We have found canted incommensurate spin configurations.

  14. Two-dimensional wavefront reconstruction based on double-shearing and least squares fitting

    NASA Astrophysics Data System (ADS)

    Liang, Peiying; Ding, Jianping; Zhu, Yangqing; Dong, Qian; Huang, Yuhua; Zhu, Zhen

    2017-06-01

    The two-dimensional wavefront reconstruction method based on double-shearing and least squares fitting is proposed in this paper. Four one-dimensional phase estimates of the measured wavefront, which correspond to the two shears and the two orthogonal directions, could be calculated from the differential phase, which solves the problem of the missing spectrum, and then by using the least squares method the two-dimensional wavefront reconstruction could be done. The numerical simulations of the proposed algorithm are carried out to verify the feasibility of this method. The influence of noise generated from different shear amount and different intensity on the accuracy of the reconstruction is studied and compared with the results from the algorithm based on single-shearing and least squares fitting. Finally, a two-grating lateral shearing interference experiment is carried out to verify the wavefront reconstruction algorithm based on doubleshearing and least squares fitting.

  15. Crashworthiness analysis on alternative square honeycomb structure under axial loading

    NASA Astrophysics Data System (ADS)

    Li, Meng; Deng, Zongquan; Guo, Hongwei; Liu, Rongqiang; Ding, Beichen

    2013-07-01

    Hexagonal metal honeycomb is widely used in energy absorption field for its special construction. However, many other metal honeycomb structures also show good energy absorption characteristics. Currently, most of the researches focus on hexagonal honeycomb, while few are performed into different honeycomb structures. Therefore, a new alternative square honeycomb is developed to expand the non-hexagonal metal honeycomb applications in the energy absorption fields with the aim of designing low mass and low volume energy absorbers. The finite element model of alternative square honeycomb is built to analyze its specific energy absorption property. As the diversity of honeycomb structure, the parameterized metal honeycomb finite element analysis program is conducted based on PCL language. That program can automatically create finite element model. Numerical results show that with the same foil thickness and cell length of metal honeycomb, the alternative square has better specific energy absorption than hexagonal honeycomb. Using response surface method, the mathematical formulas of honeycomb crashworthiness properties are obtained and optimization is done to get the maximum specific energy absorption property honeycomb. Optimal results demonstrate that to absorb same energy, alternative square honeycomb can save 10% volume of buffer structure than hexagonal honeycomb can do. This research is significant in providing technical support in the extended application of different honeycomb used as crashworthiness structures, and is absolutely essential in low volume and low mass energy absorber design.

  16. Resource Management for Distributed Parallel Systems

    NASA Technical Reports Server (NTRS)

    Neuman, B. Clifford; Rao, Santosh

    1993-01-01

    Multiprocessor systems should exist in the the larger context of distributed systems, allowing multiprocessor resources to be shared by those that need them. Unfortunately, typical multiprocessor resource management techniques do not scale to large networks. The Prospero Resource Manager (PRM) is a scalable resource allocation system that supports the allocation of processing resources in large networks and multiprocessor systems. To manage resources in such distributed parallel systems, PRM employs three types of managers: system managers, job managers, and node managers. There exist multiple independent instances of each type of manager, reducing bottlenecks. The complexity of each manager is further reduced because each is designed to utilize information at an appropriate level of abstraction.

  17. Use of inequality constrained least squares estimation in small area estimation

    NASA Astrophysics Data System (ADS)

    Abeygunawardana, R. A. B.; Wickremasinghe, W. N.

    2017-05-01

    Traditional surveys provide estimates that are based only on the sample observations collected for the population characteristic of interest. However, these estimates may have unacceptably large variance for certain domains. Small Area Estimation (SAE) deals with determining precise and accurate estimates for population characteristics of interest for such domains. SAE usually uses least squares or maximum likelihood procedures incorporating prior information and current survey data. Many available methods in SAE use constraints in equality form. However there are practical situations where certain inequality restrictions on model parameters are more realistic. It will lead to Inequality Constrained Least Squares (ICLS) estimates if the method used is least squares. In this study ICLS estimation procedure is applied to many proposed small area estimates.

  18. Unusual square roots in the ghost-free theory of massive gravity

    NASA Astrophysics Data System (ADS)

    Golovnev, Alexey; Smirnov, Fedor

    2017-06-01

    A crucial building block of the ghost free massive gravity is the square root function of a matrix. This is a problematic entity from the viewpoint of existence and uniqueness properties. We accurately describe the freedom of choosing a square root of a (non-degenerate) matrix. It has discrete and (in special cases) continuous parts. When continuous freedom is present, the usual perturbation theory in terms of matrices can be critically ill defined for some choices of the square root. We consider the new formulation of massive and bimetric gravity which deals directly with eigenvalues (in disguise of elementary symmetric polynomials) instead of matrices. It allows for a meaningful discussion of perturbation theory in such cases, even though certain non-analytic features arise.

  19. Proceedings of the aircraft wake vortices conference, March 15-17, 1977, held at the Transportations Systems Center, Kendall Square, Cambridge, MA

    DOT National Transportation Integrated Search

    1977-06-01

    This volume contains the proceedings of a conference on aircraft wake vortices. The contributed papers discuss technological advances in the knowledge of the phenomenon, its effects on aircraft, alleviation techniques, and vortex avoidance systems de...

  20. Proceedings of the Aircraft Wake Vortices Conference, March 15-17, 1977, held at the Transportation Systems Center, Kendall Square, Cambridge, MA

    DTIC Science & Technology

    1977-06-01

    surrounding the antenna with a shield which Figure 7. Vortex sensor baseline at JFK Airport . is covered on the inside with sound- absorbing material...the NASA .20 t 0 ] ? Marshall Space Flight Center. It was used atVOkt[ RADIUS 1.1 the JFK Airport to detect, track, and mea- Figure 29. Vortex...4 +5 TIME IN SECONDS DISTANCE IN HUNDREDS OF FT Figure 30. Simultaneous vortx tracks from the two LDV systems at JFK Airport . 64 4I BURNHAM

  1. Jammed systems of oriented needles always percolate on square lattices

    NASA Astrophysics Data System (ADS)

    Kondrat, Grzegorz; Koza, Zbigniew; Brzeski, Piotr

    2017-08-01

    Random sequential adsorption (RSA) is a standard method of modeling adsorption of large molecules at the liquid-solid interface. Several studies have recently conjectured that in the RSA of rectangular needles, or k -mers, on a square lattice, percolation is impossible if the needles are sufficiently long (k of order of several thousand). We refute these claims and present rigorous proof that in any jammed configuration of nonoverlapping, fixed-length, horizontal, or vertical needles on a square lattice, all clusters are percolating clusters.

  2. Single crystalline electronic structure and growth mechanism of aligned square graphene sheets

    NASA Astrophysics Data System (ADS)

    Yang, H. F.; Chen, C.; Wang, H.; Liu, Z. K.; Zhang, T.; Peng, H.; Schröter, N. B. M.; Ekahana, S. A.; Jiang, J.; Yang, L. X.; Kandyba, V.; Barinov, A.; Chen, C. Y.; Avila, J.; Asensio, M. C.; Peng, H. L.; Liu, Z. F.; Chen, Y. L.

    2018-03-01

    Recently, commercially available copper foil has become an efficient and inexpensive catalytic substrate for scalable growth of large-area graphene films for fundamental research and applications. Interestingly, despite its hexagonal honeycomb lattice, graphene can be grown into large aligned square-shaped sheets on copper foils. Here, by applying angle-resolved photoemission spectroscopy with submicron spatial resolution (micro-ARPES) to study the three-dimensional electronic structures of square graphene sheets grown on copper foils, we verified the high quality of individual square graphene sheets as well as their merged regions (with aligned orientation). Furthermore, by simultaneously measuring the graphene sheets and their substrate copper foil, we not only established the (001) copper surface structure but also discovered that the square graphene sheets' sides align with the ⟨110⟩ copper direction, suggesting an important role of copper substrate in the growth of square graphene sheets—which will help the development of effective methods to synthesize high-quality large-size regularly shaped graphene sheets for future applications. This work also demonstrates the effectiveness of micro-ARPES in exploring low-dimensional materials down to atomic thickness and sub-micron lateral size (e.g., besides graphene, it can also be applied to transition metal dichalcogenides and various van der Waals heterostructures)

  3. Estimators of The Magnitude-Squared Spectrum and Methods for Incorporating SNR Uncertainty

    PubMed Central

    Lu, Yang; Loizou, Philipos C.

    2011-01-01

    Statistical estimators of the magnitude-squared spectrum are derived based on the assumption that the magnitude-squared spectrum of the noisy speech signal can be computed as the sum of the (clean) signal and noise magnitude-squared spectra. Maximum a posterior (MAP) and minimum mean square error (MMSE) estimators are derived based on a Gaussian statistical model. The gain function of the MAP estimator was found to be identical to the gain function used in the ideal binary mask (IdBM) that is widely used in computational auditory scene analysis (CASA). As such, it was binary and assumed the value of 1 if the local SNR exceeded 0 dB, and assumed the value of 0 otherwise. By modeling the local instantaneous SNR as an F-distributed random variable, soft masking methods were derived incorporating SNR uncertainty. The soft masking method, in particular, which weighted the noisy magnitude-squared spectrum by the a priori probability that the local SNR exceeds 0 dB was shown to be identical to the Wiener gain function. Results indicated that the proposed estimators yielded significantly better speech quality than the conventional MMSE spectral power estimators, in terms of yielding lower residual noise and lower speech distortion. PMID:21886543

  4. Rounding corners of nano-square patches for multispectral plasmonic metamaterial absorbers.

    PubMed

    Ayas, Sencer; Bakan, Gokhan; Dana, Aykutlu

    2015-05-04

    Multispectral metamaterial absorbers based on metal-insulator-metal nano-square patch resonators are studied here. For a geometry consisting of perfectly nano-square patches and vertical sidewalls, double resonances in the visible regime are observed due to simultaneous excitation of electric and magnetic plasmon modes. Although slightly modifying the sizes of the square patches makes the resonance wavelengths simply shift, rounding corners of the square patches results in emergence of a third resonance due to excitation of the circular cavity modes. Sidewall angle of the patches are also observed to affect the absorption spectra significantly. Peak absorption values for the triple resonance structures are strongly affected as the sidewall angle varies from 90 to 50 degrees. Rounded corners and slanted sidewalls are typical imperfections for lithographically fabricated metamaterial structures. The presented results suggest that imperfections caused during fabrication of the top nano-structures must be taken into account when designing metamaterial absorbers. Furthermore, it is shown that these fabrication imperfections can be exploited for improving resonance properties and bandwidths of metamaterials for various potential applications such as solar energy harvesting, thermal emitters, surface enhanced spectroscopies and photodetection.

  5. 40 CFR 761.306 - Sampling 1 meter square surfaces by random selection of halves.

    Code of Federal Regulations, 2014 CFR

    2014-07-01

    ... 40 Protection of Environment 31 2014-07-01 2014-07-01 false Sampling 1 meter square surfaces by...(b)(3) § 761.306 Sampling 1 meter square surfaces by random selection of halves. (a) Divide each 1 meter square portion where it is necessary to collect a surface wipe test sample into two equal (or as...

  6. 40 CFR 761.306 - Sampling 1 meter square surfaces by random selection of halves.

    Code of Federal Regulations, 2013 CFR

    2013-07-01

    ... 40 Protection of Environment 32 2013-07-01 2013-07-01 false Sampling 1 meter square surfaces by...(b)(3) § 761.306 Sampling 1 meter square surfaces by random selection of halves. (a) Divide each 1 meter square portion where it is necessary to collect a surface wipe test sample into two equal (or as...

  7. 40 CFR 761.306 - Sampling 1 meter square surfaces by random selection of halves.

    Code of Federal Regulations, 2012 CFR

    2012-07-01

    ... 40 Protection of Environment 32 2012-07-01 2012-07-01 false Sampling 1 meter square surfaces by...(b)(3) § 761.306 Sampling 1 meter square surfaces by random selection of halves. (a) Divide each 1 meter square portion where it is necessary to collect a surface wipe test sample into two equal (or as...

  8. 40 CFR 761.306 - Sampling 1 meter square surfaces by random selection of halves.

    Code of Federal Regulations, 2011 CFR

    2011-07-01

    ... 40 Protection of Environment 31 2011-07-01 2011-07-01 false Sampling 1 meter square surfaces by...(b)(3) § 761.306 Sampling 1 meter square surfaces by random selection of halves. (a) Divide each 1 meter square portion where it is necessary to collect a surface wipe test sample into two equal (or as...

  9. 40 CFR 761.306 - Sampling 1 meter square surfaces by random selection of halves.

    Code of Federal Regulations, 2010 CFR

    2010-07-01

    ... 40 Protection of Environment 30 2010-07-01 2010-07-01 false Sampling 1 meter square surfaces by...(b)(3) § 761.306 Sampling 1 meter square surfaces by random selection of halves. (a) Divide each 1 meter square portion where it is necessary to collect a surface wipe test sample into two equal (or as...

  10. Applied Algebra: The Modeling Technique of Least Squares

    ERIC Educational Resources Information Center

    Zelkowski, Jeremy; Mayes, Robert

    2008-01-01

    The article focuses on engaging students in algebra through modeling real-world problems. The technique of least squares is explored, encouraging students to develop a deeper understanding of the method. (Contains 2 figures and a bibliography.)

  11. Comparing least-squares and quantile regression approaches to analyzing median hospital charges.

    PubMed

    Olsen, Cody S; Clark, Amy E; Thomas, Andrea M; Cook, Lawrence J

    2012-07-01

    Emergency department (ED) and hospital charges obtained from administrative data sets are useful descriptors of injury severity and the burden to EDs and the health care system. However, charges are typically positively skewed due to costly procedures, long hospital stays, and complicated or prolonged treatment for few patients. The median is not affected by extreme observations and is useful in describing and comparing distributions of hospital charges. A least-squares analysis employing a log transformation is one approach for estimating median hospital charges, corresponding confidence intervals (CIs), and differences between groups; however, this method requires certain distributional properties. An alternate method is quantile regression, which allows estimation and inference related to the median without making distributional assumptions. The objective was to compare the log-transformation least-squares method to the quantile regression approach for estimating median hospital charges, differences in median charges between groups, and associated CIs. The authors performed simulations using repeated sampling of observed statewide ED and hospital charges and charges randomly generated from a hypothetical lognormal distribution. The median and 95% CI and the multiplicative difference between the median charges of two groups were estimated using both least-squares and quantile regression methods. Performance of the two methods was evaluated. In contrast to least squares, quantile regression produced estimates that were unbiased and had smaller mean square errors in simulations of observed ED and hospital charges. Both methods performed well in simulations of hypothetical charges that met least-squares method assumptions. When the data did not follow the assumed distribution, least-squares estimates were often biased, and the associated CIs had lower than expected coverage as sample size increased. Quantile regression analyses of hospital charges provide unbiased

  12. Square One TV, Curriculum Connections Teacher's Guide.

    ERIC Educational Resources Information Center

    Children's Television Workshop, New York, NY.

    This cross curriculum guide links mathematics, language arts, and social studies. The guide is divided into two sections. The first section provides a series of language arts activities and the second social studies activities. Within these two curriculum areas, the activities provided are based on three Square One TV formats: (1) Mathnet, the…

  13. Experiences with Transitioning Science Data Production from a Symmetric Multiprocessor Platform to a Linux Cluster Environment

    NASA Astrophysics Data System (ADS)

    Walter, R. J.; Protack, S. P.; Harris, C. J.; Caruthers, C.; Kusterer, J. M.

    2008-12-01

    NASA's Atmospheric Science Data Center at the NASA Langley Research Center performs all of the science data processing for the Multi-angle Imaging SpectroRadiometer (MISR) instrument. MISR is one of the five remote sensing instruments flying aboard NASA's Terra spacecraft. From the time of Terra launch in December 1999 until February 2008, all MISR science data processing was performed on a Silicon Graphics, Inc. (SGI) platform. However, dramatic improvements in commodity computing technology coupled with steadily declining project budgets during that period eventually made transitioning MISR processing to a commodity computing environment both feasible and necessary. The Atmospheric Science Data Center has successfully ported the MISR science data processing environment from the SGI platform to a Linux cluster environment. There were a multitude of technical challenges associated with this transition. Even though the core architecture of the production system did not change, the manner in which it interacted with underlying hardware was fundamentally different. In addition, there are more potential throughput bottlenecks in a cluster environment than there are in a symmetric multiprocessor environment like the SGI platform and each of these had to be addressed. Once all the technical issues associated with the transition were resolved, the Atmospheric Science Data Center had a MISR science data processing system with significantly higher throughput than the SGI platform at a fraction of the cost. In addition to the commodity hardware, free and open source software such as S4PM, Sun Grid Engine, PostgreSQL and Ganglia play a significant role in the new system. Details of the technical challenges and resolutions, software systems, performance improvements, and cost savings associated with the transition will be discussed. The Atmospheric Science Data Center in Langley's Science Directorate leads NASA's program for the processing, archival and distribution of Earth

  14. Inter-class sparsity based discriminative least square regression.

    PubMed

    Wen, Jie; Xu, Yong; Li, Zuoyong; Ma, Zhongli; Xu, Yuanrong

    2018-06-01

    Least square regression is a very popular supervised classification method. However, two main issues greatly limit its performance. The first one is that it only focuses on fitting the input features to the corresponding output labels while ignoring the correlations among samples. The second one is that the used label matrix, i.e., zero-one label matrix is inappropriate for classification. To solve these problems and improve the performance, this paper presents a novel method, i.e., inter-class sparsity based discriminative least square regression (ICS_DLSR), for multi-class classification. Different from other methods, the proposed method pursues that the transformed samples have a common sparsity structure in each class. For this goal, an inter-class sparsity constraint is introduced to the least square regression model such that the margins of samples from the same class can be greatly reduced while those of samples from different classes can be enlarged. In addition, an error term with row-sparsity constraint is introduced to relax the strict zero-one label matrix, which allows the method to be more flexible in learning the discriminative transformation matrix. These factors encourage the method to learn a more compact and discriminative transformation for regression and thus has the potential to perform better than other methods. Extensive experimental results show that the proposed method achieves the best performance in comparison with other methods for multi-class classification. Copyright © 2018 Elsevier Ltd. All rights reserved.

  15. Variable forgetting factor mechanisms for diffusion recursive least squares algorithm in sensor networks

    NASA Astrophysics Data System (ADS)

    Zhang, Ling; Cai, Yunlong; Li, Chunguang; de Lamare, Rodrigo C.

    2017-12-01

    In this work, we present low-complexity variable forgetting factor (VFF) techniques for diffusion recursive least squares (DRLS) algorithms. Particularly, we propose low-complexity VFF-DRLS algorithms for distributed parameter and spectrum estimation in sensor networks. For the proposed algorithms, they can adjust the forgetting factor automatically according to the posteriori error signal. We develop detailed analyses in terms of mean and mean square performance for the proposed algorithms and derive mathematical expressions for the mean square deviation (MSD) and the excess mean square error (EMSE). The simulation results show that the proposed low-complexity VFF-DRLS algorithms achieve superior performance to the existing DRLS algorithm with fixed forgetting factor when applied to scenarios of distributed parameter and spectrum estimation. Besides, the simulation results also demonstrate a good match for our proposed analytical expressions.

  16. First-Order System Least-Squares for the Navier-Stokes Equations

    NASA Technical Reports Server (NTRS)

    Bochev, P.; Cai, Z.; Manteuffel, T. A.; McCormick, S. F.

    1996-01-01

    This paper develops a least-squares approach to the solution of the incompressible Navier-Stokes equations in primitive variables. As with our earlier work on Stokes equations, we recast the Navier-Stokes equations as a first-order system by introducing a velocity flux variable and associated curl and trace equations. We show that the resulting system is well-posed, and that an associated least-squares principle yields optimal discretization error estimates in the H(sup 1) norm in each variable (including the velocity flux) and optimal multigrid convergence estimates for the resulting algebraic system.

  17. The crux of the method: assumptions in ordinary least squares and logistic regression.

    PubMed

    Long, Rebecca G

    2008-10-01

    Logistic regression has increasingly become the tool of choice when analyzing data with a binary dependent variable. While resources relating to the technique are widely available, clear discussions of why logistic regression should be used in place of ordinary least squares regression are difficult to find. The current paper compares and contrasts the assumptions of ordinary least squares with those of logistic regression and explains why logistic regression's looser assumptions make it adept at handling violations of the more important assumptions in ordinary least squares.

  18. An Extension of RSS-based Model Comparison Tests for Weighted Least Squares

    DTIC Science & Technology

    2012-08-22

    use the model comparison test statistic to analyze the null hypothesis. Under the null hypothesis, the weighted least squares cost functional is JWLS ...q̂WLSH ) = 10.3040×106. Under the alternative hypothesis, the weighted least squares cost functional is JWLS (q̂WLS) = 8.8394 × 106. Thus the model

  19. On curvature squared invariants in 6D supergravity

    NASA Astrophysics Data System (ADS)

    Novak, J.; Tartaglino-Mazzucchelli, G.

    2018-02-01

    We review recent developments in the construction of curvature squared invariants in off-shell \\mathscr{N} = (1, 0) supergravity in six dimensions. Based on the talk presented by GT-M at ISQS25 (Prague, Czech Republic, 6 { 10 June, 2017).

  20. Constrained Least Squares Estimators of Oblique Common Factors.

    ERIC Educational Resources Information Center

    McDonald, Roderick P.

    1981-01-01

    An expression is given for weighted least squares estimators of oblique common factors of factor analyses, constrained to have the same covariance matrix as the factors they estimate. A proof of the uniqueness of the solution is given. (Author/JKS)

  1. User's and test case manual for FEMATS

    NASA Technical Reports Server (NTRS)

    Chatterjee, Arindam; Volakis, John; Nurnberger, Mike; Natzke, John

    1995-01-01

    The FEMATS program incorporates first-order edge-based finite elements and vector absorbing boundary conditions into the scattered field formulation for computation of the scattering from three-dimensional geometries. The code has been validated extensively for a large class of geometries containing inhomogeneities and satisfying transition conditions. For geometries that are too large for the workstation environment, the FEMATS code has been optimized to run on various supercomputers. Currently, FEMATS has been configured to run on the HP 9000 workstation, vectorized for the Cray Y-MP, and parallelized to run on the Kendall Square Research (KSR) architecture and the Intel Paragon.

  2. The Inverse-Square Law with Data Loggers

    ERIC Educational Resources Information Center

    Bates, Alan

    2013-01-01

    The inverse-square law for the intensity of light received at a distance from a light source has been verified using various experimental techniques. Typical measurements involve a manual variation of the distance between a light source and a light sensor, usually by sliding the sensor or source along a bench, measuring the source-sensor distance…

  3. Synthesis and Characterization of Dimethylbis(2-pyridyl)borate Nickel(II) Complexes: Unimolecular Square-Planar to Square-Planar Rotation around Nickel(II)

    PubMed Central

    2015-01-01

    The syntheses of novel dimethylbis(2-pyridyl)borate nickel(II) complexes 4 and 6 are reported. These complexes were unambiguously characterized by X-ray analysis. In dichloromethane solvent, complex 4 undergoes a unique square-planar to square-planar rotation around the nickel(II) center, for which activation parameters of ΔH⧧ = 12.2(1) kcal mol–1 and ΔS⧧ = 0.8(5) eu were measured via NMR inversion recovery experiments. Complex 4 was also observed to isomerize via a relatively slow ring flip: ΔH⧧ = 15.0(2) kcal mol–1; and ΔS⧧ = −4.2(7) eu. DFT studies support the experimentally measured rotation activation energy (cf. calculated ΔH⧧ = 11.1 kcal mol–1) as well as the presence of a high-energy triplet intermediate (ΔH = 8.8 kcal mol–1). PMID:24882919

  4. Spatial hydrological drought characteristics in Karkheh River basin, southwest Iran using copulas

    NASA Astrophysics Data System (ADS)

    Dodangeh, Esmaeel; Shahedi, Kaka; Shiau, Jenq-Tzong; MirAkbari, Maryam

    2017-08-01

    Investigation on drought characteristics such as severity, duration, and frequency is crucial for water resources planning and management in a river basin. While the methodology for multivariate drought frequency analysis is well established by applying the copulas, the estimation on the associated parameters by various parameter estimation methods and the effects on the obtained results have not yet been investigated. This research aims at conducting a comparative analysis between the maximum likelihood parametric and non-parametric method of the Kendall τ estimation method for copulas parameter estimation. The methods were employed to study joint severity-duration probability and recurrence intervals in Karkheh River basin (southwest Iran) which is facing severe water-deficit problems. Daily streamflow data at three hydrological gauging stations (Tang Sazbon, Huleilan and Polchehr) near the Karkheh dam were used to draw flow duration curves (FDC) of these three stations. The Q_{75} index extracted from the FDC were set as threshold level to abstract drought characteristics such as drought duration and severity on the basis of the run theory. Drought duration and severity were separately modeled using the univariate probabilistic distributions and gamma-GEV, LN2-exponential, and LN2-gamma were selected as the best paired drought severity-duration inputs for copulas according to the Akaike Information Criteria (AIC), Kolmogorov-Smirnov and chi-square tests. Archimedean Clayton, Frank, and extreme value Gumbel copulas were employed to construct joint cumulative distribution functions (JCDF) of droughts for each station. Frank copula at Tang Sazbon and Gumbel at Huleilan and Polchehr stations were identified as the best copulas based on the performance evaluation criteria including AIC, BIC, log-likelihood and root mean square error (RMSE) values. Based on the RMSE values, nonparametric Kendall-τ is preferred to the parametric maximum likelihood estimation method

  5. Multifrequency synthesis and extraction using square wave projection patterns for quantitative tissue imaging.

    PubMed

    Nadeau, Kyle P; Rice, Tyler B; Durkin, Anthony J; Tromberg, Bruce J

    2015-11-01

    We present a method for spatial frequency domain data acquisition utilizing a multifrequency synthesis and extraction (MSE) method and binary square wave projection patterns. By illuminating a sample with square wave patterns, multiple spatial frequency components are simultaneously attenuated and can be extracted to determine optical property and depth information. Additionally, binary patterns are projected faster than sinusoids typically used in spatial frequency domain imaging (SFDI), allowing for short (millisecond or less) camera exposure times, and data acquisition speeds an order of magnitude or more greater than conventional SFDI. In cases where sensitivity to superficial layers or scattering is important, the fundamental component from higher frequency square wave patterns can be used. When probing deeper layers, the fundamental and harmonic components from lower frequency square wave patterns can be used. We compared optical property and depth penetration results extracted using square waves to those obtained using sinusoidal patterns on an in vivo human forearm and absorbing tube phantom, respectively. Absorption and reduced scattering coefficient values agree with conventional SFDI to within 1% using both high frequency (fundamental) and low frequency (fundamental and harmonic) spatial frequencies. Depth penetration reflectance values also agree to within 1% of conventional SFDI.

  6. Least-squares collocation meshless approach for radiative heat transfer in absorbing and scattering media

    NASA Astrophysics Data System (ADS)

    Liu, L. H.; Tan, J. Y.

    2007-02-01

    A least-squares collocation meshless method is employed for solving the radiative heat transfer in absorbing, emitting and scattering media. The least-squares collocation meshless method for radiative transfer is based on the discrete ordinates equation. A moving least-squares approximation is applied to construct the trial functions. Except for the collocation points which are used to construct the trial functions, a number of auxiliary points are also adopted to form the total residuals of the problem. The least-squares technique is used to obtain the solution of the problem by minimizing the summation of residuals of all collocation and auxiliary points. Three numerical examples are studied to illustrate the performance of this new solution method. The numerical results are compared with the other benchmark approximate solutions. By comparison, the results show that the least-squares collocation meshless method is efficient, accurate and stable, and can be used for solving the radiative heat transfer in absorbing, emitting and scattering media.

  7. Maximum correntropy square-root cubature Kalman filter with application to SINS/GPS integrated systems.

    PubMed

    Liu, Xi; Qu, Hua; Zhao, Jihong; Yue, Pengcheng

    2018-05-31

    For a nonlinear system, the cubature Kalman filter (CKF) and its square-root version are useful methods to solve the state estimation problems, and both can obtain good performance in Gaussian noises. However, their performances often degrade significantly in the face of non-Gaussian noises, particularly when the measurements are contaminated by some heavy-tailed impulsive noises. By utilizing the maximum correntropy criterion (MCC) to improve the robust performance instead of traditional minimum mean square error (MMSE) criterion, a new square-root nonlinear filter is proposed in this study, named as the maximum correntropy square-root cubature Kalman filter (MCSCKF). The new filter not only retains the advantage of square-root cubature Kalman filter (SCKF), but also exhibits robust performance against heavy-tailed non-Gaussian noises. A judgment condition that avoids numerical problem is also given. The results of two illustrative examples, especially the SINS/GPS integrated systems, demonstrate the desirable performance of the proposed filter. Copyright © 2018 ISA. Published by Elsevier Ltd. All rights reserved.

  8. Simplified Least Squares Shadowing sensitivity analysis for chaotic ODEs and PDEs

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

    Chater, Mario, E-mail: chaterm@mit.edu; Ni, Angxiu, E-mail: niangxiu@mit.edu; Wang, Qiqi, E-mail: qiqi@mit.edu

    This paper develops a variant of the Least Squares Shadowing (LSS) method, which has successfully computed the derivative for several chaotic ODEs and PDEs. The development in this paper aims to simplify Least Squares Shadowing method by improving how time dilation is treated. Instead of adding an explicit time dilation term as in the original method, the new variant uses windowing, which can be more efficient and simpler to implement, especially for PDEs.

  9. Multi-element least square HDMR methods and their applications for stochastic multiscale model reduction

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

    Jiang, Lijian, E-mail: ljjiang@hnu.edu.cn; Li, Xinping, E-mail: exping@126.com

    Stochastic multiscale modeling has become a necessary approach to quantify uncertainty and characterize multiscale phenomena for many practical problems such as flows in stochastic porous media. The numerical treatment of the stochastic multiscale models can be very challengeable as the existence of complex uncertainty and multiple physical scales in the models. To efficiently take care of the difficulty, we construct a computational reduced model. To this end, we propose a multi-element least square high-dimensional model representation (HDMR) method, through which the random domain is adaptively decomposed into a few subdomains, and a local least square HDMR is constructed in eachmore » subdomain. These local HDMRs are represented by a finite number of orthogonal basis functions defined in low-dimensional random spaces. The coefficients in the local HDMRs are determined using least square methods. We paste all the local HDMR approximations together to form a global HDMR approximation. To further reduce computational cost, we present a multi-element reduced least-square HDMR, which improves both efficiency and approximation accuracy in certain conditions. To effectively treat heterogeneity properties and multiscale features in the models, we integrate multiscale finite element methods with multi-element least-square HDMR for stochastic multiscale model reduction. This approach significantly reduces the original model's complexity in both the resolution of the physical space and the high-dimensional stochastic space. We analyze the proposed approach, and provide a set of numerical experiments to demonstrate the performance of the presented model reduction techniques. - Highlights: • Multi-element least square HDMR is proposed to treat stochastic models. • Random domain is adaptively decomposed into some subdomains to obtain adaptive multi-element HDMR. • Least-square reduced HDMR is proposed to enhance computation efficiency and approximation accuracy in

  10. Analogue solution for electrical capacity of membrane covered square cylinders in square array at high concentration.

    PubMed

    Cole, K S

    1975-12-01

    Analytical solutions of Laplace equations have given the electrical characteristics of membranes and interiors of spherical, ellipsoidal, and cylindrical cells in suspensions and tissues from impedance measurements, but the underlying assumptions may be invalid above 50% volume concentrations. However, resistance measurements on several nonconducting, close-packing forms in two and three dimensions closely predicted volume concentrations up to 100% by equations derived from Maxwell and Rayleigh. Calculations of membrane capacities of cells in suspensions and tissues from extensions of theory, as developed by Fricke and by Cole, have been useful but of unknown validity at high concentrations. A resistor analogue has been used to solve the finite difference approximation to the Laplace equation for the resistance and capacity of a square array of square cylindrical cells with surface capacity. An 11 x 11 array of resistors, simulating a quarter of the unit structure, was separated into intra- and extra-cellular regions by rows of capacitors corresponding to surface membrane areas from 3 x 3 to 11 x 11 or 7.5% to 100%. The extended Rayleigh equation predicted the cell concentrations and membrane capacities to within a few percent from boundary resistance and capacity measurements at low frequencies. This single example suggests that analytical solutions for other, similar two- and three-dimensional problems may be approximated up to near 100% concentrations and that there may be analytical justifications for such analogue solutions of Laplace equations.

  11. Chi-square-based scoring function for categorization of MEDLINE citations.

    PubMed

    Kastrin, A; Peterlin, B; Hristovski, D

    2010-01-01

    Text categorization has been used in biomedical informatics for identifying documents containing relevant topics of interest. We developed a simple method that uses a chi-square-based scoring function to determine the likelihood of MEDLINE citations containing genetic relevant topic. Our procedure requires construction of a genetic and a nongenetic domain document corpus. We used MeSH descriptors assigned to MEDLINE citations for this categorization task. We compared frequencies of MeSH descriptors between two corpora applying chi-square test. A MeSH descriptor was considered to be a positive indicator if its relative observed frequency in the genetic domain corpus was greater than its relative observed frequency in the nongenetic domain corpus. The output of the proposed method is a list of scores for all the citations, with the highest score given to those citations containing MeSH descriptors typical for the genetic domain. Validation was done on a set of 734 manually annotated MEDLINE citations. It achieved predictive accuracy of 0.87 with 0.69 recall and 0.64 precision. We evaluated the method by comparing it to three machine-learning algorithms (support vector machines, decision trees, naïve Bayes). Although the differences were not statistically significantly different, results showed that our chi-square scoring performs as good as compared machine-learning algorithms. We suggest that the chi-square scoring is an effective solution to help categorize MEDLINE citations. The algorithm is implemented in the BITOLA literature-based discovery support system as a preprocessor for gene symbol disambiguation process.

  12. Stratified spin-up in a sliced, square cylinder

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

    Munro, R. J.; Foster, M. R.

    We previously reported experimental and theoretical results on the linear spin-up of a linearly stratified, rotating fluid in a uniform-depth square cylinder [M. R. Foster and R. J. Munro, “The linear spin-up of a stratified, rotating fluid in a square cylinder,” J. Fluid Mech. 712, 7–40 (2012)]. Here we extend that analysis to a “sliced” square cylinder, which has a base-plane inclined at a shallow angle α. Asymptotic results are derived that show the spin-up phase is achieved by a combination of the Ekman-layer eruptions (from the perimeter region of the cylinder's lid and base) and cross-slope-propagating stratified Rossby waves.more » The final, steady state limit for this spin-up phase is identical to that found previously for the uniform depth cylinder, but is reached somewhat more rapidly on a time scale of order E{sup −1/2}Ω{sup −1}/log (α/E{sup 1/2}) (compared to E{sup −1/2}Ω{sup −1} for the uniform-depth cylinder), where Ω is the rotation rate and E the Ekman number. Experiments were performed for Burger numbers, S, between 0.4 and 16, and showed that for S≳O(1), the Rossby modes are severely damped, and it is only at small S, and during the early stages, that the presence of these wave modes was evident. These observations are supported by the theory, which shows the damping factors increase with S and are numerically large for S≳O(1)« less

  13. Adaptive slab laser beam quality improvement using a weighted least-squares reconstruction algorithm.

    PubMed

    Chen, Shanqiu; Dong, LiZhi; Chen, XiaoJun; Tan, Yi; Liu, Wenjin; Wang, Shuai; Yang, Ping; Xu, Bing; Ye, YuTang

    2016-04-10

    Adaptive optics is an important technology for improving beam quality in solid-state slab lasers. However, there are uncorrectable aberrations in partial areas of the beam. In the criterion of the conventional least-squares reconstruction method, it makes the zones with small aberrations nonsensitive and hinders this zone from being further corrected. In this paper, a weighted least-squares reconstruction method is proposed to improve the relative sensitivity of zones with small aberrations and to further improve beam quality. Relatively small weights are applied to the zones with large residual aberrations. Comparisons of results show that peak intensity in the far field improved from 1242 analog digital units (ADU) to 2248 ADU, and beam quality β improved from 2.5 to 2.0. This indicates the weighted least-squares method has better performance than the least-squares reconstruction method when there are large zonal uncorrectable aberrations in the slab laser system.

  14. Cellular logic array for computation of squares

    NASA Technical Reports Server (NTRS)

    Shamanna, M.; Whitaker, S.; Canaris, J.

    1991-01-01

    A cellular logic array is described for squaring binary numbers. This array offers a significant increase in speed, with a relatively small hardware overhead. This improvement is a result of novel implementation of the formula (x + y)exp 2 = x(exp 2) + y(exp 2) + 2(x)(y). These results can also be incorporated in the existing arrays achieving considerable hardware reduction.

  15. Least Squares Computations in Science and Engineering

    DTIC Science & Technology

    1994-02-01

    iterative least squares deblurring procedure. Because of the ill-posed characteristics of the deconvolution problem, in the presence of noise , direct...optimization methods. Generally, the problems are accompanied by constraints, such as bound constraints, and the observations are corrupted by noise . The...engineering. This effort has involved interaction with researchers in closed-loop active noise (vibration) control at Phillips Air Force Laboratory

  16. Helping students mathematical construction on square and rectangle’s area by using Sarong motive chess

    NASA Astrophysics Data System (ADS)

    Zuliana, Eka; Setyawan, Fariz; Veloo, Arsaythamby

    2017-12-01

    The aim of this study is developing the learning trajectory to construct students’ understanding of the concept of the area of square and rectangle by using Sarong Motive Chess. This research is a design research which is consists of three stages. The stages are preparing for the experiment, designing experiment, and making a retrospective analysis. The activities started by the activity of using sarong motive chess as the manipulative measurement unit. The Sarong motive chess helps students to understand the concept of area of square and rectangle. In the formal stage of cognitive level, students estimate the area of square and rectangle by determining the square unit at the surface area of sarong through many ways. The result of this study concludes that Sarong motive chess can be used for mathematics learning process. It helps the students to construct the concept of a square and rectangle’s area. This study produces learning trajectory to construct the concept of a square and rectangle’s area by using Sarong motive chess, especially for elementary school students.

  17. Square and Rectangular Arrays from Directed Assembly of Sphere-forming Diblock Copolymers in Thin Films

    NASA Astrophysics Data System (ADS)

    Ji, Shengxiang; Nagpal, Umang; Liao, Wen; de Pablo, Juan; Nealey, Paul

    2010-03-01

    Patterns of square and rectangular arrays with nanoscale dimensions are scientifically and technologically important. Fabrication of square array patterns in thin films has been demonstrated by directed assembly of cylinder-forming diblock copolymers on chemically patterned substrates, supramolecular assembly of diblock copolymers, and self-assembly of triblock terpolymers. However, a macroscopic area of square array patterns with long-range order has not been achieved, and the fabrication of rectangular arrays has not been reported so far. Here we report a facile approach for fabricating patterns of square and rectangular arrays by directing the assembly of sphere-forming diblock copolymers on chemically patterned substrates. On stripe patterns, a square arrangement of half spheres, corresponding to the (100) plane of the body-centred cubic (BCC) lattice, formed on film surfaces. When the underlying pattern periods mismatched with the copolymer period, the square pattern could be stretched (up to ˜60%) or compressed (˜15%) to form rectangular arrays. Monte Carlo simulations have been further used to verify the experimental results and the 3-dimensional arrangements of spheres.

  18. Low-Temperature Crystal Structures of the Hard Core Square Shoulder Model.

    PubMed

    Gabriëlse, Alexander; Löwen, Hartmut; Smallenburg, Frank

    2017-11-07

    In many cases, the stability of complex structures in colloidal systems is enhanced by a competition between different length scales. Inspired by recent experiments on nanoparticles coated with polymers, we use Monte Carlo simulations to explore the types of crystal structures that can form in a simple hard-core square shoulder model that explicitly incorporates two favored distances between the particles. To this end, we combine Monte Carlo-based crystal structure finding algorithms with free energies obtained using a mean-field cell theory approach, and draw phase diagrams for two different values of the square shoulder width as a function of the density and temperature. Moreover, we map out the zero-temperature phase diagram for a broad range of shoulder widths. Our results show the stability of a rich variety of crystal phases, such as body-centered orthogonal (BCO) lattices not previously considered for the square shoulder model.

  19. Semivariogram modeling by weighted least squares

    USGS Publications Warehouse

    Jian, X.; Olea, R.A.; Yu, Y.-S.

    1996-01-01

    Permissible semivariogram models are fundamental for geostatistical estimation and simulation of attributes having a continuous spatiotemporal variation. The usual practice is to fit those models manually to experimental semivariograms. Fitting by weighted least squares produces comparable results to fitting manually in less time, systematically, and provides an Akaike information criterion for the proper comparison of alternative models. We illustrate the application of a computer program with examples showing the fitting of simple and nested models. Copyright ?? 1996 Elsevier Science Ltd.

  20. Middle-aged Female Depression in Perimenopausal Period and Square Dance Intervention.

    PubMed

    Gao, Lei; Zhang, Linlin; Qi, Hua; Petridis, Louyis

    2016-12-01

    Depression is one of the most common psychiatric illnesses among perimenopausal women. Currently, drug treatments for the disorder tend to have higher risks than other forms of treatment. On the contrary, aerobic exercise can effectively relieve menopausal syndrome among perimenopausal women. Square dance, a kind of aerobic exercise favored by middle-aged women in China, could be a beneficial intervention for perimenopausal depression. A total of 321 women in perimenopause were chosen from Nangang Community, DaoLi Community, and Daowai Community in Harbin, Heilongjiang Province, from September 2015 through April 2016. Of the women with depressive symptoms, 60 did not participate in square dance. The subjects were randomly assigned to the intervention group (n=26) and control group (n=24). Intervention group patients participated in guided square dance exercise 60-90 min at least 5 times per week at a regular time for 3 months. The women in the control group received no intervention. Of the screened subjects, 72 women (22.4%) suffered mild to severe depression; younger, working married women who square danced regularly presented a low depression rate (p<0.05). The depression index score of the intervention group after three months was 0.43±0.09, a statistically significant decrease (t=5.658, p<0.001). The difference in the depression index changes of the intervention and control group was also significant (t=5.407, p<0.001). The depression rate among women in perimenopause is high. Some intervention measures, such as promoting female employment, organizing collective activities for retired or unemployed women, and stabilizing family ties can prevent or improve the depression of women in perimenopause. Square dance can effectively reduce the depression levels of women in perimenopause.

  1. A class of least-squares filtering and identification algorithms with systolic array architectures

    NASA Technical Reports Server (NTRS)

    Kalson, Seth Z.; Yao, Kung

    1991-01-01

    A unified approach is presented for deriving a large class of new and previously known time- and order-recursive least-squares algorithms with systolic array architectures, suitable for high-throughput-rate and VLSI implementations of space-time filtering and system identification problems. The geometrical derivation given is unique in that no assumption is made concerning the rank of the sample data correlation matrix. This method utilizes and extends the concept of oblique projections, as used previously in the derivations of the least-squares lattice algorithms. Exponentially weighted least-squares criteria are considered for both sliding and growing memory.

  2. Multifrequency synthesis and extraction using square wave projection patterns for quantitative tissue imaging

    PubMed Central

    Nadeau, Kyle P.; Rice, Tyler B.; Durkin, Anthony J.; Tromberg, Bruce J.

    2015-01-01

    Abstract. We present a method for spatial frequency domain data acquisition utilizing a multifrequency synthesis and extraction (MSE) method and binary square wave projection patterns. By illuminating a sample with square wave patterns, multiple spatial frequency components are simultaneously attenuated and can be extracted to determine optical property and depth information. Additionally, binary patterns are projected faster than sinusoids typically used in spatial frequency domain imaging (SFDI), allowing for short (millisecond or less) camera exposure times, and data acquisition speeds an order of magnitude or more greater than conventional SFDI. In cases where sensitivity to superficial layers or scattering is important, the fundamental component from higher frequency square wave patterns can be used. When probing deeper layers, the fundamental and harmonic components from lower frequency square wave patterns can be used. We compared optical property and depth penetration results extracted using square waves to those obtained using sinusoidal patterns on an in vivo human forearm and absorbing tube phantom, respectively. Absorption and reduced scattering coefficient values agree with conventional SFDI to within 1% using both high frequency (fundamental) and low frequency (fundamental and harmonic) spatial frequencies. Depth penetration reflectance values also agree to within 1% of conventional SFDI. PMID:26524682

  3. Least squares reconstruction of non-linear RF phase encoded MR data.

    PubMed

    Salajeghe, Somaie; Babyn, Paul; Sharp, Jonathan C; Sarty, Gordon E

    2016-09-01

    The numerical feasibility of reconstructing MRI signals generated by RF coils that produce B1 fields with a non-linearly varying spatial phase is explored. A global linear spatial phase variation of B1 is difficult to produce from current confined to RF coils. Here we use regularized least squares inversion, in place of the usual Fourier transform, to reconstruct signals generated in B1 fields with non-linear phase variation. RF encoded signals were simulated for three RF coil configurations: ideal linear, parallel conductors and, circular coil pairs. The simulated signals were reconstructed by Fourier transform and by regularized least squares. The Fourier reconstruction of simulated RF encoded signals from the parallel conductor coil set showed minor distortions over the reconstruction of signals from the ideal linear coil set but the Fourier reconstruction of signals from the circular coil set produced severe geometric distortion. Least squares inversion in all cases produced reconstruction errors comparable to the Fourier reconstruction of the simulated signal from the ideal linear coil set. MRI signals encoded in B1 fields with non-linearly varying spatial phase may be accurately reconstructed using regularized least squares thus pointing the way to the use of simple RF coil designs for RF encoded MRI. Crown Copyright © 2016. Published by Elsevier Inc. All rights reserved.

  4. Computational logic with square rings of nanomagnets

    NASA Astrophysics Data System (ADS)

    Arava, Hanu; Derlet, Peter M.; Vijayakumar, Jaianth; Cui, Jizhai; Bingham, Nicholas S.; Kleibert, Armin; Heyderman, Laura J.

    2018-06-01

    Nanomagnets are a promising low-power alternative to traditional computing. However, the successful implementation of nanomagnets in logic gates has been hindered so far by a lack of reliability. Here, we present a novel design with dipolar-coupled nanomagnets arranged on a square lattice to (i) support transfer of information and (ii) perform logic operations. We introduce a thermal protocol, using thermally active nanomagnets as a means to perform computation. Within this scheme, the nanomagnets are initialized by a global magnetic field and thermally relax on raising the temperature with a resistive heater. We demonstrate error-free transfer of information in chains of up to 19 square rings and we show a high level of reliability with successful gate operations of ∼94% across more than 2000 logic gates. Finally, we present a functionally complete prototype NAND/NOR logic gate that could be implemented for advanced logic operations. Here we support our experiments with simulations of the thermally averaged output and determine the optimal gate parameters. Our approach provides a new pathway to a long standing problem concerning reliability in the use of nanomagnets for computation.

  5. An Inverse Square Law Variation for Hubble's Constant

    NASA Astrophysics Data System (ADS)

    Day, Orville W., Jr.

    1999-11-01

    The solution to Einstein's gravitational field equations is examined, using a Robertson-Walker metric with positive curvature, when Hubble's parameter, H_0, is taken to be a constant divided by R^2. R is the cosmic scale factor for the universe treated as a three-dimensional hypersphere in a four-dimensional Euclidean space. This solution produces a self-energy of the universe, W^(0)_self, proportional to the square of the total mass, times the universal gravitational constant divided by the cosmic scale factor, R. This result is totally analogous to the self-energy of the electromagnetic field of a charged particle, W^(0)_self = ke^2/2r, where the total charge e is squared, k is the universal electric constant and r is the scale factor, usually identified as the radius of the particle. It is shown that this choice for H0 leads to physically meaningful results for the average mass density and pressure, and a deacceleration parameter q_0=1.

  6. Assessment of Coronal Spinal Alignment for Adult Spine Deformity Cases After Intraoperative T Square Shaped Use.

    PubMed

    Kurra, Swamy; Metkar, Umesh; Yirenkyi, Henaku; Tallarico, Richard A; Lavelle, William F

    Retrospectively reviewed surgeries between 2011 and 2015 of patients who underwent posterior spinal deformity instrumentation with constructs involving fusions to pelvis and encompassing at least five levels. Measure the radiographic outcomes of coronal malalignment (CM) after use of an intraoperative T square shaped instrument in posterior spinal deformity surgeries with at least five levels of fusion and extension to pelvis. Neuromuscular children found to benefit from intraoperative T square technique to help achieve proper coronal spinal balance with extensive fusions. This intraoperative technique used in our posterior spine deformity instrumentation surgeries with the aforementioned parameters. There were 50 patients: n = 16 with intraoperative T square and n = 34 no-T square shaped device. Subgroups divided based on greater than 20 mm displacement and greater than 40 mm displacement of the C7 plumb line to the central sacral vertical line on either side in preoperative radiographs. We analyzed the demographics and the pre- and postoperative radiographic parameters of standing films: standing CM (displacement of C7 plumb line to central sacral vertical line), and major coronal Cobb angles in total sample and subgroups and compared T square shaped device with no-T square shaped device use by analysis of variance. A p value ≤.05 is statistically significant. In the total sample, though postoperative CM mean was not statistically different, we observed greater CM corrections in patients where a T square shaped device was used (70%) versus no-T square shaped device used (18%). In >20 mm and >40 mm subgroups, the postoperative mean CM values were statistically lower for the patients where a T square shaped device was used, p = .016 and p = .003, respectively. Cobb corrections were statistically higher for T square shaped device use in both >20 mm and >40 mm subgroups, 68%, respectively. The intraoperative T square shaped device technique had a positive effect on

  7. Terahertz emission from thermally-managed square intrinsic Josephson junction microstrip antennas

    NASA Astrophysics Data System (ADS)

    Klemm, Richard; Davis, Andrew; Wang, Qing

    We show for thin square microstrip antennas that the transverse magnetic electromagnetic cavity modes are greatly restricted in number due to the point group symmetry of a square. For the ten lowest frequency emissions, we present plots of the orthonormal wave functions and of the angular distributions of the emission power obtained from the uniform Josephson current source and from the excitation of an electromagnetic cavity mode excited in the intrinsic Josephson junctions between the layers of a highly anisotropic layered superconductor.

  8. [Locally weighted least squares estimation of DPOAE evoked by continuously sweeping primaries].

    PubMed

    Han, Xiaoli; Fu, Xinxing; Cui, Jie; Xiao, Ling

    2013-12-01

    Distortion product otoacoustic emission (DPOAE) signal can be used for diagnosis of hearing loss so that it has an important clinical value. Continuously using sweeping primaries to measure DPOAE provides an efficient tool to record DPOAE data rapidly when DPOAE is measured in a large frequency range. In this paper, locally weighted least squares estimation (LWLSE) of 2f1-f2 DPOAE is presented based on least-squares-fit (LSF) algorithm, in which DPOAE is evoked by continuously sweeping tones. In our study, we used a weighted error function as the loss function and the weighting matrixes in the local sense to obtain a smaller estimated variance. Firstly, ordinary least squares estimation of the DPOAE parameters was obtained. Then the error vectors were grouped and the different local weighting matrixes were calculated in each group. And finally, the parameters of the DPOAE signal were estimated based on least squares estimation principle using the local weighting matrixes. The simulation results showed that the estimate variance and fluctuation errors were reduced, so the method estimates DPOAE and stimuli more accurately and stably, which facilitates extraction of clearer DPOAE fine structure.

  9. Natural convective heat transfer from square cylinder

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

    Novomestský, Marcel, E-mail: marcel.novomestsky@fstroj.uniza.sk; Smatanová, Helena, E-mail: helena.smatanova@fstroj.uniza.sk; Kapjor, Andrej, E-mail: andrej.kapjor@fstroj.uniza.sk

    This article is concerned with natural convective heat transfer from square cylinder mounted on a plane adiabatic base, the cylinders having an exposed cylinder surface according to different horizontal angle. The cylinder receives heat from a radiating heater which results in a buoyant flow. There are many industrial applications, including refrigeration, ventilation and the cooling of electrical components, for which the present study may be applicable.

  10. Selection of lasing direction in single mode semiconductor square ring cavities

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

    Lee, Jin-Woong; Kim, Kyoung-Youm; Moon, Hee-Jong

    We propose and demonstrate a selection scheme of lasing direction by imposing a loss imbalance structure into the single mode square ring cavity. The control of the traveling direction is realized by introducing a taper-step section in one of the straight waveguides of the square ring cavity. It was shown by semi-analytic calculation that the taper-step section in the cavity provides effective loss imbalance between two travelling directions as the round trip repeats. Various kinds of square cavities were fabricated using InGaAsP/InGaAs multiple quantum well semiconductor materials in order to test the direction selectivity while maintaining the single mode. Wemore » also measured the pump power dependent lasing spectra to investigate the maintenance property of the lasing direction. The experimental results demonstrated that the proposed scheme is an efficient means for a unidirectional lasing in a single mode laser.« less

  11. Least-Squares Data Adjustment with Rank-Deficient Data Covariance Matrices

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

    Williams, J.G.

    2011-07-01

    A derivation of the linear least-squares adjustment formulae is required that avoids the assumption that the covariance matrix of prior parameters can be inverted. Possible proofs are of several kinds, including: (i) extension of standard results for the linear regression formulae, and (ii) minimization by differentiation of a quadratic form of the deviations in parameters and responses. In this paper, the least-squares adjustment equations are derived in both these ways, while explicitly assuming that the covariance matrix of prior parameters is singular. It will be proved that the solutions are unique and that, contrary to statements that have appeared inmore » the literature, the least-squares adjustment problem is not ill-posed. No modification is required to the adjustment formulae that have been used in the past in the case of a singular covariance matrix for the priors. In conclusion: The linear least-squares adjustment formula that has been used in the past is valid in the case of a singular covariance matrix for the covariance matrix of prior parameters. Furthermore, it provides a unique solution. Statements in the literature, to the effect that the problem is ill-posed are wrong. No regularization of the problem is required. This has been proved in the present paper by two methods, while explicitly assuming that the covariance matrix of prior parameters is singular: i) extension of standard results for the linear regression formulae, and (ii) minimization by differentiation of a quadratic form of the deviations in parameters and responses. No modification is needed to the adjustment formulae that have been used in the past. (author)« less

  12. Least-mean-square spatial filter for IR sensors.

    PubMed

    Takken, E H; Friedman, D; Milton, A F; Nitzberg, R

    1979-12-15

    A new least-mean-square filter is defined for signal-detection problems. The technique is proposed for scanning IR surveillance systems operating in poorly characterized but primarily low-frequency clutter interference. Near-optimal detection of point-source targets is predicted both for continuous-time and sampled-data systems.

  13. Electrostatic and Small-Signal Analysis of CMUTs With Circular and Square Anisotropic Plates.

    PubMed

    Funding la Cour, Mette; Christiansen, Thomas Lehrmann; Jensen, Jørgen Arendt; Thomsen, Erik Vilain

    2015-08-01

    Traditionally, capacitive micromachined ultrasonic transducers (CMUTs) are modeled using the isotropic plate equation, and this leads to deviations between analytical calculations and finite element modeling (FEM). In this paper, the deflection is calculated for both circular and square plates using the full anisotropic plate equation. It is shown that the anisotropic calculations match excellently with FEM, whereas an isotropic approach causes up to 10% deviations in deflection. For circular plates, an exact solution can be found. For square plates using the Galerkin method, and utilizing the symmetry of the silicon crystal, a compact and accurate expression for the deflection can be obtained. The deviation from FEM in center deflection is <0.1%. The theory of multilayer plates is also applied to the CMUT. The deflection of a square plate was measured on fabricated CMUTs using a white light interferometer. Fitting the plate parameter for the anisotropic calculated deflection to the measurement, a deviation of 0.07% is seen. Electrostatic and small-signal dynamic analysis are performed using energy considerations including anisotropy. The stable position, effective spring constant, pullin distance, and pull-in voltage are found for both circular and square anisotropic plates, and the pressure dependence is included by comparison with the corresponding analysis for a parallel plate. Measurements on fabricated devices with both circular and square plates subjected to increasing bias voltage are performed, and it is observed that the models including anisotropic effects are within the uncertainty interval of the measurements. Finally, a lumped element small-signal model for both circular and square anisotropic plates is derived to describe the dynamics of the CMUT.

  14. Characterization of turbulent coherent structures in square duct flow

    NASA Astrophysics Data System (ADS)

    Atzori, Marco; Vinuesa, Ricardo; Lozano-Durán, Adrián; Schlatter, Philipp

    2018-04-01

    This work is aimed at a first characterization of coherent structures in turbulent square duct flows. Coherent structures are defined as connected components in the domain identified as places where a quantity of interest (such as Reynolds stress or vorticity) is larger than a prescribed non-uniform threshold. Firstly, we qualitatively discuss how a percolation analysis can be used to assess the effectiveness of the threshold function, and how it can be affected by statistical uncertainty. Secondly, various physical quantities that are expected to play an important role in the dynamics of the secondary flow of Prandtl’s second kind are studied. Furthermore, a characterization of intense Reynolds-stress events in square duct flow, together with a comparison of their shape for analogous events in channel flow at the same Reynolds number, is presented.

  15. Sea surface mean square slope from Ku-band backscatter data

    NASA Technical Reports Server (NTRS)

    Jackson, F. C.; Walton, W. T.; Hines, D. E.; Walter, B. A.; Peng, C. Y.

    1992-01-01

    A surface mean-square-slope parameter analysis is conducted for 14-GHz airborne radar altimeter near-nadir, quasi-specular backscatter data, which in raw form obtained by least-squares fitting of an optical scattering model to the return waveform show an approximately linear dependence over the 7-15 m/sec wind speed range. Slope data are used to draw inferences on the structure of the high-wavenumber portion of the spectrum. A directionally-integrated model height spectrum that encompasses wind speed-dependent k exp -5/2 and classical Phillips k exp -3 power laws subranges in the range of gravity waves is supported by the data.

  16. The covariance matrix for the solution vector of an equality-constrained least-squares problem

    NASA Technical Reports Server (NTRS)

    Lawson, C. L.

    1976-01-01

    Methods are given for computing the covariance matrix for the solution vector of an equality-constrained least squares problem. The methods are matched to the solution algorithms given in the book, 'Solving Least Squares Problems.'

  17. Comparison of photoemission characteristics between square and circular wire array GaAs photocathodes.

    PubMed

    Deng, Wenjuan; Peng, Xincun; Zou, Jijun; Wang, Weilu; Liu, Yun; Zhang, Tao; Zhang, Yijun; Zhang, Daoli

    2017-11-10

    Two types of negative electron affinity gallium arsenide (GaAs) wire array photocathodes were fabricated by reactive ion etching and inductively coupled plasma etching of bulk GaAs material. High density GaAs wire arrays with high periodicity and good morphology were verified using scanning electron microscopy, and photoluminescence spectra confirmed the wire arrays had good crystalline quality. Reflection spectra showed that circular GaAs wire arrays had superior light trapping compared with square ones. However, after Cs/O activation, the square GaAs wire array photocathodes showed enhanced spectral response. The integral sensitivity of the square wire array photocathodes was approximately 2.8 times that of the circular arrays.

  18. An Alternating Least Squares Method for the Weighted Approximation of a Symmetric Matrix.

    ERIC Educational Resources Information Center

    ten Berge, Jos M. F.; Kiers, Henk A. L.

    1993-01-01

    R. A. Bailey and J. C. Gower explored approximating a symmetric matrix "B" by another, "C," in the least squares sense when the squared discrepancies for diagonal elements receive specific nonunit weights. A solution is proposed where "C" is constrained to be positive semidefinite and of a fixed rank. (SLD)

  19. A Comparison of Heuristic Procedures for Minimum within-Cluster Sums of Squares Partitioning

    ERIC Educational Resources Information Center

    Brusco, Michael J.; Steinley, Douglas

    2007-01-01

    Perhaps the most common criterion for partitioning a data set is the minimization of the within-cluster sums of squared deviation from cluster centroids. Although optimal solution procedures for within-cluster sums of squares (WCSS) partitioning are computationally feasible for small data sets, heuristic procedures are required for most practical…

  20. Attenuation of the Squared Canonical Correlation Coefficient under Varying Estimates of Score Reliability

    ERIC Educational Resources Information Center

    Wilson, Celia M.

    2010-01-01

    Research pertaining to the distortion of the squared canonical correlation coefficient has traditionally been limited to the effects of sampling error and associated correction formulas. The purpose of this study was to compare the degree of attenuation of the squared canonical correlation coefficient under varying conditions of score reliability.…