Search results for: vision problems
Commenced in January 2007
Frequency: Monthly
Edition: International
Paper Count: 7208

Search results for: vision problems

4958 A Hybrid Multi-Objective Firefly-Sine Cosine Algorithm for Multi-Objective Optimization Problem

Authors: Gaohuizi Guo, Ning Zhang

Abstract:

Firefly algorithm (FA) and Sine Cosine algorithm (SCA) are two very popular and advanced metaheuristic algorithms. However, these algorithms applied to multi-objective optimization problems have some shortcomings, respectively, such as premature convergence and limited exploration capability. Combining the privileges of FA and SCA while avoiding their deficiencies may improve the accuracy and efficiency of the algorithm. This paper proposes a hybridization of FA and SCA algorithms, named multi-objective firefly-sine cosine algorithm (MFA-SCA), to develop a more efficient meta-heuristic algorithm than FA and SCA.

Keywords: firefly algorithm, hybrid algorithm, multi-objective optimization, sine cosine algorithm

Procedia PDF Downloads 169
4957 Necessity of Recognition of Same-Sex Marriages and Civil Partnerships Concluded Abroad from Civil Status Registry Point of View

Authors: Ewa Kamarad

Abstract:

Recent problems with adopting the EU Regulation on matrimonial property regimes have clearly proven that Member States are unable to agree on the scope of the Regulation and, therefore, on the definitions of matrimonial property and marriage itself. Taking into account that the Regulation on the law applicable to divorce and legal separation, as well as the Regulation on matrimonial property regimes, were adopted in the framework of enhanced cooperation, it is evident that lack of a unified definition of marriage has very wide-ranging consequences. The main problem with the unified definition of marriage is that the EU is not entitled to adopt measures in the domain of material family law, as this area remains under the exclusive competence of the Member States. Because of that, the legislation on marriage in domestic legal orders of the various Member States is very different. These differences concern not only issues such as form of marriage or capacity to enter into marriage, but also the most basic matter, namely the core of the institution of marriage itself. Within the 28 Member States, we have those that allow both different-sex and same-sex marriages, those that have adopted special, separate institutions for same-sex couples, and those that allow only marriage between a man and a woman (e.g. Hungary, Latvia, Lithuania, Poland, Slovakia). Because of the freedom of movement within the European Union, it seems necessary to somehow recognize the civil effects of a marriage that was concluded in another Member State. The most crucial issue is how far that recognition should go. The thesis presented in the presentation is that, at an absolute minimum, the authorities of all Member States must recognize the civil status of the persons who enter into marriage in another Member State. Lack of such recognition might cause serious problems, both for the spouses and for other individuals. The authorities of some Member States may treat the marriage as if it does not exist because it was concluded under foreign law that defines marriage differently. Because of that, it is possible for the spouse to obtain a certificate of civil status stating that he or she is single and thus eligible to enter into marriage – despite being legally married under the law of another Member State. Such certificate can then be used in another country to serve as a proof of civil status. Eventually the lack of recognition can lead to so-called “international bigamy”. The biggest obstacle to recognition of marriages concluded under the law of another Member State that defines marriage differently is the impossibility of transcription of a foreign civil certificate in the case of such a marriage. That is caused by the rule requiring that a civil certificate issued (or transcribed) under one country's law can contain only records of legal institutions recognized by that country's legal order. The presentation is going to provide possible solutions to this problem.

Keywords: civil status, recognition of marriage, conflict of laws, private international law

Procedia PDF Downloads 235
4956 Constrains to Financial Engineering for Liquidity Management: A Multiple Case Study of Islamic Banks

Authors: Sadia Bibi, Karim Ullah

Abstract:

Islamic banks have excess liquidity, which needs proper management to earn a high rate of return on them to remain competitive. However, they lack assets-backed avenues and rely on a few sukuks, which led them to liquidity management issues. Financial engineering comes forward to innovate and develop instruments for the requisite financial problem. Still, they face many challenges, explored in the context of liquidity management in Islamic banks. The rigorous literature review shows that Shariah compliance, competition from the conventional banks, lack of sufficient instruments, derivatives are still not accepted as legitimate products, the inter-bank market being less developed, and no possibility of lender of last resort is the six significant constraints to financial engineering for liquidity management of Islamic banks. To further explore the problem, a multiple case study strategy is used to extend and develop the theory with the philosophical stance of social constructivism. Narrative in-depth interviews over the telephone are conducted with key personnel at treasury departments of selected banks. Data is segregated and displayed using NVivo 11 software, and the thematic analysis approach identifies themes related to the constraints. The exploration of further constraints to financial engineering for liquidity management of Islamic banks achieves the research aim. The theory is further developed by the addition of three more constraints to the theoretical framework, which are i) lack of skilled human resources, ii) lack of unified vision, and iii) lack of government support to the Islamic banks. These study findings are fruitful for the use of the government, regulatory authorities of the banking sector, the State Bank of Pakistan (Central Bank), and the product design & development division of Islamic banks to make the financial engineering process feasible and resolve liquidity management issues of Islamic banks.

Keywords: financial engineering, liquidity management, Islamic banks, shariah compliance

Procedia PDF Downloads 83
4955 A Survey on a Critical Infrastructure Monitoring Using Wireless Sensor Networks

Authors: Khelifa Benahmed, Tarek Benahmed

Abstract:

There are diverse applications of wireless sensor networks (WSNs) in the real world, typically invoking some kind of monitoring, tracking, or controlling activities. In an application, a WSN is deployed over the area of interest to sense and detect the events and collect data through their sensors in a geographical area and transmit the collected data to a Base Station (BS). This paper presents an overview of the research solutions available in the field of environmental monitoring applications, more precisely the problems of critical area monitoring using wireless sensor networks.

Keywords: critical infrastructure monitoring, environment monitoring, event region detection, wireless sensor networks

Procedia PDF Downloads 351
4954 i2kit: A Tool for Immutable Infrastructure Deployments

Authors: Pablo Chico De Guzman, Cesar Sanchez

Abstract:

Microservice architectures are increasingly in distributed cloud applications due to the advantages on the software composition, development speed, release cycle frequency and the business logic time to market. On the other hand, these architectures also introduce some challenges on the testing and release phases of applications. Container technology solves some of these issues by providing reproducible environments, easy of software distribution and isolation of processes. However, there are other issues that remain unsolved in current container technology when dealing with multiple machines, such as networking for multi-host communication, service discovery, load balancing or data persistency (even though some of these challenges are already solved by traditional cloud vendors in a very mature and widespread manner). Container cluster management tools, such as Kubernetes, Mesos or Docker Swarm, attempt to solve these problems by introducing a new control layer where the unit of deployment is the container (or the pod — a set of strongly related containers that must be deployed on the same machine). These tools are complex to configure and manage and they do not follow a pure immutable infrastructure approach since servers are reused between deployments. Indeed, these tools introduce dependencies at execution time for solving networking or service discovery problems. If an error on the control layer occurs, which would affect running applications, specific expertise is required to perform ad-hoc troubleshooting. As a consequence, it is not surprising that container cluster support is becoming a source of revenue for consulting services. This paper presents i2kit, a deployment tool based on the immutable infrastructure pattern, where the virtual machine is the unit of deployment. The input for i2kit is a declarative definition of a set of microservices, where each microservice is defined as a pod of containers. Microservices are built into machine images using linuxkit —- a tool for creating minimal linux distributions specialized in running containers. These machine images are then deployed to one or more virtual machines, which are exposed through a cloud vendor load balancer. Finally, the load balancer endpoint is set into other microservices using an environment variable, providing service discovery. The toolkit i2kit reuses the best ideas from container technology to solve problems like reproducible environments, process isolation, and software distribution, and at the same time relies on mature, proven cloud vendor technology for networking, load balancing and persistency. The result is a more robust system with no learning curve for troubleshooting running applications. We have implemented an open source prototype that transforms i2kit definitions into AWS cloud formation templates, where each microservice AMI (Amazon Machine Image) is created on the fly using linuxkit. Even though container cluster management tools have more flexibility for resource allocation optimization, we defend that adding a new control layer implies more important disadvantages. Resource allocation is greatly improved by using linuxkit, which introduces a very small footprint (around 35MB). Also, the system is more secure since linuxkit installs the minimum set of dependencies to run containers. The toolkit i2kit is currently under development at the IMDEA Software Institute.

Keywords: container, deployment, immutable infrastructure, microservice

Procedia PDF Downloads 179
4953 Acid Soil Amelioration Using Coal Bio-Briquette Ash and Waste Concrete in China

Authors: Y. Sakai, C. Wang

Abstract:

The decrease in agricultural production due to soil deterioration has been an urgent task. Soil acidification is a potentially serious land degradation issue and it will have a major impact on agricultural productivity and sustainable farming systems. In China, acid soil is mainly distributed in the southern part, the decrease in agricultural production and heavy metal contamination are serious problems. In addition, not only environmental and health problems due to the exhaust gas such as mainly sulfur dioxide (SO₂) but also the generation of a huge amount of construction and demolition wastes with the accelerating urbanization has emerged as a social problem in China. Therefore, the need for the recycling and reuse of both desulfurization waste and waste concrete is very urgent and necessary. So we have investigated the effectiveness as acid soil amendments of both coal bio-briquette ash and waste concrete. In this paper, acid soil (AS1) in Nanjing (pH=6.0, EC=1.6dSm-1) and acid soil (AS2) in Guangzhou (pH=4.1, EC=0.2dSm-1) were investigated in soil amelioration test. Soil amendments were three coal bio-briquette ashes (BBA1, BBA2 and BBA3), the waste cement fine powders (CFP) ( < 200µm (particle diameter)), waste concrete particles (WCP) ( < 4.75mm ( < 0.6mm, 0.6-1.0mm, 1.0-2.0mm, 2.0-4.75mm)), and six mixtures with two coal bio-briquette ashes (BBA2 and BBA3), CFP, WCP( < 0.6mm) and WCP(2.0-4.75mm). In acid soil amelioration test, the three BBAs, CFP and various WCPs based on exchangeable calcium concentration were added to two acid soils. The application rates were from 0 wt% to 3.5 wt% in AS1 test and from 0 wt% to 6.0 wt% in AS2 test, respectively. Soil chemical properties (pH, EC, exchangeable and soluble ions (Na, Ca, Mg, K)) before and after mixing with soil amendments were measured. In addition, Al toxicity and the balance of salts (CaO, K₂O, MgO) in soil after amelioration was evaluated. The order of pH and exchangeable Ca concentration that is effective for acid soil amelioration was WCP(0.6mm) > CFP > WCP(2.0-4.25mm) > BB1 > BB2 > BB3. In all AS 1 and AS 2 amelioration tests using three BBAs, the pH and EC increased slightly with the increase of application rate and reached to the appropriate value range of both pH and EC in BBA1 only. Because BBA1 was higher value in pH and exchangeable Ca. After that, soil pH and EC with the increase in the application rate of BBA2, BBA3 and by using CFP, WC( < 0.6mm), WC(2.0-4.75mm) as soil amendment reached to each appropriate value range, respectively. In addition, the mixture amendments with BBA2, BBA3 CFP, WC( < 0.6mm), and WC(2.0-4.75mm) could ameliorate at a smaller amount of application rate in case of BBA only. And the exchangeable Al concentration decreased drastically with the increase in pH due to soil amelioration and was under the standard value. Lastly, the heavy metal (Cd, As, Se, Ni, Cr, Pb, Mo, B, Cu, Zn) contents in new soil amendments were under control standard values for agricultural use in China. Thus we could propose a new acid soil amelioration method using coal bio-briquette ash and waste concrete in China.

Keywords: acid soil, coal bio-briquette ash, soil amelioration, waste concrete

Procedia PDF Downloads 183
4952 Tackling Exclusion and Radicalization through Islamic Practices and Discourses: Case Study of Muslim Organizations in Switzerland

Authors: Baptiste Brodard

Abstract:

In Switzerland, as well as in other European countries, specific social issues related to Muslims have recently emerged in public debates. In addition to the question of terrorism and radicalization, Muslim migrant populations are highly affected by social problems such as crime, poverty, marginalization, and overrepresentation in prisons. This situation has drawn the state’s attention to the need for implementing new responses to the challenges of religious extremism, crime, and social exclusion particularly involving Muslims. While local authorities have begun to implement trainings and projects to tackle these new social issues, Muslim grassroots associations have developed some initiatives to address the needs of the population, mainly focusing on problems related to Islam and Muslims but also addressing the rest of the population. Finally, some local authorities have acknowledged the need for these alternative initiatives as well as their positive contributions to society. The study is based on a Ph.D. research grounded on a case study of three Islamic networks in Switzerland, including various local organizations tackling social exclusion and religious radicalization through innovative grassroots projects. Using an ethnographic approach, it highlights, on the one hand, the specificities of such organizations by exploring the role of Islamic norms within the social work practices. On the other hand, it focuses on the inclusion of such faith-based projects within the mainstream society, observing the relationships between Islamic organisations and both the state and other civil society organizations. Finally, the research study aims to identify some innovative ways and trends of social work involving the inclusion of community key actors within the process. Results showed similar trends with Islamic social work developed in other European countries such as France and the United Kingdom, but also indicate a range of specificities linked to the Swiss socio-political context, which shapes the involvement of religious actors in different ways. By exploring faith-based commitment to addressing concrete social issues, the study finally contributes to shedding light on the link between Islam, social work and activism within the European context.

