https://github.com/NikVard/memstim-hh
Tip revision: 563f808f6c4f40630f5b8876cc0b440cdf4159e8 authored by NikVard on 22 September 2023, 08:19:24 UTC
[UPDATE] Updated default figure names in scripts
[UPDATE] Updated default figure names in scripts
Tip revision: 563f808
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)
'''
