https://github.com/NikVard/memstim-hh
Tip revision: 6f5b0c54a39579fc0fa992406d0d56cd383361cb authored by Nikolaos Vardalakis on 02 March 2023, 17:09:40 UTC
[DEL] Deleted old license
[DEL] Deleted old license
Tip revision: 6f5b0c5
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)
'''