Keywords: exclusion, Islam, Muslims, social work, Switzerland

Procedia PDF Downloads 128
4951 Urban Noise and Air Quality: Correlation between Air and Noise Pollution; Sensors, Data Collection, Analysis and Mapping in Urban Planning

Authors: Massimiliano Condotta, Paolo Ruggeri, Chiara Scanagatta, Giovanni Borga

Abstract:

Architects and urban planners, when designing and renewing cities, have to face a complex set of problems, including the issues of noise and air pollution which are considered as hot topics (i.e., the Clean Air Act of London and the Soundscape definition). It is usually taken for granted that these problems go by together because the noise pollution present in cities is often linked to traffic and industries, and these produce air pollutants as well. Traffic congestion can create both noise pollution and air pollution, because NO₂ is mostly created from the oxidation of NO, and these two are notoriously produced by processes of combustion at high temperatures (i.e., car engines or thermal power stations). We can see the same process for industrial plants as well. What have to be investigated – and is the topic of this paper – is whether or not there really is a correlation between noise pollution and air pollution (taking into account NO₂) in urban areas. To evaluate if there is a correlation, some low-cost methodologies will be used. For noise measurements, the OpeNoise App will be installed on an Android phone. The smartphone will be positioned inside a waterproof box, to stay outdoor, with an external battery to allow it to collect data continuously. The box will have a small hole to install an external microphone, connected to the smartphone, which will be calibrated to collect the most accurate data. For air, pollution measurements will be used the AirMonitor device, an Arduino board to which the sensors, and all the other components, are plugged. After assembling the sensors, they will be coupled (one noise and one air sensor) and placed in different critical locations in the area of Mestre (Venice) to map the existing situation. The sensors will collect data for a fixed period of time to have an input for both week and weekend days, in this way it will be possible to see the changes of the situation during the week. The novelty is that data will be compared to check if there is a correlation between the two pollutants using graphs that should show the percentage of pollution instead of the values obtained with the sensors. To do so, the data will be converted to fit on a scale that goes up to 100% and will be shown thru a mapping of the measurement using GIS methods. Another relevant aspect is that this comparison can help to choose which are the right mitigation solutions to be applied in the area of the analysis because it will make it possible to solve both the noise and the air pollution problem making only one intervention. The mitigation solutions must consider not only the health aspect but also how to create a more livable space for citizens. The paper will describe in detail the methodology and the technical solution adopted for the realization of the sensors, the data collection, noise and pollution mapping and analysis.

Keywords: air quality, data analysis, data collection, NO₂, noise mapping, noise pollution, particulate matter

Procedia PDF Downloads 212
4950 On the Problems of Human Concept Learning within Terminological Systems

Authors: Farshad Badie

Abstract:

The central focus of this article is on the fact that knowledge is constructed from an interaction between humans’ experiences and over their conceptions of constructed concepts. Logical characterisation of ‘human inductive learning over human’s constructed concepts’ within terminological systems and providing a logical background for theorising over the Human Concept Learning Problem (HCLP) in terminological systems are the main contributions of this research. This research connects with the topics ‘human learning’, ‘epistemology’, ‘cognitive modelling’, ‘knowledge representation’ and ‘ontological reasoning’.

Keywords: human concept learning, concept construction, knowledge construction, terminological systems

Procedia PDF Downloads 325
4949 Emotions in Human-Machine Interaction

Authors: Joanna Maj

Abstract:

Awe inspiring is the idea that emotions could be present in human-machine interactions, both on the human side as well as the machine side. Human factors present intriguing components and are examined in detail while discussing this controversial topic. Mood, attention, memory, performance, assessment, causes of emotion, and neurological responses are analyzed as components of the interaction. Problems in computer-based technology, revenge of the system on its users and design, and applications comprise a major part of all descriptions and examples throughout this paper. It also allows for critical thinking while challenging intriguing questions regarding future directions in research, dealing with emotion in human-machine interactions.

Keywords: biocomputing, biomedical engineering, emotions, human-machine interaction, interfaces

Procedia PDF Downloads 133
4948 A Rare Form of Rapidly Progressive Parkinsonism Associated with Dementia

Authors: Murat Emre, Zeynep Tufekcioglu

Abstract:

Objective: We describe a patient with late onset phenylketonuria which presented with rapidly progressive dementia and parkinsonism that were reversible after management. Background: Phenylketonuria is an autosomal recessive disorder due to mutations in the phenylalanine hydroxlase gene. It normally presents in childhood, in rare cases, however, it may have its onset in adulthood and may mimic other neurological disorders. Case description: A previously normal functioning, 59 year old man was admitted for blurred vision, cognitive impairment and gait difficulty which emerged over the past eight months. In neurological examination he had brisk reflexes, slow gait and left-dominant parkinsonism. Mini-mental state examination score was 25/30, neuropsychological testing revealed a dysexecutive syndrome with constructional apraxia and simultanagnosia. In cranial MRI there were bilateral diffuse hyper-intense lesions in parietal and occipital white matter with no significant atrophy. Electroencephalography showed diffuse slowing with predominance of teta waves. In cerebrospinal fluid examination protein level was slightly elevated (61mg/dL), oligoclonal bands were negative. Electromyography was normal. Routine laboratory examinations for rapidly progressive dementia and parkinsonism were also normal. Serum amino acid levels were determined to explore metabolic leukodystrophies and phenylalanine level was found to be highly elevated (1075 µmol/L) with normal tyrosine (61,20 µmol/L). His cognitive impairment and parkinsonian symptoms improved following three months of phenylalanine restricted diet. Conclusions: Late onset phenylketonuria is a rare, potentially reversible cause of rapidly progressive parkinsonism with dementia. It should be considered in the differential diagnosis of patients with suspicious features.

Keywords: dementia, neurology, Phenylketonuria, rapidly progressive parkinsonism

Procedia PDF Downloads 269
4947 Quality of Life of Elderly with Vascular Illness and the Level of Depression in 4 Barangays in Malabon, Philippines

