skip to main content
US FlagAn official website of the United States government
dot gov icon
Official websites use .gov
A .gov website belongs to an official government organization in the United States.
https lock icon
Secure .gov websites use HTTPS
A lock ( lock ) or https:// means you've safely connected to the .gov website. Share sensitive information only on official, secure websites.


Title: Optimally controlling nutrition and propulsion force in a long distance running race
IntroductionRunners competing in races are looking to optimize their performance. In this paper, a runner's performance in a race, such as a marathon, is formulated as an optimal control problem where the controls are: the nutrition intake throughout the race and the propulsion force of the runner. As nutrition is an integral part of successfully running long distance races, it needs to be included in models of running strategies. MethodsWe formulate a system of ordinary differential equations to represent the velocity, fat energy, glycogen energy, and nutrition for a runner competing in a long-distance race. The energy compartments represent the energy sources available in the runner's body. We allocate the energy source from which the runner draws, based on how fast the runner is moving. The food consumed during the race is a source term for the nutrition differential equation. With our model, we are investigating strategies to manage the nutrition and propulsion force in order to minimize the running time in a fixed distance race. This requires the solution of a nontrivial singular control problem. ResultsAs the goal of an optimal control model is to determine the optimal strategy, comparing our results against real data presents a challenge; however, in comparing our results to the world record for the marathon, our results differed by 0.4%, 31 seconds. Per each additional gel consumed, the runner is able to run 0.5 to 0.7 kilometers further in the same amount of time, resulting in a 7.75% increase in taking five 100 calorie gels vs no nutrition. DiscussionOur results confirm the belief that the most effective way to run a race is to run approximately the same pace the entire race without letting one's energies hit zero, by consuming in-race nutrition. While this model does not take all factors into account, we consider it a building block for future models, considering our novel energy representation, and in-race nutrition.  more » « less
Award ID(s):
2031213
PAR ID:
10481504
Author(s) / Creator(s):
; ; ;
Publisher / Repository:
frontiersin.org
Date Published:
Journal Name:
Frontiers in Nutrition
Volume:
10
ISSN:
2296-861X
Subject(s) / Keyword(s):
optimization differential equation models running nutrition metabolism bioenergetics
Format(s):
Medium: X
Sponsoring Org:
National Science Foundation
More Like this
  1. Happens before-based dynamic analysis is the go-to technique for detecting data races in large scale software projects due to the absence of false positive reports. However, such analyses are expensive since they employ expensive vector clock updates at each event, rendering them usable only for in-house testing. In this paper, we present a sampling-based, randomized race detector that processes onlyconstantly manyevents of the input trace even in the worst case. This is the firstsub-lineartime (i.e., running ino(n) time wherenis the length of the trace) dynamic race detection algorithm; previous sampling based approaches like run in linear time (i.e.,O(n)). Our algorithm is a property tester for -race detection — it is sound in that it never reports any false positive, and on traces that are far, with respect to hamming distance, from any race-free trace, the algorithm detects an -race with high probability. Our experimental evaluation of the algorithm and its comparison with state-of-the-art deterministic and sampling based race detectors shows that the algorithm does indeed have significantly low running time, and detects races quite often. 
    more » « less
  2. BackgroundHigh-Runner (HR) mice, selectively bred for increased voluntary wheel running behavior, exhibit heightened motivation to run. Exercise has been shown to influence hippocampal long-term potentiation (LTP) and memory, and is neuroprotective in several neurodegenerative diseases. ObjectiveThis study aimed to determine the impact of intense running in HR mice with wheel access on hippocampal LTP, compared to HR mice without wheels and non-selected control (C) mice with/without wheels. Additionally, we investigated the involvement of D1/D5 receptors and the dopamine transporter (DAT) in LTP modulation and examined levels of these proteins in HR and C mice. MethodsAdult female HR and C mice were individually housed with/without running wheels for at least two weeks. Hippocampal LTP of extracellular field excitatory postsynaptic potentials (fEPSPs) was measured in area CA1, and SKF-38393 (D1/D5 receptor agonist) and GBR 12909 (DAT inhibitor) were used to probe the role of D1/D5 receptors and DAT in LTP differences. Western blot analyses assessed D1/D5 receptor and DAT expression in the hippocampus, prefrontal cortex, and cerebellum. ResultsHR mice with wheel access showed significantly increased hippocampal LTP compared to those without wheels and to C mice with/without wheels. Treatment with SKF-38393 or GBR 12909 prevented the heightened LTP in HR mice with wheels, aligning it with levels in C mice. Hippocampal D1/D5 receptor levels were lower, and DAT levels were higher in HR mice compared to C mice. No significant changes were observed in other brain regions. ConclusionsThe increased hippocampal LTP seen in HR mice with wheel access may be related to alterations in dopaminergic synaptic transmission that underlie the neurophysiological basis of hyperactivity, motor disorders, and/or motivation. 
    more » « less
  3. Purpose:This study examined the race identification of Southern American English speakers from two geographically distant regions in North Carolina. The purpose of this work is to explore how talkers' self-identified race, talker dialect region, and acoustic speech variables contribute to listener categorization of talker races. Method:Two groups of listeners heard a series of /h/–vowel–/d/ (/hVd/) words produced by Black and White talkers from East and West North Carolina, respectively. Results:Both Southern (North Carolina) and Midland (Indiana) listeners accurately categorized the race of all speakers with greater-than-chance accuracy; however, Western North Carolina Black talkers were categorized with the lowest accuracy, just above chance. Conclusions:The results suggest that similarities in the speech production patterns of West North Carolina Black and White talkers affect the racial categorization of Black, but not White talkers. The results are discussed with respect to the acoustic spectral features of the voices present in the sample population. 
    more » « less
  4. Abstract Artificial selection yielded four replicate high runner (HR) lines of mice that reached apparent selection limits (~ threefold increase in wheel revolutions per day vs. four control lines), despite maintenance of additive genetic variance. After 68 generations, we used animal models to test for changes in additive-genetic variances and covariance of the two measured components (average speed and duration) of running distance. We also attempted to break the selection limit by crossing two HR lines, then continuing directional selection on this hybrid line and on the two parental lines for nine generations. The genetic correlation between speed and duration was positive in the base population, but evolved to be negative in the two parental HR lines. Although heritability for both speed and duration (but not distance) increased in the hybrid line, their genetic correlation remained negative. Hybrid F1mice from generation 68 parents showed heterosis for running distance, which was lost in subsequent generations, and the hybrid line did not exceed the limit. Both male and female hybrids ran faster than parental lines for most generations, but running duration was intermediate or reduced, reflecting their negative genetic correlation. The evolved genetic trade-off between speed and duration may explain the inability for the hybrid line to break the selection limit for distance run, despite renewed additive genetic variance for at least one of its component traits. 
    more » « less
  5. null (Ed.)
    Concurrent programs are notoriously hard to write correctly, as scheduling nondeterminism introduces subtle errors that are both hard to detect and to reproduce. The most common concurrency errors are (data) races, which occur when memory-conflicting actions are executed concurrently. Consequently, considerable effort has been made towards developing efficient techniques for race detection. The most common approach is dynamic race prediction: given an observed, race-free trace σ of a concurrent program, the task is to decide whether events of σ can be correctly reordered to a trace σ * that witnesses a race hidden in σ. In this work we introduce the notion of sync(hronization)-preserving races. A sync-preserving race occurs in σ when there is a witness σ * in which synchronization operations (e.g., acquisition and release of locks) appear in the same order as in σ. This is a broad definition that strictly subsumes the famous notion of happens-before races. Our main results are as follows. First, we develop a sound and complete algorithm for predicting sync-preserving races. For moderate values of parameters like the number of threads, the algorithm runs in Õ( N ) time and space, where N is the length of the trace σ. Second, we show that the problem has a Ω( N /log 2 N ) space lower bound, and thus our algorithm is essentially time and space optimal. Third, we show that predicting races with even just a single reversal of two sync operations is NP-complete and even W1-hard when parameterized by the number of threads. Thus, sync-preservation characterizes exactly the tractability boundary of race prediction, and our algorithm is nearly optimal for the tractable side. Our experiments show that our algorithm is fast in practice, while sync-preservation characterizes races often missed by state-of-the-art methods. 
    more » « less