Explore the project
ARCHIVED EDITION · TAP-MDL-0001 · v0.1 · EnglishTAP Record & current edition ↗

TAP Human Adaptation Framework

A conceptual framework connecting demands, predictive regulation and function over time—with a place for reserve, recovery and accumulating costs.

Updated 2026-09-16 · Archived

Reuse ↗
THE ALLOSTASIS PROJECT

Cite this work

TAP publication · cite this edition for our explanation.

Publication record
Work identifier
TAP-MDL-0001
Edition
v0.1 · English
Updated
2026-09-16
Archived
Scientific review
Not completed for this edition

TAP Record ↗ · Read this edition ↗

Available editions: v0.3v0.2v0.1

This is the text and publication record captured for this edition. Later corrections appear in subsequent editions. Website design and interactive software are not archived here.

One framework, three questions

What demands arise? How does the system regulate? What happens to function over time? TAP brings these questions together as an educational synthesis of existing research, with explicit assumptions and candidate questions for future study.

This is a conceptual framework developed by The Allostasis Project. It is not a clinical diagnosis, validated biomarker or empirically validated predictive model. Its originality lies in this presentation and synthesis; the underlying scientific concepts remain attributed to their sources.

Read the relationships

The map places prediction and adjustment inside a feedback loop. Current state and reserve influence how a challenge is met; behavior may also change the environment. Recovery and accumulating costs can coexist over different timescales. Arrows organize this synthesis rather than certify causal effects.

1. Demands and context

Describe the demand’s type, timing, duration and predictability, together with the surrounding conditions. A planned task and an unexpected task can be comparable in workload while differing in advance information. This is a proposed comparison, not a claim that equal task labels imply equal exposure.

The focus on anticipated requirements comes from predictive-regulation theory; specifying the system and challenge is also central to the NIH resilience framework.[1][4]

2. Prediction, physiology and behavior

Sterling’s account motivates including anticipation, coordinated adjustment and learning.[1] TAP represents these together with actions that may change exposure. The environment is not merely a background variable: newer allostatic proposals explicitly include reciprocal organism–environment relationships.[5]

Current state and domain-specific reserve are possible contributors to this process. A measured capacity in one task is not a whole-body battery or a guarantee of resilience under another challenge.[6]

3. Function over time

A demand, a regulatory response and a functional outcome are separate observations. A larger physiological response can support performance; a smaller signal does not automatically mean better function. The direction of a useful change must be defined for the outcome and setting.

The NIH framework and physical-resilience literature motivate following maintenance, decline and recovery of a specified system.[4][6] TAP therefore asks for a reference condition and observation window rather than treating return to an arbitrary flat line as the only successful result.

The next challenge meets a changed system

Allostatic-load theory motivates attention to cumulative costs, while Reactive Scope considers changing response ranges.[2][3] Neither account makes every demand harmful, nor establishes that incomplete recovery in one variable equals measured allostatic load.

TAP’s synthesis keeps longer-term capacity and costs distinct from a single short response. Training, illness, resources and repeated demands may lead to different changes. Any claimed direction, timescale or causal relation needs evidence in the particular setting.

Explore a short task

Imagine a brief cycling task that starts at time 30 and stops at time 60. In this mathematical illustration, demand, regulatory activation and task function use separate, dimensionless scales. Accurate advance notice, an unexpected start, a cancelled task and persistent activation expose different assumptions.

What the illustration assumes

Demand is a fixed pulse of 0.65 during the task. Regulatory activation moves exponentially toward the required level. An advance cue starts preparation at time 20; in the cancelled-task scenario no task occurs and the cue is withdrawn at time 30. These times and values are arbitrary.

Task function is defined as 1 − 0.7 × max(0, demand − response) − 0.22 × max(0, response − demand). This invented relationship penalizes both shortfall and excess. It is not an estimated physiological law. Changing it could change the apparent benefit of anticipation.

No fatigue, tissue repair, learning, reserve depletion or allostatic-load index is estimated. Persistent activation changes only its settling time. The example explains distinctions; it cannot establish which response is healthiest or predict a person’s recovery.

What a study would need to observe

Specify the population, system, challenge and outcome before collecting data. Record a suitable reference period, the timing and size of exposure, repeated measures of the chosen response and function, and contextual factors such as sleep, medication and task familiarity. Different outcomes may require different schedules.[4][6]

