Develop a model of the node of ravier

Assignment Help Other Engineering
Reference no: EM13991324

The lab 1 2 3 in the hw doc is lab 4 5 6 attached. i have the codes of lab 4 5 6 i can send it to you if you need it

?You need to answer Word file only.the labs are just to assist us through it

i have the codes for lab 1 and 2 which are the doc i send named lab 4 5 respectively?

Part -1:

Lab: Neural Modeling

An axon is made up of sequential Nodes of Ranvier ("Ron-ve-a") separated by myelinated "internodes." In this lab, you will learn about the two of the ion channels that exist in a Node of Ranvier. These ion channels are what are responsible for forming the shape of the action potential.

26_Neural Modeling.png

An individual Node of Ranvier is represented by the model to the left, where Cm (µF/cm2) is the membrane capacitance, IC is the capacitive current, INa is the sodium current, IK is the potassium current, IL is the "leakage" (generic or non-specific) ionic current, RNa is the variable resistance to sodium flow, RK is the variable resistance to potassium flow, RL is the resistance to leakage flow, ENa is the reversal potential for sodium, EK is the reversal potential for potassium, and EL is the reversal potential for leakage current. Note, often you will see Rx expressed as Gx, the conductance of ion x. R=1/G. This is the Hodgkin Huxley model of a Node of Ranvier and it's based on the squid giant axon.

1. Develop a model of the Node of Ravier by using an ODE solver to simultaneously (i.e., in 1 function) solve equations 1-10. However, here you will set dVm/dt (Equation 1) equal to 0. Thus, there is no change in voltage as a function of time. When the voltage of a node is held at a constant, unchanging value, it is said to have been "voltage clamped" to the initial voltage (the initial condition for Vm). Note, because the neuron is voltage clamped, there is no injected current, I.

2. Use a for loop to set Vm(0) and solve the set of differential equations. Sweep the value of Vm(0) across the following values: -15:1:-10, 0:20:100, 112:1:117. Solve the simulation between 0 <= t <= 10.

3. For each iteration of your for loop,

a. Plot the resulting m, h, and n values as a function of time on three subplots of a 3x1 (3 rows, 1 column) figure.

b. Plot the sodium current and potassium current on two subplots of a 2x1 figure.

You'll need to use the hold on command so you can plot the results for each Vm value of the for loop. Be sure the lines are distinguishable (consider using different colors). Be sure your axes are labeled, you use a legend, and you have a title.

Now you're going to slightly alter your Node of Ranvier model. Instead of setting dVm to 0, meaning the membrane voltage is clamped at Vm(0), you will calculate dVm/dt (equation 1). This requires you to calculate the sodium, potassium, and leakage currents as a function of the maximum ionic conductances, m, h, n, the membrane voltage, and the reversal potentials. There are two other adjustments to make:

• Each of these three currents should be multiplied by 1000 to account for a conversion in units.

• I (the injected current) should be set to 0.01 when time is greater than 1s, otherwise it is 0. This can be done with an if statement or a Heaviside function.

4. Set Vm(0) = 0, and sweep g¯Na from 1e-5 to 10e-5 in steps of 0.5e-5. Plot Vm(t) for each value of the maximum sodium conductance on a single plot. Be sure to include labels and a legend.

Questions:

1. Looking at the sodium channel responses (subplots 1 and 2 of figure 1), what can you deduce about the speed of the m-gates? What about the speed of the h-gate? What does a value of 0 mean? What does a value of 1 mean?

2. Looking at the potassium channel response (subplot 3 of figure 1), what can you deduce about the speed of the n-gates relative to the m and h gate speeds?

3. Given your conclusions from the previous two questions, when would you expect sodium current to be maximal? Minimal? When would you expect potassium current to be maximal? Use the response when Vm(0) was +117 mV.

4. Looking at the resulting sodium current (subplot 1, figure 2), what direction do sodium ions flow when the voltage clamp was greater than the sodium reversal potential? At the reversal potential? Less than the reversal potential?

5. Looking at the resulting potassium current (subplot 2, figure 2), what direction do potassium ions flow when the voltage clamp was greater than the potassium reversal potential? At the reversal potential? Less than the reversal potential?

