Search results for: Adnan N. Mian
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 122

Search results for: Adnan N. Mian

122 The Study on the Overall Protection of the Ancient Villages

Authors: Zhang Yu, Ding Yi

Abstract:

The discussion about elements of cultural heritage and their relevance among the ancient villages is comparably insufficient. The protection work is strongly influenced by touristic development and cultural gimmick, resulting in low protection efficiency and many omissions. Historical villages as the cultural settlement patterns bear a large number of heritage relics. They were regionally scattered with a clear characteristic of gathering. First of all, this study proposes the association and similarities of the forming mechanism between four historic cultural villages in Mian Mountain. Secondly, the study reveals that these villages own the strategic pass, underground passage, and the mountain barrier. Thirdly, based on the differentiated characteristics of villages’ space, the study discusses about the integrated conservation from three levels: the regional heritage conservation, the cultural line shaping, and the featured brand building.

Keywords: conservation, fortress, historical villages, Mian Moutain

Procedia PDF Downloads 138
121 Mechanistic Insights Into The Change Behavior; Its Relationship With Water Velocity, Nanoparticles, Gut Bacterial Composition, And Its Functional Metabolites

Authors: Mian Adnan Kakakhel, NIshita Narwal, Majid Rasta, Shi Xiaotao

Abstract:

The widespread use of nanoparticles means that they are significantly increasing in the aquatic ecosystem, where they are likely to pose threat to aquatic organism. In particular, the influence of nanoparticles exposure combined with varying water velocities on fish behavior remain poorly understood. Emerging evidences suggested a probable correlation between fish swimming behavior and gut bacterial dysbiosis. Therefore, the current study aimed to investigate the effects of nanomaterials in different water velocities on fish gut bacterial composition, which in results change in fish swimming behavior. The obtained findings showed that the contamination of nanoparticles was reduced as the velocity increased. However, the synergetic effects of nanoparticles and water velocity significantly (p < 0.05) decreased the bacterial composition, which plays a critical role in fish development, metabolism, digestion, enzymes production, and energy production such as Bacteroidetes and Firmicutes. This group of bacterial also support fish in swimming behavior by providing them a significant energy during movement. The obtained findings of this study suggested that the presence of nanoparticles in different water velocities have had a significant correlation with fish gut bacterial dysbiosis, as results the gut dysbiosis had been linked to the change in fish behavior. The study provides an important insight into the mechanisms by which the nanoparticles possibly affect the fish behavior.

Keywords: water velocities, fish behavior, gut bacteria, secondary metabolites, regulation

Procedia PDF Downloads 31
120 The Impacts Of Hydraulic Conditions On The Fate, Transport And Accumulation Of Microplastics Pollution In The Aquatic Ecosystems

Authors: Majid Rasta, Xiaotao Shi, Mian Adnan Kakakhel, Yanqin Bai, Lao Liu, Jia Manke

Abstract:

Microplastics (MPs; particles <5 mm) pollution is considered as a globally pervasive threat to aquatic ecosystems, and many studies reported this pollution in rivers, wetlands, lakes, coastal waters and oceans. In the aquatic environments, settling and transport of MPs in water column and sediments are determined by different factors such as hydrologic characteristics, watershed pattern, rainfall events, hydraulic conditions, vegetation, hydrodynamics behavior of MPs, and physical features of particles (shape, size and density). In the meantime, hydraulic conditions (such as turbulence, high/low water speed flows or water stagnation) play a key role in the fate of MPs in aquatic ecosystems. Therefore, this study presents a briefly review on the effects of different hydraulic conditions on the fate, transport and accumulation of MPs in aquatic ecosystems. Generally, MPs are distributed horizontally and vertically in aquatic environments. The vertical distribution of MPs in the water column changes with different flow velocities. In the riverine, turbulent flow causing from the rapid water velocity and shallow depth may create a homogeneous mixture of MPs throughout the water column. While low velocity followed by low-turbulent waters can lead to the low level vertical mixing of MP particles in the water column. Consequently, the high numbers of MPs are expected to be found in the sediments of deep and wide channels as well as estuaries. In contrast, observing the lowest accumulation of MP particles in the sediments of straights of the rivers, places with the highest flow velocity is understandable. In the marine environment, hydrodynamic factors (e.g., turbulence, current velocity and residual circulation) can affect the sedimentation and transportation of MPs and thus change the distribution of MPs in the marine and coastal sediments. For instance, marine bays are known as the accumulation area of MPs due to poor hydrodynamic conditions. On the other hand, in the nearshore zone, the flow conditions are highly complex and dynamic. Experimental studies illustrated that maximum horizontal flow velocity in the sandy beach can predict the accumulation of MPs so that particles with high sinking velocities deposit in the lower water depths. As a whole, it can be concluded that the transport and accumulation of MPs in aquatic ecosystems are highly affected by hydraulic conditions. This study provided information about the impacts of hydraulic on MPs pollution. Further research on hydraulics and its relationship to the accumulation of MPs in aquatic ecosystems is needed to increase insights into this pollution.

