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")
modelDefine a Network
# TODO: load connectome, attach modelConfigure & Run
from tvbo import SimulationExperiment
# TODO: build experiment, run, show resultsVisualize Results
# TODO: result.plot()Next Steps
- Defining Dynamical Systems — define your own models
- Defining Networks — build custom brain networks
- Simulation Experiments — advanced experiment configuration