diff --git a/docs/SONATA_DEVELOPER_GUIDE.md b/docs/SONATA_DEVELOPER_GUIDE.md index c7a2b5a..fa76ba1 100644 --- a/docs/SONATA_DEVELOPER_GUIDE.md +++ b/docs/SONATA_DEVELOPER_GUIDE.md @@ -844,6 +844,59 @@ The "run" block specifies some global parameters of the simulation run, such as "spike_threshold": -15, }, +
| Key | +Description | +Type | +Required | +Default | +
| tstart | +Start time of the simulation. | +float | +False | +0.0 | +
| tstop | +Stop time of the simulation. | +float | +True | ++ |
| dt | +Time step size. | +float | +True | ++ |
| dL | +For compartmental cell models, used to define the minimum segment size of each given section. For a section of length L > dL, the section will be partitioned into 1 + 2 \* int(section.L / (2\*dL)) segments. | +float | +False | ++ |
| spike_threshold | +The default membrane potential value at which it can be assumed an action potential can be recorded. | +float | +False | ++ |
| block_step_size | +Used by the simulator to determine after how many time steps should it save the simulation and results (assume such behavior is available). | +int | +False | ++ |