Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tip length #51

Merged
merged 3 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions docs/electrode_files/Boston_Scientific_Cartesia.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
==========================
Boston Scientific Cartesia
==========================

* Manufacturer: Boston Scientific
* Product: Boston Scientific Cartesia
* Serial name: CartesiaX, CartesiaHX

Source documentation:
`Source PDF <https://www.bostonscientific.com/content/dam/elabeling/nm/92495783-02_Vercis_TM-DBS_Systems_Surgical_Implant_Manual_multi-OUS_s.pdf>`_.
`Source Webpage <https://www.bostonscientific.com/en-US/products/deep-brain-stimulation-systems/vercise-genus-dbs-system/leads.html>`_.


The source documentation also contains information about
:doc:`Boston Scientific Directed Lead (DB-2202) <./Boston_Scientific_Vercise_Directed>`.

---------------------------
Boston Scientific CartesiaX
---------------------------


~~~~~~~~~~~~~~~~~~~~~~~
Default Parameters (mm)
~~~~~~~~~~~~~~~~~~~~~~~

* tip_length = 1.1
* contact_length = 1.5
* contact_spacing = 0.5
* lead_diameter = 1.3
* total_length = 450.0
* contacts_skipped = 5.0

----
Code
----

.. autoclass:: ossdbs.electrodes.boston_scientific_cartesia.BostonScientificCartesiaXModel
:members:
:show-inheritance:

----------------------------
Boston Scientific CartesiaHX
----------------------------


~~~~~~~~~~~~~~~~~~~~~~~
Default Parameters (mm)
~~~~~~~~~~~~~~~~~~~~~~~

* tip_length = 1.1
* contact_length = 1.5
* contact_spacing = 0.5
* lead_diameter = 1.3
* total_length = 450.0
* contacts_skipped = 7.0

----
Code
----

.. autoclass:: ossdbs.electrodes.boston_scientific_cartesia.BostonScientificCartesiaHXModel
:members:
:show-inheritance:
20 changes: 12 additions & 8 deletions docs/electrode_files/Boston_Scientific_Vercise.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,32 @@ Boston Scientific Vercise
=========================

* Manufacturer: Boston Scientific
* Product: Boston Scientific Standard Lead
* Product: Boston Scientific Standard Lead
* Serial name: DB-2201

Source documentation: `Source <https://www.bostonscientific.com/content/dam/elabeling/nm/92495783-02_Vercis_TM-DBS_Systems_Surgical_Implant_Manual_multi-OUS_s.pdf>`_.
Source documentation:
`Source PDF <https://www.bostonscientific.com/content/dam/elabeling/nm/92495783-02_Vercis_TM-DBS_Systems_Surgical_Implant_Manual_multi-OUS_s.pdf>`_.
`Source Webpage <https://www.bostonscientific.com/en-US/products/deep-brain-stimulation-systems/vercise-genus-dbs-system/leads.html>`_.

The source documentation also contains information about
:doc:`Boston Scientific Directed Lead (DB-2202) <./Boston_Scientific_Vercise_Directed>`.

---------------------------------------
Boston Scientific Standard Lead DB-2201
---------------------------------------

.. image:: electrode_pictures/Boston-Scientific-Vercise.svg


~~~~~~~~~~~~~~~~~~~~~~~
Default Parameters (mm)
~~~~~~~~~~~~~~~~~~~~~~~
* tip_length = 1.29
* contact_length = 1.5
* contact_spacing = 0.5
* lead_diameter = 1.3
* total_length = 450.0

* tip_length = 1.1
* contact_length = 1.5
* contact_spacing = 0.5
* lead_diameter = 1.3
* total_length = 450.0

----
Code
Expand Down
19 changes: 11 additions & 8 deletions docs/electrode_files/Boston_Scientific_Vercise_Directed.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,32 @@
Boston Scientific Vercise Directed
==================================
* Manufacturer: Boston Scientific
* Product: Boston Scientific Directional Lead
* Product: Boston Scientific Directional Lead
* Serial name: DB-2202

Source documentation: `Source <https://www.bostonscientific.com/content/dam/elabeling/nm/92495783-02_Vercis_TM-DBS_Systems_Surgical_Implant_Manual_multi-OUS_s.pdf>`_.
Source documentation:
`Source PDF <https://www.bostonscientific.com/content/dam/elabeling/nm/92495783-02_Vercis_TM-DBS_Systems_Surgical_Implant_Manual_multi-OUS_s.pdf>`_.
`Source Webpage <https://www.bostonscientific.com/en-US/products/deep-brain-stimulation-systems/vercise-genus-dbs-system/leads.html>`_.

The source documentation also contains information about
:doc:`Boston Scientific Standard Lead (DB-2201) <./Boston_Scientific_Vercise>`.

------------------------------------------
Boston Scientific Directional Lead DB-2202
------------------------------------------

.. image:: electrode_pictures/Boston-Scientific-Vercise-directed.svg


~~~~~~~~~~~~~~~~~~~~~~~
Default Parameters (mm)
~~~~~~~~~~~~~~~~~~~~~~~

* tip_length = 1.5
* contact_length = 1.5
* contact_spacing = 0.5
* lead_diameter = 1.3
* total_length = 450.0
* tip_length = 1.5
* contact_length = 1.5
* contact_spacing = 0.5
* lead_diameter = 1.3
* total_length = 450.0

----
Code
Expand Down
1 change: 1 addition & 0 deletions docs/electrodes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This is an overview about the electrode models used for simulation.
electrode_files/Abbott_StJude_Directed
electrode_files/Boston_Scientific_Vercise_Directed
electrode_files/Boston_Scientific_Vercise
electrode_files/Boston_Scientific_Cartesia
electrode_files/Dixi_Microtechniques
electrode_files/Medtronic_DBS
electrode_files/Medtronic_SenSight
Expand Down
6 changes: 3 additions & 3 deletions ossdbs/electrodes/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
total_length=400.0,
),
"BostonScientificVercise": BostonScientificVerciseParameters(
tip_length=1.3,
tip_length=1.1,
contact_length=1.5,
contact_spacing=0.5,
lead_diameter=1.3,
Expand All @@ -91,15 +91,15 @@
total_length=450.0,
),
"BostonScientificCartesiaX": BostonScientificCartesiaParameters(
tip_length=1.0,
tip_length=1.1,
contact_length=1.5,
contact_spacing=0.5,
lead_diameter=1.3,
total_length=450.0,
contacts_skipped=5.0,
),
"BostonScientificCartesiaHX": BostonScientificCartesiaParameters(
tip_length=1.0,
tip_length=1.1,
contact_length=1.5,
contact_spacing=0.5,
lead_diameter=1.3,
Expand Down
Loading