SlideShare a Scribd company logo
1 of 77
William Yang, Second Sight Summer Intern 2016
Supervisor: Dr. David Zhou
1
2
Motivation and Purpose
 Understand how stimulation strategies
and electrode spacing relate to the
shape of voltage distributions and
electric fields in order to inform and
improve future innovations
3
Voltage and Electric Field
 𝐸 = −𝛻𝑉
 𝐸𝑥, 𝐸𝑦, 𝐸𝑧 = −
𝑑𝑉
𝑑𝑥
,
𝑑𝑉
𝑑𝑦
,
𝑑𝑉
𝑑𝑧
 The strength of the electric field must take into
account all components of the electric field
𝑬
𝐸𝑥 𝑖 = −dV/dx
𝐸𝑦 𝑗 = −dV/dy
+x
+y
4
Voltage/Electric Field and
Activating Function (AF)
 The activating function is the second derivative
of voltage in the direction of the neuron fiber
(Rattay 1986, Litvak 2007, Falcone 2011)
V-pp
Neuron
AF =
𝑑2 𝑉𝑝𝑝
𝑑𝑥2
+x
+y
5
More on Activating Function
 If the electrodes are simplified to point
electrodes, the activating function can be
modeled by the following equation, for a
given point electrode at point (u,v,w):
Using this equation, one can obtain the discrete AF in space by
plugging in a discrete spatial voltage distribution for each
electrode and summing the AF’s
𝐴𝐹 𝑥, 𝑦, 𝑧 = 𝑉 𝑥, 𝑦, 𝑧
3𝑧
2((𝑥 − 𝑢)2+(𝑦 − 𝑣)2+(𝑧 − 𝑤)2)2
−
1
(𝑥 − 𝑢)2+(𝑦 − 𝑣)2+(𝑧 − 𝑤)2
6
Derivation of AF using
equations from Falcone 2011:
Equation 1: 𝐴𝐹 𝑥, 𝑦, 𝑧, 𝐼 =
ρ𝐼
4π
3𝑧
2(𝑥2+𝑦2+𝑧2)5/2 −
1
(𝑥2+𝑦2+𝑧2)3/2
Equation 2: 𝑉 𝑥, 𝑦, 𝑧, 𝐼 =
ρ𝐼
4π 𝑥2+𝑦2+𝑧2
Equation 1 can be factored to obtain:
𝐴𝐹 𝑥, 𝑦, 𝑧, 𝐼 =
ρ𝐼
4π 𝑥2 + 𝑦2 + 𝑧2
3𝑧
2(𝑥2 + 𝑦2 + 𝑧2)2
−
1
𝑥2 + 𝑦2 + 𝑧2
The factored expression can be replaced by V(x,y,z,I) from Equation 2:
𝐴𝐹 𝑥, 𝑦, 𝑧 = 𝑉 𝑥, 𝑦, 𝑧
3𝑧
2(𝑥2 + 𝑦2 + 𝑧2)2
−
1
𝑥2 + 𝑦2 + 𝑧2
Where ρ is resisitivity, 𝐼 is current, and x, y, and z define the location of
a point relative to a point electrode at (0,0,0)
7
8
Experimental Setup
Stimulator
Coil
PC Running
ADAQA
VPU
External
Coil
Oscilloscope
Measuring
Voltage
Stimulation Electrode Array
Return Electrode
Petri Dish w/ 10 mM PBS
PC moving
stepper motor
and recording
voltage
measurements
Wireless RF Link
Micro-Probe
Stepper
Motor
9
Experimental Setup
10
Micro-Probe
Stepper Motor
Test Array
Array surface and tip of probe submerged in PBS Solution
+z
+y
+x
Experimental Setup
11
Micro-Probe
Stepper Motor
Test Array
Array surface and tip of probe submerged in PBS Solution
+z
+y
+x
Experimental Setup
12
Micro-Probe
Stepper Motor
Test Array
Array surface and tip of probe submerged in PBS Solution
+z
+y
+x
Data Acquisition Software
 Previous acquisition software
 WinCommander to manually control the microprobe
stepper motor
 LabVIEW software to record voltage measurements
 Phantom to automate mouse clicking of
WinCommander controls and record-voltage push
buttons in LabVIEW
 New acquisition software uses only one
LabVIEW program that automates stepper
motor movement and voltage recording
 Enables automated 1D, 2D and 3D scans
 Saves time, easier to use
13
Data Acquisition
14
Electrode Array Numbering
1234
8
9
13
765
1112
1516
10
14+x
+y
15
Data Processing for 2D XZ
Scans
 % Initialize Vpp before running the script. Vpp contains the scan of
Vpp
 % values. The script rearranges the Vpp data ready to be plotted in 3
 % Space. It also gives the x and z components of the electric field

 % Initialize the matrix that will contain the Vpp data. It will be
called
 % "VppGrid"
 x = 0:.02:4;
 z=0:.05:.5;
 [X,Z] = meshgrid(x,z);

 % Insert Vpp data into VppGrid
 VppGrid = X';
 VppGrid(1:end) = Vpp(1:end);
 VppGrid = VppGrid';

 % Take the gradient to find the X and Z components of the electric
