SearcharxivSearch

arXiv subjects

Zhengwei Li

Publications and source records attributed to Zhengwei Li.

At least 19 recordsLinked to original sources

Development and characterization of a millimeter-wave cold load prototype

Superconducting transition-edge sensors (TESs) are crucial detectors for cosmic microwave background (CMB) observations and require stable and tunable millimeter-wave cold loads for optical-efficiency calibration. This work presents the design, fabrication, and preliminary characterization of a 4-20 K millimeter-wave cold load prototype intended for integration into the 1 K stage of a dilution refrigerator and subsequent 40/90 GHz CMB TES calibration experiments. Two absorber prototypes based on commercially available CR-110 and a Stycast 2850FT composite were fabricated and studied. Simulation results show that both absorber structures exhibit small predicted steady-state temperature gradients and low normal-incidence reflectance in the target frequency bands. Room-temperature S11 measurements were used only to screen low-reflectance cold load prototype, and the measured results generally agree with the electromagnetic simulations. The measured S11 of the Stycast 2850FT composite is comparable to that of the commercial absorber TK RAM. Additionally, to explore a more readily obtainable alternative absorber material, TIE280-25AB was preliminarily evaluated by measuring its electromagnetic parameters. Based on the measured parameters, the simulated S11 of the TIE280-25AB pyramidal absorber structure is comparable to those of CR-110 and the Stycast 2850FT composite over 33-110 GHz. These results identify CR-110 and the Stycast 2850FT composite as promising absorbers for subsequent cryogenic evaluation. The absolute low-temperature emissivity, effective radiation temperature, and TES calibration performance remain to be established through future cryogenic radiometric and TES based optical-power measurements.

astro-ph.IM

Design, Fabrication and Characterization of Microwave Multiplexing SQUID Prototype

The readout system with a high multiplexing ratio has become a bottleneck limiting the application of large-scale Transition Edge Sensor (TES) detector arrays. In recent years, the microwave superconducting quantum interference device (SQUID) multiplexer has emerged as a key technology for effectively reading large-scale cryogenic detector arrays. Currently, the microwave SQUID multiplexer is being adopted by an increasing number of experiments due to its capability of achieving a multiplexing ratio of 2000:1 within the readout bandwidth. In this study, we developed and fabricated a 32-channel microwave SQUID multiplexer prototype. And we measured 8 channels of the prototype. The measured equivalent noise current of the prototype reached 42 pA/$\sqrt{Hz}$.

physics.ins-det

A New Method for Identifying Contaminating Sources and Locating Target Sources through the Cross-Arm Features of Micro Pore Optics

The Pathfinder of the Type-A satellites in the Chasing All Transients Constellation Hunters (CATCH) space mission is equipped with Micro-Pore Optics (MPOs) and four single-pixel Silicon Drift Detectors (SDDs). Due to the lack of position resolution in an individual SDD, we propose a new method based on the cross-arms in the point spread function (PSF) of MPOs to enhance the satellite's capability in identifying contaminating sources and locating target sources. By placing one detector on each of the horizontal and vertical cross-arms on the focal plane, we can use the changes in the relative counts on the cross-arms detectors to deduce the location of the source. Simulated observations demonstrate that, for a target source with a flux of 1 Crab and an exposure time of 200 s, the cross-arms detectors can identify contaminating source with the same flux level at an off-axis angle larger than 8', and improve positioning accuracy to 6'. Furthermore, we extend the simulation study to CATCH Type-A, which plans to use an SDD array. In situations where sources exhibit the same flux of 1 Crab and the exposure time is merely 1 s, a 16x16 SDD array is capable of identifying contaminating source with an off-axis angle greater than 2.4' and can achieve a positioning precision of 1.8'.

astro-ph.IM

Beyond One-Thousandth Energy Resolution with an AlMn TES Detector

