Virtual Simulation of Angio and Perfusion Essay.

Virtual Simulation of Angio and Perfusion Essay.

 

Introduction: 

This is a project that aims at describing the virtual simulation that is applied in the health sector by the various health specialists who includes the doctors, nurses and pharmacists where they find it easy and useful methods where they are able to make use of this new pedagogical strategies that are applied in the health and nursing education and practices.Virtual Simulation of Angio and Perfusion Essay.

ORDER A PLAGIARISM-FREE PAPER HERE

However in the health sector the medics’ knowledge and the clinical reasoning are vital in ensuring there is quality and confidence while making the medical decisions and therefore through the advancement and innovations in the health sector the health simulation technology had led to the clinical virtual simulation like in the field of Angio and Perfusion MRI. Therefore this project involves the designing and development of the Angio and Perfusion MRI clinical virtual simulation which is the re-creation of the medical reality that is depicted in the computer screen where real people are involved in the operation of the Angio and Perfusion MRI simulated systems, therefore the simulated systems enables the medical officers to apply the motor controlling skills, effective decisions skills and improved communication skills while using virtual patients in a number of clinical settings in Angio and Perfusion MRI field.Virtual Simulation of Angio and Perfusion Essay.

The Angio and Perfusion MRI virtual simulation is a process of scanning the sample using a particular MRI sequences where the data obtained is then post processed in order to obtain the various angio and perfusion parameters. Therefore the virtualization will be able to provide the pedagogical strategies and will be acting as the facilitators in the field of the knowledge retentions, clinical knowledge, improvement in satisfactions in clinical studies, and also offers improvement in self-efficacy.Virtual Simulation of Angio and Perfusion Essay.

1.1 Aims

In this project there are various aims which require to be achieved through the Angio and Perfusion MRI virtual simulation where the tests will be able to give the results of various tests and body condition similar to real person while being tested and therefore the following are the aims of performing the Angio and Perfusion MRI virtual simulation.

  1. To obtain the BV (blood volume) through simulation.
  2. To obtain the BF (blood_flow) through simulation.
  3. To obtain the MTT (mean_transit_time) through simulation.
  4. To obtain the TTP (time_to_peak) through simulation.

1.2 Reviews

The Angio and Perfusion MRI virtual simulation is one of the best practices of the medical officers where they are able simulate how to perform tests to their patients, the simulation therefore is able to show the results of blood volume, blood flow, mean transit time and time to peak which are obtained from the Angio and Perfusion MRI values and therefore able to make good decision in offering the treatment to the clients (Salvatore, 204).Virtual Simulation of Angio and Perfusion Essay.

1.3 Conclusions

The Angio and Perfusion MRI simulation will therefore be of much use in the medical field where it will enable the knowledge retentions, clinical knowledge, improvement in satisfactions in clinical studies, and also offers improvement in self-efficacy to the various medical officers.Virtual Simulation of Angio and Perfusion Essay.

Methods: 

While implementing this Angio and Perfusion MRI simulation project there are various methods that were applied which includes the software, algorithms and equations as discussed below.Virtual Simulation of Angio and Perfusion Essay.

2.1 Angio and Perfusion MRI simulation Methods 

2.1.1 Method 1: Phantom

This shows several records of the Patient blood changes after a number of test and the following were the features.

  1. This phantom will have several parameters including blood volume, blood flow, mean transit time and time to peak.
  2. In this case client will be tested several times and all parameters captured.
  3. Before testing the client again the previous client’s test reading are captured.
  4. This phantom will be used to test the changes in blood changes after several client tests.Virtual Simulation of Angio and Perfusion Essay.

2.1.1.1 Output:

2.1.1.1.1 Movie:

The movie was captured indicating the changes of the blood parameters over time.Virtual Simulation of Angio and Perfusion Essay.

2.1.1.1.2 Graph:

This is a graph showing various parameters and their changes over the several tests that were carried out.Virtual Simulation of Angio and Perfusion Essay.

2.1.2 Method 2: visual studio 2010 profession and Microsoft office access 2007 database

