Theoretical spectroscopic study of Beryllium Oxide has been carried out, Boltzmann distribution of P, Q and R branches in the range of (0<J<13) at temperature 4200K for (0-0) band for electronic transitions B1Σ+-A1Π and B1Σ-X1Σ. The Boltzmann distribution of these branches has a maximum values at equal J approximately while the values of relative population are different. For the B1Σ+- X1Σ+ transition the branch's lines extend towards lower wavenumber. This is because (Bv'-Bv") value is negative, i.e Bv'< Bv" For B1Σ+-A1Π transition branch's lines extend towards higher wave number .This is because (Bv'-Bv") value is positive, i.e. Bv'> Bv".
Anthropogenic activities cause soil pollution with different serious pollutants, such as polycyclic aromatic hydrocarbon (PAHs) compounds. This study assessed the contamination of PAHs in soil samples collected from 30 sites divided into eight groups (residential areas, oil areas, agricultural areas, roads, petrol stations, power plants, public parks and electrical generators) in Basrah city-Iraq during 2019-2020. The soil characteristics including (moisture, pH, EC and TOC) were measured. Results showed the following ranges (soil moisture (0.03-0.18%),pH (6.90-8.16), EC (2.48-104.80) mS/cm and TOC (9.90-20.50%)). Gas Chromatography (GC) was used to measure PAHs in extracted soil samples. The total PAH range (499.96 - 5864.86) ng/g dr
... Show MoreUropathogenic specific protein is a genotoxic protein targeting the DNA, leading to mutations and modifications in the normal cell's DNA and subsequently, cancer development. This study aims to determine the prevalence of the usp gene in Uropathogenic Escherichia coli isolated from females with urinary tract infections and study its correlation with biofilm formation. One hundred and five urine specimens were collected from female patients (20 to 55 years old) with urinary tract infections attending hospitals. Traditional laboratory methods using selective and differential culture media were used for initial bacterial isolation and identification, and molecular techniques that targeted a segment of the 16SrRNA gene with a specific primer pa
... Show MoreElectronic University Library: Reality and Ambition Case Study Central Library of Baghdad University
in this paper copper oxide (cuO thin films were prepared by the method of vacum thermal evaporation a pressure.
The research utilizes data produced by the Local Urban Management Directorate in Najaf and the imagery data from the Landsat 9 satellite, after being processed by the GIS tool. The research follows a descriptive and analytical approach; we integrated the Markov chain analysis and the cellular automation approach to predict transformations in city structure as a result of changes in land utilization. The research also aims to identify approaches to detect post-classification transformations in order to determine changes in land utilization. To predict the future land utilization in the city of Kufa, and to evaluate data accuracy, we used the Kappa Indicator to determine the potential applicability of the probability matrix that resulted from
... Show MoreAstronomers have known since the invention of the telescope that atmospheric turbulence affects celestial images. So, in order to compensate for the atmospheric aberrations of the observed wavefront, an Adaptive Optics (AO) system has been introduced. The AO can be arranged into two systems: closedloop and open-loop systems. The aim of this paper is to model and compare the performance of both AO loop systems by using one of the most recent Adaptive Optics simulation tools, the Objected-Oriented Matlab Adaptive Optics (OOMAO). Then assess the performance of closed and open loop systems by their capabilities to compensate for wavefront aberrations and improve image quality, also their effect by the observed optical bands (near-infrared band
... Show MoreSilver sulfide and the thin films Ag2Se0.8Te0.2 and Ag2Se0.8S0.2 created by the thermal evaporation process on glass with a thickness of 350 nm were examined for their structural and optical properties. These films were made at a temperature of 300 K. According to the X-ray diffraction investigation, the films are polycrystalline and have an initial orthorhombic phase. Using X-ray diffraction research, the crystallization orientations of Ag2Se and Ag2Se0.8Te0.2 & Ag2Se0.8S0.2 (23.304, 49.91) were discovered (XRD). As (Ag2Se and Ag2Se0.8Te0.2 & Ag2Se0.8S0.2) absorption coefficient fell from (470-774) nm, the optical band gap increased (2.15 & 2 & 2.25eV). For instance, the characteristics of thin films made of Ag2Se0.8Te0.2 and Ag2Se0.8S0.2
... Show MoreA skip list data structure is really just a simulation of a binary search tree. Skip lists algorithm are simpler, faster and use less space. this data structure conceptually uses parallel sorted linked lists. Searching in a skip list is more difficult than searching in a regular sorted linked list. Because a skip list is a two dimensional data structure, it is implemented using a two dimensional network of nodes with four pointers. the implementation of the search, insert and delete operation taking a time of upto . The skip list could be modified to implement the order statistic operations of RANKand SEARCH BY RANK while maintaining the same expected time. Keywords:skip list , parallel linked list , randomized algorithm , rank.