BiosimulantBiosimulant
Docs
Search labs...
Sign inGet Started

Heldt2002 Orthostatic Stress - Lumped Parameter Circulation Lab

About lab

Heldt2002 Orthostatic Stress - Lumped Parameter Circulation Lab

This lab runs the Heldt et al. (2002) lumped-parameter circulation model. It asks: how do cardiac filling, aortic and pulmonary flow, mean arterial pressure, and the left-ventricular pressure-volume loop respond during a 60 s orthostatic-stress circulation run?

The model wraps the BioModels EBI SBML asset MODEL1006230113. The models/core package handles SBML execution and stable headline outputs, while models/visualisation owns grouped charts, phase portraits, and plain-language summaries.

What You'll See

The lab opens as a canvas with one Heldt2002 LPC node and a run-results panel. A default run produces grouped time-series panels for chamber volumes, aortic and pulmonary trunk volumes, pulmonary/systemic/coronary perfusion, flow waveforms, pressure waveforms, a largest-excursions diagnostic, a What Happened table, and an LV pressure-volume loop.

The first screenshot shows the canvas and top result panels for cardiac chamber volumes plus aortic and pulmonary trunk volumes. The second scrolls down to aortic/pulmonary flow waveforms and pressure waveforms. The third shows the What Happened table and the LV pressure-volume loop.

Heldt2002 lumped circulation chamber and trunk volume result panels

Heldt2002 lumped circulation flow and pressure result panels

Heldt2002 lumped circulation summary diagnostics and LV pressure-volume loop

How to Read the Visualizations

The cardiac chamber plot shows left/right atrial and ventricular filling across repeated cardiac cycles. The aortic and pulmonary trunk plot separates proximal and distal vascular segments so you can compare how each segment fills and drains.

The flow and pressure panels are the main hemodynamic readouts. They show pulsatile aortic and pulmonary flow waveforms, plus mean arterial pressure and proximal aortic pressure across the same 60 s run.

The What Happened table summarizes the run without reading every trace. In the shown run, it reports 30 tracked rate-rule observables, systemic vein volume as both the largest signed change and largest peak, and no observable settling within 1% over the final 10% of the run.

The LV pressure-volume loop shows the last cardiac cycle as pressure against volume. Loop area corresponds to stroke work, x-extent to preload, and the upper pressure plateau to afterload.

