Source author record

André Müller

André Müller appears in the imported research catalog. Authorship, coauthor and topic links are available while profile ownership is still unclaimed.

ResearcherUnclaimed source record

Catalog footprint

What is connected

11works
11topics
4close collaborators

Actions

Connect this record

Log in to claim

Research graph

See the researcher in context

Open full explorer

Inspect adjacent papers, topics, institutions and collaborators without losing the researcher page.

Building this map preview

BZPEER is loading the nearby papers, people, topics and institutions for this page.

Published work

11 published item(s)

preprint2023arXiv

Forbidden emission lines in protostellar outflows and jets with MUSE

Forbidden emission lines in protoplanetary disks are a key diagnostic in studies of the evolution of the disk and the host star. We report spatially resolved emission lines, [OI] 6300, 6363, [NII] 6548, 6583, H$α$, and [SII] 6716, 6730 Angstrom that are believed to be associated with jets and magnetically driven winds in the inner disks. Observations were carried out with the optical integral field spectrograph of the Multi Unit Spectroscopic Explorer (MUSE), at the Very Large Telescope (VLT). With a resolution of 0.025 X 0.025 arcsec$^{2}$, we aim to derive the position angle of the outflow/jet (PA$_{outflow/jet}$) that is connected with the inner disk. The forbidden emission lines analyzed here have their origin at the inner parts of the protoplanetary disk. From the maximum intensity emission along the outflow/jet in DL Tau, CI Tau, DS Tau, IP Tau, and IM Lup, we were able to reliably measure the PA$_{outflow/jet}$ for most of the identified lines. We found that our estimates agree with PA$_{dust}$ for most of the disks. These estimates depend on the signal-to-noise level and the collimation of the outflow (jet). The outflows/jets in CIDA 9, GO Tau, and GW Lup are too compact for a PA$_{outflow/jet}$ to be estimated. Based on our kinematics analysis, we confirm that DL Tau and CI Tau host a strong outflow/jet with line-of-sight velocities much greater than 100 km s$^{-1}$, whereas DS Tau, IP Tau, and IM Lup velocities are lower and their structures encompass low-velocity components to be more associated with winds. Our estimates for the mass-loss rate, $\dot{M}_{loss}$, range between (1.1-6.5)X10$^{-7}$-10$^{-8}$ $M_{\odot}$ yr$^{-1}$ for the disk-outflow/jet systems analyzed here. The outflow/jet systems analyzed here are aligned within around 1 degree between the inner and outer disk. Further observations are needed to confirm a potential misalignment in IM Lup.

preprint2022arXiv

AnySeq/GPU: A Novel Approach for Faster Sequence Alignment on GPUs

In recent years, the rapidly increasing number of reads produced by next-generation sequencing (NGS) technologies has driven the demand for efficient implementations of sequence alignments in bioinformatics. However, current state-of-the-art approaches are not able to leverage the massively parallel processing capabilities of modern GPUs with close-to-peak performance. We present AnySeq/GPU-a sequence alignment library that augments the AnySeq1 library with a novel approach for accelerating dynamic programming (DP) alignment on GPUs by minimizing memory accesses using warp shuffles and half-precision arithmetic. Our implementation is based on the AnyDSL compiler framework which allows for convenient zero-cost abstractions through guaranteed partial evaluation. We show that our approach achieves over 80% of the peak performance on both NVIDIA and AMD GPUs thereby outperforming the GPU-based alignment libraries AnySeq1, GASAL2, ADEPT, and NVBIO by a factor of at least 3.6 while achieving a median speedup of 19.2x over these tools across different alignment scenarios and sequence lengths when running on the same hardware. This leads to throughputs of up to 1.7 TCUPS (tera cell updates per second) on an NVIDIA GV100, up to 3.3 TCUPS with half-precision arithmetic on a single NVIDIA A100, and up to 3.8 TCUPS on an AMD MI100.

preprint2022arXiv

High-Performance Flexible All-Perovskite Tandem Solar Cells with Reduced VOC-Deficit in Wide-Bandgap Subcell

