About lab
Koo2013 Shear-to-NO Composed Pathway
This lab is a composed lab — it does not bundle its own model code. Instead it wires together two existing single-model labs in this repository to recreate the full Koo et al. (2013) endothelial mechanotransduction chain:
stimulus_intensity --> [koo2013-calcium-influx] --cytosolic_calcium--> [koo2013-no-production] --nitric_oxide-->
This is the canonical composition use case the boundary-condition design enables: the no-production submodel declares s3 (Ca_c) with boundaryCondition="true" precisely so an external upstream submodel can drive it.
What you'll see
A canvas with three nodes: calcium_influx, no_production, and visualisation. The biological wiring is still the two-step pathway — upstream calcium drives downstream NO production — while the third node consumes both submodel states and summaries so the Results panel can render pathway-level charts. Setting stimulus_intensity (the IP3 production rate constant in the upstream submodel) drives the entire chain through to NO production.
The screenshots below were checked against the visible lab title Koo2013 Shear-to-NO Composed Pathway and the canvas model list. They show the expected composed-lab shape: calcium_influx feeding no_production, with both submodels also feeding visualisation.
Results preview
The default run spans 600 s with a 10 s communication step. The first captured view shows the full composition canvas beside the pathway-level visualisation model. The mechanical-input panel tracks the step timer and shear-stress stimulus surrogate, while the calcium subsystem panel shows the upstream response that is wired into the downstream NO-production model.

The middle view focuses on the downstream NO-production response to the composed calcium signal. It shows calcium/calmodulin species, the PI3K/AKT signalling panel, and the eNOS activation chain produced by the no_production submodel.

The final view shows nitric oxide accumulation and the plain-language run summary. In the captured run, the visualisation reports 16 observables for the NO-production submodel, a 590 s tracked interval, nitric oxide as the observable that changed the most, and Hsp90 as the largest peak.