Keywords: microplastics pollution, hydraulic, transport, accumulation

Procedia PDF Downloads 27
119 BER Estimate of WCDMA Systems with MATLAB Simulation Model

Authors: Suyeb Ahmed Khan, Mahmood Mian

Abstract:

Simulation plays an important role during all phases of the design and engineering of communications systems, from early stages of conceptual design through the various stages of implementation, testing, and fielding of the system. In the present paper, a simulation model has been constructed for the WCDMA system in order to evaluate the performance. This model describes multiusers effects and calculation of BER (Bit Error Rate) in 3G mobile systems using Simulink MATLAB 7.1. Gaussian Approximation defines the multi-user effect on system performance. BER has been analyzed with comparison between transmitting data and receiving data.

Keywords: WCDMA, simulations, BER, MATLAB

Procedia PDF Downloads 546
118 STML: Service Type-Checking Markup Language for Services of Web Components

Authors: Saqib Rasool, Adnan N. Mian

Abstract:

Web components are introduced as the latest standard of HTML5 for writing modular web interfaces for ensuring maintainability through the isolated scope of web components. Reusability can also be achieved by sharing plug-and-play web components that can be used as off-the-shelf components by other developers. A web component encapsulates all the required HTML, CSS and JavaScript code as a standalone package which must be imported for integrating a web component within an existing web interface. It is then followed by the integration of web component with the web services for dynamically populating its content. Since web components are reusable as off-the-shelf components, these must be equipped with some mechanism for ensuring their proper integration with web services. The consistency of a service behavior can be verified through type-checking. This is one of the popular solutions for improving the quality of code in many programming languages. However, HTML does not provide type checking as it is a markup language and not a programming language. The contribution of this work is to introduce a new extension of HTML called Service Type-checking Markup Language (STML) for adding support of type checking in HTML for JSON based REST services. STML can be used for defining the expected data types of response from JSON based REST services which will be used for populating the content within HTML elements of a web component. Although JSON has five data types viz. string, number, boolean, object and array but STML is made to supports only string, number and object. This is because of the fact that both object and array are considered as string, when populated in HTML elements. In order to define the data type of any HTML element, developer just needs to add the custom STML attributes of st-string, st-number and st-boolean for string, number and boolean respectively. These all annotations of STML are used by the developer who is writing a web component and it enables the other developers to use automated type-checking for ensuring the proper integration of their REST services with the same web component. Two utilities have been written for developers who are using STML based web components. One of these utilities is used for automated type-checking during the development phase. It uses the browser console for showing the error description if integrated web service is not returning the response with expected data type. The other utility is a Gulp based command line utility for removing the STML attributes before going in production. This ensures the delivery of STML free web pages in the production environment. Both of these utilities have been tested to perform type checking of REST services through STML based web components and results have confirmed the feasibility of evaluating service behavior only through HTML. Currently, STML is designed for automated type-checking of integrated REST services but it can be extended to introduce a complete service testing suite based on HTML only, and it will transform STML from Service Type-checking Markup Language to Service Testing Markup Language.

Keywords: REST, STML, type checking, web component

Procedia PDF Downloads 217
117 A Green Analytical Curriculum for Renewable STEM Education

Authors: Mian Jiang, Zhenyi Wu

Abstract:

We have incorporated green components into existing analytical chemistry curriculum with the aims to present a more environment benign approach in both teaching laboratory and undergraduate research. These include the use of cheap, sustainable, and market-available material; minimized waste disposal, replacement of non-aqueous media; and scale-down in sample/reagent consumption. Model incorporations have covered topics in quantitative chemistry as well as instrumental analysis, lower division as well as upper level, and research in traditional titration, spectroscopy, electrochemical analysis, and chromatography. The green embedding has made chemistry more daily life relevance, and application focus. Our approach has the potential to expand into all STEM fields to make renewable, high-impact education experience for undergraduate students.