Authors: Marilou P. Angeles

Abstract:

Seniors are a growing number of population all over the world, and they are getting sick with illnesses like diabetes, high blood, and high cholesterol. It is necessary to see the relationship of their physical illness and its effect on their quality of life. Having chronic illnesses also can affect the mood of the elderly; becoming cranky, lonely, not eating, etc. Therefore, there is a need to study the relationship of the quality of life of the elderly and the level of depression. Depression for elderly is known as late onset depression or vascular depression since it is tied to the vascular illnesses they are experiencing, although this is not homogeneous. There is heterogeneity in seniors. The purpose of the study is to determine how keep the satisfaction in life i.e., quality of life of seniors, as long as possible. This study was made in 4 barangays in Longos, Potrero, Tonsuya and Catmon, in Malabon, Metro Manila, Philippines. These Filipino seniors are availing of free medicines for their diabetes, high blood, and high cholesterol ailments in the barangay health centers, given freely by the Department of Health. Two instruments were used; quality of life (CASP-19) and patient health questionnaire(PHQ-19). The quality of life questionnaire was based on the theory of Abraham Maslow, human: beings are motivated to action by needs, starting from the lowest, physiological to the highest self-transcendence. Severity of depression is determined by PHQ-9, and according to the unified model of depression by Aaron Beck and Kurt B. Bredemeier, depression happens when a person cannot cope with life has not able to satisfy his needs as a person. The Pearson R correlation was used to determine the significance of the relationship between quality of life and depression. Finding is there is negative relationship between quality of life and depression. It means that a high value of quality of life lowers or minimizes depression. CASP-19 found that the Filipino elderly were in control, independent, enjoying their lives even if they are poor, and this is shown by the significant results. Self-transcendence, a need to give back to others, is important for Filipino elderly. Although the seniors have difficulty with money and they were affected by their illnesses, they are full of optimism, they are ignoring their physical pain because they are focusing on helping their loved ones (i.e., self-transcendence), their children and grandchildrenothers, and if problems come, they are resilient accepting of the challenges, because they have strong faith in God. They are also having pleasures interacting with their friends and neighbors who, like them, have the same health problems. And these two coping strategies for the elderlies allow them to live a meaningful life, a life high in quality. Thus, where there is high quality of life, there is none or minimal depression. Recommendation for future study is finding the relationship of spirituality to quality of life of seniors.

Keywords: CASP-19, depression, quality of life, PHQ-9, senior citizen

Procedia PDF Downloads 147
4946 Utilizing Topic Modelling for Assessing Mhealth App’s Risks to Users’ Health before and during the COVID-19 Pandemic

Authors: Pedro Augusto Da Silva E Souza Miranda, Niloofar Jalali, Shweta Mistry

Abstract:

BACKGROUND: Software developers utilize automated solutions to scrape users’ reviews to extract meaningful knowledge to identify problems (e.g., bugs, compatibility issues) and possible enhancements (e.g., users’ requests) to their solutions. However, most of these solutions do not consider the health risk aspects to users. Recent works have shed light on the importance of including health risk considerations in the development cycle of mHealth apps to prevent harm to its users. PROBLEM: The COVID-19 Pandemic in Canada (and World) is currently forcing physical distancing upon the general population. This new lifestyle made the usage of mHealth applications more essential than ever, with a projected market forecast of 332 billion dollars by 2025. However, this new insurgency in mHealth usage comes with possible risks to users’ health due to mHealth apps problems (e.g., wrong insulin dosage indication due to a UI error). OBJECTIVE: These works aim to raise awareness amongst mHealth developers of the importance of considering risks to users’ health within their development lifecycle. Moreover, this work also aims to help mHealth developers with a Proof-of-Concept (POC) solution to understand, process, and identify possible health risks to users of mHealth apps based on users’ reviews. METHODS: We conducted a mixed-method study design. We developed a crawler to mine the negative reviews from two samples of mHealth apps (my fitness, medisafe) from the Google Play store users. For each mHealth app, we performed the following steps: • The reviews are divided into two groups, before starting the COVID-19 (reviews’ submission date before 15 Feb 2019) and during the COVID-19 (reviews’ submission date starts from 16 Feb 2019 till Dec 2020). For each period, the Latent Dirichlet Allocation (LDA) topic model was used to identify the different clusters of reviews based on similar topics of review The topics before and during COVID-19 are compared, and the significant difference in frequency and severity of similar topics are identified. RESULTS: We successfully scraped, filtered, processed, and identified health-related topics in both qualitative and quantitative approaches. The results demonstrated the similarity between topics before and during the COVID-19.

Keywords: natural language processing (NLP), topic modeling, mHealth, COVID-19, software engineering, telemedicine, health risks

Procedia PDF Downloads 130
4945 Legal Analysis of the Meaning of the Rule In dubio pro libertate for the Interpretation of Criminal Law Norms

Authors: Pavel Kotlán

Abstract:

The paper defines the role of the rule in dubio pro libertate in the interpretation of criminal law norms, which is one of the controversial and debated problems of law application. On the basis of the analysis of the law, including comparison with the legal systems of various European countries, and the accepted principles of interpretation of law, it can be concluded that the rule in dubio pro libertate can be used in cases where the linguistic, teleological and systematic methods fail, and at the same time, that interpretation based on this rule should be preferred to subjective historical interpretation. It can be considered that the correct inclusion of the in dubio pro libertate rule in the choice of the interpretative variant can serve in the application of criminal law by the judiciary.

Keywords: application of law, criminal law norms, in dubio pro libertate, interpretation

Procedia PDF Downloads 5
4944 The Paradox of Design Aesthetics and the Sustainable Design

Authors: Asena Demirci, Gozen Guner Aktaş, Nur Ayalp

Abstract:

