CoolFace
Apppublic

opensourcebrain/HodgkinHuxleyTutorial

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
HHCellNetwork.net.nml25 linesDownload Raw Back to Source
1<?xml version="1.0" encoding="UTF-8"?>2 3<neuroml xmlns="http://www.neuroml.org/schema/neuroml2"4         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"5         xsi:schemaLocation="http://www.neuroml.org/schema/neuroml2  https://raw.githubusercontent.com/NeuroML/NeuroML2/master/Schemas/NeuroML2/NeuroML_v2beta3.xsd"   6         id="HHCellNetwork">7    8    <include href="hhcell.cell.nml"/> <!-- Include the cell definition -->9 10    <!-- Short small current pulse input & short larger current pulse input -->11    <pulseGenerator id="pulseGen1" delay="100ms" duration="100ms" amplitude="0.10nA"/>12    <pulseGenerator id="pulseGen2" delay="300ms" duration="100ms" amplitude="0.35nA"/>13 14    <network id="HHCellNetwork">15 16        <notes>Network with a single cell based on the Hodgkin Huxley model with 2 input currents</notes>17    18        <population id="hhpop" component="hhcell" size="1"/>19        <explicitInput target="hhpop[0]" input="pulseGen1"/>20        <explicitInput target="hhpop[0]" input="pulseGen2"/>21    </network>22 23</neuroml>24 25