-
Notifications
You must be signed in to change notification settings - Fork 0
/
nml.net.mustache
31 lines (25 loc) · 1.08 KB
/
nml.net.mustache
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<neuroml xmlns="http://www.neuroml.org/schema/neuroml2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.neuroml.org/schema/neuroml2 https://raw.github.com/NeuroML/NeuroML2/development/Schemas/NeuroML2/NeuroML_v2beta3.xsd" id="net">
{{#nml_mechanisms}}
<include href="{{name}}.channel.nml"/>
{{/nml_mechanisms}}
{{#passive}}
<include href="{{name}}.channel.nml"/>
{{/passive}}
<include href=".sccct.cell.nml"/>
{{#inputs}}
<pulseGenerator id="{{id}}" delay="{{delay}} ms" duration="{{dur}} ms" amplitude="{{amp}} uA"/>
{{/inputs}}
<network id="net" type="networkWithTemperature" temperature="{{run.temp}} degC">
<population id="pop" component="cell" type="populationList" size="1">
<instance id="0">
<location x="0" y="0" z="0"/>
</instance>
</population>
{{#inputs}}
<inputList id="Clamps" component="{{id}}" population="pop">
<input id="{{input_id}}" target="../pop/0/cell" destination="synapses"/>
</inputList>
{{/inputs}}
</network>
</neuroml>