Keywords: green analytical chemistry, pencil lead, mercury, renewable

Procedia PDF Downloads 291
116 Effect of Leadership Style on Organizational Performance

Authors: Khadija Mushtaq, Mian Saqib Mehmood

Abstract:

This paper attempts to determine the impact of leadership style and learning orientation on organizational performance in Pakistan. A sample of 158 middle managers selected from sports and surgical factories from Sialkot. The empirical estimation is based on a multiple linear regression analysis of the relationship between leadership style, learning orientation and organizational performance. Leadership style is measure through transformational leadership and transactional leadership. The transformational leadership has insignificant impact on organizational performance. The transactional leadership has positive and significant relation with organizational performance. Learning orientation also has positive and significant relation with organizational performance. Linear regression used to estimate the relation between dependent and independent variables. This study suggests top manger should prefer continuous process for improvement for any change in system rather radical change.

Keywords: transformational leadership, transactional leadership, learning orientation, organizational performance, Pakistan

Procedia PDF Downloads 370
115 Influencing Factors of Residents’ Intention to Participate in the Governance of Old Community Renewal: A Case Study of Nanjing

Authors: Tiantian Gu, Dezhi Li, Mian Zhang, Ying Jiang

Abstract:

Considering the characteristics of residents’ participation in the governance of old community renewal (OCR), a theoretical model of the determinant of residents’ intention to participate in the governance of OCR has been built based on the theory of planned behavior. Seven old communities in Nanjing have been chosen as cases to conduct empirical analysis. The result indicates that participation attitude, subjective norm and perceived behavioral control have significant positive effects on residents’ intention to participate in the governance of the OCR. Recognition of the community, cognition of the OCR and perceived behavioral control have indirect positive effects on residents’ intention to participate in the OCR. In addition, the education level and the length of residence have positive effects on their participation intention, while the gender, age, and monthly income have little effect on it. The research result provides suggestions for the improvement of residents’ participation in the OCR.

Keywords: old community renewal, residents’ participation in governance, intention, theory of planned behavior

Procedia PDF Downloads 139
114 Efficiency and Factors Affecting Inefficiency in the Previous Enclaves of Northern Region of Bangladesh: An Analysis of SFA and DEA Approach

Authors: Md. Mazharul Anwar, Md. Samim Hossain Molla, Md. Akkas Ali, Mian Sayeed Hassan

Abstract:

After 68 years, the agreement between Bangladesh and India was ratified on 6 June 2015 and Bangladesh received 111 Indian enclaves. Millions of farm household lived in these previous enclaves, being detached from the mainland of the country, they were socially, economically and educationally deprived people in the world. This study was undertaken to compare of the Stochastic Frontier Analysis (SFA) and the constant returns to scale (CRS) and variable returns to scale (VRS) output-oriented DEA models, based on a sample of 300 farms from the three largest enclaves of Bangladesh in 2017. However, the aim of the study was not only to compare estimates of technical efficiency obtained from the two approaches, but also to examine the determinants of inefficiency. The results from both the approaches indicated that there is a potential for increasing farm production through efficiency improvement and that farmers' age, educational level, new technology dissemination and training on crop production technology have a significant effect on efficiency. The detection and measurement of technical inefficiency and its determinants can be used as a basis of policy recommendations.

Keywords: DEA approach, previous enclaves, SFA approach, technical inefficiency

Procedia PDF Downloads 93
113 Effect of Aeration on Bacterial Cellulose (BC) Production by Gluconacetobacter xylinus DSM46604 in Batch Fermentation

Authors: Azila Adnan, Giridhar R. Nair, Mark C. Lay, Janis E. Swan

Abstract:

The effect of aeration on bacterial cellulose (BC) production by Gluconacetobacter xylinus DSM46604 was studied in 5-L bioreactor. Four aeration rates were applied (0.3, 0.6, 1.0 and 1.5 vvm) in the fermentation media at constant agitation rate, 150 rpm. One vvm enhanced BC concentration (4.4 g/L) and productivity (0.44 g/L/day) while greater agitation rate (1.5 vvm) decreased BC concentration (4.0 g/L) and productivity (0.40 g/L/day).