What This Lab Contains

  • lab.yaml describes the lab, runtime, inputs, outputs, and default model parameters.
  • wiring-layout.json places the model on the canvas.
  • models/core/model.yaml describes the SBML execution package, upstream source, parameters, and ports.
  • models/core/src/heldt2002_orthostaticstress_lpc.py wraps the SBML model and publishes stable numeric outputs.
  • models/core/data/MODEL1006230113.xml is the curated SBML model file from BioModels EBI.
  • models/visualisation/ contains the dedicated presentation model for grouped charts, summaries, and phase portraits.
  • models/*/tests/ contains smoke tests for core execution and visualisation behavior.

Inputs

  • heart_rate (1/min): cardiac pacing rate.
  • peak_lv_elastance (mmHg/mL): peak left-ventricle elastance; higher values model stronger contractility.
  • integration_step (s): output sampling step for the Tellurium simulator.

Outputs

  • cardiac_output: cycle-averaged cardiac output over the model's headline window.
  • mean_arterial_pressure: cycle-averaged mean arterial pressure over the model's headline window.
  • state: latest values of the tracked rate-rule observables.
  • summary: final, peak, minimum, and largest-change diagnostics for the run.

Recreate and Run with the Biosim CLI

From this lab folder:

cd /path/to/models-biomechanics/labs/heldt2002-lpc
mkdir -p dist
python -m biosim pack build . --out dist/heldt2002-lpc.bsilab
python -m biosim pack run dist/heldt2002-lpc.bsilab

If you are working from this monorepo without installing biosim, use the local package environment instead:

mkdir -p dist
/path/to/bsim-active/biosim/.venv/bin/python -m biosim pack build . --out dist/heldt2002-lpc.bsilab
/path/to/bsim-active/biosim/.venv/bin/python -m biosim pack run dist/heldt2002-lpc.bsilab

Run in the Desktop App

  1. Open Biosimulant Desktop.
  2. Go to Projects or Labs.
  3. Choose the option to open or import an existing lab.
  4. Select this folder's lab.yaml.
  5. Open the lab and press Run.

The right side of the app should show grouped cardiovascular result panels, summary diagnostics, and the LV pressure-volume loop.

How to Edit It

For scenario changes, start with lab.yaml and models/core/model.yaml.

  • Change runtime.duration in lab.yaml for a longer or shorter simulation.
  • Change runtime.communication_step if you want more or fewer reported points.
  • Change heart_rate or peak_lv_elastance to perturb the circulation scenario.
  • Change integration_step in models/core/model.yaml for finer or coarser Tellurium output sampling.

To change the physiology itself, edit or replace models/core/data/MODEL1006230113.xml. Edit models/core/src/heldt2002_orthostaticstress_lpc.py only if you are changing execution behavior or published numeric outputs; edit models/visualisation/ for labels, grouping, prose, and charts.

Heldt et al. (2002) lumped-parameter circulation (LPC) model tracking aortic pressure, mean arterial pressure, and aortic flow under orthostatic stress.

Runtime

Duration60
Comms Step1

Runs

Total6
Completed6
Failed0

Metadata

Packageheldt2002-orthostatic-stress---lumped-parameter-circulation-lab
Created2026-05-04
Updated2026-05-04

Manifest

{
  "description": "Heldt et al. (2002) lumped-parameter circulation (LPC) model tracking aortic pressure, mean arterial pressure, and aortic flow under orthostatic stress.",
  "io": {
    "inputs": [
      {
        "maps_to": "heldt2002_orthostaticstress_lpc.heart_rate",
        "name": "heart_rate"
      },
      {
        "maps_to": "heldt2002_orthostaticstress_lpc.integration_step",
        "name": "integration_step"
      },
      {
        "maps_to": "heldt2002_orthostaticstress_lpc.peak_lv_elastance",
        "name": "peak_lv_elastance"
      }
    ],
    "outputs": [
      {
        "maps_to": "heldt2002_orthostaticstress_lpc.cardiac_output",
        "name": "cardiac_output"
      },
      {
        "maps_to": "heldt2002_orthostaticstress_lpc.mean_arterial_pressure",
        "name": "mean_arterial_pressure"
      },
      {
        "maps_to": "heldt2002_orthostaticstress_lpc.state",
        "name": "state"
      },
      {
        "maps_to": "heldt2002_orthostaticstress_lpc.summary",
        "name": "summary"
      }
    ]
  },
  "models": [
    {
      "alias": "heldt2002_orthostaticstress_lpc",
      "parameters": {
        "integration_step": 0.05,
        "model_path": "data/MODEL1006230113.xml"
      },
      "path": "owned/models/heldt2002_orthostaticstress_lpc",
      "provenance": {
        "owned_path": "owned/models/heldt2002_orthostaticstress_lpc"
      }
    },
    {
      "alias": "visualisation",
      "path": "owned/models/visualisation",
      "provenance": {
        "owned_path": "owned/models/visualisation"
      }
    }
  ],
  "runtime": {
    "communication_step": 1,
    "duration": 60,
    "initial_inputs": {}
  },
  "schema_version": "2.0",
  "title": "Heldt2002 Orthostatic Stress - Lumped Parameter Circulation Lab",
  "wiring": [
    {
      "from": "heldt2002_orthostaticstress_lpc.cardiac_output",
      "to": [
        "visualisation.heldt2002_orthostaticstress_lpc_cardiac_output"
      ]
    },
    {
      "from": "heldt2002_orthostaticstress_lpc.mean_arterial_pressure",
      "to": [
        "visualisation.heldt2002_orthostaticstress_lpc_mean_arterial_pressure"
      ]
    },
    {
      "from": "heldt2002_orthostaticstress_lpc.state",
      "to": [
        "visualisation.heldt2002_orthostaticstress_lpc_state"
      ]
    },
    {
      "from": "heldt2002_orthostaticstress_lpc.summary",
      "to": [
        "visualisation.heldt2002_orthostaticstress_lpc_summary"
      ]
    },
    {
      "from": "heldt2002_orthostaticstress_lpc.visualisation_aux",
      "to": [
        "visualisation.heldt2002_orthostaticstress_lpc_visualisation_aux"
      ]
    }
  ]
}

Sign in to start your own run. Public-lab history stays visible here.

Logs

No logs yet.

JSON
{
  "communication_step": 1,
  "dependency_installs": [
    {
      "alias": "heldt2002_orthostaticstress_lpc",
      "status": "reused"
    }
  ],
  "dependency_policy_enabled": true,
  "duration": 60,
  "lab_commit": null,
  "model_resolutions": [
    {
      "alias": "heldt2002_orthostaticstress_lpc",
      "commit_sha": null,
      "model_id": "/Volumes/dem-ssd/imp/projects/Nitoons/Biosimulant/models/models-biomechanics/labs/heldt2002-lpc/models/core",
      "repo_full_name": null
    },
    {
      "alias": "visualisation",
      "commit_sha": null,
      "model_id": "/Volumes/dem-ssd/imp/projects/Nitoons/Biosimulant/models/models-biomechanics/labs/heldt2002-lpc/models/visualisation",
      "repo_full_name": null
    }
  ],
  "module_ports": {
    "heldt2002_orthostaticstress_lpc": {
      "inputs": [
        "heart_rate",
        "integration_step",
        "peak_lv_elastance"
      ],
      "outputs": [
        "cardiac_output",
        "mean_arterial_pressure",
        "state",
        "summary",
        "visualisation_aux"
      ]
    },
    "visualisation": {
      "inputs": [
        "heldt2002_orthostaticstress_lpc_cardiac_output",
        "heldt2002_orthostaticstress_lpc_mean_arterial_pressure",
        "heldt2002_orthostaticstress_lpc_state",
        "heldt2002_orthostaticstress_lpc_summary",
        "heldt2002_orthostaticstress_lpc_visualisation_aux"
      ],
      "outputs": []
    }
  },
  "modules": [
    "heldt2002_orthostaticstress_lpc",
    "visualisation"
  ],
  "outputs": {
    "heldt2002_orthostaticstress_lpc": {
      "cardiac_output": {
        "emitted_at": 60,
        "name": "cardiac_output",
        "source": "heldt2002_orthostaticstress_lpc",
        "spec": {
          "accepted_profiles": null,
          "description": "Cardiac output. Volume of blood ejected per unit time. Units: mL/min.",
          "dtype": "float64",
          "emitted_unit": null,
          "interpolation": "zoh",
          "kind": "state",
          "max_age": null,
          "schema": null,
          "shape": null,
          "signal_type": "scalar",
          "stale_policy": "warn"
        },
        "type": "scalar",
        "value": 108.56912706
      },
      "mean_arterial_pressure": {
        "emitted_at": 60,
        "name": "mean_arterial_pressure",
        "source": "heldt2002_orthostaticstress_lpc",
        "spec": {
          "accepted_profiles": null,
          "description": "Mean arterial pressure. The canonical clinical readout. Units: mmHg.",
          "dtype": "float64",
          "emitted_unit": null,
          "interpolation": "zoh",
          "kind": "state",
          "max_age": null,
          "schema": null,
          "shape": null,
          "signal_type": "scalar",
          "stale_policy": "warn"
        },
        "type": "scalar",
        "value": 57.113558324877545
      },
      "state": {
        "emitted_at": 60,
        "name": "state",
        "source": "heldt2002_orthostaticstress_lpc",
        "spec": {
          "accepted_profiles": null,
          "description": "Latest value of every observable (rateRule variables).",
          "dtype": null,
          "emitted_unit": null,
          "interpolation": "zoh",
          "kind": "state",
          "max_age": null,
          "schema": {
            "Faod": "float",
            "Faop": "float",
            "Fpad": "float",
            "Fpap": "float",
            "MAP": "float",
            "Paopc": "float",
            "Vaod": "float",
            "Vaop": "float",
            "Vcorao": "float",
            "Vcorcap": "float",
            "Vcorea": "float",
            "Vcorev": "float",
            "Vcorla": "float",
            "Vcorlv": "float",
            "Vcorsa": "float",
            "Vcorsv": "float",
            "Vla": "float",
            "Vlv": "float",
            "Vpa": "float",
            "Vpad": "float",
            "Vpap": "float",
            "Vpc": "float",
            "Vpv": "float",
            "Vra": "float",
            "Vrv": "float",
            "Vsa": "float",
            "Vsap": "float",
            "Vsc": "float",
            "Vsv": "float",
            "Vvc": "float"
          },
          "shape": null,
          "signal_type": "record",
          "stale_policy": "warn"
        },
        "type": "record",
        "value": {
          "Faod": -5.10585742093563,
          "Faop": -1.1396338755350874,
          "Fpad": 38.7279577073552,
          "Fpap": 0.9702051068575984,
          "MAP": 56.06642772311528,
          "Paopc": 46.261663003006795,
          "Vaod": 76.34353345836684,
          "Vaop": 16.72900464217533,
          "Vcorao": 0.08978739681615956,
          "Vcorcap": 1.3467830522567084,
          "Vcorea": 2.51640177144832,
          "Vcorev": 5.335752596650743,
          "Vcorla": 2.715356515729782,
          "Vcorlv": 4.0357942595949226,
          "Vcorsa": 2.112018045645677,
          "Vcorsv": 3.97385575474994,
          "Vla": 41.70759180123602,
          "Vlv": 94.1915819656951,
          "Vpa": 31.81119889818716,
          "Vpad": 26.882921812853372,
          "Vpap": 18.87319186125829,
          "Vpc": 51.16109395731622,
          "Vpv": 116.07209333992438,
          "Vra": 36.837450785956115,
          "Vrv": 127.98894343138154,
          "Vsa": 505.3747098863523,
          "Vsap": 68.8245652524243,
          "Vsc": 132.08362677320184,
          "Vsv": 2396.08139945197,
          "Vvc": 176.5200329523354
        }
      },
      "summary": {
        "emitted_at": 60,
        "name": "summary",
        "source": "heldt2002_orthostaticstress_lpc",
        "spec": {
          "accepted_profiles": null,
          "description": "Final, peak, and minimum value per observable plus simulated duration.",
          "dtype": null,
          "emitted_unit": null,
          "interpolation": "zoh",
          "kind": "state",
          "max_age": null,
          "schema": {
            "duration_simulated": "float",
            "largest_change_magnitude": "float",
            "largest_change_observable": "str",
            "observable_count": "int",
            "peak_observable": "str",
            "peak_value": "float"
          },
          "shape": null,
          "signal_type": "record",
          "stale_policy": "warn"
        },
        "type": "record",
        "value": {
          "duration_simulated": 60,
          "largest_change_magnitude": 565.5693005480302,
          "largest_change_observable": "Vsv",
          "observable_count": 30,
          "peak_observable": "Vsv",
          "peak_value": 2961.6507
        }
      },
      "visualisation_aux": {
        "emitted_at": 60,
        "name": "visualisation_aux",
        "source": "heldt2002_orthostaticstress_lpc",
        "spec": {
          "accepted_profiles": null,
          "description": "Internal pressure-volume payload for the dedicated visualisation model.",
          "dtype": null,
          "emitted_unit": null,
          "interpolation": "zoh",
          "kind": "state",
          "max_age": null,
          "schema": {
            "heart_rate_bpm": "float",
            "phase_x": "float",
            "phase_y": "float"
          },
          "shape": null,
          "signal_type": "record",
          "stale_policy": "warn"
        },
        "type": "record",
        "value": {
          "heart_rate_bpm": 77,
          "phase_x": 94.1915819656951,
          "phase_y": 4.1470289071160105
        }
      }
    },
    "visualisation": {}
  },
  "state": {
    "heldt2002_orthostaticstress_lpc": {},
    "visualisation": {}
  },
  "visuals": [
    {
      "module": "visualisation",
      "module_class": "BiomechanicsVisualisationModel",
      "visuals": [
        {
          "data": {
            "series": [
              {
                "name": "Left atrium volume",
                "points": [
                  [
                    0,
                    85.9126
                  ],
                  [
                    1,
                    84.96578031462727
                  ],
                  [
                    2,
                    97.52217573608011
                  ],
                  [
                    3,
                    84.01788925160686
                  ],
                  [
                    4,
                    82.31664215066635
                  ],
                  [
                    5,
                    93.16391468279508
                  ],
                  [
                    6,
                    89.52494318943202
                  ],
                  [
                    7,
                    83.79975065104823
                  ],
                  [
                    8,
                    80.89387811481424
                  ],
                  [
                    9,
                    92.1370451166086
                  ],
                  [
                    10,
                    79.18825814787498
                  ],
                  [
                    11,
                    78.75519652602513
                  ],
                  [
                    12,
                    86.7067253402383
                  ],
                  [
                    13,
                    84.33430283610389
                  ],
                  [
                    14,
                    77.84938391062978
                  ],
                  [
                    15,
                    74.315583368613
                  ],
                  [
                    16,
                    84.58041581690674
                  ],
                  [
                    17,
                    72.4305979951573
                  ],
                  [
                    18,
                    73.21659976792084
                  ],
                  [
                    19,
                    79.20409744474702
                  ],
                  [
                    20,
                    78.07947782647852
                  ],
                  [
                    21,
                    71.00969942471264
                  ],
                  [
                    22,
                    67.52106867749126
                  ],
                  [
                    23,
                    77.02301869901999
                  ],
                  [
                    24,
                    65.59312940218742
                  ],
                  [
                    25,
                    67.39053150464785
                  ],
                  [
                    26,
                    72.04343578345143
                  ],
                  [
                    27,
                    72.15503528358649
                  ],
                  [
                    28,
                    64.41442705122802
                  ],
                  [
                    29,
                    61.45220390424506
                  ],
                  [
                    30,
                    70.04957446077242
                  ],
                  [
                    31,
                    59.20976374949424
                  ],
                  [
                    32,
                    61.76863333032642
                  ],
                  [
                    33,
                    65.46569817255242
                  ],
                  [
                    34,
                    66.7668816737882
                  ],
                  [
                    35,
                    58.28622855847337
                  ],
                  [
                    36,
                    55.93784742727726
                  ],
                  [
                    37,
                    63.67407818777439
                  ],
                  [
                    38,
                    53.33561000449193
                  ],
                  [
                    39,
                    56.41262761412897
                  ],
                  [
                    40,
                    59.37218476874056
                  ],
                  [
                    41,
                    61.82200935856672
                  ],
                  [
                    42,
                    52.60993643541149
                  ],
                  [
                    43,
                    50.91132494978248
                  ],
                  [
                    44,
                    57.80843234171948
                  ],
                  [
                    45,
                    48.058686907007306
                  ],
                  [
                    46,
                    51.289390121360434
                  ],
                  [
                    47,
                    53.3247514950249
                  ],
                  [
                    48,
                    56.44764462816305
                  ],
                  [
                    49,
                    47.33367692875715
                  ],
                  [
                    50,
                    46.30120953514615
                  ],
                  [
                    51,
                    52.378069576981495
                  ],
                  [
                    52,
                    44.516697771687525
                  ],
                  [
                    53,
                    46.38242021952082
                  ],
                  [
                    54,
                    47.4064273181468
                  ],
                  [
                    55,
                    51.12893680732361
                  ],
                  [
                    56,
                    42.43671423719529
                  ],
                  [
                    57,
                    42.06671863759371
                  ],
                  [
                    58,
                    47.35171963323978
                  ],
                  [
                    59,
                    41.33310368046919
                  ]
                ]
              },
              {
                "name": "Left ventricle volume",
                "points": [
                  [
                    0,
                    125.360568
                  ],
                  [
                    1,
                    124.72604720842364
                  ],
                  [
                    2,
                    40.6357193211783
                  ],
                  [
                    3,
                    123.99784047986982
                  ],
                  [
                    4,
                    126.96443222103976
                  ],
                  [
                    5,
                    59.47989066956244
                  ],
                  [
                    6,
                    75.23725151929499
                  ],
                  [
                    7,
                    123.85901650972107
                  ],
                  [
                    8,
                    125.41281198976506
                  ],
                  [
                    9,
                    39.33661684245949
                  ],
                  [
                    10,
                    120.58790194683424
                  ],
                  [
                    11,
                    123.56539658479394
                  ],
                  [
                    12,
                    61.86857450397746
                  ],
                  [
                    13,
                    66.02558290918363
                  ],
                  [
                    14,
                    119.66324564752718
                  ],
                  [
                    15,
                    121.7144507090654
                  ],
                  [
                    16,
                    39.124834635531926
                  ],
                  [
                    17,
                    115.82814382480322
                  ],
                  [
                    18,
                    118.7781395176698
                  ],
                  [
                    19,
                    64.64821585050029
                  ],
                  [
                    20,
                    57.90011203264164
                  ],
                  [
                    21,
                    114.846908157477
                  ],
                  [
                    22,
                    117.02907512593843
                  ],
                  [
                    23,
                    39.26257832784231
                  ],
                  [
                    24,
                    111.01420776055902
                  ],
                  [
                    25,
                    113.90645662031244
                  ],
                  [
                    26,
                    69.05108122599115
                  ],
                  [
                    27,
                    50.30039685974047
                  ],
                  [
                    28,
                    110.2042813783971
                  ],
                  [
                    29,
                    112.50485546810908
                  ],
                  [
                    30,
                    39.922068367677234
                  ],
                  [
                    31,
                    106.50883225869774
                  ],
                  [
                    32,
                    109.33076967370776
                  ],
                  [
                    33,
                    75.84897256288289
                  ],
                  [
                    34,
                    43.19060752690769
                  ],
                  [
                    35,
                    105.88948005629936
                  ],
                  [
                    36,
                    108.28468295308272
                  ],
                  [
                    37,
                    41.26602134905104
                  ],
                  [
                    38,
                    102.22891565018804
                  ],
                  [
                    39,
                    105.0997787664581
                  ],
                  [
                    40,
                    84.21807877951922
                  ],
                  [
                    41,
                    36.78559529553413
                  ],
                  [
                    42,
                    101.88945419853088
                  ],
                  [
                    43,
                    104.3620536656336
                  ],
                  [
                    44,
                    43.335921201677735
                  ],
                  [
                    45,
                    96.7877180620162
                  ],
                  [
                    46,
                    101.18286765203716
                  ],
                  [
                    47,
                    91.98545025010654
                  ],
                  [
                    48,
                    35.32634083903538
                  ],
                  [
                    49,
                    98.16465781799764
                  ],
                  [
                    50,
                    100.70218001993877
                  ],
                  [
                    51,
                    46.03714253071028
                  ],
                  [
                    52,
                    85.45880124155065
                  ],
                  [
                    53,
                    97.55168992266135
                  ],
                  [
                    54,
                    96.35681937776194
                  ],
                  [
                    55,
                    34.70572999020753
                  ],
                  [
                    56,
                    94.69619773997364
                  ],
                  [
                    57,
                    97.23072752519067
                  ],
                  [
                    58,
                    49.05549311829371
                  ],
                  [
                    59,
                    75.639788423451
                  ]
                ]
              },
              {
                "name": "Right atrium volume",
                "points": [
                  [
                    0,
                    78.2537
                  ],
                  [
                    1,
                    87.66951522642975
                  ],
                  [
                    2,
                    105.87904851114548
                  ],
                  [
                    3,
                    70.20341572387944
                  ],
                  [
                    4,
                    79.94894650550187
                  ],
                  [
                    5,
                    94.63681318484514
                  ],
                  [
                    6,
                    75.94648892778709
                  ],
                  [
                    7,
                    73.9906962612223
                  ],
                  [
                    8,
                    81.70402905675968
                  ],
                  [
                    9,
                    97.54017960341956
                  ],
                  [
                    10,
                    63.11337481451569
                  ],
                  [
                    11,
                    73.36139126654582
                  ],
                  [
                    12,
                    86.11243222789771
                  ],
                  [
                    13,
                    75.56486824374305
                  ],
                  [
                    14,
                    66.6406728095043
                  ],
                  [
                    15,
                    74.3200971555684
                  ],
                  [
                    16,
                    88.96649275755692
                  ],
                  [
                    17,
                    56.14780816637516
                  ],
                  [
                    18,
                    67.03204582782116
                  ],
                  [
                    19,
                    78.43149098386277
                  ],
                  [
                    20,
                    75.30908026288269
                  ],
                  [
                    21,
                    60.03443505517924
                  ],
                  [
                    22,
                    67.61857099319472
                  ],
                  [
                    23,
                    81.41634108097921
                  ],
                  [
                    24,
                    49.88215499610428
                  ],
                  [
                    25,
                    61.21189394127679
                  ],
                  [
                    26,
                    71.46224640982754
                  ],
                  [
                    27,
                    75.17913921694351
                  ],
                  [
                    28,
                    53.997958124717435
                  ],
                  [
                    29,
                    61.40880255698262
                  ],
                  [
                    30,
                    74.53142351285727
                  ],
                  [
                    31,
                    44.137393703260656
                  ],
                  [
                    32,
                    55.75603844323479
                  ],
                  [
                    33,
                    65.01959529027529
                  ],
                  [
                    34,
                    74.94740493628079
                  ],
                  [
                    35,
                    48.42548652901608
                  ],
                  [
                    36,
                    55.61277057856088
                  ],
                  [
                    37,
                    68.17792653504259
                  ],
                  [
                    38,
                    38.856514209931206
                  ],
                  [
                    39,
                    50.61285635048697
                  ],
                  [
                    40,
                    59.03733048487745
                  ],
                  [
                    41,
                    70.13765842714461
                  ],
                  [
                    42,
                    43.26714129997274
                  ],
                  [
                    43,
                    50.190992204613515
                  ],
                  [
                    44,
                    62.28943989250435
                  ],
                  [
                    45,
                    34.22852577417714
                  ],
                  [
                    46,
                    45.75434962784573
                  ],
                  [
                    47,
                    53.48608417537622
                  ],
                  [
                    48,
                    64.34361075038898
                  ],
                  [
                    49,
                    38.48687335864
                  ],
                  [
                    50,
                    45.12240543625362
                  ],
                  [
                    51,
                    56.81682415443955
                  ],
                  [
                    52,
                    31.43010046891005
                  ],
                  [
                    53,
                    41.16333771298052
                  ],
                  [
                    54,
                    48.35215840973272
                  ],
                  [
                    55,
                    58.95433002892671
                  ],
                  [
                    56,
                    34.05804289886637
                  ],
                  [
                    57,
                    40.88235664373026
                  ],
                  [
                    58,
                    51.719681963223245
                  ],
                  [
                    59,
                    30.14935034077823
                  ]
                ]
              },
              {
                "name": "Right ventricle volume",
                "points": [
                  [
                    0,
                    167.4806
                  ],
                  [
                    1,
                    176.82744164622673
                  ],
                  [
                    2,
                    93.19346978850685
                  ],
                  [
                    3,
                    159.5939017147139
                  ],
                  [
                    4,
                    174.41896643539056
                  ],
                  [
                    5,
                    122.41270713334023
                  ],
                  [
                    6,
                    127.37720953307104
                  ],
                  [
                    7,
                    163.4233464998753
                  ],
                  [
                    8,
                    172.50852091015904
                  ],
                  [
                    9,
                    93.01432945892812
                  ],
                  [
                    10,
                    152.8391370790963
                  ],
                  [
                    11,
                    166.82814169357738
                  ],
                  [
                    12,
                    122.39691692215148
                  ],
                  [
                    13,
                    114.64897641118796
                  ],
                  [
                    14,
                    156.4201107670841
                  ],
                  [
                    15,
                    165.86445434431047
                  ],
                  [
                    16,
                    92.45303732441792
                  ],
                  [
                    17,
                    146.19688015959466
                  ],
                  [
                    18,
                    159.64950053662272
                  ],
                  [
                    19,
                    121.71615166463104
                  ],
                  [
                    20,
                    103.4005604609572
                  ],
                  [
                    21,
                    150.12431666602504
                  ],
                  [
                    22,
                    159.88767452487957
                  ],
                  [
                    23,
                    91.0102052101817
                  ],
                  [
                    24,
                    140.2095010267061
                  ],
                  [
                    25,
                    153.1602947926431
                  ],
                  [
                    26,
                    123.21212915541946
                  ],
                  [
                    27,
                    93.39138145041626
                  ],
                  [
                    28,
                    144.36649229954537
                  ],
                  [
                    29,
                    154.39515136151988
                  ],
                  [
                    30,
                    89.31079087340028
                  ],
                  [
                    31,
                    134.6946621645508
                  ],
                  [
                    32,
                    147.22490468382907
                  ],
                  [
                    33,
                    127.33287194042649
                  ],
                  [
                    34,
                    84.58304475668703
                  ],
                  [
                    35,
                    139.0397970578028
                  ],
                  [
                    36,
                    149.3036928564798
                  ],
                  [
                    37,
                    88.76508161198969
                  ],
                  [
                    38,
                    129.54827314632809
                  ],
                  [
                    39,
                    141.78743540625666
                  ],
                  [
                    40,
                    132.38385715149897
                  ],
                  [
                    41,
                    81.22325059637876
                  ],
                  [
                    42,
                    134.08816869612906
                  ],
                  [
                    43,
                    144.5746593523057
                  ],
                  [
                    44,
                    90.2382247113312
                  ],
                  [
                    45,
                    124.4820078985465
                  ],
                  [
                    46,
                    136.80235919193552
                  ],
                  [
                    47,
                    135.87409432169056
                  ],
                  [
                    48,
                    79.44941417630582
                  ],
                  [
                    49,
                    129.46492108889936
                  ],
                  [
                    50,
                    140.15723591099106
                  ],
                  [
                    51,
                    93.1423699896795
                  ],
                  [
                    52,
                    118.2752954129302
                  ],
                  [
                    53,
                    132.22167277494748
                  ],
                  [
                    54,
                    136.26281635253113
                  ],
                  [
                    55,
                    77.8004560102007
                  ],
                  [
                    56,
                    125.12702511291864
                  ],
                  [
                    57,
                    135.52240388698982
                  ],
                  [
                    58,
                    95.93327602053115
                  ],
                  [
                    59,
                    111.24090919547872
                  ]
                ]
              }
            ],
            "title": "Heldt2002 Orthostatic Stress - Lumped Parameter Circulation - Cardiac chamber volumes",
            "x_unit": "s"
          },
          "description": "How do atrial and ventricular volumes evolve?",
          "render": "timeseries"
        },
        {
          "data": {
            "series": [
              {
                "name": "Aorta volume distal",
                "points": [
                  [
                    0,
                    138.4476
                  ],
                  [
                    1,
                    124.01799390595384
                  ],
                  [
                    2,
                    128.01421238089227
                  ],
                  [
                    3,
                    123.38369562828278
                  ],
                  [
                    4,
                    114.72386157710856
                  ],
                  [
                    5,
                    114.91545260311982
                  ],
                  [
                    6,
                    119.14605114073724
                  ],
                  [
                    7,
                    114.10553132008968
                  ],
                  [
                    8,
                    106.23354058379084
                  ],
                  [
                    9,
                    115.30593686624148
                  ],
                  [
                    10,
                    114.31737287606346
                  ],
                  [
                    11,
                    107.7503358178991
                  ],
                  [
                    12,
                    107.88122075413712
                  ],
                  [
                    13,
                    113.15701255894952
                  ],
                  [
                    14,
                    108.8403670535926
                  ],
                  [
                    15,
                    101.37741849027054
                  ],
                  [
                    16,
                    109.31058473132262
                  ],
                  [
                    17,
                    108.92024973905188
                  ],
                  [
                    18,
                    102.7226925019286
                  ],
                  [
                    19,
                    101.77719048995534
                  ],
                  [
                    20,
                    107.34441673327782
                  ],
                  [
                    21,
                    103.502279202608
                  ],
                  [
                    22,
                    96.40512660436926
                  ],
                  [
                    23,
                    103.10603887789016
                  ],
                  [
                    24,
                    103.3346457975578
                  ],
                  [
                    25,
                    97.5752992960634
                  ],
                  [
                    26,
                    95.67294343587922
                  ],
                  [
                    27,
                    101.55639604046242
                  ],
                  [
                    28,
                    98.23438261655524
                  ],
                  [
                    29,
                    91.55941798759582
                  ],
                  [
                    30,
                    97.11155313697218
                  ],
                  [
                    31,
                    97.96972871907492
                  ],
                  [
                    32,
                    92.67472199318644
                  ],
                  [
                    33,
                    89.7885653620469
                  ],
                  [
                    34,
                    96.08533071438517
                  ],
                  [
                    35,
                    93.28384528136056
                  ],
                  [
                    36,
                    87.03367240810451
                  ],
                  [
                    37,
                    91.47279096503848
                  ],
                  [
                    38,
                    92.95896272847408
                  ],
                  [
                    39,
                    88.12382249257769
                  ],
                  [
                    40,
                    84.20092931270024
                  ],
                  [
                    41,
                    90.98309255401828
                  ],
                  [
                    42,
                    88.69650001610442
                  ],
                  [
                    43,
                    82.85645430671403
                  ],
                  [
                    44,
                    86.18856543892564
                  ],
                  [
                    45,
                    88.30829308863238
                  ],
                  [
                    46,
                    83.9213167592525
                  ],
                  [
                    47,
                    79.05606591056275
                  ],
                  [
                    48,
                    86.2281522581625
                  ],
                  [
                    49,
                    84.44416581899479
                  ],
                  [
                    50,
                    78.99335624326976
                  ],
                  [
                    51,
                    81.21561554676973
                  ],
                  [
                    52,
                    83.96861120168862
                  ],
                  [
                    53,
                    80.01258471932242
                  ],
                  [
                    54,
                    74.54139263076483
                  ],
                  [
                    55,
                    81.75347464576
                  ],
                  [
                    56,
                    80.4635687682817
                  ],
                  [
                    57,
                    75.38303440982705
                  ],
                  [
                    58,
                    76.51656611869979
                  ],
                  [
                    59,
                    79.88314611157853
                  ]
                ]
              },
              {
                "name": "Aorta volume proximal",
                "points": [
                  [
                    0,
                    31.1705
                  ],
                  [
                    1,
                    26.39022549356779
                  ],
                  [
                    2,
                    32.687926315995014
                  ],
                  [
                    3,
                    28.091473276359338
                  ],
                  [
                    4,
                    24.465026637269265
                  ],
                  [
                    5,
                    29.76771483131587
                  ],
                  [
                    6,
                    29.050624810339443
                  ],
                  [
                    7,
                    25.082103387338453
                  ],
                  [
                    8,
                    22.38410438797796
                  ],
                  [
                    9,
                    30.248783901084632
                  ],
                  [
                    10,
                    26.33649565066196
                  ],
                  [
                    11,
                    23.04253738039645
                  ],
                  [
                    12,
                    27.773370068358055
                  ],
                  [
                    13,
                    27.886960506156516
                  ],
                  [
                    14,
                    24.02005450057875
                  ],
                  [
                    15,
                    21.289166478127868
                  ],
                  [
                    16,
                    28.89521070109919
                  ],
                  [
                    17,
                    25.267045924843025
                  ],
                  [
                    18,
                    22.007815331137856
                  ],
                  [
                    19,
                    26.171998233595673
                  ],
                  [
                    20,
                    26.701763995137693
                  ],
                  [
                    21,
                    22.938535110560466
                  ],
                  [
                    22,
                    20.26273861441557
                  ],
                  [
                    23,
                    27.4472601408472
                  ],
                  [
                    24,
                    24.15081039889151
                  ],
                  [
                    25,
                    20.956958511950628
                  ],
                  [
                    26,
                    24.745970485751705
                  ],
                  [
                    27,
                    25.51041017203668
                  ],
                  [
                    28,
                    21.875497590081277
                  ],
                  [
                    29,
                    19.27222225573888
                  ],
                  [
                    30,
                    26.05115321901945
                  ],
                  [
                    31,
                    23.078299187857205
                  ],
                  [
                    32,
                    19.964664059368836
                  ],
                  [
                    33,
                    23.200544796790844
                  ],
                  [
                    34,
                    24.38384113150699
                  ],
                  [
                    35,
                    20.88498949444344
                  ],
                  [
                    36,
                    18.354343717992418
                  ],
                  [
                    37,
                    24.71423277889037
                  ],
                  [
                    38,
                    22.08661237970438
                  ],
                  [
                    39,
                    19.05151629013766
                  ],
                  [
                    40,
                    21.234842088063026
                  ],
                  [
                    41,
                    23.330588830322167
                  ],
                  [
                    42,
                    19.977625213987434
                  ],
                  [
                    43,
                    17.513440176826826
                  ],
                  [
                    44,
                    23.375048288927687
                  ],
                  [
                    45,
                    21.175112498427374
                  ],
                  [
                    46,
                    18.21646683767322
                  ],
                  [
                    47,
                    18.865620306801723
                  ],
                  [
                    48,
                    22.35233696746945
                  ],
                  [
                    49,
                    19.146703561759978
                  ],
                  [
                    50,
                    16.741216361811535
                  ],
                  [
                    51,
                    21.965641936157276
                  ],
                  [
                    52,
                    20.331938997184256
                  ],
                  [
                    53,
                    17.44650707314678
                  ],
                  [
                    54,
                    16.50895325431672
                  ],
                  [
                    55,
                    21.4181407475234
                  ],
                  [
                    56,
                    18.376391035359383
                  ],
                  [
                    57,
                    16.02385930236421
                  ],
                  [
                    58,
                    20.4375917324006
                  ],
                  [
                    59,
                    19.542229763728816
                  ]
                ]
              },
              {
                "name": "Pulmonary artery volume",
                "points": [
                  [
                    0,
                    58.926
                  ],
                  [
                    1,
                    54.102380087400206
                  ],
                  [
                    2,
                    73.71677139376467
                  ],
                  [
                    3,
                    64.0255509899631
                  ],
                  [
                    4,
                    55.95403622411366
                  ],
                  [
                    5,
                    65.3345420219057
                  ],
                  [
                    6,
                    67.91615358453083
                  ],
                  [
                    7,
                    58.30603459753972
                  ],
                  [
                    8,
                    51.507021953594155
                  ],
                  [
                    9,
                    70.05631920356304
                  ],
                  [
                    10,
                    60.95429416488149
                  ],
                  [
                    11,
                    52.83305750782347
                  ],
                  [
                    12,
                    59.37141295047139
                  ],
                  [
                    13,
                    64.04395961173239
                  ],
                  [
                    14,
                    54.63583998220928
                  ],
                  [
                    15,
                    47.93186501955679
                  ],
                  [
                    16,
                    65.28734932059639
                  ],
                  [
                    17,
                    57.030127847213
                  ],
                  [
                    18,
                    49.11474631779905
                  ],
                  [
                    19,
                    52.5982869998025
                  ],
                  [
                    20,
                    60.00690157583756
                  ],
                  [
                    21,
                    50.88283345461539
                  ],
                  [
                    22,
                    44.352748096732725
                  ],
                  [
                    23,
                    60.44324010951158
                  ],
                  [
                    24,
                    53.27886526188884
                  ],
                  [
                    25,
                    45.58982647258544
                  ],
                  [
                    26,
                    45.97270056409299
                  ],
                  [
                    27,
                    56.252256331216486
                  ],
                  [
                    28,
                    47.4058734650667
                  ],
                  [
                    29,
                    41.052237279165865
                  ],
                  [
                    30,
                    55.49255104404092
                  ],
                  [
                    31,
                    49.83463136895339
                  ],
                  [
                    32,
                    42.36037524216056
                  ],
                  [
                    33,
                    40.136962778604605
                  ],
                  [
                    34,
                    52.79551813047759
                  ],
                  [
                    35,
                    44.22405630594936
                  ],
                  [
                    36,
                    38.03633684082208
                  ],
                  [
                    37,
                    50.49796463512365
                  ],
                  [
                    38,
                    46.678038945919866
                  ],
                  [
                    39,
                    39.40255565633881
                  ],
                  [
                    40,
                    35.48570606147167
                  ],
                  [
                    41,
                    49.57781195486002
                  ],
                  [
                    42,
                    41.300779944626015
                  ],
                  [
                    43,
                    35.26604122907022
                  ],
                  [
                    44,
                    45.714115244519334
                  ],
                  [
                    45,
                    43.76840696662275
                  ],
                  [
                    46,
                    36.67550247845853
                  ],
                  [
                    47,
                    31.99958305851608
                  ],
                  [
                    48,
                    46.52160185607514
                  ],
                  [
                    49,
                    38.59822805756894
                  ],
                  [
                    50,
                    32.70503222459331
                  ],
                  [
                    51,
                    41.36131956370109
                  ],
                  [
                    52,
                    41.073137462915454
                  ],
                  [
                    53,
                    34.14984781577183
                  ],
                  [
                    54,
                    29.329431993116515
                  ],
                  [
                    55,
                    43.55661208508421
                  ],
                  [
                    56,
                    36.09439937942337
                  ],
                  [
                    57,
                    30.33421345435884
                  ],
                  [
                    58,
                    37.419635512318834
                  ],
                  [
                    59,
                    38.57702429173074
                  ]
                ]
              },
              {
                "name": "Pulmonary artery volume distal",
                "points": [
                  [
                    0,
                    60.11203897
                  ],
                  [
                    1,
                    44.17501997627388
                  ],
                  [
                    2,
                    66.68847175721413
                  ],
                  [
                    3,
                    53.13588412110561
                  ],
                  [
                    4,
                    45.69557080923763
                  ],
                  [
                    5,
                    65.32249613060628
                  ],
                  [
                    6,
                    56.92517099461758
                  ],
                  [
                    7,
                    48.07189651573712
                  ],
                  [
                    8,
                    41.74163713127101
                  ],
                  [
                    9,
                    63.44278422109888
                  ],
                  [
                    10,
                    50.69509815261178
                  ],
                  [
                    11,
                    43.26110450873634
                  ],
                  [
                    12,
                    62.38702023919071
                  ],
                  [
                    13,
                    53.871649021456136
                  ],
                  [
                    14,
                    45.177201307235485
                  ],
                  [
                    15,
                    38.969672634050774
                  ],
                  [
                    16,
                    59.40995056499227
                  ],
                  [
                    17,
                    47.5862730670984
                  ],
                  [
                    18,
                    40.359674956628254
                  ],
                  [
                    19,
                    59.74452603834808
                  ],
                  [
                    20,
                    50.73866654104
                  ],
                  [
                    21,
                    42.23128368904984
                  ],
                  [
                    22,
                    36.19958603226119
                  ],
                  [
                    23,
                    56.912765458756105
                  ],
                  [
                    24,
                    44.62744614774749
                  ],
                  [
                    25,
                    37.61278481613857
                  ],
                  [
                    26,
                    55.0069691218081
                  ],
                  [
                    27,
                    47.87688376949815
                  ],
                  [
                    28,
                    39.50476164606902
                  ],
                  [
                    29,
                    33.645505933826996
                  ],
                  [
                    30,
                    55.41923848030605
                  ],
                  [
                    31,
                    41.9135661908805
                  ],
                  [
                    32,
                    35.09598028493457
                  ],
                  [
                    33,
                    47.4308278080721
                  ],
                  [
                    34,
                    45.3240725121767
                  ],
                  [
                    35,
                    37.01000628816077
                  ],
                  [
                    36,
                    31.311676417470952
                  ],
                  [
                    37,
                    53.31480174589881
                  ],
                  [
                    38,
                    39.42883875181486
                  ],
                  [
                    39,
                    32.79114492516226
                  ],
                  [
                    40,
                    38.454154841465105
                  ],
                  [
                    41,
                    43.0890882182808
                  ],
                  [
                    42,
                    34.71891534731281
                  ],
                  [
                    43,
                    29.168640564187218
                  ],
                  [
                    44,
                    49.53352201406289
                  ],
                  [
                    45,
                    37.1431871109465
                  ],
                  [
                    46,
                    30.6673413373747
                  ],
                  [
                    47,
                    30.499895525697536
                  ],
                  [
                    48,
                    41.19835810621939
                  ],
                  [
                    49,
                    32.60249605660559
                  ],
                  [
                    50,
                    27.188629239220347
                  ],
                  [
                    51,
                    44.57811954571987
                  ],
                  [
                    52,
                    35.03238105036865
                  ],
                  [
                    53,
                    28.70179458985421
                  ],
                  [
                    54,
                    25.223200774042475
                  ],
                  [
                    55,
                    39.68638516797561
                  ],
                  [
                    56,
                    30.64324124323315
                  ],
                  [
                    57,
                    25.35653435420479
                  ],
                  [
                    58,
                    40.01394283151961
                  ],
                  [
                    59,
                    33.08418035085836
                  ]
                ]
              },
              {
                "name": "Pulmonary artery volume proximal",
                "points": [
                  [
                    0,
                    33.1398
                  ],
                  [
                    1,
                    30.08968879571772
                  ],
                  [
                    2,
                    42.735000944595754
                  ],
                  [
                    3,
                    36.601438300431376
                  ],
                  [
                    4,
                    31.205773590009866
                  ],
                  [
                    5,
                    37.26782242338629
                  ],
                  [
                    6,
                    39.31624238450015
                  ],
                  [
                    7,
                    33.00149875335076
                  ],
                  [
                    8,
                    28.395205634408978
                  ],
                  [
                    9,
                    40.83155116335829
                  ],
                  [
                    10,
                    34.96889037533975
                  ],
                  [
                    11,
                    29.600397602807693
                  ],
                  [
                    12,
                    33.4559336517723
                  ],
                  [
                    13,
                    37.2138576778963
                  ],
                  [
                    14,
                    31.07833257329156
                  ],
                  [
                    15,
                    26.57949204547594
                  ],
                  [
                    16,
                    37.87937672565664
                  ],
                  [
                    17,
                    32.896649992315574
                  ],
                  [
                    18,
                    27.69009246934122
                  ],
                  [
                    19,
                    30.034859803912667
                  ],
                  [
                    20,
                    35.04664566291024
                  ],
                  [
                    21,
                    29.13015160933828
                  ],
                  [
                    22,
                    24.769966402271606
                  ],
                  [
                    23,
                    34.87565624425712
                  ],
                  [
                    24,
                    30.931389165981223
                  ],
                  [
                    25,
                    25.88596002264322
                  ],
                  [
                    26,
                    27.141321578763648
                  ],
                  [
                    27,
                    33.024401103722816
                  ],
                  [
                    28,
                    27.33048983690223
                  ],
                  [
                    29,
                    23.10435665751315
                  ],
                  [
                    30,
                    32.142910001346664
                  ],
                  [
                    31,
                    29.13042953658297
                  ],
                  [
                    32,
                    24.23538591641776
                  ],
                  [
                    33,
                    24.51114497736401
                  ],
                  [
                    34,
                    31.14567230209106
                  ],
                  [
                    35,
                    25.685968187107267
                  ],
                  [
                    36,
                    21.584899071410327
                  ],
                  [
                    37,
                    29.734756971265597
                  ],
                  [
                    38,
                    27.48200028602972
                  ],
                  [
                    39,
                    22.72628303952446
                  ],
                  [
                    40,
                    21.956894979770063
                  ],
                  [
                    41,
                    29.377461643139597
                  ],
                  [
                    42,
                    24.178021619646792
                  ],
                  [
                    43,
                    20.192394302905516
                  ],
                  [
                    44,
                    27.465055257129983
                  ],
                  [
                    45,
                    25.965552630433873
                  ],
                  [
                    46,
                    21.338447295797668
                  ],
                  [
                    47,
                    19.51612050269
                  ],
                  [
                    48,
                    27.677121157922297
                  ],
                  [
                    49,
                    22.787597311076507
                  ],
                  [
                    50,
                    18.9086513264055
                  ],
                  [
                    51,
                    25.10430940531486
                  ],
                  [
                    52,
                    24.563818006004247
                  ],
                  [
                    53,
                    20.056748046095993
                  ],
                  [
                    54,
                    17.392729256116848
                  ],
                  [
                    55,
                    26.0128409380465
                  ],
                  [
                    56,
                    21.502832849745943
                  ],
                  [
                    57,
                    17.723451762290008
                  ],
                  [
                    58,
                    22.606338454418182
                  ],
                  [
                    59,
                    23.266744780518163
                  ]
                ]
              }
            ],
            "title": "Heldt2002 Orthostatic Stress - Lumped Parameter Circulation - Aortic and pulmonary trunk volumes",
            "x_unit": "s"
          },
          "description": "How do the proximal and distal trunks fill?",
          "render": "timeseries"
        },
        {
          "data": {
            "series": [
              {
                "name": "Pulmonary capillary volume",
                "points": [
                  [
                    0,
                    107.57022
                  ],
                  [
                    1,
                    105.7955278180069
                  ],
                  [
                    2,
                    113.3415939604987
                  ],
                  [
                    3,
                    111.47044671808987
                  ],
                  [
                    4,
                    105.21218983964047
                  ],
                  [
                    5,
                    104.05746253934151
                  ],
                  [
                    6,
                    113.18461165347762
                  ],
                  [
                    7,
                    104.85932133042932
                  ],
                  [
                    8,
                    100.18518541777244
                  ],
                  [
                    9,
                    106.20145410059509
                  ],
                  [
                    10,
                    105.01046657803988
                  ],
                  [
                    11,
                    98.18439371414352
                  ],
                  [
                    12,
                    95.79360593518764
                  ],
                  [
                    13,
                    104.89559282414947
                  ],
                  [
                    14,
                    96.94231998316012
                  ],
                  [
                    15,
                    92.04007317126498
                  ],
                  [
                    16,
                    96.73517964532572
                  ],
                  [
                    17,
                    96.72378321354977
                  ],
                  [
                    18,
                    89.86625031423391
                  ],
                  [
                    19,
                    86.81234946169995
                  ],
                  [
                    20,
                    95.9226042541023
                  ],
                  [
                    21,
                    88.74021394380642
                  ],
                  [
                    22,
                    83.84650168717114
                  ],
                  [
                    23,
                    87.44063699416975
                  ],
                  [
                    24,
                    88.70105214014953
                  ],
                  [
                    25,
                    81.96732753636928
                  ],
                  [
                    26,
                    78.54571339073915
                  ],
                  [
                    27,
                    87.43385906743794
                  ],
                  [
                    28,
                    81.12842116743045
                  ],
                  [
                    29,
                    76.29483301601874
                  ],
                  [
                    30,
                    78.86384731836564
                  ],
                  [
                    31,
                    81.3284485347078
                  ],
                  [
                    32,
                    74.74708856446654
                  ],
                  [
                    33,
                    71.16390261301099
                  ],
                  [
                    34,
                    79.55217567580648
                  ],
                  [
                    35,
                    74.16780282307809
                  ],
                  [
                    36,
                    69.40149538873821
                  ],
                  [
                    37,
                    71.02346265601555
                  ],
                  [
                    38,
                    74.57275916704515
                  ],
                  [
                    39,
                    68.14291371380082
                  ],
                  [
                    40,
                    64.54284387179173
                  ],
                  [
                    41,
                    72.19853384731205
                  ],
                  [
                    42,
                    67.76947437954428
                  ],
                  [
                    43,
                    63.06767927512464
                  ],
                  [
                    44,
                    63.83767492795624
                  ],
                  [
                    45,
                    68.32961442579864
                  ],
                  [
                    46,
                    62.05081894212011
                  ],
                  [
                    47,
                    58.50910450992181
                  ],
                  [
                    48,
                    65.30426823141433
                  ],
                  [
                    49,
                    61.842460895763
                  ],
                  [
                    50,
                    57.20515262943293
                  ],
                  [
                    51,
                    57.21889427858249
                  ],
                  [
                    52,
                    62.4749753254415
                  ],
                  [
                    53,
                    56.40082245832394
                  ],
                  [
                    54,
                    52.93663787245975
                  ],
                  [
                    55,
                    58.850543397746314
                  ],
                  [
                    56,
                    56.339679788932145
                  ],
                  [
                    57,
                    51.77173689967316
                  ],
                  [
                    58,
                    51.113150552887646
                  ],
                  [
                    59,
                    56.94681605547274
                  ]
                ]
              },
              {
                "name": "Pulmonary vein volume",
                "points": [
                  [
                    0,
                    293.0398
                  ],
                  [
                    1,
                    315.2721367296601
                  ],
                  [
                    2,
                    321.4796701202865
                  ],
                  [
                    3,
                    279.7613675956551
                  ],
                  [
                    4,
                    302.09587924514193
                  ],
                  [
                    5,
                    306.3537432656858
                  ],
                  [
                    6,
                    294.44634902534955
                  ],
                  [
                    7,
                    279.6883554956185
                  ],
                  [
                    8,
                    297.7723386099777
                  ],
                  [
                    9,
                    301.44368906222513
                  ],
                  [
                    10,
                    257.886190446179
                  ],
                  [
                    11,
                    277.09253835378104
                  ],
                  [
                    12,
                    282.10094053640523
                  ],
                  [
                    13,
                    274.3886456409488
                  ],
                  [
                    14,
                    253.16025432910135
                  ],
                  [
                    15,
                    270.6721066754275
                  ],
                  [
                    16,
                    273.564838729538
                  ],
                  [
                    17,
                    230.91332439706255
                  ],
                  [
                    18,
                    248.1573262846424
                  ],
                  [
                    19,
                    254.24469278060832
                  ],
                  [
                    20,
                    251.0432475066602
                  ],
                  [
                    21,
                    225.84031558141953
                  ],
                  [
                    22,
                    242.95633441780151
                  ],
                  [
                    23,
                    245.75912870216388
                  ],
                  [
                    24,
                    204.8334032775023
                  ],
                  [
                    25,
                    220.8382510238113
                  ],
                  [
                    26,
                    227.83801018591564
                  ],
                  [
                    27,
                    229.11673925888775
                  ],
                  [
                    28,
                    200.60457842767863
                  ],
                  [
                    29,
                    217.02723934991604
                  ],
                  [
                    30,
                    220.13495472334188
                  ],
                  [
                    31,
                    180.9431326818583
                  ],
                  [
                    32,
                    196.0297943123152
                  ],
                  [
                    33,
                    203.6745123457987
                  ],
                  [
                    34,
                    209.19655568308488
                  ],
                  [
                    35,
                    177.60590997185724
                  ],
                  [
                    36,
                    193.2579374863068
                  ],
                  [
                    37,
                    196.7228329349416
                  ],
                  [
                    38,
                    159.19828575009254
                  ],
                  [
                    39,
                    173.47270178323922
                  ],
                  [
                    40,
                    181.5812358466452
                  ],
                  [
                    41,
                    190.8205743212231
                  ],
                  [
                    42,
                    156.4932345880309
                  ],
                  [
                    43,
                    171.3196236070669
                  ],
                  [
                    44,
                    175.18433297454033
                  ],
                  [
                    45,
                    140.44732964494568
                  ],
                  [
                    46,
                    152.77534531972393
                  ],
                  [
                    47,
                    161.5669126873879
                  ],
                  [
                    48,
                    170.1634045054155
                  ],
                  [
                    49,
                    136.93477239283976
                  ],
                  [
                    50,
                    150.91472600627264
                  ],
                  [
                    51,
                    155.23093656492583
                  ],
                  [
                    52,
                    128.00298056956927
                  ],
                  [
                    53,
                    133.68262866104874
                  ],
                  [
                    54,
                    143.29302881703913
                  ],
                  [
                    55,
                    150.60394416290762
                  ],
                  [
                    56,
                    118.77341152921362
                  ],
                  [
                    57,
                    131.97872165162067
                  ],
                  [
                    58,
                    136.73018520421928
                  ],
                  [
                    59,
                    115.74324044664088
                  ]
                ]
              }
            ],
            "title": "Heldt2002 Orthostatic Stress - Lumped Parameter Circulation - Pulmonary perfusion",
            "x_unit": "s"
          },
          "description": "How do pulmonary capillaries and veins fill?",
          "render": "timeseries"
        },
        {
          "data": {
            "series": [
              {
                "name": "Systemic artery volume",
                "points": [
                  [
                    0,
                    519.7915
                  ],
                  [
                    1,
                    514.9289272261274
                  ],
                  [
                    2,
                    521.9805184732686
                  ],
                  [
                    3,
                    516.8777466402294
                  ],
                  [
                    4,
                    513.5348877839682
                  ],
                  [
                    5,
                    520.2630645034998
                  ],
                  [
                    6,
                    517.8392513755091
                  ],
                  [
                    7,
                    514.0527064126567
                  ],
                  [
                    8,
                    511.4126659324827
                  ],
                  [
                    9,
                    519.8591792357549
                  ],
                  [
                    10,
                    515.1885045989275
                  ],
                  [
                    11,
                    512.091726038375
                  ],
                  [
                    12,
                    518.6186389943156
                  ],
                  [
                    13,
                    516.7726645517685
                  ],
                  [
                    14,
                    512.9815517039794
                  ],
                  [
                    15,
                    510.3560189069697
                  ],
                  [
                    16,
                    518.7411332198068
                  ],
                  [
                    17,
                    514.1416054786149
                  ],
                  [
                    18,
                    511.0242487446025
                  ],
                  [
                    19,
                    516.7024549191925
                  ],
                  [
                    20,
                    515.7087303226464
                  ],
                  [
                    21,
                    511.88432967103176
                  ],
                  [
                    22,
                    509.2779116974182
                  ],
                  [
                    23,
                    517.4798282787569
                  ],
                  [
                    24,
                    513.0422667194096
                  ],
                  [
                    25,
                    509.9310687891864
                  ],
                  [
                    26,
                    514.2186399080301
                  ],
                  [
                    27,
                    514.6385594476177
                  ],
                  [
                    28,
                    510.7940412139466
                  ],
                  [
                    29,
                    508.2251045721544
                  ],
                  [
                    30,
                    516.1272570851203
                  ],
                  [
                    31,
                    511.9760178216103
                  ],
                  [
                    32,
                    508.8859891304385
                  ],
                  [
                    33,
                    511.2923824429972
                  ],
                  [
                    34,
                    513.6183606601752
                  ],
                  [
                    35,
                    509.7656628420896
                  ],
                  [
                    36,
                    507.2362919790843
                  ],
                  [
                    37,
                    514.6910458908324
                  ],
                  [
                    38,
                    510.9771891344285
                  ],
                  [
                    39,
                    507.9116550550913
                  ],
                  [
                    40,
                    508.3205719521843
                  ],
                  [
                    41,
                    512.6652153935371
                  ],
                  [
                    42,
                    508.8124164713794
                  ],
                  [
                    43,
                    506.3183174306307
                  ],
                  [
                    44,
                    513.1924334563818
                  ],
                  [
                    45,
                    510.054567076455
                  ],
                  [
                    46,
                    507.0093142649214
                  ],
                  [
                    47,
                    505.8538390601629
                  ],
                  [
                    48,
                    511.7804565550403
                  ],
                  [
                    49,
                    507.92988372126854
                  ],
                  [
                    50,
                    505.4647865782584
                  ],
                  [
                    51,
                    511.6717503409398
                  ],
                  [
                    52,
                    509.19812553884486
                  ],
                  [
                    53,
                    506.167558385502
                  ],
                  [
                    54,
                    504.25661072757896
                  ],
                  [
                    55,
                    510.9531509365734
                  ],
                  [
                    56,
                    507.1037659806654
                  ],
                  [
                    57,
                    504.66286207837334
                  ],
                  [
                    58,
                    510.20029859287007
                  ],
                  [
                    59,
                    508.394394455402
                  ]
                ]
              },
              {
                "name": "Systemic artery volume proximal",
                "points": [
                  [
                    0,
                    129.6439
                  ],
                  [
                    1,
                    108.03650426718372
                  ],
                  [
                    2,
                    139.65306110330602
                  ],
                  [
                    3,
                    116.1735387853867
                  ],
                  [
                    4,
                    101.6473033517858
                  ],
                  [
                    5,
                    132.74488653613827
                  ],
                  [
                    6,
                    120.475324629545
                  ],
                  [
                    7,
                    103.8834680322934
                  ],
                  [
                    8,
                    92.7806956759118
                  ],
                  [
                    9,
                    129.9197179995123
                  ],
                  [
                    10,
                    108.798043866047
                  ],
                  [
                    11,
                    95.60810524698051
                  ],
                  [
                    12,
                    125.60957099010254
                  ],
                  [
                    13,
                    115.74655885327368
                  ],
                  [
                    14,
                    99.36813710163642
                  ],
                  [
                    15,
                    88.44903654314471
                  ],
                  [
                    16,
                    124.9747870962282
                  ],
                  [
                    17,
                    104.31279623882295
                  ],
                  [
                    18,
                    91.21285217585134
                  ],
                  [
                    19,
                    118.2089567266836
                  ],
                  [
                    20,
                    111.06904560710034
                  ],
                  [
                    21,
                    94.79177234587344
                  ],
                  [
                    22,
                    84.09892152586393
                  ],
                  [
                    23,
                    119.56231926899764
                  ],
                  [
                    24,
                    99.65393838352682
                  ],
                  [
                    25,
                    86.76349388044608
                  ],
                  [
                    26,
                    108.9188474990992
                  ],
                  [
                    27,
                    106.43956392007858
                  ],
                  [
                    28,
                    90.30185890653254
                  ],
                  [
                    29,
                    79.90239549109492
                  ],
                  [
                    30,
                    113.97426065744466
                  ],
                  [
                    31,
                    95.19077349272082
                  ],
                  [
                    32,
                    82.56315541200715
                  ],
                  [
                    33,
                    97.56033352991632
                  ],
                  [
                    34,
                    102.09939313287168
                  ],
                  [
                    35,
                    86.12131142933536
                  ],
                  [
                    36,
                    76.00842876662576
                  ],
                  [
                    37,
                    108.15744628275206
                  ],
                  [
                    38,
                    91.06700061927984
                  ],
                  [
                    39,
                    78.69400824964718
                  ],
                  [
                    40,
                    85.107848684392
                  ],
                  [
                    41,
                    98.09672645832846
                  ],
                  [
                    42,
                    82.29250846998455
                  ],
                  [
                    43,
                    72.43404926694603
                  ],
                  [
                    44,
                    102.06531130376132
                  ],
                  [
                    45,
                    87.30165283078452
                  ],
                  [
                    46,
                    75.15036112568721
                  ],
                  [
                    47,
                    73.66903907166628
                  ],
                  [
                    48,
                    94.42220808463092
                  ],
                  [
                    49,
                    78.7864179943655
                  ],
                  [
                    50,
                    69.1447894349054
                  ],
                  [
                    51,
                    95.75954856419452
                  ],
                  [
                    52,
                    83.84465660374498
                  ],
                  [
                    53,
                    71.87804440630298
                  ],
                  [
                    54,
                    65.46885831364855
                  ],
                  [
                    55,
                    90.98545708541268
                  ],
                  [
                    56,
                    75.53715740363802
                  ],
                  [
                    57,
                    66.08344878627274
                  ],
                  [
                    58,
                    89.50535406468342
                  ],
                  [
                    59,
                    80.63257458064406
                  ]
                ]
              },
              {
                "name": "Systemic capillary volume",
                "points": [
                  [
                    0,
                    256.8555
                  ],
                  [
                    1,
                    249.36274968333123
                  ],
                  [
                    2,
                    245.7716997972492
                  ],
                  [
                    3,
                    241.51738108103905
                  ],
                  [
                    4,
                    234.74202221045903
                  ],
                  [
                    5,
                    229.36973815125864
                  ],
                  [
                    6,
                    229.68414870287367
                  ],
                  [
                    7,
                    226.06874336523055
                  ],
                  [
                    8,
                    220.27474684711217
                  ],
                  [
                    9,
                    220.1045026764877
                  ],
                  [
                    10,
                    219.24370341502384
                  ],
                  [
                    11,
                    214.9471556595699
                  ],
                  [
                    12,
                    210.7944787496575
                  ],
                  [
                    13,
                    212.30651977729715
                  ],
                  [
                    14,
                    209.726231689847
                  ],
                  [
                    15,
                    204.7147237133987
                  ],
                  [
                    16,
                    204.3663903023272
                  ],
                  [
                    17,
                    204.07989188899197
                  ],
                  [
                    18,
                    200.267021319735
                  ],
                  [
                    19,
                    195.97235025442072
                  ],
                  [
                    20,
                    197.6520892395341
                  ],
                  [
                    21,
                    195.4789290088927
                  ],
                  [
                    22,
                    190.85156141991703
                  ],
                  [
                    23,
                    190.06360846530504
                  ],
                  [
                    24,
                    190.15563778219556
                  ],
                  [
                    25,
                    186.7124578673037
                  ],
                  [
                    26,
                    182.30239111157277
                  ],
                  [
                    27,
                    184.0280303244591
                  ],
                  [
                    28,
                    182.22452839070115
                  ],
                  [
                    29,
                    177.96044276569495
                  ],
                  [
                    30,
                    176.76445265045237
                  ],
                  [
                    31,
                    177.2021743406266
                  ],
                  [
                    32,
                    174.11408680650177
                  ],
                  [
                    33,
                    169.7032906159347
                  ],
                  [
                    34,
                    171.3685358188261
                  ],
                  [
                    35,
                    169.91808527911869
                  ],
                  [
                    36,
                    166.00272587868093
                  ],
                  [
                    37,
                    164.43872717764998
                  ],
                  [
                    38,
                    165.18257737017325
                  ],
                  [
                    39,
                    162.43417565452168
                  ],
                  [
                    40,
                    158.14152459177797
                  ],
                  [
                    41,
                    159.6227548736034
                  ],
                  [
                    42,
                    158.50976604943
                  ],
                  [
                    43,
                    154.9241173875138
                  ],
                  [
                    44,
                    153.0306775535886
                  ],
                  [
                    45,
                    154.03274562434976
                  ],
                  [
                    46,
                    151.60632174037954
                  ],
                  [
                    47,
                    147.5271148515379
                  ],
                  [
                    48,
                    148.7102706635182
                  ],
                  [
                    49,
                    147.91669493898573
                  ],
                  [
                    50,
                    144.63718317694847
                  ],
                  [
                    51,
                    142.450303827872
                  ],
                  [
                    52,
                    143.65301137367473
                  ],
                  [
                    53,
                    141.52582160723156
                  ],
                  [
                    54,
                    137.70777726937325
                  ],
                  [
                    55,
                    138.51986559511244
                  ],
                  [
                    56,
                    138.0244206909307
                  ],
                  [
                    57,
                    135.02714160169288
                  ],
                  [
                    58,
                    132.58626217982572
                  ],
                  [
                    59,
                    133.9317915243022
                  ]
                ]
              },
              {
                "name": "Systemic vein volume",
                "points": [
                  [
                    0,
                    2961.6507
                  ],
                  [
                    1,
                    2959.812230571105
                  ],
                  [
                    2,
                    2954.846047652833
                  ],
                  [
                    3,
                    2947.448796009574
                  ],
                  [
                    4,
                    2936.7029155404643
                  ],
                  [
                    5,
                    2925.186802023528
                  ],
                  [
                    6,
                    2914.5359657422973
                  ],
                  [
                    7,
                    2903.0858355026885
                  ],
                  [
                    8,
                    2891.003473419049
                  ],
                  [
                    9,
                    2879.7765000623717
                  ],
                  [
                    10,
                    2869.700070232333
                  ],
                  [
                    11,
                    2858.382422794979
                  ],
                  [
                    12,
                    2847.272487616593
                  ],
                  [
                    13,
                    2837.5591382897296
                  ],
                  [
                    14,
                    2827.505599281546
                  ],
                  [
                    15,
                    2816.6875927333144
                  ],
                  [
                    16,
                    2806.5278833155317
                  ],
                  [
                    17,
                    2797.508796638592
                  ],
                  [
                    18,
                    2787.1705704060396
                  ],
                  [
                    19,
                    2776.7732539153153
                  ],
                  [
                    20,
                    2767.5650284086646
                  ],
                  [
                    21,
                    2758.1414064229793
                  ],
                  [
                    22,
                    2747.7738861694206
                  ],
                  [
                    23,
                    2737.8813893583165
                  ],
                  [
                    24,
                    2729.1363530395342
                  ],
                  [
                    25,
                    2719.1206327812297
                  ],
                  [
                    26,
                    2708.9145932401834
                  ],
                  [
                    27,
                    2699.760724741022
                  ],
                  [
                    28,
                    2690.5840905716714
                  ],
                  [
                    29,
                    2680.3965924213767
                  ],
                  [
                    30,
                    2670.5742869336073
                  ],
                  [
                    31,
                    2661.922943703258
                  ],
                  [
                    32,
                    2652.112787536331
                  ],
                  [
                    33,
                    2642.036177469362
                  ],
                  [
                    34,
                    2632.8944326945
                  ],
                  [
                    35,
                    2623.920772475056
                  ],
                  [
                    36,
                    2613.911759373179
                  ],
                  [
                    37,
                    2604.181813587398
                  ],
                  [
                    38,
                    2595.6283237717794
                  ],
                  [
                    39,
                    2586.0480862514855
                  ],
                  [
                    40,
                    2576.143199786696
                  ],
                  [
                    41,
                    2567.0616621437757
                  ],
                  [
                    42,
                    2558.3156213836087
                  ],
                  [
                    43,
                    2548.531434543574
                  ],
                  [
                    44,
                    2538.950573721645
                  ],
                  [
                    45,
                    2530.528456397089
                  ],
                  [
                    46,
                    2521.2199209969344
                  ],
                  [
                    47,
                    2511.5345393173084
                  ],
                  [
                    48,
                    2502.565674998239
                  ],
                  [
                    49,
                    2494.0700243436145
                  ],
                  [
                    50,
                    2484.5465217258457
                  ],
                  [
                    51,
                    2475.1562358599103
                  ],
                  [
                    52,
                    2466.8842287529615
                  ],
                  [
                    53,
                    2457.8689351552625
                  ],
                  [
                    54,
                    2448.425878144267
                  ],
                  [
                    55,
                    2439.5987600085664
                  ],
                  [
                    56,
                    2431.354167902213
                  ],
                  [
                    57,
                    2422.1022772958477
                  ],
                  [
                    58,
                    2412.920639943179
                  ],
                  [
                    59,
                    2404.7998312668915
                  ]
                ]
              },
              {
                "name": "Vena cava volume",
                "points": [
                  [
                    0,
                    232.46638962
                  ],
                  [
                    1,
                    238.44928954557557
                  ],
                  [
                    2,
                    242.9033871595248
                  ],
                  [
                    3,
                    233.8491158230452
                  ],
                  [
                    4,
                    231.264969855694
                  ],
                  [
                    5,
                    235.8563651208032
                  ],
                  [
                    6,
                    239.1562309958342
                  ],
                  [
                    7,
                    225.91455161338197
                  ],
                  [
                    8,
                    228.95263922099943
                  ],
                  [
                    9,
                    232.98056201156
                  ],
                  [
                    10,
                    225.0569595277395
                  ],
                  [
                    11,
                    220.9384643936695
                  ],
                  [
                    12,
                    225.29615367028077
                  ],
                  [
                    13,
                    229.836367827185
                  ],
                  [
                    14,
                    216.7592500606292
                  ],
                  [
                    15,
                    218.7758365070821
                  ],
                  [
                    16,
                    223.2774872295496
                  ],
                  [
                    17,
                    217.11376022115263
                  ],
                  [
                    18,
                    212.18270777255708
                  ],
                  [
                    19,
                    216.3526596426218
                  ],
                  [
                    20,
                    221.64857987462972
                  ],
                  [
                    21,
                    209.1266022183848
                  ],
                  [
                    22,
                    210.2955992110514
                  ],
                  [
                    23,
                    214.93245010984396
                  ],
                  [
                    24,
                    210.3277908578101
                  ],
                  [
                    25,
                    204.71607428712105
                  ],
                  [
                    26,
                    208.57098334263375
                  ],
                  [
                    27,
                    214.130038449408
                  ],
                  [
                    28,
                    202.41391594824316
                  ],
                  [
                    29,
                    202.83599574925609
                  ],
                  [
                    30,
                    207.42858143176997
                  ],
                  [
                    31,
                    204.2638898411819
                  ],
                  [
                    32,
                    198.05436874136169
                  ],
                  [
                    33,
                    201.5518336191859
                  ],
                  [
                    34,
                    207.018087986314
                  ],
                  [
                    35,
                    196.33818199485927
                  ],
                  [
                    36,
                    196.10412305584765
                  ],
                  [
                    37,
                    200.56056025786705
                  ],
                  [
                    38,
                    198.7551356301365
                  ],
                  [
                    39,
                    191.99701709381569
                  ],
                  [
                    40,
                    195.1280465634657
                  ],
                  [
                    41,
                    200.2950957658296
                  ],
                  [
                    42,
                    190.77616782870095
                  ],
                  [
                    43,
                    189.96245224760105
                  ],
                  [
                    44,
                    194.2264087501632
                  ],
                  [
                    45,
                    193.7132186189128
                  ],
                  [
                    46,
                    186.4366430202756
                  ],
                  [
                    47,
                    189.19907493628412
                  ],
                  [
                    48,
                    194.061917938822
                  ],
                  [
                    49,
                    185.6521563628037
                  ],
                  [
                    50,
                    184.32740874049136
                  ],
                  [
                    51,
                    188.35555371645495
                  ],
                  [
                    52,
                    189.04327871549165
                  ],
                  [
                    53,
                    181.29809786648525
                  ],
                  [
                    54,
                    183.6832547746125
                  ],
                  [
                    55,
                    188.26625980409503
                  ],
                  [
                    56,
                    180.90777647058889
                  ],
                  [
                    57,
                    179.12333495695646
                  ],
                  [
                    58,
                    182.89075842392091
                  ],
                  [
                    59,
                    184.63078358170353
                  ]
                ]
              }
            ],
            "title": "Heldt2002 Orthostatic Stress - Lumped Parameter Circulation - Systemic perfusion",
            "x_unit": "s"
          },
          "description": "How does systemic perfusion redistribute?",
          "render": "timeseries"
        },
        {
          "data": {
            "series": [
              {
                "name": "Coronary arterial volume",
                "points": [
                  [
                    0,
                    2.76087
                  ],
                  [
                    1,
                    3.1723828885530896
                  ],
                  [
                    2,
                    3.172720940127841
                  ],
                  [
                    3,
                    1.5150994012435126
                  ],
                  [
                    4,
                    0.5614901833549586
                  ],
                  [
                    5,
                    3.718996363760112
                  ],
                  [
                    6,
                    1.804964534133328
                  ],
                  [
                    7,
                    0.6663631149686174
                  ],
                  [
                    8,
                    0.6492767269324737
                  ],
                  [
                    9,
                    2.500690941971358
                  ],
                  [
                    10,
                    0.953487537071808
                  ],
                  [
                    11,
                    0.33604376417111337
                  ],
                  [
                    12,
                    2.4642346305288063
                  ],
                  [
                    13,
                    1.4530479051194731
                  ],
                  [
                    14,
                    0.4511125804505845
                  ],
                  [
                    15,
                    0.2068194528100937
                  ],
                  [
                    16,
                    2.141806014389433
                  ],
                  [
                    17,
                    0.6686163475192256
                  ],
                  [
                    18,
                    0.24334110130004635
                  ],
                  [
                    19,
                    1.3557757217950903
                  ],
                  [
                    20,
                    1.104619169892627
                  ],
                  [
                    21,
                    0.3091686457828219
                  ],
                  [
                    22,
                    0.16271536992586758
                  ],
                  [
                    23,
                    1.6551331021839897
                  ],
                  [
                    24,
                    0.4442776124923619
                  ],
                  [
                    25,
                    0.1854363297153176
                  ],
                  [
                    26,
                    0.8957852840833287
                  ],
                  [
                    27,
                    0.7623359609194357
                  ],
                  [
                    28,
                    0.22539886146380028
                  ],
                  [
                    29,
                    0.13408559591587502
                  ],
                  [
                    30,
                    1.1924133816247848
                  ],
                  [
                    31,
                    0.3082743089847364
                  ],
                  [
                    32,
                    0.14978184988814475
                  ],
                  [
                    33,
                    1.046920045249217
                  ],
                  [
                    34,
                    0.49977168194782073
                  ],
                  [
                    35,
                    0.176593139034802
                  ],
                  [
                    36,
                    0.11493649120930034
                  ],
                  [
                    37,
                    0.8782222174671164
                  ],
                  [
                    38,
                    0.22929649802233143
                  ],
                  [
                    39,
                    0.12664609994282663
                  ],
                  [
                    40,
                    1.369227191128536
                  ],
                  [
                    41,
                    0.3361727420246773
                  ],
                  [
                    42,
                    0.14598219208307034
                  ],
                  [
                    43,
                    0.10139234728071105
                  ],
                  [
                    44,
                    0.7151583583430359
                  ],
                  [
                    45,
                    0.18323693320063383
                  ],
                  [
                    46,
                    0.11064527539916516
                  ],
                  [
                    47,
                    1.178303649617832
                  ],
                  [
                    48,
                    0.24077961404915335
                  ],
                  [
                    49,
                    0.12535811870038446
                  ],
                  [
                    50,
                    0.09131816941344192
                  ],
                  [
                    51,
                    0.6289581701282598
                  ],
                  [
                    52,
                    0.15308100873044325
                  ],
                  [
                    53,
                    0.09883639948606315
                  ],
                  [
                    54,
                    0.35087270201339676
                  ],
                  [
                    55,
                    0.22464174409519547
                  ],
                  [
                    56,
                    0.11066012871514076
                  ],
                  [
                    57,
                    0.08353327323390987
                  ],
                  [
                    58,
                    0.5035886781726914
                  ],
                  [
                    59,
                    0.1321448973164873
                  ]
                ]
              },
              {
                "name": "Coronary capillary volume",
                "points": [
                  [
                    0,
                    8.55228
                  ],
                  [
                    1,
                    9.094695137373265
                  ],
                  [
                    2,
                    7.488539570019277
                  ],
                  [
                    3,
                    7.962156753472926
                  ],
                  [
                    4,
                    8.529842357326311
                  ],
                  [
                    5,
                    7.621160108769138
                  ],
                  [
                    6,
                    6.750692620390092
                  ],
                  [
                    7,
                    7.262124905756799
                  ],
                  [
                    8,
                    7.508686099040887
                  ],
                  [
                    9,
                    5.81324714594521
                  ],
                  [
                    10,
                    6.031734987837483
                  ],
                  [
                    11,
                    6.5366778274461295
                  ],
                  [
                    12,
                    5.813849684011351
                  ],
                  [
                    13,
                    4.910334710281499
                  ],
                  [
                    14,
                    5.465993597266488
                  ],
                  [
                    15,
                    5.852522856357714
                  ],
                  [
                    16,
                    4.3332254917559485
                  ],
                  [
                    17,
                    4.5009733387778015
                  ],
                  [
                    18,
                    5.049400025232991
                  ],
                  [
                    19,
                    4.5356062785380695
                  ],
                  [
                    20,
                    3.616010229252469
                  ],
                  [
                    21,
                    4.201124072406432
                  ],
                  [
                    22,
                    4.671110006870988
                  ],
                  [
                    23,
                    3.3242628544886164
                  ],
                  [
                    24,
                    3.4150220316503455
                  ],
                  [
                    25,
                    3.974793249081648
                  ],
                  [
                    26,
                    3.626792971971291
                  ],
                  [
                    27,
                    2.67374392906252
                  ],
                  [
                    28,
                    3.261981353850691
                  ],
                  [
                    29,
                    3.767379379635652
                  ],
                  [
                    30,
                    2.584456464679279
                  ],
                  [
                    31,
                    2.5881540750296623
                  ],
                  [
                    32,
                    3.143680888748976
                  ],
                  [
                    33,
                    2.940831588753629
                  ],
                  [
                    34,
                    1.9430805277193
                  ],
                  [
                    35,
                    2.5254300362901456
                  ],
                  [
                    36,
                    3.0407788083565723
                  ],
                  [
                    37,
                    2.0178300349794576
                  ],
                  [
                    38,
                    1.9372903632350635
                  ],
                  [
                    39,
                    2.484486344151991
                  ],
                  [
                    40,
                    2.421926446898222
                  ],
                  [
                    41,
                    1.371376460526035
                  ],
                  [
                    42,
                    1.948079200173488
                  ],
                  [
                    43,
                    2.4612915115437417
                  ],
                  [
                    44,
                    1.5953753003443565
                  ],
                  [
                    45,
                    1.4382761847662058
                  ],
                  [
                    46,
                    1.9774219173187115
                  ],
                  [
                    47,
                    2.051275335356141
                  ],
                  [
                    48,
                    0.9558077592478056
                  ],
                  [
                    49,
                    1.518286704171121
                  ],
                  [
                    50,
                    2.022434353271908
                  ],
                  [
                    51,
                    1.307314089800517
                  ],
                  [
                    52,
                    1.078430616133628
                  ],
                  [
                    53,
                    1.608592476802295
                  ],
                  [
                    54,
                    1.8023614709646825
                  ],
                  [
                    55,
                    0.6951785530977979
                  ],
                  [
                    56,
                    1.2147430421816927
                  ],
                  [
                    57,
                    1.7038222550824311
                  ],
                  [
                    58,
                    1.1286791321067435
                  ],
                  [
                    59,
                    0.8293694693670557
                  ]
                ]
              },
              {
                "name": "Coronary epicardial arteriolar volume",
                "points": [
                  [
                    0,
                    4.41135
                  ],
                  [
                    1,
                    4.310094036405552
                  ],
                  [
                    2,
                    5.28552865913646
                  ],
                  [
                    3,
                    3.984365288366365
                  ],
                  [
                    4,
                    3.6545997642646046
                  ],
                  [
                    5,
                    4.833677382911528
                  ],
                  [
                    6,
                    4.150685665595088
                  ],
                  [
                    7,
                    3.6569464416636968
                  ],
                  [
                    8,
                    3.6590097562948265
                  ],
                  [
                    9,
                    4.868647456229601
                  ],
                  [
                    10,
                    3.729237616007536
                  ],
                  [
                    11,
                    3.452200111165706
                  ],
                  [
                    12,
                    4.5314928143552535
                  ],
                  [
                    13,
                    4.0182690028813575
                  ],
                  [
                    14,
                    3.5010583404787896
                  ],
                  [
                    15,
                    3.4100394795631273
                  ],
                  [
                    16,
                    4.656340399904958
                  ],
                  [
                    17,
                    3.5754778035886594
                  ],
                  [
                    18,
                    3.3019095491732187
                  ],
                  [
                    19,
                    4.284073737959581
                  ],
                  [
                    20,
                    3.8984196745256297
                  ],
                  [
                    21,
                    3.342555065213874
                  ],
                  [
                    22,
                    3.1924165805830387
                  ],
                  [
                    23,
                    4.433762726239714
                  ],
                  [
                    24,
                    3.418628680326898
                  ],
                  [
                    25,
                    3.147754563660262
                  ],
                  [
                    26,
                    4.053512375093287
                  ],
                  [
                    27,
                    3.789708614894639
                  ],
                  [
                    28,
                    3.186854276954005
                  ],
                  [
                    29,
                    3.004464851171393
                  ],
                  [
                    30,
                    4.2196650307712105
                  ],
                  [
                    31,
                    3.270650202205552
                  ],
                  [
                    32,
                    3.001098232307104
                  ],
                  [
                    33,
                    3.8083931283333934
                  ],
                  [
                    34,
                    3.702663227128254
                  ],
                  [
                    35,
                    3.0414032751977413
                  ],
                  [
                    36,
                    2.8452067997234995
                  ],
                  [
                    37,
                    4.015942876406638
                  ],
                  [
                    38,
                    3.1360742023443096
                  ],
                  [
                    39,
                    2.8652196605146356
                  ],
                  [
                    40,
                    3.513800121112061
                  ],
                  [
                    41,
                    3.640121471973357
                  ],
                  [
                    42,
                    2.907693840180007
                  ],
                  [
                    43,
                    2.709149365646177
                  ],
                  [
                    44,
                    3.815484809309286
                  ],
                  [
                    45,
                    3.015413652161578
                  ],
                  [
                    46,
                    2.7402252603544675
                  ],
                  [
                    47,
                    3.169354462234202
                  ],
                  [
                    48,
                    3.584876805057932
                  ],
                  [
                    49,
                    2.7849762577028456
                  ],
                  [
                    50,
                    2.5899337450744424
                  ],
                  [
                    51,
                    3.6098517758949455
                  ],
                  [
                    52,
                    2.908475551915412
                  ],
                  [
                    53,
                    2.6245085537781065
                  ],
                  [
                    54,
                    2.819072390089861
                  ],
                  [
                    55,
                    3.4997772671661345
                  ],
                  [
                    56,
                    2.671327124384762
                  ],
                  [
                    57,
                    2.4813672534844655
                  ],
                  [
                    58,
                    3.3924287140895
                  ],
                  [
                    59,
                    2.812503411444983
                  ]
                ]
              },
              {
                "name": "Coronary epicardial venular volume",
                "points": [
                  [
                    0,
                    8.76758
                  ],
                  [
                    1,
                    8.89577576896841
                  ],
                  [
                    2,
                    9.187077988856425
                  ],
                  [
                    3,
                    8.835828785994291
                  ],
                  [
                    4,
                    8.625207507573625
                  ],
                  [
                    5,
                    8.743355506055122
                  ],
                  [
                    6,
                    9.043255946945118
                  ],
                  [
                    7,
                    8.386273477532022
                  ],
                  [
                    8,
                    8.413476995263128
                  ],
                  [
                    9,
                    8.613165503453603
                  ],
                  [
                    10,
                    8.294872075749584
                  ],
                  [
                    11,
                    8.048391308261436
                  ],
                  [
                    12,
                    8.150092325631906
                  ],
                  [
                    13,
                    8.458650335579621
                  ],
                  [
                    14,
                    7.822513562493207
                  ],
                  [
                    15,
                    7.83727823996279
                  ],
                  [
                    16,
                    8.017562178936918
                  ],
                  [
                    17,
                    7.77113806884665
                  ],
                  [
                    18,
                    7.513405808056272
                  ],
                  [
                    19,
                    7.613661481675033
                  ],
                  [
                    20,
                    7.927711797843479
                  ],
                  [
                    21,
                    7.326843270219385
                  ],
                  [
                    22,
                    7.327258442840775
                  ],
                  [
                    23,
                    7.495497908828389
                  ],
                  [
                    24,
                    7.315388848734478
                  ],
                  [
                    25,
                    7.043624595450196
                  ],
                  [
                    26,
                    7.140410093035386
                  ],
                  [
                    27,
                    7.445779869432965
                  ],
                  [
                    28,
                    6.888966961413477
                  ],
                  [
                    29,
                    6.873028380653154
                  ],
                  [
                    30,
                    7.031015014619421
                  ],
                  [
                    31,
                    6.9132872962457474
                  ],
                  [
                    32,
                    6.62557940995915
                  ],
                  [
                    33,
                    6.718106886121746
                  ],
                  [
                    34,
                    7.001172246083588
                  ],
                  [
                    35,
                    6.498037749552784
                  ],
                  [
                    36,
                    6.466263014980135
                  ],
                  [
                    37,
                    6.614619341709253
                  ],
                  [
                    38,
                    6.556385229215865
                  ],
                  [
                    39,
                    6.251007529789709
                  ],
                  [
                    40,
                    6.33947718184253
                  ],
                  [
                    41,
                    6.591733593657585
                  ],
                  [
                    42,
                    6.147216345154587
                  ],
                  [
                    43,
                    6.10102990373385
                  ],
                  [
                    44,
                    6.239990452105505
                  ],
                  [
                    45,
                    6.238869562492294
                  ],
                  [
                    46,
                    5.913969631422144
                  ],
                  [
                    47,
                    5.9984290121998125
                  ],
                  [
                    48,
                    6.221844304466477
                  ],
                  [
                    49,
                    5.831589421817282
                  ],
                  [
                    50,
                    5.77295430118342
                  ],
                  [
                    51,
                    5.902433669395381
                  ],
                  [
                    52,
                    5.9548022677219965
                  ],
                  [
                    53,
                    5.610133069908144
                  ],
                  [
                    54,
                    5.689499737710637
                  ],
                  [
                    55,
                    5.887917388363283
                  ],
                  [
                    56,
                    5.547543241094844
                  ],
                  [
                    57,
                    5.477925350973674
                  ],
                  [
                    58,
                    5.598165114253344
                  ],
                  [
                    59,
                    5.697208350547265
                  ]
                ]
              },
              {
                "name": "Coronary left atrial perfusion",
                "points": [
                  [
                    0,
                    4.992799
                  ],
                  [
                    1,
                    4.239841648339623
                  ],
                  [
                    2,
                    3.275911712313889
                  ],
                  [
                    3,
                    4.2782829456155484
                  ],
                  [
                    4,
                    4.211664523953496
                  ],
                  [
                    5,
                    3.102669177048306
                  ],
                  [
                    6,
                    3.718185245065826
                  ],
                  [
                    7,
                    4.0671913271937585
                  ],
                  [
                    8,
                    3.661390779435064
                  ],
                  [
                    9,
                    2.869280462900372
                  ],
                  [
                    10,
                    3.896023815515215
                  ],
                  [
                    11,
                    3.9106518041095377
                  ],
                  [
                    12,
                    2.9217002364187503
                  ],
                  [
                    13,
                    3.435196325284238
                  ],
                  [
                    14,
                    3.8458034308120466
                  ],
                  [
                    15,
                    3.5698175185034615
                  ],
                  [
                    16,
                    2.7044573513116204
                  ],
                  [
                    17,
                    3.674163484645241
                  ],
                  [
                    18,
                    3.70871695725345
                  ],
                  [
                    19,
                    2.782634566462711
                  ],
                  [
                    20,
                    3.1710613786949104
                  ],
                  [
                    21,
                    3.6374703529673953
                  ],
                  [
                    22,
                    3.4505103273283524
                  ],
                  [
                    23,
                    2.5460068086539116
                  ],
                  [
                    24,
                    3.454388971487985
                  ],
                  [
                    25,
                    3.5110288890132355
                  ],
                  [
                    26,
                    2.645440598477473
                  ],
                  [
                    27,
                    2.9079819388443098
                  ],
                  [
                    28,
                    3.4370478139160885
                  ],
                  [
                    29,
                    3.3109081688286555
                  ],
                  [
                    30,
                    2.3972934231670604
                  ],
                  [
                    31,
                    3.2448973573868236
                  ],
                  [
                    32,
                    3.325679515036423
                  ],
                  [
                    33,
                    2.530481901317193
                  ],
                  [
                    34,
                    2.650644846811204
                  ],
                  [
                    35,
                    3.2501004898572345
                  ],
                  [
                    36,
                    3.1639889330044664
                  ],
                  [
                    37,
                    2.2620004522758013
                  ],
                  [
                    38,
                    3.048117051533655
                  ],
                  [
                    39,
                    3.1546478602201424
                  ],
                  [
                    40,
                    2.4540071922939224
                  ],
                  [
                    41,
                    2.3986437869906743
                  ],
                  [
                    42,
                    3.0772793414901547
                  ],
                  [
                    43,
                    3.0175801806586304
                  ],
                  [
                    44,
                    2.1428568175018827
                  ],
                  [
                    45,
                    2.863437304907563
                  ],
                  [
                    46,
                    2.997454980460399
                  ],
                  [
                    47,
                    2.4195503220209877
                  ],
                  [
                    48,
                    2.1684474336946127
                  ],
                  [
                    49,
                    2.917323598274999
                  ],
                  [
                    50,
                    2.876303392512637
                  ],
                  [
                    51,
                    2.041645832373009
                  ],
                  [
                    52,
                    2.6877028589552694
                  ],
                  [
                    53,
                    2.851826245992891
                  ],
                  [
                    54,
                    2.4130250616197566
                  ],
                  [
                    55,
                    1.9904917939623188
                  ],
                  [
                    56,
                    2.7674813019577487
                  ],
                  [
                    57,
                    2.742221791658181
                  ],
                  [
                    58,
                    1.9590236160175816
                  ],
                  [
                    59,
                    2.519521791826571
                  ]
                ]
              },
              {
                "name": "Coronary left ventricular perfusion",
                "points": [
                  [
                    0,
                    8.213955
                  ],
                  [
                    1,
                    7.860863304239691
                  ],
                  [
                    2,
                    8.210895359076593
                  ],
                  [
                    3,
                    8.269746410981936
                  ],
                  [
                    4,
                    7.799571153127222
                  ],
                  [
                    5,
                    7.697252314183962
                  ],
                  [
                    6,
                    8.083095681536486
                  ],
                  [
                    7,
                    7.731495258591191
                  ],
                  [
                    8,
                    7.32653673262536
                  ],
                  [
                    9,
                    7.574279744556917
                  ],
                  [
                    10,
                    7.649328770498053
                  ],
                  [
                    11,
                    7.188430134144754
                  ],
                  [
                    12,
                    7.047444632282418
                  ],
                  [
                    13,
                    7.423665546740921
                  ],
                  [
                    14,
                    7.11511733308521
                  ],
                  [
                    15,
                    6.716243171263434
                  ],
                  [
                    16,
                    6.921743277130182
                  ],
                  [
                    17,
                    7.043401628348977
                  ],
                  [
                    18,
                    6.608279151000758
                  ],
                  [
                    19,
                    6.442691540589628
                  ],
                  [
                    20,
                    6.814519468456256
                  ],
                  [
                    21,
                    6.555359615284174
                  ],
                  [
                    22,
                    6.167957145954252
                  ],
                  [
                    23,
                    6.331055977262044
                  ],
                  [
                    24,
                    6.494622319951602
                  ],
                  [
                    25,
                    6.085432723625646
                  ],
                  [
                    26,
                    5.897030096967025
                  ],
                  [
                    27,
                    6.258154515217024
                  ],
                  [
                    28,
                    6.047716063355202
                  ],
                  [
                    29,
                    5.672415215640398
                  ],
                  [
                    30,
                    5.793243630422051
                  ],
                  [
                    31,
                    5.992480471221894
                  ],
                  [
                    32,
                    5.608617177481405
                  ],
                  [
                    33,
                    5.39990245370201
                  ],
                  [
                    34,
                    5.745104117456892
                  ],
                  [
                    35,
                    5.58219293985011
                  ],
                  [
                    36,
                    5.219130935110238
                  ],
                  [
                    37,
                    5.299655366873577
                  ],
                  [
                    38,
                    5.528532761594424
                  ],
                  [
                    39,
                    5.169629924146974
                  ],
                  [
                    40,
                    4.944147355671927
                  ],
                  [
                    41,
                    5.2687214825073525
                  ],
                  [
                    42,
                    5.151845629629064
                  ],
                  [
                    43,
                    4.800989595926652
                  ],
                  [
                    44,
                    4.844285011425372
                  ],
                  [
                    45,
                    5.096889097405702
                  ],
                  [
                    46,
                    4.762961375473759
                  ],
                  [
                    47,
                    4.52527426074905
                  ],
                  [
                    48,
                    4.8246302485572174
                  ],
                  [
                    49,
                    4.752363562774207
                  ],
                  [
                    50,
                    4.413706520784243
                  ],
                  [
                    51,
                    4.423498457892278
                  ],
                  [
                    52,
                    4.694255509054944
                  ],
                  [
                    53,
                    4.385724507493291
                  ],
                  [
                    54,
                    4.140882816048658
                  ],
                  [
                    55,
                    4.411160069774806
                  ],
                  [
                    56,
                    4.381530251850147
                  ],
                  [
                    57,
                    4.054876509468588
                  ],
                  [
                    58,
                    4.0350188977543775
                  ],
                  [
                    59,
                    4.318510521361104
                  ]
                ]
              },
              {
                "name": "Coronary subendocardial arteriolar volume",
                "points": [
                  [
                    0,
                    4.22047
                  ],
                  [
                    1,
                    4.252636251575394
                  ],
                  [
                    2,
                    3.744091899212109
                  ],
                  [
                    3,
                    3.646430124725586
                  ],
                  [
                    4,
                    3.7391892962285103
                  ],
                  [
                    5,
                    3.577477977218385
                  ],
                  [
                    6,
                    3.306162976749575
                  ],
                  [
                    7,
                    3.455360725867651
                  ],
                  [
                    8,
                    3.543561031215629
                  ],
                  [
                    9,
                    3.234327896638522
                  ],
                  [
                    10,
                    3.224733723894476
                  ],
                  [
                    11,
                    3.3816280862090347
                  ],
                  [
                    12,
                    3.292034370591823
                  ],
                  [
                    13,
                    3.0370111937649726
                  ],
                  [
                    14,
                    3.1905576584028053
                  ],
                  [
                    15,
                    3.295878491147616
                  ],
                  [
                    16,
                    3.020914636881237
                  ],
                  [
                    17,
                    2.9884986121900137
                  ],
                  [
                    18,
                    3.1450187346973086
                  ],
                  [
                    19,
                    3.0865609812372177
                  ],
                  [
                    20,
                    2.824225269996621
                  ],
                  [
                    21,
                    2.965146310826105
                  ],
                  [
                    22,
                    3.076139795933736
                  ],
                  [
                    23,
                    2.83309466556961
                  ],
                  [
                    24,
                    2.776402362918038
                  ],
                  [
                    25,
                    2.93029892973905
                  ],
                  [
                    26,
                    2.9008798972505
                  ],
                  [
                    27,
                    2.6343440027515115
                  ],
                  [
                    28,
                    2.760615017222715
                  ],
                  [
                    29,
                    2.875197462342192
                  ],
                  [
                    30,
                    2.664623670057676
                  ],
                  [
                    31,
                    2.584877291596254
                  ],
                  [
                    32,
                    2.735588066290706
                  ],
                  [
                    33,
                    2.7332861986993264
                  ],
                  [
                    34,
                    2.465481807847543
                  ],
                  [
                    35,
                    2.5749971945964645
                  ],
                  [
                    36,
                    2.6920530161895826
                  ],
                  [
                    37,
                    2.513432849025968
                  ],
                  [
                    38,
                    2.4113478675036992
                  ],
                  [
                    39,
                    2.5584590890032732
                  ],
                  [
                    40,
                    2.581029905201207
                  ],
                  [
                    41,
                    2.315456591743178
                  ],
                  [
                    42,
                    2.40585053560303
                  ],
                  [
                    43,
                    2.5251221153018166
                  ],
                  [
                    44,
                    2.3777277923901137
                  ],
                  [
                    45,
                    2.2537176162336334
                  ],
                  [
                    46,
                    2.3969906844612936
                  ],
                  [
                    47,
                    2.44162369176336
                  ],
                  [
                    48,
                    2.182929628254464
                  ],
                  [
                    49,
                    2.2512589481805336
                  ],
                  [
                    50,
                    2.3728759098950887
                  ],
                  [
                    51,
                    2.2558567577512214
                  ],
                  [
                    52,
                    2.110008767764071
                  ],
                  [
                    53,
                    2.248980016199144
                  ],
                  [
                    54,
                    2.312001267948573
                  ],
                  [
                    55,
                    2.065410542877995
                  ],
                  [
                    56,
                    2.108795577164712
                  ],
                  [
                    57,
                    2.2328863639560543
                  ],
                  [
                    58,
                    2.1451955484485623
                  ],
                  [
                    59,
                    1.9779773668405
                  ]
                ]
              },
              {
                "name": "Coronary subendocardial venular volume",
                "points": [
                  [
                    0,
                    7.8362
                  ],
                  [
                    1,
                    7.6596004486454765
                  ],
                  [
                    2,
                    8.88379820652171
                  ],
                  [
                    3,
                    7.996425270818219
                  ],
                  [
                    4,
                    7.373645241011953
                  ],
                  [
                    5,
                    8.061895833936287
                  ],
                  [
                    6,
                    8.156132395629593
                  ],
                  [
                    7,
                    7.376932139955344
                  ],
                  [
                    8,
                    7.068403224763078
                  ],
                  [
                    9,
                    8.186499193567483
                  ],
                  [
                    10,
                    7.423490705196714
                  ],
                  [
                    11,
                    6.817711284150267
                  ],
                  [
                    12,
                    7.378183171172611
                  ],
                  [
                    13,
                    7.585046964131479
                  ],
                  [
                    14,
                    6.8161793013765335
                  ],
                  [
                    15,
                    6.440238327947552
                  ],
                  [
                    16,
                    7.524903600907503
                  ],
                  [
                    17,
                    6.8776508964369505
                  ],
                  [
                    18,
                    6.291377422653548
                  ],
                  [
                    19,
                    6.744998380773997
                  ],
                  [
                    20,
                    7.062410252527985
                  ],
                  [
                    21,
                    6.307312747728828
                  ],
                  [
                    22,
                    5.894331577932775
                  ],
                  [
                    23,
                    6.91811778324385
                  ],
                  [
                    24,
                    6.385672428273317
                  ],
                  [
                    25,
                    5.818105183246836
                  ],
                  [
                    26,
                    6.170877177852205
                  ],
                  [
                    27,
                    6.590658197330827
                  ],
                  [
                    28,
                    5.847728211825402
                  ],
                  [
                    29,
                    5.418760654924268
                  ],
                  [
                    30,
                    6.36273985248499
                  ],
                  [
                    31,
                    5.9390522661107426
                  ],
                  [
                    32,
                    5.3879454669391365
                  ],
                  [
                    33,
                    5.638907408632355
                  ],
                  [
                    34,
                    6.16154233906834
                  ],
                  [
                    35,
                    5.427705542134445
                  ],
                  [
                    36,
                    4.996957979734299
                  ],
                  [
                    37,
                    5.850247579879116
                  ],
                  [
                    38,
                    5.529186286195039
                  ],
                  [
                    39,
                    4.992640085806826
                  ],
                  [
                    40,
                    5.135260676759315
                  ],
                  [
                    41,
                    5.767741870051641
                  ],
                  [
                    42,
                    5.03994174222527
                  ],
                  [
                    43,
                    4.616418007536178
                  ],
                  [
                    44,
                    5.373191749621644
                  ],
                  [
                    45,
                    5.15002107737197
                  ],
                  [
                    46,
                    4.626748121538723
                  ],
                  [
                    47,
                    4.656994230184068
                  ],
                  [
                    48,
                    5.3933840212763755
                  ],
                  [
                    49,
                    4.680176064897667
                  ],
                  [
                    50,
                    4.268991044285993
                  ],
                  [
                    51,
                    4.926755004391583
                  ],
                  [
                    52,
                    4.79917619846239
                  ],
                  [
                    53,
                    4.287764057140374
                  ],
                  [
                    54,
                    4.212452816256056
                  ],
                  [
                    55,
                    5.017935608487357
                  ],
                  [
                    56,
                    4.346627634521194
                  ],
                  [
                    57,
                    3.949498355251052
                  ],
                  [
                    58,
                    4.507948048647367
                  ],
                  [
                    59,
                    4.474188440736537
                  ]
                ]
              }
            ],
            "title": "Heldt2002 Orthostatic Stress - Lumped Parameter Circulation - Coronary perfusion",
            "x_unit": "s"
          },
          "description": "How does coronary microcirculation redistribute?",
          "render": "timeseries"
        },
        {
          "data": {
            "series": [
              {
                "name": "Aortic flow distal",
                "points": [
                  [
                    0,
                    23.5957
                  ],
                  [
                    1,
                    140.47462652015167
                  ],
                  [
                    2,
                    -49.881577779333824
                  ],
                  [
                    3,
                    -14.474051941646051
                  ],
                  [
                    4,
                    0.3002753051624901
                  ],
                  [
                    5,
                    135.1158614845504
                  ],
                  [
                    6,
                    -29.92496716160726
                  ],
                  [
                    7,
                    -6.331238062206635
                  ],
                  [
                    8,
                    21.75463640703481
                  ],
                  [
                    9,
                    -24.429973136997827
                  ],
                  [
                    10,
                    -16.7007884994809
                  ],
                  [
                    11,
                    -1.1238640721466435
                  ],
                  [
                    12,
                    132.86670871525266
                  ],
                  [
                    13,
                    -31.28219199660195
                  ],
                  [
                    14,
                    -7.696069243481596
                  ],
                  [
                    15,
                    3.0925866050922335
                  ],
                  [
                    16,
                    -8.800860754301665
                  ],
                  [
                    17,
                    -18.209644385139757
                  ],
                  [
                    18,
                    -1.826955071787742
                  ],
                  [
                    19,
                    250.2404496630475
                  ],
                  [
                    20,
                    -36.45875298876356
                  ],
                  [
                    21,
                    -8.887388777604667
                  ],
                  [
                    22,
                    2.3010396069417247
                  ],
                  [
                    23,
                    16.181630545790686
                  ],
                  [
                    24,
                    -20.03666945634475
                  ],
                  [
                    25,
                    -2.429094249969531
                  ],
                  [
                    26,
                    464.6488207612063
                  ],
                  [
                    27,
                    -41.66013346283039
                  ],
                  [
                    28,
                    -9.84399464310545
                  ],
                  [
                    29,
                    1.656011706099791
                  ],
                  [
                    30,
                    63.09636262259009
                  ],
                  [
                    31,
                    -22.170693800751884
                  ],
                  [
                    32,
                    -2.968781191891862
                  ],
                  [
                    33,
                    660.5601404871778
                  ],
                  [
                    34,
                    -44.29266055564776
                  ],
                  [
                    35,
                    -10.621637382838326
                  ],
                  [
                    36,
                    1.1256508400233425
                  ],
                  [
                    37,
                    125.8005299198357
                  ],
                  [
                    38,
                    -23.045762618924336
                  ],
                  [
                    39,
                    -3.493142188468614
                  ],
                  [
                    40,
                    704.1260070431996
                  ],
                  [
                    41,
                    -44.80012513030923
                  ],
                  [
                    42,
                    -11.358683402035265
                  ],
                  [
                    43,
                    0.668347384654305
                  ],
                  [
                    44,
                    184.15538612195303
                  ],
                  [
                    45,
                    -24.14648840865953
                  ],
                  [
                    46,
                    -4.02445439740652
                  ],
                  [
                    47,
                    537.8457884782773
                  ],
                  [
                    48,
                    -40.514261588218474
                  ],
                  [
                    49,
                    -12.098406897654437
                  ],
                  [
                    50,
                    0.2507066678193525
                  ],
                  [
                    51,
                    215.92610455171
                  ],
                  [
                    52,
                    -25.219334683903377
                  ],
                  [
                    53,
                    -4.563512108938653
                  ],
                  [
                    54,
                    236.36308821488024
                  ],
                  [
                    55,
                    -36.51056726868456
                  ],
                  [
                    56,
                    -12.84286878058662
                  ],
                  [
                    57,
                    -0.1518521720573836
                  ],
                  [
                    58,
                    200.4097446521375
                  ],
                  [
                    59,
                    -26.185464858250587
                  ]
                ]
              },
              {
                "name": "Aortic flow proximal",
                "points": [
                  [
                    0,
                    0.698577
                  ],
                  [
                    1,
                    8.689701996497528
                  ],
                  [
                    2,
                    -1.4229389006264843
                  ],
                  [
                    3,
                    -1.6048655701721315
                  ],
                  [
                    4,
                    -1.4957688876226227
                  ],
                  [
                    5,
                    11.881759396834786
                  ],
                  [
                    6,
                    -1.4372049273248215
                  ],
                  [
                    7,
                    -1.5220318575219725
                  ],
                  [
                    8,
                    0.409486995221335
                  ],
                  [
                    9,
                    0.6924099977909167
                  ],
                  [
                    10,
                    -1.5329430848385668
                  ],
                  [
                    11,
                    -1.4700244161390024
                  ],
                  [
                    12,
                    11.19655323025382
                  ],
                  [
                    13,
                    -1.331021739634774
                  ],
                  [
                    14,
                    -1.5138959826750724
                  ],
                  [
                    15,
                    -1.322721011228774
                  ],
                  [
                    16,
                    1.8518550067869115
                  ],
                  [
                    17,
                    -1.512523949690205
                  ],
                  [
                    18,
                    -1.4350201184209692
                  ],
                  [
                    19,
                    17.9526880212733
                  ],
                  [
                    20,
                    -1.500190916852516
                  ],
                  [
                    21,
                    -1.4946197683645952
                  ],
                  [
                    22,
                    -1.2960002409624776
                  ],
                  [
                    23,
                    3.480479540393229
                  ],
                  [
                    24,
                    -1.5154681472507046
                  ],
                  [
                    25,
                    -1.385797333522656
                  ],
                  [
                    26,
                    31.152404418414363
                  ],
                  [
                    27,
                    -1.7057185453467452
                  ],
                  [
                    28,
                    -1.457995000625076
                  ],
                  [
                    29,
                    -1.2562393858617291
                  ],
                  [
                    30,
                    6.444405455765863
                  ],
                  [
                    31,
                    -1.5353677021767698
                  ],
                  [
                    32,
                    -1.33216448786938
                  ],
                  [
                    33,
                    43.58472735639115
                  ],
                  [
                    34,
                    -1.7704916545942202
                  ],
                  [
                    35,
                    -1.4104935914566017
                  ],
                  [
                    36,
                    -1.210891732358966
                  ],
                  [
                    37,
                    10.435635300609444
                  ],
                  [
                    38,
                    -1.4821969606209449
                  ],
                  [
                    39,
                    -1.2795612399224512
                  ],
                  [
                    40,
                    46.47561051306992
                  ],
                  [
                    41,
                    -1.7100556915730951
                  ],
                  [
                    42,
                    -1.3614230197215382
                  ],
                  [
                    43,
                    -1.164092762311692
                  ],
                  [
                    44,
                    14.211127166937738
                  ],
                  [
                    45,
                    -1.4363807227378314
                  ],
                  [
                    46,
                    -1.2299580221034414
                  ],
                  [
                    47,
                    35.75079951057593
                  ],
                  [
                    48,
                    -1.3477100770308206
                  ],
                  [
                    49,
                    -1.3135862444237525
                  ],
                  [
                    50,
                    -1.1180850739369756
                  ],
                  [
                    51,
                    16.333253711433752
                  ],
                  [
                    52,
                    -1.3912604809362654
                  ],
                  [
                    53,
                    -1.183446801294911
                  ],
                  [
                    54,
                    15.821554232701429
                  ],
                  [
                    55,
                    -0.7721621499348404
                  ],
                  [
                    56,
                    -1.2676277076672111
                  ],
                  [
                    57,
                    -1.0740428061621887
                  ],
                  [
                    58,
                    15.37714419719281
                  ],
                  [
                    59,
                    -1.3409628583744366
                  ]
                ]
              },
              {
                "name": "Pulmonary artery flow distal",
                "points": [
                  [
                    0,
                    57.1876
                  ],
                  [
                    1,
                    41.99840939148182
                  ],
                  [
                    2,
                    155.4811896447468
                  ],
                  [
                    3,
                    66.3093142295301
                  ],
                  [
                    4,
                    47.38685675042573
                  ],
                  [
                    5,
                    235.2564340392054
                  ],
                  [
                    6,
                    78.72040043024684
                  ],
                  [
                    7,
                    55.85346594569011
                  ],
                  [
                    8,
                    38.952925975155765
                  ],
                  [
                    9,
                    147.4911409406129
                  ],
                  [
                    10,
                    64.63238142447479
                  ],
                  [
                    11,
                    46.29957801110315
                  ],
                  [
                    12,
                    266.6401732523087
                  ],
                  [
                    13,
                    77.1507965095773
                  ],
                  [
                    14,
                    54.14267712556174
                  ],
                  [
                    15,
                    37.9199512591551
                  ],
                  [
                    16,
                    150.8316531675827
                  ],
                  [
                    17,
                    62.63024979465812
                  ],
                  [
                    18,
                    44.97608116927011
                  ],
                  [
                    19,
                    289.36442329368316
                  ],
                  [
                    20,
                    76.35836457420758
                  ],
                  [
                    21,
                    52.58132896936061
                  ],
                  [
                    22,
                    36.92628150537636
                  ],
                  [
                    23,
                    175.05480351468037
                  ],
                  [
                    24,
                    60.89543451681313
                  ],
                  [
                    25,
                    43.75087717055669
                  ],
                  [
                    26,
                    270.4707789712229
                  ],
                  [
                    27,
                    76.62300151684764
                  ],
                  [
                    28,
                    51.15560190134611
                  ],
                  [
                    29,
                    35.98179088624118
                  ],
                  [
                    30,
                    204.1257711512008
                  ],
                  [
                    31,
                    59.33561175085979
                  ],
                  [
                    32,
                    42.60084182929159
                  ],
                  [
                    33,
                    208.72479677681673
                  ],
                  [
                    34,
                    78.47762406109825
                  ],
                  [
                    35,
                    49.83581646734471
                  ],
                  [
                    36,
                    35.084608359578155
                  ],
                  [
                    37,
                    216.08540193924028
                  ],
                  [
                    38,
                    57.93753416027628
                  ],
                  [
                    39,
                    41.525578953580464
                  ],
                  [
                    40,
                    129.88443699962306
                  ],
                  [
                    41,
                    82.85106760584213
                  ],
                  [
                    42,
                    48.61661356774225
                  ],
                  [
                    43,
                    34.23732876597038
                  ],
                  [
                    44,
                    203.24669051699604
                  ],
                  [
                    45,
                    56.71293027063308
                  ],
                  [
                    46,
                    40.5258287690061
                  ],
                  [
                    47,
                    66.07097985296846
                  ],
                  [
                    48,
                    90.73887331106808
                  ],
                  [
                    49,
                    47.49357493841728
                  ],
                  [
                    50,
                    33.43816912806141
                  ],
                  [
                    51,
                    179.22937901910808
                  ],
                  [
                    52,
                    55.66423092639015
                  ],
                  [
                    53,
                    39.595534534485076
                  ],
                  [
                    54,
                    33.968083647889266
                  ],
                  [
                    55,
                    101.10828699643642
                  ],
                  [
                    56,
                    46.456356485582106
                  ],
                  [
                    57,
                    32.68155334370513
                  ],
                  [
                    58,
                    165.77544956433186
                  ],
                  [
                    59,
                    54.786028869702726
                  ]
                ]
              },
              {
                "name": "Pulmonary artery flow proximal",
                "points": [
                  [
                    0,
                    1.2282
                  ],
                  [
                    1,
                    6.861450662044606
                  ],
                  [
                    2,
                    5.127552005427205
                  ],
                  [
                    3,
                    1.6695583696331149
                  ],
                  [
                    4,
                    1.2017671711740714
                  ],
                  [
                    5,
                    15.77860640156976
                  ],
                  [
                    6,
                    1.8685387668212805
                  ],
                  [
                    7,
                    1.40949004101572
                  ],
                  [
                    8,
                    0.9916089724674648
                  ],
                  [
                    9,
                    9.47850873142572
                  ],
                  [
                    10,
                    1.6253122301006493
                  ],
                  [
                    11,
                    1.1717170571778357
                  ],
                  [
                    12,
                    8.261197942715182
                  ],
                  [
                    13,
                    1.7620436601359666
                  ],
                  [
                    14,
                    1.3643319477599392
                  ],
                  [
                    15,
                    0.96331644377929
                  ],
                  [
                    16,
                    5.681636720737086
                  ],
                  [
                    17,
                    1.5732760625250837
                  ],
                  [
                    18,
                    1.1362149988450772
                  ],
                  [
                    19,
                    13.890715980119998
                  ],
                  [
                    20,
                    1.640723135372446
                  ],
                  [
                    21,
                    1.3235323931934788
                  ],
                  [
                    22,
                    0.9361306752193036
                  ],
                  [
                    23,
                    1.3049818870626642
                  ],
                  [
                    24,
                    1.5275049192315957
                  ],
                  [
                    25,
                    1.103584354112651
                  ],
                  [
                    26,
                    26.669083168175696
                  ],
                  [
                    27,
                    1.4892008745935936
                  ],
                  [
                    28,
                    1.2863234842356437
                  ],
                  [
                    29,
                    0.910306230298928
                  ],
                  [
                    30,
                    2.7741517081957134
                  ],
                  [
                    31,
                    1.4848907785503196
                  ],
                  [
                    32,
                    1.0730524246680857
                  ],
                  [
                    33,
                    35.9591591955715
                  ],
                  [
                    34,
                    1.283870613097464
                  ],
                  [
                    35,
                    1.2518181120119891
                  ],
                  [
                    36,
                    0.8857826791037373
                  ],
                  [
                    37,
                    10.481491901537916
                  ],
                  [
                    38,
                    1.4442532291884784
                  ],
                  [
                    39,
                    1.0445299791205314
                  ],
                  [
                    40,
                    34.644309231332144
                  ],
                  [
                    41,
                    0.989543507725392
                  ],
                  [
                    42,
                    1.2198408412506314
                  ],
                  [
                    43,
                    0.8626267896034934
                  ],
                  [
                    44,
                    18.55824114230287
                  ],
                  [
                    45,
                    1.4047192417351624
                  ],
                  [
                    46,
                    1.0179955944896812
                  ],
                  [
                    47,
                    23.61240457067774
                  ],
                  [
                    48,
                    0.5626666557312842
                  ],
                  [
                    49,
                    1.1902634179678226
                  ],
                  [
                    50,
                    0.8408037562134181
                  ],
                  [
                    51,
                    20.61826057835632
                  ],
                  [
                    52,
                    1.3650002035952125
                  ],
                  [
                    53,
                    0.9932800865862128
                  ],
                  [
                    54,
                    9.99666056368862
                  ],
                  [
                    55,
                    0.20139488787790305
                  ],
                  [
                    56,
                    1.1628072312133888
                  ],
                  [
                    57,
                    0.8201829173798274
                  ],
                  [
                    58,
                    15.862977959813808
                  ],
                  [
                    59,
                    1.3233699482646004
                  ]
                ]
              }
            ],
            "title": "Heldt2002 Orthostatic Stress - Lumped Parameter Circulation - Aortic and pulmonary flows",
            "x_unit": "s"
          },
          "description": "How do the major flow waveforms evolve?",
          "render": "timeseries"
        },
        {
          "data": {
            "series": [
              {
                "name": "Mean arterial pressure",
                "points": [
                  [
                    0,
                    90.6179
                  ],
                  [
                    1,
                    90.22649978352229
                  ],
                  [
                    2,
                    89.78628673207801
                  ],
                  [
                    3,
                    89.1743838293302
                  ],
                  [
                    4,
                    88.34134961871791
                  ],
                  [
                    5,
                    87.48326289780606
                  ],
                  [
                    6,
                    86.8548094096398
                  ],
                  [
                    7,
                    86.06030330871872
                  ],
                  [
                    8,
                    85.15623380940066
                  ],
                  [
                    9,
                    84.48650056972511
                  ],
                  [
                    10,
                    83.82380755302454
                  ],
                  [
                    11,
                    83.0217254211841
                  ],
                  [
                    12,
                    82.21350544888107
                  ],
                  [
                    13,
                    81.67142965027605
                  ],
                  [
                    14,
                    80.97915169523333
                  ],
                  [
                    15,
                    80.17711269158302
                  ],
                  [
                    16,
                    79.56808077308
                  ],
                  [
                    17,
                    78.99542467963597
                  ],
                  [
                    18,
                    78.2777422436855
                  ],
                  [
                    19,
                    77.52382378891275
                  ],
                  [
                    20,
                    77.04090279092752
                  ],
                  [
                    21,
                    76.41553058856606
                  ],
                  [
                    22,
                    75.67763963277864
                  ],
                  [
                    23,
                    75.09285442149479
                  ],
                  [
                    24,
                    74.57539087753563
                  ],
                  [
                    25,
                    73.9124492215224
                  ],
                  [
                    26,
                    73.19232551342034
                  ],
                  [
                    27,
                    72.74493829536888
                  ],
                  [
                    28,
                    72.16937455683934
                  ],
                  [
                    29,
                    71.48212623463124
                  ],
                  [
                    30,
                    70.91342246685014
                  ],
                  [
                    31,
                    70.44204052753322
                  ],
                  [
                    32,
                    69.82724264890942
                  ],
                  [
                    33,
                    69.14148268849031
                  ],
                  [
                    34,
                    68.72213238953954
                  ],
                  [
                    35,
                    68.19332696237902
                  ],
                  [
                    36,
                    67.5544188594172
                  ],
                  [
                    37,
                    67.00281480169771
                  ],
                  [
                    38,
                    66.57520068801018
                  ],
                  [
                    39,
                    66.00745089081263
                  ],
                  [
                    40,
                    65.36095943683364
                  ],
                  [
                    41,
                    64.96460385135168
                  ],
                  [
                    42,
                    64.4818536915568
                  ],
                  [
                    43,
                    63.8903869904266
                  ],
                  [
                    44,
                    63.35778766069739
                  ],
                  [
                    45,
                    62.971786994054035
                  ],
                  [
                    46,
                    62.45002371186038
                  ],
                  [
                    47,
                    61.84641498501568
                  ],
                  [
                    48,
                    61.46793034660332
                  ],
                  [
                    49,
                    61.02962649425429
                  ],
                  [
                    50,
                    60.48349925028992
                  ],
                  [
                    51,
                    59.9704468057328
                  ],
                  [
                    52,
                    59.622142774105015
                  ],
                  [
                    53,
                    59.14359552718936
                  ],
                  [
                    54,
                    58.5828352158409
                  ],
                  [
                    55,
                    58.21726626190387
                  ],
                  [
                    56,
                    57.82006739373297
                  ],
                  [
                    57,
                    57.315620812963
                  ],
                  [
                    58,
                    56.8213291034439
                  ],
                  [
                    59,
                    56.50552918309024
                  ]
                ]
              },
              {
                "name": "Aortic pressure",
                "points": [
                  [
                    0,
                    87.93968
                  ],
                  [
                    1,
                    91.1522412157801
                  ],
                  [
                    2,
                    91.15405594500206
                  ],
                  [
                    3,
                    77.92978394796745
                  ],
                  [
                    4,
                    68.4993845559555
                  ],
                  [
                    5,
                    95.3903612950084
                  ],
                  [
                    6,
                    80.32505481818306
                  ],
                  [
                    7,
                    69.84968019091377
                  ],
                  [
                    8,
                    69.63835598344936
                  ],
                  [
                    9,
                    85.88146203968431
                  ],
                  [
                    10,
                    72.90617734397705
                  ],
                  [
                    11,
                    64.39821509075952
                  ],
                  [
                    12,
                    85.58238280034297
                  ],
                  [
                    13,
                    77.37811963681226
                  ],
                  [
                    14,
                    66.77729804029119
                  ],
                  [
                    15,
                    59.69984985736771
                  ],
                  [
                    16,
                    83.02329704629464
                  ],
                  [
                    17,
                    69.85239746762791
                  ],
                  [
                    18,
                    61.42216785971335
                  ],
                  [
                    19,
                    76.54681510281789
                  ],
                  [
                    20,
                    74.31194034206312
                  ],
                  [
                    21,
                    63.66500011879064
                  ],
                  [
                    22,
                    56.741778792631855
                  ],
                  [
                    23,
                    79.06537526046283
                  ],
                  [
                    24,
                    66.64361818780235
                  ],
                  [
                    25,
                    58.41108833836353
                  ],
                  [
                    26,
                    72.31323827097546
                  ],
                  [
                    27,
                    70.91693070086801
                  ],
                  [
                    28,
                    60.62057649507005
                  ],
                  [
                    29,
                    53.89249112755113
                  ],
                  [
                    30,
                    75.10011317832607
                  ],
                  [
                    31,
                    63.63125797961923
                  ],
                  [
                    32,
                    55.56868000163437
                  ],
                  [
                    33,
                    73.76296299128111
                  ],
                  [
                    34,
                    67.54832934749676
                  ],
                  [
                    35,
                    57.78745534133109
                  ],
                  [
                    36,
                    51.25160962920285
                  ],
                  [
                    37,
                    72.11964171938517
                  ],
                  [
                    38,
                    60.790104907249685
                  ],
                  [
                    39,
                    52.94954558821038
                  ],
                  [
                    40,
                    76.6361331323665
                  ],
                  [
                    41,
                    64.36319984795372
                  ],
                  [
                    42,
                    55.19069622444484
                  ],
                  [
                    43,
                    48.82948129705503
                  ],
                  [
                    44,
                    70.37582513115703
                  ],
                  [
                    45,
                    58.25738024579139
                  ],
                  [
                    46,
                    50.54943329059202
                  ],
                  [
                    47,
                    74.97976901870216
                  ],
                  [
                    48,
                    61.32204784815972
                  ],
                  [
                    49,
                    52.81102481706311
                  ],
                  [
                    50,
                    46.601850495387865
                  ],
                  [
                    51,
                    69.37701760333141
                  ],
                  [
                    52,
                    55.90938336641546
                  ],
                  [
                    53,
                    48.33189856952464
                  ],
                  [
                    54,
                    64.76482758364843
                  ],
                  [
                    55,
                    60.6325815998755
                  ],
                  [
                    56,
                    50.60412254920883
                  ],
                  [
                    57,
                    44.52932157208291
                  ],
                  [
                    58,
                    67.67229205795753
                  ],
                  [
                    59,
                    53.71614702674666
                  ]
                ]
              }
            ],
            "title": "Heldt2002 Orthostatic Stress - Lumped Parameter Circulation - Pressure waveforms",
            "x_unit": "s"
          },
          "description": "How do the main pressure waveforms evolve?",
          "render": "timeseries"
        },
        {
          "data": {
            "categories": [
              "Aortic flow distal",
              "Systemic vein volume",
              "Pulmonary artery flow distal",
              "Pulmonary vein volume",
              "Systemic capillary volume",
              "Right ventricle volume",
              "Left ventricle volume",
              "Right atrium volume"
            ],
            "title": "Heldt2002 Orthostatic Stress - Lumped Parameter Circulation - largest excursions during the run",
            "values": [
              754.0075848225334,
              556.8508687331087,
              256.682869949978,
              205.7364296736457,
              124.26923782017428,
              99.02698563602604,
              92.25870223083224,
              75.72969817036724
            ]
          },
          "description": "Which observables shifted the most during the run?",
          "render": "bar"
        },
        {
          "data": {
            "columns": [
              "Question",
              "Answer"
            ],
            "rows": [
              [
                "What did this run track?",
                "30 observables in Heldt2002 Orthostatic Stress - Lumped Parameter Circulation"
              ],
              [
                "How long did it run?",
                "59 s"
              ],
              [
                "Which observable changed the most?",
                "Systemic vein volume"
              ],
              [
                "Largest peak?",
                "Systemic vein volume"
              ]
            ],
            "title": "What Happened"
          },
          "description": "What did this simulation actually show, in plain language?",
          "render": "table"
        },
        {
          "data": {
            "connect_points": true,
            "points": [
              {
                "series": "LV cycle",
                "x": 125.360568,
                "y": 0
              },
              {
                "series": "LV cycle",
                "x": 124.72604720842364,
                "y": 95.97487796147476
              },
              {
                "series": "LV cycle",
                "x": 40.6357193211783,
                "y": 92.77881020251924
              },
              {
                "series": "LV cycle",
                "x": 123.99784047986982,
                "y": 9.717078337233543
              },
              {
                "series": "LV cycle",
                "x": 126.96443222103976,
                "y": 10.271459272260852
              },
              {
                "series": "LV cycle",
                "x": 59.47989066956244,
                "y": 100.96167336938665
              },
              {
                "series": "LV cycle",
                "x": 75.23725151929499,
                "y": 9.73019472622243
              },
              {
                "series": "LV cycle",
                "x": 123.85901650972107,
                "y": 9.6911356486537
              },
              {
                "series": "LV cycle",
                "x": 125.41281198976506,
                "y": 74.77654618433607
              },
              {
                "series": "LV cycle",
                "x": 39.33661684245949,
                "y": 91.46890967598802
              },
              {
                "series": "LV cycle",
                "x": 120.58790194683424,
                "y": 9.079847039383152
              },
              {
                "series": "LV cycle",
                "x": 123.56539658479394,
                "y": 9.636265511188174
              },
              {
                "series": "LV cycle",
                "x": 61.86857450397746,
                "y": 91.1743257694836
              },
              {
                "series": "LV cycle",
                "x": 66.02558290918363,
                "y": 9.166468962701426
              },
              {
                "series": "LV cycle",
                "x": 119.66324564752718,
                "y": 8.907052139106822
              },
              {
                "series": "LV cycle",
                "x": 121.7144507090654,
                "y": 52.67404941159708
              },
              {
                "series": "LV cycle",
                "x": 39.124834635531926,
                "y": 88.62022324942494
              },
              {
                "series": "LV cycle",
                "x": 115.82814382480322,
                "y": 8.190368401263965
              },
              {
                "series": "LV cycle",
                "x": 118.7781395176698,
                "y": 8.741648158258132
              },
              {
                "series": "LV cycle",
                "x": 64.64821585050029,
                "y": 82.15968281128109
              },
              {
                "series": "LV cycle",
                "x": 57.90011203264164,
                "y": 8.382421609496404
              },
              {
                "series": "LV cycle",
                "x": 114.846908157477,
                "y": 8.007000186046954
              },
              {
                "series": "LV cycle",
                "x": 117.02907512593843,
                "y": 35.007980395402605
              },
              {
                "series": "LV cycle",
                "x": 39.26257832784231,
                "y": 84.66940052352284
              },
              {
                "series": "LV cycle",
                "x": 111.01420776055902,
                "y": 7.290764890260717
              },
              {
                "series": "LV cycle",
                "x": 113.90645662031244,
                "y": 7.831253480394434
              },
              {
                "series": "LV cycle",
                "x": 69.05108122599115,
                "y": 77.94908611874104
              },
              {
                "series": "LV cycle",
                "x": 50.30039685974047,
                "y": 7.627487994960321
              },
              {
                "series": "LV cycle",
                "x": 110.2042813783971,
                "y": 7.13940997335553
              },
              {
                "series": "LV cycle",
                "x": 112.50485546810908,
                "y": 22.328130434114023
              },
              {
                "series": "LV cycle",
                "x": 39.922068367677234,
                "y": 80.71094877702987
              },
              {
                "series": "LV cycle",
                "x": 106.50883225869774,
                "y": 6.448822957091685
              },
              {
                "series": "LV cycle",
                "x": 109.33076967370776,
                "y": 6.9761725312514615
              },
              {
                "series": "LV cycle",
                "x": 75.84897256288289,
                "y": 79.4182011646538
              },
              {
                "series": "LV cycle",
                "x": 43.19060752690769,
                "y": 6.956632850753186
              },
              {
                "series": "LV cycle",
                "x": 105.88948005629936,
                "y": 6.33308145953338
              },
              {
                "series": "LV cycle",
                "x": 108.28468295308272,
                "y": 13.818745165772484
              },
              {
                "series": "LV cycle",
                "x": 41.26602134905104,
                "y": 77.73748698015535
              },
              {
                "series": "LV cycle",
                "x": 102.22891565018804,
                "y": 5.64901266315469
              },
              {
                "series": "LV cycle",
                "x": 105.0997787664581,
                "y": 6.185505929931138
              },
              {
                "series": "LV cycle",
                "x": 84.21807877951922,
                "y": 82.29765688703992
              },
              {
                "series": "LV cycle",
                "x": 36.78559529553413,
                "y": 6.368641909770798
              },
              {
                "series": "LV cycle",
                "x": 101.88945419853088,
                "y": 5.585575675621867
              },
              {
                "series": "LV cycle",
                "x": 104.3620536656336,
                "y": 8.573822076904973
              },
              {
                "series": "LV cycle",
                "x": 43.335921201677735,
                "y": 76.00007946548554
              },
              {
                "series": "LV cycle",
                "x": 96.7877180620162,
                "y": 4.6321852240554175
              },
              {
                "series": "LV cycle",
                "x": 101.18286765203716,
                "y": 5.453532012222709
              },
              {
                "series": "LV cycle",
                "x": 91.98545025010654,
                "y": 80.63026661601856
              },
              {
                "series": "LV cycle",
                "x": 35.32634083903538,
                "y": 24.81918686192494
              },
              {
                "series": "LV cycle",
                "x": 98.16465781799764,
                "y": 4.889502132274733
              },
              {
                "series": "LV cycle",
                "x": 100.70218001993877,
                "y": 5.779341257271796
              },
              {
                "series": "LV cycle",
                "x": 46.03714253071028,
                "y": 75.00550057969663
              },
              {
                "series": "LV cycle",
                "x": 85.45880124155065,
                "y": 3.789889621707655
              },
              {
                "series": "LV cycle",
                "x": 97.55168992266135,
                "y": 4.774953219269401
              },
              {
                "series": "LV cycle",
                "x": 96.35681937776194,
                "y": 70.38647578393594
              },
              {
                "series": "LV cycle",
                "x": 34.70572999020753,
                "y": 44.33244348764927
              },
              {
                "series": "LV cycle",
                "x": 94.69619773997364,
                "y": 4.241329749580316
              },
              {
                "series": "LV cycle",
                "x": 97.23072752519067,
                "y": 4.714973066337984
              },
              {
                "series": "LV cycle",
                "x": 49.05549311829371,
                "y": 73.30095472755629
              },
              {
                "series": "LV cycle",
                "x": 75.639788423451,
                "y": 3.5642504142753686
              }
            ],
            "title": "LV pressure-volume loop",
            "x_label": "LV volume",
            "x_unit": "mL",
            "y_label": "LV pressure",
            "y_unit": "mmHg"
          },
          "description": "Pressure-volume loop reconstructed from the latest cycle.",
          "render": "scatter"
        }
      ]
    }
  ]
}