opensourcebrain/HodgkinHuxleyTutorial
0
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_v2beta4.xsd" 6 id="HHTutorial">7 8 <include href="hhneuron.cell.nml"/> <!-- Include the cell definition -->9 10 11 <!-- Short small current pulse input & short larger current pulse input -->12 <pulseGenerator id="IClamp" delay="5ms" duration="25ms" amplitude="0.002nA"/>13 14 <!-- A voltage clamp with 3 clamp levels. Initially set to active=0, i.e. turned off! -->15 <voltageClampTriple id="vClamp" 16 active = "0"17 delay="10ms" 18 duration="30ms"19 conditioningVoltage="-63.77mV" 20 testingVoltage="10mV" 21 returnVoltage="-63.77mV" 22 simpleSeriesResistance="1e4ohm"/>23 24 <network id="HHTutorial">25 26 <notes>Network with a single cell based on the Hodgkin Huxley model with 1 input current (initially enabled) and 1 voltage clamp (initially disabled)</notes>27 28 <population id="hhpop" component="hhneuron" type="populationList" size="1">29 <annotation>30 <property tag="color" value="1 0 0"/>31 </annotation>32 <instance id="0">33 <location x="0" y="0" z="0"/>34 </instance>35 </population>36 37 <inputList id="IClampInput" component="IClamp" population="hhpop">38 <input id="0" target="../hhpop/0/hhneuron" destination="synapses"/>39 </inputList>40 41 <inputList id="VClampInput" component="vClamp" population="hhpop">42 <input id="0" target="../hhpop/0/hhneuron" destination="synapses"/>43 </inputList>44 45 </network>46 47</neuroml>48 49 