Keywords: aeration, bacterial cellulose, fermentation, gluconacetobacter xylinus

Procedia PDF Downloads 394
112 A New Internal Architecture Based On Feature Selection for Holonic Manufacturing System

Authors: Jihan Abdulazeez Ahmed, Adnan Mohsin Abdulazeez Brifcani

Abstract:

This paper suggests a new internal architecture of holon based on feature selection model using the combination of Bees Algorithm (BA) and Artificial Neural Network (ANN). BA is used to generate features while ANN is used as a classifier to evaluate the produced features. Proposed system is applied on the Wine data set, the statistical result proves that the proposed system is effective and has the ability to choose informative features with high accuracy.

Keywords: artificial neural network, bees algorithm, feature selection, Holon

Procedia PDF Downloads 423
111 Levels of Toxic Metals in Different Tissues of Lethrinus miniatus Fish from Arabian Gulf

Authors: Muhammad Waqar Ashraf, Atiq A. Mian

Abstract:

In the present study, accumulation of eight heavy metals, lead (Pb), cadmium (Cd), manganese (Mn), copper (Cu), zinc (Zn), iron (Fe), nickel (Ni) and chromium (Cr)was determined in kidney, heart, liver and muscle tissues of Lethrinus miniatus fish caught from Arabian Gulf. Metal concentrations in all the samples were measured using Atomic Absorption Spectroscopy. Analytical validation of data was carried out by applying the same digestion procedure to standard reference material (NIST-SRM 1577b bovine liver). Levels of lead (Pb) in the liver tissue (0.60µg/g) exceeded the limit set by European Commission (2005) at 0.30 µg/g. Zinc concentration in all tissue samples were below the maximum permissible limit (50 µg/g) as set by FAO. Maximum mean cadmium concentration was found 0.15 µg/g in the kidney tissues. Highest content of Mn in the studied tissues was seen in the kidney tissue (2.13 µg/g), whereas minimum was found in muscle tissue (0.87 µg/g). The present study led to the conclusion that muscle tissue is the least contaminated tissue in Lethrinus miniatus and consumption of organs should be avoided as much as possible.

Keywords: lethrinus miniatus, arabian gulf, heavy metals, atomic absorption spectroscopy

Procedia PDF Downloads 327
110 The Impacts of Internal Employees on Brand Building: A Case Study of Cell Phone

Authors: Adnan Gohar

Abstract:

This research work aims the importance of internal employees in the making of a brand (cell phone) through customer satisfaction which basically explains the connection of internal employees with external customers. This research is designed to measure the satisfaction level of internal employees which further connects to the product evolution as a brand leaving a brand image in the eye of the external customer. The main focus is that internal employees are as important as external customers for the uplift of the product resulting in the brand. Internal employees are individual organization employees, vendors, departments, and distributors.

Keywords: brand building, customer satisfaction, internal employees, mobile franchise

Procedia PDF Downloads 217
109 Adaptive Routing Protocol for Dynamic Wireless Sensor Networks

Authors: Fayez Mostafa Alhamoui, Adnan Hadi Mahdi Al- Helali

Abstract:

The main issue in designing a wireless sensor network (WSN) is the finding of a proper routing protocol that complies with the several requirements of high reliability, short latency, scalability, low power consumption, and many others. This paper proposes a novel routing algorithm that complies with these design requirements. The new routing protocol divides the WSN into several sub-networks and each sub-network is divided into several clusters. This division is designed to reduce the number of radio transmission and hence decreases the power consumption. The network division may be changed dynamically to adapt with the network changes and allows the realization of the design requirements.

Keywords: wireless sensor networks, routing protocols, AD HOC topology, cluster, sub-network, WSN design requirements

Procedia PDF Downloads 499
108 Quick Similarity Measurement of Binary Images via Probabilistic Pixel Mapping

Authors: Adnan A. Y. Mustafa

Abstract:

In this paper we present a quick technique to measure the similarity between binary images. The technique is based on a probabilistic mapping approach and is fast because only a minute percentage of the image pixels need to be compared to measure the similarity, and not the whole image. We exploit the power of the Probabilistic Matching Model for Binary Images (PMMBI) to arrive at an estimate of the similarity. We show that the estimate is a good approximation of the actual value, and the quality of the estimate can be improved further with increased image mappings. Furthermore, the technique is image size invariant; the similarity between big images can be measured as fast as that for small images. Examples of trials conducted on real images are presented.

