FEM modeling for tDCS

来源:互联网 发布:wps数据透视表教程 编辑:程序博客网 时间:2024/06/09 16:00
  • 对于 tDCS 电流在大脑中的建模,主要是靠解决下面这个等式来的:
    MU=I

    • M 是tDCS的forward matrix
    • I 是injected current vector
    • U 是在已知以上输入电流情况下,要求解的potential vector
    • M combines volume conduction properties (FEM stiffness matrix) and electrical boundary conditions, including the complete electrode model to simulate current injection
      (σu)=0,(xΩ)

      u+zlσun=Ul,(onΩel,xel)

      elσun=Il(l=1,2,,L)

      σun=0,(xΩLl=1el)
    • In more detail, M is composed of the regular FEM stiffness (AN×N, with N representing the number of FEM nodes) and additional electrical boundary conditions specified as submatrices A2,B,C (BN×L,CL×L, with L representing the number of electrodes)
    • M is composed such as:
      M=(ABBTC)

      (ABBTC)(UnUe)=I=(InIe)

      A(i,j)=A1(i,j)+A2(i,j)=ΩσϕiϕjdΩ+l=1Lel1zlϕiϕjdΩel

      B(i,l)=1zlelϕidΩel

      C(i,l)=1zleldΩel
    • MRN+L×N+L,A1,A2RN×N,BRN×L,CRL×L
    • Un represents potentials at nodes, Ue represents potentials at electrodes, Ie is currents at electrodes, ϕ denotes linear basis functions, zl resistive electrode impedance.
    • -

Reference:
https://www.sci.utah.edu/images/software/SCIRun/ElectricalBrainStimulationTutorial.pdf

原创粉丝点击