2.1.3 Method 3: Angio and Perfusion MRI simulation parameters developed application

2.1.3.1 MRI VALUE

2.1.3.2 Blood volume

2.1.3.3 Blood flow

2.1.3.4 Mean transit time

2.1.3.5 Time to peak

2.1.3.6 Patient name

2.1.4 Method 4: Angio and Perfusion MRI simulation parameters computing algorithm

  1. Blood volume computing algorithm

public void blood_volume()

{

if (textBox1.Text != “”)

{

textBox2.Text = Convert.ToDouble(Convert.ToInt32(textBox1.Text) * 0.2).ToString();

MessageBox.Show(“The blood volume is\t” + textBox2.Text);

}

}

  1. Blood flow computing algorithm

public void blood_flow()

{

if (textBox1.Text != “”)

{

textBox3.Text = Convert.ToDouble(Convert.ToInt32(textBox1.Text) * 0.3).ToString();

MessageBox.Show(“The blood flow is\t” + textBox3.Text);

}

}

  1. Mean transit time computing algorithm

public void mean_transit_time()

{

if (textBox1.Text != “”)

{

textBox4.Text = Convert.ToDouble(Convert.ToInt32(textBox1.Text) * 0.4).ToString();

MessageBox.Show(“The mean transit time is\t” + textBox4.Text);

}

}

  1. Time to peak computing algorithm

public void time_to_peak()

{

if (textBox1.Text != “”)

{

textBox5.Text = Convert.ToDouble(Convert.ToInt32(textBox1.Text) * 0.5).ToString();

MessageBox.Show(“The time to peak is\t” + textBox5.Text);

}

}

2.1.5 Method 5: Angio and Perfusion MRI simulation parameters graph drawing equations

2.1.5.1 MRI graph drawing equations

  1. Drawing equations.

con = new OleDbConnection(@” provider=microsoft.jet.oledb.4.0; data source=C:\MRI_SIMULATION\MRI.mdb”);

cmd = new OleDbCommand(“Select * from MRIRECORDS”, con);

OleDbDataReader mydatareader ;

con.Open();

mydatareader = cmd.ExecuteReader();

while(mydatareader.Read())

{

this.chart1.Series[“MRI”].Points.AddXY(mydatareader.GetString(6),mydatareader.GetString(1));

}

  1. Graph

2.1.5.2 Blood volume graph drawing equations

  1. Drawing equation codes.

con = new OleDbConnection(@” provider=microsoft.jet.oledb.4.0; data source=C:\MRI_SIMULATION\MRI.mdb”);

cmd = new OleDbCommand(“Select * from MRIRECORDS”, con);

OleDbDataReader mydatareader;

con.Open();

mydatareader = cmd.ExecuteReader();

while (mydatareader.Read())

{

this.chart1.Series[“BLOOD_VOLUME”].Points.AddXY(mydatareader.GetString(6), mydatareader.GetString(2));

}

  1. Graph.

2.1.5.3 Blood flow graph drawing equations

  1. Graph drawing equations codes.

con = new OleDbConnection(@” provider=microsoft.jet.oledb.4.0; data source=C:\MRI_SIMULATION\MRI.mdb”);

cmd = new OleDbCommand(“Select * from MRIRECORDS”, con);

OleDbDataReader mydatareader;

con.Open();

mydatareader = cmd.ExecuteReader();

while (mydatareader.Read())

{

this.chart1.Series[“BLOOD_FLOW”].Points.AddXY(mydatareader.GetString(6), mydatareader.GetString(3));

}

  1. Graph

2.1.5.4 Mean transit time graph drawing equations

  1. Graph drawing equations codes.

con = new OleDbConnection(@” provider=microsoft.jet.oledb.4.0; data source=C:\MRI_SIMULATION\MRI.mdb”);

cmd = new OleDbCommand(“Select * from MRIRECORDS”, con);

OleDbDataReader mydatareader;

con.Open();

mydatareader = cmd.ExecuteReader();