For a short-task study, externally recorded workload, a physiological signal and an independently measured performance outcome should remain distinct. Using the same signal as both predictor and definition of success risks a circular result. Reserve should be represented by a justified capacity measure, not inferred from the shape of the same curve.

Questions that could test the framework

Candidate question 1: with task demands held comparable, does accurate advance information alter the relation between regulatory response and function? A false-cue condition could test whether preparation carries a cost when a predicted demand does not occur. No such experiment is reported here.

Candidate question 2: does a prior response trajectory add out-of-sample predictive information about performance at a subsequent challenge, beyond workload, baseline function and measured capacity? The proposal is weakened if it adds no reliable information beyond those simpler predictors.

These are TAP research proposals, not findings. A study would need an appropriate protocol, prespecified analyses, confounder handling, uncertainty estimates and ethical review before recruiting participants. Observational prediction alone would not identify a causal recovery mechanism.

Sources, synthesis and limits

The source theories support particular definitions and arguments; they do not jointly validate this whole diagram. TAP contributes the three-part organization, the explicit separation of demand/response/function and the illustrative implementation. Those are the objects being documented and versioned.

The map is TAP-FIG-0001 v2.0. This framework is TAP-MDL-0001 v0.1. Scientific review and methodological review are tracked separately in the editorial record. Neither an identifier nor a citation to NIH implies endorsement or completed validation.

Model specification

View source for this edition
// TAP educational scenario v1.0. Dimensionless and deliberately not fitted to physiology.
// A fixed-demand task separates external demand, a regulatory response and task function.
// Changing these assumptions changes the result; no parameter estimates a person's health.
export const adaptationScenarioVersion = "1.0";
export const scenarioIds = ["unexpected", "anticipated", "false-alarm", "persistent"] as const;
export type ScenarioId = (typeof scenarioIds)[number];
export type ScenarioPoint = { time: number; demand: number; response: number; function: number };
export const scenarioDefaults: ScenarioId = "unexpected";
export function isScenarioId(value: string): value is ScenarioId {
  return scenarioIds.some((id) => id === value);
}
export function adaptationScenario(id: ScenarioId): ScenarioPoint[] {
  if (!isScenarioId(id)) throw new Error("Unknown educational scenario");
  let response = 0;
  return Array.from({ length: 101 }, (_, time) => {
    const demand = id !== "false-alarm" && time >= 30 && time < 60 ? 0.65 : 0;
    // Advance notice starts preparation at t=20. A cancelled task is recognized at t=30.
    const advance = (id === "anticipated" || id === "false-alarm") && time >= 20 && time < 30;
    const target = advance ? 0.65 : demand;
    const tau = target > response ? 4 : id === "persistent" ? 15 : 4;
    response += (target - response) * (1 - Math.exp(-1 / tau));
    // Explicit toy assumption: insufficient matching impairs task function; excess activation
    // also carries an immediate penalty. Neither term measures allostatic load or reserve.
    const shortfall = Math.max(0, demand - response);
    const excess = Math.max(0, response - demand);
    const taskFunction = 1 - 0.7 * shortfall - 0.22 * excess;
    return { time, demand, response, function: taskFunction };
  });
}
export function scenarioPath(points: ScenarioPoint[], key: "demand" | "response" | "function") {
  return points.map((p, i) => `${i ? "L" : "M"}${(48 + p.time * 7.84).toFixed(2)},${(124 - p[key] * 84).toFixed(2)}`).join(" ");
}

Download this edition’s model source ↧

