This file is indexed.

/usr/share/nrn/demo/release/nacaex.mod is in neuron 7.5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
TITLE sodium calcium exchange
: taken from jwm simulation

NEURON {
	SUFFIX nacax
	USEION ca READ eca WRITE ica
	USEION na READ ena WRITE ina
	RANGE k, ica, ina, ex
}

UNITS {
	(mA) = (milliamp)
	(mV) = (millivolt)
}

PARAMETER {
	k = .0002 (mho/cm2) <0,1e6>: at 6.3 deg. Q10 of 3
}

ASSIGNED {
	celsius (degC)
	v (mV)
	eca (mV)
	ena (mV)
	ica (mA/cm2)
	ina (mA/cm2)
	ex (mV)
}

LOCAL s_celsius, Q

BREAKPOINT {LOCAL kca
	if (s_celsius*1(degC) != celsius) {
		s_celsius = celsius
		Q = 3^((celsius - 6.3)/10 (degC))
	}		
	ex = 2*ena - eca
	ina = 2*k*Q*(v - ex)
	ica = -ina/2
}