https://github.com/brian-team/gsoc2016
Google Summer of Code project 2016 (Importing and exporting simulator-independent model-descriptions with the Brian simulator)
https://github.com/brian-team/gsoc2016
Last synced: 10 months ago
JSON representation
Google Summer of Code project 2016 (Importing and exporting simulator-independent model-descriptions with the Brian simulator)
- Host: GitHub
- URL: https://github.com/brian-team/gsoc2016
- Owner: brian-team
- Created: 2016-05-04T10:13:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-23T15:46:05.000Z (over 9 years ago)
- Last Synced: 2025-01-12T16:11:13.740Z (12 months ago)
- Language: Python
- Size: 103 KB
- Stars: 1
- Watchers: 5
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gsoc2016
Google Summer of Code project 2016 (Importing and exporting simulator-independent model-descriptions with the Brian simulator)
### brian2lems
The use of exporter to LEMS/NeuroML2 is very straightforward. Just set new device `neuroml2` and specify the name of the output XML file.
```python
from brian2 import *
import brian2lems
set_device('neuroml2', filename="nml2model.xml")
################
# Brian2 code #
################
```
More details you may find in user or developer documentation.