while (mydatareader.Read())

{        this.chart1.Series[“MEAN_TRANSIT_TIME”].Points.AddXY(mydatareader.GetString(6), mydatareader.GetString(4));

}

  1. Graph

2.1.5.5 Time to peak graph drawing equations

  1. Graph drawing equations codes.

con = new OleDbConnection(@” provider=microsoft.jet.oledb.4.0; data source=C:\MRI_SIMULATION\MRI.mdb”);

cmd = new OleDbCommand(“Select * from MRIRECORDS”, con);

OleDbDataReader mydatareader;

con.Open();

mydatareader = cmd.ExecuteReader();

while (mydatareader.Read())

{

this.chart1.Series[“TIME_TO_PEAK”].Points.AddXY(mydatareader.GetString(6), mydatareader.GetString(5));

}

  1. Graph

2.2 Correlated aims with methods

  1. To obtain the BV (blood volume) through simulation.

In order to compute the blood volume parameter in aim (i) we developed the algorithm (i) in method 4 and also implemented the blood volume graph drawing equation and graph in method 5 using the C# language.

  1. To obtain the BF (blood_flow) through simulation.

In order to compute the blood flow parameter in aim (ii) we developed the algorithm (ii) in method 4 and also implemented the blood flow graph drawing equation and graph in method 5 using the C# language (Prince, 211).   Virtual Simulation of Angio and Perfusion Essay.

  1. To obtain the MTT (mean_transit_time) through simulation.

In order to compute the mean transit time parameter in aim (iii) we developed the algorithm (iii) in method 4 and also implemented the mean transit time graph drawing equation and graph in method 5 using the C# language. Virtual Simulation of Angio and Perfusion Essay.

  1. To obtain the TTP (time_to_peak) through simulation.

In order to compute the time to peak parameter in aim (iv) we developed the algorithm (iv) in method 4 and also implemented the time to peak graph drawing equation and graph in method 5 using the C# language.Virtual Simulation of Angio and Perfusion Essay.

Results and Discussion: 

After developing the MRI virtual simulation system project there are various aspects that were used which included the use of the algorithms, the equations and also the graphs (Brookeman, 213). The project was implemented through use of the c# language and the ms access database to develop the Angio and Perfusion MRI virtual simulation application that is used to capture the MRI value and generate the other MRI parameters (Schajor, 560).Virtual Simulation of Angio and Perfusion Essay.

The following are the results obtained after implementing the Angio and Perfusion MRI virtual simulation project according to the listed aims.

  1. Capturing of the Angio and Perfusion MRI parameters and generating MRI graph.
  1. Capturing of the Angio and Perfusion Blood volume parameter and drawing graph.
  1. Capturing of the Angio and Perfusion Blood flow parameters and drawing graph.
  1. Capturing of the Angio and Perfusion Mean transit time parameters and drawing graph.
  • Capturing of the Angio and Perfusion Time to peak parameters and drawing graph.

Conclusions 

In this project the virtual simulation is one of the major aspects that can be used in the medical field which as a result helps in improvement of the services delivery since it enables the knowledge retentions, adds clinical knowledge, improvement in satisfactions in clinical studies, and also offers improvement in self-efficacy to the various medical officers (Mills, 358).Virtual Simulation of Angio and Perfusion Essay.

CODE: 

The implemented project code is in hardcopy format in the “MRI_SIMULATION” folder and this will be tested using the visual studio professional tool, below are the instructions to use the codes (Lauenstein,2010).Virtual Simulation of Angio and Perfusion Essay.

5.1 Instruction to use code

Below are the steps to follow while using the project codes.

  1. Open visual 2010studio profession.
  2. On the menu select file-> open->project/solution.
  1. Select the “MRI_SIMULATION” folder to open the project as below.
  1. Build the project
  • Run the project
  • Enter the MRI value.
  • Generate the MRI parameters.
  • Enter the patient name
  1. Save the parameters.
  • Click view graphs button.
  • View the graphs.

Virtual Simulation of Angio and Perfusion Essay.