Resources

Download clinical resources, technical documentation, and explore our developer API to integrate FlowSight into your workflow.

Download Resources

Clinical and technical resources to help you evaluate and implement FlowSight

Clinical One-Pager
PDF1.2 MB

Value proposition, indications, and what to expect when implementing FlowSight in your department.

Download
Technical Brief
PDF3.4 MB

Data inputs, outputs, and validation approach. Comprehensive technical overview for clinical teams.

Download
Sample Report
PDF2.1 MB

Before/after scenario comparison with branch metrics and suggested treatment plan.

Download

Developer Snippet

Minimal JSON structure showing vessel graph format and expected outputs

JSON Input Format
{
  "nodes": [
    {
      "id": "inlet_1",
      "type": "inlet",
      "position": [0, 0, 0],
      "diameter": 5.2
    },
    {
      "id": "branch_1", 
      "type": "branch",
      "position": [12.4, 3.1, -1.8],
      "diameter": 3.8
    },
    {
      "id": "outlet_1",
      "type": "outlet",
      "position": [24.7, 6.2, -3.5],
      "diameter": 2.1
    }
  ],
  "edges": [
    {
      "source": "inlet_1",
      "target": "branch_1",
      "length": 13.2
    },
    {
      "source": "branch_1", 
      "target": "outlet_1",
      "length": 14.8
    }
  ],
  "inlet": {
    "pressure": 95,
    "flow_rate": 240
  },
  "outlets": {
    "outlet_1": {
      "rcr": {
        "R1": 0.8,
        "C": 0.012,
        "R2": 2.4
      }
    }
  },
  "outputs": [
    "pressure_per_node",
    "flow_per_node", 
    "territory_aggregates"
  ]
}