Inputs
stimulus_intensity(1/s, default 0.0006): IP3 production rate constant. The published Koo2013 SBML for the calcium-influx submodel does not kinetically wire itsShear Stressspecies, so this rate constant is the modeller's de-facto stimulus surrogate. Setting it to 0 quiesces the cell; setting it above the baseline mimics stronger shear stress.integration_step(s, default 1.0): tellurium output sampling step.
Outputs
cytosolic_calcium(substance): cytosolic Ca²⁺ amount from the upstream calcium-influx submodel (windowed mean).ip3(substance): IP₃ amount from the upstream submodel.nitric_oxide(substance): NO amount from the downstream NO-production submodel (windowed mean) — the headline output of the full chain.active_eNOS(substance): active eNOS-CaM-Ca₄ complex from the downstream submodel.calcium_influx_state(record): full state of the upstream submodel (7 named species).no_production_state(record): full state of the downstream submodel (16 named species).
Why this lab exists
The Koo2013 series ships three SBML files at BioModels: calcium-influx (Model 1), NO-production (Model 4), and integrated (Model 7). The integrated lab is a single SBML that encodes the full pathway in one file. This composed lab is an alternative that builds the same pathway from the two submodels by wiring at the BioSignal level. It demonstrates:
- The composition pattern — two labs, one wire.
- That the boundary-condition design on
koo2013-no-productionworks as advertised: external upstream calcium dynamics drive downstream NO production. - A debugging path — if the integrated lab produces unexpected behavior, comparing this composed version isolates which submodel's kinetics is responsible.
Trade-offs versus the integrated lab
| Composed (this lab) | Integrated (koo2013-integrated) | |
|---|---|---|
| Model count | 2 | 1 |
| Source SBMLs | 2 (loaded independently) | 1 |
| Coupling | Explicit BioSignal wire | Built into one SBML's reaction network |
| Debuggability | High — can inspect each submodel's state separately | Lower — full state is one record |
| Faithfulness to published model | Captures the mechanistic chain but with the cytosolic-calcium boundary; the published integrated SBML may have subtle kinetic differences | Most faithful to the published BIOMD0000000468 integrated formulation |
Layout
The lab is self-contained. The two SBML submodel directories and the charting model are bundled inside models/:
koo2013-shear-to-no/
├── lab.yaml # composition + wiring
├── wiring-layout.json # canvas placement
├── README.md # this file
├── assets/ # captured Biosimulant run screenshots
└── models/
├── calcium-influx/ # full copy of koo2013-calcium-influx/model
│ ├── model.yaml
│ ├── data/BIOMD0000000464.xml
│ ├── src/...
│ └── tests/...
├── no-production/ # full copy of koo2013-no-production/model
│ ├── model.yaml
│ ├── data/BIOMD0000000467.xml
│ ├── src/...
│ └── tests/...
└── visualisation/ # pathway-level charting and summary model
├── model.yaml
├── src/...
└── README.md
The models/calcium-influx and models/no-production directories are full copies of the matching single-model labs at the time this composed lab was created. The models/visualisation directory is local to this composed lab and owns the pathway-level plots and What Happened summary. The model directories are intentionally self-contained so the lab packs cleanly via biosim.pack (which rejects .. traversal in embedded paths). If you change one of the source labs, you'll need to refresh the corresponding subdirectory here.
Notes
- Both subs use tellurium and need the amd64 sandbox image (libroadrunner has no arm64 wheel).
- The wiring is unidirectional. Calcium drives NO production, but NO does not feed back to calcium in this composition. The published Koo2013 paper does include feedback in its full formulation; this composed lab captures the dominant forward path only.
End-to-end shear-stress driven mechanotransduction. Composes the calcium-influx submodel with the NO-production submodel by wiring the cytosolic calcium output of the first into the cytosolic calcium input of the second. Single experimental knob: stimulus_intensity.
Runtime
Runs
Metadata
Manifest
{
"io": {
"inputs": [
{
"name": "stimulus_intensity",
"maps_to": "calcium_influx.stimulus_intensity"
},
{
"name": "integration_step",
"maps_to": "calcium_influx.integration_step"
}
],
"outputs": [
{
"name": "cytosolic_calcium",
"maps_to": "calcium_influx.cytosolic_calcium"
},
{
"name": "ip3",
"maps_to": "calcium_influx.ip3"
},
{
"name": "active_eNOS",
"maps_to": "no_production.active_eNOS"
},
{
"name": "nitric_oxide",
"maps_to": "no_production.nitric_oxide"
},
{
"name": "calcium_influx_state",
"maps_to": "calcium_influx.state"
},
{
"name": "no_production_state",
"maps_to": "no_production.state"
}
]
},
"title": "Koo2013 Shear-to-NO Composed Pathway",
"models": [
{
"path": "owned/models/calcium_influx",
"alias": "calcium_influx",
"provenance": {
"owned_path": "owned/models/calcium_influx"
}
},
{
"path": "owned/models/no_production",
"alias": "no_production",
"provenance": {
"owned_path": "owned/models/no_production"
}
},
{
"path": "owned/models/visualisation",
"alias": "visualisation",
"provenance": {
"owned_path": "owned/models/visualisation"
}
}
],
"wiring": [
{
"to": [
"no_production.cytosolic_calcium",
"visualisation.calcium_influx_cytosolic_calcium"
],
"from": "calcium_influx.cytosolic_calcium"
},
{
"to": [
"visualisation.calcium_influx_ip3"
],
"from": "calcium_influx.ip3"
},
{
"to": [
"visualisation.no_production_active_eNOS"
],
"from": "no_production.active_eNOS"
},
{
"to": [
"visualisation.no_production_nitric_oxide"
],
"from": "no_production.nitric_oxide"
},
{
"to": [
"visualisation.calcium_influx_state"
],
"from": "calcium_influx.state"
},
{
"to": [
"visualisation.calcium_influx_summary"
],
"from": "calcium_influx.summary"
},
{
"to": [
"visualisation.no_production_state"
],
"from": "no_production.state"
},
{
"to": [
"visualisation.no_production_summary"
],
"from": "no_production.summary"
}
],
"runtime": {
"duration": 600,
"initial_inputs": {},
"communication_step": 10
},
"description": "End-to-end shear-stress driven mechanotransduction. Composes the calcium-influx submodel with the NO-production submodel by wiring the cytosolic calcium output of the first into the cytosolic calcium input of the second. Single experimental knob: stimulus_intensity.",
"schema_version": "2.0"
}Sign in to start your own run. Public-lab history stays visible here.
No logs yet.
JSON
{
"communication_step": 10,
"dependency_installs": [
{
"alias": "calcium_influx",
"status": "reused"
},
{
"alias": "no_production",
"reason": "duplicate-lock-hash",
"status": "skipped"
}
],
"dependency_policy_enabled": true,
"duration": 600,
"lab_commit": null,
"model_resolutions": [
{
"alias": "calcium_influx",
"commit_sha": null,
"model_id": "/Volumes/dem-ssd/imp/projects/Nitoons/Biosimulant/models/models-biomechanics/labs/koo2013-shear-to-no/models/calcium-influx",
"repo_full_name": null
},
{
"alias": "no_production",
"commit_sha": null,
"model_id": "/Volumes/dem-ssd/imp/projects/Nitoons/Biosimulant/models/models-biomechanics/labs/koo2013-shear-to-no/models/no-production",
"repo_full_name": null
},
{
"alias": "visualisation",
"commit_sha": null,
"model_id": "/Volumes/dem-ssd/imp/projects/Nitoons/Biosimulant/models/models-biomechanics/labs/koo2013-shear-to-no/models/visualisation",
"repo_full_name": null
}
],
"module_ports": {
"calcium_influx": {
"inputs": [
"integration_step",
"stimulus_intensity"
],
"outputs": [
"cytosolic_calcium",
"ip3",
"state",
"summary"
]
},
"no_production": {
"inputs": [
"cytosolic_calcium",
"integration_step"
],
"outputs": [
"active_eNOS",
"nitric_oxide",
"state",
"summary"
]
},
"visualisation": {
"inputs": [
"calcium_influx_cytosolic_calcium",
"calcium_influx_ip3",
"calcium_influx_state",
"calcium_influx_summary",
"no_production_active_eNOS",
"no_production_nitric_oxide",
"no_production_state",
"no_production_summary"
],
"outputs": []
}
},
"modules": [
"calcium_influx",
"no_production",
"visualisation"
],
"outputs": {
"calcium_influx": {
"cytosolic_calcium": {
"emitted_at": 600,
"name": "cytosolic_calcium",
"source": "calcium_influx",
"spec": {
"accepted_profiles": null,
"description": "Cytosolic Ca2+ amount. Headline downstream readout of shear-stress signalling. Units: substance.",
"dtype": "float64",
"emitted_unit": "substance",
"interpolation": "zoh",
"kind": "state",
"max_age": null,
"schema": null,
"shape": null,
"signal_type": "scalar",
"stale_policy": "warn"
},
"type": "scalar",
"value": 214.82945767646615
},
"ip3": {
"emitted_at": 600,
"name": "ip3",
"source": "calcium_influx",
"spec": {
"accepted_profiles": null,
"description": "IP3 (inositol 1,4,5-trisphosphate) amount. Second-messenger driving Ca2+ store release. Units: substance.",
"dtype": "float64",
"emitted_unit": "substance",
"interpolation": "zoh",
"kind": "state",
"max_age": null,
"schema": null,
"shape": null,
"signal_type": "scalar",
"stale_policy": "warn"
},
"type": "scalar",
"value": 26.3950692103414
},
"state": {
"emitted_at": 600,
"name": "state",
"source": "calcium_influx",
"spec": {
"accepted_profiles": null,
"description": "Latest value of every observable (species variables).",
"dtype": null,
"emitted_unit": null,
"interpolation": "zoh",
"kind": "state",
"max_age": null,
"schema": {
"s1": "float",
"s119": "float",
"s12": "float",
"s2": "float",
"s3": "float",
"s4": "float",
"s6": "float"
},
"shape": null,
"signal_type": "record",
"stale_policy": "warn"
},
"type": "record",
"value": {
"s1": 1500000,
"s119": 0,
"s12": 600.0000000000002,
"s2": 419738.3191243522,
"s3": 201.38577538594828,
"s4": 7548.786789843649,
"s6": 26.396978990434587
}
},
"summary": {
"emitted_at": 600,
"name": "summary",
"source": "calcium_influx",
"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": 600,
"largest_change_magnitude": 2410261.680875648,
"largest_change_observable": "s2",
"observable_count": 7,
"peak_observable": "s2",
"peak_value": 2830433.9845007462
}
}
},
"no_production": {
"active_eNOS": {
"emitted_at": 600,
"name": "active_eNOS",
"source": "no_production",
"spec": {
"accepted_profiles": null,
"description": "Active eNOS-CaM-Ca4 complex. Catalyses NO production from L-arginine. Units: substance.",
"dtype": "float64",
"emitted_unit": "substance",
"interpolation": "zoh",
"kind": "state",
"max_age": null,
"schema": null,
"shape": null,
"signal_type": "scalar",
"stale_policy": "warn"
},
"type": "scalar",
"value": 0.09277636854945936
},
"nitric_oxide": {
"emitted_at": 600,
"name": "nitric_oxide",
"source": "no_production",
"spec": {
"accepted_profiles": null,
"description": "Nitric oxide (NO) amount. The model's primary downstream readout. Units: substance.",
"dtype": "float64",
"emitted_unit": "substance",
"interpolation": "zoh",
"kind": "state",
"max_age": null,
"schema": null,
"shape": null,
"signal_type": "scalar",
"stale_policy": "warn"
},
"type": "scalar",
"value": 100735.453444921
},
"state": {
"emitted_at": 600,
"name": "state",
"source": "no_production",
"spec": {
"accepted_profiles": null,
"description": "Latest value of every observable (species variables).",
"dtype": null,
"emitted_unit": null,
"interpolation": "zoh",
"kind": "state",
"max_age": null,
"schema": {
"s27": "float",
"s3": "float",
"s45": "float",
"s47": "float",
"s48": "float",
"s50": "float",
"s51": "float",
"s52": "float",
"s57": "float",
"s58": "float",
"s60": "float",
"s61": "float",
"s62": "float",
"s64": "float",
"s65": "float",
"s66": "float"
},
"shape": null,
"signal_type": "record",
"stale_policy": "warn"
},
"type": "record",
"value": {
"s27": 1.723,
"s3": 219.65002034655848,
"s45": 0.08805686928343624,
"s47": 9.541593188758409,
"s48": 625.667877154363,
"s50": 2.4493437866284444,
"s51": 16.223507280178726,
"s52": 7334.816737727764,
"s57": 199971.37550035844,
"s58": 3.869005491918099,
"s60": 0.027432381414168015,
"s61": 23.36447585975255,
"s62": 0.17587754020904375,
"s64": 103080.50248217412,
"s65": 0.9273922790612495,
"s66": 0.11821608999029833
}
},
"summary": {
"emitted_at": 600,
"name": "summary",
"source": "no_production",
"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": 600,
"largest_change_magnitude": 103080.50248217412,
"largest_change_observable": "s64",
"observable_count": 16,
"peak_observable": "s57",
"peak_value": 199987.92725012297
}
}
},
"visualisation": {}
},
"state": {
"calcium_influx": {},
"no_production": {},
"visualisation": {}
},
"visuals": [
{
"module": "visualisation",
"module_class": "BiomechanicsVisualisationModel",
"visuals": [
{
"data": {
"series": [
{
"name": "Step timer",
"points": [
[
0,
0
],
[
10,
10
],
[
20,
20
],
[
30,
30
],
[
40,
40
],
[
50,
50
],
[
60,
60
],
[
70,
70
],
[
80,
80
],
[
90,
90
],
[
100,
100
],
[
110,
110
],
[
120,
120
],
[
130,
130
],
[
140,
140
],
[
150,
150
],
[
160,
160
],
[
170,
170
],
[
180,
180
],
[
190,
190
],
[
200,
200
],
[
210,
210
],
[
220,
220
],
[
230,
230
],
[
240,
240
],
[
250,
250
],
[
260,
260
],
[
270,
270
],
[
280,
280
],
[
290,
290
],
[
300,
300
],
[
310,
310
],
[
320,
320
],
[
330,
330
],
[
340,
340
],
[
350,
350
],
[
360,
360
],
[
370,
370
],
[
380,
380
],
[
390,
390
],
[
400,
400
],
[
410,
410
],
[
420,
420
],
[
430,
430
],
[
440,
440
],
[
450,
450
],
[
460,
460
],
[
470,
470
],
[
480,
480
],
[
490,
490
],
[
500,
500
],
[
510,
510
],
[
520,
520.0000000000001
],
[
530,
530.0000000000002
],
[
540,
540.0000000000002
],
[
550,
550.0000000000002
],
[
560,
560.0000000000002
],
[
570,
570.0000000000002
],
[
580,
580.0000000000002
],
[
590,
590.0000000000002
]
]
},
{
"name": "Shear stress",
"points": [
[
0,
0
],
[
10,
0
],
[
20,
0
],
[
30,
0
],
[
40,
0
],
[
50,
0
],
[
60,
0
],
[
70,
0
],
[
80,
0
],
[
90,
0
],
[
100,
0
],
[
110,
0
],
[
120,
0
],
[
130,
0
],
[
140,
0
],
[
150,
0
],
[
160,
0
],
[
170,
0
],
[
180,
0
],
[
190,
0
],
[
200,
0
],
[
210,
0
],
[
220,
0
],
[
230,
0
],
[
240,
0
],
[
250,
0
],
[
260,
0
],
[
270,
0
],
[
280,
0
],
[
290,
0
],
[
300,
0
],
[
310,
0
],
[
320,
0
],
[
330,
0
],
[
340,
0
],
[
350,
0
],
[
360,
0
],
[
370,
0
],
[
380,
0
],
[
390,
0
],
[
400,
0
],
[
410,
0
],
[
420,
0
],
[
430,
0
],
[
440,
0
],
[
450,
0
],
[
460,
0
],
[
470,
0
],
[
480,
0
],
[
490,
0
],
[
500,
0
],
[
510,
0
],
[
520,
0
],
[
530,
0
],
[
540,
0
],
[
550,
0
],
[
560,
0
],
[
570,
0
],
[
580,
0
],
[
590,
0
]
]
}
],
"title": "Koo2013 Shear-Stress Induced Calcium Influx and eNOS Activation - Mechanical inputs and timers",
"x_unit": "s"
},
"description": "How does the shear-stress drive change over time?",
"render": "timeseries"
},
{
"data": {
"series": [
{
"name": "Extracellular calcium",
"points": [
[
0,
1500000
],
[
10,
1500000
],
[
20,
1500000
],
[
30,
1500000
],
[
40,
1500000
],
[
50,
1500000
],
[
60,
1500000
],
[
70,
1500000
],
[
80,
1500000
],
[
90,
1500000
],
[
100,
1500000
],
[
110,
1500000
],
[
120,
1500000
],
[
130,
1500000
],
[
140,
1500000
],
[
150,
1500000
],
[
160,
1500000
],
[
170,
1500000
],
[
180,
1500000
],
[
190,
1500000
],
[
200,
1500000
],
[
210,
1500000
],
[
220,
1500000
],
[
230,
1500000
],
[
240,
1500000
],
[
250,
1500000
],
[
260,
1500000
],
[
270,
1500000
],
[
280,
1500000
],
[
290,
1500000
],
[
300,
1500000
],
[
310,
1500000
],
[
320,
1500000
],
[
330,
1500000
],
[
340,
1500000
],
[
350,
1500000
],
[
360,
1500000
],
[
370,
1500000
],
[
380,
1500000
],
[
390,
1500000
],
[
400,
1500000
],
[
410,
1500000
],
[
420,
1500000
],
[
430,
1500000
],
[
440,
1500000
],
[
450,
1500000
],
[
460,
1500000
],
[
470,
1500000
],
[
480,
1500000
],
[
490,
1500000
],
[
500,
1500000
],
[
510,
1500000
],
[
520,
1500000
],
[
530,
1500000
],
[
540,
1500000
],
[
550,
1500000
],
[
560,
1500000
],
[
570,
1500000
],
[
580,
1500000
],
[
590,
1500000
]
]
},
{
"name": "Stored calcium",
"points": [
[
0,
2830000
],
[
10,
2830414.8143756646
],
[
20,
2829720.530185304
],
[
30,
2825708.205515869
],
[
40,
2816358.57615364
],
[
50,
2800171.2448240644
],
[
60,
2776186.2938402663
],
[
70,
2743970.254740292
],
[
80,
2703636.931142067
],
[
90,
2655771.9267467116
],
[
100,
2601280.6920230533
],
[
110,
2541231.3398776166
],
[
120,
2476718.545593417
],
[
130,
2408797.0725440583
],
[
140,
2338425.6478577396
],
[
150,
2266454.6544246934
],
[
160,
2193622.4296101406
],
[
170,
2120554.3450314915
],
[
180,
2047773.412398244
],
[
190,
1975700.516785984
],
[
200,
1904672.8800696705
],
[
210,
1834951.170054912
],
[
220,
1766735.6679748308
],
[
230,
1700180.503687339
],
[
240,
1635405.4173805304
],
[
250,
1572502.432699375
],
[
260,
1511548.1318850133
],
[
270,
1452599.2508484349
],
[
280,
1395694.1937811906
],
[
290,
1340852.062063506
],
[
300,
1288074.346711179
],
[
310,
1237347.3394582707
],
[
320,
1188642.3858806586
],
[
330,
1141921.570068218
],
[
340,
1097137.6214198126
],
[
350,
1054236.9297121142
],
[
360,
1013160.0693144453
],
[
370,
973846.4374886334
],
[
380,
936230.9722838928
],
[
390,
900249.3968022721
],
[
400,
865836.0270739772
],
[
410,
832926.3427907709
],
[
420,
801456.5437701743
],
[
430,
771364.2038169425
],
[
440,
742588.6679255655
],
[
450,
715069.4840223602
],
[
460,
688752.8327655336
],
[
470,
663580.5500699539
],
[
480,
639504.0155308474
],
[
490,
616469.3839659325
],
[
500,
594430.3626807604
],
[
510,
573341.2584072426
],
[
520,
553158.9964590417
],
[
530,
533840.7759372165
],
[
540,
515347.05861335946
],
[
550,
497641.770661486
],
[
560,
480688.5011101599
],
[
570,
464452.0489896255
],
[
580,
448902.0368925067
],
[
590,
434006.4498540256
]
]
},
{
"name": "Cytosolic calcium",
"points": [
[
0,
117.2
],
[
10,
113.7492868776884
],
[
20,
123.13573006963026
],
[
30,
145.24318169323405
],
[
40,
180.95848113125044
],
[
50,
228.48434209850836
],
[
60,
283.22813665200147
],
[
70,
341.42068640058864
],
[
80,
403.1645694371129
],
[
90,
470.9061291158265
],
[
100,
547.2040506822544
],
[
110,
633.1393538871949
],
[
120,
727.1380046931671
],
[
130,
824.5564640582753
],
[
140,
918.3224761866956
],
[
150,
1000.203694054136
],
[
160,
1062.342504408578
],
[
170,
1098.821903038289
],
[
180,
1106.8832942147471
],
[
190,
1087.4956466668918
],
[
200,
1045.0385169339684
],
[
210,
986.1527058180584
],
[
220,
918.2599381026956
],
[
230,
848.1049674361622
],
[
240,
780.7820917948435
],
[
250,
719.3990246155593
],
[
260,
665.2369056242463
],
[
270,
618.2963533602552
],
[
280,
577.868630109292
],
[
290,
542.9924262802097
],
[
300,
512.7176193093039
],
[
310,
486.21279334498826
],
[
320,
462.7909874666096
],
[
330,
441.9022086804535
],
[
340,
423.1070348029116
],
[
350,
406.0570635281667
],
[
360,
390.4752819581751
],
[
370,
376.1404655720329
],
[
380,
362.8741776523888
],
[
390,
350.5329842190957
],
[
400,
339.0002699416116
],
[
410,
328.1808335534286
],
[
420,
317.9964527494783
],
[
430,
308.3826234113671
],
[
440,
299.2859116519266
],
[
450,
290.6611888429075
],
[
460,
282.47216209924767
],
[
470,
274.68599272006657
],
[
480,
267.27711241528306
],
[
490,
260.2211938597783
],
[
500,
253.4986388106169
],
[
510,
247.09172010165972
],
[
520,
240.98473378659617
],
[
530,
235.1629251091716
],
[
540,
229.61306430813136
],
[
550,
224.3233064070012
],
[
560,
219.28187985237764
],
[
570,
214.47742800029997
],
[
580,
209.9000140730262
],
[
590,
205.5391567667325
]
]
},
{
"name": "Buffered calcium",
"points": [
[
0,
3870
],
[
10,
4383.656866980537
],
[
20,
4730.87086804202
],
[
30,
5540.77149942836
],
[
40,
6825.616194543363
],
[
50,
8491.45495929335
],
[
60,
10350.663283143193
],
[
70,
12260.245044831636
],
[
80,
14214.931735743154
],
[
90,
16279.452216172742
],
[
100,
18510.30844882316
],
[
110,
20910.77686646927
],
[
120,
23409.798444267508
],
[
130,
25870.19223625236
],
[
140,
28122.881086652847
],
[
150,
30003.759838630427
],
[
160,
31380.63990573396
],
[
170,
32169.647691466733
],
[
180,
32342.349823786026
],
[
190,
31926.847182789883
],
[
200,
31002.64637342235
],
[
210,
29688.08864781232
],
[
220,
28123.320772227988
],
[
230,
26448.33137863611
],
[
240,
24782.47067413298
],
[
250,
23210.977700155712
],
[
260,
21780.62082954017
],
[
270,
20506.325876039296
],
[
280,
19382.029027853143
],
[
290,
18391.50828435554
],
[
300,
17515.721241044652
],
[
310,
16736.506171110188
],
[
320,
16038.004164443271
],
[
330,
15407.025245230318
],
[
340,
14832.708242184684
],
[
350,
14306.23831245242
],
[
360,
13820.473237949234
],
[
370,
13369.62351878907
],
[
380,
12948.95756141702
],
[
390,
12554.637031465852
],
[
400,
12183.514072134025
],
[
410,
11833.006449500655
],
[
420,
11500.98393532686
],
[
430,
11185.686778800293
],
[
440,
10885.657432245922
],
[
450,
10599.664138115068
],
[
460,
10326.72673867172
],
[
470,
10065.951615684322
],
[
480,
9816.658094033535
],
[
490,
9578.187793767753
],
[
500,
9350.022015719793
],
[
510,
9131.689721383003
],
[
520,
8922.774950846993
],
[
530,
8722.881342440589
],
[
540,
8531.654320557453
],
[
550,
8348.776578156929
],
[
560,
8173.924740868181
],
[
570,
8006.7816087030815
],
[
580,
7847.071287531667
],
[
590,
7694.492657984983
]
]
},
{
"name": "IP3",
"points": [
[
0,
0
],
[
10,
3.3591968577418627
],
[
20,
6.598598711124457
],
[
30,
9.382579097219262
],
[
40,
11.775146087216845
],
[
50,
13.83132888798712
],
[
60,
15.598422950493202
],
[
70,
17.117072407736682
],
[
80,
18.42220688421781
],
[
90,
19.54384569928073
],
[
100,
20.507787920867766
],
[
110,
21.336211336444613
],
[
120,
22.04814898134716
],
[
130,
22.65999767166644
],
[
140,
23.185824188292568
],
[
150,
23.637721766235728
],
[
160,
24.02608489292466
],
[
170,
24.35984493035562
],
[
180,
24.64668540179217
],
[
190,
24.893189703716104
],
[
200,
25.105040399641204
],
[
210,
25.28710475959429
],
[
220,
25.4435724179836
],
[
230,
25.578041749183857
],
[
240,
25.69360447064178
],
[
250,
25.792920934283888
],
[
260,
25.878273984664673
],
[
270,
25.95162689426249
],
[
280,
26.014666171165995
],
[
290,
26.068843045024312
],
[
300,
26.11540217835608
],
[
310,
26.155415227721576
],
[
320,
26.189802887936736
],
[
330,
26.219355460454302
],
[
340,
26.244753346798735
],
[
350,
26.266580826975435
],
[
360,
26.28533892352696
],
[
370,
26.301459618178793
],
[
380,
26.315313912464532
],
[
390,
26.3272208459952
],
[
400,
26.337453513178303
],
[
410,
26.34624737094918
],
[
420,
26.353804766384656
],
[
430,
26.360299578559783
],
[
440,
26.365881197123
],
[
450,
26.370678313598276
],
[
460,
26.374800558001837
],
[
470,
26.378343709243342
],
[
480,
26.38138842796182
],
[
490,
26.38400512048964
],
[
500,
26.3862539097334
],
[
510,
26.388186516910647
],
[
520,
26.389847423473885
],
[
530,
26.39127482433611
],
[
540,
26.392501565796938
],
[
550,
26.39355579035872
],
[
560,
26.394461807084
],
[
570,
26.39524048665299
],
[
580,
26.395909637618644
],
[
590,
26.396484732626927
]
]
}
],
"title": "Koo2013 Shear-Stress Induced Calcium Influx and eNOS Activation - Calcium subsystem",
"x_unit": "s"
},
"description": "How do calcium pools, IP3, and calmodulin shift?",
"render": "timeseries"
},
{
"data": {
"categories": [
"Stored calcium",
"Buffered calcium",
"Cytosolic calcium",
"Step timer",
"IP3",
"Extracellular calcium",
"Shear stress"
],
"title": "Koo2013 Shear-Stress Induced Calcium Influx and eNOS Activation - largest excursions during the run",
"values": [
2396408.364521639,
28472.349823786026,
993.1340073370588,
590.0000000000002,
26.396484732626927,
0,
0
]
},
"description": "Which observables shifted the most during the run?",
"render": "bar"
},
{
"data": {
"columns": [
"Question",
"Answer"
],
"rows": [
[
"What did this run track?",
"7 observables in Koo2013 Shear-Stress Induced Calcium Influx and eNOS Activation"
],
[
"How long did it run?",
"590 s"
],
[
"Which observable changed the most?",
"Stored calcium"
],
[
"Largest peak?",
"Stored calcium"
]
],
"title": "What Happened"
},
"description": "What did this simulation actually show, in plain language?",
"render": "table"
},
{
"data": {
"series": [
{
"name": "Cytosolic calcium",
"points": [
[
0,
117.2
],
[
10,
117.2
],
[
20,
112.08776337503578
],
[
30,
114.88918346815667
],
[
40,
121.1098443170923
],
[
50,
131.51958369372434
],
[
60,
146.17935368477794
],
[
70,
164.5443168723976
],
[
80,
197.83599696991823
],
[
90,
240.1261562064691
],
[
100,
290.59311593866437
],
[
110,
348.2764314953289
],
[
120,
412.56497442461693
],
[
130,
483.3173382244246
],
[
140,
560.6150991869657
],
[
150,
643.8827408678364
],
[
160,
731.0370009597971
],
[
170,
818.2230095595645
],
[
180,
900.123211211693
],
[
190,
970.7286685154364
],
[
200,
1024.3993674825294
],
[
210,
1056.926099857408
],
[
220,
1066.3048040883912
],
[
230,
1053.0556826199434
],
[
240,
1020.0358560333184
],
[
250,
971.8191769309644
],
[
260,
913.8141283355022
],
[
270,
851.3480558491539
],
[
280,
788.931439703621
],
[
290,
729.8357254104819
],
[
300,
676.0053075626059
],
[
310,
628.2317279794926
],
[
320,
586.4722803055774
],
[
330,
550.1913604883441
],
[
340,
518.645913529209
],
[
350,
491.0725638744671
],
[
360,
466.7841355546456
],
[
370,
445.2020850191312
],
[
380,
425.85544891513376
],
[
390,
408.36669902911194
],
[
400,
392.4344720951916
],
[
410,
377.81810402268417
],
[
420,
364.3248249767485
],
[
430,
351.79953377011617
],
[
440,
340.11662178047266
],
[
450,
329.17396591539506
],
[
460,
318.88792207993635
],
[
470,
309.1898339933981
],
[
480,
300.02279704407925
],
[
490,
291.33960289785915
],
[
500,
283.10062250305947
],
[
510,
275.2724851126572
],
[
520,
267.82689632071026
],
[
530,
260.73951707567005
],
[
540,
253.9892645001254
],
[
550,
247.5575225810001
],
[
560,
241.42786234408695
],
[
570,
235.58543458240297
],
[
580,
230.0165853987958
],
[
590,
224.7087121641879
]
]
},
{
"name": "Calmodulin Ca4 complex",
"points": [
[
0,
2.827
],
[
10,
2.827147179228049
],
[
20,
2.591176179765707
],
[
30,
2.719283103000403
],
[
40,
3.0142412228391873
],
[
50,
3.539976944087636
],
[
60,
4.3477681378716575
],
[
70,
5.469098153182795
],
[
80,
7.804182109950874
],
[
90,
11.312793340389389
],
[
100,
16.25764584042635
],
[
110,
22.864413162445445
],
[
120,
31.35282361158145
],
[
130,
41.969923613135734
],
[
140,
54.97959591219873
],
[
150,
70.50472363595394
],
[
160,
88.28369473609034
],
[
170,
107.48952515852274
],
[
180,
126.70573281689124
],
[
190,
144.10595955139792
],
[
200,
157.81045456031887
],
[
210,
166.30534139670658
],
[
220,
168.78097744120458
],
[
230,
165.28929515113694
],
[
240,
156.6852374556462
],
[
250,
144.3853978025577
],
[
260,
130.02743601671773
],
[
270,
115.13710674489084
],
[
280,
100.89362252434384
],
[
290,
88.0352182347644
],
[
300,
76.88977216211684
],
[
310,
67.47961646171386
],
[
320,
59.6452923337271
],
[
330,
53.149363441024946
],
[
340,
47.74586712369107
],
[
350,
43.215887084641146
],
[
360,
39.37956652710814
],
[
370,
36.095120079693785
],
[
380,
33.252842299954914
],
[
390,
30.76831593662803
],
[
400,
28.5764139925494
],
[
410,
26.626591020596376
],
[
420,
24.879310514220354
],
[
430,
23.30337348575099
],
[
440,
21.873911791858664
],
[
450,
20.570937130151034
],
[
460,
19.37821484882126
],
[
470,
18.28246346308454
],
[
480,
17.272689743565802
],
[
490,
16.3397351401152
],
[
500,
15.47587569667833
],
[
510,
14.674548618419918
],
[
520,
13.930127467441627
],
[
530,
13.237729146999998
],
[
540,
12.593082707236436
],
[
550,
11.992404751844145
],
[
560,
11.432334705981642
],
[
570,
10.90984754295332
],
[
580,
10.422195465272711
],
[
590,
9.96687569095906
]
]
},
{
"name": "Calmodulin Ca2 complex",
"points": [
[
0,
347.52
],
[
10,
347.52083795677015
],
[
20,
333.0458889778754
],
[
30,
340.98692985671613
],
[
40,
358.5535310707553
],
[
50,
387.7517303895588
],
[
60,
428.4575806785075
],
[
70,
478.7853503304104
],
[
80,
568.1973893459248
],
[
90,
678.5414519804044
],
[
100,
805.7353539765564
],
[
110,
945.4470185191224
],
[
120,
1094.3915574819453
],
[
130,
1250.5059823747922
],
[
140,
1412.248603826932
],
[
150,
1576.8201919247613
],
[
160,
1739.0396868541698
],
[
170,
1891.7391827719905
],
[
180,
2027.0297141373908
],
[
190,
2137.7123857469865
],
[
200,
2218.35621387154
],
[
210,
2265.82413176929
],
[
220,
2279.3273474622983
],
[
230,
2260.258087786818
],
[
240,
2211.961057636006
],
[
250,
2139.4541068175868
],
[
260,
2049.003902054369
],
[
270,
1947.4866584857089
],
[
280,
1841.5845401358135
],
[
290,
1736.99928290879
],
[
300,
1637.9027360076384
],
[
310,
1546.7635107896942
],
[
320,
1464.5411748511983
],
[
330,
1391.1023727032605
],
[
340,
1325.6889492774103
],
[
350,
1267.2920458464475
],
[
360,
1214.8874035207514
],
[
370,
1167.548191148892
],
[
380,
1124.481958402912
],
[
390,
1085.030206691665
],
[
400,
1048.652446385728
],
[
410,
1014.907466987367
],
[
420,
983.435644146038
],
[
430,
953.943614301804
],
[
440,
926.1911810435694
],
[
450,
899.9815014110868
],
[
460,
875.1524139786312
],
[
470,
851.5704563086227
],
[
480,
829.1248567173591
],
[
490,
807.7238471694246
],
[
500,
787.2906138690647
],
[
510,
767.7607515611842
],
[
520,
749.079982324079
],
[
530,
731.2018532152334
],
[
540,
714.0863385470365
],
[
550,
697.698147984863
],
[
560,
682.0062503287476
],
[
570,
666.9825061416467
],
[
580,
652.6008374757436
],
[
590,
638.8369625532738
]
]
},
{
"name": "Calmodulin",
"points": [
[
0,
7635.36
],
[
10,
7635.373863587421
],
[
20,
7651.050856472528
],
[
30,
7642.520092778698
],
[
40,
7623.489575229943
],
[
50,
7591.783246168159
],
[
60,
7547.499315882344
],
[
70,
7492.716591298279
],
[
80,
7395.639358735843
],
[
90,
7276.40222903377
],
[
100,
7139.785203712164
],
[
110,
6990.212535550719
],
[
120,
6830.578088114299
],
[
130,
6662.396562226005
],
[
140,
6486.694818738157
],
[
150,
6305.978899770558
],
[
160,
6125.580830473159
],
[
170,
5953.422766929778
],
[
180,
5798.762418165841
],
[
190,
5670.594407453754
],
[
200,
5576.210430383403
],
[
210,
5520.250034821354
],
[
220,
5504.305245370945
],
[
230,
5526.928805976527
],
[
240,
5583.920301360882
],
[
250,
5668.846259442935
],
[
260,
5773.804579698696
],
[
270,
5890.396168557811
],
[
280,
6010.762320011044
],
[
290,
6128.464489933306
],
[
300,
6239.002370500344
],
[
310,
6339.8822964835645
],
[
320,
6430.299987838299
],
[
330,
6510.62164548414
],
[
340,
6581.847319731841
],
[
350,
6645.201601265555
],
[
360,
6701.88635504857
],
[
370,
6752.968709630838
],
[
380,
6799.349861042866
],
[
390,
6841.772148827529
],
[
400,
6880.840867463094
],
[
410,
6917.047564572549
],
[
420,
6950.791267745892
],
[
430,
6982.396397082916
],
[
440,
7012.127830523403
],
[
450,
7040.202120807464
],
[
460,
7066.797250931611
],
[
470,
7092.059443436667
],
[
480,
7116.109786839385
],
[
490,
7139.048373263138
],
[
500,
7160.958676701521
],
[
510,
7181.910634023066
],
[
520,
7201.962730965551
],
[
530,
7221.164955870397
],
[
540,
7239.560061495621
],
[
550,
7257.185518456912
],
[
560,
7274.074129990025
],
[
570,
7290.255299793616
],
[
580,
7305.756273495732
],
[
590,
7320.602160446918
]
]
}
],
"title": "Koo2013 Shear-Stress Induced NO Production - Calcium subsystem",
"x_unit": "s"
},
"description": "How do calcium pools, IP3, and calmodulin shift?",
"render": "timeseries"
},
{
"data": {
"series": [
{
"name": "Active AKT PI3P complex",
"points": [
[
0,
1.723
],
[
10,
1.723
],
[
20,
1.723
],
[
30,
1.723
],
[
40,
1.723
],
[
50,
1.723
],
[
60,
1.723
],
[
70,
1.723
],
[
80,
1.723
],
[
90,
1.723
],
[
100,
1.723
],
[
110,
1.723
],
[
120,
1.723
],
[
130,
1.723
],
[
140,
1.723
],
[
150,
1.723
],
[
160,
1.723
],
[
170,
1.723
],
[
180,
1.723
],
[
190,
1.723
],
[
200,
1.723
],
[
210,
1.723
],
[
220,
1.723
],
[
230,
1.723
],
[
240,
1.723
],
[
250,
1.723
],
[
260,
1.723
],
[
270,
1.723
],
[
280,
1.723
],
[
290,
1.723
],
[
300,
1.723
],
[
310,
1.723
],
[
320,
1.723
],
[
330,
1.723
],
[
340,
1.723
],
[
350,
1.723
],
[
360,
1.723
],
[
370,
1.723
],
[
380,
1.723
],
[
390,
1.723
],
[
400,
1.723
],
[
410,
1.723
],
[
420,
1.723
],
[
430,
1.723
],
[
440,
1.723
],
[
450,
1.723
],
[
460,
1.723
],
[
470,
1.723
],
[
480,
1.723
],
[
490,
1.723
],
[
500,
1.723
],
[
510,
1.723
],
[
520,
1.723
],
[
530,
1.723
],
[
540,
1.723
],
[
550,
1.723
],
[
560,
1.723
],
[
570,
1.723
],
[
580,
1.723
],
[
590,
1.723
]
]
}
],
"title": "Koo2013 Shear-Stress Induced NO Production - PI3K / AKT signalling",
"x_unit": "s"
},
"description": "How does PI3K signalling activate AKT?",
"render": "timeseries"
},
{
"data": {
"series": [
{
"name": "eNOS-CaM-Ca4",
"points": [
[
0,
0.0415
],
[
10,
0.04144213252032421
],
[
20,
0.03846260149534133
],
[
30,
0.03992715512677585
],
[
40,
0.04351895497707979
],
[
50,
0.04958444127649341
],
[
60,
0.05800842871582317
],
[
70,
0.0680369007742323
],
[
80,
0.08375362067081099
],
[
90,
0.09882141467145096
],
[
100,
0.11020893272842486
],
[
110,
0.11705559031444109
],
[
120,
0.12007753109296695
],
[
130,
0.12036889568345516
],
[
140,
0.1188377646621173
],
[
150,
0.11615527337257388
],
[
160,
0.11285280243244088
],
[
170,
0.10937977961312134
],
[
180,
0.10611096359905568
],
[
190,
0.10333675800165086
],
[
200,
0.10125696767954524
],
[
210,
0.09998388552432286
],
[
220,
0.09955198474084812
],
[
230,
0.0999286052563266
],
[
240,
0.10102314656799068
],
[
250,
0.10269589025009378
],
[
260,
0.10476985723194816
],
[
270,
0.10704855306907884
],
[
280,
0.10933931372371486
],
[
290,
0.11147768700014322
],
[
300,
0.11334597439031732
],
[
310,
0.11487986000562007
],
[
320,
0.11606228372110616
],
[
330,
0.11690906960246078
],
[
340,
0.11745308651425355
],
[
350,
0.11773214780630992
],
[
360,
0.11778206609666206
],
[
370,
0.11763378035970616
],
[
380,
0.1173128433799806
],
[
390,
0.11683989236143535
],
[
400,
0.1162314602474344
],
[
410,
0.11550086128698672
],
[
420,
0.11465889204274926
],
[
430,
0.11371449355935977
],
[
440,
0.11267524511528444
],
[
450,
0.11154779695645228
],
[
460,
0.11033822477151592
],
[
470,
0.10905221407523902
],
[
480,
0.1076953082474133
],
[
490,
0.10627305918890502
],
[
500,
0.10479125659785284
],
[
510,
0.10325551217266046
],
[
520,
0.10167211674357828
],
[
530,
0.10004718111895872
],
[
540,
0.09838717521429806
],
[
550,
0.09669865426707494
],
[
560,
0.09498810651218945
],
[
570,
0.09326232446796436
],
[
580,
0.09152763934261894
],
[
590,
0.08979048972871262
]
]
},
{
"name": "eNOS-CaM-Ca2",
"points": [
[
0,
2.12
],
[
10,
2.11902534521398
],
[
20,
2.0542311768013652
],
[
30,
2.0809977617279087
],
[
40,
2.154718926962614
],
[
50,
2.2660167494372345
],
[
60,
2.3926486228624246
],
[
70,
2.5022106720344883
],
[
80,
2.5760729584293425
],
[
90,
2.5195029478818443
],
[
100,
2.3351864958740314
],
[
110,
2.0798007962080267
],
[
120,
1.8086698338344736
],
[
130,
1.5532344084360343
],
[
140,
1.3261396805999792
],
[
150,
1.1315741763128226
],
[
160,
0.9704947689544884
],
[
170,
0.8419354141258111
],
[
180,
0.7435249206258628
],
[
190,
0.672137136718358
],
[
200,
0.6245555156462117
],
[
210,
0.5979670450702624
],
[
220,
0.5902129855049504
],
[
230,
0.5998015812419332
],
[
240,
0.6257372602588027
],
[
250,
0.667219419397281
],
[
260,
0.7232723128458931
],
[
270,
0.7923937722055702
],
[
280,
0.8723439502437903
],
[
290,
0.960187592834404
],
[
300,
1.052619302275757
],
[
310,
1.1464596775982614
],
[
320,
1.2391058453621508
],
[
330,
1.3287650758777498
],
[
340,
1.4144215610627489
],
[
350,
1.4956494388868962
],
[
360,
1.572391918796211
],
[
370,
1.644788929654216
],
[
380,
1.7130669832782952
],
[
390,
1.7774745187142034
],
[
400,
1.8382494896899408
],
[
410,
1.895604527679299
],
[
420,
1.9497190747215711
],
[
430,
2.0007391902227485
],
[
440,
2.0487801274108284
],
[
450,
2.093929201865483
],
[
460,
2.13625198253008
],
[
470,
2.1757931086097724
],
[
480,
2.2125842930812665
],
[
490,
2.246646868990157
],
[
500,
2.2780017960324095
],
[
510,
2.306658934781456
],
[
520,
2.332643562570483
],
[
530,
2.3559767075364566
],
[
540,
2.376692868631346
],
[
550,
2.3948370576843847
],
[
560,
2.410460760662948
],
[
570,
2.4236381169475125
],
[
580,
2.434445586969812
],
[
590,
2.4429801533352933
]
]
},
{
"name": "eNOS-Cav-1",
"points": [
[
0,
34.98
],
[
10,
34.94519798403313
],
[
20,
35.881646723714944
],
[
30,
35.37104364881147
],
[
40,
34.13151796489832
],
[
50,
32.06031867389964
],
[
60,
29.186837058045327
],
[
70,
25.742660432049643
],
[
80,
20.28248175433361
],
[
90,
14.771549584004404
],
[
100,
10.18754308952944
],
[
110,
6.851684090579935
],
[
120,
4.588832787468361
],
[
130,
3.0924777965215178
],
[
140,
2.1074272601991906
],
[
150,
1.460188351034825
],
[
160,
1.037327422048955
],
[
170,
0.7633412011315205
],
[
180,
0.5877595405826099
],
[
190,
0.47749778362323897
],
[
200,
0.41159627786382225
],
[
210,
0.37742792640851447
],
[
220,
0.3680742656290259
],
[
230,
0.3806133747833281
],
[
240,
0.41505544117489446
],
[
250,
0.4736346362622639
],
[
260,
0.5601649753387602
],
[
270,
0.6792222408811097
],
[
280,
0.8350491071718911
],
[
290,
1.0303138289244231
],
[
300,
1.265230048316052
],
[
310,
1.53742319203767
],
[
320,
1.8427154536172317
],
[
330,
2.1762942860883667
],
[
340,
2.5337782759211103
],
[
350,
2.911664971061473
],
[
360,
3.307421753503953
],
[
370,
3.7193292856444446
],
[
380,
4.146244594235537
],
[
390,
4.587448903131629
],
[
400,
5.042509849691154
],
[
410,
5.511134227966776
],
[
420,
5.993123040440632
],
[
430,
6.488282050274889
],
[
440,
6.9963838662272915
],
[
450,
7.517116776789083
],
[
460,
8.05004038949368
],
[
470,
8.594609290619522
],
[
480,
9.150125410870388
],
[
490,
9.715733771567066
],
[
500,
10.290350923212843
],
[
510,
10.872924350399932
],
[
520,
11.462014952229945
],
[
530,
12.056252045120146
],
[
540,
12.65406806505639
],
[
550,
13.25383486348725
],
[
560,
13.853937013365158
],
[
570,
14.452586987474334
],
[
580,
15.048175608934477
],
[
590,
15.638999561844347
]
]
},
{
"name": "Hsp90",
"points": [
[
0,
199987
],
[
10,
199987.01139257645
],
[
20,
199987.92725012297
],
[
30,
199987.49201612629
],
[
40,
199986.3768968231
],
[
50,
199984.4701097741
],
[
60,
199981.77868851228
],
[
70,
199978.50106250207
],
[
80,
199973.17737856912
],
[
90,
199967.67181560592
],
[
100,
199962.96170732897
],
[
110,
199959.42409220873
],
[
120,
199956.9398706154
],
[
130,
199955.23506614793
],
[
140,
199954.06804023153
],
[
150,
199953.27015974175
],
[
160,
199952.72947932704
],
[
170,
199952.3699791406
],
[
180,
199952.1391926434
],
[
190,
199952.0011994723
],
[
200,
199951.93202327416
],
[
210,
199951.91633627447
],
[
220,
199951.9450957844
],
[
230,
199952.0138555088
],
[
240,
199952.12153950363
],
[
250,
199952.26944166052
],
[
260,
199952.46022331063
],
[
270,
199952.6967616148
],
[
280,
199952.98086677745
],
[
290,
199953.312107388
],
[
300,
199953.6872740336
],
[
310,
199954.10074846476
],
[
320,
199954.54573298272
],
[
330,
199955.01563817577
],
[
340,
199955.50509973225
],
[
350,
199956.01022719184
],
[
360,
199956.52846699988
],
[
370,
199957.0582707275
],
[
380,
199957.5987475066
],
[
390,
199958.14944767824
],
[
400,
199958.71019340664
],
[
410,
199959.28091747224
],
[
420,
199959.86161115728
],
[
430,
199960.4522352656
],
[
440,
199961.0526852794
],
[
450,
199961.6627434931
],
[
460,
199962.28204119916
],
[
470,
199962.9100833493
],
[
480,
199963.5462091709
],
[
490,
199964.18959061056
],
[
500,
199964.83917100824
],
[
510,
199965.49391336145
],
[
520,
199966.1524101775
],
[
530,
199966.81331795183
],
[
540,
199967.47511012963
],
[
550,
199968.1362101696
],
[
560,
199968.7950606589
],
[
570,
199969.44995504216
],
[
580,
199970.09936697423
],
[
590,
199970.7416966001
]
]
},
{
"name": "Hsp90-eNOS-CaM-Ca4",
"points": [
[
0,
1.037
],
[
10,
1.0362509243279376
],
[
20,
0.9260525851583584
],
[
30,
0.9809377602406544
],
[
40,
1.1186983736875336
],
[
50,
1.3693908122109917
],
[
60,
1.7586101722564031
],
[
70,
2.293255582085329
],
[
80,
3.3367787562541564
],
[
90,
4.710688854872607
],
[
100,
6.282946206763052
],
[
110,
7.921050125279871
],
[
120,
9.550147055462851
],
[
130,
11.143857481479458
],
[
140,
12.695599172443323
],
[
150,
14.191858280906583
],
[
160,
15.60116307304387
],
[
170,
16.878547986007717
],
[
180,
17.97564390420149
],
[
190,
18.850162733891757
],
[
200,
19.47216572864029
],
[
210,
19.826559605406977
],
[
220,
19.912892154117667
],
[
230,
19.74418592143302
],
[
240,
19.345688661445607
],
[
250,
18.75347905306667
],
[
260,
18.012246231449193
],
[
270,
17.17165123836256
],
[
280,
16.2813420306966
],
[
290,
15.385573554098222
],
[
300,
14.518830437306542
],
[
310,
13.703695497241773
],
[
320,
12.951327063807865
],
[
330,
12.26390831262472
],
[
340,
11.637918019578745
],
[
350,
11.06706771583105
],
[
360,
10.544309144710368
],
[
370,
10.062919822377982
],
[
380,
9.616962209997656
],
[
390,
9.201385352068222
],
[
400,
8.81197187420125
],
[
410,
8.445245112948074
],
[
420,
8.098350123799129
],
[
430,
7.768955678059855
],
[
440,
7.455158872733464
],
[
450,
7.155415614714443
],
[
460,
6.8684770958755
],
[
470,
6.593334036058232
],
[
480,
6.329174463671814
],
[
490,
6.07535139264749
],
[
500,
5.831358705449565
],
[
510,
5.596766121527353
],
[
520,
5.371266702764738
],
[
530,
5.15458403036849
],
[
540,
4.946503016321829
],
[
550,
4.746835642694624
],
[
560,
4.555406947628422
],
[
570,
4.372072928928517
],
[
580,
4.196666150859571
],
[
590,
4.029034432410082
]
]
},
{
"name": "Hsp90-p-eNOS-CaM-Ca4",
"points": [
[
0,
0.0089
],
[
10,
0.008853555657664254
],
[
20,
0.008118163563321169
],
[
30,
0.008483013932333763
],
[
40,
0.00939955580571233
],
[
50,
0.011025465915826848
],
[
60,
0.013472360439417151
],
[
70,
0.016755958054871956
],
[
80,
0.02309842451186273
],
[
90,
0.03182232477812728
],
[
100,
0.04285815969999343
],
[
110,
0.05607180811754712
],
[
120,
0.07138359545633916
],
[
130,
0.08878915855677444
],
[
140,
0.10829074233031796
],
[
150,
0.1296658168502235
],
[
160,
0.15224028746740867
],
[
170,
0.17484405937763187
],
[
180,
0.1959575378903999
],
[
190,
0.2139816508959743
],
[
200,
0.2275315942321557
],
[
210,
0.2356604657597297
],
[
220,
0.23797144550400032
],
[
230,
0.2346334804602035
],
[
240,
0.22632438322341636
],
[
250,
0.21411588322583144
],
[
260,
0.19931003030358307
],
[
270,
0.18324432678664676
],
[
280,
0.16710284597847497
],
[
290,
0.1517813941125428
],
[
300,
0.137832728319121
],
[
310,
0.12549421952930828
],
[
320,
0.11476697070903644
],
[
330,
0.1055109554752856
],
[
340,
0.09752543023663222
],
[
350,
0.0906032099269875
],
[
360,
0.08455752041561623
],
[
370,
0.07923149907693192
],
[
380,
0.07449778772836704
],
[
390,
0.07025463211773222
],
[
400,
0.06642105425042195
],
[
410,
0.06293261154525068
],
[
420,
0.05973784537454386
],
[
430,
0.056795386723243024
],
[
440,
0.05407183852631331
],
[
450,
0.051540055780586486
],
[
460,
0.04917782524523337
],
[
470,
0.04696688797615708
],
[
480,
0.0448920714672706
],
[
490,
0.042940750362979785
],
[
500,
0.041102307568937305
],
[
510,
0.039367744913196695
],
[
520,
0.03772938910904895
],
[
530,
0.036180611323054335
],
[
540,
0.034715631013086085
],
[
550,
0.03332931506249205
],
[
560,
0.03201715538861709
],
[
570,
0.0307750157780046
],
[
580,
0.02959911448985104
],
[
590,
0.028485988437123425
]
]
},
{
"name": "Hsp90-eNOS-CaM-Ca2",
"points": [
[
0,
10.98
],
[
10,
10.967164340907226
],
[
20,
10.184141623018418
],
[
30,
10.560313709147142
],
[
40,
11.508012030790438
],
[
50,
13.11202141154578
],
[
60,
15.34388185622648
],
[
70,
18.006321052812524
],
[
80,
22.175700405721848
],
[
90,
26.196273293874537
],
[
100,
29.242374561230385
],
[
110,
31.07400483985912
],
[
120,
31.88149216568344
],
[
130,
31.959760119607232
],
[
140,
31.55263266746083
],
[
150,
30.839314760982624
],
[
160,
29.961267114531225
],
[
170,
29.03800837525932
],
[
180,
28.16914101219492
],
[
190,
27.43181188940235
],
[
200,
26.879073373758903
],
[
210,
26.540723576211704
],
[
220,
26.425893526930818
],
[
230,
26.525893350461985
],
[
240,
26.816653686163892
],
[
250,
27.261062527389488
],
[
260,
27.812113284970017
],
[
270,
28.41760845301777
],
[
280,
29.02634750812087
],
[
290,
29.594628136901314
],
[
300,
30.091150685606625
],
[
310,
30.498811310895174
],
[
320,
30.81305187112178
],
[
330,
31.03807818323492
],
[
340,
31.182607243108183
],
[
350,
31.256694262076035
],
[
360,
31.269858592958524
],
[
370,
31.23032074594598
],
[
380,
31.1448813223917
],
[
390,
31.01902800120835
],
[
400,
30.85715253669627
],
[
410,
30.66280123034761
],
[
420,
30.438843257988847
],
[
430,
30.187655747471332
],
[
440,
29.91125303687348
],
[
450,
29.61140283078408
],
[
460,
29.28972733725011
],
[
470,
28.947732991582363
],
[
480,
28.586892371839653
],
[
490,
28.208677426470526
],
[
500,
27.814645332176973
],
[
510,
27.40625344273588
],
[
520,
26.985204802185255
],
[
530,
26.55310356251764
],
[
540,
26.111673388469217
],
[
550,
25.66265842279847
],
[
560,
25.20776737289435
],
[
570,
24.748826924871608
],
[
580,
24.287504055307977
],
[
590,
23.82552435567367
]
]
},
{
"name": "Hsp90-p-eNOS-CaM-Ca2",
"points": [
[
0,
0.106
],
[
10,
0.10581497795426448
],
[
20,
0.1014722197821112
],
[
30,
0.10343486139640257
],
[
40,
0.10870463423428546
],
[
50,
0.117407617804917
],
[
60,
0.12911386078255566
],
[
70,
0.14278005237099334
],
[
80,
0.16406564269976143
],
[
90,
0.18681680935752124
],
[
100,
0.20862211457007168
],
[
110,
0.22844960794890393
],
[
120,
0.2461606106616443
],
[
130,
0.2619217223228027
],
[
140,
0.27588149522900063
],
[
150,
0.28801636030621874
],
[
160,
0.2981698901620258
],
[
170,
0.306209525325561
],
[
180,
0.31215654137520826
],
[
190,
0.31621707896260254
],
[
200,
0.3187180047844822
],
[
210,
0.3199974346795863
],
[
220,
0.320307628763303
],
[
230,
0.3197681467228653
],
[
240,
0.318376409858268
],
[
250,
0.31606316364138926
],
[
260,
0.31277051345264323
],
[
270,
0.3085198681812284
],
[
280,
0.3034416800854703
],
[
290,
0.2977605582309619
],
[
300,
0.29174220205019097
],
[
310,
0.28563569981347486
],
[
320,
0.27963094211677975
],
[
330,
0.273846774827297
],
[
340,
0.2683385266348746
],
[
350,
0.26311902890752004
],
[
360,
0.2581756606672552
],
[
370,
0.25348436323506374
],
[
380,
0.2490171075706357
],
[
390,
0.244746147779417
],
[
400,
0.24064574363082689
],
[
410,
0.2366930757562304
],
[
420,
0.2328683999973813
],
[
430,
0.22915463356515825
],
[
440,
0.22553752058302076
],
[
450,
0.22200515127375536
],
[
460,
0.21854777534216996
],
[
470,
0.21515755340324283
],
[
480,
0.2118281914605027
],
[
490,
0.2085549297425603
],
[
500,
0.20533433498129375
],
[
510,
0.2021640412786113
],
[
520,
0.19904266963999193
],
[
530,
0.1959696745870547
],
[
540,
0.1929451705412099
],
[
550,
0.1899697139592891
],
[
560,
0.18704463224253012
],
[
570,
0.18417121087875848
],
[
580,
0.1813510163763766
],
[
590,
0.178585889358061
]
]
},
{
"name": "Hsp90-p-eNOS",
"points": [
[
0,
0.643
],
[
10,
0.645106838093677
],
[
20,
0.6293908504531283
],
[
30,
0.6311765481169845
],
[
40,
0.6521356044541353
],
[
50,
0.689344719974335
],
[
60,
0.7393856533638206
],
[
70,
0.7960063749265631
],
[
80,
0.8701607465281908
],
[
90,
0.9410702166367452
],
[
100,
0.993515005556091
],
[
110,
1.0245107392981945
],
[
120,
1.0374878202140896
],
[
130,
1.037141160734277
],
[
140,
1.0272526845833043
],
[
150,
1.01066375125018
],
[
160,
0.9898601399363104
],
[
170,
0.9673125056044146
],
[
180,
0.9454565891068588
],
[
190,
0.9264792504391226
],
[
200,
0.912090246465285
],
[
210,
0.9033848725950576
],
[
220,
0.9008141612639824
],
[
230,
0.9042212305933416
],
[
240,
0.9129135015782976
],
[
250,
0.925766037944301
],
[
260,
0.9413645953401631
],
[
270,
0.9581950407883946
],
[
280,
0.9748555668372896
],
[
290,
0.9902389227629984
],
[
300,
1.003636310858768
],
[
310,
1.0147374272458582
],
[
320,
1.0235472487870785
],
[
330,
1.0302629773749814
],
[
340,
1.0351642308837996
],
[
350,
1.0385345395335648
],
[
360,
1.0406252224481616
],
[
370,
1.041642560295546
],
[
380,
1.041749996431626
],
[
390,
1.0410746219234697
],
[
400,
1.039714740988766
],
[
410,
1.0377461132362302
],
[
420,
1.0352274088288145
],
[
430,
1.0322048006804967
],
[
440,
1.028714713427909
],
[
450,
1.0247867338887569
],
[
460,
1.0204453630242492
],
[
470,
1.0157119947576283
],
[
480,
1.0106060080262735
],
[
490,
1.0051457514947348
],
[
500,
0.9993488872487498
],
[
510,
0.9932343023412976
],
[
520,
0.9868204887756816
],
[
530,
0.9801278997971568
],
[
540,
0.9731777080461022
],
[
550,
0.9659923278564256
],
[
560,
0.9585955756155492
],
[
570,
0.951011548230063
],
[
580,
0.9432660593811796
],
[
590,
0.9353842420016686
]
]
},
{
"name": "Hsp90-eNOS",
"points": [
[
0,
0.083
],
[
10,
0.08331678661763485
],
[
20,
0.08147443520652173
],
[
30,
0.08153798097007676
],
[
40,
0.08405297824942701
],
[
50,
0.0886001988394369
],
[
60,
0.09474758529680712
],
[
70,
0.1017184782298296
],
[
80,
0.11071745586563649
],
[
90,
0.11941289504559333
],
[
100,
0.12587662385342346
],
[
110,
0.12972067163545042
],
[
120,
0.13135813778260164
],
[
130,
0.13136420996709414
],
[
140,
0.1302030069964096
],
[
150,
0.1282212885578825
],
[
160,
0.12572016832791905
],
[
170,
0.1229984084646384
],
[
180,
0.12035177247579044
],
[
190,
0.11804792488791846
],
[
200,
0.11629777869293932
],
[
210,
0.11523777179223171
],
[
220,
0.11492530004012412
],
[
230,
0.11534236260135727
],
[
240,
0.11640385504772524
],
[
250,
0.11797167532808304
],
[
260,
0.1198720349475627
],
[
270,
0.12191945900944846
],
[
280,
0.12394359174755856
],
[
290,
0.12581004678479524
],
[
300,
0.1274336032531718
],
[
310,
0.1287773813779818
],
[
320,
0.12984292151935692
],
[
330,
0.1306546213611413
],
[
340,
0.13124681800822188
],
[
350,
0.13165405228102983
],
[
360,
0.13190685913118416
],
[
370,
0.1320302818066525
],
[
380,
0.13204406953579662
],
[
390,
0.13196356714796434
],
[
400,
0.1318006440399103
],
[
410,
0.1315643840782587
],
[
420,
0.1312618068634404
],
[
430,
0.13089848795237324
],
[
440,
0.13047873876939334
],
[
450,
0.13000612098399486
],
[
460,
0.12948340462332836
],
[
470,
0.12891318752880562
],
[
480,
0.12829772335731685
],
[
490,
0.12763913957265785
],
[
500,
0.12693942508901088
],
[
510,
0.1262009865624998
],
[
520,
0.12542577085974385
],
[
530,
0.12461627029344208
],
[
540,
0.1237749566194323
],
[
550,
0.12290440870395644
],
[
560,
0.1220076580786499
],
[
570,
0.12108732992485402
],
[
580,
0.1201466301892535
],
[
590,
0.119188492682146
]
]
}
],
"title": "Koo2013 Shear-Stress Induced NO Production - eNOS activation chain",
"x_unit": "s"
},
"description": "How does eNOS assemble into its active complexes?",
"render": "timeseries"
},
{
"data": {
"series": [
{
"name": "Nitric oxide",
"points": [
[
0,
0
],
[
10,
222.3230317043277
],
[
20,
428.14321404482047
],
[
30,
638.0921649120539
],
[
40,
870.2899265998225
],
[
50,
1144.5929220100852
],
[
60,
1485.3553627045128
],
[
70,
1918.6737663779704
],
[
80,
2524.3636845543456
],
[
90,
3369.874163446685
],
[
100,
4495.533766311501
],
[
110,
5914.306865863319
],
[
120,
7622.32329214268
],
[
130,
9610.306155270731
],
[
140,
11868.6153259891
],
[
150,
14386.234579187598
],
[
160,
17147.399732198024
],
[
170,
20129.008135189106
],
[
180,
23299.85026213562
],
[
190,
26621.536488637124
],
[
200,
30050.552026108227
],
[
210,
33540.781085493894
],
[
220,
37046.023575328654
],
[
230,
40522.32569727326
],
[
240,
43930.099267204474
],
[
250,
47235.99711335101
],
[
260,
50414.39701891423
],
[
270,
53448.24928730977
],
[
280,
56329.05896104556
],
[
290,
59055.938522836965
],
[
300,
61633.91261756109
],
[
310,
64071.86314042616
],
[
320,
66380.56734598927
],
[
330,
68571.16072372656
],
[
340,
70654.16646566964
],
[
350,
72639.02412320976
],
[
360,
74533.96263620099
],
[
370,
76346.05775379192
],
[
380,
78081.3659341836
],
[
390,
79745.07702684832
],
[
400,
81341.6575629888
],
[
410,
82874.97650616903
],
[
420,
84348.41260106684
],
[
430,
85764.9437851427
],
[
440,
87127.22069159531
],
[
450,
88437.62802773454
],
[
460,
89698.33440913082
],
[
470,
90911.3349554746
],
[
480,
92078.48468075469
],
[
490,
93201.52729652374
],
[
500,
94282.1169472342
],
[
510,
95321.83849069024
],
[
520,
96322.21961318808
],
[
530,
97284.74451341775
],
[
540,
98210.86051333675
],
[
550,
99101.98405771662
],
[
560,
99959.50550404815
],
[
570,
100784.78954381328
],
[
580,
101579.17748004298
],
[
590,
102343.98501870026
]
]
}
],
"title": "Koo2013 Shear-Stress Induced NO Production - Nitric oxide production",
"x_unit": "s"
},
"description": "How quickly does nitric oxide accumulate?",
"render": "timeseries"
},
{
"data": {
"categories": [
"Nitric oxide",
"Calmodulin",
"Calmodulin Ca2 complex",
"Cytosolic calcium",
"Calmodulin Ca4 complex",
"Hsp90",
"eNOS-Cav-1",
"Hsp90-eNOS-CaM-Ca2"
],
"title": "Koo2013 Shear-Stress Induced NO Production - largest excursions during the run",
"values": [
102343.98501870026,
2146.7456111015827,
1946.281458484423,
954.2170407133552,
166.18980126143887,
36.0109138484695,
35.51357245808592,
21.775618496588812
]
},
"description": "Which observables shifted the most during the run?",
"render": "bar"
},
{
"data": {
"columns": [
"Question",
"Answer"
],
"rows": [
[
"What did this run track?",
"16 observables in Koo2013 Shear-Stress Induced NO Production"
],
[
"How long did it run?",
"590 s"
],
[
"Which observable changed the most?",
"Nitric oxide"
],
[
"Largest peak?",
"Hsp90"
]
],
"title": "What Happened"
},
"description": "What did this simulation actually show, in plain language?",
"render": "table"
}
]
}
]
}