Among various types of perovskite-based tandem solar cells (TSCs), all-perovskite TSCs are of particular attractiveness for building- and vehicle-integrated photovoltaics, or space energy areas as they can be fabricated on flexible and lightweight substrates with a very high power-to-weight ratio. However, the efficiency of flexible all-perovskite tandems is lagging far behind their rigid counterparts primarily due to the challenges in developing efficient wide-bandgap (WBG) perovskite solar cells on the flexible substrates as well as the low open-circuit voltage (VOC) in the WBG perovskite subcell. Here, we report that the use of self-assembled monolayers as hole-selective contact effectively suppresses the interfacial recombination and allows the subsequent uniform growth of a 1.77 eV WBG perovskite with superior optoelectronic quality. In addition, we employ a post-deposition treatment with 2-thiopheneethylammonium chloride to further suppress the bulk and interfacial recombination, boosting the VOC of the WBG top cell to 1.29 V. Based on this, we present the first proof-of-concept four-terminal all-perovskite flexible TSC with a PCE of 22.6%. When integrating into two-terminal flexible tandems, we achieved 23.8% flexible all-perovskite TSCs with a superior VOC of 2.1 V, which is on par with the VOC reported on the 28% all-perovskite tandems grown on the rigid substrate.

preprint2022arXiv

Quality at a Glance: An Audit of Web-Crawled Multilingual Datasets

With the success of large-scale pre-training and multilingual modeling in Natural Language Processing (NLP), recent years have seen a proliferation of large, web-mined text datasets covering hundreds of languages. We manually audit the quality of 205 language-specific corpora released with five major public datasets (CCAligned, ParaCrawl, WikiMatrix, OSCAR, mC4). Lower-resource corpora have systematic issues: At least 15 corpora have no usable text, and a significant fraction contains less than 50% sentences of acceptable quality. In addition, many are mislabeled or use nonstandard/ambiguous language codes. We demonstrate that these issues are easy to detect even for non-proficient speakers, and supplement the human audit with automatic analyses. Finally, we recommend techniques to evaluate and improve multilingual corpora and discuss potential risks that come with low-quality data releases.

preprint2020arXiv

AnySeq: A High Performance Sequence Alignment Library based on Partial Evaluation

Sequence alignments are fundamental to bioinformatics which has resulted in a variety of optimized implementations. Unfortunately, the vast majority of them are hand-tuned and specific to certain architectures and execution models. This not only makes them challenging to understand and extend, but also difficult to port to other platforms. We present AnySeq - a novel library for computing different types of pairwise alignments of DNA sequences. Our approach combines high performance with an intuitively understandable implementation, which is achieved through the concept of partial evaluation. Using the AnyDSL compiler framework, AnySeq enables the compilation of algorithmic variants that are highly optimized for specific usage scenarios and hardware targets with a single, uniform codebase. The resulting domain-specific library thus allows the variation of alignment parameters (such as alignment type, scoring scheme, and traceback vs.~plain score) by simple function composition rather than metaprogramming techniques which are often hard to understand. Our implementation supports multithreading and SIMD vectorization on CPUs, CUDA-enabled GPUs, and FPGAs. AnySeq is at most 7% slower and in many cases faster (up to 12%) than state-of-the art manually optimized alignment libraries on CPUs (SeqAn) and on GPUs (NVBio).

preprint2016arXiv

Nonequilibrium mesoscopic conductance fluctuations as the origin of 1/f noise in epitaxial graphene

We investigate the 1/f noise properties of epitaxial graphene devices at low temperatures as a function of temperature, current and magnetic flux density. At low currents, an exponential decay of the 1/f noise power spectral density with increasing temperature is observed that indicates mesoscopic conductance fluctuations as the origin of 1/f noise at temperatures below 50 K. At higher currents, deviations from the typical quadratic current dependence and the exponential temperature dependence occur as a result of nonequilibrium conditions due to current heating. By applying the theory of Kubakaddi [S. S. Kubakaddi, Phys. Rev. B 79, 075417 (2009)], a model describing the 1/f noise power spectral density of nonequilibrium mesoscopic conductance fluctuations in epitaxial graphene is developed and used to determine the energy loss rate per carrier. In the regime of Shubnikov-de Haas oscillations a strong increase of 1/f noise is observed, which we attribute to an additional conductance fluctuation mechanism due to localized states in quantizing magnetic fields. When the device enters the regime of quantized Hall resistance, the 1/f noise vanishes. It reappears if the current is increased and the quantum Hall breakdown sets in.

preprint2015arXiv

Epitaxial graphene on SiC: Modification of structural and electron transport properties by substrate pretreatment

The electrical transport properties of epitaxial graphene layers are correlated with the SiC surface morphology. In this study we show by atomic force microscopy and Raman measurements that the surface morphology and the structure of the epitaxial graphene layers change significantly when different pretreatment procedures are applied to nearly on-axis 6H-SiC(0001) substrates. It turns out that the often used hydrogen etching of the substrate is responsible for undesirable high macro steps evolving during graphene growth. A more advantageous type of sub-nanometer stepped graphene layers is obtained with a new method: a high-temperature conditioning of the SiC surface in argon atmosphere. The results can be explained by the observed graphene buffer layer domains after the conditioning process which suppress giant step bunching and graphene step flow growth. The superior electronic quality is demonstrated by a less extrinsic resistance anisotropy obtained in nano-probe transport experiments and by the excellent quantization of the Hall resistance in low-temperature magneto-transport measurements. The quantum Hall resistance agrees with the nominal value (half of the von Klitzing constant) within a standard deviation of 4.5*10(-9) which qualifies this method for the fabrication of electrical quantum standards.

preprint2013arXiv

Probing relaxation times in graphene quantum dots

Graphene quantum dots are attractive candidates for solid-state quantum bits. In fact, the predicted weak spin-orbit and hyperfine interaction promise spin qubits with long coherence times. Graphene quantum dot devices have been extensively investigated with respect to their excitation spectrum, spin-filling sequence, and electron-hole crossover. However their relaxation dynamics remain largely unexplored. This is mainly due to challenges in device fabrication, in particular regarding the control of carrier confinement and the tunability of the tunnelling barriers, both crucial to experimentally investigate decoherence times. Here, we report on pulsed-gate transient spectroscopy and relaxation time measurements of excited states in graphene quantum dots. This is achieved by an advanced device design, allowing to tune the tunnelling barriers individually down to the low MHz regime and to monitor their asymmetry with integrated charge sensors. Measuring the transient currents through electronic excited states, we estimate lower limit of charge relaxation times on the order of 60-100 ns.

preprint2012arXiv

A Likely Close-In Low-Mass Stellar Companion to the Transitional Disk Star HD 142527

With the uniquely high contrast within 0.1" (Δmag(L') = 5-6.5 magnitudes) available using Sparse Aperture Masking (SAM) with NACO at VLT, we detected asymmetry in the flux from the Herbig Fe star HD 142527 with a barycenter emission situated at a projected separation of 88+/-5 mas (12.8+/-1.5 AU at 145 pc) and flux ratios in H, K, and L' of 0.016+/-0.007, 0.012+/-0.008, 0.0086+/-0.0011 respectively (3-σerrors) relative to the primary star and disk. After extensive closure-phase modeling, we interpret this detection as a close-in, low-mass stellar companion with an estimated mass of ~0.1-0.4 M_Sun. HD 142527 has a complex disk structure, with an inner gap imaged in both the near and mid-IR as well as a spiral feature in the outer disk in the near-IR. This newly detected low-mass stellar companion may provide a critical explanation of the observed disk structure.

preprint2011arXiv

HD 135344B: a young star has reached its rotational limit

We search for periodic variations in the radial velocity of the young Herbig star HD 135344B with the aim to determine a rotation period. We analyzed 44 high-resolution optical spectra taken over a time range of 151 days. The spectra were acquired with FEROS at the 2.2m MPG/ESO telescope in La Silla. The stellar parameters of HD 135344B are determined by fitting synthetic spectra to the stellar spectrum. In order to obtain radial velocity measurements, the stellar spectra have been cross-correlated with a theoretical template computed from determined stellar parameters. We report the first direct measurement of the rotation period of a Herbig star from radial-velocity measurements. The rotation period is found to be 0.16 d (3.9 hr), which makes HD 135344B a rapid rotator at or close to its break-up velocity. The rapid rotation could explain some of the properties of the circumstellar environment of HD 135344B such as the presence of an inner disk with properties (composition, inclination), that are significantly different from the outer disk.

preprint2011arXiv

Integrated quantized electronics: a semiconductor quantized voltage source

The Josephson effect in superconductors links a quantized output voltage Vout = f \cdot(h/2e) to the natural constants of the electron's charge e, Planck's constant h, and to an excitation frequency f with important applications in electrical quantum metrology. Also semiconductors are routinely applied in electrical quantum metrology making use of the quantum Hall effect. However, despite their broad range of further applications e.g. in integrated circuits, quantized voltage generation by a semiconductor device has never been obtained. Here we report a semiconductor quantized voltage source generating quantized voltages Vout = f\cdot(h/e). It is based on an integrated quantized circuit of a single electron pump operated at pumping frequency f and a quantum Hall device monolithically integrated in series. The output voltages of several \muV are expected to be scalable by orders of magnitude using present technology. The device might open a new route towards the closure of the quantum metrological triangle. Furthermore it represents a universal electrical quantum reference allowing to generate quantized values of the three most relevant electrical units of voltage, current, and resistance based on fundamental constants using a single device.