field
 [Ex,Ez] = gradient(VppGrid,X',Z);
 Ex = -1*Ex;
 Ez = -1*Ez;
16
Resulting Vpp Matrix for XZ
Scans
+x
+z
17
2-D XY Scan
18
AF
…
E1, (u1,v1,w1)
E2, (u2,v2,w2)
E3, (u3,v3,w3)
Ei, (ui,vi,wi)
19
Data Processing for 3D
Scans
 x = xLim(1):xStep:xLim(2);
 y = yLim(1):yStep:yLim(2);
 z = zLim(1):zStep:zLim(2);

 [X,Y,Z] = meshgrid(x,y,z);

 gridDimensions = size(X);

 VppGrid =
zeros(gridDimensions(2),gridDimensions(1),gridDimensions(3));
 VppGrid(1:end) = Vpp(1:end);
 VppGrid = permute(VppGrid, [2,1,3]);

 [Ex,Ey,Ez] = gradient(VppGrid, xStep, yStep, zStep);
 Ex = -1*Ex;
 Ez = -1*Ez;
 Ey = -1*Ey;
20
Data Processing Cont’d
 Peak-to-peak voltages corresponding to
biphasic pulses beginning with the
cathodic phase were assigned as “+”
 Anodic phase-leading signals were
assigned as “-”
+Vpp -Vpp
21
*All current pulses in the experiments have pulse widths of .5ms at 120 Hz
Wave Form Properties
22
23
+.1 mm
24
+.1mm
25
+ .1mm
Voltage Distribution, Electric
Fields, and AF Shapes
 The voltage, electric field, and activating function follow the
same shape given a stimulation pattern
 Since the E Field and AF follow the same shape as the
Vpp distribution, we can use any one of the 3 to
visualize the shape of the stimulation signal
26
Voltage Sum
0
0.005
0.01
0.015
0.02
0.025
-2 -1 0 1 2
Vpp(V)
X Distance (mm)
Monopolar Vpp Distribution
Vpp at Z = 100 um
E6: 50 uA, Cathodic
Pulse First
E11: 0 uA
0
0.005
0.01
0.015
0.02
0.025
-2 -1 0 1 2
Vpp(V)
X Distance (mm)
Monopolar Vpp Distribution
Vpp at Z = 100um
E6: 0 uA
E11: 50 uA, Cathodic
Pulse First
0.015
0.02
0.025
0.03
0.035
0.04
0.045
-2 -1 0 1 2
Vpp(V)
X Distance (mm)
Sum of Monopolar Vpp Distributions
Vpp at Z = 100 um
E6: 50uA, Cathodic Pulse
First
E11: 50uA, Cathodic Pulse
First
27
0.015
0.02
0.025
0.03
0.035
0.04
0.045
0.05
-2 -1.5 -1 -0.5 0 0.5 1 1.5 2
Vpp(V)
X Distance (mm)
Calculated (Summed) Monopolar Vpp Distribution
Vpp at Z = 100 um
E6: 50uA, Cathodic Pulse First
E11: 50uA, Cathodic Pulse First
28
0.015
0.02
0.025
0.03
0.035
0.04
0.045
0.05
-2 -1.5 -1 -0.5 0 0.5 1 1.5 2
Vpp(V)
X Distance (mm)
Measured Monopolar Vpp Distribution
Vpp at Z = 100um
E6, 50uA, Cathodic Pulse First
E11, 50 uA, Cathodic Pulse First
29
Summing Voltages
 When multiple electrodes are on, the resulting
voltage distribution in space is equal to the sum of
the voltages coming from each electrode
0.015
0.02
0.025
0.03
0.035
0.04
0.045
0.05
-2 -1 0 1 2
Vpp(V)
X Distance (mm)
Measured Monopolar Vpp
Distribution
0.015
0.02
0.025
0.03
0.035
0.04
0.045
0.05
-2 -1 0 1 2
Vpp(V)
X Distance (mm)
Calculated Monopolar Vpp
Distribution
30Raw Data
Signal Focusing
31
Focusing Stimulation
Patterns
Monopolar Control
Control 1: 50 uA Amplitude
Control 2: 20 uA Amplitude
Control 3: 100 uA Amplitude
+x
+y
32
Focusing Stimulation
Patterns
Tripolar Focusing
Middle Electrode: 100uA Amplitude
Side Electrodes: 50uA Amplitude
+x
+y
33
Focusing Stimulation
Patterns
Tripolar Focusing
Middle Electrode: 200uA Amplitude
Side Electrodes: 100uA Amplitude
+x
+y
34
Focusing Stimulation
Patterns
Pentapolar Focusing
Middle Electrode: 100uA Amplitude
Side Electrodes: 25uA Amplitude
+x
+y
35
Focusing Stimulation
Patterns
Pentapolar Focusing
Middle Electrode: 200uA Amplitude
Side Electrodes: 50uA Amplitude
+x
+y
36
Quantifying Peak Width and
Height
V-pp
Peak Width
75% of peak Vpp
37
Peak Height
0 V
Relative Vpp Peak Widths
Mean Stdev (n = 3)
Monopolar 1 0
Tripolar 0.25 0.028
Pentapolar 0.41 0.031
Relative Peak Width in X Direction
Mean Stdev (n = 3)
Monopolar 1 0
Tripolar 0.33 0.036
Pentapolar 0.37 0.053
Relative Peak Width in Y Direction
38Spreadsheet Data
Relative Vpp Peak Heights
Mean Relative
Height Stdev (n = 3)
Monopolar (100 uA) 1 0
Monopolar (50 uA) 0.51 0.0057
Monopolar (20 uA) 0.20 0.0093
Tripolar (50 uA ↓, 100 uA ↑, 50 uA ↓) 0.20 0.0077
Pentapolar (100 uA ↑, 25 uA ↓ 4x) 0.20 0.0093
Tripolar (100 uA ↓, 200 uA ↑, 100 uA ↓) 0.43 0.0048
Pentapolar (200 uA ↑, 50 uA ↓ 4x) 0.48 0.014
39Spreadsheet Data
Spread and Peak
Comments
 Tripolar and Pentapolar stimulation focus current
in the X and Y directions
 Tripolar focuses the current better than Pentapolar
in the X direction
 Tripolar and Pentapolar have similar current
spread in the Y direction, but these results may be
due to experimental error
 Tripolar and Pentapolar have peaks that are ~20%
of the monopolar
40
Signal Steering
41
Steering Strategy #1
50 uA Amplitude, 120 Hz, .5 ms PW
+x
+y
42
Steering Strategy #1
43
+.05 mm
Steering Strategy #1
44
+.05mm
Steering Strategy #1
45
+ .05 mm
Steering Strategy #1
Comments
 The E Field and AF follow the same
shape as Vpp
 None of the signals peak in the space
between the electrodes given the test
conditions
 The signal can peak in the middle if the
electrodes are close enough
46
Steering Strategy #2
120 Hz, .5 ms PW
Middle Electrode: 100uA Amplitude
Left Electrode: 75uA Amplitude
Right Electrode: 25uA Amplitude
+x
+y
47
Steering Strategy #2
48Spreadsheet Data
-0.01
-0.005
0
0.005
0.01
0.015
-2.5 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 2.5
Vpp(V)
X Distance (mm)
Asymetric Tripolar Vpp Curve
Asymetric Tripolar Vpp, Probe Height = 50um
E6 25uA Anodic Pulse First
E11 100uA Cathodic Pulse First
E15 25uA Anodic Pulse First
0.015
0.02
0.025
0.03
0.035
0.04
0.045
-2.5 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 2.5
Vpp(V)
X Distance (mm)
Monopolar Vpp Curve
Asymetric Tripolar Vpp, Probe Height = 50um
E6 0uA
E11 100uA Cathodic Pulse First
E15 0uA
Peak occurs at x = .04 mm
Peak occurs at x = -0.02 mm
Steering Strategy #3
50 uA Amplitude, 120 Hz, .5 ms PW
+x
+y
49
Steering Strategy #3
0
0.005
0.01
0.015
0.02
0.025
-2.5 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 2.5
Vpp(V)
X Distance (mm)
Monopolar Vpp Distribution Vpp at Z = 100um
E6: 0 uA
E11: 50 uA, Cathodic Pulse First
-0.006
-0.004
-0.002
0
0.002
0.004
0.006
0.008
-2.5 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 2.5
Vpp(V)
X Distance (mm)
Observed Bipolar Vpp Distribution Vpp at Z = 100um
E6, 50uA, Anodic Pulse First
E11, 50 uA, Cathodic Pulse
First+Sheet1!$A$3
Peak occurs at
x = .08 mm
Peak occurs at
x = .01 mm
50Spreadsheet Data
Current Steering Comments
 Current is not necessarily “steered”
additively. This is possible only when the
electrodes are close (i.e. Strategy 1)
 May be possible through subtractive
strategies (i.e. Strategies 2 and 3)
 Limited current steering effects
 Unclear how much the peak height is affected
 The extent to which the current is steered for
strategies 2 and 3 is inconclusive without
repeated experiments
51
Electrode Spacing
52
Peak Fusion
 At various heights above the array,
determine the spacing between two
electrodes at which the peaks fuse
50
uA
50
uA
L
120 Hz, .5 ms PW
53
Peak Fusion
 At various heights above the array,
determine the spacing between two
electrodes at which the peaks fuse
V-pp 1 V-pp 2
L
54
Peak Fusion
 At various heights above the array,
determine the spacing between two
electrodes at which the peaks fuse
V-pp 1 V-pp 2
L
55
Peak Fusion
 At various heights above the array,
determine the spacing between two
electrodes at which the peaks fuse
Critical L
V-pp 1 + 2
56
“Critical L” vs. Height Above
Array
y = 0.0028x + 0.0587
R² = 0.9897
0
0.2
0.4
0.6
0.8
1
1.2
1.4
1.6
1.8
2
0 100 200 300 400 500 600 700
ElectrodeCenter-to-CenterSpacingatWhichPeaksFuse
(mm)
Z Distance Away from Electrode Surface (um)
50 uA
100 uA
150 uA
200 uA
Linear (100 uA)
57Spreadsheet Data
58
+.05 mm
59
+.05mm
Distinguishable Peaks
 At various heights above the array, determine
the spacing between two electrodes at which
the signals become two peaks
L
V-pp 1 + 2
60
Distinguishable Peaks
 At various heights above the array, determine
the spacing between two electrodes at which
the signals become two peaks
V-pp 1 V-pp 2
L
61
Distinguishable Peaks
 At various heights above the array, determine
the spacing between two electrodes at which
the signals become two peaks
V-pp 1 V-pp 2
Critical L
h1
h2
ℎ1 − ℎ2 ≥ 2𝑚𝑉
62
Distinguishable Peaks Example
63
h2
h1
h1-h2 = 2mV
Critical L for Distinguishable
Peaks vs. Z Distance
64
y = 8.04x + 0.248
R² = 0.9977
0
0.5
1
1.5
2
2.5
0 0.05 0.1 0.15 0.2 0.25 0.3
CriticalL(mm)
Z Distance Above Electrode Surface (mm)
50 uA
Linear (50 uA)
Spreadsheet Data
Critical L for Distinguishable
Peaks vs. Z Distance
y = 4.98x + 0.2403
R² = 0.994
0
0.5
1
1.5
2
2.5
0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4
CriticalL(mm)
Z Distance Above Electrode Surface (mm)
100 uA
Linear (100 uA)
65Spreadsheet Data
Critical L for Distinguishable
Peaks vs. Z Distance
66
y = 4.8971x + 0.2898
R² = 0.9933
0
0.5
1
1.5
2
2.5
0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4
CriticalL(mm)
Z Distance Above Electrode Surface (mm)
200 uA
Linear (200 uA)
Spreadsheet Data
Fused Critical L’s and
Distinguishable Critical L’s
67
y = 0.0028x + 0.0587
R² = 0.9897
y = 0.008x + 0.248
R² = 0.9977
y = 0.0051x + 0.185
R² = 0.9912
0
0.5
1
1.5
2
2.5
0 100 200 300 400 500 600 700
ElectrodeCenter-toCentersSpacingat(mm)
Z Distance Away from Electrode Surface (um)
50 uA Fused
100 uA Fused
150 uA Fused
200 uA Fused
50 uA Distinguishable
100 uA Distinguishable
200 uA Distinguishable
Linear (100 uA Fused)
Linear (50 uA Distinguishable)
Linear (100 uA Distinguishable)
Fused Region
Distinguishable
Peaks Region
Spreadsheet Data
In-Between
Fused and
Distinguishable
Tripolar Focusing Electrode
Spacing
 Determine the relationship between electrode spacing and
peak width in tripolar focusing
 Determine the relationship between electrode spacing and
peak height in tripolar focusing
 Peak heights and widths are normalized to the Voltage
distribution of monopolar current pulses
50
uA
100
uA
50
uA 120 Hz, .5 ms PW
68
Tripolar Focusing Electrode
Spacing
V-pp
L L
Peak Width
75% of peak Vpp
69
Tripolar Focusing Electrode
Spacing
V-pp
L L
70
Tripolar Focusing Electrode
Spacing
V-pp
L L
71
Tripolar Focusing Electrode
Spacing: Peak Height vs. L
y = -0.0849x2 + 0.3423x - 0.0175
R² = 0.9995
0
0.05
0.1
0.15
0.2
0.25
0.3
0.35
0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6
NormalizedPeakHeight
Electrode Center to Center Spacing (mm)
Series1
Poly. (Series1)
72Spreadsheet Data Raw Data
Tripolar Focusing Electrode
Spacing: Peak Width vs. L
y = -0.063x2 + 0.2526x + 0.0232
R² = 0.9936
0
0.05
0.1
0.15
0.2
0.25
0.3
0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6
NormalizedPeakWidth
Electrode Center to Center Spacing (mm)
Series1
Poly. (Series1)
73Spreadsheet Data Raw Data
Summary of Results
 Tripolar stimulation focuses the current better than
pentapolar and monopolar
 All multipolar focusing requires more current
 Current steering is not possible with the given array
design, but can be achieved if electrodes are close
enough
 Current steering could be achieved subtractively, but
the extent is not clear
 Electrode spacing is linearly related to the peak
separation when two electrodes are stimulated
 Electrode spacing is linearly related to peak width
 Electrode spacing has a polynomial relationship with
the tipolar-focused Vpp peak
74
75
Limitations and Sources of
Error
 AF oversimplifies electrode geometry
 Overestimates the steepness and sharpness of AF
distributions
 Arbitrarily assigning +/- Vpp values creates noise
through human error
 Qualitative nature of determining “peak fusion”
 Surface/array tilt
 Inherent noise within each scan especially when
measured Vpp < 10mV
 Quality of micro-probe tip
 Variability across measurements that aren’t conducted
on the same day
 Varying concentration of PBS
76
Future Studies
 Repeated asymmetric current steering
trials
 Other stimulation patterns
 Running all future experiments with
higher stimulation amplitudes
 Computational tissue models
 Approximate the direction of neuron
fibers so the second derivative of
voltage can be taken to find AF
77

More Related Content

What's hot

Chp1 Transmission line theory with examples-part2
Chp1 Transmission line theory with examples-part2Chp1 Transmission line theory with examples-part2
Chp1 Transmission line theory with examples-part2
anwar jubba
 

What's hot (20)

Parity-Violating and Parity-Conserving Asymmetries in ep and eN Scattering in...
Parity-Violating and Parity-Conserving Asymmetries in ep and eN Scattering in...Parity-Violating and Parity-Conserving Asymmetries in ep and eN Scattering in...
Parity-Violating and Parity-Conserving Asymmetries in ep and eN Scattering in...
 
Anschp25
Anschp25Anschp25
Anschp25
 
PROBLEMAS RESUELTOS (42) DE LABORATORIO N° 1 DE FÍSICA II - TIPPENS
PROBLEMAS RESUELTOS (42) DE LABORATORIO N° 1 DE FÍSICA II - TIPPENSPROBLEMAS RESUELTOS (42) DE LABORATORIO N° 1 DE FÍSICA II - TIPPENS
PROBLEMAS RESUELTOS (42) DE LABORATORIO N° 1 DE FÍSICA II - TIPPENS
 
Ee2251 em-i
Ee2251 em-iEe2251 em-i
Ee2251 em-i
 
Lecture 7
Lecture 7Lecture 7
Lecture 7
 
Lecture 13
Lecture 13Lecture 13
Lecture 13
 
Circuit Network Analysis - [Chapter1] Basic Circuit Laws
Circuit Network Analysis - [Chapter1] Basic Circuit LawsCircuit Network Analysis - [Chapter1] Basic Circuit Laws
Circuit Network Analysis - [Chapter1] Basic Circuit Laws
 
Lecture 12
Lecture 12Lecture 12
Lecture 12
 
Chp1 Transmission line theory with examples-part2
Chp1 Transmission line theory with examples-part2Chp1 Transmission line theory with examples-part2
Chp1 Transmission line theory with examples-part2
 
Lecture 2
Lecture 2Lecture 2
Lecture 2
 
CM1000E4C-66R Datasheet (English)
CM1000E4C-66R Datasheet (English)CM1000E4C-66R Datasheet (English)
CM1000E4C-66R Datasheet (English)
 
1 1 4
1 1 41 1 4
1 1 4
 
Data Teknis Gossen Metrawatt Ground Tester : GEOHM PRO & GEOHM XTRA
Data Teknis Gossen Metrawatt Ground Tester : GEOHM PRO & GEOHM XTRAData Teknis Gossen Metrawatt Ground Tester : GEOHM PRO & GEOHM XTRA
Data Teknis Gossen Metrawatt Ground Tester : GEOHM PRO & GEOHM XTRA
 
Lecture 8
Lecture 8Lecture 8
Lecture 8
 
JAISTサマースクール2016「脳を知るための理論」講義02 Synaptic Learning rules
JAISTサマースクール2016「脳を知るための理論」講義02 Synaptic Learning rulesJAISTサマースクール2016「脳を知るための理論」講義02 Synaptic Learning rules
JAISTサマースクール2016「脳を知るための理論」講義02 Synaptic Learning rules
 
Anschp32
Anschp32Anschp32
Anschp32
 
Transmission lines
Transmission linesTransmission lines
Transmission lines
 
Original Opto MOC3021 DIP-6 New
Original Opto MOC3021 DIP-6 NewOriginal Opto MOC3021 DIP-6 New
Original Opto MOC3021 DIP-6 New
 
Facts glanzmann
Facts glanzmannFacts glanzmann
Facts glanzmann
 
Presentació renovables
Presentació renovablesPresentació renovables
Presentació renovables
 

Viewers also liked

NEUROPROSTHETICS
NEUROPROSTHETICSNEUROPROSTHETICS
NEUROPROSTHETICS
Haris Tyeb
 
Artificial Implants and the Field of Visual Prosthesis
Artificial Implants and the Field of Visual ProsthesisArtificial Implants and the Field of Visual Prosthesis
Artificial Implants and the Field of Visual Prosthesis
Brittney Pfeifer
 
BioMEMS: Microsystems for Healthcare Applications 2016 Report by Yole Develop...
BioMEMS: Microsystems for Healthcare Applications 2016 Report by Yole Develop...BioMEMS: Microsystems for Healthcare Applications 2016 Report by Yole Develop...
BioMEMS: Microsystems for Healthcare Applications 2016 Report by Yole Develop...
Yole Developpement
 

Viewers also liked (9)

Twoty Awards Whats going on in the world right now
Twoty Awards Whats going on in the world right nowTwoty Awards Whats going on in the world right now
Twoty Awards Whats going on in the world right now
 
Bio
BioBio
Bio
 
The Emerging World of Neuroprosthetics
The Emerging World of NeuroprostheticsThe Emerging World of Neuroprosthetics
The Emerging World of Neuroprosthetics
 
NEUROPROSTHETICS
NEUROPROSTHETICSNEUROPROSTHETICS
NEUROPROSTHETICS
 
Artificial Vision & Neuroprosthetics
Artificial Vision & NeuroprostheticsArtificial Vision & Neuroprosthetics
Artificial Vision & Neuroprosthetics
 
Artificial Implants and the Field of Visual Prosthesis
Artificial Implants and the Field of Visual ProsthesisArtificial Implants and the Field of Visual Prosthesis
Artificial Implants and the Field of Visual Prosthesis
 
Second Sight
Second SightSecond Sight
Second Sight
 
Microfluidic Applications 2015 Report by Yole Developpement
Microfluidic Applications 2015 Report by Yole DeveloppementMicrofluidic Applications 2015 Report by Yole Developpement
Microfluidic Applications 2015 Report by Yole Developpement
 
BioMEMS: Microsystems for Healthcare Applications 2016 Report by Yole Develop...
BioMEMS: Microsystems for Healthcare Applications 2016 Report by Yole Develop...BioMEMS: Microsystems for Healthcare Applications 2016 Report by Yole Develop...
BioMEMS: Microsystems for Healthcare Applications 2016 Report by Yole Develop...
 

Similar to Second Sight Presentation

Tennessee State University College of Engineering, Tec.docx
Tennessee State University College of Engineering, Tec.docxTennessee State University College of Engineering, Tec.docx
Tennessee State University College of Engineering, Tec.docx
mehek4
 
Loren k. schwappach ee331 - lab 4
Loren k. schwappach   ee331 - lab 4Loren k. schwappach   ee331 - lab 4
Loren k. schwappach ee331 - lab 4
Loren Schwappach
 
Homework1 ogo8842
Homework1 ogo8842Homework1 ogo8842
Homework1 ogo8842
oolaleye1
 

Similar to Second Sight Presentation (20)

Using an oscilloscope
Using an oscilloscopeUsing an oscilloscope
Using an oscilloscope
 
Analog and Digital Electronics Lab Manual
Analog and Digital Electronics Lab ManualAnalog and Digital Electronics Lab Manual
Analog and Digital Electronics Lab Manual
 
Be lab manual csvtu
Be lab manual csvtuBe lab manual csvtu
Be lab manual csvtu
 
Lab 2 Report More Linear Operational Amplifiers
Lab 2 Report More Linear Operational AmplifiersLab 2 Report More Linear Operational Amplifiers
Lab 2 Report More Linear Operational Amplifiers
 
MS Thesis Defense
MS Thesis DefenseMS Thesis Defense
MS Thesis Defense
 
Detection of Power Line Disturbances using DSP Techniques
Detection of Power Line Disturbances using DSP TechniquesDetection of Power Line Disturbances using DSP Techniques
Detection of Power Line Disturbances using DSP Techniques
 
Lab 7 diode with operational amplifiers by kehali b. haileselassie and kou
Lab 7  diode with operational amplifiers by kehali b. haileselassie and kouLab 7  diode with operational amplifiers by kehali b. haileselassie and kou
Lab 7 diode with operational amplifiers by kehali b. haileselassie and kou
 
1_Intro + Per Unit.pdf
1_Intro + Per Unit.pdf1_Intro + Per Unit.pdf
1_Intro + Per Unit.pdf
 
Design and Implementation of Schmitt Trigger using Operational Amplifier
Design and Implementation of Schmitt Trigger using Operational AmplifierDesign and Implementation of Schmitt Trigger using Operational Amplifier
Design and Implementation of Schmitt Trigger using Operational Amplifier
 
Helical Methode - To determine the specific charge
Helical Methode - To determine the specific chargeHelical Methode - To determine the specific charge
Helical Methode - To determine the specific charge
 
Tennessee State University College of Engineering, Tec.docx
Tennessee State University College of Engineering, Tec.docxTennessee State University College of Engineering, Tec.docx
Tennessee State University College of Engineering, Tec.docx
 
Lab ii hall measurement
Lab ii hall measurementLab ii hall measurement
Lab ii hall measurement
 
Frequency dependency analysis for differential capacitive sensor
Frequency dependency analysis for differential capacitive sensorFrequency dependency analysis for differential capacitive sensor
Frequency dependency analysis for differential capacitive sensor
 
Loren k. schwappach ee331 - lab 4
Loren k. schwappach   ee331 - lab 4Loren k. schwappach   ee331 - lab 4
Loren k. schwappach ee331 - lab 4
 
P1111145969
P1111145969P1111145969
P1111145969
 
Localized Characterization of GaAs/AlGaAs Quantum Well Devices
Localized Characterization of GaAs/AlGaAs Quantum Well DevicesLocalized Characterization of GaAs/AlGaAs Quantum Well Devices
Localized Characterization of GaAs/AlGaAs Quantum Well Devices
 
Homework1 ogo8842
Homework1 ogo8842Homework1 ogo8842
Homework1 ogo8842
 
Experiment no 2 setb118
Experiment no 2    setb118Experiment no 2    setb118
Experiment no 2 setb118
 
9. article azojete vol 11 103 113 dibal
9. article azojete vol 11 103 113 dibal9. article azojete vol 11 103 113 dibal
9. article azojete vol 11 103 113 dibal
 
EC8553 Discrete time signal processing
EC8553 Discrete time signal processing EC8553 Discrete time signal processing
EC8553 Discrete time signal processing
 

Second Sight Presentation

  • 1. William Yang, Second Sight Summer Intern 2016 Supervisor: Dr. David Zhou 1
  • 2. 2
  • 3. Motivation and Purpose  Understand how stimulation strategies and electrode spacing relate to the shape of voltage distributions and electric fields in order to inform and improve future innovations 3
  • 4. Voltage and Electric Field  𝐸 = −𝛻𝑉  𝐸𝑥, 𝐸𝑦, 𝐸𝑧 = − 𝑑𝑉 𝑑𝑥 , 𝑑𝑉 𝑑𝑦 , 𝑑𝑉 𝑑𝑧  The strength of the electric field must take into account all components of the electric field 𝑬 𝐸𝑥 𝑖 = −dV/dx 𝐸𝑦 𝑗 = −dV/dy +x +y 4
  • 5. Voltage/Electric Field and Activating Function (AF)  The activating function is the second derivative of voltage in the direction of the neuron fiber (Rattay 1986, Litvak 2007, Falcone 2011) V-pp Neuron AF = 𝑑2 𝑉𝑝𝑝 𝑑𝑥2 +x +y 5
  • 6. More on Activating Function  If the electrodes are simplified to point electrodes, the activating function can be modeled by the following equation, for a given point electrode at point (u,v,w): Using this equation, one can obtain the discrete AF in space by plugging in a discrete spatial voltage distribution for each electrode and summing the AF’s 𝐴𝐹 𝑥, 𝑦, 𝑧 = 𝑉 𝑥, 𝑦, 𝑧 3𝑧 2((𝑥 − 𝑢)2+(𝑦 − 𝑣)2+(𝑧 − 𝑤)2)2 − 1 (𝑥 − 𝑢)2+(𝑦 − 𝑣)2+(𝑧 − 𝑤)2 6
  • 7. Derivation of AF using equations from Falcone 2011: Equation 1: 𝐴𝐹 𝑥, 𝑦, 𝑧, 𝐼 = ρ𝐼 4π 3𝑧 2(𝑥2+𝑦2+𝑧2)5/2 − 1 (𝑥2+𝑦2+𝑧2)3/2 Equation 2: 𝑉 𝑥, 𝑦, 𝑧, 𝐼 = ρ𝐼 4π 𝑥2+𝑦2+𝑧2 Equation 1 can be factored to obtain: 𝐴𝐹 𝑥, 𝑦, 𝑧, 𝐼 = ρ𝐼 4π 𝑥2 + 𝑦2 + 𝑧2 3𝑧 2(𝑥2 + 𝑦2 + 𝑧2)2 − 1 𝑥2 + 𝑦2 + 𝑧2 The factored expression can be replaced by V(x,y,z,I) from Equation 2: 𝐴𝐹 𝑥, 𝑦, 𝑧 = 𝑉 𝑥, 𝑦, 𝑧 3𝑧 2(𝑥2 + 𝑦2 + 𝑧2)2 − 1 𝑥2 + 𝑦2 + 𝑧2 Where ρ is resisitivity, 𝐼 is current, and x, y, and z define the location of a point relative to a point electrode at (0,0,0) 7
  • 8. 8
  • 9. Experimental Setup Stimulator Coil PC Running ADAQA VPU External Coil Oscilloscope Measuring Voltage Stimulation Electrode Array Return Electrode Petri Dish w/ 10 mM PBS PC moving stepper motor and recording voltage measurements Wireless RF Link Micro-Probe Stepper Motor 9
  • 10. Experimental Setup 10 Micro-Probe Stepper Motor Test Array Array surface and tip of probe submerged in PBS Solution +z +y +x
  • 11. Experimental Setup 11 Micro-Probe Stepper Motor Test Array Array surface and tip of probe submerged in PBS Solution +z +y +x
  • 12. Experimental Setup 12 Micro-Probe Stepper Motor Test Array Array surface and tip of probe submerged in PBS Solution +z +y +x
  • 13. Data Acquisition Software  Previous acquisition software  WinCommander to manually control the microprobe stepper motor  LabVIEW software to record voltage measurements  Phantom to automate mouse clicking of WinCommander controls and record-voltage push buttons in LabVIEW  New acquisition software uses only one LabVIEW program that automates stepper motor movement and voltage recording  Enables automated 1D, 2D and 3D scans  Saves time, easier to use 13
  • 16. Data Processing for 2D XZ Scans  % Initialize Vpp before running the script. Vpp contains the scan of Vpp  % values. The script rearranges the Vpp data ready to be plotted in 3  % Space. It also gives the x and z components of the electric field   % Initialize the matrix that will contain the Vpp data. It will be called  % "VppGrid"  x = 0:.02:4;  z=0:.05:.5;  [X,Z] = meshgrid(x,z);   % Insert Vpp data into VppGrid  VppGrid = X';  VppGrid(1:end) = Vpp(1:end);  VppGrid = VppGrid';   % Take the gradient to find the X and Z components of the electric field  [Ex,Ez] = gradient(VppGrid,X',Z);  Ex = -1*Ex;  Ez = -1*Ez; 16
  • 17. Resulting Vpp Matrix for XZ Scans +x +z 17
  • 19. AF … E1, (u1,v1,w1) E2, (u2,v2,w2) E3, (u3,v3,w3) Ei, (ui,vi,wi) 19
  • 20. Data Processing for 3D Scans  x = xLim(1):xStep:xLim(2);  y = yLim(1):yStep:yLim(2);  z = zLim(1):zStep:zLim(2);   [X,Y,Z] = meshgrid(x,y,z);   gridDimensions = size(X);   VppGrid = zeros(gridDimensions(2),gridDimensions(1),gridDimensions(3));  VppGrid(1:end) = Vpp(1:end);  VppGrid = permute(VppGrid, [2,1,3]);   [Ex,Ey,Ez] = gradient(VppGrid, xStep, yStep, zStep);  Ex = -1*Ex;  Ez = -1*Ez;  Ey = -1*Ey; 20
  • 21. Data Processing Cont’d  Peak-to-peak voltages corresponding to biphasic pulses beginning with the cathodic phase were assigned as “+”  Anodic phase-leading signals were assigned as “-” +Vpp -Vpp 21 *All current pulses in the experiments have pulse widths of .5ms at 120 Hz
  • 26. Voltage Distribution, Electric Fields, and AF Shapes  The voltage, electric field, and activating function follow the same shape given a stimulation pattern  Since the E Field and AF follow the same shape as the Vpp distribution, we can use any one of the 3 to visualize the shape of the stimulation signal 26
  • 27. Voltage Sum 0 0.005 0.01 0.015 0.02 0.025 -2 -1 0 1 2 Vpp(V) X Distance (mm) Monopolar Vpp Distribution Vpp at Z = 100 um E6: 50 uA, Cathodic Pulse First E11: 0 uA 0 0.005 0.01 0.015 0.02 0.025 -2 -1 0 1 2 Vpp(V) X Distance (mm) Monopolar Vpp Distribution Vpp at Z = 100um E6: 0 uA E11: 50 uA, Cathodic Pulse First 0.015 0.02 0.025 0.03 0.035 0.04 0.045 -2 -1 0 1 2 Vpp(V) X Distance (mm) Sum of Monopolar Vpp Distributions Vpp at Z = 100 um E6: 50uA, Cathodic Pulse First E11: 50uA, Cathodic Pulse First 27
  • 28. 0.015 0.02 0.025 0.03 0.035 0.04 0.045 0.05 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 Vpp(V) X Distance (mm) Calculated (Summed) Monopolar Vpp Distribution Vpp at Z = 100 um E6: 50uA, Cathodic Pulse First E11: 50uA, Cathodic Pulse First 28
  • 29. 0.015 0.02 0.025 0.03 0.035 0.04 0.045 0.05 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 Vpp(V) X Distance (mm) Measured Monopolar Vpp Distribution Vpp at Z = 100um E6, 50uA, Cathodic Pulse First E11, 50 uA, Cathodic Pulse First 29
  • 30. Summing Voltages  When multiple electrodes are on, the resulting voltage distribution in space is equal to the sum of the voltages coming from each electrode 0.015 0.02 0.025 0.03 0.035 0.04 0.045 0.05 -2 -1 0 1 2 Vpp(V) X Distance (mm) Measured Monopolar Vpp Distribution 0.015 0.02 0.025 0.03 0.035 0.04 0.045 0.05 -2 -1 0 1 2 Vpp(V) X Distance (mm) Calculated Monopolar Vpp Distribution 30Raw Data
  • 32. Focusing Stimulation Patterns Monopolar Control Control 1: 50 uA Amplitude Control 2: 20 uA Amplitude Control 3: 100 uA Amplitude +x +y 32
  • 33. Focusing Stimulation Patterns Tripolar Focusing Middle Electrode: 100uA Amplitude Side Electrodes: 50uA Amplitude +x +y 33
  • 34. Focusing Stimulation Patterns Tripolar Focusing Middle Electrode: 200uA Amplitude Side Electrodes: 100uA Amplitude +x +y 34
  • 35. Focusing Stimulation Patterns Pentapolar Focusing Middle Electrode: 100uA Amplitude Side Electrodes: 25uA Amplitude +x +y 35
  • 36. Focusing Stimulation Patterns Pentapolar Focusing Middle Electrode: 200uA Amplitude Side Electrodes: 50uA Amplitude +x +y 36
  • 37. Quantifying Peak Width and Height V-pp Peak Width 75% of peak Vpp 37 Peak Height 0 V
  • 38. Relative Vpp Peak Widths Mean Stdev (n = 3) Monopolar 1 0 Tripolar 0.25 0.028 Pentapolar 0.41 0.031 Relative Peak Width in X Direction Mean Stdev (n = 3) Monopolar 1 0 Tripolar 0.33 0.036 Pentapolar 0.37 0.053 Relative Peak Width in Y Direction 38Spreadsheet Data
  • 39. Relative Vpp Peak Heights Mean Relative Height Stdev (n = 3) Monopolar (100 uA) 1 0 Monopolar (50 uA) 0.51 0.0057 Monopolar (20 uA) 0.20 0.0093 Tripolar (50 uA ↓, 100 uA ↑, 50 uA ↓) 0.20 0.0077 Pentapolar (100 uA ↑, 25 uA ↓ 4x) 0.20 0.0093 Tripolar (100 uA ↓, 200 uA ↑, 100 uA ↓) 0.43 0.0048 Pentapolar (200 uA ↑, 50 uA ↓ 4x) 0.48 0.014 39Spreadsheet Data
  • 40. Spread and Peak Comments  Tripolar and Pentapolar stimulation focus current in the X and Y directions  Tripolar focuses the current better than Pentapolar in the X direction  Tripolar and Pentapolar have similar current spread in the Y direction, but these results may be due to experimental error  Tripolar and Pentapolar have peaks that are ~20% of the monopolar 40
  • 42. Steering Strategy #1 50 uA Amplitude, 120 Hz, .5 ms PW +x +y 42
  • 46. Steering Strategy #1 Comments  The E Field and AF follow the same shape as Vpp  None of the signals peak in the space between the electrodes given the test conditions  The signal can peak in the middle if the electrodes are close enough 46
  • 47. Steering Strategy #2 120 Hz, .5 ms PW Middle Electrode: 100uA Amplitude Left Electrode: 75uA Amplitude Right Electrode: 25uA Amplitude +x +y 47
  • 48. Steering Strategy #2 48Spreadsheet Data -0.01 -0.005 0 0.005 0.01 0.015 -2.5 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 2.5 Vpp(V) X Distance (mm) Asymetric Tripolar Vpp Curve Asymetric Tripolar Vpp, Probe Height = 50um E6 25uA Anodic Pulse First E11 100uA Cathodic Pulse First E15 25uA Anodic Pulse First 0.015 0.02 0.025 0.03 0.035 0.04 0.045 -2.5 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 2.5 Vpp(V) X Distance (mm) Monopolar Vpp Curve Asymetric Tripolar Vpp, Probe Height = 50um E6 0uA E11 100uA Cathodic Pulse First E15 0uA Peak occurs at x = .04 mm Peak occurs at x = -0.02 mm
  • 49. Steering Strategy #3 50 uA Amplitude, 120 Hz, .5 ms PW +x +y 49
  • 50. Steering Strategy #3 0 0.005 0.01 0.015 0.02 0.025 -2.5 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 2.5 Vpp(V) X Distance (mm) Monopolar Vpp Distribution Vpp at Z = 100um E6: 0 uA E11: 50 uA, Cathodic Pulse First -0.006 -0.004 -0.002 0 0.002 0.004 0.006 0.008 -2.5 -2 -1.5 -1 -0.5 0 0.5 1 1.5 2 2.5 Vpp(V) X Distance (mm) Observed Bipolar Vpp Distribution Vpp at Z = 100um E6, 50uA, Anodic Pulse First E11, 50 uA, Cathodic Pulse First+Sheet1!$A$3 Peak occurs at x = .08 mm Peak occurs at x = .01 mm 50Spreadsheet Data
  • 51. Current Steering Comments  Current is not necessarily “steered” additively. This is possible only when the electrodes are close (i.e. Strategy 1)  May be possible through subtractive strategies (i.e. Strategies 2 and 3)  Limited current steering effects  Unclear how much the peak height is affected  The extent to which the current is steered for strategies 2 and 3 is inconclusive without repeated experiments 51
  • 53. Peak Fusion  At various heights above the array, determine the spacing between two electrodes at which the peaks fuse 50 uA 50 uA L 120 Hz, .5 ms PW 53
  • 54. Peak Fusion  At various heights above the array, determine the spacing between two electrodes at which the peaks fuse V-pp 1 V-pp 2 L 54
  • 55. Peak Fusion  At various heights above the array, determine the spacing between two electrodes at which the peaks fuse V-pp 1 V-pp 2 L 55
  • 56. Peak Fusion  At various heights above the array, determine the spacing between two electrodes at which the peaks fuse Critical L V-pp 1 + 2 56
  • 57. “Critical L” vs. Height Above Array y = 0.0028x + 0.0587 R² = 0.9897 0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 2 0 100 200 300 400 500 600 700 ElectrodeCenter-to-CenterSpacingatWhichPeaksFuse (mm) Z Distance Away from Electrode Surface (um) 50 uA 100 uA 150 uA 200 uA Linear (100 uA) 57Spreadsheet Data
  • 60. Distinguishable Peaks  At various heights above the array, determine the spacing between two electrodes at which the signals become two peaks L V-pp 1 + 2 60
  • 61. Distinguishable Peaks  At various heights above the array, determine the spacing between two electrodes at which the signals become two peaks V-pp 1 V-pp 2 L 61
  • 62. Distinguishable Peaks  At various heights above the array, determine the spacing between two electrodes at which the signals become two peaks V-pp 1 V-pp 2 Critical L h1 h2 ℎ1 − ℎ2 ≥ 2𝑚𝑉 62
  • 64. Critical L for Distinguishable Peaks vs. Z Distance 64 y = 8.04x + 0.248 R² = 0.9977 0 0.5 1 1.5 2 2.5 0 0.05 0.1 0.15 0.2 0.25 0.3 CriticalL(mm) Z Distance Above Electrode Surface (mm) 50 uA Linear (50 uA) Spreadsheet Data
  • 65. Critical L for Distinguishable Peaks vs. Z Distance y = 4.98x + 0.2403 R² = 0.994 0 0.5 1 1.5 2 2.5 0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 CriticalL(mm) Z Distance Above Electrode Surface (mm) 100 uA Linear (100 uA) 65Spreadsheet Data
  • 66. Critical L for Distinguishable Peaks vs. Z Distance 66 y = 4.8971x + 0.2898 R² = 0.9933 0 0.5 1 1.5 2 2.5 0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 CriticalL(mm) Z Distance Above Electrode Surface (mm) 200 uA Linear (200 uA) Spreadsheet Data
  • 67. Fused Critical L’s and Distinguishable Critical L’s 67 y = 0.0028x + 0.0587 R² = 0.9897 y = 0.008x + 0.248 R² = 0.9977 y = 0.0051x + 0.185 R² = 0.9912 0 0.5 1 1.5 2 2.5 0 100 200 300 400 500 600 700 ElectrodeCenter-toCentersSpacingat(mm) Z Distance Away from Electrode Surface (um) 50 uA Fused 100 uA Fused 150 uA Fused 200 uA Fused 50 uA Distinguishable 100 uA Distinguishable 200 uA Distinguishable Linear (100 uA Fused) Linear (50 uA Distinguishable) Linear (100 uA Distinguishable) Fused Region Distinguishable Peaks Region Spreadsheet Data In-Between Fused and Distinguishable
  • 68. Tripolar Focusing Electrode Spacing  Determine the relationship between electrode spacing and peak width in tripolar focusing  Determine the relationship between electrode spacing and peak height in tripolar focusing  Peak heights and widths are normalized to the Voltage distribution of monopolar current pulses 50 uA 100 uA 50 uA 120 Hz, .5 ms PW 68
  • 69. Tripolar Focusing Electrode Spacing V-pp L L Peak Width 75% of peak Vpp 69
  • 72. Tripolar Focusing Electrode Spacing: Peak Height vs. L y = -0.0849x2 + 0.3423x - 0.0175 R² = 0.9995 0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 NormalizedPeakHeight Electrode Center to Center Spacing (mm) Series1 Poly. (Series1) 72Spreadsheet Data Raw Data
  • 73. Tripolar Focusing Electrode Spacing: Peak Width vs. L y = -0.063x2 + 0.2526x + 0.0232 R² = 0.9936 0 0.05 0.1 0.15 0.2 0.25 0.3 0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 NormalizedPeakWidth Electrode Center to Center Spacing (mm) Series1 Poly. (Series1) 73Spreadsheet Data Raw Data
  • 74. Summary of Results  Tripolar stimulation focuses the current better than pentapolar and monopolar  All multipolar focusing requires more current  Current steering is not possible with the given array design, but can be achieved if electrodes are close enough  Current steering could be achieved subtractively, but the extent is not clear  Electrode spacing is linearly related to the peak separation when two electrodes are stimulated  Electrode spacing is linearly related to peak width  Electrode spacing has a polynomial relationship with the tipolar-focused Vpp peak 74
  • 75. 75
  • 76. Limitations and Sources of Error  AF oversimplifies electrode geometry  Overestimates the steepness and sharpness of AF distributions  Arbitrarily assigning +/- Vpp values creates noise through human error  Qualitative nature of determining “peak fusion”  Surface/array tilt  Inherent noise within each scan especially when measured Vpp < 10mV  Quality of micro-probe tip  Variability across measurements that aren’t conducted on the same day  Varying concentration of PBS 76
  • 77. Future Studies  Repeated asymmetric current steering trials  Other stimulation patterns  Running all future experiments with higher stimulation amplitudes  Computational tissue models  Approximate the direction of neuron fibers so the second derivative of voltage can be taken to find AF 77

Editor's Notes

  1. Include file path for raw data and graphs
  2. Show this slide very briefly
  3. Maybe include disk electrodes to show scale relative to return electrode
  4. The probe tip was changed during the last week of July 2016. Thus, all experiments either used the old probe tip (before the last week of July 2016) or the new probe tip (after the last week of July 2016)
  5. Briefly show this
  6. To achieve a better approximation of the activating function, one would need to integrate over the areas that each stimulating electrode occupies
  7. This graph was obtained from measurements made by the old probe tip
  8. This graph was obtained from measurements made by the old probe tip
  9. This graph was obtained from measurements made by the old probe tip
  10. These graphs were obtained from measurements made by the new probe tip
  11. delete
  12. delete
  13. These graphs were obtained from measurements made by the new probe tip
  14. In the next three slides, talk about hypotheses: Expected that the peak heights would be similar to control 1 but worse than control 3 and better than control 2, and that the peak widths would be better than control group 1 – need to compare to other control groups?
  15. Remove the frequency and PW information – just mention it once at the beginning that all experiments use these
  16. Peak width is a measure of how focused the signal is
  17. Monopolar amplitude = 50uA These results were obtained from measurements made by the new probe tip
  18. These results were obtained from measurements made by the new probe tip Future experiments should look at the peak spread of Tripolar and Pentapolar with 200uA center electrodes Make the pentapolar stimulation strategy format the same as the tripolar
  19. First bullet: Monopolar group has an amplitude of 50uA
  20. These results were obtained from measurements made by the old probe tip
  21. Units of E Field are in 10^-3 N/C These results were obtained from measurements made by the old probe tip
  22. These results were obtained from measurements made by the old probe tip
  23. These results were obtained from measurements made by the new probe tip
  24. These results were obtained from measurements made by the new probe tip
  25. First bullet: How “close” exactly will be discussed in later slides for electrode spacing
  26. Stimulation strategy for both electrodes: 50uA, Cathodic Pulse first, .5ms PW, 120 Hz
  27. NOTE: This model cannot be applied to the AF because the AF simplifies the electrode geometry to single points These results were obtained from measurements made by the new probe tip
  28. These results were obtained from measurements made by the old probe tip
  29. These results were obtained from measurements made by the old probe tip
  30. Stimulation strategy for both electrodes: 50uA, Cathodic Pulse first, .5ms PW, 120 Hz
  31. These results were obtained from measurements made by the new probe tip
  32. These results were obtained from measurements made by the new probe tip
  33. These results were obtained from measurements made by the new probe tip
  34. These results were obtained from measurements made by the new probe tip
  35. Data normalized to monopolar stimulation receiving 100uA amplitude pulses, .5ms PW, and 120 Hz These results were obtained from measurements made by the new probe tip
  36. These results were obtained from measurements made by the new probe tip