<p>The demand for internet applications has increased rapidly. Providing quality of service (QoS) requirements for varied internet application is a challenging task. One important factor that is significantly affected on the QoS service is the transport layer. The transport layer provides end-to-end data transmission across a network. Currently, the most common transport protocols used by internet application are TCP (Transmission Control Protocol) and UDP (User Datagram Protocol). Also, there are recent transport protocols such as DCCP (data congestion control protocol), SCTP (stream congestion transmission protocol), and TFRC (TCP-friendly rate control), which are in the standardization process of Internet Engineering Task Force (IETF). In this paper, we evaluate the performance of UDP, DCCP, SCTP and TFRC protocols for different traffic flows: data transmission, video traffic, and VOIP in wired networks. The performance criteria used for this evaluation include throughput, end to end delay, and packet loss rate. Well-known network simulator NS-2 used to implement the UDP, DCCP, SCTP, and TFRC protocols performance comparison. Based on the simulation results, the performance throughput of SCTP and TFRC is better than UDP. Moreover, DCCP performance is superior SCTP and TFRC in term of end-to-end delay.</p>
PDBN Rashid, International Journal of Development in Social Sciences and Humanities, 2023
The researcher studies and explains the content of some pictures that are published in al-Mada newspaper. The research is important as it deals with a topic that has a relation with visual culture and its role to transfer the press letter to the audience. The researcher finds that cartoonist exposed the security services through important people who have a major role in state policy and reveals the level of corruption and the weak treatments for this phenomenon and its reflection on the whole society and individuals. In addition to that, cartoonists try to encourage the public for going on the peaceful demonstrations since it is a good tool to make pressure on the government to punish the corrupts.
The research is concerned about studying the absorption spectrum of the solution coumarin dye C47. The chloroform solvent was used with C47 dye in three different concentrations 10-4, 10-5 and 10-6 M. The laser dye solution was prepared by dissolving the required amount of dye in chloroform alcohol, while studying absorption spectrum before and after irradiation with gamma ray by cobalt-60 source 60Co at exposure time, which are 0, 4, 6 and 18 hours with different absorbed doses 0, 136, 204 and 612 Gy. The results show that red shift in the absorption spectrum was increased by increasing the concentration of laser dye solutions , while the increase of gamma dose led to increase the red shift after irradiation, as the exposure period and irr
... Show MoreThis paper identifies and describes the textual densities of ideational metaphors through the application of GM theory (Halliday, 1994) to the textual analysis of two twentieth century English short stories: one American (The Mansion (1910-11), by Henry Jackson van Dyke Jr.), and one British (Home (1951), by William Somerset Maugham). One aim is to get at textually verifiable statistical evidence that attests to the observed dominance of GM nominalization in academic and scientific texts, rather than to fiction (e.g. Halliday and Martin (1993). Another aim is to explore any significant differentiation in GM’s us by the two short- story writers. The research has been carried out by identifying, describing, and statistically analysi
... Show MorePumping a BBO crystal by a violet diode laser with a wavelength of (405 nm) output power of (24 mW) and a line width of (3nm) was employed to generate entangled photons with a wavelength of 810 nm by achieving type II phase matching conditions.The coincidence count rate obtained in this experiment was in the range of (18000) counts/s. Two BBO crystals with different thicknesses of (4 mm and 2 mm) were tested, where maximum count rates of about (18000) counts/s was obtained with a (5*5*2) mm BBO crystal where the short coherence time for the pumping source was tolerated by using shorter BBO crystals. Also, the effect of compensating crystal on the walk-off effect was studied. The coincidence count rates were increased by using these crystal
... Show More
Water Quality Index (WQI) as a tool to assess the water quality status provides advice related to the use of water quality monitoring data and it is a way for combining the complex water quality data into a single value or single statement.The present study was conducted on Al- Hilla river in the middle of Iraq from August 2012 to July 2013 at five selected stations in the river, from Al- Musaib city to Al- Hashimya at the south of Hilla to determine its suitability for aquatic environment (GWQI), drinking water (PWSI) and irrigation (IWQI).This index offers a useful representation of the overall quality of water for public or any intended use as well as indicating pollution, water quality management, and decision making. According to th
... Show MoreA Novel artificial neural network (ANN) model was constructed for calibration of a multivariate model for simultaneously quantitative analysis of the quaternary mixture composed of carbamazepine, carvedilol, diazepam, and furosemide. An eighty-four mixing formula where prepared and analyzed spectrophotometrically. Each analyte was formulated in six samples at different concentrations thus twentyfour samples for the four analytes were tested. A neural network of 10 hidden neurons was capable to fit data 100%. The suggested model can be applied for the quantitative chemical analysis for the proposed quaternary mixture.
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.