Search results for: dual purpose cask
6837 Benefit Of Waste Collection Route Optimisation
Authors: Bojana Tot, Goran BošKović, Goran Vujić
Abstract:
Route optimisation is a process of planning one or multiple routes, with the purpose of minimizing overall costs, while achieving the highest possible performance under a set of given constraints. It combines routing or route planning, which is the process of creating the most cost-effective route by minimizing the distance or travelled time necessary to reach a set of planned stops, and route scheduling, which is the process of assigning an arrival and service time for each stop, with drivers being given shifts that adhere to their working hours. The objective of this paper is to provide benefits on the implementation of waste collection route optimisation and thus achieve economic efficiency for public utility companies, better service for citizens and positive environment and health.Keywords: waste management, environment, collection route optimisation, GIS
Procedia PDF Downloads 1616836 Eating Behavior and Nutritional Status of Pregnant Women Living in Keserwan Lebanon
Authors: Cynthia Zgheib, Yonna Sacre
Abstract:
Pregnancy, this particular moment in the life of a woman, requires monitoring of eating behavior changes. However, the food choices during pregnancy should be varied and healthy, including the consumption of different food groups. Nutritional status is the process of acquisition and consumption of food. Therefore, a varied diet is associated with good nutritional status. This is why the nutrition education is a strategy commonly applied to improve maternal nutrition during pregnancy. Thus, it is crucial to assess 'The eating behavior and nutritional status of pregnant women living in Keserwan Lebanon.' In order to evaluate the association of different persona, socioeconomic and sociodemographic factors with the eating behavior and nutrition in the concerned study category, a cross-sectional descriptive study was conducted on a sample of 150 pregnant women aging between 18 and 40 years randomly selected from the hospitals and clinics located in Keserwan area and equally distributed between different cities and villages of the area according to altitude. The purpose of this study was to evaluate the eating behavior of the concerned population and to compare it to the recommendation of the food guide pyramid, their level of food awareness and finally to analyze their blood tests in order to detect any nutrients deficiency that they may face during the course of their pregnancy. Sociodemographic, lifestyle, eating behaviour, health, eating patterns, awareness, and food frequency questionnaire (FFQ) were collected through a validated questionnaire specifically adapted for the purpose of the study. Statistical analysis was carried out, and multivariate models were used in order to evaluate the association between several independent variables and the eating behaviour and nutritional status of Lebanese pregnant women The final analysis has shown that 48.7% of pregnant women were aged between 30 and 40 years old, 56% had a normal BMI between 18.5 and 24.9, thus age affects the eating behavior, so the older are the pregnant women, and the healthier is their eating behavior. In fact, 80.7% had acceptable food behavior which is based on an equilibrium between both quantity and quality of food, although the recommended foods are foods found in the food pyramid and available in the Lebanese diet. In addition, 68% had an acceptable level of awareness concerning the health importance of good eating habits, therefore, it is positively affecting their food choices. Moreover, 50 % have an acceptable nutritional status which is confirmed by their biological tests. Future governmental or national studies and programs could be settled aiming to increase the awareness about the good eating behaviors and nutritional status of Lebanese pregnant women.Keywords: eating behavior, nutritional status, level of awareness, pregnant woman
Procedia PDF Downloads 2566835 Governance Models of Higher Education Institutions
Authors: Zoran Barac, Maja Martinovic
Abstract:
Higher Education Institutions (HEIs) are a special kind of organization, with its unique purpose and combination of actors. From the societal point of view, they are central institutions in the society that are involved in the activities of education, research, and innovation. At the same time, their societal function derives complex relationships between involved actors, ranging from students, faculty and administration, business community and corporate partners, government agencies, to the general public. HEIs are also particularly interesting as objects of governance research because of their unique public purpose and combination of stakeholders. Furthermore, they are the special type of institutions from an organizational viewpoint. HEIs are often described as “loosely coupled systems” or “organized anarchies“ that implies the challenging nature of their governance models. Governance models of HEIs describe roles, constellations, and modes of interaction of the involved actors in the process of strategic direction and holistic control of institutions, taking into account each particular context. Many governance models of the HEIs are primarily based on the balance of power among the involved actors. Besides the actors’ power and influence, leadership style and environmental contingency could impact the governance model of an HEI. Analyzing them through the frameworks of institutional and contingency theories, HEI governance models originate as outcomes of their institutional and contingency adaptation. HEIs tend to fit to institutional context comprised of formal and informal institutional rules. By fitting to institutional context, HEIs are converging to each other in terms of their structures, policies, and practices. On the other hand, contingency framework implies that there is no governance model that is suitable for all situations. Consequently, the contingency approach begins with identifying contingency variables that might impact a particular governance model. In order to be effective, the governance model should fit to contingency variables. While the institutional context creates converging forces on HEI governance actors and approaches, contingency variables are the causes of divergence of actors’ behavior and governance models. Finally, an HEI governance model is a balanced adaptation of the HEIs to the institutional context and contingency variables. It also encompasses roles, constellations, and modes of interaction of involved actors influenced by institutional and contingency pressures. Actors’ adaptation to the institutional context brings benefits of legitimacy and resources. On the other hand, the adaptation of the actors’ to the contingency variables brings high performance and effectiveness. HEI governance models outlined and analyzed in this paper are collegial, bureaucratic, entrepreneurial, network, professional, political, anarchical, cybernetic, trustee, stakeholder, and amalgam models.Keywords: governance, governance models, higher education institutions, institutional context, situational context
Procedia PDF Downloads 3366834 Voluntary Information of Intellectual Capital Disclosed Online by Public Spanish Universities
Authors: Yolanda Ramírez, Ángel Tejada, Agustín Baidez
Abstract:
The purpose of this paper is to examine the quality of voluntary intellectual capital disclosure by public Spanish universities on their websites. To this end, a content analysis was used to analyze the websites of 50 public Spanish universities i 2016. The results of this study show that human capital was the most disclosed category with relational capital being the least frequently disclosed in Spain. However, the quality of structural capital disclosures was higher than relational and human capital. Finally, most IC disclosures were narrative in nature.Keywords: intellectual capital, quality disclosure, websites, universities, Spain
Procedia PDF Downloads 2316833 A User-Directed Approach to Optimization via Metaprogramming
Authors: Eashan Hatti
Abstract:
In software development, programmers often must make a choice between high-level programming and high-performance programs. High-level programming encourages the use of complex, pervasive abstractions. However, the use of these abstractions degrades performance-high performance demands that programs be low-level. In a compiler, the optimizer attempts to let the user have both. The optimizer takes high-level, abstract code as an input and produces low-level, performant code as an output. However, there is a problem with having the optimizer be a built-in part of the compiler. Domain-specific abstractions implemented as libraries are common in high-level languages. As a language’s library ecosystem grows, so does the number of abstractions that programmers will use. If these abstractions are to be performant, the optimizer must be extended with new optimizations to target them, or these abstractions must rely on existing general-purpose optimizations. The latter is often not as effective as needed. The former presents too significant of an effort for the compiler developers, as they are the only ones who can extend the language with new optimizations. Thus, the language becomes more high-level, yet the optimizer – and, in turn, program performance – falls behind. Programmers are again confronted with a choice between high-level programming and high-performance programs. To investigate a potential solution to this problem, we developed Peridot, a prototype programming language. Peridot’s main contribution is that it enables library developers to easily extend the language with new optimizations themselves. This allows the optimization workload to be taken off the compiler developers’ hands and given to a much larger set of people who can specialize in each problem domain. Because of this, optimizations can be much more effective while also being much more numerous. To enable this, Peridot supports metaprogramming designed for implementing program transformations. The language is split into two fragments or “levels”, one for metaprogramming, the other for high-level general-purpose programming. The metaprogramming level supports logic programming. Peridot’s key idea is that optimizations are simply implemented as metaprograms. The meta level supports several specific features which make it particularly suited to implementing optimizers. For instance, metaprograms can automatically deduce equalities between the programs they are optimizing via unification, deal with variable binding declaratively via higher-order abstract syntax, and avoid the phase-ordering problem via non-determinism. We have found that this design centered around logic programming makes optimizers concise and easy to write compared to their equivalents in functional or imperative languages. Overall, implementing Peridot has shown that its design is a viable solution to the problem of writing code which is both high-level and performant.Keywords: optimization, metaprogramming, logic programming, abstraction
Procedia PDF Downloads 886832 A Study of the Relationship between Time Management Behaviour and Job Satisfaction of Higher Education Institutes in India
Authors: Sania K. Rao, Feza T. Azmi
Abstract:
The purpose of the present study is to explore the relationship between time management behaviour and job satisfaction of academicians of higher education institutes in India. The analyses of this study were carried out with AMOS (version 20.0); and Confirmatory Factor Analysis (CFA) and Structural Equation Modelling (SEM) were conducted. The factor analysis and findings show that perceived control of time serves as the partial mediating factor to have a significant and positive influence on job satisfaction. Further, at the end, a number of suggestions to improve one’s time management behaviour were provided.Keywords: time management behaviour, job satisfaction, higher education, India, mediation analysis
Procedia PDF Downloads 3896831 Information Needs and Seeking Behaviour of Postgraduate Students of Kohat University of Science and Technology, Khyber Pakhtunkhwa, Pakistan
Authors: Saeed Ullah Jan, Muhammad Ali, Misbah Ullah Awan
Abstract:
Purpose: This study investigated the information needs and seeking behaviour, and hurdles to information seeking of Post Graduate students of Kohat University of Science and Technology (KUST), Khyber Pakhtunkhwa. It focused on the information requirements of the post-graduate students of the university, the pattern they use for seeking information, and the difficulties they face while seeking information. Design/Methodology/approach: This study used a quantitative approach, adapting a survey questionnaire method for data collection. The population of this study was composed of M.Phil. and Ph.D. students of 2019 and 2020 in the faculties of Physical and Numerical Sciences, Chemical and Pharmaceutical Sciences, Biological Sciences, and Social Sciences of KUST. The sample size was 260. Students were selected randomly. The study response rate was 77%, and data were analyzed through SPSS (22 versions). Key findings: The study revealed that Most students' information needs were for study and research activities, new knowledge, and career development. To fulfill these needs, the scholars use various sources and resources. The sources they used for information needs were journal articles, textbooks, and research projects commonly. For the information-seeking purpose, often, students prefer books that have some importance. The other factors that played an essential role in selecting material were topical relevance, Novelty, Recommended by colleagues, and publisher's reputation. Most of the students thought that Book Exhibitions, Open Access systems in the Library, and the Display of new arrivals could enhance the students' information-seeking. The main problem seeking information was faced by them was a shortage of printed information resources. Overall they wanted more facilities, enhancement in the library collection, and better services. Delimitations of the study: This study has not included 1) BS and M.Sc. Students of KUST; 2) The colleges and institutions affiliated with KUST; 3) This study was delimited only to the Post Graduate students of KUST. Practical implication(s): The findings of the study motivate the policymakers and authorities of KUST to restructure the information literacy programs to fulfill the scholars' information needs. It may inform the policymakers to know the difficulties faced by scholars during information seeking. Contribution to the knowledge: No significant work has been done on the students' information needs and seeking behaviour at KUST. The study analyzed the information needs and seeking behaviour of post graduate students. It brought a clear picture of information needs and seeking behaviour of scholars and addressed the problems faced by them during the seeking process.Keywords: information needs of Pakistan, information-seeking behaviors, postgraduate students, university libraries, Kohat university of science and technology, Khyber Pakhtunkhwa, Pakistan
Procedia PDF Downloads 916830 Forensic Analysis of MTDNA Hypervariable Region HVII by Sanger Sequence Method in Iraq Population
Authors: H. Imad, Y. Cheah, O. Aamera
Abstract:
The aims of this research are to study the mitochondrial non-coding region by using the Sanger sequencing technique and establish the degree of variation characteristics of a fragment. FTA® Technology (FTA™ paper DNA extraction) utilized to extract DNA. A portion of a non-coding region encompassing positions 37 to 340 amplified in accordance with the Anderson reference sequence. PCR products purified by EZ-10 spin column then sequenced and detected by using the ABI 3730xL DNA Analyzer. New polymorphic positions 57, 63, and 101 are described may in future be suitable sources for identification purpose. The data obtained can be used to identify variable nucleotide positions characterized by frequent occurrence most promising for identification variants.Keywords: encompassing nucleotide positions 37 to 340, HVII, Iraq, mitochondrial DNA, polymorphism, frequency
Procedia PDF Downloads 7616829 Preparation of Fe, Cr Codoped TiO2 Nanostructure for Phenol Removal from Wastewaters
Authors: N. Nowzari-Dalini, S. Sabbaghi
Abstract:
Phenol is a hazardous material found in many industrial wastewaters. Photocatalytic degradation and furthermore catalyst doping are promising techniques in purpose of effective phenol removal, which have been studied comprehensively in this decade. In this study, Fe, Cr codoped TiO2 were prepared by sol-gel method, and its photocatalytic activity was investigated through degradation of phenol under visible light. The catalyst was characterized by XRD, SEM, FT-IR, BET, and EDX. The results showed that nanoparticles possess anatase phase, and the average size of nanoparticles was about 21 nm. Also, photocatalyst has significant surface area. Effect of experimental parameters such as pH, irradiation time, pollutant concentration, and catalyst concentration were investigated by using Design-Expert® software. 98% of phenol degradation was achieved after 6h of irradiation.Keywords: doping, metals, sol-gel, titanium dioxide, wastewater
Procedia PDF Downloads 3286828 Experimental Analysis of the Origins of the Anisotropy Behavior in the 2017 AA Aluminum Alloy
Authors: May Abdelghani
Abstract:
The present work is devoted to the study of the microstructural anisotropy in mechanical cyclic behavior of the 2017AA aluminum alloy which is widely used in the aerospace industry. The main purpose of the study is to investigate the microstructural origins of this anisotropy already confirmed in our previous work in 2017AA aluminum alloy. To do this, we have used the microstructural analysis resources such as Scanning Electron Microscope (SEM) to see the differences between breaks from different directions of cyclic loading. Another resource of investigation was used in this study is that the EBSD method, which allows us to obtain a mapping of the crystallographic texture of our material. According to the obtained results in the microscopic analysis, we are able to identify the origins of the anisotropic behavior at the macroscopic scale.Keywords: fatigue damage, cyclic behavior, anisotropy, microstructural analysis
Procedia PDF Downloads 4126827 Lean Models Classification: Towards a Holistic View
Authors: Y. Tiamaz, N. Souissi
Abstract:
The purpose of this paper is to present a classification of Lean models which aims to capture all the concepts related to this approach and thus facilitate its implementation. This classification allows the identification of the most relevant models according to several dimensions. From this perspective, we present a review and an analysis of Lean models literature and we propose dimensions for the classification of the current proposals while respecting among others the axes of the Lean approach, the maturity of the models as well as their application domains. This classification allowed us to conclude that researchers essentially consider the Lean approach as a toolbox also they design their models to solve problems related to a specific environment. Since Lean approach is no longer intended only for the automotive sector where it was invented, but to all fields (IT, Hospital, ...), we consider that this approach requires a generic model that is capable of being implemented in all areas.Keywords: lean approach, lean models, classification, dimensions, holistic view
Procedia PDF Downloads 4356826 Development of Gamma Configuration Stirling Engine Using Polymeric and Metallic Additive Manufacturing for Education
Authors: J. Otegui, M. Agirre, M. A. Cestau, H. Erauskin
Abstract:
The increasing accessibility of mid-priced additive manufacturing (AM) systems offers a chance to incorporate this technology into engineering instruction. Furthermore, AM facilitates the creation of manufacturing designs, enhancing the efficiency of various machines. One example of these machines is the Stirling cycle engine. It encompasses complex thermodynamic machinery, revealing various aspects of mechanical engineering expertise upon closer inspection. In this publication, the application of Stirling Engines fabricated via additive manufacturing techniques will be showcased for the purpose of instructive design and product enhancement. The performance of a Stirling engine's conventional displacer and piston is contrasted. The outcomes of utilizing this instructional tool in teaching are demonstrated.Keywords: 3D printing, additive manufacturing, mechanical design, stirling engine.
Procedia PDF Downloads 516825 Helping Older Users Staying Connected
Authors: Q. Raza
Abstract:
Getting old is inevitable, tasks which were once simple are now a daily struggle. This paper is a study of how older users interact with web application based upon a series of experiments. The experiments conducted involved 12 participants and the experiments were split into two parts. The first set gives the users a feel of current social networks and the second set take into considerations from the participants and the results of the two are compared. This paper goes in detail on the psychological aspects such as social exclusion, Metacognition memory and Therapeutic memories and how this relates to users becoming isolated from society, social networking can be the roof on a foundation of successful computer interaction. The purpose of this paper is to carry out a study and to propose new ideas to help users to be able to use social networking sites easily and efficiently.Keywords: cognitive psychology, special memory, social networking and human computer interaction
Procedia PDF Downloads 4456824 The Impact of Religiosity and Ethical Senstivity on Accounting Students’ Ethical Judgement Decision
Authors: Ahmed Mohamed Alteer
Abstract:
The purpose of this paper is come up with theoretical model through understanding the causes and motives behind the auditors' sensitive to ethical dilemma through Auditing Students. This study considers the possibility of auditing students’ ethical judgement being affected by two individual factors, namely ethical sensitivity and religiosity. The finding of this study that there are several ethical theories a models provide a significant understanding of ethical issues and supported that ethical sensitivity and religiosity may affect ethical judgement decision among accounting students. The suggestion model proposes that student ethical judgement is influenced by their ethical sensitivity and their religiosity. Nonetheless, the influence of religiosity on ethical judgement is expected to be via ethical sensitivity.Keywords: asccounting students, ethical sensitivity, religiosity, ethical judgement
Procedia PDF Downloads 6196823 Electric Vehicles Charging Stations: Strategies and Algorithms Integrated in a Power-Sharing Model
Authors: Riccardo Loggia, Francesca Pizzimenti, Francesco Lelli, Luigi Martirano
Abstract:
Recent air emission regulations point toward the complete electrification of road vehicles. An increasing number of users are beginning to prefer full electric or hybrid, plug-in vehicle solutions, incentivized by government subsidies and the lower cost of electricity compared to gasoline or diesel. However, it is necessary to optimize charging stations so that they can simultaneously satisfy as many users as possible. The purpose of this paper is to present optimization algorithms that enable simultaneous charging of multiple electric vehicles while ensuring maximum performance in relation to the type of charging station.Keywords: electric vehicles, charging stations, sharing model, fast charging, car park, power profiles
Procedia PDF Downloads 1546822 The Effect of Mood and Creativity on Product Creativity: Using LEGO as a Hands-On Activity
Authors: Kaewmart Pongakkasira
Abstract:
This study examines whether construction of LEGO reflects affective states and creativity as the clue to develop effective learning resources for classrooms. For this purpose, participants are instructed to complete a hands-on activity by using LEGO. Prior to the experiment, participants’ affective states and creativity are measured by the Positive and Negative Affect Schedule (PANAS) and the Alternate Uses Task (AUT), respectively. Then, subjects are asked to freely combine LEGO as unusual as possible versus constraint LEGO combination and named the LEGO products. Creativity of the LEGO products is scored for originality and abstractness of titles. It is hypothesized that individuals’ mood and creativity may affect product creativity. If so, there might be correlation among the three parameters.Keywords: affective states, creativity, hands-on activity, LEGO
Procedia PDF Downloads 3736821 Technical Feasibility Analysis of PV Water Pumping System in Khuzestan Province-Iran
Authors: M.Goodarzi, M.Mohammadi, M. Rezaee
Abstract:
The technical analysis of using solar energy and electricity for water pumping in the Khuzestan province in Iran is investigated. For this purpose, the ecological conditions such as the weather data, air clearness and sunshine hours are analyzed. The nature of groundwater in the region was examined in terms of depth, static and dynamic head, water pumping rate.Three configurations for solar water pumping system were studied in this thesis; AC solar water pumping with storage battery, AC solar water pumping with storage tank and DC direct solar water pumping.Keywords: technical feasibility, solar energy, photovoltaic systems, photovoltaic water pumping system
Procedia PDF Downloads 6306820 Self-Disclosure and Suicide
Authors: Netta Horesh Reinman
Abstract:
The inability to communicate feelings and thoughts to people close to oneself may be an important risk factor for suicidal behavior. This inability has been operationalized in the concept of “self-disclosure.” The purpose of this paper was to evaluate the correlation of self-disclosure with suicidal behavior in adolescents. Eighty consecutive admissions to an adolescent psychiatric inpatient unit were evaluated. Thirty-four were suicide attempters, 18 were suicidal ideators, and 18 were non-suicidal. Assessment measures included the Child Suicide Potential Scale, the Suicide Intent Scale, the Suicide Ideation Scale, and the Self-Disclosure Scale. The results show that low self-disclosure levels are associated with suicidal thinking, suicide attempts and suicidal attitudes. Thus, low self-disclosure may well be a risk factor worthy of further evaluation in the attempt to understand adolescent suicidal behavior.Keywords: self disclosure, suicide, adolescents, treatment
Procedia PDF Downloads 1226819 Miniaturized PVC Sensors for Determination of Fe2+, Mn2+ and Zn2+ in Buffalo-Cows’ Cervical Mucus Samples
Authors: Ahmed S. Fayed, Umima M. Mansour
Abstract:
Three polyvinyl chloride membrane sensors were developed for the electrochemical evaluation of ferrous, manganese and zinc ions. The sensors were used for assaying metal ions in cervical mucus (CM) of Egyptian river buffalo-cows (Bubalus bubalis) as their levels vary dependent on cyclical hormone variation during different phases of estrus cycle. The presented sensors are based on using ionophores, β-cyclodextrin (β-CD), hydroxypropyl β-cyclodextrin (HP-β-CD) and sulfocalix-4-arene (SCAL) for sensors 1, 2 and 3 for Fe2+, Mn2+ and Zn2+, respectively. Dioctyl phthalate (DOP) was used as the plasticizer in a polymeric matrix of polyvinylchloride (PVC). For increasing the selectivity and sensitivity of the sensors, each sensor was enriched with a suitable complexing agent, which enhanced the sensor’s response. For sensor 1, β-CD was mixed with bathophenanthroline; for sensor 2, porphyrin was incorporated with HP-β-CD; while for sensor 3, oxine was the used complexing agent with SCAL. Linear responses of 10-7-10-2 M with cationic slopes of 53.46, 45.01 and 50.96 over pH range 4-8 were obtained using coated graphite sensors for ferrous, manganese and zinc ionic solutions, respectively. The three sensors were validated, according to the IUPAC guidelines. The obtained results by the presented potentiometric procedures were statistically analyzed and compared with those obtained by atomic absorption spectrophotometric method (AAS). No significant differences for either accuracy or precision were observed between the two techniques. Successful application for the determination of the three studied cations in CM, for the purpose to determine the proper time for artificial insemination (AI) was achieved. The results were compared with those obtained upon analyzing the samples by AAS. Proper detection of estrus and correct time of AI was necessary to maximize the production of buffaloes. In this experiment, 30 multi-parous buffalo-cows were in second to third lactation and weighting 415-530 kg, and were synchronized with OVSynch protocol. Samples were taken in three times around ovulation, on day 8 of OVSynch protocol, on day 9 (20 h before AI) and on day 10 (1 h before AI). Beside analysis of trace elements (Fe2+, Mn2+ and Zn2+) in CM using the three sensors, the samples were analyzed for the three cations and also Cu2+ by AAS in the CM samples and blood samples. The results obtained were correlated with hormonal analysis of serum samples and ultrasonography for the purpose of determining of the optimum time of AI. The results showed significant differences and powerful correlation with Zn2+ composition of CM during heat phase and the ovulation time, indicating that the parameter could be used as a tool to decide optimal time of AI in buffalo-cows.Keywords: PVC Sensors, buffalo-cows, cyclodextrins, atomic absorption spectrophotometry, artificial insemination, OVSynch protocol
Procedia PDF Downloads 2196818 3 Dimensional (3D) Assesment of Hippocampus in Alzheimer’s Disease
Authors: Mehmet Bulent Ozdemir, Sultan Çagirici, Sahika Pinar Akyer, Fikri Turk
Abstract:
Neuroanatomical appearance can be correlated with clinical or other characteristics of illness. With the introduction of diagnostic imaging machines, producing 3D images of anatomic structures, calculating the correlation between subjects and pattern of the structures have become possible. The aim of this study is to examine the 3D structure of hippocampus in cases with Alzheimer disease in different dementia severity. For this purpose, 62 female and 38 male- 68 patients’s (age range between 52 and 88) MR scanning were imported to the computer. 3D model of each right and left hippocampus were developed by a computer aided propramme-Surf Driver 3.5. Every reconstruction was taken by the same investigator. There were different apperance of hippocampus from normal to abnormal. In conclusion, These results might improve the understanding of the correlation between the morphological changes in hippocampus and clinical staging in Alzheimer disease.Keywords: Alzheimer disease, hippocampus, computer-assisted anatomy, 3D
Procedia PDF Downloads 4816817 Intellectual Property Law as a Tool to Enhance and Sustain Museums in Digital Era
Authors: Nayira Ahmed Galal Elden Hassan, Amr Mostafa Awad Kassem
Abstract:
The management of Intellectual Property (IP) in museums presents a multifaceted challenge, requiring a balance between granting access to cultural assets and maintaining control over them. In the digital age, IP has emerged as a critical aspect of museum operations, encompassing valuable assets within collections and museum-generated content. Effective IP management enables museums to generate revenue, protect rights, and promote cultural heritage while leveraging digital technologies. Opportunities such as e-commerce and licensing can drive economic growth, but they also introduce complexities related to IP protection and regulation. This study explores the dual nature of IP assets—collection-based and museum-generated—highlighting their implications for sustainability and cultural preservation. The analysis includes examples such as the German State Museum’s management of replicas from the Nefertiti bust, showcasing the challenges museums face when navigating IP frameworks. The research underscores the importance of a comprehensive understanding of IP laws to prevent legal disputes, reputational risks, and revenue loss. By adopting an analytical and comparative methodology, this paper examines museums that have effectively implemented IP rules to enhance their operations and sustain their resources. It investigates how IP management can help museums fulfill their mission of community engagement, education, and outreach while ensuring long-term sustainability. The findings demonstrate that balanced IP strategies are essential for securing financial stability, safeguarding cultural heritage, and adapting to the demands of the digital era. This research seeks to explore how museums can effectively fulfill their mission of community engagement, education, and outreach while ensuring long-term sustainability. It examines the extent to which intellectual property (IP) management can contribute to achieving these objectives, focusing on the benefits and challenges associated with adopting IP management strategies. Additionally, the study addresses the question of ownership by investigating who holds the rights to cultural assets and how these rights can be managed effectively to align with both institutional goals and the preservation of cultural heritage.The findings underscore the pivotal role of effective IP management in empowering museums to navigate the digital landscape, maximize revenue streams, and safeguard cultural heritage. The study emphasizes the necessity of adopting a balanced approach to IP management, which aligns institutional goals with the ethical and legal considerations of cultural heritage preservation.Keywords: intellectual property, museums, IP management, digital technologies, sustainability, cultural heritage
Procedia PDF Downloads 56816 Effect of Low Level Laser for Athletic Achilles Tendinopathy: A Systematic Review
Authors: Sameh Eldaly, Rola Essam
Abstract:
Objective: The purpose of this study was to determine the benefits of low-level laser therapy for Athletic Achilles Tendinopathy. Data sources: Search strategies were conducted on 2 Randomized control trial and one pilot study. Results: three trials (103 participants) were analyzed. Laser therapy associated to eccentric exercises, when compared to eccentric exercises and placebo, had low to very low certainty of evidence in pain and function assessment. Conclusion: those three trials evidenced low to very low effect of LLLT, and the results are insufficient to support the routine use LLLT for Achilles tendinopathy.Keywords: achilles tendinopathy, evidence-based, low-level laser therapy, review
Procedia PDF Downloads 816815 Development and Mineral Profile Analysis of Fruit, Vegetable and Wild Herb Based Juices to Be Consumed in Elderly Centres in Durban, South Africa
Authors: Mkhize Xolile, Davies Theopheluis
Abstract:
The purpose of the study was to develop a variety of fruit, vegetable and indigenous wild herb (amaranth) based juices, which can increase mineral consumption (of Ca, Fe, K, Mg, Zn). Ten samples of juice varieties were developed. The concentration range for the standards was between 10 and 150 ppm. Standards and samples were analysed using Perkin Elmer Atomic Absorption Spectrophotometer and the AAnalyst 400 model was used. The indigenous herb based juice was the most nutritious than all the other varieties developed. Mg and Fe could contribute significantly in improving cardio vascular health, bone functionality and immunity of elderly.Keywords: minerals, elderly, juice, hypertension, intervention
Procedia PDF Downloads 2716814 Multilevel Gray Scale Image Encryption through 2D Cellular Automata
Authors: Rupali Bhardwaj
Abstract:
Cryptography is the science of using mathematics to encrypt and decrypt data; the data are converted into some other gibberish form, and then the encrypted data are transmitted. The primary purpose of this paper is to provide two levels of security through a two-step process, rather than transmitted the message bits directly, first encrypted it using 2D cellular automata and then scrambled with Arnold Cat Map transformation; it provides an additional layer of protection and reduces the chance of the transmitted message being detected. A comparative analysis on effectiveness of scrambling technique is provided by scrambling degree measurement parameters i.e. Gray Difference Degree (GDD) and Correlation Coefficient.Keywords: scrambling, cellular automata, Arnold cat map, game of life, gray difference degree, correlation coefficient
Procedia PDF Downloads 3776813 The Relationship between Land Use Change and Runoff
Authors: Thanutch Sukwimolseree, Preeyaphorn Kosa
Abstract:
Many problems are occurred in watershed due to human activity and economic development. The purpose is to determine the effects of the land use change on surface runoff using land use map on 1980, 2001 and 2008 and daily weather data during January 1, 1979 to September 30, 2010 applied to SWAT. The results can be presented that the polynomial equation is suitable to display that relationship. These equations for land use in 1980, 2001 and 2008 are consisted of y = -0.0076x5 + 0.1914x4–1.6386x3 + 6.6324x2–8.736x + 7.8023(R2 = 0.9255), y = -0.0298x5 + 0.8794x4 - 9.8056x3 + 51.99x2 - 117.04x + 96.797; (R2 = 0.9186) and y = -0.0277x5 + 0.8132x4 - 8.9598x3 + 46.498x2–101.83x +81.108 (R2 = 0.9006), respectively. Moreover, if the agricultural area is the largest area, it is a sensitive parameter to concern surface runoff.Keywords: land use, runoff, SWAT, upper Mun River basin
Procedia PDF Downloads 3746812 Identification of Service Quality Determinants in the Hotel Sector - A Conceptual Review
Authors: Asem M. Othman
Abstract:
The expansion of the hospitality industry is unmistakable. Services, by nature, are intangible. Hence, service quality, in general, is a complicated process to be measured and evaluated. Hotels, as a service sector and part of the hospitality industry, are growing rapidly. This research paper was carried out to identify the quality determinants that may affect hotel guests’ service quality perception. In this research paper, each quality determinant will be discussed, illustrated, and justified thoroughly via a systematic literature review. The purpose of this paper is to set the stage to measure the significant influence of the service quality determinants on guest satisfaction. The knowledge produced from this study will assist practitioners and/or hotel service providers to imply into their policies.Keywords: service quality, hotel service, quality management, quality determinants
Procedia PDF Downloads 2716811 Factor Associated with Uncertainty Undergoing Hematopoietic Stem Cell Transplantation
Authors: Sandra Adarve, Jhon Osorio
Abstract:
Uncertainty has been studied in patients with different types of cancer, except in patients with hematologic cancer and undergoing transplantation. The purpose of this study was to identify factors associated with uncertainty in adults patients with malignant hemato-oncology diseases who are scheduled to undergo hematopoietic stem cell transplantation based on Merle Mishel´s Uncertainty theory. This was a cross-sectional study with an analytical purpose. The study sample included 50 patients with leukemia, myeloma, and lymphoma selected by non-probability sampling by convenience and intention. Sociodemographic and clinical variables were measured. Mishel´s Scale of Uncertainty in Illness was used for the measurement of uncertainty. A bivariate and multivariate analyses were performed to explore the relationships and associations between the different variables and uncertainty level. For this analysis, the distribution of the uncertainty scale values was evaluated through the Shapiro-Wilk normality test to identify statistical tests to be used. A multivariate analysis was conducted through a logistic regression using step-by-step technique. Patients were 18-74 years old, with a mean age of 44.8. Over time, the disease course had a median of 9.5 months, an opportunity was found in the performance of the transplantation of < 20 days for 50% of the patients. Regarding the uncertainty scale, a mean score of 95.46 was identified. When the dimensions of the scale were analyzed, the mean score of the framework of stimuli was 25.6, of cognitive ability was 47.4 and structure providers was 22.8. Age was identified to correlate with the total uncertainty score (p=0.012). Additionally, a statistically significant difference was evidenced between different religious creeds and uncertainty score (p=0.023), education level (p=0.012), family history of cancer (p=0.001), the presence of comorbidities (p=0.023) and previous radiotherapy treatment (p=0.022). After performing logistic regression, previous radiotherapy treatment (OR=0.04 IC95% (0.004-0.48)) and family history of cancer (OR=30.7 IC95% (2.7-349)) were found to be factors associated with the high level of uncertainty. Uncertainty is present in high levels in patients who are going to be subjected to bone marrow transplantation, and it is the responsibility of the nurse to assess the levels of uncertainty and the presence of factors that may contribute to their presence. Once it has been valued, the uncertainty must be intervened from the identified associated factors, especially all those that have to do with the cognitive capacity. This implies the implementation and design of intervention strategies to improve the knowledge related to the disease and the therapeutic procedures to which the patients will be subjected. All interventions should favor the adaptation of these patients to their current experience and contribute to seeing uncertainty as an opportunity for growth and transcendence.Keywords: hematopoietic stem cell transplantation, hematologic diseases, nursing, uncertainty
Procedia PDF Downloads 1666810 Alteration of Bone Strength in Osteoporosis of Mouse Femora: Computational Study Based on Micro CT Images
Authors: Changsoo Chon, Sangkuy Han, Donghyun Seo, Jihyung Park, Bokku Kang, Hansung Kim, Keyoungjin Chun, Cheolwoong Ko
Abstract:
The purpose of the study is to develop a finite element model based on 3D bone structural images of Micro-CT and to analyze the stress distribution for the osteoporosis mouse femora. In this study, results of finite element analysis show that the early osteoporosis of mouse model decreased a bone density in trabecular region; however, the bone density in cortical region increased.Keywords: micro-CT, finite element analysis, osteoporosis, bone strength
Procedia PDF Downloads 3636809 Citizen Participation in Smart Cities: Singapore and Tokyo
Authors: Thomas Benson
Abstract:
Smart cities have been heralded as multi-faceted entities which utilise information and communication technologies to enhance citizen participation. The purpose of this paper is to outline authoritative definitions of smart cities and citizen participation and investigate smart city citizen-centrism rhetoric by examining urban governance and citizen participation processes. Drawing on extant literature and official city government documents and websites, Singapore (Singapore) and Tokyo (Japan) are chosen as comparable smart city case studies. For the smart city to be truly realised, this paper concludes that smart cities must do more to incorporate genuine citizen participation mechanisms.Keywords: citizen participation, smart cities, urban governance, Singapore, Tokyo
Procedia PDF Downloads 1536808 Experiences of Patients Living with Peritoneal Dialysis: A Qualitative Study
Authors: Xuzhen Yang, Yan Shan, Yabo Ding, Keke DIao, Yanjun Zhang, Yijia Huang
Abstract:
Purpose: Our aim is to understand the unique experiences of patients with peritoneal dialysis and how they deal with issues brought on by disease and dialysis. Patients and Methods: Semi-structured interview was designed to collect information, and inpatients with peritoneal dialysis in a university-based tertiary hospital in the central province of China were purposively chosen as interviewees. The content analysis method was used to analyze the data. Results: Nine patients participated in the study, and three themes and eight subthemes were generated. Conclusion: Patients using peritoneal dialysis encounter numerous challenges and problems in the process of disease and dialysis, and they took attempt to cope with them well to adapt to living with peritoneal dialysis.Keywords: peritoneal dialysis, experience, patient, coping strategy
Procedia PDF Downloads 99