6. Now that you have a sense of what direction the two ionic currents are running (into or out of the cell) and when those currents occur, explain the general shape you see of the action potential in Figure 3.

7. What effect does the maximum sodium conductance have on the sodium current and, therefore, the shape of the action potential that you see in Figure 3?

Part -2:

Constructing an axon

You will now construct an axon that connects multiple Nodes of Ranvier together. The neuron is represented by attached Nodes of Ranvier (NoR), each separated by a section of axon that is myelinated. Ionic current can flow between the Nodes of Ranvier through the axon, which has an internal resistance, Rax. For this assignment, assume that all extracellular voltage is 0 mV.

1. Find the injected current (pulse amplitude) threshold of the axon.

Find the smallest stimulus current that will initiate AND propagate an action potential for the pulse widths (the duration over which the current is injected) listed above. Create a figure of the threshold amplitude versus pulse width.

2. For the prize (optional)

Make sure your main code is a function. The first line after your function definition should be tic. Do not use tic anywhere else within the function. Then, at the very end of your main function, insert the code:

x=toc

y=bench;

disp(['Solve time/ODE benchmark time: ' num2str(x/y(3)) 'x']);

The student who produces the fastest code relative to the ode benchmark time for that computer will receive a large Toblerone bar. Make sure the TA notes your solve time ratio (the solve time divided by the time your computer takes to run the ode benchmark, which is typically the 3rd returned value). For reference, it took me 319.3817 seconds, or 1732.2045x the ode benchmark time, to run the lab on my 7- year-old laptop.

Tips:
• You'll need to pass in 4 initial conditions for each node in your axon model. Therefore, there are 84 values in your initial condition vector.
• Thus, there are 84 columns in your solution matrix.
• Instead of using for loops, which are very slow, you should vectorize all of your calculations.

o Your ionic current, α and β calculations should result in vectors with a value for each node (i.e., they should be 21-element vectors).

o Your injected current, although only occurring at the center node, can be modeled as a vector with zeros everywhere except the where the actual current is injected. Thus, your injected current should also be a 21-element vector.

• You should use odeset() to set the maximum step size such that the ode solver that you choose does not miss the injected current,  which is only on for a very short period of time.

• To determine if an action potential has propagated, make sure that at least 11 nodes had a Vm>20 mV at some point during the simulation.

• If you choose to use a binary search:

o The percent difference between your minimum and maximum pulse amplitude that serves as the criterion for stopping your search should be 5%.

o You should limit your maximum pulse amplitude to 0.1. The units are in μA.

Part -3:

In this lab, you're going to vary two things: electrode polarity (positive or negative) and electrode height (Δy). Read 1)-3) below before starting.

1. Vary the height of the electrode above the axon between 100 μm and 800 μm in steps of 100 μm while ensuring that the electrode is centered over the center Node of Ranvier (the node with an equal number of nodes on each side of it). At each location, find the threshold to activate the axon using a cathodic stimulus (negative polarity) when the pulse width is 0.5 ms and the fiber diameter is 10 μm. Plot the threshold as a function of vertical height of the electrode. Be sure to label your axes and include units. For the purposes of this and the next question, plot the absolute value of the threshold.

2. Now do the same thing as above, but change the polarity of your electrode. That is, make the current positive in sign ("anodic"). Plot the resulting threshold on the same plot you created in question 1. Be sure to include a legend.

3. Plot the ratio of the anodic to cathodic threshold as a function of electrode distance on a second plot. Set the marker style for each point you plot to ‘o' and do not plot a connecting line between points.

Then use lsqcurvefit to estimate a and b in the equation y = a (1 + b), where y in this case is the s ratio of anodic/cathodic threshold and x is the height of the electrode over the axon. Plot this "best fit" line as well. It should capture the trend of your data points.

Questions

1. What conclusion can you draw about the effect of electrode distance on threshold?

2. Does the anodic current follow the same trend as the cathodic current?

3. Which type of electrode (cathodic or anodic) has a lower threshold?

