Background: Complete seal of the root canal system following its chemo-mechanical debridement plays a pivotal role for achieving successful endodontic treatment. This can be established by reducing the gaps between the core filling material and root canal wall. Aim: To assess and compare the dislocation resistance of root canals obturated with GuttaFusion® and TotalFill BC sealer versus single cone obturation technique and TotalFill BC sealer after instrumentation of the canals with WaveOne, ProTaper Next and ProTaper Universal system. Material and Method: Sixty extracted human permanent mandibular premolars were conducted in the current study. The teeth were decorated and left the root with 15mm length; the roots were divided randomly i
... Show MoreAbstract
The research aims to examine the relationship between psychological flow, psychological well-being, and self-management among a sample of fine artists in the Makkah region and its governorates. The research also aims to examine the mean group differences in psychological flow, psychological well-being, and self-management due to demographic variables (sex and years of practicing arts). The sample consists of (110) male and female fine artists. The descriptive correlational approach was performed to collect the data by using the psychological flow scale developed by Payne et al (2011), which was translated by the researcher, the Oxford happiness questionnaire developed by Hills and Argyle (2002), it has t
... Show MoreIn this research PbS and PbS:Cu films were prepered with thicknesses (0.85±0.05)?m and (0.55±0.5)?m deposit on glass and silicon substrate respectively using chemical spray pyrolysis technique with a substrate temperature 573K, from lead nitrate salt, thiourea and copper chloride. Using XRD we study the structure properties for the undoped and doped films with copper .The analysis reveals that the structure of films were cubic polycrystalline FCC with a preferred orientation along (200) plane for the undoped films and 1% doping with copper but the orientation of (111) plane is preferred with 5% doping with the rest new peaks of films and appeared because of doping. Surface topography using optical microscope were be checked, it was found
... Show MoreBackground. Material tribology has widely expanded in scope and depth and is extended from the mechanical field to the biomedical field. The present study aimed to characterize the nanocoating of highly pure (99.9%) niobium (Nb), tantalum (Ta), and vanadium (V) deposited on 316L stainless steel (SS) substrates which considered the most widely used alloys in the manufacturing of SS orthodontic components. To date, the coating of SS orthodontic archwires with Nb, Ta, and V using a plasma sputtering method has never been reported. Nanodeposition was performed using a DC plasma sputtering system with three different sputtering times (1, 2, and 3 hours). Results. Structural and elemental analyses were conducted on the deposited coating
... 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.