Keywords: big images, binary images, image matching, image similarity

Procedia PDF Downloads 154
107 Stress Corrosion Cracking, Parameters Affecting It, Problems Caused by It and Suggested Methods for Treatment: State of the Art

Authors: Adnan Zaid

Abstract:

Stress corrosion cracking (SCC) may be defined as a degradation of the mechanical properties of a material under the combined action of a tensile stress and corrosive environment of the susceptible material. It is a harmful phenomenon which might cause catastrophic fracture without a sign of prior warning. In this paper, the stress corrosion cracking, SCC, process, the parameters affecting it, and the different damages caused by it are given and discussed. Utilization of shot peening as a mean of enhancing the resistance of materials to SCC is given and discussed. Finally, a method for improving materials resistance to SCC by grain refining its structure by some refining elements prior to usage is suggested.

Keywords: stress corrosion cracking, parameters, damages, treatment methods

Procedia PDF Downloads 291
106 Evaluation of Antimicrobial Activity of Phenolic Compounds Extracted from Jordanian Juglans regia L.

Authors: Hamoud Alshammari, Adnan Almezani, Hamdan Alshammari, Faris Alharbi

Abstract:

In this study we have examined of antimicrobial activity for unripe Juglan Regia phenolic extracts against a wide range of pathogenic microorganisms. Walnut (Juglans regia L.) is a member of Juglandaceae family used as a remedy in folk medicine. Leaves, barks, fruits and husk (peel) reported to harbor distinctive medical effect. In our study, we examined the anti-microbial effect against a set of gram positive and negative bacteria and even we have tested them against eukaryotic candida strains in a concentration gradual manner. Ethyl acetate extract of J. regia had the best antibacterial activity when compared with ciprofloxacin. The Minimum inhibition concentration for S. aureus, P. aerogenosa and S. epidermidis MIC was 0.85 mg/mL.

Keywords: antimicrobial, J. regia, S. aureus, phytochemistry

Procedia PDF Downloads 164
105 Characterization of Thixoformed AlSi12 Alloy with the Addition of Trace Amounts of Silver

Authors: Nursen Saklakoglu, Adnan Turker

Abstract:

The main objective of this study is to reveal the effect of the Thixoforming process on the microstructure and mechanical properties of the AlSi12 alloy with trace amounts of silver. It is concluded that Thixoforming has an important effect on the morphology of intermetallics and Si formation, as well as globular α-Al morphology. The intermetallics have been fractured during thixoforming. It is believed that the fine distribution of the intermetallics is one mechanism for the improved mechanical properties of Thixoformed alloys. The discrete Si particles have been observed during both isothermal heating to the semi-solid range and Thixoforming, also have an important effect on mechanical properties. The Thixoforming process has a greater effect on hardness than the addition of Ag does.

Keywords: AlSi alloys, intermetallic phases, mechanical properties trace element, silver, thixoforming

Procedia PDF Downloads 291
104 Case Study of Child Labour in Pakistan

Authors: Ahmad Ali Ansari, Hassan Arshad, Basharat Hussani, Adnan Raza, Ahmad Ali Khan

Abstract:

Child labor is a kind of an issue which was found all over the world, but now the first world countries like countries in Europe and America (USA) got hold of it up to a large extent but Underdeveloped or the developing countries including Pakistan are still a victim of this issue. The following attempt has been made in this research article to figure out the main reasons of child labor in underdeveloped countries especially in Pakistan and also some of the issues are discussed which are hindering the solution of child labor in Pakistan. In this research we interviewed 70 working children in the area of Rawalpindi, Islamabad, Taxila and Hatar who belonged to the different parts of the country and figured out the basic causes of the child labor in Pakistan, what are its bad effects on the young one who is a victim of it and we also put a light on what the government of Pakistan is doing in this context and what the government still have to do.

Keywords: child labour, Pakistan, case study, underdeveloped countries

Procedia PDF Downloads 621
103 Review of Ultrasound Image Processing Techniques for Speckle Noise Reduction

Authors: Kwazikwenkosi Sikhakhane, Suvendi Rimer, Mpho Gololo, Khmaies Oahada, Adnan Abu-Mahfouz

Abstract:

Medical ultrasound imaging is a crucial diagnostic technique due to its affordability and non-invasiveness compared to other imaging methods. However, the presence of speckle noise, which is a form of multiplicative noise, poses a significant obstacle to obtaining clear and accurate images in ultrasound imaging. Speckle noise reduces image quality by decreasing contrast, resolution, and signal-to-noise ratio (SNR). This makes it difficult for medical professionals to interpret ultrasound images accurately. To address this issue, various techniques have been developed to reduce speckle noise in ultrasound images, which improves image quality. This paper aims to review some of these techniques, highlighting the advantages and disadvantages of each algorithm and identifying the scenarios in which they work most effectively.

Keywords: image processing, noise, speckle, ultrasound

Procedia PDF Downloads 60
102 S. S. L. Andrade, E. A. Souza, L. C. L. Santos, C. Moraes, A. K. C. L. Lobato

Authors: Fazal Said, Mian Inayatullah

Abstract:

Various insect visitors in common and honeybees in particular are considered to be accountable for 80-85% of pollination services for numerous crops worldwide. Pollinators not only increase crop yield but also improve quality of produce as well. The present investigation is therefore, an endeavor to assess the visitation pattern of honeybees, Apis florea (Hymenopterae: Apidae) in sunflower (Helianthus annuus L.). The current research trial was carried out at New Developmental Farm (NDF), The University of Agriculture Peshawar, (34.01° N, 71.53° E) Khyber Pakhtunkhwa-Pakistan during 2012 and 2013. Different observations on the foraging behavior of A. florea’s individuals were made from 0800 hr in the morning and continued until 1800 hr in the evening. Hence, total duration of foraging activity of A. florea individuals was comprised of 10 hours. It was found that two peaks of visitation/foraging occurred between 1400 to 1600 hr of the day. First peak of foraging was recorded at 1600hr, where 15 individuals of honeybees/3 m2 were counted to be engaged in foraging sunflower blooms. Second peak visitation was recorded with a total of 12 bees/3 m2 at 1400 hrs of the day. Visitations of A. florea were observed to its minimum intensity of only 07 individuals during late hours of the day as evening approached after 1800 hrs. Similarly, due to more number of pollens and nectars on flowers, high frequency of A. florea were found engaged in foraging during 20th and 25th day after initiation of blooms on sunflower. Minimum numbers of honeybees were recorded during initial and very last days of flowering due to less number of plants with blooms and less availability of pollen and nectar on flowers.

Keywords: apis florea, days after flowering, daily hours, sunflower, visitation pattern

Procedia PDF Downloads 600
101 Exchange Rate, Market Size and Human Capital Nexus Foreign Direct Investment: A Bound Testing Approach for Pakistan

Authors: Naveed Iqbal Chaudhry, Mian Saqib Mehmood, Asif Mehmood

Abstract:

This study investigates the motivators of foreign direct investment (FDI) which will provide a panacea tool and ground breaking results related to it in case of Pakistan. The study considers exchange rate, market size and human capital as the motivators for attracting FDI. In this regard, time series data on annual basis has been collected for the period 1985–2010 and an Augmented Dickey–Fuller (ADF) and Phillips–Perron (PP) unit root tests are utilized to determine the stationarity of the variables. A bound testing approach to co-integration was applied because the variables included in the model are at I(1) – first level stationary. The empirical findings of this study confirm the long run relationship among the variables. However, market size and human capital have strong positive and significant impact, in short and long-run, for attracting FDI but exchange rate shows negative impact in this regard. The significant negative coefficient of the ECM indicates that it converges towards equilibrium. CUSUM and CUSUMSQ tests plots are with in the lines of critical value, which indicates the stability of the estimated parameters. However, this model can be used by Pakistan in policy and decision making. For achieving higher economic growth and economies of scale, the country should concentrate on the ingredients of this study so that it could attract more FDI as compared to the other countries.

Keywords: ARDL, CUSUM and CUSUMSQ tests, ECM, exchange rate, FDI, human capital, market size, Pakistan

Procedia PDF Downloads 360
100 A Novel Image Steganography Scheme Based on Mandelbrot Fractal

Authors: Adnan H. M. Al-Helali, Hamza A. Ali

Abstract:

Growth of censorship and pervasive monitoring on the Internet, Steganography arises as a new means of achieving secret communication. Steganography is the art and science of embedding information within electronic media used by common applications and systems. Generally, hiding information of multimedia within images will change some of their properties that may introduce few degradation or unusual characteristics. This paper presents a new image steganography approach for hiding information of multimedia (images, text, and audio) using generated Mandelbrot Fractal image as a cover. The proposed technique has been extensively tested with different images. The results show that the method is a very secure means of hiding and retrieving steganographic information. Experimental results demonstrate that an effective improvement in the values of the Peak Signal to Noise Ratio (PSNR), Mean Square Error (MSE), Normalized Cross Correlation (NCC) and Image Fidelity (IF) over the previous techniques.

Keywords: fractal image, information hiding, Mandelbrot et fractal, steganography

Procedia PDF Downloads 504
99 A Novel Image Steganography Method Based on Mandelbrot Fractal

Authors: Adnan H. M. Al-Helali, Hamza A. Ali

Abstract:

The growth of censorship and pervasive monitoring on the Internet, Steganography arises as a new means of achieving secret communication. Steganography is the art and science of embedding information within electronic media used by common applications and systems. Generally, hiding information of multimedia within images will change some of their properties that may introduce few degradation or unusual characteristics. This paper presents a new image steganography approach for hiding information of multimedia (images, text, and audio) using generated Mandelbrot Fractal image as a cover. The proposed technique has been extensively tested with different images. The results show that the method is a very secure means of hiding and retrieving steganographic information. Experimental results demonstrate that an effective improvement in the values of the Peak Signal to Noise Ratio (PSNR), Mean Square Error (MSE), Normalized Cross Correlation (NCC), and Image Fidelity (IF) over the pervious techniques.

Keywords: fractal image, information hiding, Mandelbrot set fractal, steganography

Procedia PDF Downloads 583
98 Assessment of Bridge Performance with Laminated versus Spring Seismic Isolation

Authors: M. Z. Ramli, A. Adnan, Chee Wei Tan

Abstract:

To gain a better understanding of earthquake forces on reinforced concrete bridge piers with different bearing condition, a series of experiments was conducted on a realistic, 1:4 scale reinforced concrete bridge pier. The normal practices of laminated seismic isolation bearing is compared with the new design spring seismic isolation bearing where invented by Engineering Seismology and Earthquake Engineering Research (e-SEER), Universiti Teknologi Malaysia. The nonlinear behavior of piers is modeled using the fibre beam theory to verify the experimental works. The hysteresis of bridge pier with different bearing condition was illustrated under different Peak Ground Acceleration (PGAs). The average slope of the hysteresis respectively to the global stiffness was also investigated.

Keywords: bridge, laminated seismic isolation, spring seismic isolation, Peak Ground Acceleration, stiffness

Procedia PDF Downloads 520
97 Assessment of Germination Loss Due to Dusky Cotton Bug (Oxycarenus laetus) in Relation to Cotton Boll Stage and Bug Intensity

Authors: Ali Hassan, Mian Muhammad Awais, Muhammad Rafique Shahid, Farazia Hassan, Shumaila Rasool

Abstract:

Dusky cotton bug (Oxycarenus laetus) has attained the status of major insect pest of cotton. It is also known as seed bug due to its property of feeding on seeds. It causes floral abscission at flowering stage and reduction in seed germination. Present study was carried out to assess germination loss caused by dusky bug with respect to crop stage and insect intensity. Treatments consisted of three stages immature boll, mature boll and opened boll as well three levels of dusky bug i.e., 50 bugs per boll, 40 bugs per boll along with zero level kept as control. Results showed that the germination percentage was highest in control treatment where no insect was released followed by treatment where 40 insects released and minimum germination showed by treatment in which 50 insects were released. The germination percentage of seeds surpassed after control treatment in the treatment where dusky bugs exposure was given at boll opening stage than on mature boll stage. Minimum germination was observed in immature boll stage. Interaction between crop stages and dusky bug levels showed that germination percentage of seeds was maximum in control treatment then boll opening stage followed by mature boll stage. Minimum seed germination was recorded in dusky bug treatment at immature boll stage which was 34% where 50 insects were released. From the results it is clear that dusky bug should be managed properly at all reproductive stages but immature stage is most critical.

Keywords: Gossypium hirsutum, Oxycarenus laetus, seed bug, seed germination

Procedia PDF Downloads 287
96 A Review of Physiological Measures for Cognitive Workload Assessment of Aircrew

Authors: Naveed Tahir, Adnan Maqsood

Abstract:

