In this work a study and calculation of the normal approach between two bodies, spherical and rough flat surface, had been conducted by the aid of image processing technique. Four kinds of metals of different work hardening index had been used as a surface specimens and by capturing images of resolution of 0.006565 mm/pixel a good estimate of the normal approach may be obtained the compression tests had been done in strength of material laboratory in mechanical engineering department, a Monsanto tensometer had been used to conduct the indentation tests.
A light section measuring equipment microscope BK 70x50 was used to calculate the surface parameters of the texture profile like standard deviation of asperity peak heights, centre lin
The purpose of the current research is to identify the reality and applicability of the entrepreneurial approach in its dimensions (creative, proactive, independent, risk tolerant, offensive) and its impact on the success factors of the project (organizational commitment, communication, project team, project monitoring) Access to information, treatment, storage), which is a significant and important link in the success and development of industrial projects with the possibility of studying and analyzing the provision of the appropriate environment for this.
the research started from a problem expressed by a number of intellectual and practical questions aimed at answering them as well as To answer a
... Show MoreCosmetic products contain variable amounts of nutrients that support microbial growth. Most contaminants in cosmetic products include bacteria such as Staphylococcus, Pseudomonas, Klebsiella, Achromobacter and Alcaligenes. Contaminated water is a likely source of organisms found in cosmetic products. Products such as shampoo, hand and body lotion, facial cleanser, and liquid soaps were analyzed. In this study, out of 60 cosmetic products analyzed, 26.4% were found to be contaminated. Most of the contamination was from bacteria and no fungal contamination was detected. The highest level o
... Show MoreCountries have faced the challenges of high levels of public debt and seek to define the optimum limits to reduce risks to which the financial system can be exposed and its impact on the economy as a whole. Hence the importance of research in studying the impact of internal and external public debt components on indicators of stability of the financial system for the period 2005-2017 for the purpose of knowing the extent of the financial stability indicators response to the high level of the public debt from its optimum ratio, as the aim of the research is to estimate and analyze the dynamic relationship of short and long term between the components of public debt and indicators of financial stability using the (ARDL) model that
... Show MoreThis study tackles the contribution of the environmental audit in achieving the sustainability of the environmental balance in the Sudanese business environment. The study aimed at clarifying the role of environmental auditing in supporting sustainable development, and to recognize the role of environmental audit in urging businesses to abide by environmental protection. It also shows how effective the environmental audit reports are, in providing the reliable data for the concerned authorities, in order to use it in making the decisions that would help in the sustainability of the environmental balance. To achieve the goals of the study, a questionnaire was developed and distributed to the registered chartered accountants in Sud
... Show MoreAnaerobic digestion is a technology widely used for treatment of organic waste for biogas production as a source for clean energy. In this study, poultry house wastes (PHW) material was examined as a source for biogas production. The effects of inoculum addition, pretreatment of the substrate, and temperature on the biogas production were taken into full consideration. Results revealed that the effect of inoculum addition was more significant than the alkaline pretreatment of raw waste materials. The biogas recovery from inoculated waste materials exceeds its production from wastes without inoculation by approximately 70% at mesophilic conditions. Whereby, the increase of biogas recovery from pretreated wastes was by 20% higher than its
... Show MoreLaurylamine hydrochloride CH3(CH2)11 NH3 – Cl has been chosen from cationic surfactants to produce secondary oil using lab. model shown in fig. (1). The relationship between interfacial tension and (temperature, salinity and solution concentration) have been studied as shown in fig. (2, 3, 4) respectively. The optimum values of these three variables are taken (those values that give the lowest interfacial tension). Saturation, permeability and porosity are measured in the lab. The primary oil recovery was displaced by water injection until no more oil can be obtained, then laurylamine chloride is injected as a secondary oil recovery. The total oil recovery is 96.6% or 88.8% of the residual oil has been recovered by this technique as shown
... Show MoreRoot-finding is an oldest classical problem, which is still an important research topic, due to its impact on computational algebra and geometry. In communications systems, when the impulse response of the channel is minimum phase the state of equalization algorithm is reduced and the spectral efficiency will improved. To make the channel impulse response minimum phase the prefilter which is called minimum phase filter is used, the adaptation of the minimum phase filter need root finding algorithm. In this paper, the VHDL implementation of the root finding algorithm introduced by Clark and Hau is introduced.
VHDL program is used in the work, to find the roots of two channels and make them minimum phase, the obtained output results are
A 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.