• Refine Query
  • Source
  • Publication year
  • to
  • Language
  • 6
  • 3
  • Tagged with
  • 10
  • 8
  • 8
  • 2
  • 1
  • 1
  • 1
  • 1
  • 1
  • 1
  • 1
  • 1
  • 1
  • 1
  • 1
  • 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.
1

Hochauflösende Laserspektroskopie in Tieftemperaturfestkörpern laserinduzierte Fluoreszenz- und Einzelmolekülspektroskopie in Edelgas- und Shpol'skii-Matrizen /

Caspary, Nico. Unknown Date (has links)
Techn. Universiẗat, Diss., 2005--München.
2

Spectroscopy of unstable and charged species in cryogenic solids

Frankowski, Marcin. January 2004 (has links) (PDF)
München, Techn. University, Diss., 2004.
3

Spektroskopie an matrixisolierten Kohlenstoffmolekülen

Ong, Aik Loong. Unknown Date (has links) (PDF)
Universiẗat, Diss., 2002--Heidelberg.
4

Mutual coupling suppression in multiple microstrip antennas for wireless applications

Thuwaini, Alaa H. Radhi January 2018 (has links)
Mutual Coupling (MC) is the exchange of energy between multiple antennas when placed on the same PCB, it being one of the critical parameters and a significant issue to be considered when designing MIMO antennas. It appears significantly where multiple antennas are placed very close to each other, with a high coupling affecting the performance of the array, in terms radiation patterns, the reflection coefficient, and influencing the input impedance. Moreover; it degrades the designed efficiency and gain since part of the power that could have been radiated becomes absorbed by other adjacent antennas' elements. The coupling mechanism between multiple antenna elements is identified as being mainly through three different paths or channels: surface wave propagation, space (direct) radiation and reactive near-field coupling. In this thesis, various coupling reduction approaches that are commonly employed in the literature are categorised based on these mechanisms. Furthermore, a new comparative study involving four different array types (PIFA, patch, monopole, and slot), is explained in detail. This thesis primarily focuses on three interconnected research topics for mutual coupling reduction based on new isolation approaches for different wireless applications (i.e. Narrowband, Ultra-wide-band and Multi-band). First, a new Fractal based Electromagnetic Band Gap (FEBG) decoupling structure between PIFAs is proposed and investigated for a narrowband application. Excellent isolation of more than 27 dB (Z-X plane) and 40 dB (Z-Y plane) is obtained without much degradation of the radiation characteristics. It is found that the fractal structures can provide a band-stop effect, because of their self-similarity features for a particular frequency band. Second, new UWB-MIMO antennas are presented with high isolation characteristics. Wideband isolation (≥ 31 dB) is achieved through the entire UWB band (3.1-10.6 GHz) by etching a novel compact planar decoupling structure inserted between these multiple UWB antennas. Finally, new planar MIMO antennas are presented for multi-band (quad bands) applications. A significant isolation improvement over the reference (≥ 17 dB) is achieved in each band by etching a hybrid solution. All the designs reported in this thesis have been fabricated and measured, with the simulated and measured results agreeing well in most cases.
5

Selective laser-induced oxidation of carbon chain molecules in cryogenic matrices

Strelnikov, Dmitry. Unknown Date (has links) (PDF)
University, Diss., 2004--Heidelberg.
6

Infrarot-Matrix-Isolationsspektroskopie an SiC- und SiC:N-Nanopartikeln

Clément, Dominik. Unknown Date (has links)
Universiẗat, Diss., 2002--Jena.
7

Untersuchungen zur Photofragmentierung in Edelgasmatrizen Vergleich von tert-Butylnitrit und tert-Butylthionitrit ; Untersuchung von 2,3-Diazabicyclo[2.2.1]hept-2-en /

Schaffer, Tanja Roswitha. January 2005 (has links) (PDF)
Regensburg, Univ., Diss., 2005.
8

Hochauflösende optische Spektroskopie am Pt(dphpy)(CO)-Triplett-Emitter und Untersuchungen zum Energietransfer in einem quasi-zweidimensionalen Tb[Au(CN)2]3 ̇3 H2O-Halbleiter

Kratzer, Cornelius. January 1900 (has links) (PDF)
Regensburg, Univ., Diss., 2004.
9

Synthese von Galliumhydriden aus intramolekular koordinierten Gallanan: Matrixisolation und ab-initio-Rechnungen

Sternkicker, Henning. Unknown Date (has links) (PDF)
Techn. Hochsch., Diss., 1999--Aachen.
10

Merging Queries in OLTP Workloads

Rehrmann, Robin 30 May 2023 (has links)
OLTP applications are usually executed by a high number of clients in parallel and are typically faced with high throughput demand as well as a constraint latency requirement for individual statements. In enterprise scenarios, they often face the challenge to deal with overload spikes resulting from events such as Cyber Monday or Black Friday. The traditional solution to prevent running out of resources and thus coping with such spikes is to use a significant over-provisioning of the underlying infrastructure. In this thesis, we analyze real enterprise OLTP workloads with respect to statement types, complexity, and hot-spot statements. Interestingly, our findings reveal that workloads are often read-heavy and comprise similar query patterns, which provides a potential to share work of statements belonging to different transactions. In the past, resource sharing has been extensively studied for OLAP workloads. Naturally, the question arises, why studies mainly focus on OLAP and not on OLTP workloads? At first sight, OLTP queries often consist of simple calculations, such as index look-ups with little sharing potential. In consequence, such queries – due to their short execution time – may not have enough potential for the additional overhead. In addition, OLTP workloads do not only execute read operations but also updates. Therefore, sharing work needs to obey transactional semantics, such as the given isolation level and read-your-own-writes. This thesis presents THE LEVIATHAN, a novel batching scheme for OLTP workloads, an approach for merging read statements within interactively submitted multi-statement transactions consisting of reads and updates. Our main idea is to merge the execution of statements by merging their plans, thus being able to merge the execution of not only complex, but also simple calculations, such as the aforementioned index look-up. We identify mergeable statements by pattern matching of prepared statement plans, which comes with low overhead. For obeying the isolation level properties and providing read-your-own-writes, we first define a formal framework for merging transactions running under a given isolation level and provide insights into a prototypical implementation of merging within a commercial database system. Our experimental evaluation shows that, depending on the isolation level, the load in the system, and the read-share of the workload, an improvement of the transaction throughput by up to a factor of 2.5x is possible without compromising the transactional semantics. Another interesting effect we show is that with our strategy, we can increase the throughput of a real enterprise workload by 20%.:1 INTRODUCTION 1.1 Summary of Contributions 1.2 Outline 2 WORKLOAD ANALYSIS 2.1 Analyzing OLTP Benchmarks 2.1.1 YCSB 2.1.2 TATP 2.1.3 TPC Benchmark Scenarios 2.1.4 Summary 2.2 Analyzing OLTP Workloads from Open Source Projects 2.2.1 Characteristics of Workloads 2.2.2 Summary 2.3 Analyzing Enterprise OLTP Workloads 2.3.1 Overview of Reports about OLTP Workload Characteristics 2.3.2 Analysis of SAP Hybris Workload 2.3.3 Summary 2.4 Conclusion 3 RELATED WORK ON QUERY MERGING 3.1 Merging the Execution of Operators 3.2 Merging the Execution of Subplans 3.3 Merging the Results of Subplans 3.4 Merging the Execution of Full Plans 3.5 Miscellaneous Works on Merging 3.6 Discussion 4 MERGING STATEMENTS IN MULTI STATEMENT TRANSACTIONS 4.1 Overview of Our Approach 4.1.1 Examples 4.1.2 Why Naïve Merging Fails 4.2 THE LEVIATHAN Approach 4.3 Formalizing THE LEVIATHAN Approach 4.3.1 Transaction Theory 4.3.2 Merging Under MVCC 4.4 Merging Reads Under Different Isolation Levels 4.4.1 Read Uncommitted 4.4.2 Read Committed 4.4.3 Repeatable Read 4.4.4 Snapshot Isolation 4.4.5 Serializable 4.4.6 Discussion 4.5 Merging Writes Under Different Isolation Levels 4.5.1 Read Uncommitted 4.5.2 Read Committed 4.5.3 Snapshot Isolation 4.5.4 Serializable 4.5.5 Handling Dependencies 4.5.6 Discussion 5 SYSTEM MODEL 5.1 Definition of the Term “Overload” 5.2 Basic Queuing Model 5.2.1 Option (1): Replacement with a Merger Thread 5.2.2 Option (2): Adding Merger Thread 5.2.3 Using Multiple Merger Threads 5.2.4 Evaluation 5.3 Extended Queue Model 5.3.1 Option (1): Replacement with a Merger Thread 5.3.2 Option (2): Adding Merger Thread 5.3.3 Evaluation 6 IMPLEMENTATION 6.1 Background: SAP HANA 6.2 System Design 6.2.1 Read Committed 6.2.2 Snapshot Isolation 6.3 Merger Component 6.3.1 Overview 6.3.2 Dequeuing 6.3.3 Merging 6.3.4 Sending 6.3.5 Updating MTx State 6.4 Challenges in the Implementation of Merging Writes 6.4.1 SQL String Implementation 6.4.2 Update Count 6.4.3 Error Propagation 6.4.4 Abort and Rollback 7 EVALUATION 7.1 Benchmark Settings 7.2 System Settings 7.2.1 Experiment I: End-to-end Response Time Within a SAP Hybris System 7.2.2 Experiment II: Dequeuing Strategy 7.2.3 Experiment III: Merging Improvement on Different Statement, Transaction and Workload Types 7.2.4 Experiment IV: End-to-End Latency in YCSB 7.2.5 Experiment V: Breakdown of Execution in YCSB 7.2.6 Discussion of System Settings 7.3 Merging in Interactive Transactions 7.3.1 Experiment VI: Merging TATP in Read Uncommitted 7.3.2 Experiment VII: Merging TATP in Read Committed 7.3.3 Experiment VIII: Merging TATP in Snapshot Isolation 7.4 Merging Queries in Stored Procedures Experiment IX: Merging TATP Stored Procedures in Read Committed 7.5 Merging SAP Hybris 7.5.1 Experiment X: CPU-time Breakdown on HANA Components 7.5.2 Experiment XI: Merging Media Query in SAP Hybris 7.5.3 Discussion of our Results in Comparison with Related Work 8 CONCLUSION 8.1 Summary 8.2 Future Research Directions REFERENCES A UML CLASS DIAGRAMS

Page generated in 0.1308 seconds