Search found 6 matches
- Thu Jan 31, 2019 10:41 pm
- Forum: Other questions
- Topic: Segmentation Fault when calling BBSaveState.save_test()
- Replies: 3
- Views: 3909
Re: Segmentation Fault when calling BBSaveState.save_test()
Thanks very much for your help. As you suggested, I installed the latest version of NEURON (7.7.0). I also corrected the two issues you identified in the code: from neuron import h h.load_file("stdrun.hoc") pc = h.ParallelContext() pc.gid_clear() section = h.Section() pc.set_gid2node(0, pc...
- Fri Jan 25, 2019 2:17 am
- Forum: Other questions
- Topic: Segmentation Fault when calling BBSaveState.save_test()
- Replies: 3
- Views: 3909
Segmentation Fault when calling BBSaveState.save_test()
I would like to use BBSaveState to take a snapshot of the state of my parallel simulation, for use as starting conditions for further model runs. However, when I call BBSaveState.save_test(), a segmentation fault occurs: Segmentation fault: 11 My simulation is quite complicated. However, even the fo...
- Mon Sep 10, 2018 4:28 am
- Forum: Modeling networks
- Topic: Spurious voltage changes
- Replies: 5
- Views: 33354
Re: Spurious voltage changes
I have found some more curious results in a gap junction connected network using the linearmechanism class. The following link shows the results of running a network of 75 identical cells connected by gap junctions implemented by linearmechanism. Initial conditions were set by voltage clamping each ...
- Tue Jul 31, 2018 2:46 am
- Forum: Modeling networks
- Topic: Spurious voltage changes
- Replies: 5
- Views: 33354
Re: Spurious voltage changes
Thanks again for your help. I have implemented the gap junction using linearmechanism, which I understand should be equivalent to using the Linear Circuit Builder. With just two cells, I am unable to generate any unstable or chaotic behaviour. Even if the cells start unsynchronised, they very quickl...
- Wed Jul 25, 2018 11:36 pm
- Forum: Modeling networks
- Topic: Spurious voltage changes
- Replies: 5
- Views: 33354
Re: Spurious voltage changes
Hi Ted, Thanks for you reply. This makes a lot of sense. I developed the example in order to isolate an issue I was having with my full model, which consists of many thousands of gap junction-coupled cells. In the model each cell is identical, and receives the same stimulating current. At first, the...
- Sun Jul 22, 2018 3:48 am
- Forum: Modeling networks
- Topic: Spurious voltage changes
- Replies: 5
- Views: 33354
Spurious voltage changes
Hi, I am trying to resolve an issue using NEURON model gap junctions, in which spurious voltage changes occur in gap junction-connected sections. The following Python code demonstrates the issue. There are three identical sections, each receiving an identical depolarizing current. The first two sect...