Cognitive workload is a significant factor affecting user performance, and it has been broadly investigated for its application in ergonomics as well as in designing and optimizing effective human-machine interactions. It is mentally challenging to maneuver an aircraft, and pilots must control the aircraft and adequately communicate to the verbal-auditory stimuli. Several physiological measures have long been researched and used to demonstrate the cognitive workload. In our current study, we have summarized recent findings of the effectiveness, accuracy, and applicability of commonly used physiological measures in evaluating cognitive workload. We have also highlighted on the advancements in physiological measures. The strength and limitations of physiological measures have also been discussed to assess the cognitive workload of people, especially the aircrews in laboratory settings and real-time situations. We have presented the research findings of the physiological measures to base suggestions on the proper applications of the measures and settings demanding the use of single measure or their combinations.

Keywords: aircrew, cognitive workload, subjective measure, physiological measure, performance measure

Procedia PDF Downloads 119
95 Effect of Superabsorbent for the Improvement of Car Seat's Thermal Comfort

Authors: Funda Buyuk Mazari, Adnan Mazari, Antonin Havelka, Jakub Wiener, Jawad Naeem

Abstract:

The use of super absorbent polymers (SAP) for moisture absorption and comfort is still unexplored. In this research the efficiency of different SAP fibrous webs are determined under different moisture percentage to examine the sorption and desorption efficiency. The SAP fibrous web with low thickness and high moisture absorption are tested with multilayer sandwich structure of car seat cover to determine the moisture absorption through cover material. Sweating guarded hot plate (SGHP) from company Atlas is used to determine the moisture permeability of different car seat cover with superabsorbent layer closed with impermeable polyurethane foam. It is observed that the SAP fibrous layers are very effective in absorbing and desorbing water vapor under extreme high and low moisture percentages respectively. In extreme humid condition (95 %RH) the 20g of SAP layer absorbs nearly 3g of water vapor per hour and reaches the maximum absorption capacity in 6 hours.

Keywords: car seat, comfort, SAF, superabsorbent

Procedia PDF Downloads 425
94 Improving Library Service Quality in Local City of Indonesia

Authors: Prima Fithri, Afri Adnan, Verra Syahmer

Abstract:

Library as a public service should be able to provide excellent and quality service. The criteria that should be available in the library is having the collection which relevant, actual and reliable, qualified and professional employee, delivery system that prompt and appropriate as well as supported by proper infrastructure. The aim of this study is to show the performance as an effort to provide quality of services that appropriate with the needs and desires of user. Then, in this research has been carried out the calculation of the gap between the perceptions and expectations of user about the services of the library. The Sevqual and QFD methods are used in this study. Servqual method for measuring the value of the gap that occurs in the dimensions of service quality and QFD method for determine priority repairment that need to be done to improve the quality of services that occur in the dimensions of service quality. From 97 questionaires, shows that value of the gap that occurs in the dimensions of service quality using by Servqual is 27.7% dimensions of responsiveness. It show how much user expectations are not met by the quality of existing services. Construction of the library and standard library becomes priority improvements that need to be done to improve the quality of service that occurs in the dimensions of service quality using the QFD.

Keywords: library, service quality, service quality, QFD

Procedia PDF Downloads 534
93 A New Tool for Global Optimization Problems: Cuttlefish Algorithm

Authors: Adel Sabry Eesa, Adnan Mohsin Abdulazeez Brifcani, Zeynep Orman

Abstract:

This paper presents a new meta-heuristic bio-inspired optimization algorithm which is called Cuttlefish Algorithm (CFA). The algorithm mimics the mechanism of color changing behavior of the cuttlefish to solve numerical global optimization problems. The colors and patterns of the cuttlefish are produced by reflected light from three different layers of cells. The proposed algorithm considers mainly two processes: reflection and visibility. Reflection process simulates light reflection mechanism used by these layers, while visibility process simulates visibility of matching patterns of the cuttlefish. To show the effectiveness of the algorithm, it is tested with some other popular bio-inspired optimization algorithms such as Genetic Algorithms (GA), Particle Swarm Optimization (PSO) and Bees Algorithm (BA) that have been previously proposed in the literature. Simulations and obtained results indicate that the proposed CFA is superior when compared with these algorithms.

Keywords: Cuttlefish Algorithm, bio-inspired algorithms, optimization, global optimization problems

Procedia PDF Downloads 525