The superconducting Transition-Edge Sensor (TES) is a critical technology for next-generation X-ray spectrometers, known for its exceptional energy resolution. In the last decade, TESs based on AlMn alloy films have been extensively used in several cosmic microwave background (CMB) experiments. The advantages of simple fabrication process and easily tunable critical temperature make them an alternative to bilayer TESs. However, they have rarely been applied to X-ray detection until now. We developed an annular AlMn TES for X-ray detection and tested it in a dilution refrigerator with a Superconducting Quantum Interference Device (SQUID) amplifier, achieving an Full Width at Half Maximum (FWHM) of 12.1 +- 0.3 eV at 17.48 keV. To the best of our knowledge, this is the first demonstration of an AlMn TES achieving an energy resolution below 0.1%, highlighting its potential for high-resolution X-ray detection.

astro-ph.IM

Development of Low-Noise Two-stage dc-SQUID for TES Detector Readout

Direct-current superconducting quantum interference devices (dc-SQUIDs) are one of the most sensitive magnetic detectors. These sensors are extensively used in the readout of superconducting transition edge sensors (TESs), which are used for the detection of weak signals. A cosmic microwave background (CMB) polarization telescope operating in 22-48 GHz is currently under developing. The TESs calorimeter of the telescope will be readout by a time-division multiplexer (TDM) SQUID readout system. We develop a two-stage dc-SQUID amplifier circuit, comprising an input-stage SQUID with 4 SQUID cells and a series SQUID array (SSA) with 100 SQUID cells. This configuration has been shown to achieve extremely high signal gain while effectively controlling system noise. We assess the system noise at $300$ $mK$ in an adiabatic demagnetisation refrigerator (ADR). The the measured magnetic flux noise of the two-stage SQUID circuit system is approximately $0.3$ $μΦ_{0}/\sqrt{Hz}$ at $10$ $kHz$. The current noise equivalent to the input coil of input SQUID is about $2.4$ $pA/\sqrt{Hz}$. This result meets the low-noise readout requirements of the CMB TES and other applications with TES detectors.

physics.ins-det

Belobog: Move Language Fuzzing Framework For Real-World Smart Contracts

Move is a resource-oriented programming language designed for secure and verifiable smart contract development and has been widely used in managing billions of digital assets in blockchains, such as Sui and Aptos.Move features a strong static type system and explicit resource semantics to enforce safety properties such as the prevention of data races, invalid asset transfers, and entry vulnerabilities. However, smart contracts written in Move may still contain certain vulnerabilities that are beyond the reach of its type system. It is thus essential to validate Move smart contracts. Unfortunately, due to its strong type system, existing smart contract fuzzers are ineffective in producing syntactically or semantically valid transactions to test Move smart contracts. This paper introduces the first fuzzing framework, Belobog, for Move smart contracts. Belobog is type-aware and ensures that all generated and mutated transactions are well-typed. More specifically, for a target Move smart contract, Belobog first constructs a dependency graph based on Move's type system, and then generates or mutates a transaction based on the graph trace derived from the dependency graph. In order to overcome the complex checks in Move smart contracts, we further design and implement a concolic executor in Belobog. We evaluated Belobog on 109 real-world Move smart contract projects. The experimental results show that Belobog is able to detect 100% critical and 79% major vulnerabilities manually audited by human experts. We further selected two recent notorious incidents in the Move ecosystem, i.e., Cetus and Nemo. Belobog successfully reproduced full exploits for both of them, without any prior knowledge. Moreover, we applied Belobog on three ongoing auditing projects and found 2 critical, 2 major, and 3 medium new vulnerabilities, all acknowledged by the project developers.

cs.CR

Fabrication and characterization of AlMn alloy superconducting films for 0vbb experiments

Neutrinoless double-beta decay (0vbb) experiments constitute a pivotal probe for elucidating the characteristics of neutrinos and further discovering new physics. Compared to the neutron transmutation doped germanium thermistors (NTD-Ge) used in 0vbb experiments such as CUORE, transition edge sensors (TES) theoretically have a relatively faster response time and higher energy resolution. These make TES detectors good choice for next generation 0vbb experiments. In this paper, AlMn alloy superconducting films, the main components of TES, were prepared and studied. The relationship between critical temperature (Tc) and annealing temperature was established, and the impact of magnetic field on Tc was tested. The experimental results demonstrate that the Tc of AlMn film can be tuned in the required range of 10 - 20 mK by using the above methods, which is a key step for the application of AlMn TES in 0vbb experiment. In the test range, the Tc of AlMn film is sensitive to out-of-plane magnetic field but not to the in-plane magnetic field. Furthermore, we find that a higher annealing temperature results in a more uniform distribution of Mn ions in depth, which opens a new avenue for elucidating the underlying mechanism for tuning Tc.

hep-ex

Fabrication and Characterization of X-ray TES Detectors Based on Annular AlMn Alloy Films

AlMn alloy flms are widely fabricated into superconducting transition edge sensors (TESs) for the detection of cosmic microwave background radiation. However, the application in X-ray or gamma-ray detection based on AlMn TES is rarely reported. In this study, X-ray TES detectors based on unique annular AlMn flms are devel-oped. The fabrication processes of TES detectors are introduced in detail. The char-acteristics of three TES samples are evaluated in a dilution refrigerator. The results demonstrate that the I-V characteristics of the three annular TES detectors are highly consistent. The TES detector with the smallest absorber achieved the best energy resolution of 11.0 eV @ 5.9 keV, which is inferior to the theoretical value. The dis-crepancy is mainly attributed to the larger readout electronics noise than expected.

physics.ins-det

Development of 6-inch 80-170 GHz broadband silicon plated horn antenna arrays for primordial gravitational wave search

Searching for primordial gravitational wave in cosmic microwave background (CMB) polarization signal is one of the key topics in modern cosmology. Cutting-edge CMB telescopes requires thousands of pixels to maximize mapping speed. Using modular design, the telescope focal plane is simplified as several detector modules. Each module has hundreds of pixels including antenna arrays, detector arrays, and readout arrays. The antenna arrays, as the beam defining component, determine the overall optical response of the detector module. In this article, we present the developments of 6-inch broadband antenna arrays from 80GHz to 170GHz for the future IHEP focal plane module. The arrays are fabricated from 42 6-inch silicon wafers including 456 antennas, 7% more pixels than usual design. The overall in-band cross polarization is smaller than -20 dB and the in-band beam asymmetry is smaller than 10%, fulfilling the requirements for primordial gravitational wave search.

astro-ph.IM

The Sliding Flux Ramp Demodulation Algorithm with High Sampling Rate in Microwave SQUID Multiplexer

Microwave SQUID Multiplexing (uMUX) is a widely used technique in the low temperature detectors community as it offers high capacity of reading out large scale Transition-Edge Sensor (TES) arrays. In this paper, we propose a Sliding Flux Ramp Demodulation (SFRD) algorithm for uMUX readout system. It can achieve a sampling rate in the order of MHz while maintaining a multiplexing ratio about one thousand. Advancing of this large array readout technique makes it possible to observe scientiffc objects with improved time resolution and event count rate. This will be highly helpful for TES calorimeters in X-ray applications, such as X-ray astrophysics missions.

hep-ex

Ground calibration and network of the first CATCH pathfinder

The Chasing All Transients Constellation Hunters (CATCH) space mission is focused on exploring the dynamic universe via X-ray follow-up observations of various transients. The first pathfinder of the CATCH mission, CATCH-1, was launched on June 22, 2024, alongside the Space-based multiband astronomical Variable Objects Monitor (SVOM) mission. CATCH-1 is equipped with narrow-field optimized Micro Pore Optics (MPOs) featuring a large effective area and incorporates four Silicon Drift Detectors (SDDs) in its focal plane. This paper presents the system calibration results conducted before the satellite integration. Utilizing the data on the performance of the mirror and detectors obtained through the system calibration, combined with simulated data, the ground calibration database can be established. Measuring the relative positions of the mirror and detector system, which were adjusted during system calibration, allows for accurate installation of the entire satellite. Furthermore, the paper outlines the operational workflow of the ground network post-satellite launch.

astro-ph.IM

Cryogenic microwave performance of silicon nitride and amorphous silicon deposited using low-temperature ICPCVD

Fabrication of dielectrics at low temperature is required for temperature-sensitive detectors. For superconducting detectors, such as transition edge sensors and kinetic inductance detectors, AlMn is widely studied due to its variable superconducting transition temperature at different baking temperatures. Experimentally only the highest baking temperature determines AlMn transition temperature, so we need to control the wafer temperature during the whole process. In general, the highest process temperature happens during dielectric fabrication. Here, we present the cryogenic microwave performance of Si$_{3}$N$_{4}$, SiN$_{x}$ and $α$-Si using ICPCVD at low temperature of 75 $^{\circ}$C. The dielectric constant, internal quality factor and TLS properties are studied using Al parallel plate resonators.

physics.ins-det

Simulation Studies for the First Pathfinder of the CATCH Space Mission

The Chasing All Transients Constellation Hunters (CATCH) space mission is an intelligent constellation consisting of 126 micro-satellites in three types (A, B, and C), designed for X-ray observation with the objective of studying the dynamic universe. Currently, we are actively developing the first Pathfinder (CATCH-1) for the CATCH mission, specifically for type-A satellites. CATCH-1 is equipped with Micro Pore Optics (MPO) and a 4-pixel Silicon Drift Detector (SDD) array. To assess its scientific performance, including the effective area of the optical system, on-orbit background, and telescope sensitivity, we employ the Monte Carlo software Geant4 for simulation in this study. The MPO optics exhibit an effective area of $41$ cm$^2$ at the focal spot for 1 keV X-rays, while the entire telescope system achieves an effective area of $29$ cm$^2$ at 1 keV when taking into account the SDD detector's detection efficiency. The primary contribution to the background is found to be from the Cosmic X-ray Background. Assuming a 625 km orbit with an inclination of $29^\circ$, the total background for CATCH-1 is estimated to be $8.13\times10^{-2}$ counts s$^{-1}$ in the energy range of 0.5--4 keV. Based on the background within the central detector and assuming a Crab-like source spectrum, the estimated ideal sensitivity could achieve $1.9\times10^{-12}$ erg cm$^{-2}$ s$^{-1}$ for an exposure of 10$^4$ s in the energy band of 0.5--4 keV. Furthermore, after simulating the background caused by low-energy charged particles near the geomagnetic equator, we have determined that there is no need to install a magnetic deflector.

astro-ph.IM

Line identification of extreme ultraviolet spectra from aluminum ions in EAST Tokamak plasmas

Extreme ultraviolet (EUV) spectra emitted from aluminum in the 5-340 A wavelength range were observed in Experimental Advanced Superconducting Tokamak (EAST) discharges. Several spectral lines from aluminum ions with different degrees of ionization were successfully observed with sufficient spectral intensities and resolutions using three fast-time-response EUV spectrometers. The line identification uses three independent state-of-art computational codes for the atomic structure calculations, which provide the wavelengths and radiative transition probabilities rate coefficients. These programs are HULLAC (Hebrew University - Lawrence Livermore Atomic Code), AUTOSTRUCTURE, and FAC (Flexible Atomic Code). Using three different codes allows us to resolve some ambiguities in identifying certain spectral lines and assess the validity of the theoretical predictions.

physics.plasm-ph

A ThermalKinetic Inductance Detectors Pixel Design for Cosmic Microwave Background Observations at 90/150 GHz bands

The highly sensitive millimeter-wave telescope is an important tool for accurate measurement of Cosmic Microwave Background (CMB) radiation, and its core component is a detector array located in a cryogenic focal plane. The feasibility of utilizing thermal kinetic inductance detectors (TKIDs) for CMB observations has been demonstrated. We propose a pixel design of TKIDs for observing CMB through atmospheric windows for observations in the 90/150 GHz bands. Assuming lossless dielectric, the coupling efficiency of a single pixel is around 90%. This pixel design will be utilized for future large-scale TKIDs array designs for CMB observations.

astro-ph.IM

Insight-HXMT on-orbit thermal control status and thermal deformation impact analysis

Purpose: The Hard X-ray Modulation Telescope is China's first X-ray astronomy satellite launched on June 15th, 2017, dubbed Insight-HXMT. Active and passive thermal control measures are employed to keep devices at suitable temperatures. In this paper, we analyzed the on-orbit thermal monitoring data of the first 5 years and investigated the effect of thermal deformation on the point spread function (PSF) of the telescopes. Methods: We examined the data of the on-orbit temperatures measured using 157 thermistors placed on the collimators, detectors and their support structures and compared the results with the thermal control requirements. The thermal deformation was evaluated by the relative orientation of the two star sensors installed on the main support structure. its effect was estimated with evolution of the PSF obtained with calibration scanning observations of the Crab nebula. Conclusion: The on-orbit temperatures met the thermal control requirements thus far, and the effect of thermal deformation on the PSF was negligible after the on-orbit pointing calibration.

astro-ph.IM

In-orbit background simulation of a type-B CATCH satellite

The Chasing All Transients Constellation Hunters (CATCH) space mission plans to launch three types of micro-satellites (A, B, and C). The type-B CATCH satellites are dedicated to locating transients and detecting their time-dependent energy spectra. A type-B satellite is equipped with lightweight Wolter-I X-ray optics and an array of position-sensitive multi-pixel Silicon Drift Detectors. To optimize the scientific payloads for operating properly in orbit and performing the observations with high sensitivities, this work performs an in-orbit background simulation of a type-B CATCH satellite using the Geant4 toolkit. It shows that the persistent background is dominated by the cosmic X-ray diffuse background and the cosmic-ray protons. The dynamic background is also estimated considering trapped charged particles in the radiation belts and low-energy charged particles near the geomagnetic equator, which is dominated by the incident electrons outside the aperture. The simulated persistent background within the focal spot is used to estimate the observation sensitivity, i.e. 4.22$\times$10$^{-13}$ erg cm$^{-2}$ s$^{-1}$ with an exposure of 10$^{4}$ s and a Crab-like source spectrum, which can be utilized further to optimize the shielding design. The simulated in-orbit background also suggests that the magnetic diverter just underneath the optics may be unnecessary in this kind of micro-satellites, because the dynamic background induced by charged particles outside the aperture is around 3 orders of magnitude larger than that inside the aperture.

astro-ph.IM

CATCH: Chasing All Transients Constellation Hunters Space Mission

In time-domain astronomy, a substantial number of transients will be discovered by multi-wavelength and multi-messenger observatories, posing a great challenge for follow-up capabilities. We have thus proposed an intelligent X-ray constellation, the Chasing All Transients Constellation Hunters (CATCH) space mission. Consisting of 126 micro-satellites in three types, CATCH will have the capability to perform follow-up observations for a large number of different types of transients simultaneously. Each satellite in the constellation will carry lightweight X-ray optics and use a deployable mast to increase the focal length. The combination of different optics and detector systems enables different types of satellites to have multiform observation capabilities, including timing, spectroscopy, imaging, and polarization. Controlled by the intelligent system, different satellites can cooperate to perform uninterrupted monitoring, all-sky follow-up observations, and scanning observations with a flexible field of view (FOV) and multi-dimensional observations. Therefore, CATCH will be a powerful mission to study the dynamic universe. Here, we present the current design of the spacecraft, optics, detector system, constellation configuration and observing modes, as well as the development plan.

astro-ph.IM