Nature provides a living space for humans, also in contrast it is destroyed by humans for their personal needs and ambitions. For decreasing these damages against nature, solutions are started to generate and to develop. Moreover, precautions are implemented. After 1960s, especially when the ozone layer got harmed and got thinner by toxic substances coming from man made structures, environmental problems which effected human’s activities of daily living. Thus, this subject about environmental solutions and precautions is becoming a priority issue for scientists. Most of the environmental problems are caused by buildings and factories which are built without any concerns about protecting nature. This situation creates awareness about environmental issues and also the terms like sustainability, Renewable energy show up in building, Construction and architecture sectors to provide environmental protection. In this perspective, the design disciplines also should be respectful to nature and the sustainability. Designs which involve the features like sustainability, renewability and being ecologic have specialties to be less detrimental to the environment rather than the designs which do not involve. Furthermore, these designs produce their own energy for consuming, So they do not use the natural resources. They do not contain harmful substances and they are made of recyclable materials. Thus, they are becoming environmentally friendly structures. There is a common concern among designers about the issue of sustainable design. They believe that the idea of sustainability inhibits the creativity. All works of design resemble each other from the point of aesthetics and technological matters. In addition, there is a concern about design ethics which aesthetic designs cannot be accepted as a priority. For these reasons, there are few designs included the features of being eco-friendly and well-designed and also had design concerns around the world. Despite the other design disciplines, The concept of sustainability is getting more important each day in interior architecture and interior design. As it is known that human being spends 90 % of his life in interior spaces, The importance of that concept in interior spaces is obvious. Aesthetic is another vital concern in interior space design also. Most of the time sustainable materials and sustainable interior design applications conflicts with personal aesthetic parameters. This study aims to discuss the great paradox between the design aesthetic and the sustainable design. Does the sustainable approach in interior design disturbs the design aesthetic? This is one of the most popular questions that have been discussed for a while. With this paper this question will be evaluated with a case study which analyzes the aesthetic perceptions and preferences of the users and designers in sustainable interior spaces.

Keywords: aesthetics, interior design, sustainable design, sustainability

Procedia PDF Downloads 291
4943 Green Transport Solutions for Developing Cities: A Case Study of Nairobi, Kenya

Authors: Benedict O. Muyale, Emmanuel S. Murunga

Abstract:

Cities have always been the loci for nationals as well as growth of cultural fusion and innovation. Over 50%of global population dwells in cities and urban centers. This means that cities are prolific users of natural resources and generators of waste; hence they produce most of the greenhouse gases which are causing global climate change. The root cause of increase in the transport sector carbon curve is mainly the greater numbers of individually owned cars. Development in these cities is geared towards economic progress while environmental sustainability is ignored. Infrastructure projects focus on road expansion, electrification, and more parking spaces. These lead to more carbon emissions, traffic congestion, and air pollution. Recent development plans for Nairobi city are now on road expansion with little priority for electric train solutions. The Vision 2030, Kenya’s development guide, has shed some light on the city with numerous road expansion projects. This chapter seeks to realize the following objectives; (1) to assess the current transport situation of Nairobi; (2) to review green transport solutions being undertaken in the city; (3) to give an overview of alternative green transportation solutions, and (4) to provide a green transportation framework matrix. This preliminary study will utilize primary and secondary data through mainly desktop research and analysis, literature, books, magazines and on-line information. This forms the basis for formulation of approaches for incorporation into the green transportation framework matrix of the main study report.The main goal is the achievement of a practical green transportation system for implementation by the City County of Nairobi to reduce carbon emissions and congestion and promote environmental sustainability.

Keywords: cities, transport, Nairobi, green technologies

Procedia PDF Downloads 321
4942 Oil and Development: The Case of Kuwait

Authors: Abdulaziz Abdulrahman Albahar

Abstract:

This paper aims to answer the question of: is oil as a natural resource with all the wealth that it brings an economic burden? And how can resource curse be mitigated in such oil dependent nations? The case of Kuwait will be used as an example. The paper begins with an introduction of the resource curse and the Kuwaiti economy in general. Then there is an attempt to see that does the curse exist in the case for Kuwait. Furthermore, in the analysis section, an exploration on how the economy is dependent on oil and how oil is more of a burden if there is mismanagement is conducted. Later on, in answering on how to mitigate the problem of a resource curse, the case of Norway is explored. In concluding the paper, the results do show that oil rentals affects the Kuwaiti economy via 2 main channels, these are government spending that are mainly financed via oil rentals and exportation of oil based products. The surprising result was that government spending had a negative impact on GDP (gross domestic product) growth when oil rentals where instrumented on government expenditure, this is due to the issue of rent seeking in which government spending in Kuwait is financing things such as stimulus packages and raising the nominal wages. Yet, when comparing the magnitude of both oil exportation and government spending, the latter has a stronger effect on the GDP (gross domestic product) growth than the former. A resource curse doesn’t seem to exist in the case of Kuwait however, the characteristics of a curse do show in the form of rent seeking in the political sphere, the disruption of the traditional sectors like that of pearl trade and fishing markets. Yet, a curse doesn’t show due to the fact that the currency of the nation is very stable and hasn’t experienced any appreciation because of the fixed exchange rate system. Moreover, even if we can’t say that a curse exists, it is clear to see that the Kuwaiti economy is heading towards one. Whether or not it faces a resource curse will be based on how judicious the nation will be in exploiting their sovereign wealth fund and implementing diversification strategies to be less oil dependent like the vision “New Kuwait-2035” which has been underway since 2017.

Keywords: economic development, Kuwait, oil curse, dutch disease

Procedia PDF Downloads 76
4941 A Heuristic for the Integrated Production and Distribution Scheduling Problem

Authors: Christian Meinecke, Bernd Scholz-Reiter

Abstract:

The integrated problem of production and distribution scheduling is relevant in many industrial applications. Thus, many heuristics to solve this integrated problem have been developed in the last decade. Most of these heuristics use a sequential working principal or a single decomposition and integration approach to separate and solve sub-problems. A heuristic using a multi-step decomposition and integration approach is presented in this paper and evaluated in a case study. The result show significant improved results compared with sequential scheduling heuristics.

Keywords: production and outbound distribution, integrated planning, heuristic, decomposition, integration

Procedia PDF Downloads 429
4940 A Theory of Aftercare for Human Trafficking Survivors: A Grounded Theory Analysis of Survivors and Aftercare Providers in South Africa

Authors: Robyn L. Curran, Joanne R. Naidoo, Gugu Mchunu

Abstract:

Along with the increasing awareness of human trafficking, is the acknowledgement that it is no longer just a social problem but also a significant public health problem that requires both increased knowledge and the specialist equipping of aftercare providers such as nurses who care for human trafficking survivors. Current discourse regarding aftercare of human trafficking survivors, is that approaches do not clearly explain the function or content of aftercare and what aftercare entails. Although psychological and medical aftercare are emphasized as important components, little practical attention is devoted to what these components actually involve and the effectiveness of current practice in aftercare. Review of the literature on the processes that take place from aftercare to empowerment, revealed the need for emphasis to be placed on the voices of survivors concerning their liberation from oppression. The aim of the study was to develop a theory for aftercare of human trafficking survivors, through analyzing the experiences of survivors and aftercare providers in shelters in three provinces in South Africa. Through using a Straussian grounded theory approach, the researcher developed a theory to inform care of human trafficking survivors in low resource settings using the voice of the survivors and those experienced in direct care of human trafficking survivors. Four human trafficking survivors and three aftercare providers from three shelters in three provinces in South Africa were individually interviewed in order for the theory to emerge. The findings of the study elicited a theoretical model of the renewed self, and the conditions that facilitate this process in care of human trafficking survivors. The process that human trafficking survivors navigate to empowerment require mutual collaboration of the aftercare provider and survivor as the survivor awakens vision, confronts reality, re-salvages autonomy and liberates self. Psychological resilience of the survivor facilitates the transition to renewed self. The recommendations of this study may improve the nursing care provided to human trafficking survivors and equip professionals with knowledge and skills to promote the process of renewing self for survivors.