4. What is the ratio of cathodic to anodic thresholds as a function of electrode height?

Reference no: EM13991324

Questions Cloud

Find the angle separating the two colors in refracted light : The index of refraction for a certain material is 1.399 for red light and 1.432 for blue light. Light containing both of these colors is traveling in vacuum and strikes a flat sheet of this material. Find the angle separating the two colors in th..
Let g be the set of the fifth roots of unity : Let G be the set of the fifth roots of unity.1. Use de Moivre's formula to verify that the fifth roots of unity form a group under complex multiplication, showing all work.
Related diversification and unrelated diversification : What is meant by the term "related diversification" and "unrelated diversification" and briefly state how a company should choose between them?
Re-emphasize the traditional methods and measurement courses : It is time to re-emphasize the traditional methods and measurement courses within our education system. Business still needs to know how long it takes to produce its products and provide its services. Business still must schedule work through the fac..
Develop a model of the node of ravier : Develop a model of the Node of Ravier by using an ODE solver to simultaneously - what can you deduce about the speed of the m-gates? What about the speed of the h-gate? What does a value of 0 mean?
Determining the total annual operating expenses : RayeAnn acquires a car for $14,000. She uses the car in her advertising business and for personal purposes. Her records indicate the car is used 70% for business and that her total annual operating expenses, including depreciation, are $3,800.
Comparing and contrasting seattle and los angeles : Write a 750-word essay comparing and contrasting Seattle and Los Angeles. Your conclusion must show your readers that something significant is learned by comparing and contrasting the two cities.
Business report on social media strategy in selling : Your business report should be about eight to ten pages long. Topic (Title): Social Media Strategy in Selling (Marketing) to Today's and Tomorrow's Customers
Treat the expenditures related to the duplex : How should Hamid treat the expenditures related to the duplex? Explain.

Reviews

Write a Review

Other Engineering Questions & Answers

  Determine the von mises distribution in the plate

The plate is uniformly loaded from the bottom surface with a pressure load of 15 kN/m2. Elastic modulus is E = 210 x 109 N/m2 and Poisson's ratio is v = 0.33. Determine the von Mises distribution in the plate.

  Environmental engineeringquestion 1 iron species in

environmental engineeringquestion 1 iron species in solution exist in two major forms with different charges

  Explain the operation of a sliding vane compressor

Explain the need for an instrument air system and explain the operation of a Sliding vane compressor.

  Analysis of the movement of a tracer

CEE 357 Winter 2014. HW#7 Assignment, Environmental engineering,  Analysis of the movement of a tracer in a contaminated aquifer indicates that the local Darcy velocity is 1.2 m/d. For approximately what fraction of that time do you think the contami..

  Does each solution stop all the negative effects

How long has this situation been going on? Why did the problems begin when they did? Am I able to solve the problem at its root cause or am I only able to manage the impact of the problem? Is this a temporary or permanent problem? How has the company..

  Tank accelerates to the right

The tank in Fig is filled with water and has a vent hole at point A. It is 1 m wide into the paper. Inside is a 10-cm balloon filled with helium at 130 kPa. If the tank accelerates to the right at 5 m/s/s, at what angle will the balloon lean? Will..

  Standard deviation of portfolio return issues

What is the (population) standard deviation of portfolio returns?

  Which of the materials will give the longest life

If you required to choose surface rubbing material: between lead, polytetrafluoroethylene (PTFE), and polyethylene for the pin to be fitted to the steel bucket bush, which of the following materials will give the longest wear life?

  Write a paper about digital tools and effective strategies

Write a paper about Digital Tools and Effective Strategies for Engaging the Adult Learner by David Jones.

  Identify technology or telecom standards organizations

Identify 3 to 5 technology or telecom standards organizations and the role they play in the industry. Choose one organization to look into in more depth

  How to optimize differential amplifier design

Derivation of the differential amplifier input impedance expressions followed by the example of how to calculate the input impedance. Explanation of input impedance mismatch effects on the differential amplifier functionality

  Explain different types of operators used in oracle

Explain different types of operators used in ORACLE.Explain the following commands with an example.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd