• Refine Query
  • Source
  • Publication year
  • to
  • Language
  • 59
  • 12
  • 8
  • 5
  • 4
  • 2
  • 2
  • 1
  • 1
  • 1
  • 1
  • Tagged with
  • 179
  • 179
  • 74
  • 70
  • 67
  • 59
  • 30
  • 29
  • 24
  • 24
  • 22
  • 20
  • 20
  • 20
  • 19
  • About
  • The Global ETD Search service is a free service for researchers to find electronic theses and dissertations. This service is provided by the Networked Digital Library of Theses and Dissertations.
    Our metadata is collected from universities around the world. If you manage a university/consortium/country archive and want to be added, details can be found on the NDLTD website.
71

Entropy reduction of English text using variable length grouping

Ast, Vincent Norman 01 July 1972 (has links)
It is known that the entropy of English text can be reduced by arranging the text into groups of two or more letters each. The higher the order of the grouping the greater is the entropy reduction. Using this principle in a computer text compressing system brings about difficulties, however, because the number of entries required in the translation table increases exponentially with group size. This experiment examined the possibility of using a translation table containing only selected entries of all group sizes with the expectation of obtaining a substantial entropy reduction with a relatively small table. An expression was derived that showed that the groups which should be included in the table are not necessarily those that occur frequently but rather occur more frequently than would be expected due to random occurrence. This was complicated by the fact that any grouping affects the frequency of occurrence of many other related groups. An algorithm was developed in which the table originally starts with the regular 26 letters of the alphabet and the space. Entries, which consist of letter groups, complete words, and word groups, are then added one by one based on the selection criterion. After each entry is added adjustments are made to account for the interaction of the groups. This algorithm was programmed on a computer and was run using a text sample of about 7000 words. The results showed that the entropy could easily be reduced down to 3 bits per letter with a table of less than 200 entries. With about 500 entries the entropy could be reduced to about 2.5 bits per letter. About 60% of the table was composed of letter groups, 42% of single words and 8% of word groups and indicated that the extra complications involved in handling word groups may not be worthwhile. A visual examination of the table showed that many entries were very much oriented to the particular sample. This may or may not be desirable depending on the intended use of the translating system.
72

SADDAS; a self-contained analog to digital data acquisition system.

