Ground-based active optical sensors (GBAOS) have been successfully used in agriculture to predict crop yield potential (YP) early in the season and to improvise N rates for optimal crop yield. However, the models were found weak or inconsistent due to environmental variation especially rainfall. The objectives of the study were to evaluate if GBAOS could predict YP across multiple locations, soil types, cultivation systems, and rainfall differences. This study was carried from 2011 to 2013 on corn (Zea mays L.) in North Dakota, and in 2017 in potatoes in Maine. Six N rates were used on 50 sites in North Dakota and 12 N rates on two sites, one dryland and one irrigated, in Maine. Two active GBAOS used for this study were GreenSeeker and Holland Scientific Crop Circle Sensor ACS 470 (HSCCACS-470) and 430 (HSCCACS-430). Rainfall data, with or without including crop height, improved the YP models in term of reliability and consistency. The polynomial model was relatively better compared to the exponential model. A significant difference in the relationship between sensor reading multiplied by rainfall data and crop yield was observed in terms of soil type, clay and medium textured, and cultivation system, conventional and no-till, respectively, in the North Dakota corn study. The two potato sites in Maine, irrigated and dryland, performed differently in terms of total yield and rainfall data helped to improve sensor YP models. In conclusion, this study strongly advocates the use of rainfall data while using sensor-based N calculator algorithms.
The plant Conyza canadensis, which belongs to Asteraceae (Compositae) family and known as Canadian horseweed. It was used as traditional medicine in China, Pakistan, India, and Africa for the treatment of various diseases causing by bacteria, fungi, or viruses. The plant has antimicrobial, antioxidant, anticoagulant, anti-inflammatory, and anticancer pharmacological activity. This study provides the first phytochemical investigation of the plant in Iraq and is concerned with extraction, fractionation, isolation, and purification of some of the important phytochemicals detected in the plant-like phenolic acids, flavonoids, and alkaloids. Also, the literature survey has revealed that the plant has a substantial antimicrobial activity, so it w
... Show More
This research aims at investigating pupils’ ability in using discourse markers which are identified in the English textbooks of secondary schools. Four texts are chosen from third intermediate class. The four texts are short stories of different topics.
This research hypothesizes that there are no statistical significant differences among Iraqi intermediate pupils’ ability in using textual
... Show MoreValue Engineering is an analytical study on projects or services using a specific procedure and a multidisciplinary working group, works for the identification and classification of the project functions; either for a better perfuming of these functions or to lessen the total project cost or the two together. Value Engineering main aim is on finding innovative alternatives, without effecting the basic requirements of the project, its methodology based on the functional balancing between the three elements of production "performance, quality and cost". This methodology based on the "functional analysis", had shown high possibilities in solving any problem facing the production procedure , achieve better investment for available re
... Show MoreThe objective of the present paper is to examine the effect of Recycled Asphalt Pavement (RAP) on marshall properties and indirect tensile strength of HMA through experimental investigation. A mixture with 0% RAP was used as a control mix to evaluate the properties of mixes with 5%, 10%, and 15% RAP. One type of RAP was brought from Bab Al-moadam’s road in Baghdad for this purpose. The experimental testing program included Marshall and Indirect Tensile Strength tests. The results indicated that the bulk density, flow and VFA increase with the increasing of the percentage of RAP, while increasing in RAP results decreases in VTM and VMA values. Furthermore, the stability is changed from 10.1 kN for the control mix to12, 13.6 and 11.7 kN
... 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.