List of placement strategies#

RandomPlacement#

Class: bsb.placement.RandomPlacement

ParallelArrayPlacement#

Class: bsb.placement.ParallelArrayPlacement

FixedPositions#

Class: bsb.placement.FixedPositions

This class places the cells in fixed positions specified in the attribute positions.

  • positions: a list of 3D points where the neurons should be placed. For example:

{
  "cell_types": {
    "golgi_cell": {
      "placement": {
        "class": "bsb.placement.FixedPositions",
        "layer": "granular_layer",
        "count": 1,
        "positions": [[40.0,0.0,-50.0]]
        }
    },
  }
}