Petersen, Walter Anton 01 January 1972 (has links)
SADDAS, a. Self-contained Analog to Digital Data Acquisition System, converts analog voltage inputs to formatted BCD (binary coded decimal digital magnetic tape. SADDAS consists of a 16 channel multiplexer, a 17 bit (4 digits + sign) 40 microsecond analog to digital converter, a 512 byte 8 bit core memory, a 30 IPS (inches per second) digital tape recorder at a density of 556 cpi (characters per inch), and a controller which integrates these instruments into a flexible and easy-to-use system. Sampling rates in excess of 360 samples per second may be used when converting seven channels of data, such as IRIG (Inter Range Instrumentation Group) analog magnetic tapes.
73

Empirical Modeling and Analysis of Degradation of the Lithium-Ion Battery for Different First- and Second-Use Applications

Alhadri, Muapper J. 29 August 2019 (has links)
No description available.
74

Characterization and Monitoring of On-Farm Water Storage Systems in Porter Bayou Watershed, Mississippi

Kirmeyer, Richard Ludwig 14 December 2013 (has links)
The onarm water storage (OFWS) systems at Metcalf and Pitts farm in Porter Bayou Watershed were monitored for changes in nutrient levels and water withdrawal for irrigation from March 2012 to April 2013. Nitrogen and phosphorus levels were generally higher during the early part of the growing season. The OFWS systems can reduce nitrate and phosphorus in runoff up to 81% and 85%, respectively. However, the systems did not consistently reduce sediment and nutrients especially after significant rainfall and runoff events. The systems provided a total of 130 and 233 acreeet of recycled water for irrigating crops at Metcalf and Pitts, respectively, during the 2012 growing season. These amounts reflect significant savings in terms of groundwater. This study highlights the advantages of OFWS systems as structural BMPs to reduce nutrient loading into the Gulf of Mexico and to minimize groundwater withdrawals from the Mississippi Alluvial Aquifer.
75

Efficient Social Network Data Query Processing on MapReduce

Liu, Liu 01 January 2013 (has links) (PDF)
Social network data analysis becomes increasingly important today. In order to improve the integration and reuse of their data, many social networks start to apply RDF to present the data. Accordingly, one common approach for social network data analysis is to employ SPARQL to query RDF data. As the sizes of social networks expand rapidly, queries need to be executed in parallel such as using the MapReduce framework. However, the state-of-the-art translation from SPARQL queries to MapReduce jobs mainly follows a two layer rule, in which SPARQL is first translated to SQL join, is not efficient. In this thesis, we introduce two primitives to enable automatic translation from SPARQL to MapReduce, and to enable efficient execution of the SPARQL queries. We use multiple-join-with-filter to substitute traditional SQL multiple join when feasible, and merge different stages in the MapReduce query workflow. The evaluation on social network benchmarks shows that these two primitives can achieve up to 2x speedup in query running time compared with the original two layer scheme.
76

Improvement of Statistical Process Control at St. Jude Medical's Cardiac Manufacturing Facility

Edwards, Christopher Lance 01 June 2012 (has links) (PDF)
Sig sigma is a methodology where companies strive to reproduce results ending up having a 99.9996% chance their product will be void of defects. In order for companies to reach six sigma, statistical process control (SPC) needs to be introduced. SPC has many different tools associated with it, control charts being one of them. Control charts play a vital role in managing how a process is behaving. Control charts allow users to identify special causes, or shifts, and can therefore change the process to keep producing good products, free of defects. There are many factories and manufacturing facilities having implemented some sort of statistical process control. St. Jude Medical implemented control charts to monitor different tools on the manufacturing line. How the data is entered and stored poses a difficult situation for the person monitoring the processes. The program used to keep the control charts is not user friendly and difficult to use. Another program can be produced to provide a greater level of efficiency. The goals of this project are to stress how important control charts are in the manufacturing world, what problems are currently seen for operators and supervisors, and how a new and improved program can help fix the current situation. This paper goes into the reasons for the change as well has what has been improved.
77

JDiet: Footprint Reduction for Memory-Constrained Systems

Huffman, Michael John 01 June 2009 (has links) (PDF)
Main memory remains a scarce computing resource. Even though main memory is becoming more abundant, software applications are inexorably engineered to consume as much memory as is available. For example, expert systems, scientific computing, data mining, and embedded systems commonly suffer from the lack of main memory availability. This thesis introduces JDiet, an innovative memory management system for Java applications. The goal of JDiet is to provide the developer with a highly configurable framework to reduce the memory footprint of a memory-constrained system, enabling it to operate on much larger working sets. Inspired by buffer management techniques common in modern database management systems, JDiet frees main memory by evicting non-essential data to a disk-based store. A buffer retains a fixed amount of managed objects in main memory. As non-resident objects are accessed, they are swapped from the store to the buffer using an extensible replacement policy. While the Java virtual machine naïvely delegates virtual memory management to the operating system, JDiet empowers the system designer to select both the managed data and replacement policy. Guided by compile-time configuration, JDiet performs aspect-oriented bytecode engineering, requiring no explicit coupling to the source or compiled code. The results of an experimental evaluation of the effectiveness of JDiet are reported. A JDiet-enabled XML DOM parser is capable of parsing and processing over 200% larger input documents by sacrificing less than an order of magnitude in performance.
78

Amaethon – A Web Application for Farm Management and an Assessment of Its Utility

Yero, Tyler 01 December 2012 (has links) (PDF)
Amaethon is a web application that is designed for enterprise farm management. It takes a job typically performed with spreadsheets, paper, or custom software and puts it on the web. Farm administration personnel may use it to schedule farm operations and manage their resources and equipment. A survey was con- ducted to assess Amaethon’s user interface design. Participants in the survey were two groups of students and a small group of agriculture professionals. Among other results, the survey indicated that a calendar interface inside Amaethon was preferred, and statistically no less effective, than a map interface. This is despite the fact that a map interface was viewed by some users as a potentially important and effective component of Amaethon.
79

Digital Signaling Processor Resource Management for Small Office Phone Systems

Gilkeson, John T 01 June 2010 (has links) (PDF)
Contemporary small office phone systems are specialized computers that connect a variety of phones within the office and to the local phone company. These systems use digital signaling processors (DSPs) to convert signals from analog to digital and vice-versa. Many different types of applications run on the DSPs and different businesses have varying application needs. Given the systems have limited amounts of DSP resources and growing numbers of applications for a phone system, an administrator needs a way to configure the uses of resources based on their individual business needs. This thesis provides an overview of a system for configuring resources on various types of DSP hardware some of which are removable and have differing tradeoffs between application uses. The system has to be able to change resource allocations while the phone system is running with minimal interruptions to calls. The configuration system needs to be designed to be flexible enough that new applications or DSP hardware could be supported without major changes to code. This thesis presents a system that uses a database-driven model along with algorithms that optimize configuration of DSP hardware given the administrator’s individual application needs.
80

Top-down cost assessment and market regulatory conditions affecting BESS feasibility in the Spanish framework : Exploring the viability of utility-scale stand-alone Battery Energy Storage Systems in Spain

Abelló Sunyer, Pere January 2023 (has links)
This thesis report provides a comprehensive analysis of the regulatory landscape governing Battery Energy Storage Systems (BESS) in Spain and offers insights into their operational optimization and economic viability. The study centers on a 40 MW BESS and explores three distinct case studies, each representing varying system durations (one, two, and four hours) and two different electricity price scenarios (2019 and 2022). A techno-economic analysis encompassing all scenarios concludes the investigation. The research findings reveal that BESS projects can be financially lucrative when operating under the 2022 scenario, particularly when participating in Spain's Wholesale and Secondary Regulation service (aFRR) markets. Notably, as the system duration increases, project profitability also rises, with Net Present Values (NPVs) amounting to 29.6 M€, 50.4 M€, and 80.6 M€ for one-hour, two-hour, and four-hour BESS durations, respectively. However, this trend is not consistent, as observed in the 2019 scenario, where the opposite holds true due to significantly lower prices in both Wholesale and Secondary Regulation service markets, resulting in negative NPVs that increase with longer BESS durations (specifically, -3.3 M€, -6.9 M€, and -17.7 M€ for one-hour, two-hour, and four-hour BESS durations, respectively). In terms of optimal dispatching strategy, the study identifies consistent patterns across all case studies and scenarios. The BESS prioritizes participation in the Secondary Regulation service due to its higher remuneration compared to arbitrage activities in the Wholesale market. Despite Spain's efforts to promote the adoption of BESS technologies, several barriers exist that could impede their deployment. Key challenges include the absence of Capacity Markets (CM), restrictions on BESS participation in technical constraints and black-start markets, and the lack of remunerated markets for Frequency Control Reserve (FCR) and voltage control. In summary, this study highlights the need for a more investor-friendly environment characterized by greater revenue stream certainty and streamlined administrative processes. / Denna avhandling ger en omfattande analys av den reglerande landskapskontexten som styr batterilagringssystem (BESS) i Spanien och ger insikter om deras drifts- och ekonomiska livskraft. Studien fokuserar på en 40 MW BESS och utforskar tre olika fallstudier, var och en representerar varierande systemtider (en, två och fyra timmar) och två olika elprisscenarier (2019 och 2022). En teknisk-ekonomisk analys som omfattar alla scenarier avslutar undersökningen. Forskningsresultaten visar att BESS-projekt kan vara ekonomiskt lönsamma när de verkar enligt 2022-scenariot, särskilt när de deltar i Spaniens grossist- och sekundärregleringstjänst (aFRR) marknader. Inte minst ökar lönsamheten i projektet när systemtiden förlängs, med nuvärdet (NPV) uppgår till 29,6 M€, 50,4 M€ och 80,6 M€ för BESS-varaktigheter på en timme, två timmar respektive fyra timmar. Denna trend är dock inte konsekvent, som observerats i 2019-scenariot, där motsatsen gäller på grund av betydligt lägre priser både på grossist- och sekundärregleringsmarknaderna, vilket resulterar i negativa NPV-värden som ökar med längre BESS-varaktigheter (specifikt -3,3 M€, -6,9 M€ och -17,7 M€ för BESS-varaktigheter på en timme, två timmar respektive fyra timmar). När det gäller optimal distributionsstrategi identifierar studien liknande mönster i alla fallstudier och scenarier. BESS prioriterar deltagande i sekundärregleringstjänsten på grund av dess högre ersättning jämfört med arbitrageaktiviteter på grossistmarknaden. Trots Spaniens ansträngningar att främja antagandet av BESS-teknologier finns det flera hinder som kan hämma deras utrullning. Viktiga utmaningar inkluderar frånvaron av kapacitetsmarknader (CM), begränsningar för BESS-deltagande i tekniska begränsningar och svartstartmarknader, samt avsaknaden av marknader med ersättning för frekvensreglering (FCR) och spänningsreglering. Sammanfattningsvis belyser denna studie behovet av en mer investerarvänlig miljö präglad av större säkerhet i intäktsströmmar och förenklade administrativa processer.

Page generated in 0.0516 seconds