Keywords: aftercare, aftercare providers, grounded theory, human trafficking survivors

Procedia PDF Downloads 276
4939 Posterior Acetabular Fractures-Optimizing the Treatment by Enhancing Practical Skills

Authors: Olivera Lupescu, Taina Elena Avramescu, Mihail Nagea, Alexandru Dimitriu

Abstract:

Acetabular fractures represent a real challenge due to their impact upon the long term function of the hip joint, and due to the risk of intra- and peri-operative complications especially that they affect young, active people. That is why treating these fractures require certain skills which must be exercised, regarding the pre-operative planning, as well as the execution of surgery.The authors retrospectively analyse 38 cases with acetabular fractures operated using the posterior approach in our hospital between 01.01.2013- 01.01.2015 for which complete medical records ensure a follow-up of 24 months, in order to establish the main causes of potential errors and to underline the methods for preventing them. This target is included in the Erasmus + project ‘Collaborative learning for enhancing practical skills for patient-focused interventions in gait rehabilitation after orthopedic surgery COR-skills’. This paper analyses the pitfalls revealed by these cases, as well as the measures necessary to enhance the practical skills of the surgeons who perform acetabular surgery. Pre-op planning matched the intra and post-operative outcome in 88% of the analyzed points, from 72% at the beginning to 94% in the last case, meaning that experience is very important in treating this injury. The main problems detected for the posterior approach were: nervous complications - 3 cases, 1 of them a complete paralysis of the sciatic nerve, which recovered 6 months after surgery, and in other 2 cases intra-articular position of the screws was demonstrated by post-operative CT scans, so secondary screw removal was necessary in these cases. We analysed this incident, too, due to lack of information about the relationship between the screws and the joint secondary to this approach. Septic complications appeared in 3 cases, 2 superficial and 1 profound (requiring implant removal). The most important problems were the reduction of the fractures and the positioning of the screws so as not to interfere with the the articular space. In posterior acetabular fractures, pre-op complex planning is important in order to achieve maximum treatment efficacy with minimum of risk; an optimal training of the surgeons insisting on the main points of potential mistakes ensure the success of the procedure, as well as a favorable outcome for the patient.

Keywords: acetabular fractures, articular congruency, surgical skills, vocational training

Procedia PDF Downloads 206
4938 Association of Severe Preeclampsia with Offspring Neurodevelopmental and Psychiatric Disorders: A Finnish Population-Based Cohort Study

Authors: Linghua Kong, Xinxia Chen, Mika Gissler, Catharina Lavebratt

Abstract:

Background: Prenatal exposure to preeclampsia has been associated with an increased risk of offspring attention-deficit/hyperactivity disorders (ADHD), autism spectrum disorder (ASD), and intellectual disability. However, little is known about the association between prenatal exposure to severe preeclampsia and neurodevelopmental and psychiatric disorders in offspring. Objective: This study aimed to assess the risk of maternal preeclampsia combined with perinatal problems, specifically low birth weight and prematurity, on offspring neuropsychiatric disorders. Methods: All singleton live births in Finland between 1996 and 2014 (n=1 012 723) were followed up in nation-wide registries until 2018. Main exposures included pre-eclampsia, small for gestational age, and delivery before 34 gestational weeks. Offspring neurodevelopmental and psychiatric disorders (ICD-10 codes) were examined as outcomes variables. Offspring birth year, sex, maternal age at delivery, parity, marital status at birth, mother's country of birth, maternal smoking, maternal gestational diabetes, maternal use of psychotropic medication during pregnancy, and maternal systemic inflammatory diseases were used as covariates. Risks for neurodevelopmental and psychiatric disorders were estimated using Cox proportional hazards modeling. Results: Of the 1 012 723 offspring, 25 901 (2.6%) were exposed to preeclampsia, and 93 281 (9.2%) were diagnosed with a neuropsychiatric disorder. Compared to births unexposed to preeclampsia, small for gestational age or delivery before 34 gestational weeks, those exposed to preeclampsia only had a 21% increase in the likelihood of any neuropsychiatric disorders after adjusting for potential confounding (adjusted HR=1.21, 95% CI: 1.15-1.26), while exposure to preeclampsia combined with small for gestational age or delivery before 34 gestational weeks had a more than twofold increased risk of having a child with neuropsychiatric disorders (adjusted HR=2.16, 95% CI: 2.02-2.32). The adjusted HR for neuropsychiatric disorders in offspring with small for gestational age or delivery before 34 gestational weeks only was 1.79 (95% CI: 1.73-1.83). In addition, the risk estimate in offspring exposed to both preeclampsia and perinatal problems was greater than those only exposed to preeclampsia for having personality disorders (adjusted HR=1.66; 95% CI: 1.07-2.57), intellectual disabilities (adjusted HR=3.47; 95% CI: 2.86-4.22), specific developmental disorders (adjusted HR=2.91; 95% CI: 2.69-3.15), ASD (adjusted HR=1.75; 95% CI: 1.42-2.17), ADHD and conduct disorders (adjusted HR=2.00; 95%CI: 1.76-2.27), and other behavioral and emotional disorders (adjusted HR=2.09; 95% CI: 1.84-2.37). Conclusion: In utero exposure to severe preeclampsia increased the risk of several neurodevelopmental and psychiatric disorders in offspring. Our findings are relevant to women with hypertensive disorders with regard to pregnancy consultation and management and may yield effective clues for the prevention of neurodevelopmental and psychiatric disorders in childhood.

Keywords: low birth weight, neurodevelopmental disorders, preeclampsia, prematurity, psychiatric disorders

Procedia PDF Downloads 147
4937 Guidelines for the Management Process Development of Research Journals in Order to Develop Suan Sunandha Rajabhat University to International Standards