References

  1. Peter Sterling (2012). Allostasis: a model of predictive regulation. Physiology & Behavior. https://doi.org/10.1016/j.physbeh.2011.06.004
  2. Bruce S. McEwen, Eliot Stellar (1993). Stress and the individual. Mechanisms leading to disease. Archives of Internal Medicine. https://doi.org/10.1001/archinte.1993.00410180039004
  3. L. Michael Romero, Molly J. Dickens, Nicole E. Cyr (2009). The Reactive Scope Model — A new model integrating homeostasis, allostasis, and stress. Hormones and Behavior. https://doi.org/10.1016/j.yhbeh.2008.12.009
  4. LaVerne Brown, Barbara Cohen, Rebecca Costello, Olga Brazhnik, Zorina Galis (2023). Conceptualizing a resilience research framework at The National Institutes of Health. Stress and Health. https://doi.org/10.1002/smi.3260
  5. Laura A. Harrison, Antonio J. Gracias, Karl J. Friston, J. Galen Buckwalter (2025). Resilience phenotypes derived from an active inference account of allostasis. Frontiers in Behavioral Neuroscience. https://doi.org/10.3389/fnbeh.2025.1524722
  6. Heather E. Whitson, Wei Duan-Porter, Kenneth E. Schmader, Miriam C. Morey, Harvey J. Cohen, Cathleen S. Colón-Emeric (2016). Physical Resilience in Older Adults: Systematic Review and Development of an Emerging Construct. The Journals of Gerontology: Series A. https://doi.org/10.1093/gerona/glv202

Publication record

TAP-MDL-0001 · v0.1 · English

Scientific review has not been completed for this edition.

The Allostasis Project is founded and supported by Resilio.

Record for v0.1 · Updated

  1. Editing & copyediting

    No completion record
  2. Evidence verification

    No completion record
  3. Scientific review

    Not yet scientifically reviewed
  4. Methods review

    No completion record
  5. AI assistance

    AI-assisted

    TAP Research Agent

    Conceptual synthesis and source-linked educational preparation; not completed human scientific or methodological review.

    OpenAI Codex (GPT-6) — Research assistance · Drafting and bilingual editing · Source-to-claim checks — Human checks have not been recorded.

    v0.1

How responsibilities and review are recorded ↗

© The Allostasis Project. All rights reserved. Reproduction or adaptation requires separate permission, subject to applicable legal exceptions.

Download complete edition record (JSON) ↧

Record integrity & available editions

SHA-256: 3b8b9efde790abfcf07b74478e5252c77a2ff67f845ff65e515089e40ba1b914

Captured: 2026-09-16T13:27:22.829Z

Start with a question.

Enter a keyword to search this site.

