Mersing is one of the places that have the potential for wind power development in Malaysia. Researchers often suggest it as an ideal place for generating electricity from wind power. However, before a location is chosen, several factors need to be considered. By analyzing the location ahead of time, resource waste can be avoided and maximum profitability to various parties can be realized. For this study, the focus is to identify the distribution of the wind speed of Mersing and to determine the optimal average of wind speed. This study is critical because the wind speed data for any region has its distribution. It changes daily and by season. Moreover, no determination has been made regarding selecting the average wind speed used for wind studies. The wind speed data is averaged to 1, 10, 30, and 60 minutes and used to find the optimal wind speed average. This study used Kolmogorov-Smirnov and Chi-Square as the goodness of fit. The finding shows that the wind speed distribution in Mersing varies according to the time average used and the best fit distribution is Gen. Gamma. In contrast, the optimal average wind speed is 10 minutes due to the highest similarity results with 1-minute data. These affect the reliability of the finding, accuracy of the estimation and decisions made. Therefore, the implementation of this study is significant so that the wind distribution in a particular area is more accurate.
Bentonite is widely used in industrial applications. The present study reports the effect of adding different weights of ZnO to the Iraqi bentonite, on surface area, pore volume and real density. These surface properties were evaluated for pure and modified bentonite. The modification was made by adding different ZnO weights such as; ( 0.5%, 1%, 5%, 10% ). The effect of heat exposing for all modified clay samples at 500 ?C have been also evaluated. The results show that the addition of 0.5% ZnO leads to increase the surface area percentage about 36%, increase pore volume percentage about 5.48% and increase the real density percentage about 27.116%. When the samples exposed to 500 ?C, their surface area and pore volumes have been decreased a
... Show MoreDesign sampling plan was and still one of most importance subjects because it give lowest cost comparing with others, time live statistical distribution should be known to give best estimators for parameters of sampling plan and get best sampling plan.
Research dell with design sampling plan when live time distribution follow Logistic distribution with () as location and shape parameters, using these information can help us getting (number of groups, sample size) associated with reject or accept the Lot
Experimental results for simulated data shows the least number of groups and sample size needs to reject or accept the Lot with certain probability of
... Show MoreSilver diamine fluoride (SDF) has shown effectiveness in hardening tooth structure and killing bacteria. Therefore, it can be used to prevent and arrest dental caries. Riva Star (SDF) treatment alone will stop cavities but will not reverse the cavitation. The Silver Modified Atraumatic Procedure, often known as Smart, is the optimum technique for regaining the tooth's structure and function. Glass ionomer was introduced in (1972) as a new material that has become one of the most widely used materials in restorative dentistry. By releasing fluoride ions, this material has a therapeutic impact on the surrounding tooth structure. Microleakage is the ingress of bacteria, its byproducts, toxins, chemicals, oral fluids, and ions between t
... Show MoreThe Turonian-Lower Companian succession at Majnoon Oil Field is represented by the Khasib, Tanuma, and Saadi formations. Four major paleoenvironments were recognized within the studied succession, there are: Shallow open marine environment, shoal environment, deep marine environment, and basinal environment. They reflect deposition on a carbonate platform of homoclinal ramp setting. The studied succession represents two second order supersequences (A) and (B). Supersequence (A) includes both the Khasib and Tanuma formations. The Saadi Formation represents cycle (B). These second order cycles can be divided each into two third order cycles, This subdivision may reflect the effect of eustacy being the major controlling factor of cycles dev
... Show MoreBackground: The use of the cone beam computed tomography for analysing the position of the greater palatine foramen in relation to various anatomical landmarks is crucial in dentistry. The aims of the current study, firstly is to determine the greater palatine foramen position in relation to various anatomical landmarks by using cone beam computed tomography and secondly is to make a comparison of the measurements according to side, gender, and age. Materials and methods: This prospective study included 60 Iraqi patients (28males and 32 females) who selected according to availability of Inclusion criteria, which include age range (21 - 60 years), with no dentofacial deformities or pathological lesion at the maxilla. All patients had inform
... Show MoreThe main goal of this work is to put a simple model of the spectral energy distribution of binary stars called WW Cha. This model is built up on the extracted data from various telescopes and archives for the target WW Cha stars and then analyzing them using a python environment. The result of the fitting proposes that there are two protoplanetary disks around the WW Cha star, with different physical properties for each disk, such as the size of the inner disk being 10 AU, while the size of the outer disk being 300 AU. The shape of the outer disk is a flaring disk not a flat disk according to the value of the power law for the surface density (1.5). The emission in the disk is caused by small amorphous olivine grains rangin
... Show MoreComputations of the relative permeability curves were made through their representation by two functions for wetting and nonwetting phases. Each function contains one parameter that controls the shape of the relative permeability curves. The values of these parameters are chosen to minimize an objective function, that is represented as a weighted sum of the squared differences between experimentally measured data and the corresponding data calculated by a mathematical model simulating the experiment. These data comprise the pressure drop across core samples and the recovery response of the displacing phase. Two mathematical models are constructed in this study to simulate incompressible, one-dimensional, two-phase flow. The first model d
... 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.