Authors: Araya Yordchim, Rosjana Chandhasa, Suwaree Yordchim

Abstract:

This research aims to study guidelines on the development of management process for research journals in order to develop Suan Sunandha Rajabhat University to international standards. This research investigated affecting elements ranging from the format of the article, evaluation form for research article quality, the process of creating a scholarly journal, satisfaction level of those with knowledge and competency to conduct research, arisen problems, and solutions. Drawing upon the sample size of 40 persons who had knowledge and competency in conducting research and creating scholarly journal articles at an international level, the data for this research were collected using questionnaires as a tool. Through the usage of computer software, data were analyzed by using the statistics in the forms of frequency, percentage, mean, standard deviation, and multiple regression analysis. The majority of participants were civil servants with a doctorate degree, followed by civil servants with a master's degree. Among them, the suitability of the article format was rated at a good level while the evaluation form for research articles quality was assessed at a good level. Based on participants' viewpoints, the process of creating scholarly journals was at a good level, while the satisfaction of those who had knowledge and competency in conducting research was at a satisfactory level. The problems encountered were the difficulty in accessing the website. The solution to the problem was to develop a website with user-friendly accessibility, including setting up a Google scholar profile for the purpose of references counting and the articles being used for reference in real-time. Research article format influenced the level of satisfaction of those who had the knowledge and competency to conduct research with statistical significance at the 0.01 level. The research article quality assessment form (preface section, research article writing section, preparation for research article manuscripts section, and the original article evaluation form for the author) affected the satisfaction of those with knowledge and competency to conduct research with the statistical significance at the level of 0.01. The process of establishing journals had an impact on the satisfaction of those with knowledge and ability to conduct research with statistical significance at the level of .05

Keywords: guidelines, development of management, research journals, international standards

Procedia PDF Downloads 124
4936 A Multi-Output Network with U-Net Enhanced Class Activation Map and Robust Classification Performance for Medical Imaging Analysis

Authors: Jaiden Xuan Schraut, Leon Liu, Yiqiao Yin

Abstract:

Computer vision in medical diagnosis has achieved a high level of success in diagnosing diseases with high accuracy. However, conventional classifiers that produce an image to-label result provides insufficient information for medical professionals to judge and raise concerns over the trust and reliability of a model with results that cannot be explained. In order to gain local insight into cancerous regions, separate tasks such as imaging segmentation need to be implemented to aid the doctors in treating patients, which doubles the training time and costs which renders the diagnosis system inefficient and difficult to be accepted by the public. To tackle this issue and drive AI-first medical solutions further, this paper proposes a multi-output network that follows a U-Net architecture for image segmentation output and features an additional convolutional neural networks (CNN) module for auxiliary classification output. Class activation maps are a method of providing insight into a convolutional neural network’s feature maps that leads to its classification but in the case of lung diseases, the region of interest is enhanced by U-net-assisted Class Activation Map (CAM) visualization. Therefore, our proposed model combines image segmentation models and classifiers to crop out only the lung region of a chest X-ray’s class activation map to provide a visualization that improves the explainability and is able to generate classification results simultaneously which builds trust for AI-led diagnosis systems. The proposed U-Net model achieves 97.61% accuracy and a dice coefficient of 0.97 on testing data from the COVID-QU-Ex Dataset which includes both diseased and healthy lungs.

Keywords: multi-output network model, U-net, class activation map, image classification, medical imaging analysis

Procedia PDF Downloads 203
4935 Stability of Power System with High Penetration of Wind Energy: A Comprehensive Review

Authors: Jignesh Patel, Satish K. Joshi

Abstract:

This paper presents the literature review on the works done so far in the area of stability of power system with high penetration of Wind Power with other conventional power sources. Out of many problems, the voltage and frequency stability is of prime concern as it is directly related with the stable operation of power system. In this paper, different aspects of stability of power system, particularly voltage and frequency, Optimization of FACTS-Energy Storage devices is discussed.

Keywords: small singal stability, voltage stability, frequency stability, LVRT, wind power, FACTS

Procedia PDF Downloads 486
4934 Evaluation of the CRISP-DM Business Understanding Step: An Approach for Assessing the Predictive Power of Regression versus Classification for the Quality Prediction of Hydraulic Test Results

Authors: Christian Neunzig, Simon Fahle, Jürgen Schulz, Matthias Möller, Bernd Kuhlenkötter

Abstract:

Digitalisation in production technology is a driver for the application of machine learning methods. Through the application of predictive quality, the great potential for saving necessary quality control can be exploited through the data-based prediction of product quality and states. However, the serial use of machine learning applications is often prevented by various problems. Fluctuations occur in real production data sets, which are reflected in trends and systematic shifts over time. To counteract these problems, data preprocessing includes rule-based data cleaning, the application of dimensionality reduction techniques, and the identification of comparable data subsets to extract stable features. Successful process control of the target variables aims to centre the measured values around a mean and minimise variance. Competitive leaders claim to have mastered their processes. As a result, much of the real data has a relatively low variance. For the training of prediction models, the highest possible generalisability is required, which is at least made more difficult by this data availability. The implementation of a machine learning application can be interpreted as a production process. The CRoss Industry Standard Process for Data Mining (CRISP-DM) is a process model with six phases that describes the life cycle of data science. As in any process, the costs to eliminate errors increase significantly with each advancing process phase. For the quality prediction of hydraulic test steps of directional control valves, the question arises in the initial phase whether a regression or a classification is more suitable. In the context of this work, the initial phase of the CRISP-DM, the business understanding, is critically compared for the use case at Bosch Rexroth with regard to regression and classification. The use of cross-process production data along the value chain of hydraulic valves is a promising approach to predict the quality characteristics of workpieces. Suitable methods for leakage volume flow regression and classification for inspection decision are applied. Impressively, classification is clearly superior to regression and achieves promising accuracies.

Keywords: classification, CRISP-DM, machine learning, predictive quality, regression

Procedia PDF Downloads 144
4933 Enhancing the Aussie Optimism Positive Thinking Skills Program: Short-term Effects on Anxiety and Depression in Youth aged 9-11 Years Old

Authors: Rosanna M. Rooney, Sharinaz Hassan, Maryanne McDevitt, Jacob D. Peckover, Robert T. Kane

Abstract:

