https://github.com/NikVard/memstim-hh
Tip revision: 51992fc0bf834e9bb5e3f6f31131384a9d16e476 authored by NikVard on 06 March 2023, 14:24:08 UTC
[FIX] Updated instructions
[FIX] Updated instructions
Tip revision: 51992fc
LFP_equations.py
"""
--------------------------------------------------------------------------------
Date: 19/04/2022
@author: Nikolaos Vardalakis
--------------------------------------------------------------------------------
Implementation Notes
--------------------------------------------------------------------------------
| 1: Calculating LFPs is done by averaging the membrane potential per group in each area
| 2: We separate E/I groups to get individual signals
"""
pop_LFP_eqs = '''
LFP_E : volt
LFP_I : volt
'''
syn_E_LFP_eqs = '''
LFP_E_post = v_pre / N_incoming : volt (summed)
'''
syn_I_LFP_eqs = '''
LFP_I_post = v_pre / N_incoming : volt (summed)
'''
