In NEURON .MOD files what is the order of operations of the sections?
问题 In what order do the commands in NEURON .MOD/NMODL file sections get executed? Specifically, within these blocks: DERIVATIVE, BREAKPOINT and NET_RECEIVE. 回答1: For every time-step, the order of execution is as follows: NET_RECEIVE : If there is net_send() an event that targets this mechanism, lines here are executed first. Skipped otherwise. Lines in BREAKPOINT : The SOLVE ... METHOD line is ignored. All lines after SOLVE are executed. With a printf() statement, you would see two calls.