Anxiety and depression are the most common mental health problems experienced by Australian children and adolescents. Research into youth mental health points to the importance of considering emotional competence, parental influence on the child’s emotional development, and the fact that cognitions are still developing in childhood when designing and implementing positive psychology interventions. Additionally, research into such interventions has suggested the inclusion of a coaching component aimed at supporting those implementing the intervention enhances the effects of the intervention itself. In light of these findings and given the burden of anxiety and depression in the longer term, it is necessary to enhance the Aussie Optimism Positive Thinking Skills program and evaluate its efficacy in terms of children’s mental health outcomes. It was expected that the enhancement of the emotional and cognitive aspects of the Aussie Optimism Positive Thinking Skills program, the addition of coaching, and the inclusion of a parent manual would lead to significant prevention effects in internalizing problems at post-test, 6- and 18-months after the completion of the intervention. 502 students (9-11 years old) were randomly assigned to the intervention group (n = 347) or control group (n = 155). At each time point (baseline, post-test, 6-month follow-up, and 18-month follow-up), students completed a battery of self-report measures. The ten intervention sessions making up the enhanced Aussie Optimism Positive Thinking Skills program were run weekly. At post-test and 6-month follow-up, the intervention group reported significantly lower depression than the control group, with no group differences at the 18-month follow-up. The intervention group reported significantly lower anxiety than the control group only at the 6-month follow-up, with no group differences in the post-test or at the 18-month follow-up. Results suggest that the enhanced Aussie Optimism Positive Thinking Skills program can reduce depressive and anxious symptoms in the short term and highlight the importance of universally implemented positive psychology interventions.

Keywords: positive psychology, emotional competence, internalizing symptoms, universal implementation

Procedia PDF Downloads 68
4932 The Interdisciplinary Synergy Between Computer Engineering and Mathematics

Authors: Mitat Uysal, Aynur Uysal

Abstract:

Computer engineering and mathematics share a deep and symbiotic relationship, with mathematics providing the foundational theories and models for computer engineering advancements. From algorithm development to optimization techniques, mathematics plays a pivotal role in solving complex computational problems. This paper explores key mathematical principles that underpin computer engineering, illustrating their significance through a case study that demonstrates the application of optimization techniques using Python code. The case study addresses the well-known vehicle routing problem (VRP), an extension of the traveling salesman problem (TSP), and solves it using a genetic algorithm.

Keywords: VRP, TSP, genetic algorithm, computer engineering, optimization

Procedia PDF Downloads 15
4931 Generalized Central Paths for Convex Programming

Authors: Li-Zhi Liao

Abstract:

The central path has played the key role in the interior point method. However, the convergence of the central path may not be true even in some convex programming problems with linear constraints. In this paper, the generalized central paths are introduced for convex programming. One advantage of the generalized central paths is that the paths will always converge to some optimal solutions of the convex programming problem for any initial interior point. Some additional theoretical properties for the generalized central paths will be also reported.

Keywords: central path, convex programming, generalized central path, interior point method

Procedia PDF Downloads 327
4930 Sustainable Community Education: Strategies for Long-Term Impact

Authors: Kariman Abdelaziz Ahmed Ali Hamzawy

Abstract:

Amidst the growing global challenges facing communities, from climate change to educational gaps, sustainable community education has emerged as a vital tool for ensuring comprehensive and enduring development. This research aims to explore effective strategies for sustainable community education that can lead to long-term impacts on local communities. The study begins by defining the concept of sustainable education within a community context and reviews the current literature on the topic. It then presents case studies from various communities around the world where sustainable educational strategies have been successfully implemented. These case studies illustrate how sustainable education can enhance community engagement, build local capacities, and improve quality of life in sustainable ways. The findings from these studies are analyzed to identify the key factors contributing to the success of sustainable educational programs. These factors include partnerships between different sectors (governmental, private, and community), the innovative use of technology, and the adaptation of educational curricula to meet the unique needs of the community. The research also offers practical recommendations on designing and implementing sustainable educational programs, emphasizing the integration of formal and informal education, promoting lifelong learning, and developing local resources. It addresses potential challenges and ways to overcome them to ensure the long-term sustainability of these programs. In conclusion, the research provides a future vision of the role of sustainable education in building resilient and prosperous communities and highlights the importance of investing in education as a key driver of sustainable development. This study contributes to the ongoing discussion on achieving lasting impact through sustainable community education and offers a practical framework for stakeholders to adopt and implement these strategies.

Keywords: sustainable education, community education, Community engagement, local capacity building, educational technology

Procedia PDF Downloads 47
4929 What Are the Problems in the Case of Analysis of Selenium by Inductively Coupled Plasma Mass Spectrometry in Food and Food Raw Materials?

Authors: Béla Kovács, Éva Bódi, Farzaneh Garousi, Szilvia Várallyay, Dávid Andrási

Abstract:

For analysis of elements in different food, feed and food raw material samples generally a flame atomic absorption spectrometer (FAAS), a graphite furnace atomic absorption spectrometer (GF-AAS), an inductively coupled plasma optical emission spectrometer (ICP-OES) and an inductively coupled plasma mass spectrometer (ICP-MS) are applied. All the analytical instruments have different physical and chemical interfering effects analysing food and food raw material samples. The smaller the concentration of an analyte and the larger the concentration of the matrix the larger the interfering effects. Nowadays, it is very important to analyse growingly smaller concentrations of elements. From the above analytical instruments generally the inductively coupled plasma mass spectrometer is capable of analysing the smallest concentration of elements. The applied ICP-MS instrument has Collision Cell Technology (CCT) also. Using CCT mode certain elements have better detection limits with 1-3 magnitudes comparing to a normal ICP-MS analytical method. The CCT mode has better detection limits mainly for analysis of selenium (arsenic, germanium, vanadium, and chromium). To elaborate an analytical method for selenium with an inductively coupled plasma mass spectrometer the most important interfering effects (problems) were evaluated: 1) isobaric elemental, 2) isobaric molecular, and 3) physical interferences. Analysing food and food raw material samples an other (new) interfering effect emerged in ICP-MS, namely the effect of various matrixes having different evaporation and nebulization effectiveness, moreover having different quantity of carbon content of food, feed and food raw material samples. In our research work the effect of different water-soluble compounds furthermore the effect of various quantity of carbon content (as sample matrix) were examined on changes of intensity of selenium. So finally we could find “opportunities” to decrease the error of selenium analysis. To analyse selenium in food, feed and food raw material samples, the most appropriate inductively coupled plasma mass spectrometer is a quadrupole instrument applying a collision cell technique (CCT). The extent of interfering effect of carbon content depends on the type of compounds. The carbon content significantly affects the measured concentration (intensities) of Se, which can be corrected using internal standard (arsenic or tellurium).

Keywords: selenium, ICP-MS, food, food raw material

Procedia PDF Downloads 508