Getting Started

End-to-end quickstart: from model to simulation in 5 minutes

Placeholder

This page is under construction.

Overview

This tutorial walks through a complete TVBO workflow — loading a neural mass model, defining a brain network, configuring a simulation experiment, running it, and inspecting the results.

Load a Model

from tvbo import Dynamics

model = Dynamics.from_db("JansenRit")
model

Define a Network

# TODO: load connectome, attach model

Configure & Run

from tvbo import SimulationExperiment

# TODO: build experiment, run, show results

Visualize Results

# TODO: result.plot()

Next Steps