70 research outputs found

    Elucidation of the components involved in the antioxidant activity of honey

    Get PDF
    Canadian honeys were analyzed for sugar concentration, honey colour, total phenolic content, the level of brown pigments, and antioxidant activity in order to elucidate the main components involved in the antioxidant activity of honey. By employing size-exclusion chromatography in combination with activity-guided fractionation, it was demonstrated that the antioxidant components are of high molecular weight (HMW), brown in colour and absorb at both 280nm and 450nm. The presence of brown HMW antioxidant components prompted an investigation on the influence of heattreatment on the Maillard reaction and the formation of melanoid ins. Heat-treatment of honey resulted in an increase in the level of phenolics in the melanoidin fractions which correlated with an increase in antioxidant activity. The preliminary results of this study suggest for the first time that honey melanoidins underlie the antioxidant activity of unheated and heat-treated honey, and that phenolic constituents are involved in the melanoidin structure and are likely incorporated by covalent or non-covalent interaction

    A Field Guide to Genetic Programming

    Get PDF
    xiv, 233 p. : il. ; 23 cm.Libro ElectrónicoA Field Guide to Genetic Programming (ISBN 978-1-4092-0073-4) is an introduction to genetic programming (GP). GP is a systematic, domain-independent method for getting computers to solve problems automatically starting from a high-level statement of what needs to be done. Using ideas from natural evolution, GP starts from an ooze of random computer programs, and progressively refines them through processes of mutation and sexual recombination, until solutions emerge. All this without the user having to know or specify the form or structure of solutions in advance. GP has generated a plethora of human-competitive results and applications, including novel scientific discoveries and patentable inventions. The authorsIntroduction -- Representation, initialisation and operators in Tree-based GP -- Getting ready to run genetic programming -- Example genetic programming run -- Alternative initialisations and operators in Tree-based GP -- Modular, grammatical and developmental Tree-based GP -- Linear and graph genetic programming -- Probalistic genetic programming -- Multi-objective genetic programming -- Fast and distributed genetic programming -- GP theory and its applications -- Applications -- Troubleshooting GP -- Conclusions.Contents xi 1 Introduction 1.1 Genetic Programming in a Nutshell 1.2 Getting Started 1.3 Prerequisites 1.4 Overview of this Field Guide I Basics 2 Representation, Initialisation and GP 2.1 Representation 2.2 Initialising the Population 2.3 Selection 2.4 Recombination and Mutation Operators in Tree-based 3 Getting Ready to Run Genetic Programming 19 3.1 Step 1: Terminal Set 19 3.2 Step 2: Function Set 20 3.2.1 Closure 21 3.2.2 Sufficiency 23 3.2.3 Evolving Structures other than Programs 23 3.3 Step 3: Fitness Function 24 3.4 Step 4: GP Parameters 26 3.5 Step 5: Termination and solution designation 27 4 Example Genetic Programming Run 4.1 Preparatory Steps 29 4.2 Step-by-Step Sample Run 31 4.2.1 Initialisation 31 4.2.2 Fitness Evaluation Selection, Crossover and Mutation Termination and Solution Designation Advanced Genetic Programming 5 Alternative Initialisations and Operators in 5.1 Constructing the Initial Population 5.1.1 Uniform Initialisation 5.1.2 Initialisation may Affect Bloat 5.1.3 Seeding 5.2 GP Mutation 5.2.1 Is Mutation Necessary? 5.2.2 Mutation Cookbook 5.3 GP Crossover 5.4 Other Techniques 32 5.5 Tree-based GP 39 6 Modular, Grammatical and Developmental Tree-based GP 47 6.1 Evolving Modular and Hierarchical Structures 47 6.1.1 Automatically Defined Functions 48 6.1.2 Program Architecture and Architecture-Altering 50 6.2 Constraining Structures 51 6.2.1 Enforcing Particular Structures 52 6.2.2 Strongly Typed GP 52 6.2.3 Grammar-based Constraints 53 6.2.4 Constraints and Bias 55 6.3 Developmental Genetic Programming 57 6.4 Strongly Typed Autoconstructive GP with PushGP 59 7 Linear and Graph Genetic Programming 61 7.1 Linear Genetic Programming 61 7.1.1 Motivations 61 7.1.2 Linear GP Representations 62 7.1.3 Linear GP Operators 64 7.2 Graph-Based Genetic Programming 65 7.2.1 Parallel Distributed GP (PDGP) 65 7.2.2 PADO 67 7.2.3 Cartesian GP 67 7.2.4 Evolving Parallel Programs using Indirect Encodings 68 8 Probabilistic Genetic Programming 8.1 Estimation of Distribution Algorithms 69 8.2 Pure EDA GP 71 8.3 Mixing Grammars and Probabilities 74 9 Multi-objective Genetic Programming 75 9.1 Combining Multiple Objectives into a Scalar Fitness Function 75 9.2 Keeping the Objectives Separate 76 9.2.1 Multi-objective Bloat and Complexity Control 77 9.2.2 Other Objectives 78 9.2.3 Non-Pareto Criteria 80 9.3 Multiple Objectives via Dynamic and Staged Fitness Functions 80 9.4 Multi-objective Optimisation via Operator Bias 81 10 Fast and Distributed Genetic Programming 83 10.1 Reducing Fitness Evaluations/Increasing their Effectiveness 83 10.2 Reducing Cost of Fitness with Caches 86 10.3 Parallel and Distributed GP are Not Equivalent 88 10.4 Running GP on Parallel Hardware 89 10.4.1 Master–slave GP 89 10.4.2 GP Running on GPUs 90 10.4.3 GP on FPGAs 92 10.4.4 Sub-machine-code GP 93 10.5 Geographically Distributed GP 93 11 GP Theory and its Applications 97 11.1 Mathematical Models 98 11.2 Search Spaces 99 11.3 Bloat 101 11.3.1 Bloat in Theory 101 11.3.2 Bloat Control in Practice 104 III Practical Genetic Programming 12 Applications 12.1 Where GP has Done Well 12.2 Curve Fitting, Data Modelling and Symbolic Regression 12.3 Human Competitive Results – the Humies 12.4 Image and Signal Processing 12.5 Financial Trading, Time Series, and Economic Modelling 12.6 Industrial Process Control 12.7 Medicine, Biology and Bioinformatics 12.8 GP to Create Searchers and Solvers – Hyper-heuristics xiii 12.9 Entertainment and Computer Games 127 12.10The Arts 127 12.11Compression 128 13 Troubleshooting GP 13.1 Is there a Bug in the Code? 13.2 Can you Trust your Results? 13.3 There are No Silver Bullets 13.4 Small Changes can have Big Effects 13.5 Big Changes can have No Effect 13.6 Study your Populations 13.7 Encourage Diversity 13.8 Embrace Approximation 13.9 Control Bloat 13.10 Checkpoint Results 13.11 Report Well 13.12 Convince your Customers 14 Conclusions Tricks of the Trade A Resources A.1 Key Books A.2 Key Journals A.3 Key International Meetings A.4 GP Implementations A.5 On-Line Resources 145 B TinyGP 151 B.1 Overview of TinyGP 151 B.2 Input Data Files for TinyGP 153 B.3 Source Code 154 B.4 Compiling and Running TinyGP 162 Bibliography 167 Inde

    The biomechanics of human locomotion

    Get PDF
    Includes bibliographical references. The thesis on CD-ROM includes Animate, GaitBib, GaitBook and GaitLab, four quick time movies which focus on the functional understanding of human gait. The CD-ROM is available at the Health Sciences Library

    Novel Methodology for Atomistically Informed Multiscale Modeling of Advanced Composites

    Get PDF
    abstract: With the maturity of advanced composites as feasible structural materials for various applications there is a critical need to solve the challenge of designing these material systems for optimal performance. However, determining superior design methods requires a deep understanding of the material-structure properties at various length scales. Due to the length-scale dependent behavior of advanced composites, multiscale modeling techniques may be used to describe the dominant mechanisms of damage and failure in these material systems. With polymer matrix fiber composites and nanocomposites it becomes essential to include even the atomic length scale, where the resin-hardener-nanofiller molecules interact, in the multiscale modeling framework. Additionally, sources of variability are also critical to be included in these models due to the important role of uncertainty in advance composite behavior. Such a methodology should be able to describe length scale dependent mechanisms in a computationally efficient manner for the analysis of practical composite structures. In the research presented in this dissertation, a comprehensive nano to macro multiscale framework is developed for the mechanical and multifunctional analysis of advanced composite materials and structures. An atomistically informed statistical multiscale model is developed for linear problems, to estimate and scale elastic properties of carbon fiber reinforced polymer composites (CFRPs) and carbon nanotube (CNT) enhanced CFRPs using information from molecular dynamics simulation of the resin-hardener-nanofiller nanoscale system. For modeling inelastic processes, an atomistically informed coupled damage-plasticity model is developed using the framework of continuum damage mechanics, where fundamental nanoscale covalent bond disassociation information is scaled up as a continuum scale damage identifying parameter. This damage model is coupled with a nanocomposite microstructure generation algorithm to study the sub-microscale damage mechanisms in CNT/CFRP microstructures. It is further integrated in a generalized method of cells (GMC) micromechanics model to create a low-fidelity computationally efficient nonlinear multiscale method with imperfect interfaces between the fiber and matrix, where the interface behavior is adopted from nanoscale MD simulations. This algorithm is used to understand damage mechanisms in adhesively bonded composite joints as a case study for the comprehensive nano to macroscale structural analysis of practical composites structures. At each length scale sources of variability are identified, characterized, and included in the multiscale modeling framework.Dissertation/ThesisDoctoral Dissertation Aerospace Engineering 201

    Faculty Publications and Creative Works 1999

    Get PDF
    One of the ways in which we recognize our faculty at the University of New Mexico is through Faculty Publications & Creative Works. An annual publication, it highlights our faculty\u27s scholarly and creative activities and achievements and serves as a compendium of UNM faculty efforts during the 1999 calendar year. Faculty Publications & Creative Works strives to illustrate the depth and breadth of research activities performed throughout our University\u27s laboratories, studios and classrooms. We believe that the communication of individual research is a significant method of sharing concepts and thoughts and ultimately inspiring the birth of new ideas. In support of this, UNM faculty during 1999 produced over 2,292 works, including 1,837 scholarly papers and articles, 78 books, 82 book chapters, 175 reviews, 113 creative works and 7 patented works. We are proud of the accomplishments of our faculty which are in part reflected in this book, which illustrates the diversity of intellectual pursuits in support of research and education at the University of New Mexico

    Apport d’une évaluation biomécanique 3D du genou dans la prise en charge orthopédique de patients ayant une rupture du ligament croisé antérieur

    Get PDF
    Parmi les blessures sportives reliées au genou, 20 % impliquent le ligament croisé antérieur (LCA). Le LCA étant le principal stabilisateur du genou, une lésion à cette structure engendre une importante instabilité articulaire influençant considérablement la fonction du genou. L’évaluation clinique actuelle des patients ayant une atteinte au LCA présente malheureusement des limitations importantes à la fois dans l’investigation de l’impact de la blessure et dans le processus diagnostic. Une évaluation biomécanique tridimensionnelle (3D) du genou pourrait s’avérer une avenue innovante afin de pallier à ces limitations. L’objectif général de la thèse est de démontrer la valeur ajoutée du domaine biomécanique dans (1) l’investigation de l’impact de la blessure sur la fonction articulaire du genou et dans (2) l’aide au diagnostic. Pour répondre aux objectifs de recherche un groupe de 29 patients ayant une rupture du LCA (ACLD) et un groupe contrôle de 15 participants sains ont pris part à une évaluation biomécanique 3D du genou lors de tâches de marche sur tapis roulant. L’évaluation des patrons biomécaniques 3D du genou a permis de démontrer que les patients ACLD adoptent un mécanisme compensatoire que nous avons intitulé pivot-shift avoidance gait. Cette adaptation biomécanique a pour objectif d’éviter de positionner le genou dans une condition susceptible de provoquer une instabilité antérolatérale du genou lors de la marche. Par la suite, une méthode de classification a été développée afin d’associer de manière automatique et objective des patrons biomécaniques 3D du genou soit au groupe ACLD ou au groupe contrôle. Pour cela, des paramètres ont été extraits des patrons biomécaniques en utilisant une décomposition en ondelettes et ont ensuite été classifiés par la méthode du plus proche voisin. Notre méthode de classification a obtenu un excellent niveau précision, de sensibilité et de spécificité atteignant respectivement 88%, 90% et 87%. Cette méthode a donc le potentiel de servir d’outil d’aide à la décision clinique. La présente thèse a démontré l’apport considérable d’une évaluation biomécanique 3D du genou dans la prise en charge orthopédique de patients présentant une rupture du LCA; plus spécifiquement dans l’investigation de l’impact de la blessure et dans l’aide au diagnostic.The anterior cruciate ligament (ACL) is involved in approximately 20% of all sports-related knee injuries. An injury to the ACL, the primary stabilizer of the knee, will lead to knee joint instability and functional impairment. Unfortunately, current clinical assessments of ACL-deficient patients present limitations with respect to the investigation of the impact of the injury on knee function. A 3D knee biomechanical assessment could provide innovative information to overcome these drawbacks. The main objective of the doctoral theses is to demonstrate the role of biomechanics in (1) the investigation of the impact of the injury on knee function and in (2) the diagnostic process. Twenty-nine ACL-deficient patients and a control group of fifteen healthy participants took part in a 3D knee biomechanical assessment during treadmill walking. By assessing the 3D knee biomechanical patterns of each group we observed that ACL-deficient patients adopted a gait compensatory mechanism: the Pivot-shift avoidance gait. The explanation for this adaptative strategy is to avoid placing the knee in a position biomechanically favorable to anterolateral rotatory instability during gait. Furthermore, an automatic classification method capable of distinguishing ACL deficient patients from an asymptomatic population was developed. Features were extracted from the 3D knee biomechanical patterns using a wavelet decomposition method and then classified by the nearest neighbour rule. The proposed classification method obtained a level of accuracy, sensitivity and specificity of 88%, 90% and 87% respectively. This method shows great potential as a diagnostic aid in a clinical setting. This thesis demonstrates that biomechanics plays a substantial role in the management of ACL injuries by improving the understanding of the impact of the injury on knee function and by its capacity to serve as a diagnostic aid

    2017 Annual Research Symposium Abstract Book

    Get PDF
    2017 annual volume of abstracts for science research projects conducted by students at Trinity College
    • …
    corecore