File size: 1,408 Bytes
0558c72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
32
33
34
35
36
37
<?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.githubusercontent.com/NeuroML/NeuroML2/master/Schemas/NeuroML2/NeuroML_v2beta3.xsd"   
         id="HHCellNetwork">
    
    <include href="hhcell.cell.nml"/> <!-- Include the cell definition -->

    <!-- Short small current pulse input & short larger current pulse input -->
    <pulseGenerator id="pulseGen1" delay="5ms" duration="25ms" amplitude="0.05nA"/>

    <network id="HHCellNetwork">

        <notes>Network with a single cell based on the Hodgkin Huxley model with 1 input current</notes>
    
        <property tag="recommended_dt_ms" value="0.025"/>
        <property tag="recommended_duration_ms" value="50.0"/>
             
        <population id="hhpop" component="hhcell" type="populationList" size="1">
           <annotation>
                <property tag="color" value="1 0 0"/>
            </annotation>
            <instance id="0">
                <location x="0" y="0" z="0"/>
            </instance>
        </population>
        
        <inputList id="Input_0" component="pulseGen1" population="hhpop">
            <input id="0" target="../hhpop/0/hhcell" destination="synapses"/>
        </inputList>
        
    </network>

</neuroml>