Search found 40 matches

by Darshan
Tue Sep 25, 2018 5:23 am
Forum: Anatomically detailed models
Topic: Using Impedance Class for model with Ca accumulation
Replies: 8
Views: 15971

Re: Using Impedance Class for model with Ca accumulation

Ok. So, there is no change in cai in the model and it may not be the reason for the message. I will try find the source of error. Meanwhile, I will use a workaround for calculating transfer impedance similar to as discussed in the above posts: injecting current (1 nA) and recording the resulting (pe...
by Darshan
Mon Sep 24, 2018 2:14 pm
Forum: Anatomically detailed models
Topic: Using Impedance Class for model with Ca accumulation
Replies: 8
Views: 15971

Re: Using Impedance Class for model with Ca accumulation

Sorry for not being clear on the source of mod files. I obtained the cachan.mod and capmp.mod from C:\nrn\examples\nrniv\nmodl of my NEURON 7.6.2 setup. Also uploaded here: https://drive.google.com/drive/folders/1ZGvLL3qKvjmCe7klT9rwk6L93qY-xQuh?usp=sharing The SUFFIX in capmp.mod is capr. I don't h...
by Darshan
Mon Sep 24, 2018 12:12 pm
Forum: Anatomically detailed models
Topic: Using Impedance Class for model with Ca accumulation
Replies: 8
Views: 15971

Re: Using Impedance Class for model with Ca accumulation

Thanks Ted for the detailed explanation for the "Warning". I will look into my model for the source of that error. Below is the code I used for the toy model: load_file("nrngui.hoc") v_init=-65 create soma soma{ nseg =9 insert hh insert cachan insert capr } finitialize(v_init) ob...
by Darshan
Sat Sep 22, 2018 8:44 am
Forum: Anatomically detailed models
Topic: Using Impedance Class for model with Ca accumulation
Replies: 8
Views: 15971

Using Impedance Class for model with Ca accumulation

Hi Ted, I have a model with calcium accumulation mechanism. I wanted to measure transfer impedance at different locations of the cell using the Impedance class. While doing so I get a following error: cmplx_spFactor error: Singular The model does not have the extracellular and LinearMechanism. Accor...
by Darshan
Wed Aug 22, 2018 6:43 am
Forum: UNIX/Linux
Topic: NEURON 7.6.2 Source Code Compilation and Python versions
Replies: 4
Views: 14911

Re: NEURON 7.6.2 Source Code Compilation and Python versions

Hi Ted, I was able to compile the alpha version of the code successfully but with some warnings. I used python3 for the process. Some of the warnings were related to deprecated NumPy API: /home/mpiuser/.local/lib/python3.6/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:15:2: warning...
by Darshan
Tue Aug 21, 2018 4:55 am
Forum: UNIX/Linux
Topic: NEURON 7.6.2 Source Code Compilation and Python versions
Replies: 4
Views: 14911

NEURON 7.6.2 Source Code Compilation and Python versions

Hi, 1. I am trying to compile NEURON 7.6.2 source code on Ubuntu 18.04.1. I have got these files from https://neuron.yale.edu/ftp/neuron/versions/alpha/ : [ ] iv-19.tar.gz 2018-08-01 16:42 1.2M [ ] nrn-7.6.2.tar.gz 2018-08-15 13:27 7.8M (The source code at https://www.neuron.yale.edu/neuron/download...
by Darshan
Mon Jun 25, 2018 4:56 am
Forum: Anatomically detailed models
Topic: Balancing Ionic Concentration in ECF (and ICF) with two interacting cells
Replies: 1
Views: 10235

Balancing Ionic Concentration in ECF (and ICF) with two interacting cells

Hi, I am trying to achieve resting ionic concentration balance in the extracellular and the intracellular environment where 2 cells are closely apposed to each other. The changes in concentration also results in unstable RMP of the cells. The pas mechanism current which was inserted to make the rest...
by Darshan
Wed Jun 28, 2017 3:31 pm
Forum: Anatomically detailed models
Topic: 2 Cells Sharing and Changing Same ECF Concentrations
Replies: 4
Views: 9864

Re: 2 Cells Sharing and Changing Same ECF Concentrations

Thanks Adam! I will test this out and if I have any doubts I will get back to you.

Regards,
Darshan
by Darshan
Mon Jun 26, 2017 10:16 pm
Forum: Anatomically detailed models
Topic: 2 Cells Sharing and Changing Same ECF Concentrations
Replies: 4
Views: 9864

Re: 2 Cells Sharing and Changing Same ECF Concentrations

Thank you, Ted.

I will try the model with RxD.
by Darshan
Wed Jun 21, 2017 7:55 am
Forum: Anatomically detailed models
Topic: 2 Cells Sharing and Changing Same ECF Concentrations
Replies: 4
Views: 9864

2 Cells Sharing and Changing Same ECF Concentrations

Hi, I have 2 cells that share the same ECF. The currents through both the cells can change the ECF concentration of all the ions. I have enabled this sharing using pointers e.g. for ion X, the extracellular concentration [X]o can be changed by cell1 (del[X]o,1) and by cell2 (del[X]o,2) (The change i...
by Darshan
Tue Dec 20, 2016 11:01 pm
Forum: Adding new mechanisms and functions to NEURON
Topic: Spatial discretization for radial diffusion of Ca
Replies: 7
Views: 9331

Re: Spatial discretization for radial diffusion of Ca

Thank you, Ted for the quick reply! Sorry for the typo. Yes, it is 17%. Yes, caer is a state variable and not a constant. I have initialized it with a resting value in the INITIAL block. I will analyze the results by changing parameters and check to see if I get the desired output. I will also look ...
by Darshan
Tue Dec 20, 2016 6:40 am
Forum: Adding new mechanisms and functions to NEURON
Topic: Spatial discretization for radial diffusion of Ca
Replies: 7
Views: 9331

Re: Spatial discretization for radial diffusion of Ca

Hi, I have a 1-D shell calcium dynamics model with intracellular release and uptake mechanisms. I wanted to implement the volume distribution for cytoplasm and ER similar to what has been done in rxd.This can give me changes in the cytoplasm and ER calcium for different simulations. My model assumes...
by Darshan
Sat Dec 17, 2016 6:15 am
Forum: NEURON + Python
Topic: Implementing Nernst-Planck Eletrodiffusion Eqn for Gap Junct
Replies: 3
Views: 11362

Re: Implementing Nernst-Planck Eletrodiffusion Eqn for Gap J

Thank You, Ted! I was able to use the code bits you suggested in the gap junction model. For the exercise you suggested, if we have 2 parameters s1 (for permselectivity of K+) and s2 (for permselectivity of Na+) such that, s1=0.9, s2=0.1 (thus, s1+s2 =1), with following lines in the BREAKPOINT block...
by Darshan
Tue Dec 13, 2016 10:39 am
Forum: NEURON + Python
Topic: Implementing Nernst-Planck Eletrodiffusion Eqn for Gap Junct
Replies: 3
Views: 11362

Implementing Nernst-Planck Eletrodiffusion Eqn for Gap Junct

Hi, Is it possible to implement Nernst-Planck Electrodiffusion equation (https://en.wikipedia.org/wiki/Nernst%E2%80%93Planck_equation) using NEURON-Python or Rxd for communication between 2 cells via a gap junction? I was looking ways to make gap junction current change both the membrane potential (...
by Darshan
Sat May 28, 2016 6:29 am
Forum: Adding new mechanisms and functions to NEURON
Topic: Setting the basal level for Intracellular Calcium Concentrat
Replies: 22
Views: 21790

Re: Setting the basal level for Intracellular Calcium Concen

Thank you, Michael!

I did the changes in units and compared the results using the original and the transformed files (without LONGITUDINAL_DIFFUSION). The results were similar. The longitudinal diffusion also worked well when added to the model.

Regards,
Darshan