ExploreQuestions about Human AdaptationExploreMeasurement & InterpretationReading guide · Essential 5Allostatic LoadReading guide · Essential 5Recovery ScienceReading guide · Essential 5Reserve & ResilienceReading guide · Essential 5MeasurementFoundationsLoadFoundationsAllostasisFoundationsRecoveryFoundationsAllostatic LoadFoundationsPhysiological ReserveFoundationsResilienceFeaturesAllostatic Load: The Hidden Cost of AdaptationFeaturesRecovery Is Not RestFeaturesModels of Adaptation: What Different Frameworks ExplainFeaturesTAP Human Adaptation FrameworkFeaturesAre Recovery and Resilience the Same Thing?FeaturesDoes Recovery Always Mean Returning to the Same Baseline?FeaturesHow Are Physiological Reserve and Resilience Related?FeaturesWhat Can HRV Tell Us About Recovery?FeaturesWhy Feeling Better Doesn’t Always Mean Fully RecoveredMethods & projectEvidence grading & methodsMethods & projectEditorial & scientific standardsMethods & projectAbout the projectResearch · 1993Stress and the individual. Mechanisms leading to diseaseResearch · 1998Protective and damaging effects of stress mediatorsResearch · 2003The cumulative cost of additional wakefulness: dose-response effects on neurobehavioral functions and sleep physiology from chronic sleep restriction and total sleep deprivationResearch · 2006The perseverative cognition hypothesis: a review of worry, prolonged stress-related physiological activation, and healthResearch · 2007The Recovery Experience Questionnaire: development and validation of a measure for assessing recuperation and unwinding from workResearch · 2009The Reactive Scope Model — A new model integrating homeostasis, allostasis, and stressResearch · 2010Neurobehavioral dynamics following chronic sleep restriction: dose-response effects of one night for recoveryResearch · 2010Greater cardiovascular responses to laboratory mental stress are associated with poor subsequent cardiovascular risk status: a meta-analysis of prospective evidenceResearch · 2010Allostatic load biomarkers of chronic stress and impact on health and cognitionResearch · 2011Stress- and Allostasis-Induced Brain PlasticityResearch · 2012Allostasis: a model of predictive regulationResearch · 2013The LF/HF ratio does not accurately measure cardiac sympatho-vagal balanceResearch · 2013Effects of recovery sleep after one work week of mild sleep restriction on interleukin-6 and cortisol secretion and daytime sleepiness and performanceResearch · 2014Clarifying the roles of homeostasis and allostasis in physiological regulationResearch · 2014Resilience definitions, theory, and challenges: interdisciplinary perspectivesResearch · 2015Recovery from job stress: The stressor-detachment model as an integrative frameworkResearch · 2016Physiological concomitants of perseverative cognition: A systematic review and meta-analysisResearch · 2016Physical Resilience in Older Adults: Systematic Review and Development of an Emerging ConstructResearch · 2017Heart Rate Variability and Cardiac Vagal Tone in Psychophysiological Research - Recommendations for Experiment Planning, Data Analysis, and Data ReportingResearch · 2017A Meta-Analysis on Antecedents and Outcomes of Detachment from WorkResearch · 2018Recovery and Performance in Sport: Consensus StatementResearch · 2019Ad libitum Weekend Recovery Sleep Fails to Prevent Metabolic Dysregulation during a Repeating Pattern of Insufficient Sleep and Weekend Recovery SleepResearch · 2019Resilience in Clinical Care: Getting a Grip on the Recovery Potential of Older AdultsResearch · 2020Whitepaper: Defining and investigating cognitive reserve, brain reserve, and brain maintenanceResearch · 2021Leaving Work at Work: A Meta-Analysis on Employee Recovery From WorkResearch · 2022"Give me a break!" A systematic review and meta-analysis on the efficacy of micro-breaks for increasing well-being and performanceResearch · 2022Allostatic Load Measurement: A Systematic Review of Reviews, Database Inventory, and Considerations for Neighborhood ResearchResearch · 2022Allostatic Load and Mortality: A Systematic Review and Meta-AnalysisResearch · 2022Recovery from Work: Advancing the Field Toward the FutureResearch · 2023Conceptualizing a resilience research framework at The National Institutes of HealthResearch · 2023Towards a consensus definition of allostatic load: a multi-cohort, multi-system, multi-biomarker individual participant data (IPD) meta-analysisResearch · 2024Impact of baseline and longitudinal allostatic load changes on incident cardiovascular disease and all-cause mortality: A 7-year population-based cohort study in ChinaResearch · 2025Resilience phenotypes derived from an active inference account of allostasisResearch · 2026Building an ontology of resilience: Insights from the physical resilience literatureTAP Record · TAP-CON-0001LoadTAP Record · TAP-CON-0002AllostasisTAP Record · TAP-CON-0003RecoveryTAP Record · TAP-CON-0004Allostatic LoadTAP Record · TAP-CON-0005Physiological ReserveTAP Record · TAP-CON-0006ResilienceTAP Record · TAP-FTR-0001Allostatic Load: The Hidden Cost of AdaptationTAP Record · TAP-FTR-0002Recovery Is Not RestTAP Record · TAP-FTR-0008Models of Adaptation: What Different Frameworks ExplainTAP Record · TAP-MDL-0001TAP Human Adaptation FrameworkTAP Record · TAP-FTR-0006Are Recovery and Resilience the Same Thing?TAP Record · TAP-FTR-0007Does Recovery Always Mean Returning to the Same Baseline?TAP Record · TAP-FTR-0004How Are Physiological Reserve and Resilience Related?TAP Record · TAP-FTR-0005What Can HRV Tell Us About Recovery?TAP Record · TAP-FTR-0003Why Feeling Better Doesn’t Always Mean Fully RecoveredTAP Record · TAP-RDN-0001TAP reading note: Stress and the individual. Mechanisms leading to diseaseTAP Record · TAP-RDN-0002TAP reading note: Protective and damaging effects of stress mediatorsTAP Record · TAP-RDN-0003TAP reading note: The cumulative cost of additional wakefulness: dose-response effects on neurobehavioral functions and sleep physiology from chronic sleep restriction and total sleep deprivationTAP Record · TAP-RDN-0016TAP reading note: The perseverative cognition hypothesis: a review of worry, prolonged stress-related physiological activation, and healthTAP Record · TAP-RDN-0020TAP reading note: The Recovery Experience Questionnaire: development and validation of a measure for assessing recuperation and unwinding from workTAP Record · TAP-RDN-0032TAP reading note: The Reactive Scope Model — A new model integrating homeostasis, allostasis, and stressTAP Record · TAP-RDN-0024TAP reading note: Neurobehavioral dynamics following chronic sleep restriction: dose-response effects of one night for recoveryTAP Record · TAP-RDN-0004TAP reading note: Greater cardiovascular responses to laboratory mental stress are associated with poor subsequent cardiovascular risk status: a meta-analysis of prospective evidenceTAP Record · TAP-RDN-0013TAP reading note: Allostatic load biomarkers of chronic stress and impact on health and cognitionTAP Record · TAP-RDN-0005TAP reading note: Stress- and Allostasis-Induced Brain PlasticityTAP Record · TAP-RDN-0006TAP reading note: Allostasis: a model of predictive regulationTAP Record · TAP-RDN-0018TAP reading note: The LF/HF ratio does not accurately measure cardiac sympatho-vagal balanceTAP Record · TAP-RDN-0026TAP reading note: Effects of recovery sleep after one work week of mild sleep restriction on interleukin-6 and cortisol secretion and daytime sleepiness and performanceTAP Record · TAP-RDN-0012TAP reading note: Clarifying the roles of homeostasis and allostasis in physiological regulationTAP Record · TAP-RDN-0029TAP reading note: Resilience definitions, theory, and challenges: interdisciplinary perspectivesTAP Record · TAP-RDN-0007TAP reading note: Recovery from job stress: The stressor-detachment model as an integrative frameworkTAP Record · TAP-RDN-0017TAP reading note: Physiological concomitants of perseverative cognition: A systematic review and meta-analysisTAP Record · TAP-RDN-0008TAP reading note: Physical Resilience in Older Adults: Systematic Review and Development of an Emerging ConstructTAP Record · TAP-RDN-0019TAP reading note: Heart Rate Variability and Cardiac Vagal Tone in Psychophysiological Research - Recommendations for Experiment Planning, Data Analysis, and Data ReportingTAP Record · TAP-RDN-0009TAP reading note: A Meta-Analysis on Antecedents and Outcomes of Detachment from WorkTAP Record · TAP-RDN-0010TAP reading note: Recovery and Performance in Sport: Consensus StatementTAP Record · TAP-RDN-0025TAP reading note: Ad libitum Weekend Recovery Sleep Fails to Prevent Metabolic Dysregulation during a Repeating Pattern of Insufficient Sleep and Weekend Recovery SleepTAP Record · TAP-RDN-0027TAP reading note: Resilience in Clinical Care: Getting a Grip on the Recovery Potential of Older AdultsTAP Record · TAP-RDN-0028TAP reading note: Whitepaper: Defining and investigating cognitive reserve, brain reserve, and brain maintenanceTAP Record · TAP-RDN-0022TAP reading note: Leaving Work at Work: A Meta-Analysis on Employee Recovery From WorkTAP Record · TAP-RDN-0023TAP reading note: "Give me a break!" A systematic review and meta-analysis on the efficacy of micro-breaks for increasing well-being and performanceTAP Record · TAP-RDN-0011TAP reading note: Allostatic Load Measurement: A Systematic Review of Reviews, Database Inventory, and Considerations for Neighborhood ResearchTAP Record · TAP-RDN-0015TAP reading note: Allostatic Load and Mortality: A Systematic Review and Meta-AnalysisTAP Record · TAP-RDN-0021TAP reading note: Recovery from Work: Advancing the Field Toward the FutureTAP Record · TAP-RDN-0033TAP reading note: Conceptualizing a resilience research framework at The National Institutes of HealthTAP Record · TAP-RDN-0014TAP reading note: Towards a consensus definition of allostatic load: a multi-cohort, multi-system, multi-biomarker individual participant data (IPD) meta-analysisTAP Record · TAP-RDN-0031TAP reading note: Impact of baseline and longitudinal allostatic load changes on incident cardiovascular disease and all-cause mortality: A 7-year population-based cohort study in ChinaTAP Record · TAP-RDN-0034TAP reading note: Resilience phenotypes derived from an active inference account of allostasisTAP Record · TAP-RDN-0030TAP reading note: Building an ontology of resilience: Insights from the physical resilience literatureTAP Record · TAP-FIG-0001Human Adaptation MapTAP Record · TAP-FIG-0002Recovery trajectoriesTAP Record · TAP-STD-0001Citation & Reuse