Baker's Yeast is an important additive among the substances, which improves bred quality, thus, a consideration has been made to study the conditions and parameters that affecting the production of the yeast in a batch fermenter experimentally and theoretically. Experimental runs were implemented in a 12-liter pilot-scale fermenter to predict the rate of growth and other parameters such as amount of additive consumed and the amount of heat generated. The process is modeled and performed using a computer programming prepped for this purpose, the model gave a good agreement comparing to the experimental work specially in the log phase.
Dynamic loads highly influence soil properties and may cause real damage to structures and buildings. This article reports the experimental results from 24 tests to study the settlement of flexible and rigid raft foundation with different embedment depth rested on dense sandy soil. A small scale building model of dimension 200*200 mm and 320 mm in height was performed with reinforced concrete raft foundation of 10 mm thickness for flexible raft and 23 mm for rigid raft, The shaking table technique was used to simulate the seismic effect, the shaker was sat to give three different excitation frequencies 1,2,and3 Hz and displacement amplitude equal to 13 mm, the foundation was placed at
This research examines aspects of Imam Al-Qurtubi's efforts in matters related to the topics of faith that he dealt with in his interpretation (the provisions of the provisions of the Qur’an); and it has been shown that Imam Al-Qurtubi in most of the doctrinal issues dealt with in his interpretation approximates the doctrine of the Sunnis of Ash'aris, Maturids and people of impact. He had responses to some of the teams, such as stereoscopic, karami, and Mu'tazilite, reinforcing the responses with transfer and mental evidence.
It was found that Imam Al-Qurtubi says that there is an increase in faith and a decrease in it, that the increase is through actions (so obedience increases and decreases in sin) and that the
Abstract Background: Dne of the key component of nasal tipplasty is effecter control of naral tip projection. Several cartilage grafts have been decreased for this purpose each had its own advantage and disadvantage. Aim: To evaluate using of double teostrut graft for controlling of tip projection. Patients and Methods: A total number of 170 patients were subjected to primary and secondary rhino plaster between January 2020 to January 2023. Those patients had double Teostrut banner graft for support of their nasal tip and maintaining tip projection after operation. Results: The follow period was ranging between 6-12 months. The shape of the nose was evaluating by patents vernal analogues scale. The average score for patients satisfaction wa
... 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.